@charset "UTF-8";

/*///////////////////////////////////////
全体設定
///////////////////////////////////////*/
*,*:before,*:after {
 box-sizing: border-box;
}

hr{margin: 0;}

html {
 box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
 font-size: 62.5%;
 height: 100%;
 scroll-behavior: smooth;
 scroll-padding-top: 50px;
}

body {
 color: #333;
 /*font-family:  "ヒラギノ角ゴ ProN W3", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;*/
 font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
 background:#fff;
 font-size: 16px!important;
 font-weight: 400;
 line-height: 1.2;
 margin:0;
 padding:0;
 max-width: 100%;
 height: 100%;
}

/*フッター固定用*/
.wrapper{
 min-height: 100vh;
 position: relative;
 /*padding-bottom: 150px;*//*フッターの高さ*/
 box-sizing: border-box;
}
@media screen and (max-width: 767px) {
.wrapper{
 /*padding-bottom: 220px;*//*フッターの高さ*/
}
}

img {
 max-width:100%;
 height: auto;
}

a{
 text-decoration: none;
}

a:hover{
 opacity: 0.7;
 transition: 0.8s;
}

a:visited{
 /*color: #333!important;*/
}

ul{
 padding-left: 0;
}

/*フェードイン*/
/* 画面外にいる状態 */
.fadein {
 opacity : 0.1;
 transform : translate(0, 50px);
 transition : all 500ms;
}

/* 画面内に入った状態 */
.fadein.scrollin {
 opacity : 1;
 transform : translate(0, 0);
}

/*==================================================
順番に表示
親要素にclass名 delayScroll指定
===================================*/
/*.delayScroll-ani{
opacity: 0;
}*/
.fadeUp {
animation-name:delayfadeUp;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes delayfadeUp{
from {
 opacity: 0;
 transform: translateY(100px);
}
to {
 opacity: 1;
 transform: translateY(0);
  }
}



/* パンくず */
div#breadcrumb {
 font-size: 94%;
 background-color: rgba(243,243,243,1.00);
}

div#breadcrumb ul{
 padding:5px 5px 5px 20px;
 margin: 0;
}

div#breadcrumb  ul li{
 display:inline;
 line-height:20px;
 font-size: 0.7em;
}

/*///////////////////////////////////////
ヘッダー
///////////////////////////////////////*/
#header{
 display: flex;
 justify-content: space-between;
 align-items: center;
 width: 100%;
 height: 70px;
 position: absolute;
 z-index: 1;
 background-color: #333;
 transition: 0.5s;
}

.sitetitle{
 font-size: 1.3em;
 margin: 0;
}
.sitetitle a{
 color: #fff;
}
.sitetitle img{
 display: inline-block;
 margin: 0 auto;
 width: 220px;
}


#top-head {
 width: 100%;
  /*max-width: 1920px;*/
  /*height: 60px;*/
 height: 60px;
  /*background: rgba(0,0,0,1);*/
 background: #fff;
 /*opacity: 0.9;*/
 display: flex;
 align-items: center;
 /*position: fixed;*/
 z-index: 999;
 transition: 0.5s;
}
#top-head .inner {
  /*float: left;*/
 width: 90%;
 margin: 0 auto;
 display: flex;
 justify-content: space-between;
 align-items: center;
 transition: 0.5s;
}
/*logo style*/
.inner h1 a {
  color: #333;
  text-decoration: none;
  font-weight: normal;
  transition: 0.5s;
}
/*nav style*/
#top-head nav ul {
  display: flex;
  list-style-type: none;
  align-items: center;
  transition: 0.5s;
}
#top-head nav ul li {
 display: block;
 width: 150px;
 max-width: 100%;
 text-align: center;
 transition: 0.5s;
 border-left: 1px solid #333;
 height: 40px;
}
#top-head nav ul li span{
  display: block;
  text-align: center;
  font-size: 9px;
  color: #35BFF1!important;
}
/*nav link style*/
#top-head nav ul li a {
 text-decoration: none;
 display: block;
 /*padding: 16px;*/
 font-size: 14px;
 color: #333;
 font-weight: bold;
 line-height: 3;
 transition: 0.5s;
 height: 40px;
}
#top-head nav ul li a:hover {
  color: #0B52A0;
}
#nav_toggle {
  display: none;
}
img {
  /*margin-top: 60px;*/
  width: 100%;
}

/*============================
mobile style
============================*/
@media screen and (max-width:680px) {
/*hamburger menu style*/
  #nav_toggle {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
    top: 4px;
    z-index: 100;
  }
  #nav_toggle div {
    position: relative;
  }
/*hamburger menu close style*/
  #nav_toggle span {
    display: block;
    height: 2px;
    background: #333;
    position:absolute;
    width: 100%;
    left: 0;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  #nav_toggle span:nth-child(1) {
    top:0px;
  }
  #nav_toggle span:nth-child(2) {
    top:10px;
  }
  #nav_toggle span:nth-child(3) {
    top:20px;
  }
/*hamburger menu open style*/
  .open #nav_toggle span:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav_toggle span:nth-child(3) {
    top: 10px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
/*nav style*/
  #top-head nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 1040px;
    background: #fff;
    z-index: 999;
  }
  #top-head nav ul {
    display: block;
    width: 100%;
  }
