@charset "utf-8";
/* CSS Document */
* {
	box-sizing: border-box;
}
body {
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', Meiryo, sans-serif;
	color: #333;
	font-size: 15px;
	line-height: 1.6;
	overflow-x: hidden;
}
body.fixed {
	height: 100vh;
	overflow: hidden;
}
/*----------------------------common----------------------------*/
h1, h2, h3, h4, h5, h6, p, label {
	padding: 0px;
	margin: 0px;
	vertical-align: middle;
}
a {
	display: inline-block;
}
ul {
	padding: 0px;
	margin: 0px;
	list-style: none;
}
img {
	max-width: 100%;
	vertical-align: middle;
}
a, button,input[type=submit] {
	transition: 0.7s opacity;
	text-decoration: none;
}
a:hover,
button:hover,
input[type=submit] {
	cursor: pointer;
	opacity: 0.6;
	text-decoration: none;
}
input[type=submit] {
	border: none;
}
input[type=submit]:focus {
	border: none;
	outline: none;
}

/* Common */
.text-center {
	text-align: center;
}
@media screen and (max-width: 768px) {
	.pc-only {
		display: none !important;
	}
}

@media screen and (min-width: 769px) {
	.sp-only {
		display: none !important;
	}
}

/*-------------header----------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
}
.header-main {
	justify-content: space-between;
	background-color: #fff;
	border-bottom: 1px solid #f8f8f8;
}
.header-container {
	width: 90%;
	max-width: 1080px;
	margin: auto;
}
.header-body {
  position: relative;
  display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo-wrapper img {
  width: auto;
  height: 90px;
}
.header-nav-menu-list {
	display: flex;
	flex-wrap: wrap;
}
.header-nav-menu-list > li {
	position: relative;
  padding: 0 25px;
}
.header-nav-menu-list > li:not(:last-child):after {
	content: '';
	position: absolute;
	right: 0;
	top: 4px;
	width: 1px;
	height: calc(100% - 8px);
	background-color: #000;
	transform: rotate(35deg);
}
.header-nav-menu-list > li a {
	font-size: 16px;
	font-weight: bold;
	color: #000;
}
.header-nav-menu-list > li.no-border-right:after {
	background-color: transparent;
}
@media screen and (min-width: 768px) {
  .header-nav-menu-list > li a:after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #000;
    transition: width .3s;
  }
  .header-nav-menu-list > li a:hover:after {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .header-container {
		width: 100%;
		margin: 0;
  }
  .header-body {
    padding: 0;
  }
	.header-nav-menu {
		display: none;
		height: calc(100vh - 90px);
    padding-bottom: 0;
    background-color: rgba(255, 255, 255, .75);
    z-index: 100;
	}
	.header-menu-btn__container .lines span {
		position: absolute;
    background: #333;
		width: 100%;
    height: 2px;
    left: 0;
    right: 0;
		margin: 0;
		transition: .7s all;
	}
	.header-menu-btn__container .lines {
		position: relative;
		width: 8vw;
		height: 30px;
	}
	.header-menu-btn__container .lines span:nth-child(1) {
    top: 0;
	}
	.header-menu-btn__container .lines span:nth-child(2) {
		top: calc(50% - 2px);
    bottom: 0;
	}
	.header-menu-btn__container .lines span:nth-child(3) {
    bottom: 0;
	}
	.header-menu-btn.opened .header-menu-btn__container .lines span:nth-child(1) {
    transform: translateY(14px) rotate(45deg);
	}
	.header-menu-btn.opened .header-menu-btn__container .lines span:nth-child(2) {
    opacity: 0;
	}
	.header-menu-btn.opened .header-menu-btn__container .lines span:nth-child(3) {
    transform: translateY(-14px) rotate(-45deg);
	}
	.header-menu-btn  {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
		align-self: flex-start;
	}
	.header-nav-menu {
		position: absolute;
    left: 0;
		top: 90px;
		width: 100%;
	}
	.header-nav-menu-list > li {
    flex: 100%;
    max-width: 100%;
		border-left: 0;
		background-color: #fff;
		border-right: 0 !important;
		border-top: 1px solid #f8f8f8;
	}
	.header-nav-menu-list > li a {
    position: relative;
    display: inline-block;
    width: 100%;
		font-size: 16px;
		text-align: center;
    padding: 30px 0;
	}
	.header-nav-menu-list > li a:after {
    content: '';
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 25px;
    height: 25px;
    background: url(../img/icon-header-01.svg.html) no-repeat center;
	}
	.header-nav-menu-list > li:not(:last-child):after {
		display: none;
	}
	.header-nav-menu-list > li a.buy-link {
		width: 75vw;
    height: 50px;
    text-align: center;
		color: #fff;
		padding: 0;
	}
	.header-nav-menu-list > li.sp-only {
		padding: 30px 0;
		text-align: center;
	}
}
/* End Header */

