@charset "UTF-8";


/* Common ====================================== */


body{
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
	color: #5b5b5b;
	line-height: 2;
	/*cursor: none;*/
	position: relative;
	font-size: 14px;
}
_:lang(x)::-ms-backdrop, .selector {
	font-family: "Segoe UI", Meiryo, sans-serif;
}
a{
	color: #314261;
	cursor: pointer;
/*cursor: none;*/
transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
transition: all 0.3s;
}
small{
	font-size: smaller;
}
hr{
	border: 0;
	height: 1px;
	background-image: -webkit-linear-gradient(left, transparent, #cfd7e6, transparent);
	background-image: -moz-linear-gradient(left, transparent, #cfd7e6, transparent);
	background-image: -ms-linear-gradient(left, transparent, #cfd7e6, transparent);
	background-image: -o-linear-gradient(left, transparent, #cfd7e6, transparent);
	margin: 0 50px;
}
img{
	width: 100%;
}
.space{
	padding-top: 150px;
	width: 1000px;
}
.pc{
	display: block;
}
.sp{
	display: none;
}
.sa {
	opacity: 0;
	transition: all .5s ease;
}
.max-wh{
	width: 100%;
	height: 100%;
}
.sa.show {
	opacity: 1;
	transform: none;
}
.sa--lr {
	transform: translate(-10px, 0);
}
.sa--rl {
	transform: translate(10px, 0);
}
.sa--up {
	transform: translate(0, 10px);
}
.sa--down {
	transform: translate(0, -10px);
}

p.sa.sa--down.show {
	color: #314261;
	font-size: 16px;
	font-weight: bold;
	margin: 10px 0;
}
.sa--scaleUp {
	transform: scale(.5);
}
.sa--scaleDown {
	transform: scale(1.5);
}
.sa--rotateL {
	transform: rotate(180deg);
}
.sa--rotateR {
	transform: rotate(-180deg);
}
.is-hide{
	display: none;
}
.opacity03{
	opacity: .3;
}
@media screen and (max-width: 1000px){
	.space{
		width: 100%;
	}
}

@media screen and (max-width: 767px){
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
	.space{
		padding-top: 100px;
		width: 100%;
	}
}


/* Loading ====================================== */


#loader-bg {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #f9f9f9;
	z-index: 10001;
}
#loader {
	position: fixed;
	margin: auto;
	right: 0;
	bottom: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.loading{
	width: 100%;
	height: 100%;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: .5em;
}
.loading span {
	font-family: 'Noto Serif JP', serif;
	animation: loading 1s infinite alternate;
}
.loading span:nth-child(2) {
	animation-delay: .1s;
}
.loading span:nth-child(3) {
	animation-delay: .2s;
}
.loading span:nth-child(4) {
	animation-delay: .3s;
}
.loading span:nth-child(5) {
	animation-delay: .4s;
}
.loading span:nth-child(6) {
	animation-delay: .5s;
}
.loading span:nth-child(7) {
	animation-delay: .6s;
}
.loading span:nth-child(8) {
	animation-delay: .7s;
}
.loading span:nth-child(9) {
	animation-delay: .8s;
}
.loading span:nth-child(10) {
	animation-delay: .9s;
}
.loading span:nth-child(11) {
	animation-delay: 1s;
}
.loading span:nth-child(12) {
	animation-delay: 1.1s;
}
.loading span:nth-child(13) {
	animation-delay: 1.2s;
}
.loading span:nth-child(14) {
	animation-delay: 1.3s;
}
.loading span:nth-child(15) {
	animation-delay: 1.4s;
}
.loading span:nth-child(16) {
	animation-delay: 1.5s;
}
.loading span:nth-child(17) {
	animation-delay: 1.6s;
}
.loading span:nth-child(18) {
	animation-delay: 1.7s;
}
.loading span:nth-child(19) {
	animation-delay: 1.8s;
}
.loading span:nth-child(20) {
	animation-delay: 2s;
}
.loading span:nth-child(21) {
	animation-delay: 2.1s;
}
@keyframes loading {
/*0% {
opacity: 1;
}
100% {
opacity: 0;
}*/
0% {
	transform: scale(1.5);
}
100% {
	transform: scale(1);
}
}

@media screen and (max-width: 499px){
	.loading {
		transform: scale(.7);
	}
}


/* cursor ====================================== */


/*.cursor, .follower {
border-radius: 50%;
position: absolute;
top: 0;
left: 0; 
pointer-events: none;
}
.cursor {
width: 8px;
height: 8px;
background-color: #000;
z-index: 1001;
}
.follower {
display: flex;
justify-content: center;
align-items: center;
width: 30px;
height: 30px;
background-color: rgba(92, 107, 144, .5);
z-index: 1000;
transition: transform ease .1s;
text-align: center;
}
.follower span {
display: inline-block;
font-size: 14px;
font-weight: bold;
transform: scale(0);
}
.is-active {
transform: scale(3);
}*/


/* header ====================================== */


/* Global Menu */
aside#Sidebar {
	box-shadow: 0px 0px 3px rgb(0 0 0 / 10%);
	z-index: 10;
	position: relative;
	border-top: 15px solid #314261;
}
#Global-head{
	position: relative;
	width: 100%;
	background-color: #fff;
	max-width: 1000px;
	margin: auto;
	display: table;
}
#Global-head > a{
	display: table-cell;
	width: 150px;
	line-height: 60px;
	padding: 0 15px 0 0;
}
#Global-head > a > h1{
	position: absolute;
	top: -9999px;
}
#Global-head > a > img{
	width: 150px;
	vertical-align: middle;
}
#Global-head ul li ul{
	display: none;
}
#Global-head ul li:hover ul{
	display: block;
	z-index: 100;
	box-shadow: 0px 1px 4px rgb(0 0 0 / 10%);
}
#Global-nav{
	line-height: 60px;
}
#Global-nav ul > li{
	display: table-cell;
}
#Global-nav ul > li > a{
	padding: 0 30px;
	display: block;
	font-size: 0.9em;
	letter-spacing: .2em;
	font-weight: bold;
}
#Global-nav ul > li > span{
	margin-left: 1.2em;
}
#Global-nav ul > li:hover > a{
	background-color: #314261;
	color: #fff;
}

