/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
	color: #4d4643;
	font-family: "Open Sans", sans-serif;
}

a {
	color: #5c6aca;
	text-decoration: none;
}

a:hover {
	color: #828dd7;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
	background: #5c6aca;
	border-radius: 4px;
	bottom: 15px;
	height: 40px;
	opacity: 0;
	position: fixed;
	right: 15px;
	transition: all 0.4s;
	visibility: hidden;
	width: 40px;
	z-index: 996;
}

.back-to-top i {
	color: #fff;
	font-size: 28px;
	line-height: 0;
}

.back-to-top:hover {
	background: #7b86d4;
	color: #fff;
}

.back-to-top.active {
	opacity: 1;
	visibility: visible;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/

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

#header {
	background: #fff;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	padding: 15px 0;
	transition: all 0.5s;
	z-index: 997;
}

#header .logo {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.5px;
	line-height: 1;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
}

#header .logo a {
	color: #111;
}

#header .logo a span {
	color: #5c6aca;
}

#header .logo img {
	max-height: 40px;
}

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/

.header-social-links {
	border-left: 1px solid #c4c4c4;
	margin-left: 20px;
}

.header-social-links a {
	color: #a0a0a0;
	display: inline-block;
	line-height: 0px;
	padding-left: 20px;
	transition: 0.3s;
}

.header-social-links a i {
	line-height: 0;
}

.header-social-links a:hover {
	color: #5c6aca;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/**
* Desktop Navigation 
*/

.navbar {
	padding: 0;
}

.navbar ul {
	align-items: center;
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.navbar li {
	position: relative;
}

.navbar a {
	position: relative;
}

.navbar a::after {
	background-color: #5c6aca;
	bottom: -4px;
	content: "";
	display: block;
	height: 3px;
	left: 50%;
	position: absolute; /*横方向0で非表示にする*/
	transform: scale(1, 0); /*中央を基点にアニメーション*/
	transform-origin: center top; /*アニメーションの速度設定*/
	transition: all 0.5s ease;
	width: 28px;
}

.navbar a,
.navbar a:focus {
	align-items: center;
	color: #111;
	display: flex;
	font-family: "Roboto", sans-serif;
	font-size: 13px;
	font-weight: 600;
	justify-content: space-between;
	padding: 10px 0 10px 30px;
	text-transform: uppercase;
	transition: 0.3s;
	white-space: nowrap;
}

.navbar a i,
.navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
	color: #5c6aca;
}

.navbar a:hover::after,
.navbar .active::after,
.navbar .active:focus::after,
.navbar li:hover > a::after {
	transform: scale(1, 1);
}

.navbar .dropdown ul {
	background: #fff;
	border-top: 2px solid #5c6aca;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	display: block;
	left: 14px;
	margin: 0;
	opacity: 0;
	padding: 10px 0;
	position: absolute;
	top: calc(100% + 30px);
	transition: 0.3s;
	visibility: hidden;
	z-index: 99;
}

.navbar .dropdown ul li {
	min-width: 200px;
}

.navbar .dropdown ul a {
	color: #111;
	font-size: 14px;
	font-weight: 500;
	padding: 10px 20px;
	text-transform: none;
}

.navbar .dropdown ul a i {
	font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
	color: #5c6aca;
}

.navbar .dropdown:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.navbar .dropdown .dropdown ul {
	left: calc(100% - 30px);
	top: 0;
	visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
	left: 100%;
	opacity: 1;
	top: 0;
	visibility: visible;
}

/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
	color: #111;
	cursor: pointer;
	display: none;
	font-size: 28px;
	line-height: 0;
	transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
	color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
	background-color: rgba(0, 0, 0, 0.5);
	height: 100vh;
	overflow: hidden;
	position: relative;
	width: 100%;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

#hero .carousel-container {
	align-items: flex-start;
	bottom: 60px;
	display: flex;
	justify-content: center;
	left: 0;
	position: absolute;
	right: 0;
	top: 70px;
}

#hero .carousel-content {
	background: rgba(4, 4, 4, 0.7);
	border-top: 5px solid #5c6aca;
	color: #fff;
	padding: 20px;
}

#hero .carousel-content h2 {
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
}

#hero .btn-get-started {
	-webkit-animation-delay: 0.8s;
	        animation-delay: 0.8s;
	border: 2px solid #5c6aca;
	border-radius: 4px;
	color: #fff;
	display: inline-block;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 1;
	margin: 10px;
	padding: 12px 32px;
	transition: 0.5s;
}

#hero .btn-get-started:hover {
	background: #5c6aca;
	color: #fff;
	text-decoration: none;
}

#hero .carousel-inner .carousel-item {
	background-position: center top;
	transition-property: opacity;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
	opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
	opacity: 1;
	transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
	left: 0;
	transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
	align-items: center;
	background: none;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 50px;
	color: rgba(255, 255, 255, 0.6);
	display: flex;
	font-size: 30px;
	height: auto;
	height: 54px;
	justify-content: center;
	line-height: 0;
	transition: 0.3s;
	width: auto;
	width: 54px;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
	background: rgba(255, 255, 255, 0.6);
	color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
	background: #fff;
	border: 0;
	border-radius: 50px;
	cursor: pointer;
	height: 12px;
	list-style-type: none;
	opacity: 0.6;
	overflow: hidden;
	transition: 0.3s;
	width: 12px;
}