#top-head nav ul li{
 border-left: none;
}
  #top-head nav ul li {
    text-align: center;
    border-bottom: 1px solid #dcdcdc;
  }
  #top-head nav ul li:last-child {
    border: none;
  }
/*nav link style*/
  #top-head nav ul li a {
    display: block;
	color: #333;
	height: 55px;
	line-height: 4.4;
  }

/*SP時メニュー内部*/
	.innerSP{
	 display: block!important;
	 width: 100%;
	}
	.menu{
	 display: block!important;
	 width: 100%!important;
	}
	#top-head nav ul li{
	 display: block!important;
	 width: 100%!important;
	 height: 55px;
	}
}


/* スクロールしてscroll-navクラスがついたときのヘッダーデザイン */
.scroll-nav {
  background: #fff!important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  height: 45px!important;
}
.scroll-nav .logo,
.scroll-nav ul li a {
  color: #333!important;
}
.scroll-nav #nav_toggle span{
  background: #333!important;
}
.scroll-nav nav{
 top: 45px!important;
 transition: 0.5s;
}



/*
#menu {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
 margin: 30px;
}

#menu-btn {
 display: none;
}

#menu-content {
 margin: 0;
 list-style-type: none;
}

#menu-content > li {
 position: relative;
 float: left;
  -webkit-transition: all 0.2s;
 transition: all 0.2s;
}

#menu-content > li > a {
 display: block;
 padding: 0 15px;
 line-height: 40px;
 color: #fff;
 font-size: 15px;
 text-decoration: none;
}

#menu-content > li > a > .blogicon-chevron-down {
 margin-right: 5px;
}

#menu-content > li > ul.second-content {
 visibility: hidden;
 opacity: 0;
 position: absolute;
 padding-left: 0;
 list-style-type: none;
 background-color: #fff;
}

#menu-content > li:hover > ul.second-content {
 visibility: visible;
 opacity: 1;
  -webkit-transition: opacity 0.2s, visibility 0.2s;
 ransition: opacity 0.2s, visibility 0.2s;
}

#menu-content > li > ul.second-content > li {
 text-align: center;
 width: 110px;
}

#menu-content > li > ul.second-content > li > a {
 display: block;
 line-height: 40px;
 font-size: 12px;
 text-decoration: none;
}

#menu-content > li > ul.second-content > li > a:hover {
 background: #eee;
 color: #333;
  -webkit-transition: all 0.2s;
 transition: all 0.2s;
}
*/

/*固定ページ用*/
/*
#header2{
 display: flex;
 justify-content: space-between;
 align-items: center;
 width: 100%;
 height: 70px;
 background: #fff;
}
#header2 a,
#header2 li a{
 color: #333;
}


@media screen and (max-width: 960px) {
nav {
 position: fixed;
 top: 0;
 right: -300px;
 bottom: 0;
 width: 70%;
 background: #fff;
 overflow-x: hidden;
 overflow-y: auto;
    -webkit-transition: all 0.3s;
 transition: all 0.3s;
 z-index: 10;
 opacity: 0;
  }
.open nav {
 right: 0;
 opacity: 1;
 background: #fff;
}
nav .inner {
 padding: 25px;
}
nav .inner ul {
 list-style: none;
 margin: 0;
 padding: 0;
}
nav .inner ul li {
 position: relative;
 margin: 0;
}
nav .inner ul li a {
 display: block;
 color: #333;
 font-size: 14px;
 text-decoration: none;
    -webkit-transition-duration: 0.2s;
 transition-duration: 0.2s;
}
.toggle_btn {
 display: block;
 position: fixed;
 top: 15px;
 right: 20px;
 width: 30px;
 height: 30px;
    -webkit-transition: all 0.3s;
 transition: all 0.3s;
 cursor: pointer;
 z-index: 11;
}
.toggle_btn span {
 position: absolute;
 left: 0;
 width: 30px;
 height: 1px;
 background-color: #333;
 border-radius: 4px;
    -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.toggle_btn span:nth-child(1) {
 top: 4px;
}
.toggle_btn span:nth-child(2) {
 top: 14px;
}
.toggle_btn span:nth-child(3) {
 bottom: 4px;
}
.open .toggle_btn span {
 background-color: #333;
}
.open .toggle_btn span:nth-child(1) {
 -webkit-transform: translateY(10px) rotate(-315deg);
 transform: translateY(10px) rotate(-45deg);
}
.open .toggle_btn span:nth-child(2) {
 opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
 -webkit-transform: translateY(-10px) rotate(315deg);
 transform: translateY(-10px) rotate(45deg);
}
#mask {
 display: none;
    -webkit-transition: all 0.3s;
 transition: all 0.3s;
}
.open #mask {
 display: block;
 position: fixed;
 top: 0;
 right: 0;
 width: 100%;
 height: 100%;
 background: #333;
 opacity: 0.5;
 z-index: 9;
 cursor: pointer;
  }
#menu-content{
 margin-top: 30px;
}
#menu-content > li {
 width: 100%;
 margin-bottom: 15px;
}
#menu-content > li:hover {
 background: none;
}
#menu-content > li > a {
 height: 100%;
 padding: 0px;
 font-size: 100%;
 color: #fff;
}
#menu-content > li > ul.second-content {
 visibility: visible;
 opacity: 1;
 width: 100%;
 position: relative;
    -webkit-box-shadow: none;
 box-shadow: none;
 background-color: transparent;
}
#menu-content > li > ul.second-content > li {
 width: 100%;
 text-align-last: left;
}
#menu-content > li > ul.second-content > li > a {
 padding-left: 15px;
 color: #fff;
}
#menu-content > li > ul.second-content > li > a:hover {
 background: none;
}
.toggle_wrap {
 display: block;
 background-color: #00459B;
 border-radius: 50%;
 width: 50px;
 height: 50px;
 cursor: pointer;
 position: fixed;
 right: 10px;
 top: 5px;
}
.open .toggle_wrap {
 display: block;
 background-color: #00459B;
 border-radius: 50%;
 width: 50px;
 height: 50px;
 cursor: pointer;
 position: fixed;
 right: 10px;
 top: 5px;
 z-index: 10;
}
}
*/


