@charset "UTF-8";

* {
	box-sizing: border-box;
}


/* ゆっくりスクロール
--------------------------------- */
html{
	scroll-behavior: smooth;
	font-size: 100%;
}
/* サイトを開いた時にロゴが出る
--------------------------------- */

.logo_fadein {
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 999;
}
.logo_fadein p {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 999;
	width: 800px;
}


/* 共通部分
--------------------------------- */
main {
	min-height: 80vh;
}
.common-top {
	font-size: 2.5rem;
	margin-top: 30px;
	margin-bottom: 30px;
}

.img-icon {
	width: 100px;
}

.common-top {
	text-align: center;
	text-decoration-thickness: 2px;
}
ul, ol {
	list-style: none;
}
ul a {
	color: inherit;
	text-decoration: none;
}



/* リストの下に下線を引く
--------------------------------- */

.site-a, .site-b {
	display: block;
}
.site-a, .site-b {
	position: relative;
}
/* ヘッダー */
@media (any-hover: none) {
.site-a:hover{
	color:#fc6c8c;
}
}
.site-a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #fc6c8c;
	transition: all .3s;
	transform: scale(0, 1);
	transform-origin: center top;
}
.site-a:hover::after {
    transform: scale(1, 1);
}

/* フッター */
.site-b:hover{
	color:#FFF;
}
.site-b::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #FFF;
	transition: all .3s;
	transform: scale(0, 1);
	transform-origin: center top;
}
.site-b:hover::after {
    transform: scale(1, 1);
}






/* フェードインする
--------------------------------- */
.js-fade {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: opacity 1.5s,visibility 1.5s, transform 1.5s;
}

.scroll {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}
/* 
--------------------------------- */
body {
	font-family: 'EB Garamond', sans-serif;
	font-size: 1.25rem;
	color: #bc8f8f;
	line-height: 1;
	background-color: #FFF;
}

img {
	max-width: 100%;
}

.header-inner {
	max-width: 1200px;
	height: 100px;
	padding: 10px 40px 0;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-logo {
	display: block;
	width: 400px;
}
.site-menu ul {
	display: flex;
}
.site-menu li {
	margin: 0 20px;
}

/* ヘッダーリストのドロップダウン */
.dropdown-lists {
	position: relative;
}
.dropdown-lists .dropdown-list {
	display: none;
}
.dropdown-lists:hover .dropdown-list {
	display: block;
}
.dropdown-list {
	position: absolute;
	padding: 0;
	margin-left: 0;
	margin-top: 3px;
	line-height: 25px;
	font-size: 1.125rem;
}

.form-red, .form-red-2 {
	font-weight: bold;
	color: #fc6c8c;
}

/* パンくずリスト
--------------------------------- */
.pagemap {
	display: flex;
	width: 90%;
	margin-left: 10px;

}
.pagemap, pagemap-top,pagemap-works,pagemap-current {
	margin-right: 5px;
	font-size: 1.25rem;
}
.pagemap, .pagemap-limk {
	color: inherit;
	text-decoration: none;
}
.pagemap .pagemap-limk:hover {
	color: #fc6c8c;
	border-bottom:1px solid #fc6c8c;
}
/* スクロールバー
--------------------------------- */
/* スクロールバーの幅 */
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

/* スクロールバーの背後の色 */
::-webkit-scrollbar-track {
	background: #ffe6ea;
}

/* つまみの色 */
::-webkit-scrollbar-thumb {
	background: #fc6c8c;
	border-radius: 10px;
}

/* ここからフッター
--------------------------------- */
.citrus-footer {
	color: #fff;
	background-color: #B0E0E6;
	padding-top: 30px;
	padding-bottom: 15px;
	display: flex;
	flex-direction: column; /* 真ん中にしたいから先に縦並びにした */
	align-items: center; /* 中央揃え */
}
.footer-copy {
	font-size: 0.875rem;
	font-weight: bold;
	margin-top: 20px;
}



/* --------------------------------------
トップに戻るボタン
-------------------------------------------*/
#page-top {
	width: 50px;
	height: 50px;
	position: fixed;
	bottom: 20px;
	right: 18px;
	padding: 2px ;
	background-color: rgba(255,255,255,0.8);
	color: #fff;
	text-decoration: none;
	border-radius: 30%;
	border: 3px solid #60d4f7;
	transition-duration: 0.5s;
}
#page-top a{
	position: relative;
	display: block;
	width: 90px;
	height: 90px;
	}
	#page-top:hover {
	border-radius: 50%;
	background-color: #60d4f7;
	}
.material-symbols-outlined.att2 {
	color: #60d4f7;
	font-size: 2.5rem;
}
.material-symbols-outlined:hover {
	color: #FFF;
}