#hero .carousel-indicators li.active {
	background: #5c6aca;
	opacity: 1;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
	overflow: hidden;
	padding: 100px 0;
}

.section-bg {
	background-color: #f7f7f7;
}

.section-title {
	padding-bottom: 30px;
	text-align: center;
}

.section-title h2 {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}

.section-title col-lg-4 h2::after {
	background: #5c6aca;
	bottom: 0;
	content: "";
	display: block;
	height: 3px;
	left: calc(50% - 25px);
	position: absolute;
	width: 50px;
}

.section-title p {
	line-height: 1.8;
	margin-bottom: 60px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	width: 70%;
}

.onomichi-info {
	margin-top: 38px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
	background: #5c6aca;
	margin-top: 72px;
	min-height: 40px;
	padding: 15px 0;
}

.breadcrumbs h2 {
	color: #fff;
	font-size: 26px;
	font-weight: 300;
}

.breadcrumbs ol {
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.breadcrumbs ol a {
	color: #fff;
}

.breadcrumbs ol li + li {
	padding-left: 10px;
}

.breadcrumbs ol li + li::before {
	color: #fff;
	content: "/";
	display: inline-block;
	padding-right: 10px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box {
	background: #fff;
	padding: 70px 20px 80px 20px;
	text-align: center;
	transition: all ease-in-out 0.3s;
}

.services .icon-box .icon {
	align-items: center;
	display: flex;
	height: 100px;
	justify-content: center;
	margin: 0 auto;
	position: relative;
	transition: ease-in-out 0.3s;
	width: 100px;
}

.services .icon-box .icon i {
	font-size: 36px;
	position: relative;
	transition: 0.5s;
}

.services .icon-box .icon svg {
	left: 0;
	position: absolute;
	top: 0;
}

.services .icon-box .icon svg path {
	transition: 0.5s;
	fill: #f5f5f5;
}

.services .icon-box h4 {
	font-size: 22px;
	font-weight: 600;
	margin: 10px 0 15px 0;
}

.services .icon-box h4 a {
	color: #111;
	transition: ease-in-out 0.3s;
}

.services .icon-box p {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 0;
	margin-top: 26px;
	text-align: left;
}

.services .icon-box:hover {
	border-color: #fff;
	box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
	color: #28a745;
}

.services .iconbox-blue:hover .icon i {
	color: #fff;
}

.services .iconbox-blue:hover .icon path {
	fill: #28a745;
}

.services .iconbox-orange i {
	color: #e83e8c;
}

.services .iconbox-orange:hover .icon i {
	color: #fff;
}

.services .iconbox-orange:hover .icon path {
	fill: #e83e8c;
}

.services .iconbox-pink i {
	color: #21759b;
}

.services .iconbox-pink:hover .icon i {
	color: #fff;
}

.services .iconbox-pink:hover .icon path {
	fill: #21759b;
}

.services .iconbox-yellow i {
	color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
	color: #fff;
}

.services .iconbox-yellow:hover .icon path {
	fill: #ffbb2c;
}

.services .iconbox-red i {
	color: #ff5828;
}

.services .iconbox-red:hover .icon i {
	color: #fff;
}

.services .iconbox-red:hover .icon path {
	fill: #ff5828;
}

.services .iconbox-teal i {
	color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
	color: #fff;
}

.services .iconbox-teal:hover .icon path {
	fill: #11dbcf;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio #portfolio-flters {
	list-style: none;
	margin: 0 auto 50px auto;
	padding: 0;
	text-align: center;
}

.portfolio #portfolio-flters li {
	border-radius: 4px;
	color: #4d4643;
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	padding: 8px 20px 10px 20px;
	text-transform: uppercase;
	transition: all 0.3s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
	background: #5c6aca;
	color: #fff;
}

.portfolio #portfolio-flters li:last-child {
	margin-right: 0;
}

.portfolio .portfolio-item {
	margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
	background: rgba(255, 255, 255, 0.9);
	bottom: 0;
	left: 30px;
	opacity: 0;
	padding: 15px;
	position: absolute;
	right: 30px;
	transition: all ease-in-out 0.3s;
	z-index: 3;
}

.portfolio .portfolio-item .portfolio-info h4 {
	color: #fff;
	color: #111;
	font-size: 14px !important;
	font-weight: 600;
	margin-top: 8px;
}

.portfolio .portfolio-item .portfolio-info p {
	color: #444444;
	font-size: 14px;
	margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
	color: #2b2b2b;
	font-size: 24px;
	position: absolute;
	right: 40px;
	top: calc(50% - 18px);
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
	color: #5c6aca;
}

.portfolio .portfolio-item .portfolio-info .details-link {
	right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	text-align: center;
	transition: all ease-in-out 0.3s;
	z-index: 3;
}

.portfolio .portfolio-item .portfolio-links a {
	color: #fff;
	display: inline-block;
	font-size: 28px;
	margin: 0 2px;
	transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
	color: #a9b0e3;
}

.portfolio .portfolio-item:hover .portfolio-info {
	bottom: 20px;
	opacity: 1;
}