/*サブメニュー用*/
ul.sub-menu {
 display: none!important;
 position: absolute;
 background-color: #fff;
 padding: 10px;
 border: none;
 z-index: 1;
 transition: 1s!important;
}

@media (min-width: 768px) {
  /* スマホ以外（タブレットやPC）ではホバーで表示 */
.menu-item:hover .sub-menu {
 display: block!important;
 }
}

/* サブメニューの各アイテムのスタイル */
ul.sub-menu li {
 margin: 0;
 border-left: none!important;
}

/* サブメニューのリンクスタイル */
ul.sub-menu li a {
 color: #333;
 text-decoration: none;
 display: block;
}

ul.sub-menu li a:hover {
 background-color: #f0f0f0;
 color: #000;
}

/*///////////////////////////////////////
アイコン
///////////////////////////////////////*/
@font-face {
  font-family: 'icomoon';
  src:  url('fonts/icomoon.eot?tc7q2y');
  src:  url('fonts/icomoon.eot?tc7q2y#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?tc7q2y') format('truetype'),
    url('fonts/icomoon.woff?tc7q2y') format('woff'),
    url('fonts/icomoon.svg?tc7q2y#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-menu:before {
  content: "\e9bd";
}

/*擬似要素で使う場合は*/
/*
.btn-y:after{
 font-family: "icomoon";これ必須
 content: "\ea42";
}
*/

/*///////////////////////////////////////
見出し
///////////////////////////////////////*/
h2{
 font-size: 2em;
 color: #0b52a0;
}
@media screen and (max-width: 767px) {


}

.headline01{
 font-size: 2.3em;
 color: #0b52a0;
 display: block;
 width: 100%;
 margin: 0;
}
.headline01 span::before{
 content: "／";
}
.headline01 span{
 font-size: 0.4em;
 color: #333;
 display: inline-block;
 margin-left: 10px;
 font-weight: bold;
}

.change01{
 color: #00abd3;
}
@media screen and (max-width: 767px) {


}

/*///////////////////////////////////////
メインコンテンツ
///////////////////////////////////////*/

/*メインイメージ*/
.mainimg{
 display: block;
 position: relative;
}
.mainimg img,
.mainimg video{
 width: 100%;
 height: 750px;
 object-fit: cover;
 user-drag: none;
 -webkit-user-drag: none;
 -moz-user-select: none;
}

.mainimg02{
 display: block;
 /*padding: 0px 0px 50px;*/
}

.img-dark img{
 display: block;
 background-color: #333;
 opacity: 0.7;
}


@media screen and (max-width: 767px) {
.mainimg img,
.mainimg video{
 height: 600px;
}
}

.imgcontent{
 color:#fff;
 font-weight: bold;
 position: absolute;
 top:50%;
 left: 5%;
 text-shadow: rgba(0, 0, 0, 0.1) 1px 1px 30px, rgba(0, 0, 0, 0.1) -1px 1px 30px, rgba(0, 0, 0, 0.1) 1px -1px 30px, rgba(0, 0, 0, 0.1) -1px -1px 30px;
 font-size:3em;
 line-height: 1.1;
}

#text1, #text2, #text3 {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  transform: scaleX(0);
  transform-origin: left;
}

#text1 {
  animation: s1 6s forwards;
}
@keyframes s1 {
  from { transform: scaleX(0); }
  33% { transform: scaleX(1); }
  to { transform: scaleX(1); }
}

#text2 {
  animation: s2 6s forwards;
}
@keyframes s2 {
  0% { transform: scaleX(0); }
  33% { transform: scaleX(0); }
  66% { transform: scaleX(1); }
  to { transform: scaleX(1); }
}

