@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: 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 {
 background-color: #fff;
 width: 100%;
 height: 100px;
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 999;
}
@media screen and (max-width: 767px) {
  .header {
    height: 50px;
   }
}

.header_inner {
 padding: 0 0 0 20px;
 display: flex;
 align-items: center;
 justify-content: space-between;
 height: inherit;
 position: relative;
}


/* ヘッダーのロゴ部分 */
.header_title {
 width: 280px;
 z-index: 1;
}

.header_title img {
 display: block;
 width: 100%;
 height: 100%;
}

/* ヘッダーのナビ部分 */
.header_nav {
  position: fixed;
  right: 0;
  left: 0;
  top: 100px;/*ヘッダー高さと揃える*/
  width: 100%;
  height: calc(100vh - 100px);/*ヘッダー高さと揃える*/
  transform: translateY(-100%);
  background-color: rgba(255, 255, 255, 0.9);
  transition: ease .4s;
}
@media screen and (max-width: 767px) {
  .header_nav {
    top: 50px;/*ヘッダー高さと揃える*/
    height: calc(100vh - 50px);/*ヘッダー高さと揃える*/
  }
}

.nav-items {
  padding-top: 250px;
  padding-bottom: 200px;
}

/* ナビのリンク */
.nav-items-item a {
 color: black;
 font-weight: bold;
 width: 100%;
 display: block;
 text-align: center;
 font-size: 20px;
 margin-bottom: 24px;
}

.nav-items-item:last-child a {
  margin-bottom: 0;
}

/* ハンバーガーメニュー */
.header_hamburger {
 width: 60px;
 height: 100%;
 border: none;
 cursor: pointer;
}
.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}
/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: relative;
  transition: ease .4s;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 8px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}

/*ハンバーガーメニューの背景*/
.hamburger-box {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 100px;
 height: 100px;
 background-color: #00459B;
 z-index: 1;
}
@media screen and (max-width: 767px) {
  .hamburger-box {
    width: 50px;
    height: 50px;
   }
}


/*ハンバーガーメニュー　MENUテキスト*/
.menu-txt{
 display: block;
 color: #fff;
 font-size: 0.6em;
 display: block;
 border: none;
 height: 0;
 text-align: center;
 margin: 9px auto;
}

/* ボタンとハンバーガーをまとめるラッパー */
.header_btns {
 display: flex;
 align-items: center;
 gap: 10px; /* ボタンとハンバーガーの間に余白 */
}

/* ハンバーガーメニュークリック後のスタイル */
.header_nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;

}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}

/*///////////////////////////////////////
アイコン
///////////////////////////////////////*/
@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_headline{
  display: block;
  font-weight: bold;
  font-size: 2.2em;
  color: #333;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .h2_headline{
    font-size: 1.3em;
  }
}

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

/*背景動画*/
.container-video {
 position: relative;
 height: 800px;
 overflow: hidden;
 opacity: 0.01;
 animation: load 1.5s 0.8s ease-out forwards;
}
.container-video #video {
 position: absolute;
 top: 50%;
 left: 50%;
 min-width: 100%;
 min-height: 100%;
 width: auto;
 height: auto;
 z-index: -1000;
 overflow: hidden;
 transform: translate(-50%, -50%) scale(1.05);
}
@keyframes load {
  100% {
    opacity: 1;
  }
}
.table-center {
 display: block;
 width: 100%;
 position: relative;
 height: 100%;
}
.movtxt01{
 display: block;
 position: absolute;
 width: 500px;
 max-width: 100%;
 top: 20%;
 left: 5%;
}
.movtxt02{
 display: block;
 position: absolute;
 width: 800px;
 max-width: 100%;
 bottom: 10%;
 left: 0%;
}
.movtxt03{
 display: block;
 position: absolute;
 width: 300px;
 max-width: 100%;
 bottom: 5%;
 right: 2%;
}
@media screen and (max-width: 767px) {
.container-video {
 height: 600px;
}
.movtxt01{
 width: 250px;
 max-width: 100%;
 top: 15%;
}
.movtxt02{
 bottom: 45%;
}
.movtxt03{
 width: 150px;
 bottom: 3%;
 right: 2%;
}
}


/*メインイメージ*/
.mainimg{
 display: block;
 position: relative;
 padding-top: 100px;
}
.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;
}

.image-container {
  position: relative;
  width: 100%;
  /*max-width: 1980px;*/
  margin: 100px auto 0;
}

.bg-image {
  width: 100%;
  height: auto;
  display: block;
}

.text-image {
  position: absolute;
  top: 50%; /* 中央配置 */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; /* 画面幅に応じて調整 */
  max-width: 900px; /* 最大幅 */
  height: auto;
  object-fit: contain;
}



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

 .image-container {
  margin: 50px auto 0;
}
}

