@charset "utf-8";
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700&subset=japanese");

.text10 { font-size:77%; }
.text11 { font-size:85%; }
.text12 { font-size:93%; }
.text13 { font-size:100%; }
.text14 { font-size:108%; }
.text15 { font-size:116%; }
.text16 { font-size:123.1%; }
.text17 { font-size:131%; }
.text18 { font-size:138.5%; }
.text19 { font-size:146.5%; }
.text20 { font-size:153.9%; }
.text21 { font-size:161.6%; }
.text22 { font-size:167%; }
.text23 { font-size:174%; }
.text24 { font-size:182%; }
.text25 { font-size:189%; }
.text26 { font-size:197%; }

/* ページ全体
------------------------------------------------------------ */

body {
	margin: 0;
	padding: 0;
	background: #fff;
	color: #000;
	font-family: "Roboto", "Noto Sans JP", "游ゴシック", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif !important;
}
html, body, #container {
	height: 100%;
}


/* リンクテキストの装飾
------------------------------------------------------------ */

a:link,
a:hover,
a:active,
a:visited {
	color: #000;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

/* 全ての行間を詰める（行間リセット）
------------------------------------------------------------ */

h1,h2,h3,h4,h5,h6,p,ul,ol,dl {
	margin-top: 0;
	margin-bottom: 0;
	line-height: 1;
}

/* img装飾
------------------------------------------------------------ */

img {
	border: none;
}

/* フェードイン
------------------------------------------------------------ */
.fadeIn {
	animation-name: fadeInAnime;
	animation-duration: 5s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/* header
------------------------------------------------------------ */
header {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	background-color: #fff;
	/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	color: #000;
	height: 60px;
	padding: 1.7em 2.3em;
}
header h1 {
	display: inline;
}
header h1 img {
	width: 200px;
}

nav {
	display: flex;
	flex-direction: row;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
nav ul {

}
nav ul > li {
/*  margin: 0 1rem;*/
	overflow: hidden;
}

.menu-button-container {
	display: none;
	height: 100%;
	width: 30px;
	cursor: pointer;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#menu-toggle {
	display: none;
}
.menu-button,
.menu-button::before,
.menu-button::after {
	display: block;
	background-color: #000;
	position: absolute;
	height: 4px;
	width: 30px;
	transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
	border-radius: 2px;
}
.menu-button::before {
	content: '';
	margin-top: -8px;
}
.menu-button::after {
	content: '';
	margin-top: 8px;
}
#menu-toggle:checked + .menu-button-container .menu-button::before {
	margin-top: 0px;
	transform: rotate(405deg);
}
#menu-toggle:checked + .menu-button-container .menu-button {
	background: rgba(0, 0, 0, 0);
}
#menu-toggle:checked + .menu-button-container .menu-button::after {
	margin-top: 0px;
	transform: rotate(-405deg);
}

@media (max-width: 1069px) {
  .menu-button-container {
    display: flex;
  }
  nav {
    position: absolute;
    top: 0;
    margin-top: 70px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
	z-index: 10;
  }
  nav ul {

    width: 100%;

  }
  #menu-toggle ~ nav ul li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ nav ul li {
/*    border: 1px solid #fff;*/
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  nav ul > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
/*    color: white;*/
    background: rgba(255,255,255,0.9);
  }
  nav ul > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
}

ul {
/*	display: inline;*/
/*	float: right;*/
}

header nav ul {
	display: inline;
	float: right;
}
header nav ul li {
	float: left;
/*	font-size:123.1%;*/
	list-style: none;
}
header nav ul li+ li {
      border-left: 1px solid #e0e0e0;
    }
header nav ul li a {
	display: block;
	padding: 0 15px;
}
header nav ul li a span {
	display: block;
	text-align: center;
}
header nav ul li a span:first-child {
	font-size: 14px;
    font-weight: 700;
/*    padding-top: 36px;*/
    line-height: 2;
    -webkit-transition: padding-top 0.2s;
    transition: padding-top 0.2s;
}
header nav ul li a span:last-child {
	font-size: 10px;
    color: #555;
}