#text3 {
  animation: s3 6s forwards;
}
@keyframes s3 {
  0% { transform: scaleX(0); }
  66% { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.text3-size{
 font-size: 15px;
}
@media screen and (max-width: 767px) {
.text3-size{
 font-size: 9px;
}
}


/*メインスライダー*/
.mainslider .sliderImg img ,
.mainslider .sliderImg video{
 /*height: 100vh;*/
 height: 100%;
 /*margin: 0 auto;*/
 margin: 0px auto;
 max-height: 100%;
 max-width: 100%;
 object-fit: cover;
 width: 100%;
}
.sliderImg{
 position: relative;
}
.slideContent{
 display: block;
 width: 100%;
 margin: 0 auto;
 position: absolute;
 top: 50%;left: 60%;
 /* -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);*/
 transform: translate(-50%,-50%);
 z-index: 150;
 color: #fff;
 font-size: 3em;
 font-weight: bold;
 text-shadow: rgba(0, 0, 0, 0.1) 1px 1px 30px, rgba(0, 0, 0, 0.1) -1px 1px 30px, rgba(0, 0, 0, 0.1) 1px -1px 30px, rgba(0, 0, 0, 0.1) -1px -1px 30px;
}

.dots-class button {
 display: none;
 -webkit-appearance: none;
 -moz-appearance: none;
 appearance: none;
 outline: none;
 padding: 0;
 border: none;
 background-color: transparent;
}
.dots-class {
 display: flex;
 justify-content: center;
}
.dots-class li {
 width: 13px;
 height: 13px;
 background-color: #ddd;
 border-radius: 50%;
 margin-right: 10px;
 cursor: pointer;
 transition: background-color .5s ease;
 list-style: none;
}
.dots-class li.slick-active {
 background-color: #000066;
}
.dots-class li:hover {
 background-color: #000066;
}
.dots-class li:last-child {
 margin-right: 0;
}

.slick-arrow:before{
 content:""!important;
}
.slick-arrow:before{
 content:""!important;
 width: 100%!important;
 height: 100%!important;
 position: absolute;
 top: -10px;
 left: 0;
}
.slick-next{
 right: 0px!important;
 width: 50px;
 height: 50px;
}
.slick-prev{
 left: 0px!important;
 z-index: 1;
 width: 50px;
 height: 50px;
}
.slick-next:before{
 background: url(images/arrow_r.png)!important;
 background-size: contain!important;
}
.slick-prev:before{
 background: url(images/arrow_l.png)!important;
 background-size: contain!important;
}
@media screen and (max-width: 767px) {
.dots-class li {
 width: 8px;
 height: 8px;
}
.slick-next{
 width: 25px;
 height: 25px;
}
.slick-prev{
 z-index: 1;
 width: 25px;
 height: 25px;
}
}


/*スライダー上文字*/
.slick-wrap{
 position: relative;
 z-index: 0;
 width: 100%;
}
.slik-txt{
 position: absolute;
 display: block;
 z-index: 1;
 top:38%;
 left: 5%;
 margin: auto;
 color: #fff;
 font-size: 3em;
 font-weight: bold;
 text-shadow: 0 0 10px rgba(0,0,0,1);
}
@media screen and (max-width: 767px) {
.slik-txt{
 top:33%;
 left: 8%;
 font-size: 1em;
}
}



/*コンテンツ領域*/
main {
 /*margin: 6rem 0 0 0;*/
 margin: 5rem 0;
}
section {
 /*margin: 5rem 0;
 padding: 3rem 0;*/
 padding: 50px 0;
}

.center {
 text-align: center;
 /*margin-bottom: 4rem;*/
}
.container {
 margin: 0 auto;
 max-width: 1200px;
 padding: 0 2.0rem;
 position: relative;
}


/*///////////////////////////////////////
インデックスページ
///////////////////////////////////////*/
.topcontent-flex{
 display: flex;
 justify-content: center;
 margin-bottom: 80px;
}
.newsBox{
 display: block;
/* width: calc(100%/2);*/
 width: 100%;
 background-color: #e1f1ff;
 padding: 20px;
}
.newsBox-inner,
.eventBox-inner{
 display: block;
 background-color: #fff;
 padding: 20px;
}
.newsBox-inner h2{
 margin: 0px auto;
}
.eventBox{
 display: block;
 width: calc(100%/2);
 background-color: #00abd3;
 padding: 20px;
}
.newsBox-inner h2,
.eventBox-inner h2{
 margin: 0px auto;
}
@media screen and (max-width: 767px) {
.topcontent-flex{
 flex-wrap: wrap;
}
.newsBox{
 width: 100%;
}
.eventBox{
 width: 100%;
}
}

.aboutBox{
 display: block;
 width: 550px;
 background-color: #fff;
 padding: 40px;
}
.aboutTxt{
 font-size: 14px;
 line-height: 1.8;
 text-align: left;
}
@media screen and (max-width: 767px) {
.aboutBox{
 width: 100%;
 padding: 20px;
}
}

/*///////////////////////////////////////
ボタン
///////////////////////////////////////*/
.btn01 {
 display: block;
 width: 220px;
 max-width: 100%;
 background-color: #0b52a0;
 text-align: center;
 margin: 20px 0 0;
 border-radius: 3px;
 color: #fff;
 padding: 5px 15px;
 font-size: 14px;
 font-weight: bold;
}
.btn01:hover{
 color: #fff!important;
}
.btn01:visited{
 color: #fff!important;
}
@media screen and (max-width: 767px) {
.btn01 {
  margin: 30px 0;
}
}


/*2*/
a.btn02 {
 display: flex;
 justify-content: space-between;
 align-items: center;
 text-align: center;
 text-decoration: none;
 width: 250px;
 margin: 0px 0px 0px 30px;
 padding: 1rem 4rem;
 font-weight: bold;
 background: #333;
 color: #fff!important;
 position: relative;
 transition: 0.5s;
 border: 1px solid #fff;
}
a.btn02::before {
 content: '';
 position: absolute;
 top: calc(50% - 2px);
 right: 1em;
 transform: translateY(calc(-50% - 2px)) rotate(45deg);
 width: 10px;
 height: 1px;
 background: #fff;
}
a.btn02::after {
 content: '';
 position: absolute;
 top: 50%;
 right: 1em;
 transform: translateY(-50%);
 width: 30px;
 height: 1px;
 background-color: #fff;
}
a.btn02:hover {
 background: #fff;
 color: #333!important;
 opacity: 1;
}
a.btn02:hover::before,
a.btn02:hover::after{
 background: #333;
}

/*3*/
.btn03 {
 display: flex;
 align-items: center;
 justify-content: center;
 line-height: 1;
 text-decoration: none;
 color: #fff!important;
 font-size: 18px;
 border-radius: 0px;
 width: 300px;
 height: 40px;
 font-weight: bold;
 border: 0.8px solid #fff;
 transition: 0.3s;
 box-shadow: 3px 3px 0px 0px rgba(20,70,105,1);
 background-color: #1D5881;
 margin: 20px auto;
}

.btn03:hover {
 box-shadow: 0 0 #1D5881;
 color: #fff;
 background-color: #1D5881;
}

/*///////////////////////////////////////
セクション区切り
///////////////////////////////////////*/
.aboutBG{
 background: url(./images/aboutBG.jpg) no-repeat center center / cover;
 background-attachment: fixed;
}



/*///////////////////////////////////////
固定ページタイトルエリア
///////////////////////////////////////*/
.pagetitle{
 display: flex;
 justify-content: center;
 align-items: center;
 font-size: 80%;
 font-weight: bold;
 height: 150px;
 /*padding-top: 60px;*/
}

/*サービス一覧ページタイトルエリア*/
.pagetitle-base{
 background: url(./images/titleBG00.jpg) no-repeat center center / cover;
 /*background-attachment: fixed;*/
 background-color: #fff;
}

.pagetitle-service{
 background: url(./images/titleBG2.jpg) no-repeat center center / cover;
 /*background-attachment: fixed;*/
 background-color: #fff;
}

/*カーウォッシュページタイトルエリア*/
.pagetitle-car-wash{
 background: url(./images/titleBG5.jpg) no-repeat center center / cover;
 /*background-attachment: fixed;*/
 background-color: #fff;
}

/*カーコーティングページタイトルエリア*/
.pagetitle-car-coating{
 background: url(./images/titleBG6.jpg) no-repeat center center / cover;
 /*background-attachment: fixed;*/
 background-color: #fff;
}

/*その他サービスページタイトルエリア*/
.pagetitle-other{
 background: url(./images/titleBG7.jpg) no-repeat center center / cover;
 /*background-attachment: fixed;*/
 background-color: #fff;
}

/*プライバシーポリシーページタイトルエリア*/
.pagetitle-privacy{
 background: url(./images/titleBG3.jpg) no-repeat center center / cover;
 /*background-attachment: fixed;*/
 background-color: #fff;
}

/*会社概要sページタイトルエリア*/
.pagetitle-company{
 background: url(./images/titleBG4.jpg) no-repeat center center / cover;
 /*background-attachment: fixed;*/
 background-color: #fff;
}

/*お問い合わせページタイトルエリア*/
.pagetitle-contact{
 background: url(./images/titleBG1.jpg) no-repeat center center / cover;
 /*background-attachment: fixed;*/
 background-color: #fff;
}



.pagetitle h2{
 margin: 0 auto;
 color: #fff!important;
	/*
 text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0-1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF;
	*/
}



/*///////////////////////////////////////
会社概要
///////////////////////////////////////*/


.kaisya-gaiyou {
  border-collapse: collapse;
  width: 100%;
}

.kaisya-gaiyou th,
.kaisya-gaiyou td {
  border-bottom: 1px solid #dbe1e8;
  padding: 15px;
}

.kaisya-gaiyou th {
  /*background: #f9fafc;*/
  text-align: left;
  width: 200px;
}

@media only screen and (max-width: 800px) {
  .kaisya-gaiyou tr,
  .kaisya-gaiyou th,
  .kaisya-gaiyou td {
    display: block;
    width: auto;
  }

  .kaisya-gaiyou tr:first-child {
    border-top: 1px solid #dbe1e8;
  }

  .kaisya-gaiyou th,
  .kaisya-gaiyou td {
    border-top: none;
  }
}


/*///////////////////////////////////////
お問い合わせフォーム
///////////////////////////////////////*/


#cf7-area {
 width:100%;
 margin: 0 auto;
}

.cf7-item {
 display: flex;
 align-items: flex-start;
 justify-content: center;
 margin: 0 0 1.75em;
 border-bottom: 1px solid #ddd;
 padding-bottom: 10px;
}

.cf7-q {
 width: 30%;
}

.cf7-a {
 width: 60%;
}

/* 各項目共通 */
#cf7-area label{
 font-weight:bold;
}

