@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: none;
	font-style: normal;
	text-align: left;
	zoom: 1;
}
th,td { border-collapse: collapse; }
table th,table td { white-space: nowrap; }
ul,ol { list-style-type: none; }
a {
	cursor : pointer;
	text-decoration:none;
}

body {
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
	font-family: "Kosugi Maru", sans-serif;
	font-weight: 400;
	font-style: normal;
	background: #f9ffd4;
}
img {
	-webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}
p { line-height: 1.8; }
a, p, h4, .modal-block .caption { letter-spacing: 0.1em; }
a.link_btn,
#illustListArea .more-btn {
	display: block;
    text-align: center;
    margin: 20px auto 0;
    padding: 10px;
    color: #3b5632;
    background: #fff9d2;
    border: 2px solid #3b5632;
    border-radius: 100px;
    width: 60%;
    transition: all .3s;
    -webkit-transition: all .3s;
}
a.link_btn span.dli-caret-right {
	display: inline-block;
	margin-left: 10px;
	vertical-align: middle;
	color: #3b5632;
	line-height: 1;
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent;
	border-width: 0.375em 0.64952em;
	border-left-color: currentColor;
	border-right: 0;
}
#illustListArea .more-btn span.dli-caret-down {
	display: inline-block;
	margin-left: 10px;
	vertical-align: middle;
	color: #3b5632;
	line-height: 1;
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent;
	border-width: 0.64952em 0.375em;
	border-top-color: currentColor;
	border-bottom: 0;
}
h1.header-logo a#logo,
.header .gnavArea li a,
.gnavSns .gnavSns_menu_item a,
a.workBoxlink,
.workList a,
#contact a,
footer ul.snsMenu li.sns_menu_item a {
    transition: all .3s;
    -webkit-transition: all .3s;
}
a.link_btn:hover,
h1.header-logo a#logo:hover,
.header .gnavArea li a:hover,
.gnavSns .gnavSns_menu_item a:hover,
a.workBoxlink:hover,
.workList a:hover,
#illustListArea .more-btn:hover,
#contact a:hover,
footer ul.snsMenu li.sns_menu_item a:hover { transform: scale(0.9, 0.9); }
h2.heading {
	position: relative;
	width: 100%;
    text-align: center;
    padding: 20px 0 0;
}
h2.heading:before {
  background-color: #83d542;
  border-radius: 5px;
  bottom: -10px;
  content: "";
  height: 3px;
  left: 49%;
  position: absolute;
  transform: translateY(-50%);
  width: 30px;
}
h2.heading img { width: 200px; }
h3.heading {
	position: relative;
    width: 100%;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #83d542;
    text-align: center;
}
h4 {
	padding: 10px 0 20px;
    color: #3b5632;
    text-align: center;
    line-height: 1.4;
}
h4 span {
	display: block;
    text-align: center;
}
.dli-external-link {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  color: #83d542;
  line-height: 1;
  width: 0.7em;
  height: 0.7em;
  border: 0.1em solid currentColor;
  border-radius: 0.1em;
  background: #fff;
  box-sizing: content-box;
  position: relative;
}
.dli-external-link > span {
  position: absolute;
  top: -0.2em;
  right: -0.2em;
  width: 45%;
  height: 45%;
  border: 0.1em solid currentColor;
  border-bottom: 0;
  border-left: 0;
  background: #fff;
  box-shadow: -0.1em 0.1em 0 0.1em #fff;
  box-sizing: border-box;
}
.dli-external-link > span::before {
  content: '';
  position: absolute;
  top: -0.05em;
  right: -0.1em;
  width: 0.1em;
  height: 0.9em;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: top center;
}



/* アニメーション */
/*** ふわっと表示 ***/
.load-fade {
	opacity: 0;
	visibility: hidden;
	transition: all 1s;
}
.load-fade.is-show {
	opacity: 1;
	visibility: visible;
}

