@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;*/
 font-family: "Noto Sans JP", sans-serif!important;
 background:#fff;
 font-size: 16px!important;
 font-weight: 400;
 line-height: 1.2;
 margin:0;
 padding:0;
 max-width: 100%;
 height: 100%;
}

/*簡易表示切り替え用*/
.pc { display: block !important; }
.sp { display: none !important; }
@media only screen and (max-width: 750px) {
.pc { display: none !important; }
.sp { display: block !important; }
}
@media only screen and (max-width: 750px) {
img { max-width: 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: inherit!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: block;
 margin: 0 auto;
 width: auto;
 max-height: 45px;
}

#top-head {
  width: 100%;
  /*max-width: 1920px;*/
  /*height: 60px;*/
  height: 70px;
  background: rgba(0,0,0,1);
  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: #fff;
  text-decoration: none;
  font-weight: bold;
  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;
}
#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;
  /*padding: 16px;*/
  font-size: 18px;
  color: #fff!important;
  font-weight: bold;
  line-height: 1;
  transition: 0.5s;
}
#top-head nav ul li a:hover {
  color: #BBD8FF;
}
#nav_toggle {
  display: none;
}
img {
  /*margin-top: 60px;*/
  width: 100%;
}
/*============================
mobile style
============================*/
@media screen and (max-width:680px) {
  #top-head nav ul li a{
   color: #333!important;
  }

/*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: #fff;
    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: 80%;
  }
  #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: 50px;
	padding-top: 20px;
	line-height: 1.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: 70px;
	}
}


/* スクロールして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 {
 color: #333!important;
}

#top-head.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;
}
}
*/