#cf7-area input[type="text"],#cf7-area input[type="email"],#cf7-area input[type="tel"],#cf7-area textarea {
 width: 100%;
 padding: 10px;
 font-size: 14px;
}

#cf7-area input[type="text"]:focus,#cf7-area input[type="email"]:focus,#cf7-area input[type="tel"]:focus,#cf7-area textarea:focus {
 background: rgba(214,226,255,1.00);
 border: 2px solid rgba(0,68,175,1.00);
 outline: 0;
}

#cf7-area input[type="checkbox"], #cf7-area input[type="radio"]{
 appearance: auto;
}

#cf7-area .wpcf7-list-item {
 display: block;
}

#cf7-area textarea{
 height:200px;
 padding: 0.625em 0.4375em;
}

.cf7-accept-check{
 text-align: center;
 margin: 50px auto;
}

.cf7-submit {
 width: 40%;
 margin: 0 auto;
 text-align: center;
}

#cf7-area input[type="submit"]{
 width: 100%;
 background-color: #191970;
 color: #ffffff;
 border-radius: 5px;
 font-size: 1.2em;
 padding: 1em 10px;
}

#cf7-area input[type="submit"]:hover{
 background-color:#ffffff;
 border: 2px solid #191970;
 color:#191970;
}

.cf7-btn{
 width: 40%;
 margin: 0 auto;
 text-align: center;
}

