@charset "UTF-8";

/*
	Theme Name: Tyonanpaint Theme
	Author: none
	Version: none
*/

/*================================================================================
base
================================================================================*/

/* global ------------------------------------------------*/

html, body {
    overflow-x: hidden;
}

body {
    color: #3e3a39;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 2px;
    scroll-behavior: smooth;
}

a:hover {
    transition: ease .2s;
    opacity: 0.6;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.7;
    font-weight: 500;
}

p {
    line-height: 2;
    font-weight: 400;
}

/*================================================================================
common
================================================================================*/

/* header ------------------------------------------------*/

.header {
    padding: 40px 0;
    width: 100%;
    position: fixed;
    top: -150px;
    right: 0;
    z-index: 980;
    background-color: rgba(255, 255, 255, 0.7);
    transition: top .5s;
}

.header.fixed {
    position: fixed;
    top: 0;
    right: 0;
}

.childpage .header {
    top: 0 !important;
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
}

.header-logo {
    max-width: 210px;
}

.header-right {
    margin: 0 0 0 auto;
    display: flex;
    align-items: center;
}

.header-nav ul {
    display: flex;
}

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

.header-nav ul li a {
    font-size: 16px;
}

.header-contact_button {
    display: block;
    background-color: #ff9c3b;
    font-size: 17px;
    color: #ffffff;
    text-align: center;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 0 0 0 20px;
}

@media (max-width: 1200px) {

    /* header ------------------------------------------------*/
    
    .header {
        padding: 20px 0;
    }
    
    .header-logo {
        max-width: 160px;
    }
    
    .header-nav ul li {
    	margin: 0 15px;
    }
    
    .header-nav ul li a {
        font-size: 15px;
    }
    
    .header-contact_button {
        font-size: 15px;
        padding: 10px 15px;
        border-radius: 2px;
        margin: 0 0 0 15px;
    }
}

/* headersp ------------------------------------------------*/

.headersp {
    background-color: rgba(255,255,255,0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 980;
    width: 100%;
    height: 90px;
    padding: 10px 15px;
 }
 
 .headersp-logo {
    max-width: 150px;
}
 
 .headersp-toggle {
	width: 22px;
	height: 22px;
    background-image: url(assets/img/common/headersp-toggle-open.webp);
    background-repeat: no-repeat;
    background-size: 22px 22px;
    cursor: pointer;
    position: fixed;
    top: 30px;
    right: 15px;
    z-index: 990;
    font-size: 0;
}

 .headersp-toggle.close {
    background-image: url(assets/img/common/headersp-toggle-close.webp);
}

.headersp-overlay_logo {
    max-width: 220px;
    margin: 0 auto 20px auto;
}

.headersp-overlay {
	opacity: 0;
	visibility: hidden;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
    background-color: #8bc34a;
	z-index: 970;
	padding: 100px 20px 20px 20px;
	overflow-y: auto;
}

.headersp-overlay.open {
	opacity: 1;
	visibility: visible;
}

.headersp-overlay_nav {
	margin: 0 0 20px 0;
}

.headersp-overlay_nav ul li a {
	font-size: 15px;
	color: #ffffff;
    text-align: center;
	padding: 15px 0;
	display: block;
}

.headersp-overlay_action {
    max-width: 280px;
    margin: 0 auto 20px auto;
}

/* footer ------------------------------------------------*/

.footer {
    background-color: #8bc34a;
    padding: 150px 0 200px 0;
}

.footer-logo {
    max-width: 330px;
	margin: 0 0 30px 0;
}

.footer-address {
    margin: 0 0 40px 0;
}

h4.footer-address_heading {
	font-size: 18px;
	color: #ffffff;
	margin: 0 0 15px 0;
}

.footer-address_text {
	font-size: 16px;
	color: #ffffff;
}

.footer-bottombar_privacy {
	font-size: 15px;
	color: #ffffff;
	margin: 0 0 10px 0;
}

.footer-bottombar_copyright {
	font-size: 15px;
	color: #ffffff;
}

.footer-menu {
    max-width: 400px;
    margin: 50px 0 30px 0;
}

.footer-menu ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-menu ul li {
    width: 50%;
	font-size: 15px;
	color: #ffffff;
	text-align: center;
	margin: 0 0 40px 0;
} 

.footer-contact {
    max-width: 400px;
}

@media (max-width: 991px) {

    .footer {
        padding: 70px 0;
    }
    
    .footer-logo {
        max-width: 220px;
    	margin: 0 auto 30px auto;
    }
    
    .footer-address {
        margin: 0 0 30px 0;
    }
    
    h4.footer-address_heading {
    	font-size: 18px;
    	margin: 0 0 10px 0;
    	text-align: center;
    }
    
    .footer-address_text {
    	font-size: 15px;
    	text-align: center;
    }
    
    .footer-bottombar_privacy {
    	font-size: 15px;
    	text-align: center;
    }
    
    .footer-bottombar_copyright {
    	font-size: 13px;
    	text-align: center;
    }
    
    .footer-menu {
        max-width: 100%;
        margin: 30px 0;
    }
    
    .footer-menu ul {
        display: flex;
        flex-wrap: wrap;
    }
    
    .footer-menu ul li {
        width: 100%;
    	margin: 0 0 20px 0;
    } 
    
    .footer-contact {
        max-width: 280px;
        margin: 0 auto 50px auto;
    }
}

/* common ------------------------------------------------*/

.common-style_heading {
	font-size: 50px;
	color: #222222;
    text-align: center;
	margin: 0 0 50px 0;
	padding: 0 0 10px 0;
    position: relative;
    font-family: "Jost", sans-serif;
}

.common-style_heading::after {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background-color: #222222;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateY(0) translateX(-50%);
}

.common-style_heading .ja {
	font-size: 16px;
    display: block;
}

@media (max-width: 991px) {

    .common-style_heading {
    	font-size: 40px;
    	margin: 0 0 40px 0;
    	padding: 0 0 5px 0;
    }
    
    .common-style_heading .ja {
    	font-size: 14px;
    }
}

/* contact button ------------------------------------------------*/

.common-style_button {
    background: #ff9c3b;
    color: #ffffff;
    overflow: hidden;
    position: relative;
    transition-duration: .4s;
    z-index: 2;
    border: 1px solid #ff9c3b;
    border-radius: 60px;
    display: flex;
    padding: 25px 20px;
    font-size: 18px;
    max-width: 400px;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
}

.common-style_button::after {
    content: "";
    background: #ffffff;
    border-radius: 50%;
    display: block;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 100%;
    height: 0;
    z-index: -1;
    transform: translateY(-50%) scale(0.1);
    transition: opacity .5s, transform 0s;
    transition-delay: 0s, .4s;
}

.common-style_button::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background-image: url("assets/img/common/common-style_button-icon.webp");
    background-size: 18px 18px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%) translateX(0);
}