/*///////////////////////////////////////
アイコン
///////////////////////////////////////*/
@font-face {
  font-family: 'icomoon';
  src:  url('fonts/icomoon.eot?1rl1gl');
  src:  url('fonts/icomoon.eot?1rl1gl#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?1rl1gl') format('truetype'),
    url('fonts/icomoon.woff?1rl1gl') format('woff'),
    url('fonts/icomoon.svg?1rl1gl#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-home:before {
  content: "\e900";
}
.icon-office:before {
  content: "\e903";
}
.icon-newspaper:before {
  content: "\e904";
}
.icon-pencil:before {
  content: "\e905";
}
.icon-pencil2:before {
  content: "\e906";
}
.icon-quill:before {
  content: "\e907";
}
.icon-pen:before {
  content: "\e908";
}
.icon-image:before {
  content: "\e90d";
}
.icon-images:before {
  content: "\e90e";
}
.icon-camera:before {
  content: "\e90f";
}
.icon-bullhorn:before {
  content: "\e91a";
}
.icon-book:before {
  content: "\e91f";
}
.icon-books:before {
  content: "\e920";
}
.icon-file-text:before {
  content: "\e922";
}
.icon-profile:before {
  content: "\e923";
}
.icon-file-empty:before {
  content: "\e924";
}
.icon-files-empty:before {
  content: "\e925";
}
.icon-file-text2:before {
  content: "\e926";
}
.icon-file-picture:before {
  content: "\e927";
}
.icon-file-zip:before {
  content: "\e92b";
}
.icon-copy:before {
  content: "\e92c";
}
.icon-paste:before {
  content: "\e92d";
}
.icon-folder:before {
  content: "\e92f";
}
.icon-folder-open:before {
  content: "\e930";
}
.icon-folder-plus:before {
  content: "\e931";
}
.icon-folder-minus:before {
  content: "\e932";
}
.icon-folder-download:before {
  content: "\e933";
}
.icon-folder-upload:before {
  content: "\e934";
}
.icon-price-tag:before {
  content: "\e935";
}
.icon-price-tags:before {
  content: "\e936";
}
.icon-barcode:before {
  content: "\e937";
}
.icon-qrcode:before {
  content: "\e938";
}
.icon-cart:before {
  content: "\e93a";
}
.icon-coin-yen:before {
  content: "\e93e";
}
.icon-credit-card:before {
  content: "\e93f";
}
.icon-calculator:before {
  content: "\e940";
}
.icon-lifebuoy:before {
  content: "\e941";
}
.icon-phone:before {
  content: "\e942";
}
.icon-phone-hang-up:before {
  content: "\e943";
}
.icon-address-book:before {
  content: "\e944";
}
.icon-envelop:before {
  content: "\e945";
}
.icon-pushpin:before {
  content: "\e946";
}
.icon-location:before {
  content: "\e947";
}
.icon-location2:before {
  content: "\e948";
}
.icon-compass:before {
  content: "\e949";
}
.icon-compass2:before {
  content: "\e94a";
}
.icon-map:before {
  content: "\e94b";
}
.icon-map2:before {
  content: "\e94c";
}
.icon-history:before {
  content: "\e94d";
}
.icon-clock:before {
  content: "\e94e";
}
.icon-clock2:before {
  content: "\e94f";
}
.icon-bell:before {
  content: "\e951";
}
.icon-calendar:before {
  content: "\e953";
}
.icon-keyboard:before {
  content: "\e955";
}
.icon-display:before {
  content: "\e956";
}
.icon-laptop:before {
  content: "\e957";
}
.icon-mobile:before {
  content: "\e958";
}
.icon-mobile2:before {
  content: "\e959";
}
.icon-tablet:before {
  content: "\e95a";
}
.icon-box-add:before {
  content: "\e95e";
}
.icon-box-remove:before {
  content: "\e95f";
}
.icon-download:before {
  content: "\e960";
}
.icon-upload:before {
  content: "\e961";
}
.icon-floppy-disk:before {
  content: "\e962";
}
.icon-undo:before {
  content: "\e965";
}
.icon-redo:before {
  content: "\e966";
}
.icon-undo2:before {
  content: "\e967";
}
.icon-redo2:before {
  content: "\e968";
}
.icon-forward:before {
  content: "\e969";
}
.icon-reply:before {
  content: "\e96a";
}
.icon-bubble:before {
  content: "\e96b";
}
.icon-bubbles:before {
  content: "\e96c";
}
.icon-bubbles2:before {
  content: "\e96d";
}
.icon-bubble2:before {
  content: "\e96e";
}
.icon-bubbles3:before {
  content: "\e96f";
}
.icon-bubbles4:before {
  content: "\e970";
}
.icon-user:before {
  content: "\e971";
}
.icon-users:before {
  content: "\e972";
}
.icon-user-plus:before {
  content: "\e973";
}
.icon-user-minus:before {
  content: "\e974";
}
.icon-user-check:before {
  content: "\e975";
}
.icon-user-tie:before {
  content: "\e976";
}
.icon-hour-glass:before {
  content: "\e979";
}
.icon-spinner11:before {
  content: "\e984";
}
.icon-binoculars:before {
  content: "\e985";
}
.icon-search:before {
  content: "\e986";
}
.icon-zoom-in:before {
  content: "\e987";
}
.icon-zoom-out:before {
  content: "\e988";
}
.icon-enlarge:before {
  content: "\e989";
}
.icon-shrink:before {
  content: "\e98a";
}
.icon-enlarge2:before {
  content: "\e98b";
}
.icon-shrink2:before {
  content: "\e98c";
}
.icon-key:before {
  content: "\e98d";
}
.icon-key2:before {
  content: "\e98e";
}
.icon-lock:before {
  content: "\e98f";
}
.icon-unlocked:before {
  content: "\e990";
}
.icon-wrench:before {
  content: "\e991";
}
.icon-cog:before {
  content: "\e994";
}
.icon-hammer:before {
  content: "\e996";
}
.icon-stats-bars:before {
  content: "\e99c";
}
.icon-trophy:before {
  content: "\e99e";
}
.icon-gift:before {
  content: "\e99f";
}
.icon-rocket:before {
  content: "\e9a5";
}
.icon-hammer2:before {
  content: "\e9a8";
}
.icon-fire:before {
  content: "\e9a9";
}
.icon-bin:before {
  content: "\e9ac";
}
.icon-bin2:before {
  content: "\e9ad";
}
.icon-airplane:before {
  content: "\e9af";
}
.icon-truck:before {
  content: "\e9b0";
}
.icon-accessibility:before {
  content: "\e9b2";
}
.icon-target:before {
  content: "\e9b3";
}
.icon-shield:before {
  content: "\e9b4";
}
.icon-power:before {
  content: "\e9b5";
}
.icon-switch:before {
  content: "\e9b6";
}
.icon-power-cord:before {
  content: "\e9b7";
}
.icon-clipboard:before {
  content: "\e9b8";
}
.icon-list-numbered:before {
  content: "\e9b9";
}
.icon-list:before {
  content: "\e9ba";
}
.icon-list2:before {
  content: "\e9bb";
}
.icon-tree:before {
  content: "\e9bc";
}
.icon-sphere:before {
  content: "\e9c9";
}
.icon-link:before {
  content: "\e9cb";
}
.icon-flag:before {
  content: "\e9cc";
}
.icon-attachment:before {
  content: "\e9cd";
}
.icon-eye:before {
  content: "\e9ce";
}
.icon-eye-blocked:before {
  content: "\e9d1";
}
.icon-bookmark:before {
  content: "\e9d2";
}
.icon-bookmarks:before {
  content: "\e9d3";
}
.icon-star-empty:before {
  content: "\e9d7";
}
.icon-star-half:before {
  content: "\e9d8";
}
.icon-star-full:before {
  content: "\e9d9";
}
.icon-heart:before {
  content: "\e9da";
}
.icon-smile:before {
  content: "\e9e1";
}
.icon-smile2:before {
  content: "\e9e2";
}
.icon-sad:before {
  content: "\e9e5";
}
.icon-sad2:before {
  content: "\e9e6";
}
.icon-grin:before {
  content: "\e9e9";
}
.icon-grin2:before {
  content: "\e9ea";
}
.icon-point-up:before {
  content: "\ea03";
}
.icon-point-right:before {
  content: "\ea04";
}
.icon-point-down:before {
  content: "\ea05";
}
.icon-point-left:before {
  content: "\ea06";
}
.icon-warning:before {
  content: "\ea07";
}
.icon-notification:before {
  content: "\ea08";
}
.icon-question:before {
  content: "\ea09";
}
.icon-plus:before {
  content: "\ea0a";
}
.icon-minus:before {
  content: "\ea0b";
}
.icon-info:before {
  content: "\ea0c";
}
.icon-cancel-circle:before {
  content: "\ea0d";
}
.icon-blocked:before {
  content: "\ea0e";
}
.icon-cross:before {
  content: "\ea0f";
}
.icon-checkmark:before {
  content: "\ea10";
}
.icon-checkmark2:before {
  content: "\ea11";
}
.icon-enter:before {
  content: "\ea13";
}
.icon-exit:before {
  content: "\ea14";
}
.icon-play2:before {
  content: "\ea15";
}
.icon-pause:before {
  content: "\ea16";
}
.icon-stop:before {
  content: "\ea17";
}
.icon-previous:before {
  content: "\ea18";
}
.icon-next:before {
  content: "\ea19";
}
.icon-backward:before {
  content: "\ea1a";
}
.icon-forward2:before {
  content: "\ea1b";
}
.icon-play3:before {
  content: "\ea1c";
}
.icon-loop:before {
  content: "\ea2d";
}
.icon-loop2:before {
  content: "\ea2e";
}
.icon-arrow-up-left:before {
  content: "\ea31";
}
.icon-arrow-up:before {
  content: "\ea32";
}
.icon-arrow-up-right:before {
  content: "\ea33";
}
.icon-arrow-right:before {
  content: "\ea34";
}
.icon-arrow-down-right:before {
  content: "\ea35";
}
.icon-arrow-down:before {
  content: "\ea36";
}
.icon-arrow-down-left:before {
  content: "\ea37";
}
.icon-arrow-left:before {
  content: "\ea38";
}
.icon-arrow-up-left2:before {
  content: "\ea39";
}
.icon-arrow-up2:before {
  content: "\ea3a";
}
.icon-arrow-up-right2:before {
  content: "\ea3b";
}
.icon-arrow-right2:before {
  content: "\ea3c";
}
.icon-arrow-down-right2:before {
  content: "\ea3d";
}
.icon-arrow-down2:before {
  content: "\ea3e";
}
.icon-arrow-down-left2:before {
  content: "\ea3f";
}
.icon-arrow-left2:before {
  content: "\ea40";
}
.icon-circle-up:before {
  content: "\ea41";
}
.icon-circle-right:before {
  content: "\ea42";
}
.icon-circle-down:before {
  content: "\ea43";
}
.icon-circle-left:before {
  content: "\ea44";
}
.icon-checkbox-checked:before {
  content: "\ea52";
}
.icon-checkbox-unchecked:before {
  content: "\ea53";
}
.icon-scissors:before {
  content: "\ea5a";
}
.icon-new-tab:before {
  content: "\ea7e";
}
.icon-share2:before {
  content: "\ea82";
}
.icon-mail:before {
  content: "\ea83";
}
.icon-mail4:before {
  content: "\ea86";
}


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

/*///////////////////////////////////////
見出し
///////////////////////////////////////*/
h2{
 font-size: 2em;
 color: #222da8;
}
.big-title{
 display: block;
 color: #333;
 line-height: 1.3;
 text-align: center;
 margin: 50px auto;
}
@media screen and (max-width: 767px) {
.big-title{
 font-size: 1.1em;
 margin: 10px auto 20px;
}
}

.big-title02{
 display: block;
 text-align: center;
 color: #35BFF1;
 font-weight: bold;
 margin: 50px auto;
 font-size: 2em;
 background: #F1FBFF;
 padding: 10px;
}

.subtitle {
 display: inline-block;
 position: relative;
 color: #333;
 font-size: 1.5em;
}

.subtitle:before {
 content: '';
 display: inline-block;
 position: absolute;
 bottom: -15px;
 left: 50%;
 transform: translateX(-50%);
 width: 60px;
 height: 4px;
 background-color: #2589d0;
}
@media screen and (max-width: 767px) {
.subtitle {
 font-size: 1.2em;
}

}

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

/*メインイメージ*/
.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;
}