@media screen and (max-width: 1000px){
	aside#Sidebar {
		height: 75px;
		position: fixed;
		width: 100%;
	}
	#Global-head{
		max-width: 100%;
		position: fixed;
		z-index: 10;
		box-shadow: 0px 0px 3px rgb(0 0 0 / 10%);
	}
	#Global-nav{
		display: none;
	}
	#Global-head > a{
		display: table;
		padding: 0 0 0 15px;
	}
}

/* Submenu */
#Global-nav ul li ul{
	position: absolute;
}
#Global-nav ul li ul li{
	display: block;
}
#Global-nav ul li ul li a{
	background-color: #fff;
	color: #314261;
}
#Global-nav ul li ul li a:hover{
	background-color: #314261;
	color: #fff;
}

/* drawer */
.drawer-nav{
	z-index: 101;
	font-size: 15px;
	padding-top: 85px;
	width: 200px;
	height: 100%;
	position: fixed;
	color: #fff;
	text-align: center;
	background: #fff;
	overflow: auto;
}
.drawer-overlay{
	z-index: 100;
	background-color: rgba(0,0,0,.7);
}
.drawer-hamburger{
	top: 19px;
	z-index: 102;
	display: none;
	background: #314261;
	padding: 15px 1rem 25px;
	width: 1.25rem;
}
.drawer--right .drawer-hamburger{
	right: 5px;
}
.drawer--right .drawer-hamburger:hover {
	background-color: #314261;
}
.drawer-nav > ul{
	list-style: none;
	margin-left: 0;
	text-align: left;
	width: max-content;
	margin: auto;
}
.drawer-nav > ul{
	display: inline-table\9; /* IE10以下 */
}

@media all and (-ms-high-contrast: none){
	.drawer-nav > ul{
		display: inline-table; /* IE10以上 */
	}
}
@supports (-ms-ime-align: auto) {
	.drawer-nav > ul{
		display: inline-table; /* edge */
	}
}

.drawer-nav > ul > li {
	position: relative;
	font-size: 16px;
	padding: 10px 0;
	font-weight: bold;
}
.drawer-nav > ul > li > ul > li{
	font-weight: normal;
	font-size: 14px;
	padding: 5px 0;
}
.drawer-nav > ul > li.side-heading {
	color: #5C6B90;
}
.drawer-hamburger-icon, .drawer-hamburger-icon:after, .drawer-hamburger-icon:before{
	background-color: #fff;
}
.drawer-hamburger-icon:after, .drawer-hamburger-icon:before{
	top: -8px;
}
.drawer-hamburger-icon:after {
	top: 8px;
}
.drawer--right.drawer-open .drawer-hamburger {
	right: 15px;
	z-index: 102;
}
.nav-entry{
	position: fixed;
	z-index: 12;
	top: 10px;
	box-sizing: content-box;
	-webkit-transition: all .6s cubic-bezier(.19,1,.22,1);
	transition: all .6s cubic-bezier(.19,1,.22,1);
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	border: 0;
	outline: 0;
	background-color: transparent;
	display: none;
}
.nav-entry a{
	background: linear-gradient(to right, #F09819, #FF5858 50%);
	height: 58px;
	width: 58px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

@media screen and (max-width: 1000px){
	.drawer-hamburger{
		display: block;
	}
	.nav-entry{
		display: flex;
		right: 80px;
	}
}

.lang-switch {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 0.9em;
}
.lang-switch a {
	text-decoration: none;
	padding: 0 4px;
}
.lang-switch a.active {
	font-weight: bold;
	text-decoration: underline;
}

@media screen and (max-width: 1000px){
	#Global-head .lang-switch {
		display: none;
	}
	.drawer-nav .lang-switch {
    transform: none;
    top: 0;
    left: 0;
    color: #314261;
    font-weight: normal;
	}
}


/* index ====================================== */

/* Mainv */
@keyframes zoomUp {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.15);
	}
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img{
	animation: zoomUp 10s linear 0s 1 normal both;  
}
.slide-img img{
	display: block;
	height: 600px;
	object-fit: cover;
}
.main-visual{
	height: 100% !important;
}
.main-visual .swiper-container .swiper-slide .maintext {
	z-index: 100;
	width: 100%;
	position: absolute;
	margin: auto;
	top: 50%;
	left: 30%;
	transform: translateY(-50%) translateX(-30%);
	-webkit- transform: translateY(-50%) translateX(-30%);
	max-width: 500px;
}
.main-visual .swiper-container .swiper-slide .maintext h2 {
	font-family: 'Noto Serif JP', serif;
	font-size: 30px;
	color: #314261;
}
.main-visual .swiper-container .swiper-slide .maintext p {
	color: #5b5b5b;
}

@media screen and (max-width: 768px){
	.main-visual .swiper-container .swiper-slide .maintext{
		transform: translateY(0%) translateX(-30%);
		-webkit- transform: translateY(0%) translateX(-30%);
		filter: drop-shadow(1px 0px 0px rgba(255,255,255,1));
		padding: 0 25px;
	}
	.main-visual .swiper-container .swiper-slide .maintext p{
		color: #000;
	}
	main::-webkit-scrollbar {
		display: none;
	}
}

/* logo separation */
.separation-logo {
	display: flex;
	align-items: center;
	margin: 50px 10px;
}
.separation-logo::before,
.separation-logo::after {
	content: '';
	height: 1px;
	background-color: #dcdcdc;
	flex-grow: 1;
}
.separation-logo::before {
	margin-right: 1rem;
}
.separation-logo::after {
	margin-left: 1rem;
}
.separation-logo img{
	width: 65px;
}

/* text separation */
.separation-text {
	display: flex;
	align-items: center;
	margin: 50px 10px;
}
.separation-text p{
	font-size:25px;
}
.separation-text::before,
.separation-text::after {
	content: '';
	height: 1px;
	background-color: #dcdcdc;
	flex-grow: 1;
}
.separation-text::before {
	margin-right: 1rem;
}
.separation-text::after {
	margin-left: 1rem;
}

/* concept */
.conc-wrap .text{
	text-align: center;
	max-width: 1000px;
	margin: auto;
}
.conc-wrap .text h2{
	font-family: 'Noto Serif JP', serif;
	font-size: 30px;
	color: #314261;
}
.conc-wrap .img img{
	width: 400px;
	margin: auto;
	display: block;
}

@media screen and (max-width: 1000px){
	.conc-wrap {
		padding: 0 25px;
	}
	.conc-wrap .text{
		max-width: 100%;
	}
}

