@charset "UTF-8";

@import url("reset.css");
@import url("bootstrap.css");
@import url("font-awesome.min.css");
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@3.4.1/dist/css/yakuhanjp.min.css");

/* ==================================================
   basic design
*/

html,
body {
	color: #333;
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 0.03em;
	background: #fff;
  font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  font-feature-settings: "palt";
}

@media (min-width: 769px) {
	html,
	body {
		font-size: 15px;
	}
}

div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote,
abbr, address, code, em, img, small, strong,
b, i, dl, dt, dd, ol, ul, li, form, label,
table, caption, tbody, tfoot, thead, tr, th, td,
article, footer, header, menu, nav, section {
	line-height: 1.6;
}


/* ==================================================
   font
================================================== */

.font_mincho {
	font-family: YuMincho, "游明朝", "ＭＳ Ｐ明朝", "細明朝体", "ヒラギノ明朝 Pro W3", "HiraMinProN-W3", serif;
}

.font_bold {
	font-weight: 600 !important;
}

.font_xlarge {
	font-size: 2.0em !important;
}

.font_large {
	font-size: 1.33em !important;
}

.font_ml {
	font-size: 1.14em !important;
}

.font_small {
	font-size: .86em !important;
}

.font_xsmall {
	font-size: .79em !important;
}


/* ==================================================
   magin
================================================== */

.margin_xlarge {
	margin-top: 8em !important;
}

.margin_large {
	margin-top: 4em !important;
}

.margin_middle {
	margin-top: 2em !important;
}

.margin_small {
	margin-top: 1.0em !important;
}

.margin_xsmall {
	margin-top: .5em !important;
}

/* ==================================================
   color
================================================== */

.white-text {
	color: #fff !important;
}

.black-text {
	color: #333 !important;
}

.gray-text {
	color: #808080 !important;
}

.navy-text {
	color: #022e5b !important;
}

.red-text {
	color: #d94654 !important;
}

.marker-text {
	background-color: #ddff93;
}


/* ==================================================
   Anchor
================================================== */

a,
a:link,
a:visited,
a:active {
	color: #0d6fb8;
	text-decoration: none;
}

a,
a > img {
	opacity: 1;
	filter: alpha(opacity=100);

	-webkit-transition: opacity 0.25s ease-in-out 0s;	
	   -moz-transition: opacity 0.25s ease-in-out 0s;
		 -o-transition: opacity 0.25s ease-in-out 0s;
		    transition: opacity 0.25s ease-in-out 0s;	
}

a:hover,
a:hover > img {
	opacity: 0.5;
	filter: alpha(opacity=50);	
}

a:focus, *:focus { outline:none; }

a > img {
	border: none;
	vertical-align: bottom;	
}


/* ==================================================
   Button
================================================== */