footer {
	position: relative;
	padding-top: 65px;
	border-top: 3px solid #000;
}
#page-top-link {
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 100px;
	background-color: #f6ce01;
	border: 3px solid #000;
}
#page-top-link:after {
	content: '';
	display: inline-block;
	border-style: solid;
	border-width: 0 8px 15px 8px;
	border-color: transparent transparent #000 transparent;
}
.footer-logo {
	margin-bottom: 45px;
}
.footer-logo img{
  width: auto;
  height: 90px;
}
.footer-ban{
	margin: 0 0 50px 0;
}
.footer-banImg{
	border: 1px solid #333333;
	width:  100%;
	height: auto;
	max-width: 320px;
	margin: 0 10px;
	float: left;
}
.footer-banImg--second{
	float: right;
}
.footer-links {
	clear: both;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.footer-links > li {
	position: relative;
	padding: 0 25px;
}
.footer-links > li a {
	font-size: 16px;
	font-weight: bold;
	color: #000;
}
.footer-links > li:not(:last-child):after {
	content: '';
	position: absolute;
	right: 0;
	top: 4px;
	width: 1px;
	height: calc(100% - 8px);
	background-color: #000;
	transform: rotate(35deg);
}
@media screen and (min-width: 769px) {
	.footer-links > li a:after {
		content: '';
		display: block;
		width: 0;
		height: 2px;
		background: #000;
		transition: width .3s;
	}
	.footer-links > li a:hover:after {
    width: 100%;
	}
}
.footer-links {
	margin-bottom: 30px;
}
.footer-other-links {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}
.footer-other-links > li {
	padding: 0 7px;
}
.footer-other-links > li a {
	color: #000;
}
.copyright {
	font-size: 12px;
	text-align: center;
	font-weight: bold;
	line-height: 70px;
	background-color: #f6ce01;
}
@media screen and (max-width: 768px) {
	.footer-ban{
	margin: 0 0 30px 0;
}
.footer-banImg{
	margin: 0 0 10px 0;
	float: none;
}
.footer-banImg--second{
	float: none;
}
	.footer-links > li:not(:last-child):after {
		display: none;
	}
	.footer-links,
	.footer-other-links {
		margin: 0 -5vw;
	}
	.footer-links > li,
	.footer-other-links > li {
		flex: 50%;
		max-width: 50%;
		text-align: center;
		padding: 0;
		border-bottom: 1px solid #f8f8f8;
		border-right: 1px solid #f8f8f8;
	}
	.footer-links > li a,
	.footer-other-links > li a {
		padding: 25px 10px;
	}
	.footer-links > li a {
		font-size: 15px;
	}
	.footer-links > li:first-child,
	.footer-links > li:nth-child(2)  {
		border-top: 1px solid #f8f8f8;
	}
	#page-top-link {
    width: 70px;
		height: 70px;
	}
}
/* End Footer */
.show-product-link {
	position: relative;
	font-size: 15px;
	font-weight: bold;
	color: #000;
	padding: 15px 75px 15px 30px;
	background-color: #f6ce01;
	border: 3px solid #000;
	border-radius: 999px;
}
.show-product-link img {
	position: absolute;
	bottom: 0;
	right: 10px;
	z-index: 1;
}
article {
	margin-top: 90px;
}
.fixed-container {
	max-width: 960px;
	width: 90%;
	margin: auto;
}
/* TOP */
.fv-container {
	overflow: hidden;
}
.fv-wrapper--top {
	text-align: center;
	padding: 50px 20px 150px;
	background: #f6ce01 url(../img/img-container-05.png) repeat;
	background-size: cover;
}
.fv-wrapper--bottom {
	position: relative;
	text-align: center;
	padding: 0 15px 60px;
}
.fv-wrapper--bottom:before {
	content: '';
	position: absolute;
	top: -100px;
	left: 50%;
	width: 2000px;
	height: 2000px;
	transform: translateX(-50%);
	background-color: #fff;
	border-radius: 50%;
}
.fv-wrapper--bottom img {
	position: relative;
	margin-top: -170px;
}
.top-section-01 {
	padding: 60px 0;
	background: #fefae6 url(../img/img-container-05.png) repeat;
}
.div-decoration--wrapper {
	position: relative;
}
.div-deco--item {
	display: inline-block;
	position: absolute;
	width: 206px;
	height: 42px;
}
.div-deco--item.top {
	top: 0;
}
.div-deco--item.bottom {
	bottom: 0;
}
.div-deco--item.left {
	left: 0;
}
.div-deco--item.right {
	right: 0;
}
.div-deco--item.bottom.left,
.div-deco--item.top.right {
	background: url(../img/img-container-09.png) no-repeat center;
	background-size: contain;
}
.div-deco--item.top.right {
	transform: rotate(180deg);
}
.div-deco--item.top.left,
.div-deco--item.bottom.right {
	background: url(../img/img-container-12.png) no-repeat center;
	background-size: contain;
}
.div-deco--item.bottom.right {
	transform: rotate(180deg);
}
.top-section-01--wrapper {
	width: 100%;
	max-width: 870px;
	margin: auto;
}
.title,
.title2 {
	font-family: "Tsukushi A Round Gothic","筑紫A丸ゴシック";
	font-size: 26px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 15px;
}
.title2 {
	font-size: 36px;
	margin-bottom: 44px;
}
.section-01--container {
	max-width: 76%;
	line-height: 1.8;
	padding: 60px 0;
	margin: auto;
}
.top-section-02 {
	padding: 60px 0 65px;
}
.section-02--top {
	display: flex;
	margin-bottom: 45px;
}
.section-02--top .pannel-list {
	margin-right: 60px;
}
.section-02--top .pannel-list > li {
	margin-bottom: 12px;
}
.border-wrapper {
	position: relative;
	background-color: #fff;
	border: 5px solid #000;
	border-radius: 8px;
}
.border-wrapper:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: -11px;
	right: -11px;
	background: url(../img/img-container-13.png) repeat;
	border-radius: 10px;
	z-index: -1;
}
.section-02--bottom {
	font-family: "Tsukushi A Round Gothic","筑紫A丸ゴシック";
	font-size: 22px;
	font-weight: bold;
	line-height: 2;
	padding: 60px 45px;
}
.section-02--bottom .bg-yellow-effect {
	position: relative;
	background: #f6ce01;
	padding: 4px 0;
}
/* .section-02--bottom .bg-yellow-effect span {
	position: relative;
} */
/* .section-02--bottom .bg-yellow-effect:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 30px;
	background: #f6ce01;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
} */
/* .section-02--bottom .bg-yellow-effect.s:before {
	width: calc(100% - 10px);
	left: 5px;
} */
.top-section-03 {
	padding: 40px 0;
	background: #f6ce01 url(../img/img-container-05.png) repeat;
	background-size: cover;
}
.section-03-wrapper {
	position: relative;
	padding: 25px 0 30px;
	margin-left: -2.5vw;
	margin-right: -2.5vw;
	background-color: #f6ce01;
}
.pos-man {
	position: absolute;
	max-width: 20vw;
	min-width: 100px;
	bottom: -30px;
	right: 5px;
}
.img-title {
	text-align: center;
}
.section-03-wrapper .img-title {
	padding: 0 2.5vw;
	margin-bottom: 30px;
}
.section-03--content {
	position: relative;
	margin-left: 2.5vw;
	margin-right: 2.5vw;
	border-radius: 8px;
}
.section-03--wrapper {
	width: 90%;
	max-width: 700px;
	margin: auto;
}
/* .section-03--content:after {
	content: '';
	display: inline-block;
	width: 80%;
	height: 110px;
	position: absolute;
	top: -55px;
	left: 10%;
	background: url(../img/img-container-07.png) no-repeat center;
	background-size: contain;
} */
.section-03--content .div-deco--item.top.right {
	top: 20px;
	right: 40px;
}
.section-03--content .div-deco--item.bottom.left {
	bottom: 20px;
	left: 40px;
}
.section-03--content h3 {
	text-align: center;
	margin-bottom: 30px;
}
.section-03--content h3 .txt-deco {
	position: relative;
	font-family: "Tsukushi A Round Gothic","筑紫A丸ゴシック";
	font-size: 35px;
	font-weight: bold;
	text-align: center;
	padding-bottom: 1px;
	background-image: linear-gradient(to top, #f6ce01 0, #f6ce01 10px, transparent 10px);
}
.section-03--content p {
	font-family: "Tsukushi A Round Gothic","筑紫A丸ゴシック";
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}
.section-03--content input[type=text] {
	width: 100%;
	padding: 15px 30px;
	background-color: #fff;
	border: 1px solid #dedede;
}
.section-03--content .input-form--wrapper {
	margin-bottom: 70px;
}
.common-type-link {
	width: 100%;
	max-width: 280px;
	position: relative;
	font-size: 15px;
	font-weight: bold;
	color: #000;
	padding: 15px 0 15px;
	background-color: #f6ce01;
	border: 3px solid #000;
	border-radius: 999px;
}
.top-section-04 {
	padding: 60px 0 70px;
}
.project-list--wrapper {
	margin-bottom: 50px;
}
.project-list > li:not(:last-child) {
	margin-bottom: 20px;
}
.project-item {
	display: flex;
	flex-wrap: wrap;
	border: 3px solid #000;
}
.project-item .img {
	flex: 300px;
	max-width: 300px;
}
.project-item .img img {
	width: 100%;
	padding: 60px 0px 60px 20px;
}
.project-item .info {
	position: relative;
	flex: calc(100% - 300px);
	max-width: calc(100% - 300px);
	padding: 20px 30px;
	background-color: #fff;
}
.project-item .info:first-of-type {
	flex: 100%;
	max-width: 100%;
}
.project-item .category {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 15px;
	color: #fff;
	padding: 12px;
	background-color: #417a35;
	border-bottom-left-radius: 3px;
}
.project-item .info .date {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	color: #808080	;
	margin-bottom: 16px;
}
.project-item .info .project-link {
	font-size: 20px;
	color: #000;
	font-weight: bold;
	margin-bottom: 16px;
}
.project-item .info:after {
	content: '';
	position: absolute;
	right: 10px;
	bottom: 10px;
	border-style: solid;
	border-width: 0 0 18px 18px;
	border-color: transparent transparent #427a31 transparent;
}
.sponsor-container {
	padding: 65px 0 70px;
	border-top: 1px solid #dfdfdf;
}
.sponsor-container .title {
	margin-bottom: 40px;
}
.sponsor-list {
	display: flex;
	justify-content: center;
}
.sponsor-list > li {
	padding: 0 30px;
}
@media screen and (max-width: 750px) {
	.project-item .img,
	.project-item .info {
		flex: 100%;
		max-width: 100%;
	}
	.project-item .img img {
	padding: 0;
}
	.fv-wrapper--bottom img {
    margin-top: -150px;
	}
	.fv-wrapper--bottom:before {
		top: -120px;
	}
	.fv-wrapper--bottom {
    padding: 0 15px 45px;
	}
	.section-01--container {
		max-width: 100%;
	}
	.section-01--container br{
		display: none;
	}
	.div-deco--item.top.left,
	.div-deco--item.bottom.right {
    background: url(../img/img-container-16.png) no-repeat center left;
    background-size: contain;
	}
	.div-deco--item.bottom.left,
	.div-deco--item.top.right {
    background: url(../img/img-container-17.png) no-repeat center left;
    background-size: contain;
	}
	.div-deco--item {
    height: 36px;
	}
	.title, .title2 {
    font-size: 24px;
	}
	.section-02--top {
		flex-wrap: wrap;
		flex-direction: column-reverse;
		justify-content: center;
	}
	.section-02--top .pannel-list {
		margin-right: 0;
		margin-top: 10px;
	}
	.section-02--bottom {
    font-size: 18px;
    line-height: 1.8;
    padding: 30px 20px;
	}
	.border-wrapper:before {
    bottom: -9px;
		right: -9px;
	}
		.section-02--bottom br{
			display: none;
		}
	.section-03--content h3 .txt-deco {
		font-size: 22px;
		background-image: linear-gradient(to top, #f6ce01 0, #f6ce01 8px, transparent 8px);
	}
	.section-03--content h3 {
    margin-bottom: 20px;
	}
	.section-03--content p {
    font-size: 22px;
    margin-bottom: 16px;
	}
	.section-03--content input[type=text] {
    width: 100%;
    padding: 10px 10px;
		font-size: 13px;
	}
	.section-03--content {
		/* padding: 80px 0 20px; */
	}
	.section-03--content .div-deco--item.bottom.left {
    left: 15px;
	}
	.section-03--content .div-deco--item.top.right {
    right: 15px;
	}
	.pos-man {
		bottom: 0;
		right: 4px;
	}
	.section-03-wrapper {
		padding: 25px 0 24px;
	}
	.section-03--content .input-form--wrapper {
    margin-bottom: 50px;
	}
	.project-item .info {
    padding: 20px 15px;
	}
	.project-item .category {
    font-size: 14px;
    padding: 8px;
	}
	.project-item .info .project-link {
    font-size: 16px;
    margin-bottom: 12px;
	}
	.project-item .info .summary {
    font-size: 14px;
	}
	.header-nav-menu-list > li a.show-product-link {
		width: 80%;
		padding: 15px 0;
	}
}
/* SUB PAGE */
.sub-page--header {
	text-align: center;
	padding: 70px 0;
	background: #f6ce01 url(../img/img-container-05.png) repeat;
	background-size: cover;
}
.sub-page--header h2 {
	font-family: "Tsukushi A Round Gothic","筑紫A丸ゴシック";
	font-size: 50px;
	font-weight: bold;
}
.sub-page--header h2 span {
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 620px;
}
.sub-page--header h2 span::before,
.sub-page--header h2 span::after {
	content: '';
	position: absolute;
	top: calc(50% - 45px);
	width: 60px;
	height: 91px;
}
.sub-page--header h2 span::before {
	left: 0;
	background: url(../img/img-container-18.png) no-repeat center;
}
.sub-page--header h2 span::after {
	right: 0;
	background: url(../img/img-container-19.png) no-repeat center;
}
.sub-page--header .fixed-container {
	position: relative;
}
.page-about .character {
	position: absolute;
	bottom: -90px;
	right: 0;
	z-index: 1;
}
.about-section-01,
.nan-section-01,
.products-section-01,
.news-section-01,
.single-section-02 {
	padding: 45px 0 70px;
}
.about-txt-01,
.nan-txt-01,
.products-txt-01 {
	font-size: 15px;
	line-height: 2;
	text-align: center;
	margin-bottom: 45px;
}
.about-content--wrapper,
.nan-content--wrapper,
.products-content--wrapper {
	padding: 45px 40px;
	margin-bottom: 50px;
}
.about-content--wrapper h3,
.nan-content--wrapper h3 {
	position: relative;
	font-family: "Tsukushi A Round Gothic","筑紫A丸ゴシック";
	font-size: 26px;
	font-weight: bold;
	text-align: center;
	padding-bottom: 22px;
	margin-bottom: 22px;
}
.about-content--wrapper h3:after,
.nan-content--wrapper h3:after {
	content: '';
	width: 40px;
	height: 1px;
	background-color: #000;
	position: absolute;
	bottom: 0;
	left: calc(50% - 20px);
}
.about-content--wrapper h3 span,
.nan-content--wrapper h3 span {
	display: inline-block;
	line-height: 1.2;
	padding: 0 3px;
	margin: 0 3px;
	background-color: #f6ce01;
}
.about-header-txt {
	font-size: 14px;
	line-height: 2;
	text-align: center;
	margin-bottom: 45px;
}
.about-img--wrapper {
	text-align: center;
	padding-bottom: 50px;
	margin-bottom: 40px;
	border-bottom: 1px dotted #dfdfdf;
}
.about-footer-txt,
.nan-txt-01 {
	font-size: 14px;
	line-height: 2;
}
@media screen and (max-width: 950px) {
	.character {
		top: calc(100% + 8px);
    bottom: auto;
    right: 50%;
    transform: translateX(50%);
	}
	.page-about .character {
	  top: calc(100% + 8px);
    bottom: auto;
    right: 50%;
    transform: translateX(50%);
}
	.sub-page--header {
    padding: 50px 0;
		margin-bottom: 120px;
	}
}

@media screen and (max-width: 750px) {
	.sub-page--header h2 {
		font-size: 30px;
	}
	.sub-page--header h2 span::before,
	.sub-page--header h2 span::after {
    top: calc(50% - 20px);
    width: 30px;
		height: 45px;
		background-size: contain;
	}
	.about-txt-01,
	.nan-txt-01 {
		font-size: 14px;
		margin-bottom: 40px;
	}
	.about-content--wrapper,
	.nan-content--wrapperm,
	.products-content--wrapper {
    padding: 30px 20px;
    margin-bottom: 50px;
	}
	.about-content--wrapper h3 {
		font-size: 24px;
	}
	.about-img--wrapper {
    padding-bottom: 40px;
		margin-bottom: 30px;
	}
}

.page-nan .character,
.page-products .character {
	position: absolute;
	bottom: -90px;
	left: 0;
	z-index: 1;
}
.nan-img--wrapper {
	text-align: center;
	margin-bottom: 40px;
}
.nan-img--wrapper img {
	border-radius: 5px;
	max-width: 400px;
	height: auto;
}
.nan-section-01 .nan-txt-02:not(:last-of-type) {
	padding-bottom: 50px;
	margin-bottom: 50px;
	border-bottom: 1px dotted #dfdfdf;
}
@media screen and (max-width: 750px) {
	.nan-img--wrapper {
    margin-bottom: 30px;
	}
	.nan-section-01 .nan-txt-02:not(:last-of-type) {
    padding-bottom: 40px;
		margin-bottom: 40px;
	}
}
/* PRODUCTS */
.page-products .character {
	bottom: -100px;
}
.product-list > li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 80px 0;
	border-bottom: 1px dotted #dfdfdf;
}
.product-list > li:first-child {
	padding-top: 0;
}
.product-list > li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}
.product-list > li .img {
	flex: 350px;
	max-width: 350px;
	text-align: center;
}
.product-list > li .info {
	flex: calc(100% - 350px);
	max-width: calc(100% - 350px);
}
.product-list > li .info .p-title {
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 16px;
}
.product-list > li .info .p-excerpt {
	font-size: 14px;
	line-height: 2;
	margin-bottom: 24px;
}
.product-link {
	width: 100%;
	max-width: 280px;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	color: #000;
	line-height: 50px;
	border: 3px solid #000;
	border-radius: 999px;
}
.products-content--wrapper {
	padding-top: 75px;
	padding-bottom: 75px;
}
@media screen and (max-width: 750px) {
	.product-list > li .img,
	.product-list > li .info {
		flex: 100%;
		max-width: 100%;
	}
	.products-content--wrapper {
		padding-top: 45px;
		padding-bottom: 45px;
	}
	.product-list > li .img {
		margin-bottom: 20px;
	}
	.product-list > li .info .p-title {
		font-size: 20px;
		text-align: center;
    margin-bottom: 14px;
	}
	.product-list > li {
		padding: 45px 0;
	}
	.page-news .sub-page--header {
		margin-bottom: 0;
	}
	.product-link {
	display: inline-block;
	width: 240px;
	margin:0 auto;
}
}
.single-seciton-01 {
	padding: 50px 0 70px;
	background: #f6ce01 url(../img/img-container-05.png) repeat;
	background-size: cover;
}
.detail--wrapper {
	position: relative;
	padding: 50px;
	margin-bottom: 10px;
	background-color: #fff;
	border: 3px solid #000;
	border-radius: 8px;
}
.detail--wrapper .info {
	margin-bottom: 35px;
	overflow: hidden;
}
.detail--wrapper h1 {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 35px;
}
.detail-img {
	margin: 40px 0;
}
.detail--wrapper h2 {
	font-size: 22px;
	font-weight: bold;
	padding: 10px 20px;
	margin: 30px 0;
	background-color: #f6ce01;
}
.detail--wrapper h3 {
	position: relative;
	font-size: 18px;
	font-weight: bold;
	padding-left: 20px;
	margin: 20px 0;
}
.detail--wrapper h3:before {
	content: '';
	position: absolute;
	top: calc(50% - 1px);
	left: 2px;
	width: 12px;
	height: 2px;
	background-color: #f6ce01;
}
.detail--wrapper .info .date {
	display: inline-block;
	width: 145px;
	font-size: 14px;
	line-height: 35px;
	text-align: center;
	background-color: #f8f8f8;
}
.detail--wrapper .info .category {
	display: inline-block;
	font-size: 15px;
	color: #fff;
	line-height: 35px;
	padding: 0 14px;
	background-color: #3f7b31;
	border-radius: 0 3px 3px 0;
}
.detail--wrapper .info p:after {
	content: '';
	position: absolute;
	left: calc(100% + 50px);
	top: 0;
	width: 540px;
	border-top: 2px solid #000;
}
.detail--wrapper .info p {
	position: relative;
	display: inline-block;
}
.detail--wrapper iframe{
	width: 100%;
	height: 500px;
	margin: 0 auto;
}
.author--wrapper {
	padding: 50px;
	background-color: #fff;
	border: 3px solid #000;
	border-radius: 8px;
}
.author--wrapper > h3 {
	position: relative;
	font-size: 22px;
	font-weight: bold;
	padding-left: 28px;
	margin-bottom: 30px;
}
.author--wrapper > h3::before {
	content: '';
	position: absolute;
	top: 8px;
	left: 0;
	width: 16px;
	height: 16px;
	background-color: #f6ce01;
}
.autho-info--wrapper {
	display: flex;
	flex-wrap: wrap;
}
.autho-info--wrapper .img {
	flex: 165px;
	max-width: 165px;
	text-align: center;
}
.autho-info--wrapper .info {
	flex: calc(100% - 165px);
	max-width: calc(100% - 165px);
	padding: 15px 15px 15px 0;
}
.autho-info--wrapper .info .name {
	font-size: 18px;
	font-weight: bold;
	padding: 0 0 15px 15px;
	border-bottom: 2px solid #efefef;
}
.autho-info--wrapper .info .intro {
	font-size: 14px;
	padding: 15px 0 0 15px;
	margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
	.detail--wrapper,
	.author--wrapper {
    padding: 35px 15px;
	}
	.detail--wrapper .info {
    margin-bottom: 28px;
	}
	.detail--wrapper h1 {
    font-size: 20px;
    margin-bottom: 30px;
	}
	.detail-img {
    margin: 30px 0;
	}
	.detail--wrapper h2 {
    font-size: 16px;
    margin: 25px 0;
	}
	.detail--wrapper h3 {
    font-size: 16px;
    padding-left: 22px;
    margin: 16px 0;
	}
	.author--wrapper > h3 {
    font-size: 18px;
    margin-bottom: 25px;
	}
	.detail--wrapper iframe{
	width: 100%;
	height:400px;
}
	.autho-info--wrapper .img {
    flex: 33%;
    max-width: 33%;
	}
	.autho-info--wrapper .info {
    flex: 67%;
    max-width: 67%;
    padding: 10px 0;
	}
	.autho-info--wrapper .info .name,
	.autho-info--wrapper .info .intro {
    padding-left: 10px;
	}
	.autho-info--wrapper .info .name {
    padding-bottom: 10px;
    margin-bottom: 12px;
    border-bottom: 1px solid #dfdfdf;
	}
	.detail--wrapper .info .date {
    width: 110px;
    font-size: 13px;
	}
	.detail--wrapper .info .category {
    font-size: 13px;
    padding: 0 8px;
	}
	.detail--wrapper .info p:after {
    left: calc(100% + 15px);
	}
}
@media screen and (max-width: 375px) {
	.detail--wrapper iframe{
	width: 100%;
	height:200px;
}
}
.pagination {
	display: flex;
	justify-content: center;
	margin-bottom: 50px;
}
.pagination span, .pagination a {
	display: inline-block;
	width: 40px;
	height: 40px;
	font-size: 19px;
	line-height: 40px;
	text-align: center;
	color: #000;
	margin: 0 5px;
	background-color: #f6ce01;
}
.pagination span {
	color: #000;
	background-color: #fef9e3;
}
.pagination a.last-page, .pagination a.first-page {
	background: #f6ce01 url(../img/icon-container-02.png) no-repeat center;
}
.pagination a.first-page {
	transform: rotate(180deg);
}
.sns-btns--wrapper {
	display: flex;
	margin-top: 40px;
}
.sns-btns--wrapper > a {
	position: relative;
	flex: 33.33%;
	max-width: 33.33%;
	text-align: center;
	font-family: 'Roboto', sans-serif;
	font-size: 17px;
	color: #fff;
	padding: 17px !important;
}
.sns-btns--wrapper > a.a2a_button_facebook {
	background-color: #1877f2;
}
.sns-btns--wrapper > a img {
	position: absolute;
	top: 50%;
	left: 16px;
	transform: translateY(-50%);
	margin: 0;
}
.sns-btns--wrapper > a.a2a_button_twitter {
	background-color: #1da1f2;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
}
.sns-btns--wrapper > a.a2a_button_line {
	background-color: #00b900;
}
.sns-btns--wrapper > a.a2a_button_line img {
	left: 6px;
}
.social-links {
	display: flex;
	padding-left: 15px;
	margin-top: 20px;
}
.social-links > a {
	margin-right: 10px;
}
.single-seciton-01 img {
	height: auto !important;
}
@media screen and (max-width: 750px) {
	.sns-btns--wrapper > a img {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
	}
	.sns-btns--wrapper > a {
    font-size: 15px;
    padding: 45px 0 12px 0 !important;
	}
	.sns-btns--wrapper > a.a2a_button_line img {
    left: 50%;
    top: 5px;
	}
}