.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:25%;
 left: 5%;
 text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 30px, rgba(0, 0, 0, 0.3) -1px 1px 30px, rgba(0, 0, 0, 0.3) 1px -1px 30px, rgba(0, 0, 0, 0.3) -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;
}



/*コンテンツ領域*/

main {
 margin: 6rem 0 0 0;
}
section {
 /*margin: 5rem 0;
 padding: 3rem 0;*/
}

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

/*///////////////////////////////////////
index　コンテンツ
///////////////////////////////////////*/

/*会社説明*/
.about-company-flex{
 display: flex;
 justify-content: space-between;
 align-items: flex-start;
}
.about-company-flex img{
 display: block;
 width: calc(100%/2 - 10px);
 margin: 0;
}
.about-company-text{
 display: block;
 width: calc(100%/2 - 10px);
 line-height: 1.8;
 text-align: left;
 font-feature-settings: "palt";
 font-size: 16px;
}
@media screen and (max-width: 767px) {
.about-company-flex{
 flex-wrap: wrap;
}
.about-company-flex img{
 width: 100%;
}
.about-company-text{
 width: 100%;
 margin: 20px auto;
}
}


/*///////////////////////////////////////
ボタン
///////////////////////////////////////*/
.btn01 {
  display: block;
  width: 300px;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #333;
  margin: 50px 0;
}
@media screen and (max-width: 767px) {
.btn01 {
  margin: 30px 0;
}
}
.btn01 a {
  display: block;
  width: 300px;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  color: #333;
  background-color: #FFC800;
  position: relative;
}
.btn01 a::before {
  border-right: 2px solid #333;
  border-top: 2px solid #333;
  bottom: 0;
  content: "";
  height: 7px;
  width: 7px;
  margin: auto;
  position: absolute;
  right: 30px;
  top: 0;
  transform: rotate(45deg);
  transition: right .3s;
}
.btn01 a:hover {
 color: #333;
 opacity: 1;
}
.btn01 a:hover::before {
 right: 25px;
}
.btn01 a:visited {
 color: #333!important;
}