.portfolio-details-link span {
	font-size: 14px !important;
	margin-left: -11px;
	vertical-align: middle;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details {
	padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
	width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
	margin-top: 20px;
	position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
	background-color: #fff;
	border: 1px solid #5c6aca;
	height: 12px;
	opacity: 1;
	width: 12px;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #5c6aca;
}

.portfolio-details .portfolio-info {
	box-shadow: 0px 0 30px rgba(17, 17, 17, 0.08);
	padding: 30px;
}

.portfolio-details .portfolio-info h3 {
	border-bottom: 1px solid #eee;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.portfolio-details .portfolio-info ul {
	font-size: 15px;
	list-style: none;
	padding: 0;
}

.portfolio-details .portfolio-info ul li + li {
	margin-top: 10px;
}

.portfolio-details .portfolio-description {
	margin-left: 30px;
	padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 6px;
}

.portfolio-details .portfolio-description p {
	padding: 0;
}

.portfolio-title {
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 40px;
	text-align: center;
}

.portfolio-item > .img-fluid {
	height: 270.27px;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/

.about-us .content h2 {
	font-size: 42px;
	font-weight: 700;
	line-height: 60px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.about-us .content h3 {
	font-size: 24px;
	font-weight: 500;
	line-height: 32px;
}

.about-us .content p {
	margin-bottom: 1rem;
	margin-top: 41px;
}

.about-us .content ul {
	list-style: none;
	padding: 0;
}

.about-us .content ul li {
	padding: 10px 0 0 28px;
	position: relative;
}

.about-us .content ul li span {
	color: #5c6aca;
	font-weight: 700;
}

.about-us .content ul i {
	color: #5c6aca;
	font-size: 20px;
	left: 0;
	position: absolute;
	top: 7px;
}

.about-us .content p:last-child {
	margin-bottom: 0;
}

.triangle {
	height: auto; /* 等辺三角形の高さ */
	margin: 0px auto 50px;
	width: 420px;
}

.triangle img {
	height: auto;
	width: 100%;
}

.about-item {
	display: flex;
	justify-content: space-between;
}

.about-item p {
	font-size: 18px;
	line-height: 1.8;
	width: 42%;
}

.about-img {
	width: 50%;
}

.about-img img {
	width: 100%;
}

.skills .progress {
	background: none;
	border-radius: 0;
	display: block;
	height: 60px;
}

.skills .progress .skill {
	color: #111;
	display: block;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	margin: 0 0 6px 0;
	padding: 0;
	text-transform: uppercase;
}

.skills .progress .skill .val {
	float: right;
	font-style: normal;
}

.skills .progress-bar-wrap {
	background: #e7e7e7;
}

.skills .progress-bar {
	background-color: #5c6aca;
	height: 10px;
	transition: 0.9s;
	width: 1px;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

.features .icon-box {
	align-items: center;
	background: #fff;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	display: flex;
	padding: 20px;
	transition: ease-in-out 0.3s;
}

.features .icon-box i {
	font-size: 32px;
	line-height: 1;
	padding-right: 10px;
}

.features .icon-box h3 {
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	margin: 0;
	padding: 0;
}

.features .icon-box h3 a {
	color: #111;
	transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
	color: #5c6aca;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing .box {
	background: #fff;
	border-radius: 5px;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
	overflow: hidden;
	padding: 20px;
	position: relative;
	text-align: center;
}

.pricing h3 {
	background: #f8f8f8;
	color: #847872;
	font-size: 16px;
	font-weight: 400;
	font-weight: 600;
	margin: -20px -20px 20px -20px;
	padding: 20px 15px;
}

.pricing h4 {
	color: #5c6aca;
	font-family: "Poppins", sans-serif;
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 20px;
}

.pricing h4 sup {
	font-size: 20px;
	left: -3px;
	top: -15px;
}

.pricing h4 span {
	color: #bababa;
	font-size: 16px;
	font-weight: 300;
}

.pricing ul {
	color: #4d4643;
	font-size: 14px;
	line-height: 20px;
	list-style: none;
	padding: 0;
	text-align: center;
}

.pricing ul li {
	padding-bottom: 16px;
}

.pricing ul i {
	color: #5c6aca;
	font-size: 18px;
	padding-right: 4px;
}

.pricing ul .na {
	color: #ccc;
	text-decoration: line-through;
}

.pricing .btn-wrap {
	background: #f8f8f8;
	margin: 20px -20px -20px -20px;
	padding: 20px 15px;
	text-align: center;
}

.pricing .btn-buy {
	border-radius: 4px;
	color: #fff;
	display: inline-block;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-weight: 400;
	font-weight: 600;
	padding: 8px 35px 10px 35px;
	transition: none;
	transition: 0.3s;
}

.pricing .btn-buy:hover {
	background: #828dd7;
}

.pricing .basic-light h3 {
	background: #007bff;
	color: #fff;
}

.pricing .basic h3 {
	background: #5c6aca;
	color: #fff;
}

.pricing .custom h3 {
	background: #17a2b8;
	color: #fff;
}

.pricing .btn-wrap .basic-light {
	background: #007bff;
}

.pricing .btn-wrap .basic {
	background: #5c6aca;
}

.pricing .btn-wrap .custom {
	background: #17a2b8;
}

.pricing .recommend {
	background: #dc3545;
	color: #fff;
	font-size: 14px;
	padding: 1px 0 3px 0;
	position: absolute;
	right: -68px;
	top: 18px;
	transform: rotate(45deg);
	width: 200px;
	z-index: 1;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

.faq .faq-list {
	padding: 0 100px;
}

.faq .faq-list ul {
	list-style: none;
	padding: 0;
}

.faq .faq-list li + li {
	margin-top: 15px;
}

.faq .faq-list li {
	background: #fff;
	border-radius: 4px;
	padding: 20px;
	position: relative;
}

.faq .faq-list a {
	cursor: pointer;
	display: block;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	outline: none;
	padding: 0 30px;
	position: relative;
}

.faq .faq-list .icon-help {
	color: lightgray;
	font-size: 24px;
	left: 20px;
	position: absolute;
	right: 0;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
	font-size: 24px;
	position: absolute;
	right: 0;
	top: 0;
}

.faq .faq-list p {
	margin-bottom: 0;
	padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
	display: none;
}

.faq .faq-list a.collapsed {
	color: #343a40;
	transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
	color: #5c6aca;
}

.faq .faq-list a.collapsed .icon-show {
	display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
	display: none;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
	overflow: hidden;
}

.testimonials .testimonial-item {
	background: #fff;
	box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
	box-sizing: content-box;
	padding: 40px;
	position: relative;
}

.testimonials .testimonial-item .testimonial-img {
	border: 6px solid #fff;
	border-radius: 50px;
	float: left;
	margin: 0 10px 0 0;
	width: 90px;
}

.testimonials .testimonial-item h3 {
	color: #111;
	font-size: 18px;
	font-weight: bold;
	margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
	color: #999;
	font-size: 14px;
	margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
	color: #dddddd;
	font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
	display: inline-block;
	position: relative;
	right: -5px;
	top: 10px;
}

.testimonials .testimonial-item p {
	font-style: italic;
	margin: 15px 0 0 0;
	padding: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info-wrap {
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	padding: 30px;
}

.contact .info {
	background: #fff;
}

.contact .info i {
	align-items: center;
	border: 1px solid #5c6aca;
	border-radius: 50px;
	color: #5c6aca;
	display: flex;
	float: left;
	font-size: 20px;
	height: 44px;
	justify-content: center;
	transition: all 0.3s;
	width: 44px;
}

.contact .info h4 {
	color: #111;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 5px;
	padding: 0 0 0 60px;
}

.contact .info p {
	color: #444444;
	font-size: 14px;
	margin-bottom: 0;
	padding: 0 0 0 60px;
}

.contact .info:hover i {
	background: #5c6aca;
	color: #fff;
}

.contact .php-email-form {
	background: #fff;
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
	padding: 30px;
	width: 100%;
}

.contact .php-email-form .form-group {
	padding-bottom: 8px;
}

.contact .php-email-form .error-message {
	background: #ed3c0d;
	color: #fff;
	display: none;
	font-weight: 600;
	padding: 15px;
	text-align: left;
}

.contact .php-email-form .error-message br + br {
	margin-top: 25px;
}

.contact .php-email-form .sent-message {
	background: #18d26e;
	color: #fff;
	display: none;
	font-weight: 600;
	padding: 15px;
	text-align: center;
}

.contact .php-email-form .loading {
	background: #fff;
	display: none;
	padding: 15px;
	text-align: center;
}

.contact .php-email-form .loading:before {
	-webkit-animation: animate-loading 1s linear infinite;
	        animation: animate-loading 1s linear infinite;
	border: 3px solid #18d26e;
	border-radius: 50%;
	border-top-color: #eee;
	content: "";
	display: inline-block;
	height: 24px;
	margin: 0 10px -6px 0;
	width: 24px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
	border-radius: 0;
	border-radius: 4px;
	box-shadow: none;
	font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
	border-color: #5c6aca;
}

.contact .php-email-form input {
	height: 44px;
}

.contact .php-email-form textarea {
	padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
	background: #5c6aca;
	border: 0;
	border-radius: 4px;
	color: #fff;
	padding: 10px 24px;
	transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
	background: #828dd7;
}

input[type=text],
input[type=email],
input[type=submit],
select,
textarea {
	background: #ffffff;
	box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
	color: inherit;
	font-family: inherit;
	font-size: 16px;
	resize: none;
}

input[type=text],
input[type=email],
textarea {
	border: 1px solid #5c6aca;
	border-radius: 6px;
	margin-top: 0;
	padding: 12px 16px;
	width: 100%;
}

.p-contact__form-submit .p-contact__form-link {
	background: #5c6aca;
	border: none;
	color: #ffffff;
	display: block;
	font-size: 18px;
	height: 72px;
	padding: 29px 0;
	position: relative;
	text-align: center;
	width: 280px;
}

.p-contact__form-submit .p-contact__form-link::before {
	background: url(../img/top/arrow-right-1.svg) no-repeat center center/contain;
	color: #fff;
	content: "";
	height: 13px;
	position: absolute;
	right: 12px;
	top: 49%;
	transform: translateY(-50%);
	width: 17px;
}

.p-contact__form-submit .p-contact__form-link:hover {
	transform: translateY(10px);
	transition: transform 0.3s;
}

.p-contact__form-submit .p-contact__form-link:hover::after {
	display: none;
}

.p-contact__form {
	margin-top: 80px;
}

.p-contact__form-title {
	color: #111111;
	font-size: 28px;
	font-weight: 700;
	line-height: 40px; /* 142.857% */
	margin-bottom: 28px;
	text-align: center;
}

.p-contact__form-text {
	color: #111111;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	text-align: center;
}

.p-contact__form-label-text {
	color: #111111;
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
}

.p-contact__form-item {
	margin-top: 0;
}

.p-contact__form-controls {
	margin-top: 82px;
}

.p-contact__form-control {
	display: flex;
	margin-top: 40px;
}

.p-contact__form-radio-items {
	width: 100%;
}

.p-contact__form-radio-item {
	display: block;
}

.p-contact__label--required::after {
	background: #5c6aca;
	border-radius: 2px;
	color: #ffffff;
	content: "必須";
	flex-shrink: 0;
	font-size: 11px;
	height: 19px;
	margin-left: 2px;
	padding: 2px 6px;
	width: 34px;
}

.p-contact__form-control dd {
	margin-left: auto;
	margin-right: 0;
	width: 81.22%;
}

.p-contact__form-control .p-contact__form-radio-item {
	margin-left: auto;
	margin-right: 0;
	width: 94.5%;
}

.p-contact__form-control .p-contact__form-radio-item:first-child {
	margin-top: 6px;
}

.p-contact__form-control dt {
	margin-top: 13px;
	width: 32.7%;
}

.p-contact__form-first-label {
	margin-top: 0px !important;
}

.p-contact__form-radio-item {
	margin-bottom: 24px;
}

.p-contact__form-radio-item:last-child {
	margin-bottom: 0;
}

.p-contact__form-radio-item input[type=radio] {
	display: none;
}

.p-contact__form-radio-item span {
	display: inline-block;
	padding-left: 34px;
	position: relative;
}

.p-contact__form-radio-item span::before {
	background: #ffffff;
	border: 1px solid #5c6aca;
	border-radius: 50%;
	content: "";
	height: 24px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
}

.p-contact__form-radio-item span::after {
	background: #5c6aca;
	border-radius: 50%;
	content: "";
	display: none;
	height: 12px;
	left: 6px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
}

.p-contact__form-radio-item [type=radio]:checked + span::after {
	display: block;
}

.p-form-textarea {
	height: 240px;
}

.p-contact__form-privacy-text {
	color: #111111;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	margin-bottom: 40px;
	margin-top: 39px;
}

.p-contact__form-submit {
	margin-left: 28.779%;
	margin-top: 0;
}

.p-contact__form-link {
	padding: 23px 23px 29px 29px !important;
}

.p-access p-access-contact-form-page {
	margin-top: 170px;
}

.pricing-title {
	font-weight: bold;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/

.blog {
	padding: 40px 0 20px 0;
}

.blog .entry {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	margin-bottom: 60px;
	padding: 30px;
}

.blog .entry .entry-img {
	display: block;
	max-height: 440px;
	overflow: hidden;
	text-align: center;
}

.blog .entry .entry-title {
	font-size: 28px;
	font-weight: bold;
	margin: 0 0 20px 0;
	padding: 0;
}

.blog .entry .entry-title a {
	color: #111;
	transition: 0.3s;
}

.blog .entry .entry-title a:hover {
	color: #5c6aca;
}

.blog .entry .entry-meta {
	color: #777777;
	margin-bottom: 15px;
}

.blog .entry .entry-meta ul {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.blog .entry .entry-meta ul li + li {
	padding-left: 20px;
}

.blog .entry .entry-meta i {
	font-size: 16px;
	line-height: 0;
	margin-right: 8px;
}

.blog .entry .entry-meta a {
	color: #847872;
	display: inline-block;
	font-size: 14px;
	line-height: 1;
}

.blog .entry .entry-content p {
	line-height: 24px;
}

.blog .entry .entry-content .read-more {
	-moz-text-align-last: right;
	text-align-last: right;
}

.blog .entry .entry-content .read-more a {
	background: #5c6aca;
	border-radius: 4px;
	color: #fff;
	display: inline-block;
	font-size: 14px;
	padding: 6px 20px;
	transition: 0.3s;
}

.blog .entry .entry-content .read-more a:hover {
	background: #6f7cd0;
}

.blog .entry .entry-content h3 {
	font-size: 22px;
	font-weight: bold;
	margin-top: 30px;
}

.blog .entry .entry-content blockquote {
	background-color: #fafafa;
	margin: 20px 0;
	overflow: hidden;
	padding: 60px;
	position: relative;
	text-align: center;
}

.blog .entry .entry-content blockquote p {
	color: #4d4643;
	font-size: 22px;
	font-style: italic;
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: 0;
}

.blog .entry .entry-content blockquote::after {
	background-color: #111;
	bottom: 0;
	content: "";
	left: 0;
	margin-bottom: 20px;
	margin-top: 20px;
	position: absolute;
	top: 0;
	width: 3px;
}

.blog .entry .entry-footer {
	border-top: 1px solid #e6e6e6;
	padding-top: 10px;
}

.blog .entry .entry-footer i {
	color: #5e5e5e;
	display: inline;
}

.blog .entry .entry-footer a {
	color: #1e1e1e;
	transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
	color: #5c6aca;
}

.blog .entry .entry-footer .cats {
	display: inline;
	font-size: 14px;
	list-style: none;
	padding: 0 20px 0 0;
}

.blog .entry .entry-footer .cats li {
	display: inline-block;
}

.blog .entry .entry-footer .tags {
	display: inline;
	font-size: 14px;
	list-style: none;
	padding: 0;
}

.blog .entry .entry-footer .tags li {
	display: inline-block;
}

.blog .entry .entry-footer .tags li + li::before {
	color: #6c757d;
	content: ",";
	padding-right: 6px;
}

.blog .entry .entry-footer .share {
	font-size: 16px;
}

.blog .entry .entry-footer .share i {
	padding-left: 5px;
}

.blog .entry-single {
	margin-bottom: 30px;
}

.blog .blog-author {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
	padding: 20px;
}

.blog .blog-author img {
	margin-right: 20px;
	width: 120px;
}

.blog .blog-author h4 {
	color: #111;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 0px;
	padding: 0;
}

.blog .blog-author .social-links {
	margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
	color: rgba(17, 17, 17, 0.5);
	margin-right: 5px;
}

.blog .blog-author p {
	color: #bfb9b6;
	font-style: italic;
}

.blog .blog-comments {
	margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
	font-weight: bold;
}

.blog .blog-comments .comment {
	margin-top: 30px;
	position: relative;
}

.blog .blog-comments .comment .comment-img {
	margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
	width: 60px;
}

.blog .blog-comments .comment h5 {
	font-size: 16px;
	margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
	color: #4d4643;
	font-weight: bold;
	transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
	color: #5c6aca;
}

.blog .blog-comments .comment h5 .reply {
	color: #111;
	padding-left: 10px;
}

.blog .blog-comments .comment h5 .reply i {
	font-size: 20px;
}

.blog .blog-comments .comment time {
	color: #2b2b2b;
	display: block;
	font-size: 14px;
	margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
	padding-left: 40px;
}

.blog .blog-comments .reply-form {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	margin-top: 30px;
	padding: 30px;
}

.blog .blog-comments .reply-form h4 {
	font-size: 22px;
	font-weight: bold;
}

.blog .blog-comments .reply-form p {
	font-size: 14px;
}

.blog .blog-comments .reply-form input {
	border-radius: 4px;
	font-size: 14px;
	padding: 10px 10px;
}

.blog .blog-comments .reply-form input:focus {
	border-color: #a9b0e3;
	box-shadow: none;
}

.blog .blog-comments .reply-form textarea {
	border-radius: 4px;
	font-size: 14px;
	padding: 10px 10px;
}

.blog .blog-comments .reply-form textarea:focus {
	border-color: #a9b0e3;
	box-shadow: none;
}

.blog .blog-comments .reply-form .form-group {
	margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
	background-color: #111;
	border: 0;
	border-radius: 4px;
	padding: 10px 20px;
}

.blog .blog-comments .reply-form .btn-primary:hover {
	background-color: #1e1e1e;
}

.blog .blog-pagination {
	color: #444444;
}

.blog .blog-pagination ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.blog .blog-pagination li {
	margin: 0 5px;
	transition: 0.3s;
}

.blog .blog-pagination li a {
	align-items: center;
	color: #111;
	display: flex;
	justify-content: center;
	padding: 7px 16px;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
	background: #5c6aca;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
	color: #fff;
}

.blog .sidebar {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	margin: 0 0 60px 20px;
	margin-top: 78px;
	padding: 30px 30px 0 30px;
}

.blog .sidebar .sidebar-title {
	color: #111;
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 15px 0;
	padding: 0 0 0 0;
	position: relative;
}

.blog .sidebar .sidebar-item {
	margin-bottom: 30px;
}

.blog .sidebar .search-form form {
	background: #fff;
	border: 1px solid #ddd;
	padding: 3px 10px;
	position: relative;
}

.blog .sidebar .search-form form input[type=text] {
	border: 0;
	border-radius: 4px;
	padding: 4px;
	width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
	background: none;
	background: #5c6aca;
	border: 0;
	border-radius: 0 4px 4px 0;
	bottom: 0;
	color: #fff;
	font-size: 16px;
	line-height: 0;
	margin: -1px;
	padding: 0 15px;
	position: absolute;
	right: 0;
	top: 0;
	transition: 0.3s;
}

.blog .sidebar .search-form form button i {
	line-height: 0;
}

.blog .sidebar .search-form form button:hover {
	background: #6b78cf;
}

.blog .sidebar .categories ul {
	list-style: none;
	padding: 0;
}

.blog .sidebar .categories ul li + li {
	padding-top: 10px;
}

.blog .sidebar .categories ul a {
	color: #111;
	transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
	color: #5c6aca;
}

.blog .sidebar .categories ul a span {
	color: #b4aca8;
	font-size: 14px;
	padding-left: 5px;
}

.blog .sidebar .recent-posts .post-item + .post-item {
	margin-top: 15px;
}

.blog .sidebar .recent-posts img {
	float: left;
	margin-bottom: 20px;
	width: 100%;
}

.blog .sidebar .recent-posts h4 {
	font-size: 15px;
	font-weight: bold;
	margin-left: 95px;
}

.blog .sidebar .recent-posts h4 a {
	color: #111;
	transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
	color: #5c6aca;
}

.blog .sidebar .recent-posts time {
	color: #b4aca8;
	display: block;
	font-size: 14px;
	font-style: italic;
	margin-left: 95px;
}

.blog .sidebar .tags {
	margin-bottom: -10px;
}

.blog .sidebar .tags ul {
	list-style: none;
	padding: 0;
}

.blog .sidebar .tags ul li {
	display: inline-block;
}

.blog .sidebar .tags ul a {
	border: 1px solid #c4c4c4;
	color: #515151;
	display: inline-block;
	font-size: 14px;
	margin: 0 6px 8px 0;
	padding: 6px 14px;
	transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
	background: #5c6aca;
	border: 1px solid #5c6aca;
	color: #fff;
}

.blog .sidebar .tags ul a span {
	color: #aaaaaa;
	font-size: 14px;
	padding-left: 5px;
}

.blog-title {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 30px;
}

.blog-title span {
	font-size: 24px;
}

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

#footer {
	background: #111;
	color: #fff;
	font-size: 14px;
}

#footer .footer-top {
	background: #1e1e1e;
	padding: 60px 0 30px 0;
}

#footer .footer-top .footer-contact {
	margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
	color: #fff;
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 1;
	margin: 0 0 10px 0;
	padding: 2px 0 2px 0;
	text-transform: uppercase;
}

#footer .footer-top .footer-contact p {
	color: rgba(255, 255, 255, 0.7);
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
}

#footer .footer-top h4 {
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	padding-bottom: 12px;
	position: relative;
}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#footer .footer-top .footer-links ul i {
	color: #6f7cd0;
	font-size: 18px;
	line-height: 1;
	padding-right: 2px;
}

#footer .footer-top .footer-links ul li {
	align-items: center;
	display: flex;
	padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}

#footer .footer-top .footer-links ul a {
	color: rgba(255, 255, 255, 0.6);
	display: inline-block;
	line-height: 1;
	transition: 0.3s;
}