.imgcontent{
 display: block;
 width: 800px;
 max-width: 100%;
 color:#fff;
 font-weight: bold;
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 -webkit-transform: translate(-50%, -50%);
 -ms-transform: translate(-50%, -50%);
 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;
 background-color: rgba(0, 69, 155,0.5);
 padding: 50px 50px 80px;
 margin-bottom: 0;
}

.imgcontent02{
  display: block;
  width: 80%;
  max-width: 100%;
  color:#fff;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  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;
  padding: 50px 50px 80px;
  margin-bottom: 0;
 }

#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;*/
 padding: 0 1.5rem;
 position: relative;
}


/*///////////////////////////////////////
ボタン
///////////////////////////////////////*/
.btn01 {
 display: inline-block;
 width: 180px;
 text-align: center;
 text-decoration: none;
 line-height: 45px;
 outline: none;
 color: #FFFFFF;
 background-color: #1B85FB;
 -webkit-transition: all .3s;
 transition: all .3s;
 border-radius: 30px;
 font-weight: bold;
}
.btn01:hover{
 color: #FFFFFF;
 background-color: #1B85FB;
 opacity: 0.7;
}
.btn01 i{
 margin-right: 5px;
}
a.btn01:visited{
 color: #fff!important;
}
@media screen and (max-width: 767px){
  .btn01 {
    width: 90px;
    line-height: 2;
    font-size: 0.8em;
    border-radius: 10px;
   }
}

.header-telbtn{
 display: block;
 color: #1B85FB;
 font-size: 1.5em;
 font-weight: bold;
}

/*///////////////////////////////////////
セクション区切り
///////////////////////////////////////*/
.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 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%;
}
}

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

/*固定用*/
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: 220px;
}
}


@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: 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;
 /*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;
}
.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: 30%;
 width: 100%;
 overflow: hidden;
 height: 200px;
}
.blog-img02 img{
 width: 100%;
 height: 200px;
 object-fit: cover;
 border-radius: 30%;
 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;
}

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

.imgcontent{
 max-width: 90%;
 font-size: 1.5em;
 line-height: 1.5;
}

/*フッター*/
#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: ozekirecline;
  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;
}
.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;
}
}


/*///////////////////////////////////////
背景
///////////////////////////////////////*/
.bg01{
 background: url(./images/bg01.jpg) no-repeat center center / cover;
 /*background-attachment: fixed;*/
 background-color: #fff;
}
.bg02{
 background: url(./images/bg02.jpg) no-repeat center center / cover;
 /*background-attachment: fixed;*/
 background-color: #fff;
}
@media screen and (max-width: 767px){
  .bg02{
    background: url(./images/bg02_sp.jpg) no-repeat center center / cover;
    /*background-attachment: fixed;*/
    background-color: #fff;
   }
}

/*///////////////////////////////////////
安心・安定の職場で
///////////////////////////////////////*/
.copy_flex{
 display: flex;
 justify-content: flex-start;
 align-items: center;
 gap: 80px;
 padding: 100px 0;
}
.copy_flex img{
 display: block;
}
.copy_right{
 display: block;
 width: 550px;
 max-width: 100%;
}
.copy_right h2{
 display: block;
 font-weight: bold;
 font-size: 2.2em;
 color: #333;
 margin-bottom: 30px;
}
.copy_right p{
 display: block;
 text-align: left;
 line-height: 1.5;
 padding-right:20px;
}
.img_position{
 position: relative;
}
.img_position_ab{
 width: 300px;
 height: 300px;
 position: absolute;
 bottom: -100px;
 right: -20px;
}

@media screen and (max-width: 767px){
  .copy_flex{
    flex-wrap: wrap;
    gap: 30px;
    padding: 0px;
   }
   .img_position_ab{
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: 0px;
   }
   .copy_right{
    display: block;
    width: 100%;
    margin-top: 100px;
    padding: 0px 20px;
   }
   .copy_right h2{
    font-size: 1.5em;
   }
   .copy_right p{
    padding-right:0px;
   }
}

.section {
  position: relative;
  padding: 100px 0px;
}

.section::before {
  content: attr(data-text); /* 各sectionのdata-textの値を取得 */
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 280px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.05);
  writing-mode: vertical-rl;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .section::before {
    top: auto;
    bottom: 20px; /* 右下に配置 */
    right: 10px;
    font-size: 100px; /* 文字を少し小さく */
    transform: none; /* translate解除 */
  }
}