/*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;
}

/*///////////////////////////////////////
セクション区切り
///////////////////////////////////////*/
.gray-back {
 /*background-color: #f5f5f5;*/
 background-color: #fff;
 color: #333;
 padding: 150px 0;
}
.blue-back {
 /*background-color: #1cb4d3;*/
 background-color: #e6f0ff;
 padding: 150px 0;
}

.gray-back {
 position: relative;
}
.gray-back::before {
 border-color: transparent #e6f0ff transparent transparent;
 border-style: solid;
 border-width: 50px 100vw 0 0;
 bottom: 0;
 content: "";
 height: 0;
 position: absolute;
}




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

/*サービス一覧ページタイトルエリア*/
.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-about{
 background: url(./images/titleBG8.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;
	*/
}


/*見出し*/
.midashi{
 display: flex;
 margin: 0px auto 30px;
 justify-content: center;
 border-top: 1px solid #ddd;
 border-bottom: 1px solid #ddd;
 list-style: none;
}

.midashi li{
 display: block;
 width: 250px;
 max-width: 100%;
 height: 50px;
 line-height: 45px;
 padding: 0 20px;
 position: relative;
 font-size: 0.8em;
}

.midashi-menu{
 display: block;
 width: 250px;
 max-width: 100%;
 height: 50px;
 line-height: 45px;
 padding: 0 20px;
 text-align: center;
}
.midashi> li:first-child{
 border-left:1px solid #ddd;
}
.midashi> li:last-child{
 border-right:1px solid #ddd;
}
.midashi > li:not(:first-child):not(:last-child) {
 border-left:1px solid #ddd;
 border-right:1px solid #ddd;
}
.midashi li a{
 color: #333;
}
.midashi li a:hover{
 color: #787878;
}
.midashi-menu::after {
 content: "";
 display: inline-block;
 vertical-align: middle;
 color: #333;
 line-height: 1;
 width: 7px;
 height: 7px;
 border: 0.1em solid currentColor;
 border-left: 0;
 border-bottom: 0;
 box-sizing: border-box;
 transform: translateY(-25%) rotate(135deg);
 position: absolute;
 bottom: 8px;
 left: 50%;
}
.midashi-menu:hover::after {
  color: #787878;
}

@media screen and (max-width:768px){
.midashi{
 flex-wrap: wrap;
 justify-content: flex-start;
 border-bottom: none;
}
.midashi li{
 width: 50%;
 font-size: 0.6em;
 border-bottom: 1px solid #ddd;
}
.midashi> li:first-child{
 border-left:none;
}
.midashi> li:last-child{
 border-right: 1px solid #ddd;
}
.midashi > li:not(:first-child):not(:last-child) {
 border-right: 1px solid #ddd;
}
}

/*///////////////////////////////////////
サービス一覧
///////////////////////////////////////*/
.service-flex{
 display: flex;
 margin: 100px auto 50px;
 justify-content: space-between;
 align-items: flex-start;
}
.service-flex#order{
 flex-direction: row-reverse;
}
.serviceImg{
 position: relative;
 /*max-width: 630px;*/
 max-width: 600px;
 width: 100%;
}
.serviceImg img{
 display: block;
}
.serviceImg::before{
 content: "";
 position: absolute;
 width: 250px;
 height: 250px;
 background-color: #35BFF1;
 top: -20px;
 right: -20px;
 z-index: -1;
}