.button {
	display: inline-block;
	text-align: center;
	text-decoration: none;
	height: 54px;
	line-height: 50px;
	outline: none;
	padding-left: 2.5em;
	padding-right: 3em;
	max-width: 100%;
	font-size: 12px;

	position: relative;
	z-index: 2;
	color: #fff;
	background: #b2824f;
	border: 2px solid #b2824f;
	-webkit-perspective: 300px;
	perspective: 300px;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

@media (min-width: 769px) {
	.button {
		font-size: 15px;
	}
}
.button::before,
.button::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.button,
.button::before,
.button::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.button:hover {
	color: #b2824f !important;
	background: #fff;
	opacity: 1;
	filter: alpha(opacity=100);	
}
.button::after {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #b2824f;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-transform: rotateX(0);
	transform: rotateX(0);
}
.button:hover::after {
	-webkit-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
	opacity: 1;
	filter: alpha(opacity=100);	
}


/* ==================================================
   Table
================================================== */

.table_basic {
	width: 100%;
}
.table_basic th {
	text-align: left;
	white-space: nowrap;
}
.table_basic th {
	font-weight: 500 !important;
	padding: .5em 0;
}
.table_basic td {
	font-weight: 500 !important;
	padding: .5em 0 .5em 2em;
}


/* ==================================================
   ul / ol
================================================== */

.ul_basic {
	margin-left: 1em;
}

.ul_basic li {
	margin-top: .25em;
	list-style-type: disc;
}

.ul_notice {
	padding-left: 1em;
	text-indent: -1em;
}
.ul_notice li {
	list-style-type: none;
}
.ul_notice li::before {
    content: "※";
	color: #09f;
}

.ul_curriculum li {
	display: inline-block;
	padding: .05em .5em;
	color: #fff;
	font-size: .86em;
	background: #1e4975;
	border-radius: .25em;
	margin-right: .5em;
	margin-bottom: .25em;
}

.ol_circle {
	counter-reset: number;
	list-style: none;
}

.ol_circle li {
	line-height: 2;
	padding-top: .5em;
	padding-bottom: .5em;
}

.ol_circle li::before {
	counter-increment: number;
	content: counter(number);
	background: #022e5b;
	display: inline-block;
	width: 2em;
	height: 2em;
	text-align: center;
	border-radius: 50%;
	color: #fff;
	margin-right: .3em;
}


/* ==================================================
   Other
================================================== */

hr {
	position: relative;
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #fff;
    margin: 2em 0 0 0;
    padding: 0;
}


/* ==================================================
   Header
================================================== */

.sticky-nav {
	position: relative;
	width: 100%;
	background: #fff;
	box-shadow: 0px 5px 10px -5px rgba(0,0,0,0.5);
	z-index: 2;
}

.sticky-nav h1 {
	padding-top: 25px;
	/*padding-bottom: 13px;*/
}

.sticky-nav h1 img {
	display: inline-block;
}

.sticky-nav.stuck {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}

.sticky-nav.stuck h1 {
	padding-top: 10px;
	padding-bottom: 10px;
}

.sticky-nav #menu-nav * {
	box-sizing: border-box;
}

.sticky-nav #menu-nav {
	margin: 5px 0;
	text-align: right;
  letter-spacing: -.4em;
	border-right: 1px solid #cdcdcd;
}

.sticky-nav #menu-nav li {
	display: inline-block;
  letter-spacing: normal;
	border-left: 1px solid #cdcdcd;
}

.sticky-nav #menu-nav li a {
	display: block;
	color: #333;
	line-height: 1.2;
	height: 90px;
	width: 9em;
	padding-top: 30px;
	text-align: center;
	background: #fff;
}

.sticky-nav #menu-nav li a span {
	color: #b2824f;
	font-size: .64em;
}

.sticky-nav.stuck #menu-nav li a {
	height: 50px;
	padding-top: 10px;
}

#menu-nav li.current a,
#menu-nav li a:hover {
	background: #00426d;
	color: #fff;
}

@media (max-width: 960px) {
  .sticky-nav #menu-nav li a {
	  width: 8em;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 768px) {
	.sticky-nav h1 {
    position: relative;
		padding-top: 10px;
		padding-bottom: 10px;
    z-index: 10000;
	}
	.sticky-nav h1 img {
		height: 30px;
	}
	.sticky-nav,
	.sticky-nav.stuck {
		height: auto;
	}
	.sticky-nav.stuck {
		background: none;
		box-shadow: none;
	}
	.sticky-nav::after {
		height: 0;
	}
	.sticky-nav nav,
	.sticky-nav.stuck nav {
		border: none;
	}
	.sticky-nav.stuck h1 {
		display: none;
	}
	#menu {
		display: none;
	}
}


/* ==================================================
   Mobile Navigation
================================================== */

#mobile-nav {
	display: none;
}

.menu-nav {
	background: url(../img/site/menu-mobile.png) 0 0 no-repeat;
	width: 22px;
	height: 22px;
	display: block;
	margin-top: 15px;
	
	-webkit-transform: rotate(0deg);
	   -moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		 -o-transform: rotate(0deg);
			transform: rotate(0deg);
	
	-webkit-transition: -webkit-transform 250ms ease-out 0s;	
	   -moz-transition: -moz-transform 250ms ease-out 0s;
		 -o-transition: -o-transform 250ms ease-out 0s;
		    transition: transform 250ms ease-out 0s;
}

.menu-nav.open {
	background-position: 0 -22px;
		  
	-webkit-transform: rotate(-180deg);
	   -moz-transform: rotate(-180deg);
		-ms-transform: rotate(-180deg);
		 -o-transform: rotate(-180deg);
			transform: rotate(-180deg);
	
	-webkit-transition: -webkit-transform 0.25s ease-out 0s;	
	   -moz-transition: -moz-transform 0.25s ease-out 0s;
		 -o-transition: -o-transform 0.25s ease-out 0s;
		    transition: transform 0.25s ease-out 0s;	
}