#footer .footer-top .footer-links ul a:hover {
	color: #fff;
	text-decoration: none;
}

#footer .footer-newsletter {
	color: rgba(255, 255, 255, 0.7);
	font-size: 15px;
}

#footer .footer-newsletter h4 {
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	padding-bottom: 12px;
	position: relative;
}

#footer .footer-newsletter form {
	background: #fff;
	border-radius: 4px 0 0 4px;
	margin-top: 30px;
	padding: 6px 10px;
	position: relative;
	text-align: left;
}

#footer .footer-newsletter form input[type=email] {
	border: 0;
	padding: 4px 8px;
	width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
	background: none;
	background: #5c6aca;
	border: 0;
	border-radius: 0 4px 4px 0;
	bottom: 0;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	color: #fff;
	font-size: 16px;
	padding: 0 20px;
	position: absolute;
	right: -4px;
	top: 0;
	transition: 0.3s;
}

#footer .footer-newsletter form input[type=submit]:hover {
	background: #828dd7;
}

#footer .credits {
	color: #fff;
	font-size: 13px;
	padding-top: 5px;
}

#footer .social-links a {
	background: rgba(255, 255, 255, 0.08);
	border-radius: 4px;
	color: #fff;
	display: inline-block;
	font-size: 18px;
	height: 36px;
	line-height: 1;
	margin-right: 4px;
	padding: 8px 0;
	text-align: center;
	transition: 0.3s;
	width: 36px;
}

