@charset "UTF-8";
/* 768px以下 */
/*共通*/
*{
	box-sizing: border-box;
	font-family: 'Noto Sans JP', Arial, Helvetica, sans-serif;
}
html{
	scroll-behavior: smooth;
}
body{
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: 0.06em;
}
main{
	max-width: 960px;
	padding-top: 100px;
    margin: 0 auto;
}
.foot-small, .introduce, .service, #works, #about, #contact, .about, .about-contents, .profile-other,.career{
	padding-right: 3%;
    padding-left: 3%;
}
a{
	color: black;
    text-decoration: none;
	cursor: pointer;
}
ul li{
	list-style: none;
}
p {
    /*display: flex;*/
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
	text-align: justify;
}
img {
	max-width: 100%;
	height: auto;
}
/*ここからホバー設定→半透明*/
/*ヘッダーアイコン*/
.logo:hover{
	opacity: 0.5;
	transition: 0.5s;
}
/*SNSアイコン*/
.social-nav__container a:hover{
	opacity: 0.5;
	transition: 0.5s;
}
/*works ウェブデザイン・グラフィックデザイン*/
.item img :hover{
	opacity: 0.5;
	transition: 0.5s;
}
/*works フォト*/
.photo-list a:hover{
	opacity: 0.5;
	transition: 0.5s;
}
/*ここまでホバー設定*/
.title{
	text-align: center;
	margin-bottom: 40px;
}
.title p{
	margin-top: -20px;
	text-align: center;
}
h2{
	font-size: 40px;
	margin-bottom: 15px;
	font-weight: bold;
}
.web-design-flex, .graphic-design-flex, .movie-flex, .photo{
	text-align: center;
}
.copyright {
	font-size: 12px; 
}
/*ここからスクロール時フェードイン*/
.introduce, .service-flex, .item, .movie-item, .photo-item, .about-main, .contact-text{
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px);
	transition: opacity 1s,  visibility 1s, transform 1s;
}
.is-fadein{
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}
/*ここまでスクロール時フェードイン*/
/*ここからヘッダー*/
.site-header {
	display: none;
}
.logo {
	width: 25%;
}
/*ここからバーガー*/
.burger {
	display: flex;
    align-items: center;
    max-width: 768px;
    margin: 0 auto;
    height: 90px;
    position: fixed;
    padding-right: 4%;
    padding-left: 4%;
    padding-top: 4%;
    width: 100%;
    z-index: 9999;
}
/*ここからハンバーガーボタン*/
#nav-toggle {
	position: fixed;
    top: 50px;
    right: 25px;
    height: 20px;
    width: 20px;
    cursor: pointer;
}
#nav-toggle div {
    position: relative;
    width: 20px;
}
#nav-toggle span {
    width: 100%;
    height: 1px;
    left: 0;
    display: block;
    background: black;
    position: absolute;
    transition: transform .6s ease-in-out, top .5s ease;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 7px;
}
#nav-toggle span:nth-child(3) {
    top: 14px;
}
/*ここからバーガーボタンオープン*/
.open #nav-toggle span {
  background: #fff;
}
.open #nav-toggle span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 14px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}
/*ここからハンバーガーメニュー*/
#gloval-nav {
	background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transform: translateX(-100%);
    transition: opacity .6s ease, visibility .6s ease;
}
#gloval-nav .main-nav__container {
    margin-top: 20px;
    margin-bottom: 0;
}
#gloval-nav a {
    display: block;
    color: #fff;
    padding: 20px 0;
    transition: color .6s ease;
}
.main-nav__container a {
	position: relative;
	display: inline-block;
	font-size: 16px;
}
.main-nav__container a::after {
	position: absolute;
    left: 0;
	bottom: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #fff;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}
.main-nav__container a:hover::after {
	transform: scale(1, 1);
}
#gloval-nav ul li {
    opacity: 0;
    transform: translateX(-200px);
    transition: transform .6s ease, opacity .2s ease;
}
#gloval-nav ul li:nth-child(2) {
    transition-delay: .15s;
}
#gloval-nav ul li:nth-child(3) {
    transition-delay: .3s;
}
#gloval-nav ul li:nth-child(4) {
    transition-delay: .45s;
}
#gloval-nav ul li:nth-child(5) {
    transition-delay: .60s;
}
/*ここからハンバーガーメニュー内ソーシャルアイコン*/
#gloval-nav .social-nav__container {
  display: flex;
}
#gloval-nav .social-nav__container img {
    width: 25px;
    height: 25px;
    margin: 0 20px;
}
/* open */
.open {
	overflow: hidden;
}
.open #gloval-nav {
    visibility: visible;
    transform: translateX(0);
    transition: transform .6s;
    z-index: 10;
}
.open #gloval-nav li {
    opacity: 1;
    transform: translateX(0);
    transition: transform 1s ease, opacity .9s ease;
}
/*z-index*/
#nav-toggle {
	z-index: 100;
}
#gloval-nav {
	z-index: 10;
}
/*top-img*/
.main-visual{
	margin-top: -50px;
	margin-bottom: 50px;
}
.foot-small img{
	opacity: 0.7;
}
/*top-img フェードイン*/
.main-visual, .foot-small{
	animation-name:fadeUpAnime;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
    opacity:0;
}
@keyframes fadeUpAnime{
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
        transform: translateY(20px);
	}
}
/*introduce*/
.introduce{
	display: flex;
	flex-wrap: wrap-reverse;
	margin-top: 70px;
	text-align: center;
}
.introduce-text{
	max-width: 645px;
}
.introduce-text p{
	margin: 1em auto;
}
/*822px以下 introduce画像切り替え*/
@media screen and (max-width: 953px) {
	.introduce{
		display: flex;
		flex-wrap: wrap-reverse;
		justify-content: center;
		text-align: center;
		margin-bottom: 80px;
	}
	.introduce-img{
		background-image: url("../素材/img/penguin/penguin_pattern_直立_02.svg");
		background-repeat: no-repeat;
		width: 500px;
		min-width: 300px;
		height: 200px;
		min-height: 100px;
		text-align: center;
	}
	.introduce-text{
		margin-bottom: 25px;
	}
}
/*822px以上 introduce画像切り替え*/
@media screen and (min-width: 953px) {
	.introduce{
		margin-bottom: 150px;
	}
	.introduce-img{
		background-image: url("../素材/img/penguin/penguin_pattern_直立_01.svg");
		background-repeat: no-repeat;
		min-width: 250px;
		min-height: 350px;
		position: relative;
		top: 200px;
		left: 50px;
	}
	.introduce-text{
		position: relative;
		left: -30px;
	}
}
/*service*/
.service{
	text-align: center;
	margin-bottom: 60px;
}
.service-flex{
	display: block;
}
.service-flex p{
	text-align: left;
}
.service-content{
	text-align: center;
	margin-bottom: 30px;
}
.service-content h4{
	margin: 0;
}
/*文字列要検討！！！*/
.service-content p{
	text-align: justify;
}
.service-content img{
	height: 130px;
	max-width: 100%;
}
/*works*/
#works{
	margin-bottom: 60px;
}
h3{
	font-size: 25px;
	margin-bottom: 30px;
}
.item, .movie-item{
	margin-bottom: 30px;
}
.item a img{
	border: solid 0.5px #aaa;
	border-radius: 5px;
	margin-top: 10px;
}
.works-name{
	margin-left: 10px;
	text-align: left;
}
.movie-item {
    width: 100%;
    aspect-ratio: 16 / 9;
}
.movie-item iframe {
    width: 100%;
    height: 100%;
	border-radius: 5px;
}
.photo-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-left: 0;
}
.photo-list li{
	width:calc(100% / 3);
	padding: 5px;
}
.photo-list img{
	width: 200px;
	height: 200px;
	object-fit: cover;
	border-radius: 5px;
}
/*ここから500px以下 折り返し指定*/
@media screen and (max-width: 500px) {
	.photo-list li{
		width:calc(100% / 2);
	}
	.photo-list img{
		width: 150px;
		height: 150px;
	    object-fit: cover;
	}
}
/*ここまで500px以下*/
/*ここから800px上*/
@media screen and (min-width: 800px) {
	.photo-list li{
		width:calc(100% / 4);
	}
}
/*ここまで800px上*/
.button{
	ext-align: center;
}
.btn{
	display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 1em 2em;
    max-width: 300px;
	border: solid 3px #000;
	border-radius: 5px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    background-color: #000;
    transition: 0.3s;
	box-shadow: 5px 5px 0 0 rgba(170, 170, 170, 0.5); /*#aaa*/
}
.btn::after{
	content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
}
.btn:hover{
	color: #000;
	background: #fff;
	box-shadow: 5px 5px 0 0 #aaa;
}
.btn:hover::after{
    border-top: 3px solid #000;
    border-right: 3px solid #000;
}
/*about*/
#about{
	margin-bottom: 60px;
}
.about-main{
	display: block;
	text-align: center;
}
.about-icon{
	width: 240px;
	height: auto;
	margin: 0 auto;
}
.main-text{
	margin: 0 0 30px 0;
}
/*contact*/
#contact{
	margin-bottom: 60px;
}
.contact-text{
	margin: -20px 0 40px 0;
}
/*フッター*/
.site-footer{
	background-color: rgba(0, 0, 0,0.75);
	color: #fff;
	line-height:15vh;	/*BOXの高さ分を指定*/
	text-align: center;
}
.site-footer p{
	display: inline-block;
	vertical-align: middle;	/*上下の中央揃え指定*/
	line-height:normal;	/*BOX内のテキスト行間を元に戻します*/
}
/*768px以上*/
@media screen and (min-width: 768px) {
  /*共通*/
	body{
		font-size: 16px;
	}
    .burger {
		display: none; 
	}
    .title-name {
		width: 500px; 
	}
  /*ヘッダー*/
	.logo {
		width: 35%;
	}
	.site-header {
		display: flex;
        justify-content: space-between;
        margin: 0 16px;
        position: fixed;
        width: 80vw;
        top: 10%;
        left: 50%;
        transform: translate(-50%, -50%);
		z-index: 9999;
	}
	.site-nav {
		display: flex;
        align-items: center;
        margin: 0 0 0 auto;
	}
	.main-nav__container {
		display: flex;
        text-align: center;
        align-items: center;
        gap: 20%;
	}
	.main-nav__container a {
		position: relative;
		display: inline-block;
		font-size: 16px;
	}
	.main-nav__container a::after {
		position: absolute;
		bottom: -3px;
        left: 0;
        content: '';
        width: 100%;
        height: 1px;
        background: #000000;
        transform: scale(0, 1);
        transform-origin: left top;
        transition: transform .3s;
	}
	.main-nav__container a:hover::after {
		transform: scale(1, 1);
	}
	.social-nav__container {
	    display: flex;
        list-style: none;
		margin-left: 50px;
	}
	.social-nav__item{
		height: 60px;
		width: 60px;
		margin: 32px 0 0 0;
	}
	.social-nav__item a img{
		width: 42%;
	}
	/*top-image*/
	.main-visual{
		/*display: flex;*/
		text-align: center;
		margin: 0 auto; /*左右中央寄せ*/
		margin-bottom: 100px;
		max-width: 960px;
	}
	.main-visual img {
		width: 100%;
	}
	/*service*/
	.service-flex{
		display: flex;
		justify-content: space-between;
		margin-top: 40px;
	}
	.service-content{
		width: 400px;
		margin: 0 20px;
	}
	/*works*/
	.web-design, .graphic-design{
		display: flex;
		justify-content: space-between;
	}
	.works-name{
		display: block;
		text-align: left;
	}
	.item, .movie-item{
		width: 33%;
		height: auto;
		padding: 0 10px;
	}
	.movie {
		display: flex;
		flex-wrap: wrap;
	    text-align: center;
		/*justify-content: space-between;*/
        width: 100%;
	}
	.movie-item iframe {
		width: 100%;
        height: 100%;
	    border-radius: 5px;
	}
	/*about*/
	.about-main{
		display: flex;
	    text-align: center;
		align-items: center;
		margin-bottom: 30px;
	}
	.about-icon{
		width: 300px;
	    margin-right: 20px;
	}
    .main-text{
		display: block;
	    text-align: left;
    }
}

