@charset "UTF-8";
@import url("grid.css");

:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
    --base-color: #000;
    --link-color: #666;
    --linkhover-color: #999;
    --back-color: #f7f7f7;
    --border-color: #ccc;
    --white-color: #fff;
    --nav-color: #333;
}
body {
    background: var(--white-color); 
    color: var(--base-color);
}

img {
	max-width:100%;
	height: auto;/*高さ自動*/
}
a {
    display:block;
    color: var(--link-color);
    text-decoration-line: none;
}
a:hover { 
    color: var(--linkhover-color);
}
h2 {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    text-align: center;
}
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--link-color);   
}
.button {
    margin: 1rem;
}

/*ヘッダー
-------------------------------------*/
/*header{ position:fixed; height:150px; z-index:9999999; background-color:#FFF;}*/


.header {
	display: flex;
    flex-direction: row;
    padding: 2rem 0 0 0;
    margin-bottom: 0.5rem;
}
.sitetitle {
}
.sitetitle img { width:250px;
}
.header-box {
	margin-left: auto;
	margin-top: 8px;
}
.contact-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    width: 300px;
    font-size: 16px;
    text-decoration: none;
    background-color: var(--link-color);   
    color: var(--white-color);
    box-shadow: 1px 1px var(--base-color);
}
.contact-button::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--white-color);
    border-right: 2px solid var(--white-color);
    transform: rotate(45deg);
}
.contact-button:hover {
    opacity: 0.9;
    color: var(--white-color);
}
/*スマホ用メニュー
-------------------------------------*/	
.spnavi {
    display: none;
}
nav ul {
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
	margin: 1rem 0 0 0;
}
nav li {
	flex: 1 0 auto;
}
nav li a {
    text-decoration: none;
    text-align: center;
    width: 100%;
}
nav a:hover {
    background-color: var(--back-color);   
}
nav a {
    padding: 0.5rem;
    color: var(--nav-color);
}

@media screen and (min-width: 769px){
/* PC時はMENUボタンを非表示 */
#open,#close {
    display: none !important;
}

#navi {
    display: block !important;
}
}

@media screen and (max-width: 768px){
.header {
	flex-direction: column;
    margin-bottom: 10px;
}
.header #open,#close  {
    position: absolute;
    top: 25px;
    right: 12px;
}
nav ul {
	flex-direction: column;
}
.header li {
	padding-top: 0;
}
/* スマホ時はMENUボタンを表示 */
#open {
    display: block;
    background: url(../img/button.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 25px;
    right: 12px;
}
#close  {
    display: block;
    background: url(../img/button2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 25px;
    right: 12px;
}
/* スマホ時はメニューを非表示 */
#navi {
    display: none;
}
}
    
/*メイン画像
-------------------------------------*/
#mainimg {

    width: 100%;
}
#mainimg h1 {
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 2;
    text-align: center;
    color: var(--white-color);
    text-shadow: 1px 2px 3px var(--link-color); 
}

/*メインコンテンツ
-------------------------------------*/
main {
    margin: 5rem 0 0 0;
}
section {
	margin: 3rem 0;
	padding: 3rem 0;
}
.gray-back {
	background-color: var(--back-color);
    /*background: url('../img/gray-back.jpg'); gray-back.jpg背景画像を使用したい時にオンにしてください*/
    background-size: cover;
}

/*ニュース
-------------------------------------*/
.news {
    margin: 0 auto;
    max-width: 980px;
    padding: 2rem;
}
.news-list{
    list-style: none;
  }
.news-list .item, .item p {
    margin-bottom: 0;
  }