.common-style_button:hover {
    color: #ff9c3b;
    opacity: 1;
}

.common-style_button:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    transition-delay: 0s;
    transition: opacity .8s, transform .6s ease-in-out;
}

.common-style_button:hover::before {
    background-image: url("assets/img/common/common-style_button-hover.webp");
}

@media (max-width: 991px) {

    .common-style_button {
        padding: 15px;
        font-size: 15px;
        max-width: 280px;
    }
    
    .common-style_button::before {
        width: 13px;
        height: 13px;
        background-size: 13px 13px;
        right: 10px;
    }
}

/* fixedmenu ------------------------------------------------*/

.slide_anime_nav {
    position: fixed;
    z-index: 99;
    top: 50%;
    transform: rotate(0) translateY(-50%);
	transition: all 0.3s;
	opacity: 0;
}

.slide_anime_nav.active {
	opacity: 1;
}

.slide_anime_nav > div {
    transition: transform 0.3s ease 0s;
    transform: translateX(10px);
    width: 75px;
    height: 141px;
    background-size: 75px 141px;
}

.slide_anime_nav div a {
    display: block;
    width: 75px;
    height: 141px;
}

.slide_anime_nav > div.first {
    background-image: url("assets/img/common/slide_anime_nav-back-1.webp");
}

.slide_anime_nav > div.second {
    background-image: url("assets/img/common/slide_anime_nav-back-2.webp");
}

.fixed_right {
    left: calc(100% - 65px);
}

.fixed_right > div:hover {
    transform: translateX(5px);
}

@media (max-width: 991px) {

    .slide_anime_nav {
        top: auto;
        bottom: 0;
        transform: rotate(0) translateY(0);
        width: 100%;
        display: flex;
    }
    
    .slide_anime_nav > div {
        transform: translateX(0);
        padding: 0;
    	margin: 0;
    	border-top-left-radius: 0;
    	border-bottom-left-radius: 0;
    	text-align: center;
    	width: 50%;
    	height: 50px;
    	background-size: 100px 50px;
    	background-position: center;
    	background-repeat: no-repeat;
    	border-top-right-radius: 15px;
    	border-top-left-radius: 15px;
    }
    
	.slide_anime_nav > div.first {
	    background-image: url("assets/img/common/slide_anime_nav-back-1-sp.webp");
	    background-color: #ff9d3c;
	}
	
	.slide_anime_nav > div.second {
	    background-image: url("assets/img/common/slide_anime_nav-back-2-sp.webp");
	    background-color: #a2cf6f;
	}

	.slide_anime_nav div a {
	    width: 100%;
	    height: 100%;
	}

    .fixed_right {
        left: 0;
    }
    
    .fixed_right > div:hover {
        transform: translateX(0);
    }
}

/* fadein ------------------------------------------------*/

.fadein {
	opacity : 0;
	transform : translate(0, 100px);
	transition : all 800ms;
}

.fadein.scroll {
	opacity : 1;
	transform : translate(0, 0);
}

.appear {
    animation: appear 1s ease normal;
}

@keyframes appear {

    from {
	    opacity: 0;
	    transform : translate(0, 50px);
	}
	to {
	    opacity: 1;
	    transform : translate(0, 0);
	}
}

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