#footer .social-links a:hover {
	background: #5c6aca;
	color: #fff;
	text-decoration: none;
}

@media (min-width: 1024px) {

#hero .carousel-content {
	width: 48%;
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
	width: 5%;
}

}

@media (max-width: 1366px) {

.navbar .dropdown .dropdown ul {
	left: -90%;
}

.navbar .dropdown .dropdown:hover > ul {
	left: -100%;
}

}

@media (max-width: 1200px) {

.portfolio .portfolio-item .portfolio-info .details-link span {
	font-size: 14px !important;
}

.portfolio-item > .img-fluid {
	height: 231.28px;
}

.faq .faq-list {
	padding: 0;
}

}

@media (max-width: 1023px) {

#hero .carousel-content {
	width: 50%;
}

}

@media (max-width: 992px) {

#hero .carousel-container {
	top: 70px;
}

#hero .carousel-content {
	width: 43%;
}

#hero .carousel-content h2 {
	font-size: 18px;
	margin-bottom: 15px;
}

#hero .carousel-content p {
	font-size: 13px;
}

section {
	padding: 48px 0;
}

.portfolio-title {
	font-size: 24px;
}

.portfolio-item > .img-fluid {
	height: 218.28px;
}

.about-us .content h2 {
	font-size: 24px;
	line-height: 42px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.about-us .content h3 {
	font-size: 16px;
	line-height: 26px;
}

.triangle {
	height: auto; /* 等辺三角形の高さ */
	margin: 26px auto 0px;
	width: 420px;
}

}