/* --------------------------------------
ＴＯＰの文字追加するとき使う！

#page-top a::after{
	content: 'TOP';
	font-weight: bold;
	font-size: 0.625rem;
	color: #F7DB60;
	position: absolute;
	bottom: 60px;
	right: 50px;
	left: -15px;
	margin: auto;
	text-align: center;
}
-------------------------------------------*/

/* ガーベラに愛を込めて-装飾まとめ
--------------------------------- */
.gerbera-body{
	font-family: 'EB Garamond', sans-serif;
	font-size: 1.25rem;
	color: #D4B572;
	line-height: 1;
	background-color: #446E72;
}

/* リストの下に下線を引く */

.gerbera-a {
	display: block;
}
.gerbera-a {
	position: relative;
}
/* ヘッダー */
@media (any-hover: none) {
.gerbera-a:hover{
	color:white;
}
}
.gerbera-a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: white;
	transition: all .3s;
	transform: scale(0, 1);
	transform-origin: center top;
}
.gerbera-a:hover::after {
    transform: scale(1, 1);
}

/* 	メイン部分 */
.gerbera-main{
	background-color: #E6E4E0;
	margin: 0 auto;
	padding: 25px 0 25px 0;
}

/* 	フッター */
.footer-gerbera {
	color: #D4B572;
	background-color: #446E72;
	padding-top: 30px;
	padding-bottom: 15px;
	display: flex;
	flex-direction: column; /* 真ん中にしたいから先に縦並びにした */
	align-items: center; /* 中央揃え */
}

/* トップに戻るボタン*/
#page-top-gerbera {
	width: 50px;
	height: 50px;
	position: fixed;
	bottom: 20px;
	right: 18px;
	padding: 2px ;
	background-color: rgba(255,255,255,0.8);
	color: #fff;
	text-decoration: none;
	border-radius: 30%;
	border: 3px solid #D4B572;
	transition-duration: 0.5s;
}
#page-top-gerbera a{
	position: relative;
	display: block;
	width: 90px;
	height: 90px;
	}
	#page-top-gerbera:hover {
	border-radius: 50%;
	background-color: #D4B572;
	}
.material-symbols-outlined.ger {
	color: #D4B572;
	font-size: 2.5rem;
}
.material-symbols-outlined:hover {
	color: #FFF;
}

/* 愛を継ぐもの-装飾まとめ
--------------------------------- */
.Iol-body{
	font-family: 'EB Garamond', sans-serif;
	font-size: 1.25rem;
	color: #F4EEED;
	line-height: 1;
	background-color: #E2BCB7;
}

/* リストの下に下線を引く */

.Iol-a {
	display: block;
}
.Iol-a {
	position: relative;
}
/* ヘッダー */
@media (any-hover: none) {
.Iol-a:hover{
	color:white;
}
}
.Iol-a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: White;
	transition: all .3s;
	transform: scale(0, 1);
	transform-origin: center top;
}
.Iol-a:hover::after {
    transform: scale(1, 1);
}

/* 	メイン部分 */
.Iol-main{
	background-color: #F4EEED;
	margin: 0 auto;
	padding: 25px 0 25px 0;
}

/* 	フッター */
.footer-Iol {
	color: #EFD9D1;
	background-color: #9E9D89;
	padding-top: 30px;
	padding-bottom: 15px;
	display: flex;
	flex-direction: column; /* 真ん中にしたいから先に縦並びにした */
	align-items: center; /* 中央揃え */
}

/* トップに戻るボタン*/
#page-top-Iol {
	width: 50px;
	height: 50px;
	position: fixed;
	bottom: 20px;
	right: 18px;
	padding: 2px ;
	background-color: rgba(255,255,255,0.8);
	color: #fff;
	text-decoration: none;
	border-radius: 30%;
	border: 3px solid #E2BCB7;
	transition-duration: 0.5s;
}
#page-top-Iol a{
	position: relative;
	display: block;
	width: 90px;
	height: 90px;
	}
	#page-top-Iol:hover {
	border-radius: 50%;
	background-color: #E2BCB7;
	}
.material-symbols-outlined.Iol {
	color: #E2BCB7;
	font-size: 2.5rem;
}
.material-symbols-outlined:hover {
	color: #FFF;
}

/* スクロールバーの幅 */
.scroll-Iol::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

/* スクロールバーの背後の色 */
.scroll-Iol::-webkit-scrollbar-track {
	background: #E4D3CF;
}

/* つまみの色 */
.scroll-Iol::-webkit-scrollbar-thumb {
	background: #B67162;
	border-radius: 10px;
}