.serviceImg02{
 position: relative;
 /*max-width: 630px;*/
 max-width: 600px;
 width: 100%;
}
.serviceImg02 img{
 display: block;
}
.serviceImg02::after{
 content: "";
 position: absolute;
 width: 250px;
 height: 250px;
 background-color: #35BFF1;
 top: -20px;
 left: -20px;
 z-index: -1;
}

.service-txt{
 display: block;
 width: 40%;
}
.service-txt h3{
 display: block;
 font-size: 3em;
 font-weight: bold;
 color: #35BFF1;
 margin: 0 0 10px;
}
.service-txt h3 span{
 display: inline-block;
 font-size: 0.3em;
 margin-left: 10px;
 color: #333;
}

@media screen and (max-width:768px){
.service-flex{
 flex-wrap: wrap;
 margin-bottom: 30px;
}
.serviceImg,
.serviceImg02{
 max-width: 100%;
}
.service-txt{
 width: 100%;
}
.service-txt h3{
 font-size: 2em;
 margin: 30px auto 10px;
}
}


/*///////////////////////////////////////
カーウォッシュ
///////////////////////////////////////*/

/*特徴*/
.toku-flex{
 display: flex;
}
.tokuBox{
 display: block;
 width: calc( ( 100% - 60px ) / 3 );
 margin-right: 30px;
 text-align: center;
}
.toku-flex > .tokuBox:nth-child( 3n ) {
 margin-right: 0;
}
.tokuBox h3{
 text-align: center;
 color: #016d94;
 font-weight: bold;
 font-size: 1.2em;
 margin-bottom: 0px;
}


/*料金メニュー*/
.price-flex{
 display: grid;
 grid-template-columns: repeat(3,1fr);
 margin-top: 130px;
}
.priceBox{
 display: block;
 /*width: calc( ( 100% - 60px ) / 3 );*/
 margin-right: 30px;
 text-align: center;
 background-color: #016d94;
 padding: 10px;
}
.priceBox-inner{
 display: block;
 background-color: #fff;
 padding: 10px;
 position: relative;
 height: 100%;
 padding-top: 90px;
}
.priceBox-inner img{
 display: block;
 border-radius: 50%;
 width: 180px;
 height: 180px;
 object-fit: cover;
 position: absolute;
 top: -90px;
 left:50%;
 transform: translate(-50%);
 -webkit-transform:translateX(-50%);
 -ms-transform:translateX(-50%);
}
.price-flex > .priceBox:nth-child( 3n ) {
 margin-right: 0;
}
.priceBox h3{
 text-align: center;
 color: #016d94;
 font-weight: bold;
 font-size: 1.2em;
 margin-bottom: 0px;
}

.pricetable {
  border-collapse: collapse;
  width: 100%;
}
.pricetable th,
.pricetable td {
  border-bottom: 1px solid #dbe1e8;
  padding: 15px 0px;
}
.pricetable th {
  /*background: #f9fafc;*/
  text-align: left;
  width: 180px;
}



/* 横並びのためのコンテナスタイル */
.size-chart {
  display: flex;
  justify-content: space-between; /* 各アイテムを横並びで配置 */
  flex-wrap: wrap; /* 画面が小さいときにアイテムが折り返す */
  gap: 20px; /* アイテム間の間隔 */
  padding: 10px;
  border: 1px solid #ddd;
  background-color: #f4f4f4;
}

/* 各アイテムのスタイル */
.size-item {
  display: flex;
  flex-direction: column;
  align-items: center; /* アイテム内のテキストを中央に配置 */
  text-align: center;
  flex: 1 1 15%; /* 幅を固定せず、必要に応じて伸縮 */
  min-width: 100px; /* 最小幅 */
}