.contentParts_canvas {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.saveCanvas {
  display: none;
}
.canvasWrap {
  position: relative;
}
.canvasInput {
  position: absolute;
  width: 70%;
  max-width: 500px;
  padding: 5px;
  top: 64%;
  left: 50%;
  line-height: 30px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.canvasSubmit {
  position: absolute;
  width: 100%;
  max-width: 300px;
  padding: 5px;
  top: 80%;
  left: 50%;
  line-height: 30px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #f8cc34;
  border-radius: 50px;
  border: 3px solid #000;
  font-weight: bold;
  font-size: 18px;
}
.signature__image {
  width: 100%;
}
.signatureName {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 75%;
  left: 50%;
  line-height: 30px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: 42px;
}
.signatureSns {
  display: none;
	opacity: 0;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.signatureSns.active {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
	opacity: 1;
}
.signatureSns__title {
	width: 100%;
	text-align: center;
	font-size: 32px;
	font-weight: bold;
	margin: 20px 0;
	color: #000;
}
.signatureSns__item {
  width: 25%;
  margin: 0 10px;
}
.signatureSns__itemLink {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
  line-height: 40px;
  border-radius: 50px;
  border: 3px solid #000;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 5px;
}
.signatureSns__itemIcon {
  position: absolute;
  width: 27px;
  top: 50%;
  left: 22px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.signatureSns__itemLink_fb {
  background: #1977f3;
}
.signatureSns__itemLink_tw {
  background: #1ba1f0;
}
.signatureSns__itemLink_li {
  background: #00ba02;
}
.signature__image_sp {
	display: none;
}
.section-03--content.load_hidden {
	opacity: 0;
}
.section-03--content {
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.signature__image_result {
	display: none;
}
.loaded .signature__image {
	display: none;
}
.loaded .signature__image_result {
	display: block;
}
.loaded .signature__image_result.signature__image_sp {
	display: none;
}
@media screen and (max-width: 750px) {
	.signature__image_pc {
		display: none;
	}
	.signature__image_sp {
		display: block;
	}
	.loaded .signature__image_sp {
		display: none;
	}
	.signature__image_result.signature__image_sp {
		display: none;
	}
	.loaded .signature__image_result.signature__image_pc {
    display: none;
}
	.loaded .signature__image_result.signature__image_sp {
		display: block;
	}
	.section-03--content input[type=text].canvasInput {
		width: 80%;
	}
	.section-03--content .canvasSubmit {
		width: 60%;
		top: 85%;
		line-height: 20px;
		font-size: 14px;
	}
	.signatureName {
		top: 72%;
	}
	.signatureSns__item {
		width: 100%;
		margin: 0 10px 10px;
  }
	.signatureSns__title {
		font-size: 24px;
	}
}

.spinner {
	display: none;
	position: absolute;
	width: 100px;
	height: 100px;
	top: 50%;
	left: 50%;
	z-index: 1;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.spinner.active {
	display: block;
}
.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;

  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}