/* メイン部分
--------------------------------- */

/* mein部分の背景色 */
.page-wrapper {
	background-color: white;
}

.citrus-main {
	background-color: #B0E0E6;
	background-image:
		repeating-linear-gradient(-90deg,
	#fff, #fff 7px,
	transparent 0, transparent 14px);
	margin: 0 auto;
	padding: 25px 0 25px 0;
}



/* first-view */
.first-view {
	height: calc(100vh - 125px);
	background: url(../images/index/top_mm.jpg) no-repeat center top 25% /cover;
	display: flex;
}
.first-view-img {
	width: 100%;
	max-width: 1200px;
}
.first-h1 {
	font-size: 5rem;
	padding-left: 25px;
	font-family: "Tangerine", cursive;
	text-shadow: 1px 1px 0 rgba(255,255,255,0.8);
}

/*	topコンテンツ
--------------------------------- */
.top {
	border-radius: 10px;
	margin: 25px auto;
	padding-top: 25px;
	padding-bottom: 25px;
	max-width: 80%;
	background-color: #FFF;
}
.wrapper{
	max-width: 1300px;
	background-color: #FFF;
	margin: 0 auto;
	display: flex;
	text-align: center;
	flex-wrap: wrap;
	justify-content: center;
}
.top-titles {
	text-align: center;
	margin-bottom: 20px;
}

.top-text {
	margin: 25px 30px;
}
.top-text p{
	font-size: 1.125rem;
	line-height: 1.5;
}

.top-title {
	font-size: 2.5rem;
}
.top-subtittle {
	font-size: 0.9375rem;
}

/* TOP profile */
.profile-card{
	width: 100%;
	max-width:320px;
	height:550px;
	position: relative;
	background: #fff; /*背景の色*/
	box-shadow: 0px 1px 3px rgba(0,0,0,.18);
	overflow: hidden;
	margin: 50px 30px;
}

.profile-card:before{
	width:120%;
	height:220px;
	content:"";
	background-color : #fff;
	background-image :
			repeating-linear-gradient(45deg,
			rgba(252, 108, 140, 0.50),
			rgba(252, 108, 140, 0.50) 10px,
			rgba(0, 0, 0, 0) 0,
			rgba(0, 0, 0, 0) 20px),
			repeating-linear-gradient(315deg,
			rgba(252, 108, 140, 0.50),
			rgba(252, 108, 140, 0.50) 10px,
			rgba(0, 0, 0, 0) 0,
			rgba(0, 0, 0, 0) 20px);
	position:  absolute;
	top: -10%;
	left:-10%;
	z-index: 0;
}

.profile-card-inner{
	position: relative;
}

.top-prof-img{
	overflow: hidden;
	width: 150px;
	height: 150px;
	border: #fc6c8c 1px solid;
	border-radius: 80px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 100px;
	margin-bottom: 15px;
	background: #fff;
}

.top-prof-img img{
	display: block;
	width: 100%;
	height: auto;
}

.top-prof-main{
	height: 200px;
	padding: 15px;
}


.top-prof-main span {
	display: block;
	text-align: center;
	line-height: 1.5;
	
}

.top-prof-job{
	font-size: 0.750rem;
	text-align: center;
	line-height: 1.5;
}

.top-prof-name{
	font-weight: bold;
	text-align: center;
}

.top-prof-alphabet{
	color: #ccc;
	font-size: 0.750rem;
	text-align: center;
	margin-bottom: 20px;
}

.top-prof-intro{
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 25px;
}

.top-prof-btn{
	text-align: center;
}

/* SNS */
.sns ul{
	display: flex;
	justify-content: center;
	list-style: none;
	margin-top: 10px;
}

.sns ul li{
	transition: all 0.5s;
}

.sns ul li:not(:last-child){
	margin-right: 25px;
}

.sns ul li img{
	width: 20px;
	height: 20px;
}

.sns ul li:hover{
	transform:translateY(-10px);
}