.news-list .item a{
    display: flex;
    flex-wrap: wrap;
    color: var(--nav-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}
.news-list .item:first-child a{
    border-top: 1px solid var(--border-color);
}
.news-list .item .date{
    min-width: 120px;
    color: var(--link-color);
}
.news-list .item a:hover .title{
    color: var(--base-color);
}

/*キャッチコピー
-------------------------------------*/
.catch {
    text-align: center;
    line-height: 1.7;
}
.center {
	text-align: center;
	margin-bottom: 4rem;
}

/* Googleマップ
-------------------------------------*/
.gmap {
	margin: 3rem 0;
}

/* cv */
.cv {
  background: url("../img/cv.png") no-repeat;
  background-size: cover;
}
.cv__inner {
  width: 90vw;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  padding: 2.5rem;
}
.cv__heading {
  margin: 1.33rem auto;
  text-align: center;
  font-weight: 700;
}
.cv__text {
  font-weight: 400 !important;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .cv__text {
    /*br {
        	display: none;
        }*/
  }
}
.cv__image {
  text-align: center;
}
.cv__image img {
  width: 100%;
  height: auto;
}
.cv__image img {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .cv__image {
    padding: 0 0 6vw;
  }
}
.cv__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 1.33rem;
}
.cv__button li {
  width: 80%;
  margin: 0 auto;
  list-style:none;
}
.cv__button a {
  transition: all 0.2s ease-in-out;
  display: block;
}
.cv__button a:hover {
  opacity: 0.7;
}
.cv__tel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 1.33rem;
  width: 75%;
}
.cv__tel li {
  width: 47%;
  list-style:none;
}
.cv__tel a {
  transition: all 0.2s ease-in-out;
  display: block;
}
@media screen and (max-width: 768px) {
  .cv__inner {
    padding: 1rem;
  }
  .cv__heading {
    margin: .89rem auto;
    line-height: 160%;
    font-size: 4.56vw;
  }
  .cv__button {
    display: block;
    margin: 0 auto 1.33rem;
  }
  .cv__button li {
    width: 100%;
    margin: 0 0 1rem;
  }
  .cv__button a:hover {
    opacity: 1;
  }
  .cv__tel {
    margin: 0 auto 1.33rem;
    width: 100%;
  }
  .cv__tel li {
    width: 48%;
  }
  .cv__text {
    font-size: .67rem;
  }
}



/*フッター
-------------------------------------*/
/*
		Footer
------------------------------------------------------------ */
.footer {
/*  background: #000;*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
/*  color: #fff;*/
}
@media screen and (max-width: 768px) {
  .footer {
/*    background-image: url("../images/footer-sp.png");*/
    padding: 0 0 20vw;
  }
}
.footer .company {
  width: 90vw;
  max-width: 1200px;
  margin: 0 auto;
}
.footer .company__heading {
  width: 400px;
  padding: 4.5rem 0 2rem;
  font-size:2.5rem;
}
.footer .company__list {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}
.footer .company__list-item {
  width: calc((100% - 2rem) / 2);
  padding: 0 0 2rem;
  position: relative;
  /*&::after {
        	content: '';
        	background: white;
        	width: 100%;
        	height: 1px;
        	display: block;
        	position: absolute;
        	top: .5em;
        	right: 0;
        }*/
}
.footer .company__list-item .heading {
  padding: 0 0 1rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.footer .company__list-item .text {
  line-height: 1.6em;
  font-size: 1.5rem;
}
.footer .company__list-item01::after {
  width: calc(100% - 3rem);
}
.footer .company__list-item02::after {
  width: calc(100% - 5rem);
}
.footer .company__list-item03::after {
  width: calc(100% - 7rem);
}
.footer .company__list-item04::after {
  width: calc(100% - 6rem);
}
.footer .company__list-item05::after {
  width: calc(100% - 6rem);
}
@media screen and (max-width: 768px) {
  .footer .company__heading {
    width: 80vw;
    margin: 0 auto;
    padding: 8vw 0;
  }
  .footer .company__list-item {
    width: 100%;
    padding: 0 0 5vw;
  }
  .footer .company__list-item .heading {
    padding: 0 0 3vw;
  }
  .footer .company__list-item .text {
    font-size: .88rem;
  }
}
.footer .copyright__text {
  width: 90vw;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 0 1rem;
  font-size: .7rem;
  text-align: center;
}
/*電話
-------------------------------------*/
a.tel {
    display: inline-block;
}
@media screen and (min-width: 768px){
a[href*="tel:"] { /* PC時は電話番号無効 */
    pointer-events: none;
    cursor: default;
}
}
/*お問い合わせ
-------------------------------------*/
.contact-box {
	border: 1px solid var(--border-color);
	text-align: center;
	padding: 2rem 0;
}
.table {
	margin: 4rem 0;
}
.table th {
	width: 150px;
}
input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea { 
    background-color: var(--white-color);
}
/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 1rem 0;
    background-color: var(--link-color);
}
.copyright a {
    color: var(--white-color);
    text-decoration: none;
	display: inline;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: block;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    background: var(--white-color);
    border: 1px solid var(--linkhover-color);
    padding-top: 30px;
    text-align: center;
    text-decoration: none;
    opacity: 0.8;
}
#pagetop::after{
    content: "";
    display: block;
    border-top: 2px solid var(--base-color);
    border-right: 2px solid var(--base-color);
    width: 25%;
    height: 25%;
    top: 45%;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    transform: rotate(-45deg);
}
#pagetop:hover{
    opacity: 0.5;
}