#navigation-mobile {
	display: none;
	text-align: center;
	width: 100%;
	position: relative;
	float: left;
	z-index: 9999;
	background: #fff;
  margin-top: -60px;
	margin-bottom: 20px;
  padding-top: 82px;
  padding-bottom: 20px;
}

#navigation-mobile li {
	list-style: none;
}

#navigation-mobile li a {
	display: block;
	font-size: 14px;
	line-height: 1.2;
	padding: 20px 0 10px;
	background: #fff;
	border-top: 1px solid #e6e6e6;
	text-decoration: none;
}

#navigation-mobile li a span {
	color: #b2824f;
	font-size: .64em;
}

#menu-nav-mobile li.current a,
#menu-nav-mobile li a:hover {
	background: #00426d;
	color: #fff;
}

@media (max-width: 768px) {
	#menu {
		display: none;	
	}
	#mobile-nav {
    position: relative;
  	display: block;
		float: right;
    z-index: 10000;
	}
	#menu-nav-mobile {
		margin: 0;
	}
}


/* ==================================================
   Contents
================================================== */

#contents {
	color: #fff;
	background: #00426d;
}
#contents a {
	color: #fff;
}

.pagetitle {
	font-size: 1.33em;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
	padding: 1em 0;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
	background: #808080 url(../img/site/pagetitle.png);
	border-bottom: 1px solid #fff;
}
.pagetitle span {
	color: #f1ba81;
	font-size: .64em;
}

.padding_basic {
	padding-top: 2em;
	padding-bottom: 4em;
}


@media (min-width: 769px) {
	.pagetitle {
		font-size: 1.5em;
		padding: 2em 0;
	}
	.padding_basic {
		padding-top: 6em;
		padding-bottom: 8em;
	}
}

.h_basic {
	color: #00426d;
	font-size: 1.14em;
	font-weight: 500;
	line-height: 1.2;
	padding: .25em 1em;
	margin-bottom: .5em;
	background: linear-gradient(90deg, #fff, #00426d);
}

.h_border {
	position: relative;
	padding: .25em 0 .5em .75em;
	color: #022e5b;
	font-size: 1.07em;
	border-left: 6px solid #1e4975;
}

.h_border::before {
	position: absolute;
	left: -6px;
	bottom: 0;
	content: '';
	width: 6px;
	height: 50%;
	background-color: #022e5b;
}

.h_border::after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	width: 100%;
	height: 0;
	border-bottom: 1px solid #ccc;
}

.h_simple {
	padding: .25em 0;
	color: #022e5b;
	font-size: 1.07em;
}

/*   Footer
--------------------------------------------------- */
.footer-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.footer-navlist {
  display: flex;
  list-style: none;
}
.footer-navlist > li {
  position: relative;
  padding: 2px 10px;
  font-size: .86em;
  list-style: none;
}
.footer-navlist > li::before {
  position: absolute;
  content: '';
  display: block;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #cdcdcd;
}
.footer-navlist > li:first-child::before {
  display: none;
}
.footer-navlist > li > a {
  color: #333;
}
@media (max-width: 768px) {
  .footer-wrap {
    display: block;
  } 
  .footer-navlist {
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 25px;
  }
}
@media (max-width: 500px) {
  .footer-navlist > li {
    margin: 0 15px 5px 0;
    width: calc(50% - 15px / 2);
    text-align: center;
  }
  .footer-navlist > li:nth-child(2n) {
  	margin-right: 0;
  }
  .footer-navlist > li > a {
    display: block;
    padding: 5px 0;
    text-align: center;
  }
  .footer-navlist > li::before {
    top: inherit;
    bottom: 0;
    width: 100%;
    height: 1px;
  }
  .footer-navlist > li:first-child::before {
    display: block;
  }
}



/* ==================================================
   Home
================================================== */

.intro {
	position: relative;
	width: 100%;
	height: 100%;
	background: #808080 url(../img/home/visual.jpg) no-repeat top center;
	background-size: cover;
}

.overlay { 
	position: absolute;
	width: 100%;
	height: 100%;
	background: url(../img/home/overlay.png);
	opacity: 0.3;
	filter: alpha(opacity=30);
}