/* event */
.card-container{
	width: 320px;
	height: 550px;
	background-color: #fff;
	box-shadow: 0px 1px 3px rgba(0,0,0,.18);
	margin: 50px 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.event-img{
	width: 250px;
	margin-top: 20px;
}

.card-body .card-body-latest{
	width: 80%;
	margin: 15px auto;
}

.card-body h1{
	font-size: 1.5rem;
	text-align: center;

}

.card-body h2{
	font-size: 0.9375rem;
	line-height: 1.5rem;
	text-align: center;
}

.card-body p{
	font-size: 1.25rem;
	line-height: 2rem;
	text-align: center;
}

.card-body-latest h1{
	font-size: 1.5rem;
	text-align: center;
	margin: 15px 0 15px;
}

.card-body-latest h2{
	font-size: 0.9375rem;
	text-align: center;
}

.card-body-latest p{
	font-size: 0.875rem;
	text-align: center;
}

/* button */
.btn {
	background-color: #fc6c8c;
	border-radius: 20px;
	color: #FFF;
	display: inline-block;
	font-family: 'EB Garamond', sans-serif;
	line-height: 45px;
	min-width: 200px;
	margin-top: 1rem;
	text-align: center;
	text-decoration: none;
	transition: all 1.0s ease;
}

.btn2 {
	background-color: #fc6c8c;
	border-radius: 20px;
	color: #FFF;
	display: inline-block;
	font-family: 'EB Garamond', sans-serif;
	line-height: 45px;
	min-width: 200px;
	margin-top: 1rem;
	text-align: center;
	text-decoration: none;
	transition: all 1.0s ease;
}

.btn:hover {
	background-color: #F7DB60;
}
.btn2:hover {
	background-color: #60d4f7;
}

.btn span{
	display: inline-block;
	font-size: 1.125rem;
}

/* card type3 */
.type3{
	position: relative;
}

.card-body-type3{
	width: 100%;
	padding: 30px;
	background-color: #FFF;
	position: absolute;
	bottom: 50px;
}

.description{
	margin-top: 2rem;
	display: none;
}

.description p{
	font-size: 0.875rem;
}

.type3 .image.open img{
	filter: brightness(70%);
	transition: all 0.6s;
}

/* work */
.top-work-illust {
	width: 250px;
}
.top-work-itemlist {
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	text-align: center;
	flex-wrap: wrap;
	justify-content: center;
}

.top-work-itemlist :nth-child(1) { order: 2; }
.top-work-itemlist :nth-child(2) { order: 1; }
.top-work-itemlist :nth-child(3) { order: 3; }

.top-work-item {
	margin-bottom: 20px;
	min-width: 300px;
	padding: 20px;
}

.top-work-read {
	font-size: 0.9375rem;
}
.top-work-comic {
	margin: 15px 0 15px;
}
.top-work-item .top-work-synopsis {
	font-size:0.875rem;
	margin: 15px 0 15px;
}
.top-work-link {
	background-color: #fc6c8c;
	color: #FFF;
	display: inline-block;
	min-width: 200px;
	line-height: 45px;
	border-radius: 20px;
	font-family: 'EB Garamond', sans-serif;
	text-align: center;
	text-decoration: none;
	transition: all 1.0s ease;
}
.top-work-links .top-work-:hover {
	background-color: #F7DB60;
}
.top-work--links {
	text-align: center;
}
.top-work-titles a {
	color: inherit;
	text-decoration: none;
}
.top-work-titles a:hover {
	color: #fc6c8c;
}
.top-work-titles {
	display: flex;
	justify-content: center;
}

/* NEWS */
.news {
	border-radius: 10px;
	margin: 25px auto;
	padding-top: 25px;
	padding-bottom: 25px;
	max-width: 70%;
	background-color: #FFF;
}

.news-container {
	max-width:1000px;
	margin: 50px auto;
	padding: 0 25px 0 25px;
}
.news-title {
	color: #bc8f8f;
	text-align: center;
	font-size: 1.25rem;
	font-weight: bold;
}
.news-list {
	margin: 20px 0;
	border-top: 1px dashed #fc6c8c;
}
.news-list li {
	padding: 15px 5px;
	border-bottom: 1px dashed #fc6c8c;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.date {
	font-size: 1rem;
	margin-right: 10px;
}
.category-news {
	display: inline-block;
	color: #fff;
	width: 100px;
	font-size: 0.875rem;
	text-align: center;
	margin-right: 10px;
	padding: 2px 10px;
	background-color: #FD6B5B;
	border-radius: 10px;
}

.category-update {
	display: inline-block;
	color: #fff;
	width: 100px;
	font-size: 0.875rem;
	text-align: center;
	margin-right: 10px;
	padding: 2px 10px;
	background-color: #87BA05;
	border-radius: 10px;
}

.news-text  {
color: #bc8f8f;
font-size: 1rem;
}

.btn-news {
	background-color: #FD6B5B;
	border-radius: 20px;
	font-size: 1rem;
	color: #FFF;
	display: inline-block;
	font-family: 'EB Garamond', sans-serif;
	line-height: 45px;
	min-width: 150px;
	margin-top: 2rem;
	text-align: center;
	text-decoration: none;
	transition: all 1.0s ease;
}
.btn-news:hover {
	background-color: #87BA05;
}

.btn-center {
	text-align: center;
}

@media screen and (max-width: 559px) {
.news-container {
width: 100%;
padding: 0 20px;
}
.news-text  {
display: block;
margin-top: 10px;
text-overflow: ellipsis;
overflow: hidden;
}
}

.news-link a{
	transition: color 0.3s;
}

.news-link:hover{
	color : #FD6B5B;
}

.update-link a{
	transition: color 0.3s;
}

.update-link:hover{
	color : #87BA05;
}

/* yurayura-wannyan
--------------------------------- */
.yurayura{
	height: auto;
	position: relative;
}


.yura12{
    transform-origin: center bottom;
	position: absolute;
	bottom: 10%;
	left: 70%;
    animation: yurayura 3s linear infinite;
}

@keyframes yurayura {
	0% , 100%{
		transform: rotate(8deg);
	}
	50%{
		transform: rotate(-8deg);
	}
}

/* fuyofuyo
--------------------------------- */

.fuyofuyo{
	height: auto;
	position: relative;
}

.fuyofuyo-2{
	position: absolute;
	top:0%;
	left: 5%;
}

  /* Animation */
.fuyofuyo-2 {
	animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
	0% {
		transform: translateY(-10%);
		}
	100% {
		transform: translateY(10%);
		}
}

.fuwafuwa{
	height: auto;
	position: relative;
}

.fuwafuwa-2{
	position: absolute;
	bottom: 10%;
	right: 5%;
}

  /* Animation */
.fuwafuwa-2 {
	animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
	0% {
		transform: translateY(-10%);
		}
	100% {
		transform: translateY(10%);
		}
}


/* PROFILE */
.profile {
	text-align:center;
}	
.profile-box {
	background-color: white;
	border: 2px dashed #fc6c8c;
	max-width: 1300px;
	border-radius: 20px;
	margin: 0 auto 5%;
}

.profile-box h2 {
	font-size: 1.75rem;
}
.profile-box img {
	max-width: 300px;
	min-width: 200px;		
	display: block;
	margin: 0 auto;
}
.profile-detail {
	margin: 25px auto;
	width: 80%;
	line-height: 1.75;
	font-size: 1.125rem;
	text-align: center;
}

.profile-name {
	text-align: center;
	padding-top: 10px;
}


/*中央寄せ*/
h2.prof-love{
	display: flex;
	flex-wrap: nowrap;
	justify-content: center; 
	align-items: center;
	border:0;
}
/*短い左右線*/
h2.prof-love::before,
h2.prof-love::after {
	content: '';
	width: 30px;
	height: 1px;
	background-color:currentColor !important;
	/*Lightning見出しデザイン設定のCSS対策*/
	position: unset;
	border: unset;
	margin-left: unset;
	margin-right:unset;
	flex-grow: unset;
}
h2.prof-love::before{
	margin-right:14px;
	transform: rotate(60deg);
}
h2.prof-love::after {
	margin-left:14px;   
	transform: rotate(-60deg);
}



.profile-content {
	display: flex;
	justify-content: center;
}
.profile-article {
	margin: 25px auto;
	width: 900px;
}

h2.h2-profile {
	font-size: 1.375rem;
	font-weight: bold;
	display: flex;
	}

.profile-tittle{
	display: flex;
	line-height: 50px;
	justify-content: flex-start;
	margin: 0 auto;
	width: 80%;
}


/* 文字の左右に短い線を引く
-----------------------------------*/
.works-subtitle {
	position: relative;
	display: inline-block;
	padding: 0 35px;
	
}
.works-subtitle::before,
.works-subtitle::after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 20px;
	height: 2px;
	background-color: #bc8f8f;
}