/*about.html*/
/*about*/
.about-contents{
	margin-bottom: 60px;
}
/*profile*/
.profile{
	display: block;
	text-align: center;
	margin-bottom: 30px;
}
.profile-text{
	text-align: left;
}
.maedayuko{
	width: 350px;
	height: 350px;
	margin-bottom: 30px;
	border-radius: 5px;
}
/*写真フェードイン*/
.maedayuko{
	animation-name:fadeUpAnime;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
    opacity:0;
}
@keyframes fadeUpAnime{
	from {
		opacity: 0;
        transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(20px);
	}
}
.name-sns{
	display: flex;
	align-items: center;
}
.name-sns a {
	position: relative;
}
/*ここからホバー設定→半透明*/
.name-sns a:hover{
	opacity: 0.5;
	transition: 0.5s;
}
/*ここまでホバー設定→半透明*/
.name-sns img{
	width: 25px;
    height: 25px;
    margin-right: 20px;
}
.name-sns p{
	font-size: 25px;
	margin: 0 30px 0 0;
}
/*profile-other, career*/
dl{
	display: flex;
	text-align: left;
}
dt{
	float: left;
	width:20%;
}
dd{
	display: block;
	float: right;
    margin-left: 0;
	width: calc(100% - 20%);/*dl100% - dt20% = dd残りの幅*/
}
.profile-other{
	margin-bottom: 40px;
}
/*career*/
.career{
	text-align: center;
}
@media screen and (min-width: 768px) {
	.profile{
		display: flex;
		align-items: center;
	}
	.profile .maedayuko{
		margin-right: 30px;
	}
}