@charset "UTF-8";

/* common */
:root {
	--color-primary: #f3cccc;
	--color-secondary: #ffffff;
	--color-text-main: #333333;
	--color-accent: #faf4e4;
	--color-highlight: #F06565;
	--color-border: #ccc;
	--color-skill-icon: #ffcba4;
}
* {
	box-sizing: border-box;
	font-family: "Montserrat", "Noto Sans JP", '游ゴシック', 'Yu Gothic', YuGothic, HiraKakuProN-W3, 'メイリオ', Meiryo, sans-serif;
	color: var(--color-text-main);
	list-style: none;
	text-decoration: none;
	margin: 0;
	padding: 0;
}
body {
	font-size: 16px;
	letter-spacing: 0.05em;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
.body-wrapper {
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
}
.section-gap {
	padding: 68px 0;
}

/* -----------------------
sp
----------------------- */
/* header */
header {
	height: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 20px 24px;
}
.header-logo img {
	height: 48px;
}

/* MV */
.main-title {
	position: relative;
	width: 75%;
	height: 185px;
	background: var(--color-primary);
	margin-left: auto;
}
.main-name {
	font-size: 1.5em;
	position: absolute;
	top: 61px;
	left: -80px;
	font-weight: 600;
}
.main-name2 {
	font-size: 1.4em;
	position: absolute;
	top: 96px;
	left: -11px;
	margin-top: 0;
	margin-bottom: 0
}
.main-img {
	position: absolute;
	height: 78%;
	width: auto;
	left: 65%;
	top: 11%;
}

/* title */
.section-title {
	display: flex;
	justify-content: center;
	color: var(--color-text-main);
	font-size: 1.5em;
	padding-bottom: 48px;
}
.section-title::before, .section-title::after {
	width: 3px;
	height: 30px;
	background-color: var(--color-text-main);
	content: '';
}
.section-title::before {
	transform: rotate(-35deg);
	margin-right: 30px;
}
.section-title::after {
	transform: rotate(35deg);
	margin-left: 30px;
}

/* works */
.works-title-design {
	display: inline-block;
	position: relative;
	color: var(--color-text-main);
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}
.works-title-design:before {
	content: '';
	display: inline-block;
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background-color: var(--color-text-main);
}
.mock-contents {
	display: flex;
	text-align: center;
	flex-direction: column;
}
.mock-contents:not(:last-child) {
	margin-bottom: 56px;
}
.mock-contents ul {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.mock-img {
	width: 100%;
	height: 260px;
}
.works-title-cat {
	display: inline-block;
	position: relative;
	color: var(--color-text-main);
	font-size: 1.3em;
	display: flex;
	justify-content: center;
	margin-bottom: 48px;
}
.works-title-cat:before {
	content: '';
	display: inline-block;
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
	width: 25px;
	height: 2px;
	background-color: var(--color-text-main);
}
.border {
	width: 60%;
	border: solid 1px;
	margin: 0 auto;
}
.logo-contents {
	padding-bottom: 20px;
}

/* modal */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.8);
	display: none;
	z-index: 5;
}
.bigimg {
	position: absolute;
	text-align: center;
	width: 80%;
	max-width: 1000px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	right: 0;
	margin: 0 auto;
}
.close-btn {
	color: var(--color-secondary);
	font-size: 40px;
	position: absolute;
	right: 10%;
	top: 20%;
}
.close-btn a {
	color: var(--color-secondary);
}

/* viewmore btn */
.viewmore-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	text-decoration: none;
	color: var(--color-text-main);
	font-size: 18px;
	border-radius: 0px;
	width: 200px;
	height: 40px;
	position: relative;
	transition: 0.3s;
	padding: 6%;
	margin: 0 auto;
	background-color: var(--color-secondary);
}
.viewmore-btn::before, .viewmore-btn::after {
	content: "";
	display: block;
	position: absolute;
	border: 1px solid var(--color-text-main);
	width: 100%;
	height: 100%;
	transition: .3s;
}
.viewmore-btn::before {
	top: -2px;
	left: -2px;
}
.viewmore-btn::after {
	top: 2px;
	left: 2px;
}
.viewmore-btn:hover::before, .viewmore-btn:hover::after {
	top: 0;
	left: 0;
}
.dli-caret-right {
	display: inline-block;
	vertical-align: middle;
	color: var(--color-text-main);
	line-height: 1.9;
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent;
	border-width: 0.375em 0.64952em;
	border-left-color: currentColor;
	border-right: 0;
	margin-left: 10px;
}

