@charset "UTF-8";

/*
Theme Name: kms
Theme URI: https://wordpress.org/themes/twentytwentyone/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
Requires at least: 5.3
Tested up to: 6.7
Requires PHP: 5.6
Version: 2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyone
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, blog, portfolio

Twenty Twenty-One WordPress Theme, (C) 2020 WordPress.org
Twenty Twenty-One is distributed under the terms of the GNU GPL.
*/
@import url('./layout.css');

:root {

	/* Font Family */
	--global--font-base: "Zen Kaku Gothic New", serif;

	/* Font Size */
	--global--font-size-base: 1.25rem;
	--global--font-size-xs: 1rem;
	--global--font-size-sm: 1.125rem;
	--global--font-size-md: 1.25rem;
	--global--font-size-lg: 1.5rem;
	--global--font-size-xl: 2.25rem;
	--global--font-size-xxl: 4rem;
	--global--font-size-xxxl: 5rem;
	--global--font-size-page-title: var(--global--font-size-xxl);
	--global--letter-spacing: normal;

	--header--height-pc: 8rem;
	--header--footer--contact-pc: 10rem;

	/* Line Height */
	--global--line-height-body: 1.7;
	--global--line-height-heading: 1.3;
	--global--line-height-page-title: 1.1;
	--definition-term--font-family: var(--global--font-primary);

	/* Colors */
	--global--color-base: #7a843a;
	--global--color-footer: #5D8736;
	--global--color-footerline: #A9C46C;


	--global--color-green01: #F4FFC3;
	--global--color-black: #000;
	--global--color-dark-gray: #28303d;
	--global--color-gray: #39414d;
	--global--color-light-gray: #f0f0f0;
	--global--color-green: #d1e4dd;
	--global--color-blue: #d1dfe4;
	--global--color-purple: #d1d1e4;
	--global--color-red: #e4d1d1;
	--global--color-orange: #e4dad1;
	--global--color-yellow: #eeeadd;
	--global--color-white: #ffffff;
	--global--color-white-50: rgba(255, 255, 255, 0.5);
	--global--color-white-90: rgba(255, 255, 255, 0.9);
	--global--color-primary: var(--global--color-dark-gray); /* Body text color, site title, footer text color. */
	--global--color-secondary: var(--global--color-gray); /* Headings */
	--global--color-primary-hover: var(--global--color-primary);
	--global--color-background: var(--global--color-green); /* Mint, default body background */
	--global--color-border: var(--global--color-primary); /* Used for borders (separators) */

}
html, body{
	font-family: var(--global--font-base);
	font-weight: 400;
	font-style: normal;
}
.inner{
	max-width: 98rem;
	margin: 0 auto;
}
.spacer{
	padding-top: 5rem;
	padding-bottom: 5rem;
}

main{
	padding-bottom: var(--header--footer--contact-pc);
}


header{
	position: fixed;
	width: 100%;
	height: var(--header--height-pc);
	display: flex;
	z-index: 1000;
	background-color: var(--global--color-white-90);
}
header .header-inner{
	width: 100%;
	display: flex;
	justify-content: space-between;
}
header .header-menu ul{
	display: flex;
}
header .header-menu ul li{
	display: flex;
	justify-content: center;
	align-items: center;
	height: var(--header--height-pc);
	
}
header .header-menu ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	height: var(--header--height-pc);
	
}
header .logo, header .logo a{
	display: flex;
	justify-content: center;
	align-items: center;
	height: var(--header--height-pc);
}




.footer-contact{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: var(--header--footer--contact-pc);
	background-color: var(--global--color-footer);
}
.footer-contact ul{
	display: flex;
}
.footer-contact ul li{
	width: calc(50% - .05rem);
}
.footer-contact ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	height: var(--header--footer--contact-pc);
	width: 100%;
	flex-direction: column;
	font-size: 2rem;
	color: var(--global--color-white);
}

.footer-contact ul li:first-child{
	border-right: .1rem solid var(--global--color-footerline);
}
.footer-contact ul li a span{
	font-size: 1.4rem;
	line-height: 1.2;
}

.midashi{
	text-align: center;
	font-size: 2.4rem;
	margin-bottom: 3rem;
}
.midashi .sub{
	display: block;
	line-height: 1;
}





section.point{
	background-color: var(--global--color-green01);
}
section.point .point-box{
	border-radius: 2rem;
	display: flex;
	justify-content: space-between;
	overflow: hidden;
}
section.point .point-box .point-inbox{
	width: 33.2%;
	background-color: var(--global--color-white);
	padding: 3.5rem 2rem;
}
section.point .point-box .point-inbox dl dt{
	text-align: center;
	margin-bottom: 2rem;
}
section.point .point-box .point-inbox dl dd{
	font-size: 1.4rem;
}



section.company .company-box{
	display: flex;
	justify-content: space-between;
}
section.company .company-box div{
	width: 48%;
}
section.company .company-box .company-inbox dl{
	display: flex;
	padding: 1rem 0;
}
section.company .company-box .company-inbox dl dt{
	width: 15rem;
}
section.company .company-box .company-inbox dl dd{
	width: calc(100% - 15rem);
}


section.main{
	width: 100%;
	height: calc(100vh - var(--header--footer--contact-pc));
	background: url('./assets/images/front/main01.webp') no-repeat 50% 50% / cover;
}

section.main .inner{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

section.main::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100vh - var(--header--footer--contact-pc));
	background-color: rgba(0, 0, 0, .5);
}


.catchcopy{
	color: var(--global--color-white);
	font-size: 4rem;
	text-shadow: #000000 1px 0 10px;
	z-index: 10;
}





section.service .service-box{
	display: flex;
	flex-wrap: wrap;
}

.service-box-triple div{
	width: 33.33333%;
	min-height: 50rem;
}
.service-box-quadruple div{
	width: 25%;
}

section.service .service-box .service-inbox01{
	background: url('./assets/images/front/main01.webp') no-repeat 50% 50% / cover;
}
section.service .service-box .service-inbox02{
	background: url('./assets/images/front/main01.webp') no-repeat 50% 50% / cover;
}
section.service .service-box .service-inbox03{
	background: url('./assets/images/front/main01.webp') no-repeat 50% 50% / cover;
}
.service-inboxes{
	margin: 2rem;
	width: calc(100% - 4rem) !important;
	padding: 2rem;
	background-color: rgba(0, 0, 0, .5);
	color: var(--global--color-white);
}