@media screen and (max-width: 768px){
	.conc-wrap .img img{
		width: 100%;
		max-width: 400px;
	}
}

/* common */
.flex-wrap.colm2{
	display: flex;
	flex-wrap: wrap;
}
.flex-wrap.colm2 > .flex-colm{
	width: 50%;
	padding: 0 25px;
}
.flex-wrap.colm3{
	display: flex;
	flex-wrap: wrap;
}
.flex-wrap.colm3 > .flex-colm{
	width: 33.333%;
	padding: 0 25px;
}
.flex-wrap.colm4{
	display: flex;
	flex-wrap: wrap;
}
.flex-wrap.colm4 > .flex-colm{
	width: 25%;
	padding: 0 25px;
}
.flex-wrap.colm5{
	display: flex;
	flex-wrap: wrap;
}
.flex-wrap.colm5 > .flex-colm{
	width: 20%;
	padding: 0 25px;
}
.flex-wrap.colm6{
	display: flex;
	flex-wrap: wrap;
}
.flex-wrap.colm6 > .flex-colm{
	width: 16.666%;
	padding: 0 25px;
}

@media screen and (max-width: 1000px){
	.main-body {
		padding-top: 75px;
	}
}

@media screen and (max-width: 768px){
	.flex-wrap.colm2 > .flex-colm{
		width: 100%;
	}
	.flex-wrap.colm3 > .flex-colm{
		width: 50%;
	}
	.flex-wrap.colm4 > .flex-colm{
		width: 50%;
	}
	.flex-wrap.colm5 > .flex-colm{
		width: 50%;
	}
	.flex-wrap.colm6 > .flex-colm{
		width: 50%;
	}
}

/* product */
.prod-wrap{
	max-width: 1000px;
	margin: auto;
}
.prod-wrap .flex-wrap.colm2{
	align-items: center;
}
.prod-wrap .flex-wrap.colm2 .flex-colm .img{
	text-align: center;
}
.prod-wrap .flex-wrap.colm2 .flex-colm .img img{
	max-width: 400px;
}
.prod-wrap .text h3{
	font-family: 'Noto Serif JP', serif;
	font-size: 25px;
	color: #314261;
}
.prod-wrap .text p{
	margin: 15px 0;
}
.link-btn a{
	border: 1px solid #314261;
	padding: 3px 10px;
	width: 120px;
	display: inline-table;
	text-align: center;
}
.link-btn a:first-child {
	margin: 0 10px 0 0;
}
.link-btn a:hover{
	background: #314261;
	color: #fff;
}

@media screen and (max-width: 1000px){
	.prod-wrap{
		max-width: 100%;
	}
}

@media screen and (max-width: 768px){
	.prod-wrap .text h3{
		text-align: center;
	}
	.link-btn{
		text-align: center;
		display: flex;
	}
	.link-btn a{
		width: 50%;
		padding: 10px;
		display: flex;
		justify-content: center;
	}
}

/* technique */
.tech-wrap{
	max-width: 1000px;
	margin: auto;
}
.tech-wrap .flex-wrap.colm2{
	align-items: center;
}
.tech-wrap .flex-wrap.colm2 .flex-colm .img{
	text-align: center;
}
.tech-wrap .flex-wrap.colm2 .flex-colm .img img{
	max-width: 400px;
}
.tech-wrap .text h3{
	font-family: 'Noto Serif JP', serif;
	font-size: 25px;
	color: #314261;
}
.tech-wrap .text p{
	margin: 15px 0;
}

@media screen and (max-width: 1000px){
	.tech-wrap{
		max-width: 100%;
	}
}

@media screen and (max-width: 768px){
	.tech-wrap .text h3{
		text-align: center;
	}
}

/* nextlink */
.nlink-wrap{
	max-width: 500px;
	margin: 50px auto;
}
.nlink-wrap a {
	border: 1px solid #314261;
	padding: 10px;
	display: inline-table;
	text-align: center;
	width: 100%;
	line-height: 1.5;
}
.nlink-wrap a:hover{
	background: #314261;
	color: #fff;
}
.nlink-wrap a span{
	display: block;
	font-size: 20px;
}

/* news */
.news-wrap{
	max-width: 1000px;
	margin: 0 auto;
}
.news-box {
	border: 1px solid #314261;
	padding: 25px;
}
.news-box h3{
	font-size: 20px;
	color: #314261;
	margin: 0 0 15px;
}
.news-box ol li{
	width: 100%;
	margin: 0 0 25px;
	display: flex;
}
.news-box ol li:last-child{
	margin: 0;
}
.news-box ol li .date{
	float: left;
	margin: 0 20px 0 0;
	width: 80px;
	flex-shrink: 0;
}
.news-box ol li .category {
	float: left;
	margin: 0 20px 0 0;
	background: #314261;
	color: #fff;
	padding: 0px 10px;
	border-radius: 3px;
	width: 100px;
	text-align: center;
}
.news-box ol li .title {
	float: left;
}

@media screen and (max-width: 1000px){
	.news-wrap{
		max-width: 100%;
		padding: 0 25px;
	}
}

@media screen and (max-width: 768px){
	.flex-wrap.colm2 > .flex-colm:first-child {
		margin: 0 0 15px;
	}
	.news-box ol li{
		display: block;
	}
}

/* catalog */
.catalog-wrap {
	max-width: 500px;
	margin: 50px auto;
	padding: 0 25px;
}
.catalog-wrap a{
	border: 1px solid #314261;
	padding: 15px 10px;
	display: flex;
	text-align: center;
	width: 100%;
	align-items: center;
	justify-content: center;
}
.catalog-wrap a:hover{
	background: #314261;
	color: #fff;
}
.catalog-wrap a:hover img{
	filter: drop-shadow(1px 1px 0px rgba(255,255,255,1));
}
.catalog-wrap a img{
	width: 35px;
	margin: 0 10px 0 0;
}
.catalog-wrap a span{
	font-size: 20px;
}


/* footer ====================================== */