/* hero ------------------------------------------------*/

.top-hero {
	margin: 0 0 150px 0;
}

.top-hero_inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.top-hero_visual {
    position: relative;
    margin-right: calc(50% - 50vw);
}

.top-hero_visual .bx-wrapper {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    background: none;
    margin-bottom: 0;
}

.top-hero_visual-slider-slide {
	overflow: hidden;
}

.top-hero_visual-slider-slide img {
    animation: zoom 7s linear 0s normal both;
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

h1.top-hero_visual-heading {
    width: 10%;
    position: absolute;
    top: 0;
    right: 25%;
}

/* aboutus ------------------------------------------------*/

.top-aboutus {
	margin: 0 0 130px 0;
}

.top-aboutus_lead {
	position: relative;
}

h3.top-aboutus_lead-heading {
	font-size: 25px;
	text-align: center;
	margin: 0 0 30px 0;
}

h3.top-aboutus_lead-heading .orange {
    color: #ff9c3b;
}

p.top-aboutus_lead-text {
	font-size: 18px;
	text-align: center;
	margin: 0 0 30px 0;
	line-height: 2;
}

p.top-aboutus_lead-text .marker {
    background: -webkit-linear-gradient(left, #fed7b1 50%, transparent 50%);
    background: -moz-linear-gradient(left, #fed7b1 50%, transparent 50%);
    background: linear-gradient(left, #fed7b1 50%, transparent 50%); 
    background-repeat: no-repeat;
    background-size: 200% .5em; 
    background-position: 100% .9em;
    transition: 2s;
    font-weight: 500;
}

.marker.active {
    background-position: 0% .9em !important;
}

.top-aboutus_lead-thumb.first {
    max-width: 300px;
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%) translateX(0);
}

.top-aboutus_lead-thumb.second {
    max-width: 380px;
    position: absolute;
    top: 50%;
    right: -80px;
    transform: translateY(-50%) translateX(0);
}

.top-aboutus_thumb {
    max-width: 550px;
    margin: 60px 0 150px 0;
}

/* news ------------------------------------------------*/

.top-news {
	margin: 0 0 150px 0;
}

.top-news_newslist {
	margin: 0 0 150px 0;
}

.top-news_newslist ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	padding: 30px 30px 30px 0;
	border-top: 1px solid #e7e7e7;
	position: relative;
}

.top-news_newslist ul li:last-child {
	border-bottom: 1px solid #e7e7e7;
}

.top-news_newslist-date {
	font-size: 16px;
	margin: 0 30px 0 0;
}

.top-news_newslist-category {
	margin: 0 30px 0 0;
}

.top-news_newslist-category_icon {
    display: inline-block;
    border: 1px solid #222222;
	font-size: 14px;
	color: #222222;
	padding: 5px 10px;
	width: 110px;
	text-align: center;
	border-radius: 3px;
}

.top-news_newslist-category_icon.orenge {
    border: 1px solid #ff9c3b;
	color: #ff9c3b;
}

.top-news_newslist-category_icon.green {
    border: 1px solid #8bc34a;
	color: #8bc34a;
}

.top-news_newslist-category_icon.skyblue {
    border: 1px solid #23a7df;
	color: #23a7df;
}

.top-news_newslist-excerpt a {
	font-size: 16px;
}

.top-news_newslist-action_button {
    color: #222222;
    background-color: #ffffff;
    border: 1px solid #222222;
}

.top-news_newslist-action_button::after {
    background: #222222;
}

.top-news_newslist-action_button::before {
    background-image: url("assets/img/common/common-style_button-icon-black.webp");
}

.top-news_newslist-action_button:hover {
    color: #ffffff;
}

.top-news_newslist-action_button:hover::before {
    background-image: url("assets/img/common/common-style_button-hover-white.webp");
}

.top-news_newslist-link {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(0);
}

/* service ------------------------------------------------*/

.top-service {
	margin: 0 0 150px 0;
}

h3.top-service_lead-heading {
	font-size: 25px;
	text-align: center;
	margin: 0 0 30px 0;
}

h3.top-service_lead-heading .orange {
    color: #ff9c3b;
}

p.top-service_lead-text {
	font-size: 18px;
	text-align: center;
	margin: 0 0 80px 0;
}

p.top-service_lead-text .marker {  
    background: -webkit-linear-gradient(left, #fed7b1 50%, transparent 50%);
    background: -moz-linear-gradient(left, #fed7b1 50%, transparent 50%);
    background: linear-gradient(left, #fed7b1 50%, transparent 50%); 
    background-repeat: no-repeat;
    background-size: 200% .5em; 
    background-position: 100% .9em;
    transition: 2s;
    font-weight: 500;
}

h4.top-service_explain-heading {
	font-size: 23px;
	margin: 0 0 15px 0;
}

p.top-service_explain-text {
	font-size: 16px;
	text-align: justify;
}

p.top-service_explain-text .orange {
    color: #ff9c3b;
    font-weight: 500;
}

.top-service_explain .column-item {
	margin: 0 0 80px 0;
}

h4.top-service_explain-heading .orange {
    color: #ff9c3b;
}

.top-service_explain .row-outer {
    	margin: 0 -25px;
}

.top-service_explain .col-inner {
    padding: 0 25px;
}

/* flow ------------------------------------------------*/

.top-flow {
	margin: 0 0 150px 0;
}

h3.top-flow_lead-heading {
	font-size: 25px;
	text-align: center;
	margin: 0 0 30px 0;
}

h3.top-flow_lead-heading .green {
    color: #8bc34a;
}

p.top-flow_lead-text {
	font-size: 18px;
	text-align: center;
	margin: 0 0 80px 0;
}

p.top-flow_lead-text .marker {
    background: -webkit-linear-gradient(left, #d1e7b7 50%, transparent 50%);
    background: -moz-linear-gradient(left, #d1e7b7 50%, transparent 50%);
    background: linear-gradient(left, #d1e7b7 50%, transparent 50%); 
    background-repeat: no-repeat;
    background-size: 200% .5em; 
    background-position: 100% .9em;
    transition: 2s;
    font-weight: 500;
}

.top-flow_chart {
	margin: 0 auto 100px auto;
	max-width: 750px;
}

h4.top-flow_chart-heading {
	font-size: 20px;
	background-color: #8bc34a;
	border-radius: 10px;
	text-align: center;
	color: #ffffff;
	padding: 10px 15px;
	margin: 0 0 15px 0;
}

h4.top-flow_chart-heading .en {
    font-family: "Jost", sans-serif;
}

p.top-flow_chart-text {
	font-size: 16px;
	text-align: justify;
}

p.top-flow_chart-text .green {
	color: #8bc34a;
	font-weight: 500;
}

.top-flow_chart-text_icon {
    width: 67px;
    margin: 20px auto;
}

/* background ------------------------------------------------*/

.top-background_gray {
    background-color: #efefef;
    padding: 200px 0 100px 0;
}

/* works ------------------------------------------------*/

.top-works {
	margin: 0 0 150px 0;
}

.top-works_bigthumb {
	margin: 0 0 200px 0;
}

h3.top-works_lead-heading {
	font-size: 25px;
	text-align: center;
	margin: 0 0 30px 0;
}

h3.top-works_lead-heading .skyblue {
    color: #23a7df;
}

p.top-works_lead-text {
	font-size: 18px;
	text-align: center;
	margin: 0 0 80px 0;
}

p.top-works_lead-text .marker {
    font-weight: 500;
    background: -webkit-linear-gradient(left, #a6dcf2 50%, transparent 50%);
    background: -moz-linear-gradient(left, #a6dcf2 50%, transparent 50%);
    background: linear-gradient(left, #a6dcf2 50%, transparent 50%); 
    background-repeat: no-repeat;
    background-size: 200% .5em; 
    background-position: 100% .9em;
    transition: 2s;
}

.top-works_postlist {
	margin: 0 0 150px 0;
}

.top-works_postlist-figure_thumb {
	margin: 0 0 20px 0;
}

h4.top-works_postlist-figure_heading {
	font-size: 20px;
	margin: 0 0 10px 0;
}

.top-works_postlist-meta {
    display: flex;
}

.top-works_postlist-meta_category {
    border: 1px solid #222222;
    padding: 3px 5px;
    width: 110px;
	font-size: 15px;
	color: #222222;
	text-align: center;
	margin: 0 15px 0 0;
}

.top-works_postlist-meta_category.orange {
    border: 1px solid #ff9c3b;
	color: #ff9c3b;
}

.top-works_postlist-meta_category.green {
    border: 1px solid #8bc34a;
	color: #8bc34a;
}

.top-works_postlist .row-outer {
    	margin: 0 -25px;
}

.top-works_postlist .col-inner {
    padding: 0 25px;
}

.top-works_action-button {
    color: #ffffff;
    background-color: #23a7df;
    border: 1px solid #23a7df;
}

.ttop-works_action-button::after {
    background: #ffffff;
}

.top-works_action-button::before {
    background-image: url("assets/img/common/common-style_button-icon-white.webp");
}

.top-works_action-button:hover {
    color: #23a7df;
}

.top-works_action-button:hover::before {
    background-image: url("assets/img/common/common-style_button-hover-blue.webp");
}

/* company ------------------------------------------------*/

.top-company {
	margin: 0 0 150px 0;
}

.top-company_slider {
	margin: 0 0 80px 0;
}

.top-company_slider .swiper-wrapper {
    transition-timing-function: linear;
}

h3.top-company_lead-heading {
	font-size: 25px;
	text-align: center;
	margin: 0 0 30px 0;
}

h3.top-company_lead-heading .orange {
    color: #ff9c3b;
}

p.top-company_lead-text {
	font-size: 18px;
	text-align: center;
	margin: 0 0 80px 0;
}

p.top-company_lead-text .marker {
    font-weight: 500;
    background: -webkit-linear-gradient(left, #fed7b1 50%, transparent 50%);
    background: -moz-linear-gradient(left, #fed7b1 50%, transparent 50%);
    background: linear-gradient(left, #fed7b1 50%, transparent 50%); 
    background-repeat: no-repeat;
    background-size: 200% .5em; 
    background-position: 100% .9em;
    transition: 2s;
}

.top-company_promise {
	margin: 0 0 80px 0;
}

h3.top-company_promise-heading {
	font-size: 25px;
	text-align: center;
	margin: 0 0 30px 0;
}

h3.top-company_promise-heading .orange {
    color: #ff9c3b;
}

.top-company_promise-thumb {
    max-width: 850px;
    margin: 0 auto;
}

.top-company_message {
	margin: 0 0 100px 0;
}

h3.top-company_message-heading {
	font-size: 25px;
	text-align: center;
	margin: 0 0 50px 0;
}

h4.top-company_message-heading {
	font-size: 23px;
	margin: 0 0 20px 0;
}

p.top-company_message-text {
	font-size: 16px;
	text-align: justify;
}

.top-company_message .row-outer {
    	margin: 0 -25px;
}

.top-company_message .col-inner {
    padding: 0 25px;
}

.top-company_map {
	margin: 0 0 100px 0;
}

h3.top-company_map-heading {
	font-size: 25px;
	text-align: center;
	margin: 0 0 15px 0;
}

.top-company_map-text {
	font-size: 18px;
	text-align: center;
}

h3.top-company_history-heading {
	font-size: 25px;
	text-align: center;
	margin: 0 0 70px 0;
}

.top-company_history-table {
    max-width: 750px;
    width: 100%;
    margin: 0 auto 100px auto;
}

.top-company_history-table table tr th {
	font-size: 16px;
	line-height: 1.7;
	border-right: 1px solid #222222;
	width: 160px;
	padding: 20px 30px;
    text-align: justify;
    text-align-last: justify;
    font-weight: 500;
}

.top-company_history-table table tr td {
	font-size: 16px;
	line-height: 1.7;
	padding: 20px 30px;
}

.top-company_explain .row-outer {
    margin: 0 -35px;
}

.top-company_explain .col-inner {
    padding: 0 35px;
}

.top-company_explain-thumb {
    margin-left: calc(100% - 50vw);
}

h4.top-company_explain-heading {
	font-size: 23px;
	margin: 0 0 20px 0;
}

h4.top-company_explain-heading .orange {
    color: #ff9c3b;
}

p.top-company_explain-text {
	font-size: 16px;
	text-align: justify;
}

.top-company_map-iframe {
    position: relative;
    padding-bottom: 50%;
    height: 0;
    overflow: hidden;
	margin: 0 0 20px 0;
}

.top-company_map-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/* contact ------------------------------------------------*/

.top-contact_form {
    background-color: #ffffff;
    padding: 50px;
}

.top-contact_form iframe {
    max-width: 100% !important;
}

@media (max-width: 1200px) {

    .top-aboutus_lead-thumb.first {
        max-width: 250px;
        position: absolute;
        top: 50%;
        left: -50px;
        transform: translateY(-50%) translateX(0);
    }
    
    .top-aboutus_lead-thumb.second {
        max-width: 300px;
        position: absolute;
        top: 50%;
        right: -80px;
        transform: translateY(-50%) translateX(0);
    }
}

@media (max-width: 991px) {

    /* hero ------------------------------------------------*/
    
    .top-hero {
    	margin: 0 0 80px 0;
    }
    
    .top-hero_inner {
        padding: 0;
    }
    
    .top-hero_visual {
        margin-right: 0;
    }
    
    .top-hero_visual-slider-slide img {
        height: 600px;
        object-fit: cover;
    }
    
    h1.top-hero_visual-heading {
        width: 85%;
        top: auto;
        bottom: 10%;
        right: auto;
        left: 0;
    }
    
    /* aboutus ------------------------------------------------*/
    
    .top-aboutus {
    	margin: 0 0 100px 0;
    }
    
    h3.top-aboutus_lead-heading {
    	font-size: 20px;
    }
    
    p.top-aboutus_lead-text {
    	font-size: 15px;
    }
    
    .top-aboutus_thumb {
        max-width: 350px;
        margin: 0 auto 50px auto;
    }
    
    /* news ------------------------------------------------*/
    
    .top-news {
    	margin: 0 0 100px 0;
    }
    
    .top-news_newslist {
    	margin: 0 0 50px 0;
    }
    
    .top-news_newslist ul li {
    	padding: 20px 20px 20px 0;
    }
    
    .top-news_newslist-date {
    	font-size: 15px;
    	margin: 0 20px 0 0;
    }
    
    .top-news_newslist-category {
    	margin: 0 20px 0 0;
    }
    
    .top-news_newslist-category_icon {
    	font-size: 13px;
    	padding: 2px 10px;
    	width: 90px;
    	border-radius: 2px;
    }
    
    .top-news_newslist-excerpt {
        margin: 10px 0 0 0;
        max-width: 100%;
        width: 100%;
    }
    
    .top-news_newslist-excerpt a {
    	font-size: 15px;
    }
    
    /* service ------------------------------------------------*/
    
    .top-service {
    	margin: 0 0 100px 0;
    }
    
    h3.top-service_lead-heading {
    	font-size: 20px;
    }
    
    p.top-service_lead-text {
    	font-size: 15px;
    	margin: 0 0 40px 0;
    }
    
    h4.top-service_explain-heading {
    	font-size: 18px;
    	margin: 0 0 10px 0;
    }
    
    p.top-service_explain-text {
    	font-size: 15px;
    	margin: 0 0 50px 0;
    }
    
    .top-service_explain .column-item {
    	margin: 0 0 20px 0;
    }
    
    .top-service_explain .row-outer {
        	margin: 0;
    }
    
    .top-service_explain .col-inner {
        padding: 0;
    }
    
    /* flow ------------------------------------------------*/
    
    .top-flow {
    	margin: 0 0 100px 0;
    }
    
    h3.top-flow_lead-heading {
    	font-size: 20px;
    }

    p.top-flow_lead-text {
    	font-size: 15px;
    	margin: 0 0 50px 0;
    }
    
    .top-flow_chart {
    	margin: 0 auto 60px auto;
    	max-width: 750px;
    }
    
    h4.top-flow_chart-heading {
    	font-size: 18px;
    	border-radius: 5px;
    	padding: 5px 10px;
    	margin: 0 0 10px 0;
    }
    
    p.top-flow_chart-text {
    	font-size: 14px;
    }
    
    .top-flow_chart-text_icon {
        margin: 15px auto;
    }
    
    /* background ------------------------------------------------*/
    
    .top-background_gray {
        padding: 20px 0 80px 0;
    }
    
    /* works ------------------------------------------------*/
    
    .top-works {
    	margin: 0 0 100px 0;
    }
    
    h3.top-works_lead-heading {
    	font-size: 20px;
    }
    
    p.top-works_lead-text {
    	font-size: 15px;
    	margin: 0 0 40px 0;
    }
    
    .top-works_postlist {
    	margin: 0;
    }
    
    .top-works_postlist .column-item {
        margin: 0 0 50px 0;
    }
    
    .top-works_postlist-figure_thumb {
    	margin: 0 0 10px 0;
    }
    
    h4.top-works_postlist-figure_heading {
    	font-size: 18px;
    }
    
    .top-works_postlist-meta_category {
        width: 100px;
    	font-size: 15px;
    }
    
    .top-works_postlist .row-outer {
        	margin: 0;
    }
    
    .top-works_postlist .col-inner {
        padding: 0;
    }
    
    /* company ------------------------------------------------*/
    
    .top-company {
    	margin: 0 0 100px 0;
    }
    
    .top-company_slider {
    	margin: 0 0 40px 0;
    }
    
    h3.top-company_lead-heading {
    	font-size: 20px;
    }
    
    p.top-company_lead-text {
    	font-size: 15px;
    	margin: 0 0 50px 0;
    }
    
    .top-company_promise {
    	margin: 0 0 40px 0;
    }
    
    h3.top-company_promise-heading {
    	font-size: 20px;
    }
    
    .top-company_message {
    	margin: 0 0 50px 0;
    }
    
    h3.top-company_message-heading {
    	font-size: 20px;
    	margin: 0 0 15px 0;
    }
    
    .top-company_message-thumb {
        margin: 0 0 15px 0;
    }
    
    h4.top-company_message-heading {
    	font-size: 20px;
    	margin: 0 0 10px 0;
    }
    
    p.top-company_message-text {
    	font-size: 15px;
    }
    
    .top-company_message .row-outer {
        	margin: 0;
    }
    
    .top-company_message .col-inner {
        padding: 0;
    }
    
    .top-company_map {
    	margin: 0 0 80px 0;
    }
    
    h3.top-company_map-heading {
    	font-size: 20px;
    }
    
    .top-company_map-text {
    	font-size: 13px;
    }
    
    h3.top-company_history-heading {
    	font-size: 20px;
    	margin: 0 0 30px 0;
    }
    
    .top-company_history-table {
        margin: 0 auto 80px auto;
    }
    
    .top-company_history-table table tr th {
    	font-size: 13px;
    	border-right: 1px solid #222222;
    	width: 90px;
    	padding: 10px 10px 10px 0;
    }
    
    .top-company_history-table table tr td {
    	font-size: 13px;
    	padding: 10px;
    }
    
    .top-company_explain .row-outer {
        margin: 0;
    }
    
    .top-company_explain .col-inner {
        padding: 0;
    }
    
    .top-company_explain-thumb {
        margin: 0 0 20px 0;
    }
    
    h4.top-company_explain-heading {
    	font-size: 20px;
    	margin: 0 0 10px 0;
    }

    p.top-company_explain-text {
    	font-size: 15px;
    }
    
    /* contact ------------------------------------------------*/
    
    .top-contact_form {
        padding: 0;
    }
}

/*================================================================================
news
================================================================================*/

.news-newslist {
    margin: 200px 0 60px 0;
}

.news-newslist_list {
	margin: 0;
}

.news-newslist_menu {
    margin: 0 0 40px 0;
}

.news-newslist_menu ul {
    display: flex;
    justify-content: center;
}

.news-newslist_menu ul li {
	margin: 0 15px;
    width: 150px;
}

.news-newslist_menu ul li a {
    display: block;
    border: 1px solid #222222;
    background-color: #ffffff;
    color: #222222;
    font-size: 14px;
    text-align: center;
    padding: 5px 10px;
    border-radius: 5px;
}

.news-newslist_menu ul li a.red {
    border: 1px solid #e60012;
    color: #e60012;
}

.news-newslist_menu ul li a.orange {
    border: 1px solid #ff9c3b;
    color: #ff9c3b;
}

.news-newslist_menu ul li a.skyblue {
    border: 1px solid #23a7df;
    color: #23a7df;
}

.news-newslist_menu ul li a.active {
    background-color: #222222;
    color: #ffffff;
}

.news-newslist_menu ul li a.red.active {
    background-color: #e60012;
}

.news-newslist_menu ul li a.orange.active {
    background-color: #ff9c3b;
}

.news-newslist_menu ul li a.skyblue.active {
    background-color: #23a7df;
}

/* pager ------------------------------------------------*/

.common-pager {
    text-align: center;
    margin: 0 0 150px 0;
}

.common-pager .page-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.common-pager a.page-numbers,
.common-pager .current,
.common-pager .dots {
    font-size: 20px;
    color: #222222;
    text-align: center;
    margin: 0 20px;
    line-height: 1;
}

.common-pager .current {
    color: #ff9c3b;
}

.common-pager a.prev::before {
    content: "<";
    font-size: 20px;
	margin: 0 20px 0 0;
}

.common-pager a.next::after {
    content: ">";
    font-size: 20px;
	margin: 0 0 0 10px;
}

@media (max-width: 991px) {

    .news-newslist {
        margin: 150px 0 40px 0;
    }
    
    .news-newslist_menu {
        margin: 0 0 30px 0;
    }
    
    .news-newslist_menu ul {
        flex-wrap: wrap;
    }
    
    .news-newslist_menu ul li {
    	margin: 5px;
        width: calc(50% - 10px);

    }
    
    /* pager ------------------------------------------------*/
    
    .common-pager {
        margin: 0 0 100px 0;
    }

    .common-pager a.page-numbers,
    .common-pager .current,
    .common-pager .dots {
        font-size: 16px;
        margin: 0 10px;
    }
    
    .common-pager a.prev::before {
        font-size: 10px;
    	margin: 0 10px 0 0;
    }
    
    .common-pager a.next::after {
        font-size: 10px;
    	margin: 0 0 0 10px;
    }
}

/*================================================================================
single
================================================================================*/

.single-detail_headline {
    margin: 200px 0 50px 0;
}

.single-detail_headline-info {
    display: flex;
    align-items: center;
    margin: 0 0 20px 0;
}

.single-detail_headline-info_date {
        font-size: 16px;
        margin: 0 20px 0 0;
}

.single-detail_headline-info_category a, .single-detail_headline-info_category span {
    display: block;
    border: 1px solid #222222;
    background-color: #ffffff;
    color: #222222;
    font-size: 14px;
    text-align: center;
    padding: 5px 10px;
    border-radius: 5px;
    width: 150px;  
    margin: 0 20px 0 0;
}

.single-detail_headline-info_category a:hover {
    color: #ffffff;
    background-color: #222222;
    opacity: 1;
}

.single-detail_headline-info_category a.orenge, .single-detail_headline-info_category span.orenge {
    border: 1px solid #ff9c3b;
	color: #ff9c3b;
}

.single-detail_headline-info_category a.orenge:hover {
    color: #ffffff;
    background-color: #ff9c3b;
    opacity: 1;
}

.single-detail_headline-info_category a.green, .single-detail_headline-info_category span.green {
    border: 1px solid #8bc34a;
	color: #8bc34a;
}

.single-detail_headline-info_category a.green:hover {
    color: #ffffff;
    background-color: #8bc34a;
    opacity: 1;
}

.single-detail_headline-info_category a.skyblue, .single-detail_headline-info_category span.skyblue {
    border: 1px solid #23a7df;
	color: #23a7df;
}

.single-detail_headline-info_category a.skyblue:hover {
    color: #ffffff;
    background-color: #23a7df;
    opacity: 1;
}

h1.single-detail_headline-heading {
    font-size: 23px;
    margin: 0 0 20px 0;
}

.single-detail_headline-meta ul {
    display: flex;
}

.single-detail_headline-meta ul li {
    margin: 0 15px 0 0;
}

.single-detail_headline-meta ul li span {
    display: block;
    border: 1px solid #222222;
    background-color: #ffffff;
    color: #222222;
    font-size: 15px;
    text-align: center;
    padding: 5px 10px;
    border-radius: 5px;
    width: 120px;  
}

.single-detail_headline-meta ul li span.orenge {
    border: 1px solid #ff9c3b;
	color: #ff9c3b;
}

.single-detail_headline-meta ul li span.green {
    border: 1px solid #8bc34a;
	color: #8bc34a;
}

.single-detail_headline-meta ul li span.skyblue {
    border: 1px solid #23a7df;
	color: #23a7df;
}

.single-detail_exsample {
	margin: 0 0 60px 0;
}

.single-detail_exsample .row-outer {
    margin: 0 -25px;
}

.single-detail_exsample .col-inner {
    padding: 0 25px;
}

.single-detail_point {
	margin: 0 0 60px 0;
}

.single-detail_point .row-outer {
    margin: 0 -25px;
}

.single-detail_point .col-inner {
    padding: 0 25px;
}

.single-detail_point-list p {
    font-size: 18px;
}

.single-detail_point-list ul li {
    font-size: 18px;
    margin: 0 0 15px 0;
}

.single-detail_gallery {
	margin: 0 0 60px 0;
}

.single-detail_gallery .row-outer {
    margin: 0 -10px;
}

.single-detail_gallery .col-inner {
    padding: 0 10px;
}

.single-detail_subexsample {
	margin: 0 0 60px 0;
}

.single-detail_subexsample .row-outer {
    margin: 0 -25px;
}

.single-detail_subexsample .col-inner {
    padding: 0 25px;
}

.single-detail_exsample-article article h1, .single-detail_subexsample-article article h1 {
    font-size: 25px;
    margin: 0 0 10px 0;
}

.single-detail_exsample-article article h2, .single-detail_subexsample-article article h2 {
    font-size: 20px;
    margin: 0 0 10px 0;
}

.single-detail_exsample-article article h3, .single-detail_subexsample-article article h3 {
    font-size: 18px;
    margin: 0 0 10px 0;
}

.single-detail_exsample-article p, .single-detail_subexsample-article p {
    font-size: 16px;
    margin: 0 0 20px 0;
}

/* pagenav ------------------------------------------------*/

.single-detail_action .pagenav {
    text-align: center;
    margin: 150px 0;
}

.single-detail_action .pagenav ul li {
    font-size: 18px;
}

.single-detail_action .pagenav .prev, .single-detail_action .pagenav .back, .single-detail_action .pagenav .next {
    display: inline-block;
}

.single-detail_action .pagenav .back {
	margin: 0 80px;
}

@media (max-width: 991px) {

    .single-detail_headline {
        margin: 150px 0 30px 0;
    }
    
    .single-detail_headline-info {
        margin: 0 0 10px 0;
    }
    
    .single-detail_headline-info_category {
        font-size: 14px;
        border-radius: 0;
        width: 110px;  
        padding: 2px 5px;
    }
    
    h1.single-detail_headline-heading {
        font-size: 18px;
        margin: 0 0 10px 0;
    }

    .single-detail_headline-meta ul li {
        padding: 2px 10px;
        border-radius: 0;
        width: 110px;  
        margin: 0 15px 0 0;
    }
    
    .single-detail_exsample {
    	margin: 0 0 40px 0;
    }
    
    .single-detail_exsample .row-outer {
        margin: 0;
    }
    
    .single-detail_exsample .col-inner {
        padding: 0;
    }
    
    .single-detail_exsample-thumb {
        margin: 0 0 40px 0;
    }
    
    .single-detail_point {
    	margin: 0 0 40px 0;
    }
    
    .single-detail_point .row-outer {
        margin: 0;
    }
    
    .single-detail_point .col-inner {
        padding: 0;
    }
    
    .single-detail_point-list p {
        font-size: 15px;
    }
    
    .single-detail_point-list ul li {
        font-size: 15px;
        margin: 0 0 10px 0;
    }
    
    .single-detail_gallery {
    	margin: 0 0 20px 0;
    }
    
    .single-detail_gallery .row-outer {
        margin: 0;
    }
    
    .single-detail_gallery .col-inner {
        padding: 0;
    }
    
    .single-detail_gallery .column-item {
        margin: 0 0 15px 0;
    }
    
    .single-detail_subexsample {
    	margin: 0 0 40px 0;
    }
    
    .single-detail_subexsample .row-outer {
        margin: 0;
    }
    
    .single-detail_subexsample .col-inner {
        padding: 0;
    }
    
    .single-detail_exsample-article article h1, .single-detail_subexsample-article article h1 {
        font-size: 20px;
        margin: 0 0 5px 0;
    }
    
    .single-detail_exsample-article article h2, .single-detail_subexsample-article article h2 {
        font-size: 18px;
        margin: 0 0 5px 0;
    }
    
    .single-detail_exsample-article article h3, .single-detail_subexsample-article article h3 {
        font-size: 16px;
        margin: 0 0 5px 0;
    }
    
    .single-detail_exsample-article p, .single-detail_subexsample-article p {
        font-size: 15px;
    }
    
    /* pagenav ------------------------------------------------*/
    
    .single-detail_action .pagenav {
        margin: 50px 0 100px 0;
    }
    
    .single-detail_action .pagenav ul li {
        font-size: 15px;
    }
    
    .single-detail_action .pagenav .back {
    	margin: 0 50px;
    }
}