/*** 時間差フェードイン ***/
.fadeIn500ms {
	animation-name: fadeIn500ms;
	animation-delay: 500ms;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	transform: translateY(50px);
	opacity: 0;
}
@keyframes fadeIn500ms {
	0% {
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.fadeIn1s {
	animation-name: fadeIn1s;
	animation-delay: 1s;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	transform: translateY(50px);
	opacity: 0;
}
@keyframes fadeIn1s {
	0% {
	}
	100% {
	transform: translateY(0);
	opacity: 1;
	}
}

.fadeIn1500ms {
	animation-name: fadeIn1500ms;
	animation-delay: 1500ms;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	transform: translateY(50px);
	opacity: 0;
}
@keyframes fadeIn1500ms {
	0% {
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.fadeIn2s {
	animation-name: fadeIn2s;
	animation-delay: 2s;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	transform: translateY(50px);
	opacity: 0;
}
@keyframes fadeIn2s {
	0% {
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

/*** スクロールでフェードイン ***/
.fadeInUp { opacity: 0; transform: translateY(100px); }
@keyframes fadeIn {
	0% {
	}
	100% {
	opacity: 1;
	transform: translate(0);
	}
}
/* フェードインさせるクラス */
.fadeIn {
	animation-name: fadeIn;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}


.header #toggle-nav { display: none; }
.header #toggle-nav:checked ~ .hamburger div {
	width: 40px;
    height: 40px;
	background: url( "/img/all/menu_close.png" ) top right / 40px 40px no-repeat #83d542;
}
.header #toggle-nav:checked ~ .gnavArea {
	opacity: 1;
	visibility: visible;
}

h1.header-logo {
	height: 65px;
	background: #83d542;
}
h1.header-logo a#logo {
	display: inline-block;
	height: 65px;
}
h1.header-logo img {
    width: 152px;
    height: auto;
    max-width: 100%;
    padding: 18px;
}
h1.header-logo.logo_close {
	position: absolute;
	width: 100%;
    top: 0;
    left: 0;
}

.header .hamburger {
	cursor: pointer;
    position: absolute;
    z-index: 1010;
    top: 14px;
    right: 20px;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}
.header #toggle-nav:checked ~ .hamburger { position: fixed; }
.header .hamburger div {
    position: relative;
	width: 40px;
    height: 40px;
	background: url("/img/all/menu_open.png") top center / 40px 40px no-repeat #83d542;
}



.header .gnavArea {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #83d542;
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease-out;
  will-change: opacity, visibility;
}
.header .gnavArea ul {
	margin: 0;
    padding: 60px;
    list-style-type: none;
    background: #fff;
    border-radius: 50px;
}
.header .gnavArea li {
      margin-bottom: 20px;
}
.header .gnavArea a {
	display: inline-block;
}
.header .gnavArea li a img {
    width: 100%;
    max-width: 200px;
}
.header .gnavArea a, a:hover {
 	text-decoration: none;
}
.gnavSns {
    display: flex;
    margin: 30px auto 0;
	max-width: 300px;
}
.gnavSns .gnavSns_menu_item {
	width: calc(100% / 3 - 20px);
	max-width: 300px;
    float: left;
    margin: 0 10px;
    text-align: center;
}
.gnavSns .gnavSns_menu_item a { display: inline-block; }
.gnavSns .gnavSns_menu_item a img {
	width: 40px;
    height: auto;
}
.gnavArea p.caution {
	padding: 0;
    font-size: 12px;
	text-align: center;
}


#topImg {
	width: 100%;
    margin: 0 auto;
    height: calc(100vh - 65px);
    position: relative;
    overflow: hidden;
    background: url( "/img/all/main.jpg" ) top center / cover no-repeat #83d542;
}
#topImg .scroll {
  position: absolute;
  right: 10%;
  bottom: 20%;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-shadow: 2px 2px 4px #3b563291;
  writing-mode: vertical-rl;
}
#topImg .scroll::before {
  animation: scroll 2s infinite;
  background-color: #fff;
  bottom: -100px;
  content: "";
  height: 90px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 2px;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}


#about {
	position: relative;
	padding: 40px 20px;
}
#about p {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}
#about img {
	position: absolute;
	width: 70px;
}
#about img.about_icon01 {
	top: -30px;
    left: 10%;
    transform: rotate(-15deg);
}
#about img.about_icon02 {
	top: 20px;
	right: 6%;
	transform: rotate(5deg);
}
#about img.about_icon03 {
	bottom: -15px;
	left: 6%;
	transform: rotate(-5deg);
}