.works-subtitle:before {
	left: 0;
}

.works-subtitle:after {
	right: 0;
}

/*WORK 
--------------------------------- */

.works-month, .works-content{
	font-size: 1rem;
	line-height: 2rem;
}
.works-record {
	display: flex;
	line-height: 50px;
	justify-content: flex-start;
	margin: 0 auto;
	width: 80%;
	border-bottom: 1px dashed #fc6c8c;
}
.works-record:last-child {
	margin-bottom: 30px;
	border-bottom: none;
}
.works-month{
	display: flex;
	align-items: center;
}
.works-month::after {
	content: "";
	width: 20px;
	margin: 0 20px;
	border-top: 2px solid #bc8f8f;
}



/* Workページ */

/*
【要素の重ね合わせ（親要素）】
positionで要素を重ね合わせると高さがなくなるので、
高さを残したい場合は親要素で「height」を指定。
*/

.work-wrapper .content:nth-child(n+2) {
	margin: 100px auto;
}
.work-wrapper .content:last-child {
	margin-bottom: 0px;
}

.content {
	max-width: 1000px;
	min-height: 698px;	
	margin: 0 auto;
	position: relative;
}

/*
【要素の重ね合わせ（子要素）】
「position: absolute;」と「left」で左に配置。
*/
.text {
	max-width: 680px;
	min-height: 698px;
	background-color: #fff;
	font-family: 'Noto Serif JP', serif;
	padding: 84px 160px 84px 84px;
		
}
.text p {
	line-height: 1.8;
	margin-bottom: 35px;
}