@media (max-width: 991px) {

.mobile-nav-toggle {
	display: block;
}

.navbar ul {
	display: none;
}

.navbar-mobile {
	background: rgba(0, 0, 0, 0.9);
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: fixed;
	right: 0;
	top: 0;
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	right: 15px;
	top: 15px;
}

.navbar-mobile ul {
	background-color: #fff;
	bottom: 15px;
	display: block;
	left: 15px;
	overflow-y: auto;
	padding: 10px 0;
	position: absolute;
	right: 15px;
	top: 55px;
	transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	color: #111;
	font-size: 15px;
	padding: 10px 20px;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
	color: #5c6aca;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
	margin: 15px;
}

.navbar-mobile .dropdown ul {
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	display: none;
	margin: 10px 20px;
	opacity: 1;
	padding: 10px 0;
	position: static;
	visibility: visible;
	z-index: 99;
}

.navbar-mobile .dropdown ul li {
	min-width: 200px;
}

.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
	font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
	color: #5c6aca;
}

.navbar-mobile .dropdown > .dropdown-active {
	display: block;
}

.section-title h2 {
	font-size: 28px;
}

.breadcrumbs {
	margin-top: 58px;
}

.breadcrumbs .d-flex {
	display: block !important;
}

.breadcrumbs ol {
	display: block;
}