@media screen and (max-width: 1069px) {
header {
/*	display: block;
	height: 60px;
	padding: 0px;*/
}
header h1 img {
	width: 150px;
}
li.pc span:last-child {
	display: none;
}

}
@media screen and (max-width: 559px) {
header {
/*	display: block;*/
/*	height: 60px;*/
	padding: 0.5em 1.5em;
}
header h1 img {
	width: 120px;
/*	margin: 18px 0 0 20px;*/
}
li.pc span:last-child {
	display: none;
}

}

/* 
------------------------------------------------------------ */
.visual,
/*.topAbout,*/
/*.topService,*/
.topSupport,
/*.topCompany,*/
.contactform {
	height: 100vh;
	overflow: visible;
}
@media screen and (max-width: 559px) {
.topCompany {

}
}

/* visual
------------------------------------------------------------ */

.visual::before {
	background-color: rgba(0,0,0,0.3);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: ' ';
}
.visual {
	background: url(img/bg_visual.jpg) no-repeat;
	background-size:cover;
	position: relative;
}

.catch {
	position: absolute;
	top: calc(50% - 220px);
    left: calc(50% - 500px);
}
.visual h1 {
	position: relative;
	color: #fff;
	line-height: 1.3;
	font-size: 394%;
	font-weight: 700;
	text-align: center;
	z-index: 1;
}
.visual h2 {
	position: relative;
	color: #fff;
	line-height: 1.8;
	font-size:131%;
	font-weight: 400;
	text-align: center;
	z-index: 1;
}
@media screen and (max-width: 1069px) {
.visual {

}
.catch {
	position: absolute;
	top: calc(50% - 240px);
	left: calc(0% - 0px);
	margin: 0 20px;
}
.visual h1 {
	position: relative;
	margin: 1.5em 0 1em 0;
	color: #fff;
	line-height: 1.1;
	font-size: 293%;
	font-weight: 700;
	text-align: center;
	z-index: 1;
}
.visual h2 {
	font-size: 116%;
	-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
}
@media screen and (max-width: 559px) {
.visual {
	background: url(img/bg_visual.jpg) no-repeat;
	background-position: -300px bottom;
	background-size:cover;
	position: relative;
}
.catch {
	position: absolute;
	top: calc(50% - 240px);
	left: calc(0% - 0px);
	margin: 0 20px;
}
.visual h1 {
	position: relative;
	margin: 1.5em 0 1em 0;
	color: #fff;
	line-height: 1.1;
	font-size: 293%;
	font-weight: 700;
	text-align: center;
	z-index: 1;
}
.visual h2 {
	font-size: 116%;
	-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
}

/* topAbout
------------------------------------------------------------ */
.topAbout::before {
/*	background-color: rgba(0,0,0,0.5);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: ' ';*/
}
.topAbout {
	position: relative;
/*	border-top: 60px solid #fff;*/
/*	background: url(img/bg.jpg) no-repeat;
	background-attachment: fixed;
	background-size:cover;*/
}
.aboutInner {
	padding: 90px 110px;
}
.topAbout h2 {
	position: relative;
	margin: 0 0 1em 0;
	color: #000;
	font-size: 293%;
	font-weight: 700;
	text-align: center;
	z-index: 1;
}
.topAbout h2 img {
	width: 180px;
	margin: 0 .2em 0 0;
	vertical-align: text-top;
}
.topAbout p {
	position: relative;
	margin: 0 0 2em 0;
	color: #000;
	line-height: 1.6;
	font-size:138.5%;
	z-index: 1;
}
.aboutImg {
	text-align: center;
}
.aboutImg img {
	width: 500px;
}
.handshake {
	text-align: center;
}
.handshake img {
	width: 200px;
}
@media screen and (max-width: 559px) {
.aboutInner {
	padding: 60px 20px;
}
.topAbout h2 {
	position: relative;
	margin: 0 0 1em 0;
	color: #000;
	font-size: 197%;
	font-weight: 700;
	text-align: center;
	z-index: 1;
}
.topAbout h2 img {
	width: 120px;
	margin: 0 .2em 0 0;
	vertical-align: text-top;
}
.topAbout p {
	position: relative;
	margin: 0 0 2em 0;
	color: #000;
	line-height: 1.6;
	font-size:116%;
	z-index: 1;
}
.aboutImg {
	text-align: center;
}
.aboutImg img {
	width: 300px;
}
.handshake {
	text-align: center;
}
.handshake img {
	width: 120px;
}
}

/* topService
------------------------------------------------------------ */
.topService::before {
	background-color: rgba(0,0,0,0.5);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: ' ';
}
.topService {
	position: relative;
	padding: 90px 0 90px 0;
	background: url(img/bg.jpg) no-repeat;
	background-attachment: fixed;
	background-size: cover;
}
.topService p.title {
	position: relative;
	margin: 0 0 1em 0;
	color: #fff;
	font-size: 116%;
	letter-spacing: .1rem;
	text-align: center;
	z-index: 1;
}
.topService h2 {
	position: relative;
	margin: 0 0 1em 0;
	color: #fff;
	font-size: 293%;
	font-weight: 700;
	text-align: center;
	z-index: 1;
}
.boxWrapper{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	gap: 0 2px; /* 余白 */
}
.box {
	flex: 1;
	padding: 40px;
	background: #FFF;
	z-index: 1;
}
.box h3 {
	margin: 0 0 1.5em 0;
	padding: 0 0 1em 0;
	border-bottom: 1px solid #000;
	font-size:146.5%;
	font-weight: 700;
	text-align: center;
}
.box p {
	position: relative;
	margin: 0 0 2em 0;
	color: #000;
	line-height: 1.7;
	font-size:116%;
	z-index: 1;
}
.box .icon {
	text-align: center; 
}
.box .icon img {
	height: 70px;
}
@media screen and (max-width: 559px) {
.topService {
	position: relative;
	padding: 60px 20px 40px 20px;
	background: url(img/bg.jpg) no-repeat;
	background-attachment: fixed;
	background-size: cover;
}
.topService p.title {
	font-size: 116%;
}
.topService h2 {
	font-size: 197%;
}
.boxWrapper{
    flex-flow: column;
}
.box {
	margin: 0 0 20px 0;
}
}

/* topSupport
------------------------------------------------------------ */
.topSupport {
	padding: 90px 90px;
}
.topSupport h2 {
	position: relative;
	margin: 0 0 1em 0;
	color: #000;
	font-size: 293%;
	font-weight: 700;
	text-align: center;
}

/* topNews
------------------------------------------------------------ */
.topNews {
	padding: 90px 90px;
}
.topNews h2 {
	position: relative;
	margin: 0 0 1em 0;
	color: #000;
	font-size: 293%;
	font-weight: 700;
	text-align: center;
}
.topNews p {
	margin: 20px 0 2em 20px;
	font-size: 123.1%;
	line-height: 1.8;
}
.topNews ul {
	display: flex;
	flex-wrap: wrap;
/*	gap: 0 20px;
	padding: 0 40px;
	row-gap: 20px;*/
	margin: 0 20px 2em 20px;
	font-size: 123.1%;
	line-height: 1.8;
}
.topNews li {
	min-width:25%;
	height:auto;
	display: flex;
	margin: 0 0 1em 0;
}
.topNews li a {

}
@media screen and (max-width: 559px) {
.topNews {
	padding: 60px 20px;
}
.topNews h2 {
	font-size: 197%;
}
.topNews ul {
	flex-flow: column;
}
}

/* topCompany
------------------------------------------------------------ */
.topCompany {
	clear: both;
	padding: 90px 90px;
}
.topCompany h2 {
	position: relative;
	margin: 0 0 1em 0;
	color: #000;
	font-size: 293%;
	font-weight: 700;
	text-align: center;
}
.topCompany dl {
	display: flex;
	flex-flow: row wrap;
	width: 100%;
	font-size: 123.1%;
	line-height: 1.8;
}
.topCompany dt {
	flex-basis: 15%;
	padding: 20px;
/*	background-color: #f1f1f1;*/
	border-bottom: 1px solid #ddd;
	font-weight: 700;
}
.topCompany dd {
	flex-basis: 75%;
	padding: 20px;
	background-color: #fff;
	border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 559px) {
.topCompany {
	padding: 60px 20px;
}
.topCompany h2 {
	font-size: 197%;
}
.topCompany dl {
	flex-flow: column;
}
}


/* topCEO
------------------------------------------------------------ */
.topCEO {
	padding: 90px 90px;
}
.topCEO h2 {
	position: relative;
	margin: 0 0 1em 0;
	color: #000;
	font-size: 293%;
	font-weight: 700;
	text-align: center;
}
.topCEO .photo {
	margin: 0 auto;
	width: 800px;
}
.topCEO p {
	margin: 20px 0 2em 20px;
	font-size: 123.1%;
	line-height: 1.8;
}
.topCEO dl {
	display: flex;
	flex-flow: row wrap;
	margin: 0 0 2em 0;
	width: 100%;
	font-size: 123.1%;
	line-height: 1.8;
}
.topCEO dt {
	flex-basis: 15%;
	padding: 20px;
/*	background-color: #f1f1f1;*/
	border-bottom: 1px solid #ddd;
	font-weight: 700;
}
.topCEO dd {
	flex-basis: 75%;
	padding: 20px;
	background-color: #fff;
	border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 1069px) {
.topCEO {
	padding: 60px 40px;
}
.topCEO h2 {
	font-size: 197%;
}
.topCEO .photo {
	margin: 0 auto;
	width: 100%;
}
.topCEO .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.topCEO dl {
	flex-flow: column;
}
}
@media screen and (max-width: 559px) {
.topCEO {
	padding: 60px 20px;
}
.topCEO h2 {
	font-size: 197%;
}
.topCEO .photo {
	margin: 0 auto;
	width: 100%;
}
.topCEO .photo img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}
.topCEO dl {
	flex-flow: column;
}
}

/* topContact
------------------------------------------------------------ */
.topContact {
	padding: 90px 90px;
}
.topContact h2 {
	position: relative;
	margin: 0 0 1em 0;
	color: #000;
	font-size: 293%;
	font-weight: 700;
	text-align: center;
}

/* contactform
------------------------------------------------------------ */
.contactform {
	padding: 90px 110px;
}
.contactform h1 {
	margin: 0 0 1em 0;
	color: #000;
	font-size: 293%;
	font-weight: 700;
	text-align: center;
}
.contactform input {
    height: 2.4em;
    padding: 5px 15px;
    border-radius: 4px;
    border: none;
    box-shadow: 0 0 0 1px #999 inset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.contactform textarea {
    width: 100%;
    padding: 15px;
    border-radius: 4px;
    border: none;
    box-shadow: 0 0 0 1px #999 inset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.contactform input:focus,
.contactform textarea:focus {
    outline: 0;
    box-shadow: 0 0 0 2px #000 inset;
}
.contactform input.name {
	width: 400px;
}
.contactform input.email {
	width: 400px;
}
.contactform input.button {
	margin: 0 10px;
}
.contactform .formButton {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
}
.contactform dl {
	font-size: 116%;
	font-weight: 700;
}
.contactform dt {
	float: left;
	margin: 0 0 2em 0;
	line-height: 1.5;
}
.contactform dd {
	margin: 0 0 2em 10em;
	line-height: 1.5;
}
@media screen and (max-width: 559px) {
.contactform {
	padding: 60px 20px;
}
.contactform h1 {
	font-size: 197%;
}
.contactform textarea {
    width: 90%;
}
.contactform dt {
	float: none;
	margin: 0 0 1em 0;
	line-height: 1.5;
}
.contactform dd {
	margin: 0 0 1em 0;
	line-height: 1.5;
}
}

/* footer
------------------------------------------------------------ */
.footer {
	padding: 90px 90px 0 90px;
	background: #000;
	color: #fff;
}
.footer .logo {
	margin: 0 0 1em 0;
	text-align: center;
}
.footer .logo img{
	width: 200px;
}
.footer h2 {
	margin: 0 0 .5em 0;
	font-size: 123.1%;
	line-height: 1.8;
/*	font-weight: 700;*/
	text-align: center;
}
.footer address {
	margin: 0 0 2em 0;
	font-size: 108%;
	line-height: 1.8;
	text-align: center;
}
.copyright {
	padding: 0 0 1em 0;
	text-align: center;
	color: #ccc;
}

/* ページの先頭に戻る
------------------------------------------------------------ */
.gotop {
	clear: both;
	margin: 0 10px;
	text-align: right;
	font-size: 77%;
}
#pagetop {
    position: fixed;
    bottom: 10px;
    right: 10px;
	z-index: 100;
}

/* Clear Floated Elements
------------------------------------------------------------ */

/* http://sonspring.com/journal/clearing-floats */

.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