.text2 {
	max-width: 680px;
	min-height: 698px;
	background-color: #fff;
	font-family: 'Noto Serif JP', serif;
	padding: 84px 84px 84px 160px;
	position: absolute;
		right: 0;
		
}

.text2 p {
	line-height: 1.8;
	margin-bottom: 35px;
}

.Publication  dl{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.Publication dt {
	font-size: 1rem;
	width: 30%;
	margin-bottom: 10px;
}

dd {
	font-size: 1rem;
	width: 70%;
	margin-bottom: 10px;
}

/*
「display: inline-block;」で下線をテキスト幅に合わせる。
*/
.text .title {
	border-bottom: solid 1px #35383a;
	display: inline-block;
	font-size: 1.875rem;
	font-weight: normal;
	margin-bottom: 30px;
}

.text2 .title {
	border-bottom: solid 1px #35383a;
	display: inline-block;
	font-size: 1.875rem;
	font-weight: normal;
	margin-bottom: 30px;
}

.text .classification {
	font-size: 1.2rem;
}

.text2 .classification {
	font-size: 1.2rem;
}

/*
【要素の重ね合わせ（子要素）】
「position: absolute;」と「top」「right」で、
親要素の上から140px、右から20pxに配置。
*/
.work {
	max-width: 400px;
	position: absolute;
	top: 80px;
	right: 20px;
}
.work2 {
	max-width: 400px;
	position: absolute;
	top: 80px;
	left: 20px;
}
/*
「vertical-align: bottom;」で、画像の下の隙間を消す。
「top」を指定してもOK。
（※画像の下の隙間を消す方法は、実務でもよく使うので
覚えておいてください。）
*/
.work img {
	vertical-align: bottom;
}
.work2 img {
	vertical-align: bottom;
}

/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 950px) {
/*
スマホ時はテキストエリアと画像を縦に並べるので、
「position: static;」で位置の固定を解除する。
「height: auto;」で高さの固定も解除する。
*/
.content {
	height: auto;
    position: static;
    margin: 0;
}
.text {
    max-width: 100%;
    padding: 60px 20px;
    position: static;
	border: none;
}
.text2 {
    max-width: 100%;
    padding: 60px 20px;
    position: static;
	border: none;
}
.work {
    max-width: 100%;
    position: static;
}
.work2 {
    max-width: 100%;
    position: static;
}
}

/* GALLERY */

.gallery-group {
	display: flex;
	justify-content: space-around;
	margin-bottom: 30px;

}
.gallery-group .gallery-a {
	color: inherit;
	text-decoration: none;
}
.gallery-comic {
	position: relative;
}
.gallery-comic-title {
	position: absolute;
	top: 10px;
	left: 10px;
}
.gallery-illust {
	position: relative;
}
.gallery-illust-title {
	position: absolute;
	top: 10px;
	left: 10px;
}
.gallery-image {
	width: 450px;
	height:450px;
	object-fit: cover;
	border-radius: 41% 59% 48% 52%;
}
.gallery-font {
	font-size: 3.4375rem;
	color: rgba(245,143,152,0.8);
	text-shadow: 2px 2px 0 rgba(255,255,255,0.8);
}
.gallery-comic .gallery-image-c:hover {
	transform: scale(1.1);
	transition: transform 0.6s ease;
}
@media (any-hover: hover) {
.gallery-illust .gallery-image-i:hover {
	transform: scale(1.1);	
	transition: transform 0.6s ease;
}
}

/* ILLUST */
.illust-list {
	width: 90%;
	margin: 15px auto;
}

.illust {
	margin: 0 auto;
}
.item {
	width: 345px;
}

.item img {
	width: 100%;
	border-radius: 10px;
}

.illust-list img:hover {
	transform: scale(1.05);
	transition: 0.2s ease-in;
}

/* COMIC */
.comic-group {
	width: 80%;
	height: 80%;
	overflow: hidden;
	position: relative;
	margin: 30px auto;
	padding: 25px;
}
.comic-group .comic-title {
	font-size: 90%;
	color: #FFF;
	padding-top: 10%;
	text-align: center;
}
.comic-group .comic-title2 {
	font-size: 100%;
	color: #FFF;
	padding-top: 5%;
	text-align: center;
}