#mainMenu {
    margin: 0 auto;
    padding: 30px 0 20px;
    background: #f5f38f;
}
#mainMenu p {
	padding: 0 0 20px;
	color: #3b5632;
    font-size: 14px;
	text-align: center;
}
#mainMenu ul {
    width: 100%;
	max-width: 500px;
    margin: 0 auto;
}
#mainMenu li.main_menu_item {
	width: 100%;
    padding: 10px 40px 30px;
    box-sizing: border-box;
}
#mainMenu li.main_menu_item img {
	width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
}


#contact {
	margin: 0 auto;
	padding: 40px 20px 10px;
    width: auto;
    display: block;
    text-align: center;
}
#contact .formBox {
    margin: 0 auto;
	max-width: 1000px;
}
#contact .formBox p {
	font-size: 14px;
	text-align: center;
}
#contact .formBox p a { color: #83d542; }
#contact .formBox p a,
.contactArea p a { margin: 0 8px; }
#contact .formBox p a .dli-external-link,
.contactArea p a .dli-external-link,
#contact .formBox p a .dli-external-link > span,
.contactArea p a .dli-external-link > span { background: #f9ffd4; }
#contact .formBox p a .dli-external-link > span,
.contactArea p a .dli-external-link > span { box-shadow: -0.1em 0.1em 0 0.1em #f9ffd4; }


/* 一覧 */
#illustListArea {
	padding: 30px 20px 20px;
}
.illust-listBox {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	flex-wrap: wrap;
}
.illust-listBox > li {
	width: calc(100% / 3 - 20px);
    float: left;
    margin: 0 10px 20px;
    text-align: center;
}
.illust-listBox .illust-list { cursor: pointer; }
.illust-listBox .illust-list .img-box {
	width: 100%;
	height: auto;
	overflow: hidden;
	border-radius: 20px;
}
.illust-listBox .illust-list .img-box > img {
	transition: .3s;
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
	aspect-ratio: 1 / 1;
}
.illust-listBox .illust-list:hover .img-box > img {
	transform: scale(1.05);
	border-radius: 20px;
}

.modal-block {
	display: none;
	position: fixed;
	justify-content: center;
	align-items: center;
	z-index: 99999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.8);
}
.modal-block .img-section {
	width: 60vw;
	height: 60vh;
	position: relative;
	margin: 0 auto;
	padding: 40px 40px 80px;
    background: #fff;
    border-radius: 20px;
}
.modal-block .img-section span {
	position: absolute;
	transform: translate(50%, -50%);
	top: 0;
	right: 0;
	cursor: pointer;
}
.modal-block .img-section span::before {
	content: "";
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: block;
	color: #3b5632;
    background: url(/img/all/icon_batsu.png) top right / contain no-repeat #fff9d2;
    border: 2px solid #3b5632;
}
.modal-block .img-section img {
	width: 100%;
    height: 100%;
    object-fit: contain;
}
.modal-block .caption {
	font-size: 14px;
	margin-top: 10px;
	color: #3b5632;
	text-align: center;
}

#illustListArea .more-btn {
	width: 100%;
	margin: 20px 20% 0;
    padding: 4px;
}

/* お仕事 */
.workBox {
	margin-top: 40px;
	padding: 20px;
    background: #fff;
    border-radius: 20px;
    box-sizing: border-box;
}
.workBox:first-child { margin-top: 0; }
a.workBoxlink,
p.workBox_p {
    display: inline-block;
    width: 100%;
	padding: 0 0 30px;
	font-size: 14px;
    color: #83d542;
    text-align: center;
    box-sizing: border-box;
}
.workList {
	width: 100%;
}
.workList img {
	width: 100%;
}
.workList a {
	display: inline-block;
    width: 100%;
    padding: 10px 0 20px;
    color: #83d542;
	font-size: 14px;
    text-align: center;
    box-sizing: border-box;
}