.breadcrumbs ol li {
	display: inline-block;
}

.about-item p {
	font-size: 14px;
}

.box-basic-light {
	margin-top: 24px !important;
}

.box-basic {
	margin-top: 48px !important;
}

.box-custom {
	margin-top: 48px !important;
}

.blog .sidebar {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	margin: 0;
	margin-top: 78px;
	padding: 30px 100px 0 100px;
}

.blog .sidebar .sidebar-title {
	font-size: 28px;
}

}

@media screen and (max-width: 768px) {

[data-aos-delay] {
	transition-delay: 0 !important;
}

}

@media (max-width: 768px) {

.header-social-links {
	border-left: 0;
	padding: 0 15px 0 0;
}

.services .iconbox-pink {
	padding: 70px 32px 80px 20px;
}

.portfolio-item > .img-fluid {
	height: 335.23px;
}

.p-contact__form-text {
	-moz-text-align-last: left;
	text-align-last: left;
}

.p-contact__form-label-text {
	font-size: 14px;
}

}

@media (max-width: 767px) {

#hero .sm-disappear {
	display: none;
}

#hero .carousel-content {
	padding: 20px 10px 10px;
	width: 67%;
}

#hero .carousel-content h2 {
	font-size: 14px;
	margin-bottom: 15px;
}

