@charset "UTF-8";

/* ----------------------------------------------------------------
Web font
----------------------------------------------------------------- */

/* Font awesome */
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');

/* Noto */
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP&display=swap');
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

/* ----------------------------------------------------------------
Body
----------------------------------------------------------------- */

body {
    font-family: 'Noto Sans JP', sans-serif;
}

b, strong, .bold {
    font-family: 'Noto Sans JP', sans-serif;
   	font-weight: 700;
}

/* ----------------------------------------------------------------
COMMON
----------------------------------------------------------------- */

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

.newline {
	display: inline-block;
}

/* heading */
.h1 {
	font-size: 45px;
	color: #b81c22;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
	letter-spacing: 2px;
	margin-bottom: 70px;
}

.h1 span {
	font-size: 14px;
	color: #333333;
	line-height: 1.4;
	display: block;
	margin-top: 5px;
}

/*  ~ 991px  */
@media (max-width: 991px) {

.h1 {
	font-size: 35px;
	margin-bottom: 40px;
}

.h1 span {
	font-size: 14px;
	margin-top: 5px;
}
} /* end of media */

/* contact btn */
.contact-btn {
	display: inline-block;
	font-size: 16px;
	color: #ffffff;
	line-height: 1.4;
	max-width: 250px;
	width: 100%;
	height: auto;
	padding: 15px;
	text-align: center;
	border-radius: 50px;
	margin-top: 40px;
	font-weight: bold;
	background-color: #b81c22;
}

/*  ~ 991px  */
@media (max-width: 991px) {

.contact-btn {
	font-size: 14px;
	max-width: 180px;
	padding: 10px 15px;
	margin-top: 0;
}
} /* end of media */

/* mega heading */
.mega-heading {
	width: 100%;
	height: auto;
	position: relative;
	margin-bottom: 100px;
}

.mega-heading .bg-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.mega-heading .heading {
	display: inline-block;
	position: absolute;
	top: 53%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
	z-index: 9995;
}

.mega-heading .heading h1 {
	font-size: 35px;
	color: #ffffff;
	line-height: 1.6;
	letter-spacing: 5px;
	text-align: center;
	font-weight: bold;
}

.mega-heading .heading h1:after {
	content: "";
	display: block;
	width: 150px;
	height: 2px;
	background-color: #ffffff;
	margin: 25px auto;
	opacity: 0.4;
}

.mega-heading .heading p {
	font-size: 18px;
	color: #ffffff;
	text-align: center;
	line-height: 1.6;
}

/*  ~ 991px  */
@media (max-width: 991px) {

.mega-heading {
	margin-bottom: 50px;
}

.mega-heading .bg-image img {
	height: 250px;
}

.mega-heading .heading h1 {
	font-size: 22px;
}

.mega-heading .heading h1:after {
	width: 100px;
	margin: 15px auto;
}

.mega-heading .heading p {
	font-size: 14px;
}
} /* end of media */

/* ----------------------------------------------------------------
Header
----------------------------------------------------------------- */

.header {
	background-color: rgba(0, 0, 0, 0);
	width: 100%;
	height: auto;
	overflow: hidden;
	padding: 25px 40px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	transition: .5s;
}

.header.change {
	background-color: rgba(255, 255, 255, 1);
	position: fixed;
	top: -110px;
	left: 0;
	z-index: 9999;
	transition: .5s;
	box-shadow: 1px 1px 2px #bbbbbb;
	padding: 15px 40px;
}

.header.change.show {
	position: fixed;
	top: 0;
	left: 0;
}

.header.past.show {
	position: fixed;
	top: -100px;
	left: 0;
}

/* logo */
.header .brand {
	width: auto;
	height: 30px;
	float: left;
	margin-top: 5px;
}

/* global menu */
.header .global-nav {
	overflow: hidden;
	float: right;
}

.header .global-nav ul li {
	float: left;
	margin-left: 20px;
}