/*///////////////////////////////////////
こんなお仕事です
///////////////////////////////////////*/
.job_grid{
 display: grid;
 grid-template-columns: repeat(3,1fr);
 gap: 10px;
 margin-top: 30px;
}
.job_inner{
 display: block;
 background: #fff;
}
.job_inner_posi{
 display: block;
 width: 100%;
 position: relative;
}
.job_inner h3{
  position: absolute;
  bottom: -20px;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: inline-block;
  background: #fff;
  font-size: 1.3em;
  text-align: center;
  padding: 20px;
 }
 .job_inner p{
 text-align: left;
 line-height: 1.5;
 padding: 30px;
 margin-bottom: 0;
 }
 @media screen and (max-width: 768px) {
  .job_grid{
    grid-template-columns: 1fr;
   }
}


/*///////////////////////////////////////
未経験の方も大歓迎です！
///////////////////////////////////////*/
.kieken_grid{
 display: grid;
 grid-template-columns: repeat(3,1fr);
 gap: 10px;
 margin-top: 30px;
}
.kieken_inner{
 display: block;
 background-color: #fff;
 border:1px solid #00a5fa;
 padding: 30px;
 box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.kieken_inner h3{
 color: #00a5fa;
}
.kieken_inner p{
 text-align: left;
 line-height: 1.5;
 padding: 10px;
 margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .kieken_grid{
    grid-template-columns: 1fr;
   }
}


/*///////////////////////////////////////
募集要項
///////////////////////////////////////*/
.job_info_wrap{
 display: block;
 background:#00459B;
 padding: 50px;
}
.job_info{
 display: block;
 background:#fff;
 padding: 20px;
}
.kaisya-gaiyou {
 border-collapse: collapse;
 width: 100%;
 background: #fff;
 margin: 0;
}

.kaisya-gaiyou th,
.kaisya-gaiyou td {
 padding: 20px;
}

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

@media only screen and (max-width: 800px) {
  .job_info_wrap{
    padding: 10px;
   }

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


/*///////////////////////////////////////
お問い合わせ
///////////////////////////////////////*/
.con_link{
 font-weight: bold;
 color: #00a5fa!important;
 border-bottom: 1px solid #00a5fa;
}
.cont_wrap{
 display: block;
 background: #fff;
 padding: 50px;
 margin: 30px auto;
}
.cont_wrap h3{
 font-size: 1.5em;
 color: #1B85FB;
 margin: 0px auto 30px;
}
@media screen and (max-width: 600px) {
  .cont_wrap{
    padding: 0px;
    margin: 30px auto;
   }
   .cont_wrap h3{
    font-size: 1.3em;
   }
}


/*コンタクトフォーム*/
/* フォーム全体 */
.wpcf7-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* 各フィールド */
.wpcf7-form label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  font-weight: bold;
  color: #333;
  padding-bottom: 30px;
  padding-top: 30px;
  border-bottom: 1px solid #ddd;
}

/* ラベルの幅 */
.wpcf7-form label {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
}

/* 入力欄 */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  background: #fff;
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.1);
}

/* テキストエリア */
.wpcf7-form textarea {
  height: 100px;
  resize: vertical;
}

/* 送信ボタン */
.wpcf7-form input[type="submit"] {
  width: 100%;
  padding: 12px;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(135deg, #007BFF, #0056b3);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.wpcf7-form input[type="submit"]:hover {
  background: linear-gradient(135deg, #0056b3, #003d80);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 600px) {
  .wpcf7-form label {
    flex-direction: column;
    align-items: flex-start;
  }
  .wpcf7-form input,
  .wpcf7-form textarea {
    width: 100%;
  }

  .wpcf7-form label {
    gap: 10px;
  }

  .wpcf7-form {
    padding: 20px;
  }
}

.hissu{
 display: inline-block;
 background: red;
 color: #fff;
 padding: 3px 10px;
 border-radius: 5px;
 font-size: 0.7em;
}



/*///////////////////////////////////////
公式ホームページへ
///////////////////////////////////////*/
.fixed-image {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 80px; /* 画像サイズ調整 */
  height: auto;
  z-index: 1000; /* 他の要素より前面に */
}

.fixed-image img {
  width: 100%;
  height: auto;
}




/*///////////////////////////////////////
先輩たちのスキルと経験が、
あなたの成長をサポート
///////////////////////////////////////*/
.s-voice-inner{
 display: grid;
 grid-template-columns: 300px 1fr;
 gap: 30px;
 align-items: center;
 border: 1px solid #ddd;
 padding: 20px;
 margin: 50px auto 0;
}
.s-voice-inner img{
 display: block;
 margin: 10px auto;
 width: 100px;
 max-width: 100%;
}
.s-voice-inner h3{
 display: block;
 font-size: 1.8em;
 text-align: center;
}
.s-voice-inner h3 span{
 display: block;
 font-size: 0.6em;
 color: #0056b3;
 font-weight: bold;
}
.s-voice-inner p{
 display: block;
 line-height: 1.5;
 margin: 0px auto;
}
@media screen and (max-width: 600px) {
.s-voice-inner{
 grid-template-columns: 1fr;
}
}