/* サイズラベルのスタイル */
.size-label {
  font-weight: bold;
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
}

/* サイズ範囲のスタイル */
.size-range {
  font-size: 14px;
  color: #666;
}

/* レスポンシブ対応：画面が狭くなったときに調整 */
@media (max-width: 768px) {
  .size-chart {
    flex-direction: column; /* 横並びを縦並びに変更 */
    gap: 10px;
  }
  .size-item {
    flex: 1 1 100%;
  }
}



@media only screen and (max-width: 800px) {
.toku-flex{
 flex-wrap: wrap;
}
.tokuBox{
 width: 100%;
 margin-right: 0;
}
.price-flex{
 grid-template-columns: 1fr;
}
.priceBox{
 width: 100%;
 margin-right: 0;
 margin-bottom: 120px;
}

.price-flex > .priceBox:last-child {
 margin-bottom: 50px;
}

.pricetable tr,
.pricetable th,
.pricetable td {
 padding: 10px 0px;
 font-size: 0.9em;
}
.pricetable tr:first-child {
 border-top: 1px solid #dbe1e8;
}
.pricetable th,
.pricetable td {
 border-top: none;
}
}


/*///////////////////////////////////////
カーコーティング
///////////////////////////////////////*/
.tabs {
 display: flex;
 margin-top: 20px;
}
.tab-list {
 list-style: none;
 padding: 0;
 margin: 0;
 border-right: 1px solid #ddd;
 width: 250px;
}
.tab-list span{
 color: #016d94;
}
.tab-item {
 padding: 15px;
 cursor: pointer;
 background-color: #f1f1f1;
 border-bottom: 1px solid #ddd;
 text-align: left;
}
.tab-item:hover {
 background-color: #e1e1e1;
}
.tab-item.active {
 background-color: #fff;
 font-weight: bold;
}
.tab-content {
 padding: 15px;
 width: 100%;
 border-left: 1px solid #ddd;
}
.tab-panel {
 display: none;
}
.tab-panel.active {
 display: block;
 text-align: left;
}
.tab-panel.active h3{
 margin-top: 0;
}
@media screen and (max-width:768px){
.tabs {
 font-size: 0.8em;
}
.tab-list {
 width: 175px;
}
.tab-item,
.tab-content {
 padding: 10px;
}
}


.option-wrap{
 display: block;
 background-color: #f5fbff;
 padding: 20px;
}
.option-wrap h3{
 text-align: center;
 color: #016d94;
 font-weight: bold;
 font-size: 1.2em;
 margin-bottom: 0px;
 margin: 20px auto;
}
.option-flex{
 display: flex;
 margin-bottom: 30px;
}
.optionBox{
 display: block;
 width: calc( ( 100% - 60px ) / 3 );
 margin-right: 30px;
 text-align: center;
 background-color: #fff;
 padding: 10px;
 border: 1px solid #ddd;
}
.optionBox02{
 display: block;
 width: 100%;
 margin-right: 30px;
 text-align: left;
 background-color: #fff;
 padding: 10px;
 border: 1px solid #ddd;
}
.optionBox h4,
.optionBox02 h4{
 margin: 10px auto;
 font-size: 0.9em;
}
.option-flex > .optionBox:nth-child( 3n ) {
 margin-right: 0;
}
.optionPrice{
 display: block;
}
@media screen and (max-width:768px){
.optionBox{
 width: 100%;
 margin-right: 0px;
}
}


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


.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%;
}
}

/*///////////////////////////////////////
フッター
///////////////////////////////////////*/

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

.footer {
 padding: 2rem;
 font-size: 15px;
 color: #fff;
 background-color: #006D94;
 margin-top: auto;
 border-top: 0.8px solid #fff;
}

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

  .copyright {
 text-align: center;
 padding: 10px 0;
  }

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


@media (min-width: 768px) {
  .md-flex {
    display: flex;
  }

  .md-justify-between {
    justify-content: space-between;
  }
}


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

/*コメント削除*/
.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: 30px;
 border: 1.5px solid #ddd;
 height: fit-content;
}
.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%;
 margin-top: 30px;
 padding: 20px;
}
}

/*アイキャッチ*/
.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;
  }
}


/*///////////////////////////////////////
テキストボックス
///////////////////////////////////////*/
.txtBox{
 display: block;
 margin: 30px auto 50px;
 width: 100%;
 text-align: left;
 font-size: 16px;
 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;
 /*background-color: #F8F9FF;*/
 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;
}

/*ページャー*/
.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.4em;
}

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