/* site preview btn */
.preview-btn {
	display: inline-block;
	padding: .8em 2.5em .8em 2em;
	background: var(--color-primary);
	border: 1px solid var(--color-primary);
	border-radius: 32px;
	color: var(--color-secondary);
	cursor: pointer;
	position: relative;
	width: fit-content;
	margin-bottom: 32px;
	font-size: 1.3em;
}
.preview-btn::after {
	position: absolute;
	content: '\f105';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	top: 50%;
	right: .8em;
	left: auto;
	bottom: auto;
	transform: translateY(-50%);
}
.preview-btn:hover {
	background: var(--color-secondary);
	color: var(--color-primary);
}

/* viewmore btn */
.viewmore-btn {
	background-color: inherit;
}
.viewmore-btn-container {
	margin-top: 48px;
}

/* skill */
.skill {
	width: 100%;
	background-color: var(--color-accent);
}
.skill-container {
	display: flex;
	margin: 0 auto;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 60px 30px;
}
.skill-icon-color {
	position: relative;
	background-color: var(--color-skill-icon);
	border-radius: 50%;
	height: 65px;
	width: 65px;
	margin: 0 auto;
}
.skill-icon {
	position: absolute;
	width: 70px;
	top: -6px;
	left: -5px;
	padding-top: 0;
}
.skill-contents {
	text-align: center;
	line-height: 1.5;
	flex-grow: 1;
	width: calc((100% - 30px) / 2);
}
.skill-contents dl {
	margin-top: 0;
	width: 100%;
}
.skill-contents dt {
	margin-top: 20px;
	margin-bottom: 15px;
	min-height: 3em;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	font-size: 0.9em;
}
.skill-contents dd {
	text-align: left;
	font-size: 0.9em;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* about */
.about-container {
	display: flex;
	flex-direction: column;
	gap: 25px;
}
.about-photo {
	margin: 0 auto;
	width: 35%;
	aspect-ratio: 593 / 892;
}
.name-box {
	margin-bottom: 20px;
	text-align: center;
}
.about-description {
	line-height: 2;
}
.about-intro {
	margin-bottom: 12px;
}

/* hobby */
.hobby {
	background-color: var(--color-accent);
	clear: both;
}
.hobby-contents {
	text-align: center;
}
.hobby-contents ul {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.hobby-img {
	width: 100%;
}


/* contact */
.contact {
	padding: 68px 0 0;
}
.form-text {
	text-align: center;
	line-height: 2;
}
.form-text p {
	margin-top: 0;
}
.form-ng {
	color: var(--color-highlight);
	font-weight: bold;
}
.contact-contents {
	margin: 0 auto;
}
.form-dec {
	box-sizing: border-box;
	width: 100%;
	height: 27px;
	margin: 10px 0;
	color: var(--color-text-main);
	border: 0;
	border-bottom: 1px solid var(--color-border);
	outline: 0;
	background-color: var(--color-secondary);
}
.textarea-dec {
	height: 100px;
}
.btn-sub {
	display: block;
	width: 12em;
	margin: 0 auto;
	margin-top: 30px;
	padding: 14px 32px;
	border: 1px solid var(--color-text-main);
	color: var(--color-text-main);
	font-size: 1em;
	cursor: pointer;
	position: relative;
}
.btn-sub:hover {
	background-color: var(--color-text-main);
	color: var(--color-secondary);
}

/* footer */
footer {
	padding: 30px 0;
	background: var(--color-primary);
	text-align: center;
}
.footer-wrapper img {
	width: 17%;
	margin-bottom: 30px;
}
.footer-nav-items {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
}
.footer-nav-items li {
	padding-right: 10px;
	font-size: 0.9em;
}
.footer-contact {
	padding-left: 15px;
}

/* scroll btn */
.gotop {
	display: block;
	width: 60px;
	height: 60px;
	box-sizing: border-box;
	padding-top: 30px;
	text-align: center;
	letter-spacing: -1px;
	font-size: 85%;
	color: var(--color-text-main);
	opacity: 0.5;
	position: relative;
	margin: 60px auto;
}
.gotop::before {
	content: "";
	display: inline-block;
	border-top: 2px solid var(--color-text-main);
	border-right: 2px solid var(--color-text-main);
	width: 25%;
	height: 25%;
	top: 25%;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
	transform: rotate(-45deg);
}

/* -----------------------
tab
----------------------- */
@media screen and (min-width: 768px) {
/* common */
.section-gap {
	padding: 100px 0;
}
.section-title {
	font-size: 2em;
}
.close-btn {
	right: 10%;
	top: 15%;
}

/* viewmore btn */
.viewmore-btn {
	padding: 4%;
}
.viewmore-btn-container {
	margin-top: 56px;
}

/* MV */
.main-title {
	height: 250px;
}
.main-name {
	font-size: 2.5em;
	top: 68px;
	left: -150px;
	margin-top: 0;
}
.main-name2 {
	font-size: 2.2em;
	top: 125px;
	left: -40px;
}
.main-img {
	height: 82%;
	left: 60%;
	top: 9%;
}

/* title */
.section-title::before, .section-title::after {
	height: 34px;
}

/* works */
.mock-contents ul {
	flex-direction: row;
	flex-wrap: wrap;
	gap: 48px;
}
.mock-contents ul li {
	width: calc((100% - 48px) / 2);
}
.detail-img img:not(:last-child) {
	margin-bottom: 0;
}

/* about */
.about-photo {
	width: 25%;
	margin: 0;
}
.about-container {
	flex-direction: row;
}
.name-box {
	text-align: left;
}

/* skill */
.skill-contents dd, dt {
	font-size: 1em;
	margin: 0 auto;
	text-align: center;
}
.custom-shape-divider-top-1690948991 svg {
	width: calc(100% + 1.3px);
	height: 19px;
}

/* hobby */
.hobby-contents ul {
	display: flex;
	flex-direction: row;
	gap: 48px;
}
.hobby-contents ul li {
	width: calc(100% / 3);
}

/* footer */
.footer-wrapper img {
	width: 10%;
}
.footer-nav-items li {
	padding-right: 15px;
}
}

/* -----------------------
sp,tab
----------------------- */
@media screen and (max-width: 959px) {
/* hamburger menu */
.scrollbtn {
	display: none;
}
.hamburger {
	display: block;
	position: fixed;
	z-index: 3;
	right: 22px;
	top: 24px;
	width: 42px;
	height: 43px;
	cursor: pointer;
	text-align: center;
}
.hamburger span {
	display: block;
	position: absolute;
	width: 30px;
	height: 2px;
	left: 6px;
	background: var(--color-text-main);
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
	top: 10px;
}
.hamburger span:nth-child(2) {
	top: 20px;
}
.hamburger span:nth-child(3) {
	top: 30px;
}

/* ナビが開いてる時のボタン */
.hamburger.active span:nth-child(1) {
	top: 16px;
	left: 6px;
	background: var(--color-text-maine);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
	top: 16px;
	background: var(--color-text-maine);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}
nav.globalMenuSp {
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	color: var(--color-text-main);
	background: rgba(243, 204, 204, 0.9);
	text-align: center;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity .6s ease, visibility .6s ease;
	visibility: hidden;
}
nav.globalMenuSp ul {
	margin: 0 auto;
	padding: 8em;
	width: 100%;
}
nav.globalMenuSp ul li {
	list-style-type: none;
	padding: 0;
	transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
	padding-bottom: 0;
}
nav.globalMenuSp ul li a {
	display: block;
	color: var(--color-text-main);
	padding: 1em 0;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
	opacity: 100;
	visibility: visible;
}
.nav-items img {
	height: 65px;
}
.about-name {
	font-size: 2em;
}
.en-name {
	font-size: 0.9em;
}
.hobby-container-det {
	margin-bottom: 40px;
}
}

/* -----------------------
pc
----------------------- */
@media screen and (min-width: 960px) {
/* header */
header {
	margin: 28px 32px;
	height: 150px;
}
.header-logo img {
	height: 130px;
}
.globalMenuSp a {
	margin: 0 30px 0 0;
}
.globalMenuSp a:hover {
	color: var(--color-text-main);
	border-bottom: 2px solid var(--color-highlight);
	padding-bottom: 10px;
}
.nav-items {
	display: flex;
	height: 160px;
	align-items: center;
}
.nav-items img {
	display: none;
}
.hamburger {
	display: none;
}

/* scroll btn */
.gotop {
	display: none;
}
.scrollbtn {
	color: var(--color-text-main);
	position: fixed;
	bottom: -60px;
	right: 30px;
	display: block;
	width: 100px;
	padding: 16px 20px;
	text-align: right;
	transform: rotate(90deg);
	transform-origin: bottom;
}
.arrow1 {
	width: 48px;
	height: 1px;
	background: var(--color-text-main);
	position: absolute;
	top: 50%;
	right: 62px;
}
.arrow2 {
	width: 1px;
	height: 12px;
	background: var(--color-text-main);
	position: absolute;
	top: calc(50% + 1px);
	right: 109px;
	transform: rotate(-130deg);
	transform-origin: top left;
}
.close-btn {
	right: 16%;
	top: 5%;
}
.preview-btn {
	display: flex;
	display: inline-block;
}

/* viewmore btn */
.viewmore-btn {
	padding: 25px;
}

/* MV */
.main-title {
	width: 70%;
	height: 26em;
	margin-top: 0;
}
.main-name {
	font-size: 4.6vw;
	top: 28%;
	left: -21%;
}
.main-name2 {
	font-size: 3.4vw;
	top: 54%;
	left: -5.5%;
}
.main-img {
	transform: translateX(-160%);
	top: 38px;
	left: 70%;
}

/* works */
.mock-contents:not(:last-child) {
	margin-bottom: 64px;
}
.mock-contents ul {
	gap: 40px;
}
.works-detail-contents {
	margin-right: 40px;
}
.works-detail {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.detail-img {
	flex-shrink: 0;
	width: 45%;
	padding-top: 100px;
	padding-bottom: 100px;
}
.works-summary-box:not(:last-child) {
	margin-bottom: 60px;
}
.works-detail-box:not(:last-child) {
	margin-bottom: 60px;
}
.works-detail-box:last-child {
	margin-bottom: 100px;
}
.mock-img {
	height: auto;
}
.works-foot {
	padding: 100px 0 0;
}

/* skill */
.skill {
	display: flex;
	justify-content: space-between;
}

/* about */
.about-container {
	width: 100%;
	justify-content: center;
	gap: 48px;
}
.about-photo {
	width: 18%;
}
.about-name {
	font-size: 1.8em;
	padding-top: 3px;
}
.en-name {
	font-size: 0.9em;
}

/* hobby */
.hobby-contents ul {
	display: flex;
}
.hobby-contents-det {
	display: flex;
	width: 900px;
	margin: 0 auto;
}
.btn_view {
	clear: both;
}
.bigimg img {
	height: 70%;
	max-height: 800px;
}

/* contact */
.contact {
	padding: 100px 0;
}
.form {
	width: 100%;
}

/* footer */
footer {
	padding: 50px 0;
}
.footer-nav-items li {
	font-size: 1em;
}
.footer-wrapper img {
	width: 70px;
}

.footer-nav-items li {
	padding-right: 30px;
}
.border {
	width: 40%;
}
}