.intro h2 {
	font-size: 1.8em;
	font-weight: 600;
	text-shadow:
		2px 2px 2px #000,
		-2px 2px 2px #000,
		2px -2px 2px #000,
		-2px -2px 2px #000;
}
.intro h2 span {
	display: block;
	margin-bottom: .2em;
	font-size: .6em;
}
.intro p {
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}
@media (min-width: 1025px) {
	.intro {
		background: #808080 url(../img/home/visual.jpg) no-repeat top right 20%;
		background-size: contain;
	}
	.intro h2 {
		font-size: 3em;
	}
	.intro p {
		line-height: 2em;
	}
}

.menu_contents {
	padding: 2em 1em;
	color: #333;
	background: #fff url(../img/home/menu_product.jpg) no-repeat center center;
	background-size: cover;
}
.menu_contents h2 {
	font-size: 1.33em;
	font-style: italic;
	font-weight: 500;
	letter-spacing: 1;
	background: -moz-linear-gradient(left, #fff, transparent);
	background: -webkit-linear-gradient(left, #fff, transparent);
	background: linear-gradient(to right, #fff, transparent);
}
.menu_contents p {
	margin: 2em 0 3em 0;
}
@media (min-width: 769px) {
	.menu_contents {
		padding: 4em 2em;
	}
	.menu_contents h2 {
		font-size: 1.5em;
	}
}

.menu_product {
	background: #fff url(../img/home/menu_product.jpg) no-repeat center center;
	background-size: cover;
}
.menu_process {
	background: #fff url(../img/home/menu_process.jpg) no-repeat center center;
	background-size: cover;
}


/* ==================================================
   Product
================================================== */

.product_box {
	padding: 1em;
	background: #fff;
	color: #333;
}
.product_box h3 {
	padding-bottom: .25em;
	border-bottom: 1px solid #808080;
	font-size: 1.27em;
}
.product_box h3 span {
	display: block;
	margin-bottom: .2em;
	color: #808080;
	font-size: .63em;
}
.product_box h4 {
	padding: .2em 0;
	font-size: 1em;
}
.product_box p {
	padding-top: .2em;
}
@media (max-width: 768px) {
  
}

/* ==================================================
   Process
================================================== */

.process_box {
	padding: 1em;
	background: #fff;
	border: double #00426d;
	color: #333;
}
.process_box h3 {
	padding-bottom: .25em;
	font-size: 1.27em;
	text-align: center;
}

/* Slick Slider */
.slider {
	margin: 0;
}
.slider img {
	width: 100%;
	height: auto;
}


/* ==================================================
   Company
================================================== */

#map_canvas {
	width: 100%;
	height: 360px;
}

@media (min-width: 769px) {
	#map_canvas {
		height: 500px;
	}
}


/* ==================================================
   Contact
================================================== */

label span {
	color: #d79e61;
	font-size: .86em;
	font-weight: 300;
}

.input-field {
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 1em;
}

input,
textarea {
	color: #333 !important;
	font-size: 14px;
	line-height: 1.6;
	margin-top: 3px;
	padding: 10px;
	background: #fff;
	border: 1px solid #fff;
}

/* Chrome, Safari */
::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder{
    color: #999;
}
 
/* Firefox */
::-moz-placeholder,
.form-control::-moz-placeholder{
    color: #999;
}
 
/* Firefox 18以前 */
:-moz-placeholder,
.form-control:-moz-placeholder{
    color: #999;
}
 
/* IE */
:-ms-input-placeholder,
.form-control:-ms-input-placeholder{
    color: #999;
}

.full_width {
	width: 100%;
}

.form_control:focus {
	border: 1px solid #d79e61;
}

.checkbox-validate input,
.radio-validate input {
	margin-top: 5px;
	margin-right: 5px;
}

@media (max-width: 768px) {
	.checkbox-validate input {
		margin-top: 15px;
	}
}

.error input, 
.error textarea {
	background: #fcc;
}

p.error {
	color: #ff3661 !important;
	font-size: 12px;
}

#success,
#failure {
	display: none;
	margin-top: 2em
}

#success h3,
#failure h3 {
	font-size: 1.33em;
}

.box_contact {
	padding: 1em;
	border: 3px double #fff;
}


/* ==================================================
   Footer
================================================== */