.header .global-nav ul li a {
	display: block;
	font-size: 15px;
	color: #ffffff;
	font-weight: 500;
	line-height: 1.6;
	padding: 8px;
	position: relative;
}

.header.change .global-nav ul li a {
	color: #333333;
}

.header .global-nav ul li a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 3px;
	background-color: #ffffff;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}

.header .global-nav ul li a:not(.btn):hover::after {
	transform: scale(1, 1);
}

.header.change .global-nav ul li a::after {
	background-color: #b81c22;
}

.header.change .global-nav ul li a:not(.btn):hover::after {
	transform: scale(1, 1);
}

/* header btn */
.header .btn {
	display: block;
	font-size: 15px;
	line-height: 1.6;
	color: #ffffff;
	text-align: center;
	width: 140px;
	padding: 5px;
	border: 1px solid #ffffff;
	border-radius: 50px;
}

.header.change .btn {
	color: #ffffff !important;
	border: none;
	background-color: #b81c22;
}

/* toggle */
.toggle-icon {
    width: 30px;
    height: 30px;
    background-image: url(assets/images/common/toggle.png);
    background-repeat: no-repeat;
    background-size: 30px 30px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 999;
}

.header.change .toggle-icon {
    width: 30px;
    height: 30px;
    background-image: url(assets/images/common/toggle-k.png);
    background-repeat: no-repeat;
    background-size: 30px 30px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 999;
}

.toggle-icon.close {
    width: 30px;
    height: 30px;
    background-image: url(assets/images/common/close.png);
    background-repeat: no-repeat;
    background-size: 30px 30px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 999;
}

.header .toggle-icon {
	display: none;
}

/*  ~ 991px  */
@media (max-width: 991px) {

.header {
	padding: 15px 30px;
}

.header.change {
	padding: 15px 30px;
}

/* global menu */
.header .global-nav {
	display: none;
}

.header .global-nav ul li {
	margin-left: 20px;
}

.header .global-nav ul li a {
	display: inline-block;
	font-size: 14px;
	color: #ffffff;
	line-height: 1.4;
	padding: 10px 0;
	position: relative;
}

.header.change .global-nav ul li a {
	color: #333333;
}

.header .toggle-icon {
	display: block;
}
} /* end of media */

/*■■■■■■■■■■■■  header sp  ■■■■■■■■■■■■*/

.header-sp {
    max-width: 320px;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    right: -400px;
    z-index: 9999;
    display: none;
}

.header-sp .logo-area {
	padding: 20px 15px;
    border-bottom: 1px dotted #dddddd;
}

.header-sp .logo-area .logo a img {
    max-width: 130px;
    width: 100%;
    height: auto;
    margin-bottom: 2px;
}

.header-sp .nav-area .global-nav ul li {
    padding: 12px 15px 12px 15px;
    border-bottom: 1px dotted #dddddd;
}

.header-sp .nav-area .global-nav ul li a {
    font-size: 13px;
    color: #333333
    line-height: 1.4;
    display: block;
}

/*  ~ 991px  */
@media (max-width: 991px) {

.header-sp {
    display: block;
}
} /* end of media */

/* ----------------------------------------------------------------
Footer
----------------------------------------------------------------- */

.footer {
	padding: 30px 15px;
}

/* copyright */
.footer .copyright {
	text-align: center;
	font-size: 12px;
	color: #a29f9a;
	line-height: 1.4;
}

/* ----------------------------------------------------------------
index .html/php
----------------------------------------------------------------- */

.top_visual {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	position: relative;
	margin-bottom: 120px;
}

.top_visual_image {
	width: 100%;
	height: 100vh;
	background-image: url(assets/images/index/top_visual_gradation.jpg);
	background-size: cover;
	position: absolute;
	top: 0;
	z-index: 2;
	opacity: 0.8;
}

.top_visual .top_visual_title {
	position: absolute;
	top: -40px;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: 3;
}

.top_visual_heading {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	word-break: break-all;
	z-index: 3;
}