.comic-group .comic-list {
	width: 100%;
	height: 20%;
	position: absolute;
	top: -20%;
	left: 0;
	background-color: rgba(0,0,0,0.4);
	transition: all 0.4s ease;
}
.comic-group .comic-img {
	transition: all 0.4s ease;
	transform: scale(1.1);
}
@media (any-hover: hover) {
.comic-group:hover .comic-list {
	top: 0px;
}
.comic-group:hover .comic-img {
	transform: scale(1);
}
}
.comic-group {
	border-radius: 5%;
}
.comic-contain {
	display: grid;
	grid-template-columns: repeat(auto-fit, 600px);
	justify-content: space-evenly;
	gap: 10px;
}

comic-contain {
	display: flex;
	flex-wrap: wrap;
}


/* CONTACT */
.contact-wrapper{
	background-color: white;
	max-width: 1300px;
	border-radius: 10px;
	margin: 25px auto;
	padding-top: 25px;
	padding-bottom: 25px;
}

.contact {
	width: 1000px;
	margin: 75px auto 0;
	background-color: white;
}
input,textarea {
	border: 2px solid #bc8f8f;
	border-radius: 5px;
}
.contact-sub {
	font-size: 1.875rem;
	text-align: center;
	font-weight: 300;
}
.contact-attention {
	font-size: 1rem;
}
.contact-explanation {
	line-height: 30px;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
}
.contact-explanation {
	font-size: 1.125rem;
}
.contact-area {
	font-size: 1.125rem;
	border: 1px solid #bc8f8f;
	margin: 0 auto;
	padding: 10px 15px 15px;
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
}

.contact-area dt {
	width: 350px;
	padding: 35px 5px;
	font-weight: bold;
}
.contact-area dd {
	width: calc(100% - 350px);
	padding: 20px 0;
}
.contact-input {
	width: 100%;
	max-width: 500px;
	height:40px;
	padding-left:20px;
	padding-right:20px;
}
.contact-radio {
	margin-top: 10px;
}
.contact-message {
	width: 100%;
	height: 300px;
	padding: 10px;
}
.contact-button {
	background-color: #fc6c8c;
	color: #FFF;
	display: inline-block;
	min-width: 200px;
	line-height: 45px;
	border-radius: 20px;
	font-family: 'EB Garamond', sans-serif;
	text-align: center;
	transition: all 1.0s ease;
}
.contact-button-2 {
	background-color: #60d4f7;
	color: #FFF;
	display: inline-block;
	min-width: 200px;
	line-height: 45px;
	border-radius: 20px;
	font-family: 'EB Garamond', sans-serif;
	text-align: center;
	transition: all 1.0s ease;
}
#radio-2 {
	margin-left: 10px;
}
.contact-text {
	margin: 20px auto;
	width: 80%;
	font-size: 1.125rem;
}

.contact-under {
	margin-top: 20px;
	margin-bottom: 50px;
	text-align: center;
}
.contact-button:hover {
	background-color: #F7DB60;
}
.contact-button-2:hover {
	background-color: #F7DB60;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
	background-color: rgba(247,219,96,0.3);
}

.check-area {
	font-size: 1.125rem;
	border: 1px solid #bc8f8f;
	margin: 0 auto;
	padding: 10px 15px 15px;
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
}