/*　必須ラベル　*/
.cf7-req{
 font-size:0.7em;
 padding: 4px 6px;
 border-radius: 5px;
 background: #eb2a2a;
 color: #ffffff;
 margin-left: 10px;
 display:inline-block;
}
/*任意ラベル*/
.cf7-any{
 font-size:0.7em;
 padding: 4px 6px;
 border-radius: 5px;
 background: #0b52a0;
 color: #ffffff;
 margin-left: 10px;
 display:inline-block;
}

@media screen and (max-width:768px){
.cf7-item {
 display: block;
}

#cf7-area label{
 display: block;
 margin-bottom: 10px;
}

.cf7-q {
 width: 100%;
 margin: 0;
}

.cf7-a {
 width: 100%;
}

#cf7-area input[type="text"], #cf7-area input[type="email"], #cf7-area input[type="tel"], #cf7-area textarea{
 margin-left: 0;
}

.cf7-submit{
 width: 90%;
}
}

/*///////////////////////////////////////
記事詳細ページ
///////////////////////////////////////*/

/*コメント削除*/
.wp-block-latest-comments__comment-meta{
 display: none;
}

/*本文エリア*/
.single-main{
 display: flex;
 justify-content: space-around;
 margin-bottom: 30px;
}
.single-area{
 display: block;
 width: 70%;
 height: fit-content;/*高さを記事のコンテンツに合わせる*/
 padding: 50px;
 /*border: 2px solid #ddd;*/
 /*border-top: 5px solid #002588;*/
}

/*ウィジェットエリア*/
.widget-area{
 display: block;
 width: 25%;
 padding: 25px;
 border-left: 1.5px solid #ddd;
 height: fit-content;
}
.widget-area section{
 padding: 0;
}
.widget-area ul{
  padding-left: 0;
}
.widget-area li{
 list-style: none;
}
.widget-area li a{
 display: block;
 color: #333;
 /*adding-top: 20px;*/
 border-bottom: 1px solid #ddd;
}
.widget-title{
 color: #002588;
 font-weight: bold;
 font-size: 1em;
}
.widget select{
 padding: 10px;
 width: 100%;
 font-size: 1em;
 border: none;
 border-bottom: 1px solid #ddd;
}
.wp-block-heading{
 display: block;
 margin: 10px 0;
 font-size: 1em;
}

@media screen and (max-width: 768px){
.single-main{
 flex-wrap: wrap;
}
.single-area{
 width: 100%;
 padding: 20px;
}
.widget-area{
 width: 100%!important;
 margin-top: 30px;
 padding: 5px;
 border-left: none;
 border-top: 1px solid #ddd;
}
}

/*アイキャッチ*/
.blog-detail__image{
 margin: 30px auto;
}

/*本文*/
.blog-detail__body{
 display: block;
 margin: 30px auto;
 text-align: left;
 /*padding: 30px 0;*/
}

/*前後の記事へ*/
.prev-next-link a {
  border-bottom: 1px #ddd solid;
  display: block;
  text-decoration: none;
  padding: 14px 40px;
  color: #0bd;
}
.prev-next-link a:hover {
  background-color: #f6f6f6;
}
.prev-next-link a:first-child {
  border-top: 1px #ddd solid;
}
.prev-next-label {
  font-size: .825rem;
  color: #333;
  margin-bottom: 10px;
}
/* Images */
.thumb-wrap {
  display: flex;
}
.thumb-wrap p {
  margin: 0 0 0 16px;
}
.thumb-wrap img {
  width: 80px;
  height: 100%;
}

/* Larger devices */
@media ( min-width: 600px) {
  .prev-next-link {
    display: flex;
  }
  .prev-next-link a {
    flex: 1;
  }
  .prev-next-link a,
  .prev-next-link a:first-child {
    border: none;
  }
  .next-link {
    text-align: right;
  }
}