.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;
}
.news-list2 .item a{
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  align-items: dworksline;
  color: #fff;
  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: 16px;
  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;
  color: #fff;
}
.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: 15px 0px;
}
.news-list2 .item .date{
  min-width: 100px;
}
.news-list2 .item .title{
  margin-top: 10px;
}
}


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


/*///////////////////////////////////////
フッターメニュー
///////////////////////////////////////*/
/*
.footerMenu{
 text-align: left;
}
.footerMenu ul{
 display: flex;
 list-style: none;
 padding-left: 0;
}
.footerMenu li{
 display: block;
 margin: 0 20px;
}
.footerMenu  > li > a{
 display: block;
 padding: 0 15px;
 line-height: 40px;
 color: #00459B;
 font-size: 15px;
 text-decoration: none;
}

.footerMenu i{
 vertical-align: middle;
}

@media screen and (max-width: 767px){
.footerMenu ul{
 display: block;
}
}
*/

.fotter-wrap {
 padding: 3rem 2rem 1.5rem;
 background-color: #016D94;
}
.footer-container {
 display: grid;
 justify-items: center;
 grid-template-columns: repeat(4, 1fr);
 max-width: 1200px;
 margin: 0 auto;
}
.footer-logo {
 width: 104px;
 height: 26px;
 margin-bottom: .2em;
}
.footer-caption {
 margin-top: 0;
 color: #a6adb3;
 font-size: .75em;
}
.footer-title,
.footer-link {
 margin: 0 0 .8em;
 color: #333;
 font-size: .9em;
}
.footer-title {
 font-weight: 600;
 color: #fff;
}
.footer-list {
 padding: 0;
 color: #fff;
}
.footer-link {
 display: block;
 color: #fff;
}
.footer-link:hover{
  color: #ddd;
 }
.footer-link:not(:hover) {
 text-decoration: none;
}

@media only screen and (max-width: 768px) {
.footer-list {
 padding-left: 40px;
}
.footer-container {
 justify-items: start;
 grid-template-columns: 1fr;
 gap: 1em;
}
.footer-head {
 grid-column: 1/3;
}
.footer-caption br {
 display: none;
}
}

/*///////////////////////////////////////
index お問い合わせください
///////////////////////////////////////*/
.footer_contact{
 display: block;
 background-color: #006D94;
 color: #fff;
 padding: 50px 0;
}
.footer_contact_txt{
 display: block;
 color: #fff;
 line-height: 1.2;
 margin: 10px auto;
 font-size: 2.3em;
 font-weight: bold;
}
.footer_contact_txt span{
 display: block;
 color: #fff;
 font-size: 0.7em;
 font-weight: normal;
}
@media screen and (max-width: 767px){
.footer_contact_txt{
 font-size: 1.8em;
}
}


/*///////////////////////////////////////
サービス
///////////////////////////////////////*/
.title_wrap{
 display: flex;
 align-items: center;
 justify-content: space-around;
 margin: 30px 0 0;
}
.title_txt{
 display: block;
 width: 80%;
 padding-top: 26px;
 font-size: 0.8em;
 font-weight: bold;
}
.main_h2{
 font-size: 2.5em;
 line-height: 1;
 color: #333;
}
.main_h2 span{
 display: block;
 color: #35BFF1;
 font-size: 0.5em;
}

@media (max-width: 736px) {
.main_h2{
 font-size: 2.5em;
 margin: 5px auto;
 line-height: 1.2;
 text-align: center;
}
.title_wrap{
 flex-wrap: wrap;
}
.title_txt{
 display: block;
 margin: 10px auto;
 width: 95%;
 padding-top:0px;
}

}

.service_list{
 display: flex;
}

/*リストベース*/
.service_list li{
 display: block;
 width: calc(100%/3);
 padding: 30px;
 /*height: 250px;*/
 height: 360px;
 position: relative;
 z-index: 0;
 transition: all .3s ease-in-out;
}

/*1番目*/
.service_list li:first-child{
 background: url("images/service_bg01.jpg")no-repeat center center / cover;
}

/*2番目*/
.service_list li:nth-child(2){
 background: url("images/service_bg02.jpg")no-repeat center center / cover;
}

/*3番目*/
.service_list li:nth-child(3){
 background: url("images/service_bg03_2.jpg")no-repeat center center / cover;
}

.service_list li:hover{
 box-shadow: inset 5px 0 #fff, inset 0 5px #fff, inset -5px 0 #fff, inset 0 -5px #fff;
}