.Completion-area {
	font-size: 1.125rem;
	line-height:0.9375em;
	border: 1px solid #bc8f8f;
	margin: 0 auto;
	padding: 20px 15px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* #fc6c8c:ピンク #bc8f8f:灰色 #F6C6A2:薄ピンク #99CCFF:水色 #F7DB60:ホバー黄色 */


/* 画面サイズが950px以下
--------------------------------*/
@media (max-width: 950px){

.common-top {
	font-size: 2.5rem
}
.common-contact {
	font-size: 2.5rem;
}
.common-top, .common-top::before, .common-top::after {
	white-space: nowrap;
}
/* ヘッダー・フッター
--------------------------------*/
.site-menu ul {
	display: block;
	text-align: center;
}
.site-menu li {
	margin-top: 30px;
	line-height: 15px;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: #FFF;
	height: 80px;
	z-index: 10;
}
.header-inner {
	padding: 10px 30px 0;
	height: 100%;
	position: relative;
}
.header-logo {
	width: 250px;
	}

.header-site-menu {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	color: #FFF;
	background-color: rgba(245,143,152,0.7);
	padding: 30px 0 50px;
	display: none;
}
.toggle-menu-button {
	display: block;
	width: 60px;
	height: 40px;
	background: url(../images/index/icon-menu.png) no-repeat center/ 50%;
	background-color: transparent;
}
.header-site-menu.is-show {
	display: block;
}


.footer-copy {
	margin-top: 50px;
}

.page-wrapper {
	background-color: white;
	margin-top: 80px;
}


/* INDEX
--------------------------------*/
.first-view {
	height: 80vh;
	background-image: url(../images/index/media_s.png);
	align-items: flex-start;
}

.first-h1 {
	font-size: 3.125rem;
}

.yura12 {
	width: 40%;
	left: 200px;
}

.fuyofuyo-2{
	width: 30%;
}

.fuwafuwa-2{
	width: 30%;
}


.top {
	margin: 50px auto;
	padding-top: 25px;
	padding-bottom: 25px;
	maX-width: 100%;
	background-color: #FFF;
}
.worktop-itemlist {
	display: block;
} 

.top-work-itemlist :nth-child(1) { order: 1; }
.top-work-itemlist :nth-child(2) { order: 2; }
.top-work-itemlist :nth-child(3) { order: 3; }

.worktop-item {
	width: 250px;
	margin: 0 auto;
}
.worktop-comic {
	font-size: 1rem;
}

.btn-center {
	text-align: left;
}

/* PROFILE
--------------------------------*/
.profile-box {
	width: auto;
	margin: 25px;
}
.profile-detail {
	font-size:0.9375rem;
}
.profile-aside {
	width: auto;
	font-size: 0.9375rem;
}
.profile-article {
	width: 90%;
}
.profile-love {
	font-size: 0.6875rem;
	line-height: 18px;
}
.profile-tittle{
	justify-content: center;
}
h2.h2-profile {
	font-size: 1.75rem;
	}


/* WORKS
--------------------------------*/
.works-table {
	width: 80%;
	text-align: center;
	font-size: 0.8125rem;
	border-radius: 20px;
}
.works-td {
	margin-top: 10px;
	display: block;
}
.pagemap {
	width: 40%;
	font-size: 0.625rem;
	padding: 5px;
	white-space: nowrap;
}

.pagemap li {
	display: inline-block;
}

.pagemap li:not(:last-child)::after {
	margin: 0 0.5em;
}
.works-record {
	width: 90%;
	line-height: 20px;
}
.works-month, .works-content{
	font-size: 0.9375rem;
}
.works-subtitle {
	font-size: 1.25rem;
	margin-bottom: 20px;
}
.works-month::after {
	content: "";
	width: 10px;
	margin: 0 20px;
	border-top: 2px solid #bc8f8f;
}
.works-month {
	white-space: nowrap;
}

/* GALLERY
--------------------------------*/
.gallery-group {
	display: block;
}

.illust-group {
	display: block;
}
.comic-contain {
	display: block;
}
.comic-group {
	width: 80%;
	margin: 10px auto;
}
.gallery-comic {
	margin: 0 auto 30px;
	width: 70%;

}
.gallery-comic img {
	max-width: 100%;
	height: auto;
}
.gallery-illust {
	margin: 0 auto;
	width: 70%;
}
.gallery-illust img {
	max-width: 100%;
	height: auto;
}


/* NEWS
--------------------------------*/
.news {
	border-radius: none;
	padding-top: 25px;
	padding-bottom: 25px;
	max-width: 100%;
	background-color: #FFF;
}




/* ページネーション */
.pic-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    background-color: #fefefe;
    gap: 1rem;
}

.pagination {
    display: flex;
    gap: 0.5rem;
	justify-content: center;
}

.pagination a {
    display: inline-block;
    color: #bc8f8f;
    border-radius: 50%;
    border: 1px solid #dedede;
    text-decoration: none;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.pagination i {
    line-height: 40px;
}

.pagination .active a {
    background-color: #5CC6CD;
    color: white;
}

.pagination a:hover {
    background-color: #86c8cc;
    color: white;
}

.pagination .disabled a {
    pointer-events: none;
    color: #ccc;
}

.pagination .disabled a:hover {
    background-color: initial;
    color: #ccc;
}

/*CONTACT
--------------------------------*/

.contact-area dd {
	width: 100%;
	padding-top: 0;
}
.contact {
	width: 100%;
}








/* レスポンシブロゴフェードイン
--------------------------------*/
.logo_fadein p {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 999;
	width: 400px;
}

/* リンクドロップダウン無効
--------------------------------*/

.dropdown-lists:hover .dropdown-list {
	display: none;
}

/* リンクの下線無効
--------------------------------*/
.site-a::after, .site-b::after {
	display: none;
}



}