/*///////////////////////////////////////
新発売ページ
///////////////////////////////////////*/
.newitem_h3{
 display: block;
 margin: 10px 0;
 border-bottom: 1px double #ddd;
 padding-bottom: 5px;
}
.newitemBox{
 margin-bottom: 30px;
}


/*///////////////////////////////////////
テキストボックス
///////////////////////////////////////*/
.txtBox{
 display: block;
 margin: 30px auto 50px;
 width: 100%;
 text-align: left;
 font-size: 14px;
 line-height: 1.5;
}
.txtBox_center{
 display: block;
 margin: 30px auto 50px;
 width: 100%;
 text-align: center;
 font-size: 14px;
 line-height: 1.5;
}
@media screen and (max-width: 768px){
.txtBox{
 text-align: left;
 margin: 10px auto 20px;
}
.txtBox_center{
 text-align: left;
}
}

/*///////////////////////////////////////
アーカイブページ
///////////////////////////////////////*/
/*
.blog-item{
 display: flex;
 align-items: center;
 margin: 30px auto;
 border-bottom: 1px dashed #ddd;
 color: #333;
 padding: 0px;
}
.blog-item__thumbnail-image{
 display: block;
 width: 100%;
 height: 150px;
 object-fit: cover;
}
.blog-item__content{
 margin-left: 30px;
}
.blog-item__title{
 margin: 0 0 20px;
 color: #333;
}
.blog-item__read{
 color: #333;
 font-size: 0.9em;
 font-weight: 500;
}
.blog-item__button{
 display: block;
 padding: 5px 10px;
 background-color: #333;
 color: #fff;
 text-align: center;
}
*/
.blog-list__wrap{
 display: block;
 padding: 10px 0;
 border-bottom: 1px dashed #ddd;
}


/*アイキャッチ付き一覧　category-event.php　参照*/
.arciveTitle{
 font-size: 30px;
}
.arciveList{
 display: flex;
 /*flex-wrap: wrap;*/
 justify-content: space-between;
}
.arcive-inner{
 display: flex;
 flex-wrap: wrap;
 width: 73%;
}
.blog-list__list-item{
 display: block;
 width: calc(33% - 20px);
 margin: 10px;
}
.blog-img02{
 display: block;
 border-radius: 5px;
 width: 100%;
 overflow: hidden;
 height: 200px;
}
.blog-img02 img{
 width: 100%;
 height: 200px;
 object-fit: cover;
 border-radius: 5px;
 transition: transform .6s ease;
}
.blog-img02 img:hover{
 transform: scale(1.1);
}
.blog-item__thumbnail-image{
 display: block;
 width: 100%;
 height: 150px;
 object-fit: cover;
}
.blog-item__content{
 /*margin-left: 30px;*/
}
.blog-item__title{
 margin: 0 0 0px;
 color: #333;
 font-size: 15px;
}
.blog-item__read{
 color: #333;
 font-size: 0.9em;
 font-weight: 500;
}
.blog-item__button{
 display: block;
 padding: 5px 10px;
 background-color: #000;
 color: #fff;
 text-align: center;
}

.pagination{
 display: block;
 width: 100%;
}


@media screen and (max-width: 768px){
.arciveList,
.arcive-inner{
 display: block;
 width: 100%;
}
.blog-list__list-item{
 display: block;
 width: 95%;
 margin: 30px auto;
}
.blog-img02,
.blog-img02 img{
 border-radius: 10%;
}

}


/*ページャー*/
.page-numbers{
 display: flex;
 margin: 30px auto;
 align-items: center;
 justify-content: center;
}
.page-numbers{
 padding-left: 0;
}
.page-numbers li{
 list-style: none;
}
.page-numbers a{
 list-style: none;
 display: block;
 width: 50px;
 height: 50px;
 background: #002588;
 text-align: center;
 line-height: 50px;
 color: #fff;
 margin: 5px;
}
.page-numbers span{
 list-style: none;
 display: block;
 width: 50px;
 height: 50px;
 background: #fff;
 color: #002588;
 font-weight: bold;
 text-align: center;
 line-height: 50px;
}

@media screen and (max-width: 768px){
.blog-item{
 flex-wrap: wrap;
}
.blog-item__thumbnail-image{
 display: block;
 height: 100%;
}
.blog-item__title{
 display: block;
 margin: 10px auto;
}
.navigation{
 position: initial;
 opacity: 1;
 width: 100%;
}
}



/*///////////////////////////////////////
レスポンシブ表示
///////////////////////////////////////*/
@media screen and (max-width: 768px){

/*ヘッダー*/
#header{
 height: 60px;
}

.header {
 flex-direction: column;
 /*margin-bottom: 10px;*/
}

.sitetitle {
 font-size: 1.1em;
}

.header-box {
 display: none;
}


/*スライダー*/
.mainslider .sliderImg img, .mainslider .sliderImg video{
 height: 100vh;
}
.slideContent{
 font-size: 1.2em;
}


/*見出し*/
h2{
 font-size: 1.5em;
}

/*メインコンテンツ*/

.imgcontent{
 max-width: 90%;
 top:40%;
 font-size: 1.5em;
}

/*フッター*/
#nav ul{
 display: inline-block;
}
#nav li{
 display: inline-block;
 width: 160px;
}

}