.foot-wrap {
	display: flex;
	align-items: baseline;
	justify-content: center;
	margin: 25px auto;
	max-width: 1000px;
}
.foot-wrap .menu-left, .menu-center, .menu-right {
	width: 15%;
	padding: 0 10px;
	vertical-align: top;
	text-align: center;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	max-width: 250px;
}
.foot-wrap ul {
	list-style: none;
	padding: 0;
	line-height:40px;
}
.foot-wrap h3 {
	padding: 10px 0;
}
.foot-wrap a {
	text-decoration: none;
}
.copyright {
	text-align: center;
	padding: 0 0 25px;
	border-bottom: 15px solid #314261;
}
#page-top{
	width: 90px;
	height: 90px;
	position: fixed;
	right: 50px;
	bottom: 25px;
	opacity: 1;
}
#page-top a{
	position: relative;
	display: block;
	width: 90px;
	height: 90px;
	text-decoration: none;
}
#page-top a::before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f102';
	font-size: 25px;
	color: #314261;
	position: absolute;
	width: 25px;
	height: 25px;
	top: -40px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}
#page-top a::after{
	content: 'PAGE TOP';
	font-size: 13px;
	position: absolute;
	top: 45px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
	color: #314261;
}
footer .separation-logo img {
	width: 50px;
}

@media screen and (max-width: 1000px) {
	.foot-wrap {
		width: 100%;
		max-width: 100%;
		padding: 0 25px;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.foot-wrap .menu-left, .menu-center, .menu-right {
		display: flex;
		flex-direction: initial;
		width: 50%;
		max-width: 100%;
	}
	.foot-wrap .cpr {
		display: inline;
	}
}

@media screen and (max-width: 768px) {
	#page-top{
		right: 10px;
		bottom: 10px;
	}
}

/* aboutus ====================================== */


/* common */
.ab-wrap {
	max-width: 1000px;
	margin: 50px auto;
}
.sub-visual-wrap{
	position: relative;
	max-height: 50vh;
	overflow: hidden;
}
.sub-visual-wrap > .sub-visual > h2 {
	font-family: 'Noto Serif JP', serif;
	position: absolute;
	width: 100%;
	max-width: 1000px;
	right: 0;
	margin: 0 auto;
	z-index: 1;
	font-size: 30px;
	line-height: 1.8;
	color: #314261;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
}

@media screen and (max-width: 1000px) {
	.ab-wrap {
		max-width: 100%;
	}
	.sub-visual-wrap > .sub-visual > h2 {
		padding: 0 25px;
	}
}

@media screen and (max-width: 768px) {
	.sub-visual-wrap{
		max-height: 20vh;
	}
/*.sub-visual-wrap > .sub-visual > h2 {
padding: 0 25px;
}*/
}