/* 下層ページヘッダー
-------------------------------------*/
.subimg {
    height: 350px;
    background: url('../img/subimg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 2rem;
}
.subimg h1 {
    height: 350px;
    line-height: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    text-shadow: 1px 2px 3px var(--link-color); 
    margin: 0;
}
/* パンくずリスト
-----------------------------------*/
.breadcrumb {
    margin: 0 0 1em 0;
    padding: 0;	
}
.breadcrumb li {
    list-style-type: none;
}
.breadcrumb li a {
    display: inline-block;
    color: var(--link-color);
}

/* 幅768px以下の表示
-------------------------------------*/
@media screen and (max-width: 768px){
	
/*ヘッダー
-------------------------------------*/
.header-box {
    display: none;
}	
/*スマホ用メニュー
-------------------------------------*/	
.spnavi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    text-decoration: none;
    background-color: var(--link-color);   
    color: var(--white-color);
}
.spnavi a {
    display: inline-block;
    color: var(--white-color);
}
.spnavi a:hover {
    opacity: 0.9;
    background-color: var(--link-color);   
    color: var(--white-color);
}
.spnavi::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--white-color);
    border-right: 2px solid var(--white-color);
    transform: rotate(45deg);
}
/*メイン画像
-------------------------------------*/
#mainimg h1 {
    height: 350px;
}
/*ニュース
-------------------------------------*/
.news-list .item .title{
    margin-top: 1em;
}
/*お問い合わせ
-------------------------------------*/
.table th {
	width: 100%;
	display: block;
}	
.table td {
	display: block;
}
}

@media screen and (min-width: 769px){
.pc-on{}
.smp-on{ display:none;}
.ctabtn{ display:none;}
}
@media screen and (max-width: 768px){
.pc-on{display:none;}
.smp-on{}
.ctabtn a{ 		position: fixed;	
		bottom:80px;
		right:5px; 
		opacity:0.7}
.ctabtn a:hover{
		opacity:1.0}
}

.f13em{ font-size:1.3em;}
.f14em{ font-size:1.4em;}
.f15em{ font-size:1.5em;}
.f16em{ font-size:1.6em;}
.f18em{ font-size:1.8em;}
.f20em{ font-size:2.0em;}
.bold{ font-weight:bold;}
.bold900{ font-weight: 900;}
.bold600{ font-weight: 600;}


.logo__list {
	 background-color:#fff;
	 padding:20px;
	text-align:center;
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 32px;
}
.logo__list li {

  list-style:none;
}

@media (min-width: 1025px) {
  .logo__list {
    margin-top: 40px;
    justify-content: flex-start;
    gap: 10px 40px;
  }
}
.logo__list > li > a {
  transition: 0.2s;

}
.logo__list > li > a:hover {
  opacity: 0.7;
}
.logo__list > li > img {
  height: 60px;
}
@media (min-width: 768px) {
  .logo__list > li > img {
/*  .logo__list > li > a img { */
    height: 85px;
  }
}























/**/