/*///////////////////////////////////////
お知らせ
///////////////////////////////////////*/
.infoBG{
 background-image: repeating-linear-gradient(113deg, #262626, #262626 2px, #333 2px, #333 12px);
 background-attachment: fixed;
 padding-bottom: 50px;
}

.news-list2{
 list-style: none outside;
 margin: 0;
 padding: 0;
 line-height: 1;
}
.news-list2 .item a{
 display: flex;
 flex-wrap: wrap;
 flex-wrap: nowrap;
 text-decoration: none;
 align-items: center;
 color: #333;
 padding: 15px 0px 15px 0px;
}

.news-list2 .item {
  border-bottom: 1px solid #707070;
}

.news-list2 .item:first-child a{
 /* border-top: 1px solid #CCC;*/
}
.news-list2 .item .date{
  margin: 0;
  min-width: 120px;
  font-size: 13px;
  color: #999;
  padding: 0 20px 0 0;
}
.news-list2 .item .cate{
  display: inline-block;
  background-color: #002588;
  width: 100px;
  font-size: 16px;
  color: #fff;
  padding: 0px;
  margin: 0px 35px 0px 0px;
  text-align: center;
}

/*カテゴリーごとに色変え　クラス名はカテゴリースラッグ名と同じにする*/
.cate-event{
 display: inline-block;
 width: 100px;
 font-size: 16px;
 color: #fff;
 padding: 0px;
 margin: 0px 35px 0px 0px;
 text-align: center;
 background-color: #fcba03;
}
.news-list2 .item .title{
 margin: 0;
 width: 100%;
 text-align: left;
 font-size: 14px;
}
.news-list2 .item a:hover .title{
 color: #35BFF1;
}
.news-more{
 display: inline-block;
 font-weight: bold;
 margin-top: 15px;
 margin-bottom: 20px;
}

@media screen and (max-width: 767px){
.news-list2 .item a{
 flex-wrap: wrap;
 padding: 5px 0px;
}
.news-list2 .item .date{
 min-width: 100px;
}
.news-list2 .item .title{
 margin-top: 10px;
}
}



/*アイキャッチ付き*/
.blog-flex{
 display: flex;
 justify-content: flex-start;
 flex-wrap: wrap;
}
.blog-flex p{
 margin:5px;
}
.blog-flex li{
 list-style: none;
 width: calc(100%/3);
}
.blog-flex a{
 display: block;
 background-color: #fff;
 padding: 10px;
 margin: 5px;
}
.blog-flex a:hover{
 opacity: 0.9;
}
.blog-date{
 font-size: 0.8em;
 color: #000!important;
}
.blog-img img{
 width: 100%;
 height: 200px;
 object-fit: cover;
}
.blog-title{
 color: #333;
 font-weight: bold;
 text-align: left;
 font-size: 14px;
}
.blog-kakaku{
 display: block;
 text-align: left!important;
 color: #FF0004!important;
 font-weight: bold!important;
 font-size: 14px;
}

@media screen and (max-width: 767px){
.blog-flex li{
 width: 100%;
}
.blog-flex a{
 margin: 0;
}
}



/*///////////////////////////////////////
プライバシーポリシー
///////////////////////////////////////*/
.privacy_h3{
 display: block;
 background-color: #0b52a0;
 text-align: left;
 font-size: 1.2em;
 color: #fff;
 margin: 30px auto 0px;
 padding: 10px;
}


/*///////////////////////////////////////
フッター
///////////////////////////////////////*/
/*固定用*/
footer{
 width: 100%;
 color: #fff;
 text-align: center;
 padding: 30px 0;
 /*position: absolute;*/
 /*bottom: 0;*/
 /*height: 150px;*/
}

.footer {
 padding: 2rem;
 font-size: 15px;
 color: #333;
 background-color:#f9f9f9;
 margin-top: auto;
 font-weight: bold;
}

.footer a{
 /*font-weight: bold!important;*/
 color: #333!important;
}

.copyright {
 text-align: center;
 font-size: 12px;
 font-weight: normal;
 background-color: #0b52a0;
 color: #fff;
 padding: 10px;
}
.copyright a{
 color: #fff!important;
}

@media screen and (max-width: 767px) {
footer{
 /*height: 220px;*/
}
}


.footerMenu{
 text-align: left;
}
.footerMenu ul{
 display: flex;
 justify-content: center;
 list-style: none;
 padding-left: 0;
 text-align: center;
}
.footerMenu li{
 display: block;
 margin: 0 20px;
}
.footerMenu  > li > a{
 display: block;
 padding: 0 15px;
 line-height: 40px;
 font-size: 14px;
 text-decoration: none;
}
.footerMenu i{
 vertical-align: middle;
}
@media screen and (max-width: 767px){
.footerMenu ul{
 /*display: block;*/
}
}


.f-contact{
 display: block;
 text-align: center;
 font-size: 25px;
 font-weight: bold;
 margin: 10px auto;
 line-height: 1;
}

.sns-wrap{
 display: flex;
 justify-content: center;
 align-items: center;
 margin: 30px auto;
}
.sns-wrap a{
 display: block;
 width: 40px;
 margin: 0 2px;
}