/* サイトについて */
#aboutArea {
	padding: 40px 20px 0;
	max-width: 1000px;
    margin: 0 auto;
}
.onegaiArea,
.contactArea { padding: 60px 0 0; }
.profileArea img {
	border-radius: 100px;
    display: block;
    margin: 0 auto;
}
.profileArea p,
.onegaiArea p,
.contactArea p {
	font-size: 14px;
	text-align: center;
}
.profileArea p span {
	display: block;
	margin-top: 10px;
    font-size: 18px;
    text-align: center;
}
#aboutArea table {
	width: 100%;
	table-layout: fixed;
    word-break: break-all;
}
#aboutArea table { margin-top: 10px; }
#aboutArea table th {
	padding: 10px;
	color: #3b5632;
	text-align: center;
	background: #afed7e;
    border-radius: 10px 10px 0 0;
    box-sizing: border-box;
}
#aboutArea table td {
	padding: 10px;
	color: #3b5632;
	font-size: 12px;
	text-align: center;
	line-height: 1.6;
    background: #fff;
    border-radius: 0 0 10px 10px;
    box-sizing: border-box;
}
#aboutArea table td span {
	display: block;
	margin-top: 10px;
	text-align: center;
}
#aboutArea table td span.point {
    font-weight: bold;
    text-decoration: #83d542 wavy underline;
}
#aboutArea table.table01 td span.point { margin-top: 0; }
#aboutArea table td span.memo {
	color: #777777;
    font-size: 12px;
    line-height: 1.4;
}
#aboutArea table td span a { color: #83d542; }


footer {
	position: relative;
	height: 200px;
    width: 100%;
    background: -webkit-gradient(radial, 50% 100%, 20, 50% 100%, 110, from(#83d542), color-stop(0.50, #83d542), color-stop(0.50, #f9ffd4));
    -webkit-background-size: 50px 100%;
}
footer ul.snsMenu {
    display: flex;
    margin: 0 auto;
	padding: 20px 90px 10px;
	max-width: 400px;
}
footer ul.snsMenu li.sns_menu_item {
	width: calc(100% / 3 - 20px);
	max-width: 300px;
    float: left;
    margin: 0 10px;
    text-align: center;
}
footer ul.snsMenu li.sns_menu_item a { display: inline-block; }
footer ul.snsMenu li.sns_menu_item a img {
	width: 40px;
    height: auto;
}
footer p {
	padding: 0 0 20px;
    font-size: 12px;
	text-align: center;
}
footer img.footer_illust {
	position: absolute;
    bottom: 0;
    width: 90px;
}
footer img.footer_illust.ki01 { left: 20px; }
footer img.footer_illust.ki02 { right: 20px; }
footer img.footer_illust.ki03 {
	left: 110px;
    width: 50px;
}
footer img.footer_illust.ki04 {
	right: 110px;
    width: 50px;
}


@media screen and (min-width:1200px) {
	h1.header-logo { text-align: center; }
	.header .hamburger { right: 30%; }
	#about { padding: 60px 20px; }
	#about p { font-size: 20px; }
	#about img { width: 100px; }
	#about img.about_icon01 { left: 15%; }
	#about img.about_icon02 {
		top: 80px;
		right: 10%;
	}
	#about img.about_icon03 { left: 10%; }
	#mainMenu { padding: 40px 0; }
	#mainMenu p { font-size: 16px; }
	#mainMenu ul {
	    display: flex;
	    margin: 0 auto;
	    padding: 0;
	    max-width: 1400px;
	}
	#mainMenu li.main_menu_item {	
		width: calc(100% / 3 - 0px);
	    max-width: 100%;
	    float: left;
	    margin: 0;
	    text-align: center;
	}
	#mainMenu li.main_menu_item img { height: 300px; }
	.illust-listBox {
	    margin: 0 auto;
	    max-width: 1000px;
	}
	.modal-block .img-section span::before {
		width: 60px;
	    height: 60px;
	}
}
@media screen and (min-width:1000px) and (max-width:1199px) {
	#about p { font-size: 18px; }
	#mainMenu ul {
	    display: flex;
	    margin: 0 auto;
	    padding: 0;
	    max-width: 1000px;
	}
	#mainMenu li.main_menu_item {	
		width: calc(100% / 3 - 0px);
	    max-width: 1000px;
	    float: left;
	    margin: 0;
	    text-align: center;
	}
	#mainMenu li.main_menu_item a.link_btn { font-size: 14px; }
	.illust-listBox {
	    margin: 0 auto;
	    max-width: 1000px;
	}
}
@media screen and (min-width:1000px) {
	#aboutArea table td { font-size: 14px; }
	.workBox {
		max-width: 1000px;
    	margin: 40px auto 0;
	}
}
@media screen and (max-width:425px) {
	.modal-block .img-section {
		width: 70vw;
        height: 50vh;
        padding: 20px 20px 60px;
    }
}
@media screen and (max-width:374px) {
	#aboutArea table td {
	    padding: 10px 4px;
		font-size: 11px;
	}
	#aboutArea table td span { font-size: 12px; }
}