.top_visual_heading_big {
	font-size: 80px;
	color: #ffffff;
	line-height: 100px;
	display: block;
	font-family: 'Jost';
	font-weight: bold;
	letter-spacing: 10px;
	margin-bottom: 20px;
}

.top_visual_heading_big_ja {
	font-size: 25px;
	color: #ffffff;
	line-height: 1.6;
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 4px;
	font-weight: 400;
}

.top_visual_heading_small {
	font-size: 25px;
	color: #ffffff;
	line-height: 1.6;
	display: block;
	font-family: 'Jost';
	font-weight: medium;
	letter-spacing: 4px;
	margin-bottom: 20px;
}

.canvas {
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	z-index: 1;
}

/*  ~ 991px  */
@media (max-width: 991px) {

.top_visual {
	margin-bottom: 60px;
}

.top_visual_heading {
	padding: 0 25px;
}

.top_visual_heading_big {
font-size: 45px;
line-height: 1.2;
}

.top_visual_heading_big_ja {
font-size: 16px;
line-height: 26px;
margin-top: 15px;
}

.top_visual_heading_small {
font-size: 14px;
line-height: 18px;
}
} /* end of media */

/*■■■■■■■■■■■■  service  ■■■■■■■■■■■■*/

.service-wrap {
	margin-bottom: 150px;
}

.service-wrap .row-20 > .col-lg-6 {
	margin-bottom: 20px;
}

.service-wrap .service-inner.text-wrap {
	background-color: #eeeeee;
	width: 100%;
	height: 100%;
}

.service-wrap .service-inner.text-wrap .text-inner {
	max-width: 450px;
	width: 100%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
}

.service-wrap .service-inner h2 {
	font-size: 28px;
	color: #333333;
	line-height: 1.4;
	text-align: center;
	font-weight: bold;
}

.service-wrap .service-inner h2 span {
	display: block;
	font-size: 16px;
	color: #b81c22;
	line-height: 1.4;
	margin: 10px 0 40px 0;
	font-weight: normal;
}

.service-wrap .service-inner p {
	font-size: 16px;
	color: #333333;
	line-height: 1.8;
	text-align: justify;
	margin-bottom: 20px;
}

.service-wrap .service-inner.thumb {
	position: relative;
}

.service-wrap .service-inner.thumb::before {
	content:'';
	display: block;
	padding-top: 65%;
}

.service-wrap .service-inner.thumb img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
}

.service-wrap .service-inner p.link a {
	font-size: 16px;
	color: #b81c22;
	line-height: 1.4;
	font-weight: bold;
	text-decoration: underline;
}

.service-wrap .service-inner p.link a .link-icon {
	font-size: 18px;
	vertical-align: middle;
}

/*  ~ 991px  */
@media (max-width: 991px) {

.order-lg-1 {
	order: 1;
}

.order-lg-2 {
	order: 2;
}

.service-wrap {
	margin-bottom: 60px;
}

.service-wrap .row-20 > .col-lg-6 {
	margin-bottom: 30px;
}

.service-wrap .service-inner.text-wrap {
	background-color: #ffffff;
	width: 100%;
	height: auto;
}

.service-wrap .service-inner.text-wrap .text-inner {
	max-width: 100%;
	width: 100%;
	height: auto;
	position: static;
	transform: none;
	-webkit- transform: none;
}

.service-wrap .service-inner h2 {
	font-size: 22px;
}

.service-wrap .service-inner h2 span {
	font-size: 13px;
	margin: 10px 0 15px 0;
}

.service-wrap .service-inner p {
	font-size: 14px;
	margin-bottom: 10px;
}

.service-wrap .service-inner.thumb {
	position: relative;
}

.service-wrap .service-inner.thumb::before {
	padding-top: 0;
}

.service-wrap .service-inner.thumb img {
	position: static;
}

.service-wrap .service-inner p.link a {
	font-size: 14px;
}
} /* end of media */

/*■■■■■■■■■■■■  exsample  ■■■■■■■■■■■■*/

.exsample-wrap {
	margin-bottom: 150px;
}