/* aboutus */
.sub-visual-wrap .aboutus-bg {
	background-image: url(../images/aboutus-bg.png);
	width: 100%;
	height: 50vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.sub-visual-wrap > .sub-visual > .abutitle {
/*    position: absolute;
max-width: 1000px;
height: 200px;
max-height: 200px;
left: 0;
right: 0;
margin: 0 auto;
z-index: 10;
font-size: 30px;
line-height: 1.8;
color: #314261;
top: 50%;
transform: translateY(-50%) translateX(0%);
-webkit- transform: translateY(-50%) translateX(0%);
display: flex;*/
}
.sub-visual-wrap > .sub-visual > .abutitle span{
/*    width: 200px;
height: 200px;
max-width: 200px;
max-height: 200px;
display: flex;
align-items: center;
justify-content: center;
background: #e2e7e8;*/
}
.abu-wrap .linkbox a {
	max-height: 200px;
	display: flex;
	background: #e2e7e8;
	font-size: 20px;
	width: 85%;
	padding-top: 85%;
	margin: auto;
	position: relative;
}
.abu-wrap .linkbox a span{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
	line-height: 1.2;
	text-align: center;
	width: 100%;
}
.abu-wrap .linkbox a:hover {
	background: #314261;
	color: #fff;
}
.abu-wrap > .flex-wrap.colm3 > .flex-colm{
	margin: auto auto 50px; 
}
.abu-wrap > .flex-wrap.colm3 > .flex-colm:nth-last-child(-n+3){
	margin: auto;
}

@media screen and (max-width: 1000px) {
	.sub-visual-wrap > .sub-visual > .abutitle {
		max-width: 100%;
	}
}

@media screen and (max-width: 768px) {
	.sub-visual-wrap .aboutus-bg {
		height: 20vh;
	}
	.abu-wrap > .flex-wrap.colm3 > .flex-colm {
		margin: auto auto 25px;
	}
	.abu-wrap > .flex-wrap.colm3 > .flex-colm:nth-last-child(-n+3){
		margin: 0;
	}
	.abu-wrap > .flex-wrap.colm3 > .flex-colm:nth-child(2n){
		padding: 0 25px 0 5px;
	}
	.abu-wrap > .flex-wrap.colm3 > .flex-colm:nth-child(2n+1){
		padding: 0 5px 0 25px;
	}
	.abu-wrap .linkbox a {
		width: 90%;
		padding-top: 90%;
	}
}

/* history */
.abtable h3{
	font-family: 'Noto Serif JP', serif;
	text-align: left;
	font-size: 30px;
	color: #314261;
	margin: 0 0 50px;
}
.abtable dl{
	border: 1px solid #314261;
	padding: 25px;
	margin: 0 0 50px;
}
.abtable .ablist {
	border-bottom: 1px solid #314261;
	margin: 0 0 10px;
	padding: 0 0 5px;
}

@media screen and (max-width: 768px) {
	.abtable h3{
		padding: 0 25px;
	}
	.abtable dl{
		margin: 0 25px 50px;
	}
}

/* company */
.orgc-title{
	text-align: center !important;
}
.orgc-box {
	border: 1px solid #314261;
	padding: 25px;
}

@media screen and (max-width: 768px) {
	.orgc-box {
		margin: 0 25px;
	}
}

/* ceo */
.message-wrap h3{
	font-family: 'Noto Serif JP', serif;
	text-align: left;
	font-size: 30px;
	color: #314261;
	margin: 0 0 50px;
}
.message-wrap .text h4{
	font-family: 'Noto Serif JP', serif;
	font-size: 20px;
	color: #314261;
	margin: 0 0 15px;
}
.vision-wrap h3{
	font-family: 'Noto Serif JP', serif;
	text-align: center;
	font-size: 30px;
	color: #314261;
	margin: 0 0 50px;
}
.vision-wrap p.motto{
	font-family: 'Noto Serif JP', serif;
	text-align: center;
	font-size: 20px;
	color: #314261;
}
.vis-box{
	border: 1px solid #314261;
	padding: 25px;
	margin: 0 0 50px;
	text-align: center;
}
.vis-box img{
	max-width: 400px;
}

@media screen and (max-width: 768px) {
	.message-wrap h3{
		padding: 0 25px;
	}
	.vision-wrap h3{
		padding: 0 25px;
	}
	.vis-box{
		margin: 0 25px 25px;
	}
	.vision-wrap p.motto{
		padding: 0 25px;
	}
}

/* offices */
.sub-visual-wrap .offices-bg {
	background-image: url(../images/offices-bg.png);
	width: 100%;
	height: 50vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.office-wrap > .flex-wrap.colm2{
	align-items: center;
}
.office-wrap > .flex-wrap.colm2 > .flex-colm{
	padding: 0;
}
.office-wrap > .flex-wrap.colm2 > .flex-colm > .text{
	padding: 0 25px;
}
.office-wrap > .flex-wrap.colm2 > .flex-colm > .text > h4{
	font-size: 20px;
	color: #314261;
	margin: 0 0 15px;
}
.group-wrap h3{
	text-align: center;
	font-size: 30px;
	color: #314261;
	margin: 0 0 50px;
}
.group-wrap .g-list{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.group-wrap .g-list img{
	width: 150px;
}
.group-wrap .g-list p{
	text-align: center;
}
.group-wrap .g-list a{
	text-align: center;
}


@media screen and (max-width: 768px) {
	.sub-visual-wrap .offices-bg{
		height: 20vh;
	}
	.group-wrap h3{
		padding: 0 25px;
	}
	.office-wrap > .flex-wrap.colm2{
		margin: 0 0 25px;
	}
	.office-wrap > .flex-wrap.colm2 > .flex-colm > .img{
		padding: 0 25px;
	}
}

/* access */
.access-wrap > .flex-wrap.colm2{
	align-items: center;
	margin: 0 0 30px;
}
.access-wrap > .flex-wrap.colm2 > .flex-colm > .text > h4{
	font-size: 20px;
	color: #314261;
	margin: 0 0 15px;
}
.sub-visual-wrap .access-bg {
	background-image: url(../images/access-bg.png);
	width: 100%;
	height: 50vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
	.sub-visual-wrap .access-bg{
		height: 20vh;
	}
	.access-wrap > .flex-wrap.colm2{
		margin: 0 0 25px;
	}
	.access-wrap > .flex-wrap.colm2 > .flex-colm > .map iframe{
		height: 300px;
	}
}


/* product ====================================== */


/* common */
.prod-box{
}
.concept{
	margin: 50px 0;
	line-height: 1.2;
}
.concept p {
	font-family: 'Noto Serif JP', serif;
	color: #314261;
	font-size: 25px;
	max-width: 1000px;
	margin: auto;
	text-align: center;
}
.prod-bg{
	width: 100%;
	height: 60vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
}
.prod-bg .text{
	width: 50%;
	padding: 0 100px;
}
.prod-bg .text h4{
	font-family: 'Noto Serif JP', serif;
	font-size: 25px;
	color: #314261;
	line-height: 1.2;
}
.prod-bg .text p{
	margin: 15px 0 0;
}
.prod-bg .text .link-btn a{
	width: auto;
}
.link-wrap {
	margin: 50px auto;
	max-width: 1000px;
}
.link-wrap .linkbox{
	text-align: center;
}
.link-wrap .linkbox a{
	border: 1px solid #314261;
	padding: 5px 10px;
	display: inline-table;
	text-align: center;
	min-width: 200px;
	margin: 0 10px;
}
.link-wrap .linkbox a:hover{
	background: #314261;
	color: #fff;
}

@media screen and (max-width: 1000px) {
	.prod-bg .text{
		padding: 0 50px;
	}
	.concept p {
		max-width: 100%;
	}
	.link-wrap {
		max-width: 100%;
	}
}

@media screen and (max-width: 768px) {
	.concept{
		padding: 0 25px;
	}
	.prod-bg{
		height: auto !important;
	}
	.prod-bg .text{
		padding: 0;
		width: 100%;
		background: rgba(255,255,255,.96);
		margin: 50px 25px;
	}
	.prod-bg .text .link-btn a{
		width: 100%;
		margin: auto;
	}
	.link-wrap .linkbox{
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
	.link-wrap .linkbox a{
		margin: 0 0 20px;
	}
}
@media screen and (max-height: 400px){
	.prod-bg{
		height: auto;
	}
	.prod-bg .text{
		margin: 50px 25px;
	}
}

/* product */
.product-wrap .text p{
	margin: 15px 0;
}
.sub-visual-wrap .product-bg{
	background-image: url(../images/product-bg.png);
	width: 100%;
	height: 50vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.product01{
	background-image: url(../images/product-img01.png);
	height: 60vh;
}
.product02{
	background-image: url(../images/product-img02.png);
	padding-left: 50%;
}
.product02 .text{
	width: 100%;
}
.product03{
	background-image: url(../images/product-img03.png);
}
.product03 .text {
	color: #fff;
}
.product03 .text h4{
	color: #fff;
}
.product03 .link-btn a{
	border: 1px solid #fff;
	color: #fff;
}
.product03 .link-btn a:hover{
	background: #fff;
	color: #314261;
}
.product04{
	background-image: url(../images/product-img04.png);
	padding-left: 50%;
}
.product04 .text{
	width: 100%;
	color: #fff;
}
.product04 .text h4{
	color: #fff;
}
.product04 .link-btn a{
	border: 1px solid #fff;
	color: #fff;
}
.product04 .link-btn a:hover{
	background: #fff;
	color: #314261;
}

@media screen and (max-width: 768px) {
	.product02{
		padding-left: 0;
	}
	.product03 .text {
		background: rgba(0,0,0,.9);
	}
	.product01 .text .box,
	.product02 .text .box,
	.product03 .text .box,
	.product04 .text .box{
		box-shadow: 0px 0px 3px rgb(0 0 0 / 10%);
		padding: 15px;
	}
	.product04{
		padding-left: 0;
	}
	.product04 .text{
		background: rgba(0,0,0,.9);
	}
}

/* item */
.sub-visual-wrap .item-bg {
	background-image: url(../images/item-bg.png);
	width: 100%;
	height: 50vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.item-box {
	max-width: 1000px;
	margin: auto;
}
.item-box .flex-wrap{
/* border-bottom: 1px solid #314261; */
padding: 30px;
align-items: center;
background: #f9f9f9;
margin: 0 0 15px;
}
.item-box .flex-wrap:last-child{
	border: none;
}
.item-box .flex-wrap > .flex-colm:first-child{
	padding: 0;
}
.item-box .flex-wrap > .flex-colm:nth-child(2){
	padding: 0 15px;
}
.item-box .flex-wrap > .flex-colm:last-child{
	padding: 0;
}
.mainimg {
/*margin: 0 0 10px;*/
padding: 5px 0;
}
.subimg {
	display: flex;
	flex-wrap: wrap;
}
.subimg li {
	width: 50%;
	padding: 5px;
}
.itemlist {
	display: flex;
	border-bottom: 1px solid #cfd7e6;
	text-align: left;
	align-items: center;
	padding: 5px 0px;
	font-size: 12px;
}
.itemlist dt {
	font-weight: bold;
	min-width: 100px;
	max-width: 100px;
	padding: 5px 5px;
}
.itemlist dd {
	padding: 0 5px;
}

@media screen and (max-width: 1000px) {
	.item-box {
		max-width: 100%;
	}
}

@media screen and (max-width: 768px) {
	.item-box .flex-wrap {
		padding: 10px;
		margin: 0 25px 20px;
	}
	.item-box .flex-wrap.colm3 > .flex-colm {
		width: 100%;
	}
	.item-box .flex-wrap > .flex-colm:nth-child(2){
		padding: 0;
	}
	.mainimg{
		padding: 0;
	}
}

/* skill */
.sub-visual-wrap .skill-bg {
	background-image: url(../images/skill-bg.png);
	width: 100%;
	height: 50vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.skill01{
	background-image: url(../images/skill-img01.png);
}
.skill02{
	background-image: url(../images/skill-img02.png);
	padding-left: 50%;
}
.skill02 .text{
	width: 100%;
}
.skill03{
	background-image: url(../images/skill-img03.png);
}

@media screen and (max-width: 768px) {
	.sub-visual-wrap .skill-bg {
		height: 20vh;
	}
	.skill01{
		background-position: right;
	}
	.skill01 .text{
		background: rgba(255,255,255,.96);
	}
	.skill02{
		padding-left: 0;
		background-position: left;
	}
	.skill03{
		background-position: right;
	}
	.skill01 .text .box,
	.skill02 .text .box,
	.skill03 .text .box{
		box-shadow: 0px 0px 3px rgb(0 0 0 / 10%);
		padding: 15px;
	}
}

/* production */
.sub-visual-wrap .production-bg{
	background-image: url(../images/production-bg.png);
	width: 100%;
	height: 50vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.production01{
	background-image: url(../images/production-img01.png);
}
.production01 .text h4,
.production01 .text p{
	color: #fff;
}
.production02{
	background-image: url(../images/production-img02.png);
	padding-left: 50%;
}
.production02 .text{
	width: 100%;
}
.production03{
	background-image: url(../images/production-img03.png);
}

@media screen and (max-width: 768px) {
	.sub-visual-wrap .production-bg{
		height: 20vh;
	}
	.production01{
		background-position: right;
	}
	.production02{
		padding-left: 0;
		background-position: left;
	}
	.production03{
		background-position: right;
	}
	.production01 .text .box,
	.production02 .text .box,
	.production03 .text .box{
		box-shadow: 0px 0px 3px rgb(0 0 0 / 10%);
		padding: 15px;
	}
	.production01 .text h4{
		color: #314261;
	}
	.production01 .text p{
		color: #5b5b5b;
	}
}

/* chain */
.sub-visual-wrap .chain-bg{
	background-image: url(../images/chain-bg.png);
	width: 100%;
	height: 50vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.chain01{
	background-image: url(../images/chain-img01.png);
}
.chain02{
	background-image: url(../images/chain-img02.png);
	padding-left: 50%;
}
.chain02 .text{
	width: 100%;
}
.chain03{
	background-image: url(../images/chain-img03.png);
}

@media screen and (max-width: 768px) {
	.chain01{
		background-position: right;
	}
	.chain02{
		padding-left: 0;
		background-position: left;
	}
	.chain03{
		background-position: right;
	}
	.chain01 .text .box,
	.chain02 .text .box,
	.chain03 .text .box{
		box-shadow: 0px 0px 3px rgb(0 0 0 / 10%);
		padding: 15px;
	}
}

/* parts */
.sub-visual-wrap .parts-bg{
	background-image: url(../images/parts-bg.png);
	width: 100%;
	height: 50vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.parts01{
	background-image: url(../images/parts-img01.png);
}
.parts02{
	background-image: url(../images/parts-img02.png);
	padding-left: 50%;
}
.parts02 .text{
	width: 100%;
}
.parts03{
	background-image: url(../images/parts-img03.png);
}

@media screen and (max-width: 768px) {
	.sub-visual-wrap .parts-bg{
		height: 20vh;
	}
	.parts01{
		background-position: right;
	}
	.parts02{
		padding-left: 0;
		background-position: left;
	}
	.parts03{
		background-position: right;
	}
	.parts01 .text .box,
	.parts02 .text .box,
	.parts03 .text .box{
		box-shadow: 0px 0px 3px rgb(0 0 0 / 10%);
		padding: 15px;
	}
}

/* jewelry */
.sub-visual-wrap .jewelry-bg{
	background-image: url(../images/jewelry-bg.png);
	width: 100%;
	height: 50vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.jewelry01{
	background-image: url(../images/jewelry-img01.png);
}
.jewelry02{
	background-image: url(../images/jewelry-img02.png);
	padding-left: 50%;
}
.jewelry02 .text{
	width: 100%;
}
.jewelry03{
	background-image: url(../images/jewelry-img03.png);
}

@media screen and (max-width: 768px) {
	.sub-visual-wrap .jewelry-bg{
		height: 20vh;
	}
	.jewelry01{
		background-position: right;
	}
	.jewelry02{
		padding-left: 0;
		background-position: left;
	}
	.jewelry03{
		background-position: right;
	}
	.jewelry01 .text .box,
	.jewelry02 .text .box,
	.jewelry03 .text .box{
		box-shadow: 0px 0px 3px rgb(0 0 0 / 10%);
		padding: 15px;
	}
}

/* graphic */
.graphic01{
	background-image: url(../images/graphic-bg.png);
	height: 50vh;
}
.graphic01 .text{
	width: 100%;
	max-width: 1000px;
	margin: auto;
	padding: 0;
}
.graphic01 .text .box{
	width: 50%;
}
.graphic01 .text h4{
	font-size: 30px;
}
.graphic01 .text p{
	margin: 15px 0;
}
.graphic02 .box {
	width: 100%;
	padding: 0 100px;
	margin: 50px auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}
.graphic02 .box img {
	width: calc(25% - 7.5px);
}

@media screen and (max-width: 1000px) {
	.graphic01 .text{
		padding: 0 25px;
		background: transparent;
		margin: 50px 0;
	}
	.graphic01 .text .link-btn a{
		border: 1px solid #314261;
		padding: 3px 10px;
		width: 120px;
		display: inline-table;
		text-align: center;
		margin: 0;
	}
	.graphic02 .box {
		padding: 0 50px;
	}
	.graphic02 .box img {
		width: calc(50% - 5px);
	}
}

@media screen and (max-width: 768px) {
	.graphic01 .text {
		padding: 0;
		width: 100%;
		background: rgba(255,255,255,.96);
		margin: 50px 25px;
	}
	.graphic01 .text .box{
		box-shadow: 0px 0px 3px rgb(0 0 0 / 10%);
		padding: 15px;
		width: 100%;
	}
	.graphic02 .box {
		gap: 25px;
		padding: 0 25px;
		flex-direction: column;
		align-items: center;
	}
	.graphic02 .box img {
		width: 100%;
	}
}

/* design */
/*.sub-visual-wrap .design-bg{
background-image: url(../images/design-bg.png);
width: 100%;
height: 50vh;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}*/
.design01{
	background-image: url(../images/design-img01.png);
	height: 50vh;
}
.design01 .text{
	width: 100%;
	max-width: 1000px;
	margin: auto;
	padding: 0;
}
.design01 .text .box{
	width: 50%;
}
.design01 .text h4{
	font-size: 30px;
}
.design01 .text p{
	margin: 15px 0;
}
.design02{
	background-image: url(../images/design-img02.png);
}
.design03{
	background-image: url(../images/design-img03.png);
	padding-left: 50%;
}
.design03 .text{
	width: 100%;
}
.design04{
	background-image: url(../images/design-img04.png);
}
.design04 .text p{
	margin: 15px 0;
}
.design05{
	background-image: url(../images/design-img05.png);
}
.design06{
	background-image: url(../images/design-img06.png);
	padding-left: 50%;
}
.design06 .text{
	width: 100%;
	color: #fff;
}
.design06 .text h4{
	color: #fff;
}
.design07{
	background-image: url(../images/design-img07.png);
}
.oemodm-text{
	margin: 50px auto;
	max-width: 1000px;
}
.oemodm-text p{
	text-align: center;
	font-size: 55px;
}
.oemodm-text p .oem{
	color: #c89914;
}
.oemodm-text p .odm{
	color: #314261;
}

@media screen and (max-width: 1000px) {
	.oemodm-text{
		max-width: 100%;
	}
	.design01 .text{
		padding: 0 25px;
		background: transparent;
		margin: 50px 0;
	}
	.design01 .text .link-btn a{
		border: 1px solid #314261;
		padding: 3px 10px;
		width: 120px;
		display: inline-table;
		text-align: center;
		margin: 0;
	}
}

@media screen and (max-width: 768px) {
	.design01{
/*background-position: right;*/
}
.design02{
	background-position: right;
}
.design03{
	padding-left: 0;
	background-position: left;
}
.design04{
	background-position: right;
}
.design05{
	background-position: right;
}
.design06{
	padding-left: 0;
	background-position: left;
}
.design06 .text{
	background: rgba(0,0,0,.9);
}
.design07{
	background-position: right;
}
.design02 .text .box,
.design03 .text .box,
.design04 .text .box,
.design05 .text .box,
.design06 .text .box,
.design07 .text .box{
	box-shadow: 0px 0px 3px rgb(0 0 0 / 10%);
	padding: 15px;
}
.design01 .text {
	padding: 0;
	width: 100%;
	background: rgba(255,255,255,.96);
	margin: 50px 25px;
}
.design01 .text .box{
	box-shadow: 0px 0px 3px rgb(0 0 0 / 10%);
	padding: 15px;
	width: 100%;
}
}

/* collection */
.collection-wrap .prod-wrap{
	max-width: 1280px;
}
.collection-wrap .flex-wrap.colm3 > .flex-colm{
	padding: 0 5px;
}
.collection-wrap h3{
	font-family: 'Noto Serif JP', serif;
	text-align: center;
	font-size: 30px;
	color: #314261;
	margin: 50px 0;
}
.collection-wrap .chain {
	background-image: url(../images/collection-img01.png);
	width: 100%;
	height: 80vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	box-shadow: 0px 0px 2px rgb(0 0 0 / 10%);
	position: relative;
}
.collection-wrap .chain a{
	position: absolute;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.collection-wrap .chain a:hover {
	background: rgb(49 66 97 / 20%);
}
.collection-wrap .chain a span{
	font-family: 'Noto Serif JP', serif;
	margin: 0 0 30px;
	font-size: 30px;
}
.collection-wrap .jewelry {
	background-image: url(../images/collection-img02.png);
	width: 100%;
	height: 80vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	box-shadow: 0px 0px 2px rgb(0 0 0 / 10%);
	position: relative;
}
.collection-wrap .jewelry a{
	position: absolute;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.collection-wrap .jewelry a:hover {
	background: rgb(49 66 97 / 20%);
}
.collection-wrap .jewelry a span{
	font-family: 'Noto Serif JP', serif;
	margin: 0 0 30px;
	font-size: 30px;
}
.collection-wrap .parts {
	background-image: url(../images/collection-img03.png);
	width: 100%;
	height: 80vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	box-shadow: 0px 0px 2px rgb(0 0 0 / 10%);
	position: relative;
}
.collection-wrap .parts a{
	position: absolute;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.collection-wrap .parts a:hover {
	background: rgb(49 66 97 / 20%);
}
.collection-wrap .parts a span{
	font-family: 'Noto Serif JP', serif;
	margin: 0 0 30px;
	font-size: 30px;
}

@media screen and (max-width: 1280px){
	.collection-wrap .prod-wrap{
		max-width: 100%;
	}
}

@media screen and (max-width: 768px) {
	.collection-wrap h3{
		padding: 0 25px;
	}
	.collection-wrap .flex-wrap.colm3 > .flex-colm{
		width: 100%;
		padding: 0 25px;
		margin: 0 0 25px;
	}
	.collection-wrap .flex-wrap.colm3 > .flex-colm:last-child{
		margin: 0;
	}
	.collection-wrap .chain{
		height: 50vh;
	}
	.collection-wrap .chain a{
		align-items: center;
	}
	.collection-wrap .jewelry {
		height: 50vh;
	}
	.collection-wrap .jewelry a{
		align-items: center;
	}
	.collection-wrap .parts {
		height: 50vh;
	}
	.collection-wrap .parts a{
		align-items: center;
	}
}

/* privacypolicy */
.pp-wrap h3{
	font-family: 'Noto Serif JP', serif;
	text-align: left;
	font-size: 30px;
	color: #314261;
	margin: 50px 0;
}
.pp-wrap .pp-text h4{
	color: #314261;
	font-size: 16px;
	font-weight: bold;
	margin: 10px 0;
}
.productcont {
	display: flex;
	flex-direction: column;
/*max-width: 500px;
margin: auto;*/
}
#PpContact .btn input{
	display: block;
	width: 100%;
	margin: 0 auto;
	padding: 15px 35px;
	position: relative;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	box-shadow: 1px 1px 2px rgba(0,0,0,.3);
	background: #314261;
	color: #fff;
	border-radius: 3px;
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: all 0.3s;
	cursor: pointer;
}
#PpContact .btn input:disabled{
	opacity: .3;
}
.positionCheckBox{
	text-align: left;
	margin: 50px 0;
}
.positionCheckBox input[type=checkbox] {
	display: none !important;
}
.positionCheckBox label {
	margin: 0;
}
input[type=checkbox]:checked + .checkbox:before {
	opacity: 1;
}
.radio, .checkbox {
	box-sizing: border-box;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
	position: relative;
	display: inline-block;
	margin: 0 10px 8px 0;
	padding: 12px 12px 12px 50px;
	border-radius: 3px;
	background-color: #f6f7f8;
	vertical-align: middle;
	cursor: pointer;
}
.checkbox:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 50%;
	left: 22px;
	display: block;
	margin-top: -7px;
	width: 7px;
	height: 10px;
	border-right: 3px solid #314261;
	border-bottom: 3px solid #314261;
	content: '';
	opacity: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.radio:after, .checkbox:after {
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	position: absolute;
	top: 50%;
	left: 15px;
	display: block;
	margin-top: -11px;
	width: 20px;
	height: 20px;
	border: 2px solid #bbb;
	border-radius: 6px;
	content: '';
}

@media screen and (max-width: 768px) {
	.pp-wrap > p {
		padding: 0 25px;
	}
	.pp-wrap h3{
		padding: 0 25px;
	}
	.contact-wrap{
		padding: 0 25px;
	}
}

/* contact */
#Contact {
	max-width: 1000px;
	margin: 0 auto;
}
.contact-wrap h3{
	max-width: 1000px;
	font-family: 'Noto Serif JP', serif;
	text-align: left;
	font-size: 30px;
	color: #314261;
	margin: 50px auto;
}
#Contact table {
	width: 100%;
	margin: 0 auto 50px auto;
	border-top: 1px solid #e8e8e8;
	border-left: 1px solid #e8e8e8;
	text-align: left;
	border-collapse: collapse;
}
#Contact table tr {
	border-collapse: collapse;
}
#Contact table th{
	background-color: #F7F7F7;
	padding: 15px;
	border-bottom: 1px solid #e8e8e8;
	border-right: 1px solid #e8e8e8;
	width: 30%;
	vertical-align: middle;
	text-align: left;
}
#Contact table td {
	padding: 15px;
	border-bottom: 1px solid #e8e8e8;
	border-right: 1px solid #e8e8e8;
	font-family: "M PLUS Rounded 1c";
}
#Contact .box{
	text-align: left;
}
#Contact .box h3{
	font-size: 20px;
	text-align: left;
	margin: 0;
}
#Contact .box .topbtn a{
	margin: 0;
	padding: 15px 35px;
	position: relative;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	box-shadow: 1px 1px 3px rgba(0,0,0,.3);
	background: #fff;
	color: #555;
	border-radius: 3px;
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: all 0.3s;
	font-weight: normal;
	width: 100%;
	display: block;
}
input[type=text], textarea, input[type=password], input[type=tel], input[type=email], select, textarea {
	border: 1px solid #CBCBCB;
	padding: 5px;
	width: 100%;
	min-height: 45px;
}
select{
	min-height: 45px;
}
textarea {
	resize: vertical;
}
input[type=submit]{
	display: block;
	width: 100%;
	margin: 0 auto;
	padding: 15px 35px;
	position: relative;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	box-shadow: 1px 1px 2px rgba(0,0,0,.3);
	background: #314261;
	color: #fff;
	border-radius: 3px;
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: all 0.3s;
	cursor: pointer;
}
input.edit{
	display: block;
	padding: 15px 35px;
	position: relative;
	text-decoration: none;
	text-align: center;
	box-shadow: 1px 1px 2px rgba(0,0,0,.3);
	border-radius: 3px;
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: all 0.3s;
	cursor: pointer;
	width: 100%;
}
.flex-wrap.colm2.conf{
	width: 100%;
	margin: auto;
}
.flex-wrap.colm2.conf .flex-colm:first-child{
	margin: 0 0 25px;
}
.flex-wrap.colm2.conf input[type=submit]{
	margin: 0;
	width: 100%;
}
::placeholder {
	color: #ddd;
	font-family: "M PLUS Rounded 1c";
}
.str{
	text-align: center;
	color: #DF4669;
	font-size: 10px;
	border-radius: 3px;
	background: pink;
	width: 35px;
	font-weight: bold;
	border: 1px solid #DF4669;
	vertical-align: middle;
	margin: 0 0 0 5px;
	padding: 0 5px;
}
.str.opt{
	color: #037171;
	background: rgba(3,113,113,0.2);
	border: 1px solid #037171;
}
p.note a{
	text-decoration: underline;
	color: #5C6B90;
}
.con-heading .text p{
	text-align: left;
	margin: 15px 0;
}

@media screen and (max-width: 1000px) {
	.contact-wrap {
		padding: 0 25px;
	}
	.contact-wrap h3{
		max-width: 100%;
	}
	#Contact {
		max-width: 100%;
	}
}

@media screen and (max-width: 768px){
	#Contact table th, #Contact table td{
		display: block;
		width: 100%;
	}
}