.service_list li::before{
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(0, 0, 0, 0.7);
 z-index: -1;
}
.service_list li div{
 display: block;
 width: 300px;
 height: auto;
 margin: 0 auto;
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.service_list li div h3{
 color: #35BFF1;
 font-size: 1.5em;
 margin: 10px auto;
}
.service_list li div h3 span{
 display: block;
 font-size: 0.6em;
 color: #fff;
}
.service_list li div p{
 color: #fff;
 font-size: 0.8em;
 font-weight: bold;
}

a.borderBtn {
 display: block;
 max-width: 200px;
 margin: 15px 0px;
 padding: 5px 10px;
 box-sizing: border-box;
 text-decoration: none;
 border: 1px solid #FFC800;
 transition: 0.3s;
}
a.borderBtn span.btn_text {
 display: block;
 position: relative;
 color: #FFC800;
 font-size: 16px;
 text-align: center;
}
a.borderBtn span.btn_text:before {
 content: '';
 width: 20px;
 height: 20px;
 background: #FFC800;
 border-radius: 50%;
 position: absolute;
 top: 0;
 right: 0;
 bottom: 0;
 margin: auto;
}
a.borderBtn span.btn_text:after {
 content: '';
 width: 8px;
 height: 8px;
 border-top: 3px solid #333;
 border-right: 3px solid #333;
 box-sizing: border-box;
 transform: rotate(45deg);
 position: absolute;
 top: 0;
 right: 7px;
 bottom: 0;
 margin: auto;
 transition: 0.3s;
}
a.borderBtn:hover {
 background-color: #FFF4DB;
}
a.borderBtn:hover span.btn_text:after {
 border-top: 3px solid #F4E511;
 border-right: 3px solid #F4E511;
}

@media (max-width: 736px) {
.service_list{
 flex-wrap: wrap;
}
.service_list li{
 width: 100%;
 padding: 20px;
}


a.borderBtn {
 max-width: 280px;
 padding: 10px 5px;
}
a.borderBtn span.btn_text {
 font-size: 14px;
}
}


.snsFlex{
 display: flex;
 gap: 0 5px;
}
.snsFlex a{
 display: block;
 width: 30px;
}


/*///////////////////////////////////////
ご案内・ご予約
///////////////////////////////////////*/
.contact-wrap{
 display: grid;
 grid-template-columns: repeat(2,1fr);
 gap: 10px;
}
@media (max-width: 736px) {
  .contact-wrap{
    grid-template-columns: 1fr;
   }
  }
.contact-tel{
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 padding: 15px;
 background-color: #00aeff;
 justify-content: center;
 color: #fff;
}
.contact-tel div{
 background: #fff;
 display: block;
 width: 100%;
 margin: 10px auto;
 font-size: 1.2em;
 padding: 5px 10px;
 border: 1px solid #00aeff;
 color: #00aeff;
 font-weight: bold;
 }
.contact-tel a{
 font-size: 1.5em;
 font-weight: bold;
}

.contact-mail{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 15px;
  background-color: #ffdd00;
  justify-content: center;
  color: #fff;
 }
 .contact-mail div{
  background: #fff;
  display: block;
  width: 100%;
  margin: 10px auto;
  font-size: 1.2em;
  padding: 5px 10px;
  border: 1px solid #ffdd00;
  color: #333;
  font-weight: bold;
  }
 .contact-mail a{
  color: #333;
  font-size: 1.5em;
  font-weight: bold;
 }



/*///////////////////////////////////////
よくある質問
///////////////////////////////////////*/
.qa dt {
 margin-bottom: 1em;
 color: #333333;
 font-weight: 600;
}
.qa dt::before,
.qa dd::before {
 margin-right: .4em;
}
.qa dt::before {
 content: "Q";
 display: inline-flex;
 justify-content: center;
 align-items: center;
 width: 40px;
 height: 40px;
 background: #002588;
 color: #fff;
 border-radius: 50%;
}
.qa dd {
 margin: 0 0 2.5em;
 padding: 1em 1.5em;
 background-color: #fefcdd;
 color: #333333;
 line-height: 2;
}
.qa dd::before {
 content: "A";
 display: inline-flex;
 justify-content: center;
 align-items: center;
 width: 40px;
 height: 40px;
 background: #eb2a2a;
 color: #fff;
 border-radius: 50%;
}


/*スティッキーフッター*/
.sp-fixed {
 display: none;
}
@media screen and (max-width: 768px) {
.sp-fixed {
 position: sticky;
 bottom: 0;
 left: 0;
 display: flex;
 width: 100%;
 background: #175F87;
 color: #fff;
 height: 40px;
 line-height: 40px;
 justify-content: space-around;
 align-items: center;
 font-weight: bold;
}
.sp-fixed-box{
 display: block;
 width: 100%;
 text-align: center;
 color: #fff;
}
.sp-fixed-border{
 /*border-right: 1px solid #fff;*/
}
}