.exsample-wrap .exsample-inner {
	position: relative;
	width: 100%;
	margin-bottom: 20px;
}

/* video */
.video {
	width: 100%;
	height: auto;
}

.video-wrap {
	position: relative;
}

.video-wrap .overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(184, 28, 34, 0.8);
	overflow: hidden;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: .3s ease;
}

.video-wrap .overlay .text {
	color: #ffffff;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.6;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.video-wrap:hover .overlay {
	transform: scale(1);
}

.video-wrap::before {
	content:'';
	display: block;
	padding-top: 65%;
}

.video-wrap .video {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
}

.video-wrap button {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
 	right: 0;
	bottom: 0;
	z-index: 999;
	text-align: center;
	padding: 15px;
}

.video-wrap button.active {
	background-color: rgba(0, 0, 0, 0.4);
}

.video-wrap .play-icon {
	display: inline-block;
	text-align: center;
}

.video-wrap .play-icon.display-none {
	display: none;
}

.video-wrap .play-icon.display-block {
	display: block;
}

.video-wrap .play-icon .icon {
	max-width: 50px;
	width: 100%;
	height: auto;
}

/*  ~ 991px  */
@media (max-width: 991px) {

.exsample-wrap {
	margin-bottom: 40px;
}

.exsample-wrap .exsample-inner {
	margin-bottom: 40px;
}

/* video */
.video-wrap .overlay .text {
	font-size: 16px;
}

.video-wrap .play-icon .icon {
	max-width: 40px;
	margin-bottom: 0;
}
} /* end of media */

/*■■■■■■■■■■■■  noties  ■■■■■■■■■■■■*/

.noties-wrap .noties-inner {
	padding: 100px 0;
	margin-bottom: 100px;
}

.noties-inner.parallax {
	background-position: center top;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-image: url(assets/images/index/noties-back.jpg);
}

.noties-wrap .noties-inner .h2 {
	font-size: 28px;
	color: #ffffff;
	line-height: 1.6;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}

.noties-wrap .noties-inner .text {
	font-size: 18px;
	color: #ffffff;
	line-height: 1.8;
	text-align: center;
}

/*  ~ 991px  */
@media (max-width: 991px) {

/* noties */
.noties-wrap .noties-inner {
	padding: 50px 0;
	margin-bottom: 40px;
}

.noties-wrap .noties-inner .h2 {
	font-size: 20px;
	margin-bottom: 20px;
}

.noties-wrap .noties-inner .text {
	font-size: 14px;
	margin-bottom: 0; 
}
} /* end of media */

/*■■■■■■■■■■■■  about us  ■■■■■■■■■■■■*/

.aboutus-wrap {
	max-width: 750px;
	width: 100%;
	height: auto;
	margin: 0 auto 100px auto;
}

.aboutus-wrap .table-wrap .table {
	width: 100%;
	height: auto;
}

.aboutus-wrap .table-wrap .table tr {
	border-bottom: 1px solid #dddddd;
}

.aboutus-wrap .table-wrap .table tr .title {
	width: 20%;
	height: auto;
	font-size: 15px;
	color: #333333;
	line-height: 1.6;
	padding: 15px;
	font-weight: bold;
}

.aboutus-wrap .table-wrap .table tr .text {
	width: 80%;
	height: auto;
	font-size: 15px;
	color: #333333;
	line-height: 1.6;
	padding: 15px 15px;
}

/*  ~ 991px  */
@media (max-width: 991px) {

.aboutus-wrap {
	margin: 0 auto 40px auto;
}

.aboutus-wrap .table-wrap .table tr .title {
	display: block;
	width: 100%;
	padding: 15px 15px 5px 15px;
	font-size: 14px;
}

.aboutus-wrap .table-wrap .table tr .text {
	display: block;
	width: 100%;
	padding: 0 15px 15px 15px;
	font-size: 14px;
}
} /* end of media */

/*■■■■■■■■■■■■ contact  ■■■■■■■■■■■■*/

.contact-wrap {
	margin-bottom: 150px;
}