.sec_footer {
	padding: 1em 0;
	border-top: 1px solid #fff;
	background: #e6e6e6 url(../img/site/pagetitle.png);
}
.sec_footer h1 {
	font-size: .79em;
	font-weight: 600;
	margin-bottom: .5em;
}

#credits {
    position: relative;
	color: #808080;
	font-size: .79em;
	text-align: center;
	line-height: 30px;
	background: #fff;
}

@media (min-width: 769px) {
	.sec_footer {
		padding: 2em 0;
	}
	#credits {
		line-height: 50px;
	}
}


/* ==================================================
   Page Top
================================================== */

#pagetop {
	display: none;
}

#pagetop {
	position: fixed;
	bottom: 0;
	right: 0;
	display: none;
	cursor: pointer;
	z-index: 99;
	width: 30px;
	height: 30px;
	background: #b2824f;
	
	-webkit-transition: background 0.1s linear 0s;	
	   -moz-transition: background 0.1s linear 0s;
		 -o-transition: background 0.1s linear 0s;
			transition: background 0.1s linear 0s;
}
#pagetop i {
	color: #fff;
	font-size: 1.71em;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -11px;
	margin-left: -7px;
	line-height: 1em;
}

@media (min-width: 769px) {
	#pagetop {
		width: 50px;
		height: 50px;
	}
}

/* ==================================================
   Contact box
================================================== */
.contact-type {
  display: flex;
  border: solid #fff;
  border-width: 2px 0 2px 2px;
}
.contact-type > div {
  width: 50%;
  padding: 50px 0;
  text-align: center;
  border-right: 2px solid #fff;
}

.contact-label {
  padding-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 600;
}
.contact-telno {
  font-size: 2em;
  font-weight: 600;
}
.contact-telno::before {
  display: inline-block;
  font-family: FontAwesome;
  content: '\f095';
  padding-right: 5px;
  font-size: 2.2rem;
  transform: rotate(18deg);
}

#contents a.btnlink-typ1 {
  position: relative;
  width: 85%;
  max-width: 350px;
  margin: 0 auto;
  display: block;
  text-align: center;
  color: #00426D;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 65px;
  background: #fff;
}
#contents a.btnlink-typ1.set_bdr {
  border: 2px solid #00426D;
}
#contents a.btnlink-typ1::after {
  position: absolute;
  font-family: FontAwesome;
  content: '\f061';
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  font-size: 1.25rem;
}
@media (max-width: 599px) {
  .contact-type {
    display: block;
    margin-left: 15px;
    margin-right: 15px;
    border: solid #fff;
    border-width: 2px 2px 0 2px;
  }
  .contact-type > div {
    width: 100%;
    padding: 2em 0;
    text-align: center;
    border-right: none;
    border-bottom: 2px solid #fff;
  }
}

.sp-contact-wrap {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75px;
  padding-top: 5px;
  border-top: 1px solid #b2824f;
  background-color: #fff;
  z-index: 90;
}
.sp-contact-label {
  padding-bottom: 3px;
  text-align: center;
  font-size: 1.15em;
  color: #b2824f;
  font-weight: bold;
}
.sp-contact-list {
  display: flex;
  justify-content: space-around;
  list-style: none;
}
.sp-contact-list > li {
  position: relative;
  width: 50%;
  text-align: center;
  color: #333;
  background: #b2824f;
}
.sp-contact-list > li:first-child::after {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  display: block;
  width: 1px;
  height: 100%;
  background: #fff;
}
.sp-contact-list > li > a {
  display: block;
  height: 45px;
  color: #fff!important;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 45px;
  box-sizing: border-box;
}
.sp-contact-mail::before {
  font-family: FontAwesome;
  content: '\f003';
  display: inline-block;
  margin-right: 7px;
  font-size: 1.3rem;
  font-weight: 600;
  vertical-align: middle;
  /*background-color: #fff;
  border-radius: 50%;*/
}
.sp-contact-tel::before {
  font-family: FontAwesome;
  content: '\f095';
  display: inline-block;
  margin-right: 7px;
  font-size: 1.3rem;
  font-weight: 600;
  vertical-align: middle;
  /*background-color: #fff;
  border-radius: 50%;*/
}


@media (max-width: 599px) {
  .sp-contact-wrap {
    display: block;
  }
}