#hero .carousel-content p {
	font-size: 12px;
}

#hero .carousel-item-bg-1 {
	background: url(../img/slide/main-4.jpg) no-repeat right center/cover !important;
}

#hero .carousel-item-bg-2 {
	background: url(../img/slide/main-5.jpg) no-repeat center center/cover !important;
}

#hero .carousel-item-bg-3 {
	background: url(../img/slide/main-6.jpg) no-repeat right center/cover !important;
}

.section-title p {
	width: 90%;
}

.about-item {
	flex-direction: column;
}

.about-item p {
	margin-top: 30px;
	width: 100%;
}

.cospa .about-item {
	flex-direction: column-reverse;
}

.about-img {
	width: 100%;
}

.blog .sidebar {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	margin: 0;
	margin-top: 40px;
	padding: 28px 28px 0px 28px;
}

.blog-title {
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 30px;
}

.blog-title span {
	font-size: 18px;
}

.blog .sidebar .sidebar-title {
	font-size: 24px;
}

}

@media (max-width: 576px) {

.portfolio-item > .img-fluid {
	height: auto;
}

.triangle {
	height: auto; /* 等辺三角形の高さ */
	margin: 26px auto 0px;
	width: 100%;
}

input[type=text],
input[type=email],
textarea {
	margin-top: 9px;
}

.p-contact__form-submit .p-contact__form-link {
	height: 72px;
	padding: 29px 0;
	width: 280px;
}

.p-contact__form {
	margin-top: 51px;
}

.p-contact__form-title {
	font-size: 20px;
	margin-bottom: 20px;
}

.p-contact__form-text {
	font-size: 14px;
	line-height: 24px; /* 171.429% */
}

.p-contact__form-item {
	margin-top: -30px;
}

.p-contact__form-controls {
	margin-top: 93px;
}

.p-contact__form-control {
	display: block;
	margin-top: 39px;
}

.p-contact__form-control dd {
	width: 100%;
}

.p-contact__form-control .p-contact__form-radio-item {
	width: 100%;
}

.p-contact__form-control .p-contact__form-radio-item:first-child {
	margin-top: 25px;
}

.p-contact__form-control dt {
	width: 100%;
}

.p-contact__form-first-label {
	margin-top: 17px !important;
}

.p-form-textarea {
	height: 198px;
}

.p-contact__form-privacy-text {
	font-style: normal;
	font-weight: 500;
	line-height: 24px; /* 171.429% */
	margin-bottom: 38px;
	margin-top: 18px;
}

.p-contact__form-submit {
	display: flex;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
}

.p-access p-access-contact-form-page {
	margin-top: 170px;
}

}

@media (max-height: 500px) {

#hero {
	height: 120vh;
}

}

@-webkit-keyframes animate-loading {

0% {
	transform: rotate(0deg);
}

100% {
	transform: rotate(360deg);
}

}

@keyframes animate-loading {

0% {
	transform: rotate(0deg);
}

100% {
	transform: rotate(360deg);
}

}