.contact-wrap .contact-inner {
	width: 100%;
	border: 1px solid #dddddd;
	background-color: #fafafa;
	padding: 40px 30px;
}

.contact-wrap p.text {
	font-size: 16px;
	color: #333333;
	line-height: 1.6;
	margin-bottom: 30px;
}

.contact-wrap p.text.tel {
	font-size: 24px;
	color: #333333;
	line-height: 1.6;
	margin-bottom: 50px;
}

.contact-wrap p.text.tel .strong {
	color: #b81c22;
	font-weight: bold;
}

.name.input_text,
.mail.input_text,
.tel.input_text,
.company.input_text,
.theme.input_text, {
	width: 100%;
}

.input_text {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #ffffff;
	background-image: none;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 0;
	color: inherit;
	font-family: inherit;
	font-size: 14px;
	padding: 10px 10px;
	width: 100%;
	margin-bottom: 5px;
}

.input_text:focus {
	border: 1px solid rgba(0, 0, 0, 0.32);
	box-shadow: none;
	outline: none;
}

.input_textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #ffffff;
	background-image: none;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 0;
	color: inherit;
	font-family: inherit;
	font-size: 14px;
	height: 350px;
	padding: 10px 10px;
	width: 100%;
	margin-bottom: 20px;
}

.input_textarea:focus {
	border: 1px solid rgba(0, 0, 0, 0.32);
	box-shadow: none;
	outline: none;
}

.contact-wrap .contact-inner form table {
	width: 100%;
}

.contact-wrap .contact-inner form table tr {
	border-bottom: 20px #fafafa solid;
}

.contact-wrap .contact-inner form table tr td {
	display: block;
	width: 100%;
}

.contact-wrap .contact-inner form table tr td.title {
	font-size: 15px;
	color: #333333;
	line-height: 1.6;
	margin-bottom: 12px;
}

.required {
	color: #b81c22;
	font-size: 10px;
}

.error-message {
	font-size: 13px;
	color: #333333;
	line-height: 1.6;
	color: #FC5C70;
}

/*input_button*/
.input-button {
	-webkit-appearance: none;
	background-image: none;
	border: none;
	border-radius: 0;
	color: #ffffff;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	margin: 0 0 1em;
	padding: 20px 25px;
	text-decoration: none;
	max-width: 300px;
	width: 100%;
	background-color: #b81c22;
	margin: 0 auto;
	display: block;
	text-align: center;
	font-weight: bold;
}

.input-button:hover,
.input-button:focus {
	outline: none;
}

.input-button::-moz-foucus-inner {
	border: none;
	padding: 0;
}

.contact_notice {
	font-size: 14px;
	color: #333333;
	line-height: 22px;
	margin-bottom: 40px;
	text-align: center;
}

/*  ~ 991px  */
@media (max-width: 991px) {

/*■■■■■■■■■■■■ contact  ■■■■■■■■■■■■*/

.contact-wrap {
	margin-bottom: 60px;
}

.contact-wrap .contact-inner {
	padding: 20px;
}

.contact-wrap p.text {
	font-size: 14px;
	margin-bottom: 20px;
}

.contact-wrap p.text.tel {
	font-size: 18px;
	margin-bottom: 20px;
}

.input_text {
	font-size: 14px;
	padding: 5px 10px;
	margin-bottom: 3px;
}

.input_textarea {
	height: 250px;
}

.contact-wrap .contact-inner form table tr {
	border-bottom: 15px #fafafa solid;
}

.contact-wrap .contact-inner form table tr td.title {
	font-size: 14px;
	margin-bottom: 8px;
}

.required {
	font-size: 10px;
}

/*input_button*/

.input-button {
	font-size: 14px;
	padding: 15px;
	max-width: 250px;
}

.contact_notice {
	font-size: 13px;
	margin-bottom: 20px;
}
}

.map-wrap {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 30%;
}
.map-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*  ~ 991px  */
@media (max-width: 991px) {

.map-wrap {
	padding-top: 50%;
}
} /* end of media */