@charset "UTF-8";
/*
Theme Name: NIGHT BIRD
Author: DERA-DESIGN
Author URI: https://deradesign.jp/
Description: 2021.1.1
Version: 1.0
*/


@font-face {
  font-family: "recruit";
  src:url(webfonts/recruit.woff) format('woff');
  font-display: swap;
}


@font-face {
  font-family: "cen";
  src:url(webfonts/cen.woff) format('woff');
  font-display: swap;
}



/*--------------------reset.css--------------------*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  color: #222222;
}

html{
	width:100%;
	overflow-x:hidden;
}

body {
  -webkit-text-size-adjust: 100%;
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  background: transparent;
  color: #222222;
  font-size: 100%;
  text-decoration: none;
  vertical-align: baseline;
}

a:hover {
  color: #15957a;
}


::-moz-selection {
  background-color: #cccccc;
  color: #ffffff;
}
::selection {
  background-color: #cccccc;

}

::placeholder{
  color:#ccc
}

::-webkit-scrollbar{
  width: 10px;
  padding: 1px;
}

::-webkit-scrollbar-track{
  background: #f3f3f3;
  border: none;

  border-radius: 0px;

}

::-webkit-scrollbar-thumb{
  background: #cccccc;
  border-radius: 0px;
  box-shadow: none;



}

@keyframes onAutoFillStart { from {} to {}}

input:-webkit-autofill {
  animation-name: onAutoFillStart;
  transition: background-color 50000s ease-in-out 0s;
  -webkit-text-fill-color: #222222 !important;

}


/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs
*/
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #cccccc;
}

input, select {
  vertical-align: middle;
  color: #222222;
}

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

iframe {
  vertical-align: bottom;
  max-width: 100%;
}

th {
  text-align: left;
}

*, *:before, *:after {
  box-sizing: border-box;
}

/*--------------------reset.cssここまで--------------------*/

/*--------------------form.css--------------------*/

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="password"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime-local"],
input[type="number"],
input[type="range"],
input[type="color"],
input[type="radio"],
input[type="checkbox"],
input[type="submit"],
input[type="button"],
input[type="image"],
select,
button,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
      font-family: YakuHanJP, "Noto Sans JP", sans-serif;
}

/* プレースホルダー */
::-webkit-input-placeholder {
  color: #ccc;
}
:-ms-input-placeholder {
  color: #ccc;
}
::-ms-input-placeholder {
  color: #ccc;
}
::placeholder {
  color: #ccc;
}

/* 入力欄 */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="password"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime-local"],
input[type="number"],
input[type="range"] {
  width: 100%;
  padding: 0.5em 1em;
  border: 1px solid #ccc;
  color: #666666;
}

/* 入力欄 */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="password"],
textarea {
    background: #fff;
    font-size: 14px;
    border-radius: 3px;
    border: none;
    border: 1px solid #cccccc;

}

/* 日付 */
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime-local"] {
  font-size: 16px;
}

/* 数値 */
/* スピンボタン非表示*/
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* レンジ */
/* カラーピッカー */
select {
  width: 100%;
  padding: 0.5em 1em;
  border: 1px solid #ccc;
  background: url(images/down-select.png) no-repeat right 1em center;
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

textarea {
  width: 100%;
  /* ieでスクロールバー非表示 */
  padding: 0.5em 1em;
  overflow: hidden;
  border: 1px solid #ccc;
}

input[type="submit"],
input[type="button"],
button {
  cursor: pointer;
}

form input[type="radio"] {
  display: none;
}

form input[type="radio"] + span {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  position:relative;


}

form input[type="radio"] + span:before {
  margin-right: 0.3em;
  content: "";
  width:17px;
  height:17px;
  display:inline-block;
  border-radius:10px;
  border:1px solid #cccccc;
  position:relative;
  top:2px;
}

form input[type="radio"]:checked + span:after {
  content: "";
  width:9px;
  height:9px;
  background:#15957a;
  display:inline-block;
  border-radius: 5px;
  position: absolute;
  top:0px;
  bottom:0px;
  left: 4px;
  margin: auto;
}

form input[type="checkbox"] {
  display: none;
}

form input[type="checkbox"] + span {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  position:relative;
}

form input[type="checkbox"] + span:before {
  margin-right: 0.3em;
  content: "";
  width:14px;
  height:14px;
  display:inline-block;
  border:1px solid #cccccc;
  position:relative;
  top:2px;
}

form input[type="checkbox"]:checked + span:after {
  content: "";
  width: 14px;
  height: 10px;
  display: inline-block;
  position: absolute;
  left: 0px;
  top: 6px;
  border-bottom: 3px solid #15957a;
  border-left: 3px solid #15957a;
  transform: rotate(-45deg);
}

.prefbox select{
  width:100px;
  margin-bottom:0.5em;
  font-size:17px;
  border-radius: 3px;
}

.wrap .contact-form table th,.wrap .contact-form table td {
  vertical-align: middle;
}

.contact-form button{
  display: block;
  z-index: 1;
  position: relative;
  width: 50%;
  min-width: 200px;
  margin-top: 40px;
  padding: 1em;
  text-align: center;
  transition: 0.5s;
  color: #222222;
  border: 1px solid #cccccc;
  margin: 0 auto;
  font-size: 15px;
}

.contact-form button:hover {
  background: #15957a;
  border: 1px solid #15957a;
  color: #fff;
  opacity: 1;
}

.contact-form button:after {
  -webkit-transform: rotate(45deg);
  display: inline-block;
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  transform: rotate(45deg);
  border-top: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  content: "";
}

.contact-form button:hover:after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}



.mw_wp_form_preview .list-caution{
  display:none;
}

@media screen and (min-width: 881px) {
  select {
    width: 410px;
  }
  textarea {
    height: 210px;
	display:block;
	border: none;
    border: 1px solid #cccccc;
  }
}

@media screen and (max-width: 680px) {
  textarea {
    height: 60vw;
	display:block;
  }
}

/*--------------------form.cssここまで--------------------*/





body {
color: #222222;
      font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 16px;
  letter-spacing: .05rem;

}

body p{
	line-height:2;
  text-align: justify;

	font-size:17px;
}


.textLeft {
  text-align: left;
}

.textRight {
  text-align: right;
}

.textCenter {
  text-align: center;
}

.textJustify {
  text-align: justify;
  text-justify: inter-ideograph;
}

.weightBold {
  font-weight: bold;
}

.colorBlue {
  color: #15957a;
}



html,
body {
  position: relative;

}





body {

  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


/*body::before {
  content: "";
  display: block;
  height: 100%;
  width: 15%;
  background: #b0e1cb;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  mix-blend-mode: multiply;

}*/

body.page-recruit::before {
  content: none;

}

body.page-recruit-top::before {
  content: none;

}





p{
  word-break: break-all;
}


.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

.flexCenter {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.flexLeft {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}

.flexRight {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fullWidth {
  width: 100%;
}

.wp-block-image{
  margin-bottom:32px;
}

.wp-block-image figcaption{
  text-align:center;
  margin:10px 0 0;
  font-size:14px;
}

.company .wrap-main {
  background: url(images/bg-company-top.png) no-repeat center center;
}

.works .wrap-main {
  background: url(images/bg-works-top.png) no-repeat center center;
}

.recruit .wrap-main {
  background: url(images/bg-recruit-top.png) no-repeat center center;
}

.inner-main {
  color: #fff;
}

.inner-main h1 {
  margin-bottom: 1em;
}

.inner-main p {
  letter-spacing: 0.1em;
  line-height: 1.75;
}

.list-post{
  margin-top:-20px;
}

.box-post-text {
  border-bottom: 1px solid #ccc;
}

.box-post-text:nth-child(1) {
  border-top: 1px solid #ccc;
}


.box-post-text a {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
}

.box-post-text a:hover {
  background: #f3f3f3;
}

.gray .box-post-text a:hover {
  background: #efefef;
}

.box-post-text a > * {
  margin: 5px 0;
  line-height: 20px;
}

.box-post-text time {
  margin-right: 10px;
  font-size: 12px;
  width: 6em;
}

.main-column > p{
  font-size: 16px;
  text-align: justify;
  line-height:2.3;
	letter-spacing:.05em;
}

.main-column ul{
  margin:15px 0;
  padding-left: 1.2em;
}


.main-column h2 + ul{
  margin:-15px 0 15px;
}

.main-column h2 + ol{
  margin:-15px 0 15px;
}


.main-column h2 + figure {
  margin-top:-30px;
}

.main-column h2 + figure.env-gallery {
  margin-top:0;
}


.main-column ul li{
    font-size: 14px;
    line-height: 1.5;
    position: relative;
	margin-bottom:0.5em;

}

.main-column ul li:before{
  content:"";
  display:inline-block;
  height:10px;
  width:10px;
  background:#15957a;
  border-radius:5px;
	margin-right:5px;
      position: absolute;
    left: -15px;
    top: 0.5em;
}


.page-recruit .main-column ul li:before{
  content:"";
  display:inline-block;
  height:10px;
  width:10px;
  background:#999999;
  border-radius:5px;
  margin-right:5px;
      position: absolute;
    left: -15px;
    top: 0.5em;
}


.main-column pre{
  max-width:100%;
  font-size: 16px;
  text-align: justify;
  line-height: 1.8;
  white-space: pre-wrap ;
}

.main-column table{
  margin:32px 0;
  width:100%;
}

.main-column table.team-detail table{
  margin:0;
  width:100%;
}
.main-column table.team-detail td.td-flex-start{
    display: flex;
    flex-direction: column-reverse;
}

.main-column table th,
.main-column table td{
   line-height: 1.75;
}

.main-column table th{
  padding: 15px 15px 15px 0;
  vertical-align: top;1

}


.main-column table td{
  padding: 15px 0 15px 15px;
  vertical-align: top;
}



.main-column .box-post-text h3 {
  width: calc(100% - 180px);
  margin:0;
  padding:0;
  border:none;
  font-size: 14px;
  line-height:32px;
  position:relative;
}


.main-column .box-post-text h3:after {
  content:"";
  display:block;
  height:14px;
  width:14px;
  background:url(images/triangle.svg);
  background-size:cover;
  position:absolute;
  bottom:4px;
  right:0;
  top: 0;
  margin: auto;
}

.wrap-post-img-text {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.wrap-post-img-text:after {
  display: block;
  width: 31%;
  height: 1px;
  content: "";
}

.box-post-img-text {
 width: calc((100% - 30px) / 2);
  margin: 20px 0;
}

.box-post-img-text a {
  display: block;
}

.box-post-img-text a:hover{
    opacity: 0.8;
}

.box-post-img-text a > *:nth-child(1) {
  margin-bottom: 10px;
  position:relative;
  display:flex;
}

.box-post-img-text a > *:nth-child(1) span{
  position:absolute;
  top:10px;
  border-radius:0 3px 3px 0;
}

.box-post-img-text img {
  width: 100%;
  height: auto;
}

.box-post-img-text time {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
}



.main-column .box-post-img-text h3,.wrap-1column .box-post-img-text h3 {
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-size:20px;
  margin: 0;
  padding: 0;
  border: none;
}

.box-post-img-text p {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: #999999;
}



.box-post-archive {
  border-bottom: 1px solid #ccc;
}

.box-post-archive:nth-child(1) {
  border-top: 1px solid #ccc;
}



.box-post-archive a {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 20px 0;
}

.box-post-archive a:hover {
  opacity: 0.8;
}

.wrap-1column .box-post-archive a {
  padding: 40px 0;
}

.box-post-archive a > div:nth-child(1) {
  width: 250px;
  margin-right: 20px;
}

.box-post-archive a > div:nth-child(2) {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: calc(100% - 270px);
}


.box-post-archive img {
  width: 100%;
  height: auto;
}

.box-post-archive time {
  display: block;
  font-size: 12px;
  line-height: 20px;
}

.box-post-archive time:before,.box-post-img-text time:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url(images/date.svg);
  background-size: cover;
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.main-column .box-post-archive h3,.wrap-1column .box-post-archive h3 {
  width: 100%;
  line-height: 2.3;
  font-size:18px;
  margin:5px 0 5px;
  padding:0;
  border:none;
  font-weight: normal;
  color: #222222;
}

.box-post-archive p {
  width: 100%;
  line-height: 1.5;
  font-size:12px;
  margin-top:5px;
  position:relative;
  padding-bottom:25px;
  text-align: justify;
  color: #999999;

}

.box-post-archive p:before {
  content:"続きを読む";
  position:absolute;
  bottom:0;
  right:20px;
}

.box-post-archive p:after {
  content:"";
  display:block;
  height:14px;
  width:14px;
  background:url(images/triangle.svg);
  background-size:cover;
  position:absolute;
  bottom:4px;
  right:0;
}

.box-post-archive-side a {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.box-post-archive-side a:hover {
  opacity: 0.8;
}

.box-post-archive-side a > div:nth-child(1) {
  width: 100px;
  margin-right:10px;
}

.box-post-archive-side a > div:nth-child(2) {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: calc(100% - 100px);
}

.box-post-archive-side img {
  width: 100%;
	height:calc(100px / 1.618)!important;
  height: auto;
}

.box-post-archive-side time {
  display: block;
  font-size: 10px;
  line-height: 1;
  margin-bottom: 3px;
}

.box-post-archive-side time::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url(images/date.svg);
  background-size: cover;
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.box-post-archive-side h3 {
  width: 100%;
  line-height: 1.5;
  text-align: justify;
}

.box-post-archive-side .category-post {
  display:none;
  width: 70px;
  padding:0 5px;
  height: 14px;
  border-radius: 3px;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.wrap-post-archive-side{
	margin-top:12px;
}

.wrap-post-archive-side .box-post-archive-side:not(:last-child){
	margin-bottom:15px;
}

.category-post {
  display: inline-block;
  height: 20px;
  border-radius: 3px;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}

.box-post-text .category-post {
  margin-right: 15px;
  width:12em;
}

.header {
  z-index: 9999;
  position: absolute;


  padding:0 0 0 15px;
  width:100%;
}




.header.over.active {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  transition: all 0.5s 0.5s;
  z-index: 9999;
  background: #ffffff;

}

.header.over.active .global-nav > li > a {
    color: #222;
}



.inner-header {
  display: flex;
	flex-direction:column;
  position: relative;
  align-items: center;
  justify-content: space-between;

}

.wrap-logo {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.wrap-logo .logo {
  display: block;
	width:350px;
}

.wrap-logo .logo:hover {
  opacity:1;
}

.wrap-logo .logo img {
  display: block;
  max-width: 100%;
  height: auto;

}

.head-header {
  line-height: 1.25;
  margin-top:10px;
  font-size:12px;
}

.head-header h1,.head-header p{
  line-height: 1.25;
  color: #939597;
  text-align: center;
}


.wrap-tel-header p {
  font-size: 12px;
  text-align: right;
	margin-top:14px;
	margin-right:50px;
	    word-break: keep-all;
    white-space: nowrap;
}

.tel {
  font-size: 28px;
  position:relative;
	top:8px;
}

.tel:before {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.list-sp-menu {
  display: none;
}

.list-sp-menu li {
  width: 45px;
  height: 40px;
}

.sp-menu {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  text-align: center;
}

.sp-menu span {
  -webkit-transform: scale(0.8, 0.8);
  display: block;
  padding-top: 0.75em;
          transform: scale(0.8, 0.8);
  font-size: 10px;
}

.sp-menu:before {
  color: #15957a;
  font-size: 24px;
}

.nav-open {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
}

/*.nav-open:after {
  -webkit-transform: scale(0.8, 0.8);
          transform: scale(0.8, 0.8);
  font-size: 10px;
  text-align: center;
  content: "MENU";
  color: #ffffff;
}*/

.footer {
  position:relative;
  margin-top:auto;
}

.footer-contact {
  padding: 50px 0;
  border-bottom: 1px solid #ccc;
}

.footer-contact * {
  text-align: center;
}

.footer-contact h3 {
  margin-bottom: 2em;
  padding: 0.5em 0;
  border-bottom: 1px solid #ccc;
  font-size: 20px;
  line-height: 1.5;
}

.footer-top {
  padding: 50px 0;
}

.inner-footer-top {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.box-info-footer {
    width: 300px;
    margin: 0 auto 30px;
    text-align: center;
}

.box-info-footer .logo {
  display: block;
  margin-bottom:0.5em;
  border-bottom: 1px solid #ffffff;
  display: flex;
  padding-bottom: 10px;
}

.box-info-footer img {
  width: 320px;
  height: auto;
}

.box-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 115px;
}

.info-footer-box{
  flex:1;
}

.info-footer {

  line-height: 1.5;
  font-size: 13px;
}

.info-footer dt{
  text-align: left;
  color: #ffffff;
  font-size: 13px;
}

.info-footer dd{
  text-align: left;
  color: #ffffff;
  font-size: 13px;
}

.list-contact li:not(:last-child) {
  margin-bottom: 0.75em;
}

.btn-number {
  display: block;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 30px;
  font-style: normal;
  font-weight: bold;
}

.btn-number:before {
  width: 3em;
  margin-right: 0.5em;
  background: #999999;
  color:#ffffff;
  font-size: 45%;
  font-weight: normal;
  line-height: 30px;
  text-align: center;
  vertical-align: bottom;
  border-radius:5px;
}

.btn-contact {
  display: block;
  position: relative;
  padding: 1em;
  border-radius: 3px;
  text-align: center;
}

.btn-contact:after {
  -webkit-transform: rotate(45deg);
  display: inline-block;
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  width: 6px;
  height: 6px;
  margin: auto;
          transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
}

.footer-contents{
  width:840px;
  display:flex;
	justify-content:space-between;
}

.wrap-footer-nav {
  display: flex;
  justify-content: space-between;
  width: auto!important;
  min-width: 250px;
}

.wrap-footer-nav .footer-nav li a span{
  display:none;
}

.wrap-footer-nav .footer-nav{
  width:calc((100% - 0px) / 2);
 
}

.wrap-footer-nav .footer-nav li a{
  /*border-top:1px solid #cccccc;*/
  padding:0.5em 0 0;

  white-space: nowrap;
  font-size: 13px;
  color: #ffffff;
}

.footer-facebook{
  width: calc((100% - 40px) / 3);
}

.footer-twitter{
  width: calc((100% - 40px) / 3);
}

.copyright {
  padding: 0.5em 0;
	font-size:12px;
	color:#ffffff;
	text-align:center;
  background: #15957a;
}

.copyright small {
	color:#ffffff;
  display: block;
  text-align: left;
  width: 100%;

}

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

.sidebar .btn-archive{
	width:100%;
	background:none;
	color:#666 ;
	border:1px solid #ccc;
}

.sidebar .btn-archive:after {
	    border-top: 1px solid #999999;
    border-right: 1px solid #999999;
}

.widget_nav_menu,
.box-side {

}

.widget_nav_menu:not(:last-child),
.box-side:not(:last-child) {
  margin-bottom: 30px;
}


.widget h3,
.head-side {
  position: relative;
  padding:7px 0 4px;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom:15px;
  line-height: 1;
  font-weight: bold;
  color: #15957a;
}

.widget h3::before,h3.head-side:before{
  display: block;
  content: "";
  height: 1px;
  background-color: #cccccc;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  min-width: 20px;
  margin-right: 20px;
}

.widget h3::after,h3.head-side:after{
  display: block;
  content: "";
  height: 1px;
  background-color: #cccccc;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  min-width: 20px;
  margin-left: 20px;
}





.widget_nav_menu .menu > li{
  position:relative;
}

.widget_nav_menu .menu > li,.list-side > li {

}

.widget_nav_menu .menu > li a,
.list-side > li a {
  display: block;
  position: relative;
  padding: 0.75em 0;
  line-height: 1.25;
}

.widget_nav_menu .menu > li a:hover,
.list-side > li a:hover {
  background: #f3f3f3;
  color: #222222;
}

.widget_nav_menu ul > li > ul.sub-menu{
  display: none;
  visibility:hidden;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  opacity:0;
  transition:0.5s;
}

.widget_nav_menu ul > li:hover > ul.sub-menu{
  visibility:visible;
  z-index:10;
  opacity:1;

}

.widget_nav_menu ul > li > ul.sub-menu > li:nth-child(1):before{
  content: "";
  height: 15px;
  width: 15px;
  display: block;
  background: #15957a;
  transform: rotate(-45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -8px;
  margin: auto 0;
  z-index: -1;
}

.widget_nav_menu ul > li > ul.sub-menu > li > ul > li:nth-child(1):before{
 background: #104f82;
}

.widget_nav_menu ul > li > ul.sub-menu > li:not(:last-child) {
  border-bottom: 1px solid #c9caca;
}


.widget_nav_menu ul > li > ul.sub-menu > li{
  position:relative;
}

.widget_nav_menu ul > li > ul.sub-menu > li a{
  background:#15957a;
  padding:0.75em 1em;
  color:#ffffff;
  z-index:1;
}

.widget_nav_menu ul > li > ul.sub-menu > li a:hover{
  opacity:1;
  background:#15957a;
}

.widget_nav_menu ul > li > ul.sub-menu > li > ul  > li > a{
  background:#104f82;
}


.wp-caption-text{
  font-size: 15px;
  line-height: 1.7em;
  margin-top: 0.5em;
  width: 340px;
  text-align: justify;
  letter-spacing: 0.05em;
  word-break: break-all;
}

.list-side2 {
  margin-bottom: 1em;
}

.list-side2 li {

}

.list-side2 li:not(:first-child) {
  margin-top: 15px;
}

.list-side2 a {
  display: flex;
}

.list-side2 a div:nth-child(1) {
  width: 90px;
  margin-right: 10px;grid-column:
}

.list-side2 a div:nth-child(2) {
  width: 200px;
}

.box-side2 .list-side2 img {
  width: 100%;
  height: 90px!important;
}

.list-side2 time {
  display: block;
  margin-bottom: 0.5em;
  font-size: 12px;
}

.list-side2 span {
  font-size: 14px;
  line-height: 1.5;
}

.side-compnay {
  line-height: 1.5;
}

.side-compnay picture{
  margin-top:12px;
}

.side-compnay img {
  margin-bottom: 1em;
}

.side-address-compnay {
  margin-bottom: 1em;

}

.side-address-compnay p{
  display: flex;
  align-items: baseline;
}

.side-address-compnay p:before{
  content:"";
  display:inline-block;
  width:14px;
  height:14px;
  margin-right:5px;
  background-size:cover;
  position: relative;
  top: 2px;
}

.company_name:before{
  background:url(images/company.svg);
}

.company_zipcode:before{
  background:url(images/zip.svg);
}

.company_pref:before{
  background:url(images/pref.svg);
}

.company_tel:before{
  background:url(images/tel2.svg);
}

.company_fax:before{
  background:url(images/fax.svg);
}

.side-list-compnay {
  display: flex;
  justify-content: space-between;
}

.side-list-compnay li{
  width:48%;
}

.side-list-compnay a {
  display: block;
  padding: 0.5em 1em;
  border: 1px solid #cccccc;
  font-size: 12px;
  text-align: center;
  transition: 0.4s;
}

.side-list-compnay a:hover {
  background: #15957a;
  border: 1px solid #15957a;
  color: #fff;
  opacity: 1;
  transition: 0.4s;
}

.side-access:before {
  margin-right: 0.5em;
  color: #dc4b3e;
}

.side-company:after {
  margin-left: 1em;
}

.box-search {
  display: flex;
  padding-top:12px;
}

.box-search input[type="text"] {
  width: 85%;
  padding: 7px 14px 6px;
  border-radius: 5px 0 0 5px;
  border-right: none;
  font-size: 14px;
}

.box-search button[type="submit"] {
  width: 15%;
}

.box-search .fa-search {
  display: block;
  background: #939597;
  height: 39px;
  border-radius: 0 5px 5px 0;
  position:relative;
}

.box-search .fa-search:before {
  content:"";
  background:url(images/search.svg);
  background-size:cover;
  display:block;
  height:20px;
  width:20px;
  position:absolute;
  top:0;
  bottom:0;
  right:0;
  left:0;
  margin:auto;
}

.check {
  display: none;
}

.check + .parent {
  display: flex;
  justify-content: space-between;
  padding: 0.75em 1em;
  background: #15957a;
  color: #fff;
  line-height: 1.25;
  cursor: pointer;
}

.check + .parent:after {
  content: "▼";
}

.check + .parent + ul {
  display: none;
}

.check:checked + .parent:after {
  content: "▲";
}

.check:checked + .parent + ul {
  display: block;
}

.breadcrumb {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin-bottom: 2em;
  padding: 1em 0 0.5em;
  overflow-x: scroll;
   -ms-overflow-style: none;
    scrollbar-width: none;
}

.breadcrumb li:nth-child(1){
  padding-left:26px;
  position:relative;
}

.breadcrumb li:nth-child(1) a:before{
  content:"";
  width:18px;
  height:15px;
  display:inline-block;
  background:url(images/home.svg);
  background-size:cover;
  margin-right:5px;
  position:absolute;
  left:0;
  top:0;

}

.breadcrumb li:not(:first-child):before {
  margin: 0 0.5em 0 1em;
  font-size: 12px;
  content: "/";
}

.breadcrumb a,
.breadcrumb span {
  font-size: 12px;
  white-space: nowrap;
}

.breadcrumb li{
  display: flex;
  align-items: center;
}

.breadcrumb a:hover {
  text-decoration: underline;
  opacity: 1;
}

.interval5em > *:not(:last-child) {
  margin-bottom: 0.5em;
}

.interval10em > *:not(:last-child) {
  margin-bottom: 1em;
}

.interval15em > *:not(:last-child) {
  margin-bottom: 1.5em;
}

.interval20em > *:not(:last-child) {
  margin-bottom: 2em;
}

.interval25em > *:not(:last-child) {
  margin-bottom: 2.5em;
}

.interval30em > *:not(:last-child) {
  margin-bottom: 3em;
}

.interval35em > *:not(:last-child) {
  margin-bottom: 3.5em;
}

.interval40em > *:not(:last-child) {
  margin-bottom: 4em;
}

.interval45em > *:not(:last-child) {
  margin-bottom: 4.5em;
}

.interval50em > *:not(:last-child) {
  margin-bottom: 5em;
}

.main-visual {
  position:relative;
  z-index: 10;
}


.index .main-visual .contents{
  width: 100%;
}


.main-visual .noslide {
  width:100%;
  position:relative;
  height: 100vh;
  overflow: hidden;
}

.top-slider-box{
  height: 100%;
  width: 100%;
}

.top-video{
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

body:not(.index) .main-visual {
  display: flex;
  align-items: center;
  height: 200px;
  background: linear-gradient(135deg, #555555, #555555),url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/img0-1.jpg) no-repeat center center;
  background-size: cover;
  background-blend-mode: multiply;
  padding-top: 75px;
}

.webp body:not(.index) .main-visual {
  display: flex;
  align-items: center;
  height: 300px;
  background: linear-gradient(135deg, #555555, #555555),url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/img0-1.jpg.webp) no-repeat center center;
  background-size: cover;
  background-blend-mode: multiply;
  padding-top: 75px;
}

body.page-recruit .main-visual {
  display: flex;
  align-items: center;
  height: 175px;
  background: none!important;
  background-size: cover;
  background-blend-mode: multiply;
  padding-top: 35px;
}

.webp body.page-recruit .main-visual {
  display: flex;
  align-items: center;
  height: 265px;
  background: none!important;

  background-size: cover;
  background-blend-mode: multiply;
  padding-top: 35px;
}


.webp body.page-baseball .main-visual {
  display: flex;
  align-items: center;
  height: 175px;
  background: url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/bbc_fv.jpg.webp) no-repeat center center;
  background-size: cover;
  background-blend-mode: multiply;
  padding-top: 35px;
}

body.page-baseball .main-visual {
  display: flex;
  align-items: center;
  height: 265px;
  background: url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/bbc_fv.jpg) no-repeat center center;

  background-size: cover;
  background-blend-mode: multiply;
  padding-top: 35px;
}



body.page-recruit-top .main-visual {
  display: flex;
  align-items: center;
  height: 175px;
  background: none!important;
  background-size: cover;
  background-blend-mode: multiply;
  padding-top: 35px;
}

.webp body.page-recruit-top .main-visual {
  display: flex;
  align-items: center;
  height: 265px;
  background: none!important;

  background-size: cover;
  background-blend-mode: multiply;
  padding-top: 35px;
}

body.service .main-visual {
  background: linear-gradient(135deg, #555555, #555555),url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/img0-1.jpg) no-repeat center center;
  background-size: cover;
  background-blend-mode: multiply;
}

.webp body.service .main-visual {
  background: linear-gradient(135deg, #555555, #555555),url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/img0-1.jpg.webp) no-repeat center center;
  background-size: cover;
  background-blend-mode: multiply;
}

body.info .main-visual {
  background: linear-gradient(135deg, #555555, #555555),url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/img0-1.jpg) no-repeat center center;
  background-size: cover;
  background-blend-mode: multiply;
}

.webp body.info .main-visual {
  background: linear-gradient(135deg, #555555, #555555),url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/img0-1.jpg.webp) no-repeat center center;
  background-size: cover;
  background-blend-mode: multiply;
}

body.works .main-visual {
  background: linear-gradient(135deg, #555555, #555555),url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/img0-1.jpg) no-repeat center center;
  background-size: cover;
  background-blend-mode: multiply;
}

.webp body.works .main-visual {
  background: linear-gradient(135deg, #555555, #555555),url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/img0-1.jpg.webp) no-repeat center center;
  background-size: cover;
  background-blend-mode: multiply;
}

body.search .main-visual {
  background: linear-gradient(135deg, #555555, #555555),url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/img0-1.jpg) no-repeat center center;
  background-size: cover;
  background-blend-mode: multiply;
}

.webp body.search .main-visual {
  background: linear-gradient(135deg, #555555, #555555),url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/img0-1.jpg.webp) no-repeat center center;
  background-size: cover;
  background-blend-mode: multiply;
}

body:not(.index) .main-visual.landing {
  display: flex;
  align-items: center;
  height: 650px;
  background:none;
  background-size: initial;
  background-blend-mode: initial;
  position: relative;
  justify-content: center;
}



body:not(.index) .main-visual.landing .head-page{
  position: absolute;
}

body:not(.index) .main-visual.landing .head-page::before{
  content: "";
  display: block;
  height: calc(100% + 100px);
  width: calc(100% + 100px);
  position: absolute;
  top: -50px;
  left: -50px;
  background: #444444;
  z-index: -5;
  mix-blend-mode: multiply;
}

body:not(.index) .main-visual.landing picture{
  z-index: -10;
}

body:not(.index) .main-visual.landing img{
  object-fit: cover;
  height: 100%;
  width: 100%;
  z-index: -10;
}

.main-visual picture {
  display: block;
}

.main-visual img {
  width: 100%;
  height: auto;
}

.head-page {
  color: #fff;
  font-size:24px;
  letter-spacing: 0.2em;
  text-align: left;
  text-indent: 0.2em;
  line-height: 1;
  z-index: 20;
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  font-weight: bold;
  text-transform: uppercase;

}

.head-page:after {
  margin-bottom: 10px;
  font-size: 80px;
  font-weight: bold;
  font-family: cen;
}



.page-recruit .head-page {
  color: #222222;


}

.page-recruit .head-page::after {
  font-family: recruit;
  font-size: 60px;
  margin-top: 80px;
}


.page-recruit-top .head-page {
  color: #222222;


}

.page-recruit-top .head-page::after {
  font-family: recruit;
  font-size: 60px;
  margin-top: 80px;
}

.wrap-slider {
  position: relative;
  width: 1920px;
  left: -360px;
}

.wrap-slider .slider {
  position: relative;
  width: 100%;
  height: 600px;
}

.wrap-slider .slider li {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-fill-mode: backwards;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
          animation-name: fade;
          animation-duration: 15s;
          animation-fill-mode: backwards;
          animation-iteration-count: infinite;
}

.wrap-slider .slider li:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.wrap-slider .slider li:nth-child(2) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.wrap-slider .slider li:nth-child(3) {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}

@-webkit-keyframes fade {
  0% {
    display: none;
    opacity: 0;
  }
  10% {
    display: block;
    opacity: 1;
  }
  33% {
    display: block;
    opacity: 1;
  }
  45% {
    display: none;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}

@keyframes fade {
  0% {
    display: none;
    opacity: 0;
  }
  10% {
    display: block;
    opacity: 1;
  }
  33% {
    display: block;
    opacity: 1;
  }
  45% {
    display: none;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}

.wrap-head-common {
  margin-bottom: 30px;
}

.head-common {
  line-height: 1.5;
}




.main-column h2 {
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  line-height: 1.5;
  margin-bottom: 48px;
  margin-top: -80px;
  padding-top: 160px;
  font-size: 36px;
  padding-bottom: 0;
  margin-bottom: 20px!important;
  line-height:1.5;
  border-bottom: 3px double #15957a33;
  color: #15957a;
  font-weight: bold;
}




.page-recruit .main-column h2 {
    color: #222222;
    background: linear-gradient(transparent 60%, rgba(21, 149, 122, 0.6) 0);
    font-size: 48px;
    letter-spacing: 0.05em;
    border-bottom: none;
    line-height: 1.5;
    margin-top: 80px;
    padding-top: 0 !important;
    letter-spacing: 0.05em;
    border-bottom: none;
    display: inline!important;
    padding-left:0 ;

}

.grobal-career.page-recruit .main-column h2 {
  padding: 0;
}




.page-recruit .main-column h2::before{
  content: ""!important;
  display: block;
  width: 100%;
  height: 80px;
  background: none;
  margin: 0;
  padding: 0;

}

.page-recruit .main-column h2::after{
  content: "";
  display: block;
  width: 100%;
  height: 40px;
  background: none;
  margin: 0;
  padding: 0;

}

.page-recruit.interview .main-column .interview-box h2 {
    color: #fff;
    background:none;
    font-size:28px;

}

.page-recruit .main-column .about-employee-box h2{

    margin-top: 20px;	

}
.main-column .about-employee-box  h2 + p {
    margin-top: 20px;
}
.page-recruit .main-column .about-employee-box h2::before{
	display:none;
}

.page-recruit .main-column h2 + .wp-block-columns{
  margin-top: 0;
}

.page-recruit-top .main-column .recruit-message h2 {
    color: #5dd1b9;
    border-bottom: none;
    line-height: 1.5;
    margin-top: 0px;
    padding-top: 0 !important;
    font-size:64px;
    letter-spacing: 0.05em;
    align-items: center;
    text-align: center;
}

.page-recruit-top .main-column .recruit-message h2::before {
    color: #5dd1b9;
  font-size:28px;
	margin-bottom:20px;
  content: none;
}

.main-column .recruit-message  h2 + p {
    margin-top: 20px;
}



.page-recruit-top .main-column h2 {

    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;



}




.main-column .recruit-interview h2 {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  border: none;
  background: none;
}


 .main-column .recruit-interview h2::before {
    content: attr(data-text)!important;
    display: block;
    font-size: 54px;
}


.page-recruit-top .main-column h2::before {

    content: attr(data-text);
    display: block;
    font-size: 54px;



}


.main-column .wp-block-column h2{
  border-bottom: none;
  padding-top: 80px;
  padding-bottom: 0;
  margin-bottom: 36px;
  display: block;
}

.main-column .wp-block-column h2 span{
 
  font-size:24px;
  color: #15957a;
  margin-left: 5px;
  margin-top: 5px;
  font-weight: bold;
}


.main-column h2:after {
  display: block;
  content:none;
  height: 1px;
  background-color: #999999;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  min-width: 20px;
  margin-left:20px;
}

.main-column h2 + p{
	margin-top:-20px;
}

.wrap-1column h2 {
  display: flex;
  flex-flow: row;
  align-items:baseline;
  letter-spacing:0.2em;
  text-indent:0.2em;
  font-size:24px;
  margin-bottom:60px;


}
.index .wrap-1column h2{
	left: -170px;
  font-weight: bold;
  position: relative;
}

/*.index .wrap-1column h2::before {
  content:"";
  display: block;
  width: 750px;
  height: 750px;
  background: #00000022;
  border-radius: 500px;
  left: -500px;
  top: -300px;
  position: absolute;

}*/

.single-post .head-common {
  font-size: 36px;
  border-bottom:1px solid #cccccc;
}

a:hover {
  color:#15957a;
  transition: 0.2s;
}

.hover-opacity1 a:hover {
  opacity: 1;
}

.wrap-btn {
  display: flex;
}

.section-about .wrap-btn {
  justify-content: flex-end;
}

.btn-archive {
  display: block;
  z-index: 1;
  position: relative;
  width:50%;
  min-width:200px;
  margin-top: 40px;
  padding: 1em 2em;
  text-align: center;
  transition: 0.5s;
  color:#ffffff;
    background-color: #15957a;
  line-height: 1.5;
  border-radius: 50px;
}

.footer-contact .btn-archive {
  min-width: 350px;
  margin: 2em 0;
  box-shadow: 0 0 3px 1px #ccc;
}

.sidebar .btn-archive {
  margin-top: 15px;
}

.section-about .btn-archive {
  width:100%;
  min-width:100px;
}

.btn-archive:hover {
  background: #15957a;

  color: #fff;
  opacity: 1;
}

.btn-archive:after {
  -webkit-transform: rotate(45deg);
  display: inline-block;
  position: absolute;
  top: 0;
  right: 1.5em;
  bottom: 0;
  width: 12px;
  height:12px;
  margin: auto;
          transform: rotate(45deg);
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  content: "";
}

.btn-archive:hover:after {
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}

.btn-form,
button.btn-form {
  border: 1px solid #15957a;
  background: #15957a;
  color: #fff;
  text-align: center;
}

.btn-form:hover,
button.btn-form:hover {
  background: #fff;
  color: #15957a;
  opacity: 1;
}

.global-nav {
  display: flex;
	justify-content:right;
  z-index: 2;
  width: 100%;
}

.global-nav > li {
  position: relative;
	padding:0 1em;
}


.global-nav > li > a {
  display: block;
  padding:0.5em 0;
  text-align: center;
  position:relative;
	font-weight:normal;
  margin: 17px 0;
  font-weight: bold;
  color: #ffffff;
}

.global-nav > li > a::after {
  content:"";
  display: block;
  position: absolute;
  height: 1px;
  width:0;
  background: #15957a;
  transition: 0.4s;
  bottom: 3px;

}

.global-nav > li > a:hover:after {
  width: 100%;
  transition: 0.4s;
}

.global-nav > li > a span{
  display:block;
  font-size:10px;
  margin-top:4px;
  margin-bottom:-4px;
  position: absolute;
  left: 0;
  right: 0;
  font-weight: bold;
  margin-right: auto;
  margin-left: auto;
}

.global-nav > li:before {
  content: none;
  display: block;
  height: 1px;
  width:0;
  background: #15957a;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  transition:0.5s;
}

.global-nav > li:hover:before {
  width: 80%;

}



.global-nav > li > ul {
  z-index: 2;
  position: absolute;
  top: calc(100% + 0px);
  left: calc((250px - 100%) / -2);
  width: 250px;
  height:auto;
  opacity: 0;
  transition:0.5s;
  visibility: hidden;
}




.global-nav > li:hover > ul{
  height:auto;
  opacity:1;
  transition:0.5s;
  top: calc(100% + 15px);
  visibility: visible;
}

.global-nav > li:hover > ul:before{
  content:"";
  display:block;
  height:15px;
  width:100%;
  position:absolute;
  top:-15px;
  right:0;
  left:0;
  margin:0 auto;
}

.global-nav > li:hover > ul:after{
  content:"";
  height:0;
  width:0;
  display:block;
  border-color: transparent transparent #15957a;
  border-style: solid;
  border-width: 0 10px 10px;
  position:absolute;
  top:-10px;
  right:0;
  left:0;
  margin:0 auto;
  z-index:-1;
}

.global-nav > li > ul.sub-menu > li > ul > li{
	position:relative;
}



.global-nav > li:last-child > ul.sub-menu > li > ul > li:nth-child(1):before{
  left:initial;
  right: -20px;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}



.global-nav > li > ul.sub-menu > li a:hover{
  background:#226f5f;
  opacity: 1;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}



.global-nav > li > ul > li{
  position:relative;
  transition:0.5s;
}

.global-nav > li > ul > li > ul{
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  opacity:0;
  visibility:hidden;
  transition:0.5s;
  z-index:1;
}

.global-nav > li > ul > li:hover > ul{
  opacity:1;
  visibility:visible;
  transition:0.5s;

}


.global-nav > li:last-child > ul > li > ul{
  right:100%;
  left:initial;
}



.global-nav > li > ul > li > ul > li{
  opacity:0;
  visibility:hidden;

}

.global-nav > li > ul > li:hover > ul > li{
  opacity:1;
  visibility:visible;
}



.global-nav .sub-menu li:not(:last-child) {
  border-bottom: 1px solid #f3f3f3;
}

.global-nav .sub-menu a {
  display: block;
  padding: 1em;
  text-align: center;
}

.global-nav li > ul > li > a{
	z-index:10;
}

.drawer-nav > li,.drawer-nav > li > ul > li {
  position: relative;
  border-bottom: 1px solid #ccc;
  line-height: 1.75;
}

.drawer-nav > li > ul > li:last-child {
  border-bottom: none;
}

 .drawer-nav > li > a,.drawer-nav > li > ul > li > a {
  z-index: 1;
  position: relative;
}

.drawer-nav > li > ul > li > a {
  text-indent: .5em;
}

.drawer-nav > li,.drawer-nav > li > ul > li > ul >li{
  position: relative;
  border-bottom: 1px solid #ccc;
  line-height: 1.75;
}

.drawer-nav > li > ul > li > ul >li:last-child {
  border-bottom: none;
}

.drawer-nav > li > ul > li > ul >li a{
  text-indent: 1em;
}

.drawer-nav li a span{
  display:none;
}

.drawer-nav .sub-menu {
  display: none;
  border-top: 1px solid #ccc;
}

.drawer-nav a {
  display: block;
  padding: 0.5em 2.5vw;
}




.drawer-nav .btn-sub + a:after {
	content:none;
}

/* .drawer-nav a:before {
  content:"●";
  margin-right:3px;
  color:#999999;
} */

.drawer-nav .btn-sub {
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 42px;
  margin: auto;

}

.drawer-nav .btn-sub span {
    z-index: 2;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 13px;
    width: 17px;
    height: 17px;
    margin: auto;
    color: #999999;
    border: 1px solid #939597;
    border-radius: 20px;
}

.btn-sub span::before {
    content: "";
    display: block;
    height: 1px;
    width: 7px;
    background: #939597;
    position: absolute;
    top: 7px;
    right: 0;
    left: 0;
    margin: auto;
}

.btn-sub.close span::after {
    content: "";
    display: block;
    height: 1px;
    width: 7px;
    background: #939597;
    position: absolute;
    top: 7px;
    right: 0;
    left: 0;
    margin: auto;
    transform: rotate(
-90deg
);
    transition: 0.3s;
    transition-timing-function: ease-in-out;
}

.btn-sub.open span::after {
    content: "";
    display: block;
    height: 1px;
    width: 7px;
    background: #939597;
    position: absolute;
    top: 7px;
    right: 0;
    left: 0;
    margin: auto;
    transform: rotate(
0deg
);
    transition: 0.3s;
    transition-timing-function: ease-in-out;
}

.footer-nav > li {
  line-height: 1.2;
  text-align: left;
}

.footer-nav > li > a {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-nav a:before {
  -webkit-transform: rotate(45deg);
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 0.5em;
          transform: rotate(45deg);
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  vertical-align: 5%;
  content: "";
}

.footer-nav .sub-menu li a{
  padding-left: 1em;
}

.footer-nav .sub-menu li ul li a{
  padding-left: 2em;
}

.pagination {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  color: #939597;
  padding-left: 0!important;
}

.pagination > span {
  position: relative;
  top: -4px;
  margin: 0 3px;
}

.pagination li {
  margin: 0 5px;
  list-style: none!important;
}

.pagination .pager {
  display: flex;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  border-radius: 50%;
  border: 1px solid #cccccc;
  line-height: 40px;
  text-align: center;
}

.pagination .pager i {
  vertical-align: bottom;
  display: flex;
  align-items:center;
  position: relative;
  margin: 0 auto;
  justify-content: center;
}

.pagination .pager i.fa-chevron-right{

}

.pagination .pager i.fa-chevron-right::before,.pagination .pager i.fa-chevron-left::before{
  content:"";
  height: 1px;
  width: 15px;
  background: #ffffff;
  position: absolute;
}

.pagination .pager i.fa-chevron-right::after{
  content:"";
  height: 9px;
  width:9px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  transform: rotate(-45deg);
  position: absolute;
  right: -7px;
}

.pagination .pager i.fa-chevron-left::after{
  content:"";
  height: 9px;
  width:9px;
  border-left: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
  transform: rotate(-45deg);
  position: absolute;
  left: -7px;
}


.pagination .pager:hover,
.pagination .pager.current {
  background: #15957a;
  opacity: 1;
  color: #ffffff;
  border: 1px solid #15957a;
}

.pagetop {
  display: flex;
  z-index: 5;
  position: fixed;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #15957a;
  color: #fff;
  text-align: center;
  transition: 0.3s;
  z-index: 9999;

  /*
	.fas {
		display: block;
		padding: 0.25em 0 0em;
		height: 1em;
	}
	img{
		height: auto;

		@include media(pc) {
			width: 96px;
		}
		@include media(sp) {
			width: 15vw;
		}
	}
	.fas{
		display: block;
		font-weight: bold;
		color: #fff;
		text-align: center;
		background: $color-main;
		background-size: contain;

		@include media(pc) {
			width: 50px;
			height: 50px;
			font-size: 20px;
			line-height: 50px;
		}
		@include media(sp) {
			width: 10vw;
			height: 10vw;
			font-size: 4vw;
			line-height: 10vw;
		}
	}
*/
}

.pagetop span {
  -webkit-transform: rotate(-45deg);
  display: block;
  width: 25%;
  height: 25%;
  margin-top: 5px;
          transform: rotate(-45deg);
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

.lazyload,
.lazyloading {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
  width:100%;
}

.loading {
  z-index: 10100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
}

.loading img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
  margin: auto;
}

.bg-loading img {
  background: #aaa url(images/bg-loading.svg) no-repeat center center;
  background-size: 50px;
}

.stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.dot-pulse {
  -webkit-animation: dotPulse 1.5s infinite linear;
  -webkit-animation-delay: 0.25s;
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #15957a;
  box-shadow: 9999px 0 0 -5px #00529c;
  color: #00529c;
          animation: dotPulse 1.5s infinite linear;
          animation-delay: 0.25s;
}

.dot-pulse::before, .dot-pulse::after {
  display: inline-block;
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #00529c;
  color: #00529c;
  content: "";
}

.dot-pulse::before {
  -webkit-animation: dotPulseBefore 1.5s infinite linear;
  -webkit-animation-delay: 0s;
  box-shadow: 9984px 0 0 -5px #00529c;
          animation: dotPulseBefore 1.5s infinite linear;
          animation-delay: 0s;
}

.dot-pulse::after {
  -webkit-animation: dotPulseAfter 1.5s infinite linear;
  -webkit-animation-delay: 0.5s;
  box-shadow: 10014px 0 0 -5px #00529c;
          animation: dotPulseAfter 1.5s infinite linear;
          animation-delay: 0.5s;
}

@-webkit-keyframes dotPulseBefore {
  0% {
    box-shadow: 9984px 0 0 -5px #00529c;
  }
  30% {
    box-shadow: 9984px 0 0 2px #00529c;
  }
  60%,
  100% {
    box-shadow: 9984px 0 0 -5px #00529c;
  }
}

@keyframes dotPulseBefore {
  0% {
    box-shadow: 9984px 0 0 -5px #00529c;
  }
  30% {
    box-shadow: 9984px 0 0 2px #00529c;
  }
  60%,
  100% {
    box-shadow: 9984px 0 0 -5px #00529c;
  }
}

@-webkit-keyframes dotPulse {
  0% {
    box-shadow: 9999px 0 0 -5px #00529c;
  }
  30% {
    box-shadow: 9999px 0 0 2px #00529c;
  }
  60%,
  100% {
    box-shadow: 9999px 0 0 -5px #00529c;
  }
}

@keyframes dotPulse {
  0% {
    box-shadow: 9999px 0 0 -5px #00529c;
  }
  30% {
    box-shadow: 9999px 0 0 2px #00529c;
  }
  60%,
  100% {
    box-shadow: 9999px 0 0 -5px #00529c;
  }
}

@-webkit-keyframes dotPulseAfter {
  0% {
    box-shadow: 10014px 0 0 -5px #00529c;
  }
  30% {
    box-shadow: 10014px 0 0 2px #00529c;
  }
  60%,
  100% {
    box-shadow: 10014px 0 0 -5px #00529c;
  }
}

@keyframes dotPulseAfter {
  0% {
    box-shadow: 10014px 0 0 -5px #00529c;
  }
  30% {
    box-shadow: 10014px 0 0 2px #00529c;
  }
  60%,
  100% {
    box-shadow: 10014px 0 0 -5px #00529c;
  }
}

.main-column ul.nav-link {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: stretch;
  margin: 0;
  padding-left: 0;
}

.link-prev,
.link-next{
  width: calc((100% - 20px) / 2);
  position:relative;
}

.link-prev a,
.link-next a,
.link-archive a {
  display: block;
  padding:20px;
  border: 1px solid #cccccc;
  text-align: center;
  height: 100%
}

.link-prev a,
.link-next a{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.link-prev a > p,
.link-next a > p{
  width: 100%;
  height: 1em;
  line-height: 1;
  margin-bottom: 15px;
  text-align: center;
}



.link-prev a > div.nav-link-img,
.link-next a > div.nav-link-img{
  width: 120px;
  height: calc(120px / 1.618);
  margin-right: 15px;

}

.link-prev a .nav-link-img img,
.link-next a .nav-link-img img{
  width: 100%;
  height:100%;
  object-fit: cover;
}

.link-prev a > div.nav-link-detail,
.link-next a > div.nav-link-detail{
  display: flex;
  flex-direction: column;
  align-items:flex-start;
  width: calc(100% - 135px);

}

.link-prev a > div time,
.link-next a > div time{
  line-height: 1;
  margin-bottom: 0.5em;
  font-size: 12px;
}

.link-prev a > div time::before,
.link-next a > div time::before{
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url(images/date.svg);
  background-size: cover;
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.link-prev a > div h3,
.link-next a > div h3{
  margin: 0;
  padding: 0;
  border-bottom: none;
  font-size: 16px;
}

.link-prev a:before, .link-prev a:after,
.link-next a:before,
.link-next a:after,
.link-archive a:before,
.link-archive a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
}

.link-archive {

  width: 100%;
}

.link-archive a {
  border: 1px solid #cccccc;
  color: #222222;
  margin-top: 20px;
  font-size: 15px;
}

.link-prev a:hover,
.link-next a:hover{
  opacity: 0.8;
  }

.link-archive a:hover{
  background: #15957a;
  border: 1px solid #15957a;
  color: #ffffff;

}

.link-prev a:hover p,
.link-next a:hover p{

}

.link-prev a:after {
    -webkit-transform: rotate(225deg);
    display: inline-block;
    position: absolute;
    top: 22px;
    left: 24px;
    width: 12px;
    height: 12px;
    margin: auto;
    transform: rotate(225deg);
    border-top: 1px solid #999999;
    border-right: 1px solid #999999;
    content: "";
  }

.link-next {

}

.link-next a:after {
  -webkit-transform: rotate(45deg);
  display: inline-block;
  position: absolute;
  top: 22px;
  right: 24px;
  width: 12px;
  height: 12px;
  margin: auto;
  transform: rotate(45deg);
  border-top: 1px solid #999999;
  border-right: 1px solid #999999;
  content: "";
}

.icon-phone:before {
  content: "\f095";
}

.icon-access:before {
  content: "\f1ac";
}

.icon-mail:before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "\f0e0";
}

.icon-question:before,
.icon-tel:before {
  display: inline-block;
  margin-right: 0.5em;
  vertical-align: -10%;
  content: "";
}

.icon-question:before {
  background: url(images/icon-question.png) no-repeat center center;
  background-size: contain;
}

.icon-tel:before {
  background: url(images/icon-tel.png) no-repeat center center;
  background-size: contain;
}

.bg-blue {
  background: #15957a;
}

.bg-stripe-blue {
  background-image: linear-gradient(90deg, #15957a 0, #15957a 3%, transparent 3%, transparent 100%);
  background-position: center bottom;
  background-repeat: repeat;
  background-size: 18px 18px;
}

.index .overlay {
  position: relative;
}

.list-num > li {
  list-style-position: inside;
  counter-increment: cnt;
}

.list-num > li:before {
  display: inline-block;
  content: counter(cnt);
}

.main-column ul.list-caution{
  margin:0.5em 0 0;
}


ul.list-caution li{
  font-size:12px;
  line-height:16px;
}


ul.list-caution li:before {
  content: "※";
  height:initial;
  width:initial;
  background:none;
}

.list-circle > li {
  margin-left: 1em;
  text-indent: -1em;
}

.list-circle > li:before {
  content: "●";
}

.list-circle-border > li {
  margin-left: 1em;
  text-indent: -1em;
}

.list-circle-border > li:before {
  content: "○";
}

.list-dot > li {
  margin-left: 1em;
  text-indent: -1em;
}

.list-dot > li:before {
  content: "・";
}

.imgFullWidth {
  display: block;
  width: 100%;
  height: auto;
}

/*
* object-fitのclassとie対応（ofi.js必要）
*/
.ofi-cover {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.ofi-contain {
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}

.wrap-zoom {
  width: 100%;
  overflow: hidden;
}

.wrap-zoom > img {
  transition: 0.5s;
}

.wrap-post-archive .wrap-zoom {
  width: 100%;
  aspect-ratio: 1 / 1;   /* ← 正方形を作る */
  overflow: hidden;
}

.wrap-post-archive .wrap-zoom > img {
  transition: 0.5s;
  width: 100%;
  height: 100%!important;
  object-fit: cover;
}

a:hover .wrap-zoom > img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/*　疑似要素テキスト　*/
.attrTextLeft:before,
.attrTextTop:before,
.attrTextBottom:after,
.attrTextRight:after {
  content: attr(data-text);
}

.attrTextLeft:before,
.attrTextRight:after {
  display: inline-block;
}

.attrTextTop:before,
.attrTextBottom:after {
  display: block;
}

/*　疑似要素テキスト　*/
/*　疑似要素アイコン　*/
.attrIconLeft:before,
.attrIconTop:before,
.attrIconBottom:after,
.attrIconRight:after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background: #15957a;
  position: absolute;
  left: -36px;
  top: -2px;
  border-radius:5px;
}

.attrIconLeft:after{
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background:url(images/tel.svg);
  background-size:cover;
  position: absolute;
  left: -36px;
  top: -2px;
  border-radius:5px;
  margin:5px;
}

.attrIconTop:before,
.attrIconBottom:after {
  display: block;
}

.attrIconLeft:before,
.attrIconRight:after {
  display: inline-block;
}

/*　疑似要素アイコン　*/
#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display: none;
}

#nav-open {
  z-index: 10000;
  position: absolute;
  top: 12px;
  right: 20px;
  width: 40px;
  height: 40px;
  margin: auto;
  vertical-align: middle;
}

#nav-open:hover {
  cursor: pointer;
}

#nav-open span {
  position: absolute;
  right: 0;
  left: 0;
  width: 80%;
  height: 3px;
  margin: auto;
  background: #ffffff;
  transition: all 0.5s;
}

.over #nav-open span {
 background: #999999;
}

.page-recruit-top.over #nav-open span {
 background: #ffffff;
}

.page-recruit.over #nav-open span {
 background: #ffffff;
}

#nav-open span:nth-of-type(1) {
  top: 2px;
}

#nav-open span:nth-of-type(2) {
  top: 11px;
}

#nav-open span:nth-of-type(3) {
  top: 20px;
}

/*閉じる用の薄黒カバー*/

.btn-close {
    margin: 0 auto 4vw;
    padding: 1em;
    text-align: center;
    cursor: pointer;
    border: #cccccc 1px solid;
    width: calc(100% - 5vw);
}

.btn-close:before {
	content:"×";
}

#nav-input:checked ~ #nav-open span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
          transform: translateY(9px) rotate(-45deg);
  transition: all 0.5s;
  background: #ffffff;
}

#nav-input:checked ~ #nav-open span:nth-of-type(2) {
  opacity: 0;
}

#nav-input:checked ~ #nav-open span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
          transform: translateY(-9px) rotate(45deg);
  transition: all 0.5s;
  background: #ffffff;
}

.table-common {
  width: 100%;
}

.table-common th {
  letter-spacing: 0.05em;
  line-height: 2;
}

.table-common td {
  letter-spacing: 0.05em;
  line-height: 2;
}

.table-common a {
  text-decoration: underline;
}

.table-contact {
  width: 100%;
  border-top: 1px solid #ccc;
}

.table-contact th {
  position: relative;
}

.table-contact th.required:after {
  position: absolute;
  right: 0;
  height: 1.5em;
  padding: 0 1em;
  background: #e60012;
  color: #fff;
  line-height: 1.5;
  content: "必須";
}

.table-contact td {
  border-bottom: 1px solid #ccc;
}

.wrap-about {
  display: flex;
  flex-flow: row-reverse nowrap;
  width: 100%;
}

.wrap-about img{
  height:100%;
}

.wrap-about > div:nth-child(1) {
  margin-left: 25px;
}

.wrap-about > div:nth-child(2) {
  width: calc(100% - 256px - 25px);
}

.wrap-message {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 25px;
  border: 1px solid #ccc;
}

.wrap-message > div {

}

.wrap .wrap-message h3{
  margin-top:0;
  width: 100%;
  display: block;

}

.wrap-message > div:nth-child(2) {
  text-align: left;
  width:75%;
  margin-right:2%;
}


.wrap-message > div:nth-child(3) {
  text-align: center;
  width: 23%;

}

.wrap-message > div:nth-child(2) img{
  text-align: center;
  width: 68%;
}

.top-message {
  margin-bottom: 0.5em;
  font-family: "リュウミン M-KL", "Ryumin Medium KL", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 48px;
  line-height: 1.25;
}

.single-post {
margin-bottom: 50px;
/* border: 50px solid #e8f2ff;
padding: 40px;*/
}

.single-header {
  margin-bottom: 1em;
  display:flex;
  justify-content:space-between;
}

.single-header time {
  margin-right: 2em;
  font-size: 12px;
}

.single-header time:before {
  content:"";
  display:inline-block;
  width:14px;
  height:14px;
  background:url(images/date.svg);
  background-size:cover;
  margin-right:5px;
  position:relative;
  top:2px;
}

.single-contents > *:not(:last-child) {
  margin-bottom: 1em;
}

.main-column > *:nth-child(1){
  margin-top:0;

}


.main-column > h2:nth-child(1){
  padding-top: 0;
}


.main-column h3 {
  margin: 2em 0 .5em;
  padding: 0.25em 0;
  color: #15957a;
  font-size: 28px;
  line-height: 1.25;
  font-weight: bold;
text-align:justify;
  position: relative;
  white-space: pre-wrap;
  }


  .page-recruit .main-column h3 {
  /*padding-left: 30px;*/
  }


  .wp-block-column > h3:nth-of-type(1){
    margin-top: 0;
  }

.wrap-message p{
  text-align:justify;
}

.president{
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin-top:1em;
  font-weight: bold;
  color: #000000;
  font-size: 14px;
	line-height:1.5;
  width: 100%;
text-align: right;

}

.president span{
	display:inline;
}

.main-column h3 + p{
  margin-top:-10px;
}

strong{
	font-weight:bold;
}

.main-column .box-post-img-text h3 + p,.main-column .box-post-archive p{
  margin-top:0;
  text-align: justify;
}

.main-column .box-post-archive p{
  color: #999999;
}

.main-column h4 {
  margin: 1em 0 0.25em;
  font-size: 20px;
    line-height: 1.5;

    font-weight: bold;
    color: #121212;

    text-align: justify;
    position: relative;
    padding-left: 30px;
}

.main-column h4:before {
  margin-right: 5px;
  color: #222222;
  content: "■";
  position: absolute;
  left:0
}

.single-contents p {
  line-height: 2;
}

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

.single-contents iframe {
  max-width: 100%;
}

.single-contents table {
  width: 100%;
}

.single-contents table th,
.single-contents table td {
  padding: 0.5em 1em;
  line-height: 1.5;
}

.single-contents strong {
  font-weight: bold;
}

.related{
  margin-top:50px;
}

.wp-block-media-text{
  margin:32px 0;
}

.wp-block-media-text{
  align-items:flex-start;
}

.wp-block-media-text > *:nth-child(1){
  margin-right:32px;
}

.wp-block-media-text.has-media-on-the-right > *:nth-child(1){
  margin-right:0px;
}

.wp-block-media-text.has-media-on-the-right > *:nth-child(2){
  margin-right:32px;
}

.wp-block-media-text .wp-block-media-text__content{
  padding:0;
}

.wp-block-media-text .wp-block-media-text__content p{
  font-size: 14px;
  text-align: justify;
  line-height: 1.7;

}

.wp-block-columns{
  margin:32px 0;
  gap: 40px;
}




.wp-block-column .wp-block-image{
  margin-bottom:10px;
}

.wp-block-button{
  margin:15px 0 32px;
}

.wp-block-button__link{
  min-width:50%;
}


.wp-block-cover{
  margin:32px 0;
}

.main-column ul.nav-link li:before{
  content:none;
}


.main-column ul.nav-link li.link-archive:nth-child(1){
	margin:0 auto;
}

.has-very-dark-gray-background-color.has-very-dark-gray-background-color {
  background-color: #15957a;
}


.main-column .sitemap > li{
  border-top:1px solid #cccccc;
}

.main-column .sitemap > li > a{
  padding:10px 0;
  display: block;
}

.main-column .sitemap > li:last-child{
	border-bottom:1px solid #cccccc;
}



.main-column .sitemap li a span{
  display:none;
}


.main-column .sitemap .sub-menu{
	margin:0;
}

.main-column .sitemap > li > ul > li{
	width:90%;
	margin-left:10%;
	border-top:1px solid #cccccc;
}

.main-column .sitemap > li > ul > li > a{
	padding:10px 0;
	display:block;
}

.main-column .sitemap > li > ul > li > ul > li{
	width:90%;
	margin-left:10%;
	border-top:1px solid #cccccc;
}


.main-column .sitemap > li > ul > li > ul > li > a{
	padding:10px 0;
	display:block;
}




.main-column .sitemap li:before{
  content:none;
}

.main-column .contact-form table th{
  padding: 15px 15px 15px 0;
  min-width:250px;
}

.main-column .contact-form table th div{
  display: flex;
  align-items: center;
}

.main-column .contact-form table td{
  padding: 15px 0 15px 15px;
  width: calc(100% - 250px);
}

.section-about h2{
  margin-bottom:15px;
}

.section-about .btn-archive{
  margin-top:15px;
}

.main-column .wrap-post-img-text .box-post-img-text h3{
  margin-top:5px;
}

#nav-content .logo {
    display: block;
    margin: 4vw 4vw 2vw;
    overflow: hidden;
}

.mobile-tel-header {
    display: flex;
    flex-direction: column-reverse;
    margin: 2.5vw;
    background: #15957a;
    color: #ffffff;
    padding: 8px;
    border-radius: 5px;
    width: auto;
}

.mobile-tel-header a{
  color: #ffffff;
  text-align: center;
  font-size: 5vw;
  border-bottom: 1px solid #ffffff;
  padding-bottom:3px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.mobile-tel-header a::before {
    content: "お気軽にお問い合わせください";
    width: 100%;
    background: none;
    margin: 0;
    border-radius: initial;
    font-size:2.6vw;
    text-align: center;
    border-bottom: 1px solid #ffffff;
    height: auto;
    padding: 0 0 6px;
    margin: 0 0 6px;
    position: initial;
    display: block;
    transform: inherit;
    top: initial;
    left: -32px;
    margin-top: 3px;
    order: -2;
}

.mobile-tel-header a::after{
	content:"";
	display:block;
	height:32px;
	width:32px;
    position:initial;
	background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24"><path fill="%23ffffff" d="M15,12H17A5,5 0 0,0 12,7V9A3,3 0 0,1 15,12M19,12H21C21,7 16.97,3 12,3V5C15.86,5 19,8.13 19,12M20,15.5C18.75,15.5 17.55,15.3 16.43,14.93C16.08,14.82 15.69,14.9 15.41,15.18L13.21,17.38C10.38,15.94 8.06,13.62 6.62,10.79L8.82,8.59C9.1,8.31 9.18,7.92 9.07,7.57C8.7,6.45 8.5,5.25 8.5,4A1,1 0 0,0 7.5,3H4A1,1 0 0,0 3,4A17,17 0 0,0 20,21A1,1 0 0,0 21,20V16.5A1,1 0 0,0 20,15.5Z" /></svg>') no-repeat center center;
  background-size:cover;
	left: -1px;
  top: 18px;
  order:-1;
  margin: 0 1vw 0 0;
}

.mobile-tel-header p{
  font-size: 2.5vw;
  text-align:center;
  padding-top: 9px;
  color: #ffffff;

}

.mw_wp_form_input .mw-input-page {
    display: block;
}

.mw_wp_form p {
    font-size: 16px;
    line-height: 1.7em;
}

.mw_wp_form_input .mw-check-page {
    display: none;
}

.mw_wp_form_preview .mw-input-page {
    display: none;
}


.mw-btn {
    background: #15957a;
    display: block;
    text-align: center;
    color: #ffffff;
    padding: 1em;
}
/* シンプルフッター */

.simple-footer-nav {
    display: flex;
    justify-content: left;
    margin-bottom: -30px;
    margin-top: 20px;
    width: 400px;
    flex-wrap: wrap;
    gap:5px;
}

.simple-footer-nav li a {
    padding:0 0 .5em;
    color: #ffffff;
    font-size: 13px;
    position: relative;
    margin-right: .5e;

}

.simple-footer-nav li a::before {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 0.5em;
    transform: rotate(45deg);
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    vertical-align: 5%;
    content: "";
}

.page-recruit-top .simple-footer-nav li a::before {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 0.5em;
    transform: rotate(45deg);
    border-top: 2px solid #555555;
    border-right: 2px solid #555555;
    vertical-align: 5%;
    content: "";
}

.simple-footer-nav li a:hover {
    color: #15957a;
}

.simple-footer-nav li ul{
	display:none;
}

.no-webp .contact-box {
    background: url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/1J1A9416.jpg) #000000cc;
    background-blend-mode: multiply;
    background-position: center;
    padding: 100px 0;
    background-size: cover;
}


.webp .contact-box {
    background: url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/1J1A9416.jpg.webp) #00000099;
    background-blend-mode: multiply;
    background-position: center;
    padding: 100px 0;
    background-size: cover;

}

.contact-box h2 {
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: bold;
    line-height: 1.5em;
}



.contact-box p {
    text-align: center;
    line-height: 2em;
    font-size: 16px;
    color: #ffffff;
}

.contact-btn-box {
    width: 700px;
    margin: 30px auto 10px;
    display: flex;
    justify-content: space-between;
}


.contact-btn-box a {
    display: block;
    padding: 18px 0 15px;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    border:1px solid #ffffff;
    width: calc((100% - 30px) / 2);
    font-size: 24px;
    transition: 0.2s;
    border-radius: 50px;
}

.contact-btn-box a:hover {
    background: #ffffff;
    border: 1px solid #ffffff;
    transition: 0.2s;
    color: #15957a;
}



.contact-tel {
    color: #ffffff;
    margin-right: 15px;
}

.contact-tel:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(images/tel.svg)no-repeat;
    background-size: cover;
    margin-right: 5px;
    position: relative;
    top: 2px;
}

.gray{
  background: #f3f3f3;
}

.white{
  background: #ffffff;
}

.none{
  background: none;
}

.section-icon{

}

.section-icon h2{
  letter-spacing: .05em;
  margin-bottom: .3em;
  text-indent: .05em;
  position: relative;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

.section-icon h2::before{
  content:"";
  display: block;
  height: 80px;
  width:80px;
  border: 1px solid #15957a;
  border-radius: 50px;
  margin-bottom: 20px;
}

.index .top-col-icon1 h2:after{
  content:"";
  display: block;
  height: 45px;
  width:45px;
  background: url(images/top-col-icon1.svg)no-repeat;
  position: absolute;
  top: 17.5px;
  margin-top: 0;
}

.index .top-col-icon2 h2:after{
  content:"";
  display: block;
  height: 45px;
  width:45px;
  background: url(images/top-col-icon2.svg)no-repeat;
  position: absolute;
  top: 17.5px;
  margin-top: 0;
}

.index .top-col-icon3 h2:after{
  content:"";
  display: block;
  height: 45px;
  width:45px;
  background: url(images/top-col-icon3.svg)no-repeat;
  position: absolute;
  top: 17.5px;
  margin-top: 0;
}

.index .top-col-icon4 h2:after{
  content:"";
  display: block;
  height: 45px;
  width:45px;
  background: url(images/top-col-icon4.svg)no-repeat;
  position: absolute;
  top: 17.5px;
  margin-top: 0;
}

.section-icon h3{
  text-align: center;
  margin-bottom: 1em;
  font-weight: bold;
  font-size: 14px;
  color: #15957a;
}

.section-summary{
  background: linear-gradient(135deg, #444444, #444444),url(images/earth.jpg) no-repeat center center;
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center center;
  color: #ffffff;
  background-attachment: fixed !important;
}

.webp .section-summary{
  background: linear-gradient(135deg, #444444, #444444),url(images/earth.jpg.webp) no-repeat center center;
	background-blend-mode: multiply;
  background-size: cover;
  background-position: center center;
}

.section-summary h2,.section-summary h3,.section-summary h4,.section-summary p,.section-summary a{
  color:#ffffff;

}

.section-summary h2{
  letter-spacing: .05em;
  text-align: left;
  margin-bottom: .5em;
  display: block;
  text-indent: 0;
  line-height: 1.7;
}



.section-summary .btn-archive{
  width: 100%
}

/*.section-message h2,.section-message p{
  font-family: "リュウミン M-KL", "Ryumin Medium KL", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}*/

.section-message p{
  text-align: center;
  font-size: 18px;
}

.main-column .box-post-faq h3 {
    padding: 0;
    background: none;
    font-size: 36px;
    line-height: 1.7;
    border-bottom: 1px solid #cccccc;
    position: relative;
    padding-left: 42px;
}

.main-column .box-post-faq h3::before {
    content: "Q";
    font-size: 120px;
    height: auto;
    width: auto;
    background: none;
    color: #93959733;
    font-weight: bold;
    position: absolute;
    left: -30px;
    top:-80px;
    text-align: justify;

}

.main-column .box-post-faq div {
    padding-left: 42px;
    position: relative;
}

.main-column .box-post-faq div::before {
    content: "A";
    height: auto;
    width: auto;
    background: none;
    color: #15957a33;
    font-weight: bold;
    font-size: 120px;
    position: absolute;
    left: -22px;
    top:-12px;
    line-height: 1;
}

.archive .box-post-staff{
  position: relative;
  padding-bottom: 62px;
}

.box-post-staff .staff-img-box{
  width:100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  margin-bottom: 15px;
}

.box-post-staff img{
  width: 100%;
  height: auto!important;

}

.box-post-staff .staff-img-box::after{
  content:"";
  display: block;
  height: 1px;
  width: 100%;
  background: #ffffff;
  position: absolute;
  bottom: 15px;
}

.box-post-staff h3{
  position: absolute;
  display: block;
  bottom: 0;
  margin: 0;
  padding: 15px 25px 25px;
  width: 100%;
  color: #ffff;
  border-bottom: none;
  line-height: 1;
  font-family: "リュウミン M-KL", "Ryumin Medium KL", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.box-post-staff h3 span{
  position: relative;
  z-index: 1;
  color: #ffffff;
  display: flex;
  align-items: baseline;
  justify-content: space-between;

}

.box-post-staff h3 span::after{
  content:attr(data-text);
  margin-left: 10px;
  font-size: 10px;
  font-weight: bold;
}

.box-post-staff h3::before{
  content:attr(data-text);
  display: block;
  position: relative;
  z-index: 1;
  font-size: 14px;
  margin-bottom: 0.5em;
}

.box-post-staff h3::after{
  content:"";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222222;
  mix-blend-mode: multiply;
  top:0;
  left: 0;
}

.box-post-staff p.staff-message{

}

.box-post-staff .btn-archive {
    width: 100%;
    margin-top: 15px;
}

.staff .main-column .btn-archive {
    width: 100%;
}

.staff .archive .main-column .btn-archive {
    width: 100%;
    position: absolute;
    bottom: 0;
}


.single-contents-narrow{
  width: 840px;
  margin: 0 auto;
}

.single-staff-summary{
  display: flex;
  padding: 80px;
  background: #f3f3f3;

}

.single-staff-summary .head-common{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
  font-family: "リュウミン M-KL", "Ryumin Medium KL", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.single-staff-summary .staff-position{
  font-family: "リュウミン M-KL", "Ryumin Medium KL", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.single-staff-summary .head-common::after{
  content: attr(data-text);
  font-size: 16px;
  margin-left: 20px;
}



.single-staff-summary img{
  width: 400px;
  margin-right: 60px;
  box-shadow: 20px 20px 30px #93959799;
}



.single-staff-list .box-post-staff h3{
  font-size: 18px;
  padding: 15px 15px 25px;
}

.single-staff-list .box-post-staff h3::before{
  font-size: 12px;
}

.box-post-service{
  position: relative;
  min-height: 500px;
  display: flex;
  margin-top: 200px;
  padding: 80px;

}

.box-post-service::before,.box-post-service::after{
  position: absolute;
  z-index: 10;
  font-size: 180px;
  color: #ffffff;
  font-weight: bold;
  mix-blend-mode: overlay;
  line-height: 120px;
}

.box-post-service:nth-child(1)::before,.box-post-service:nth-child(1)::after{
  content: "01.";
}

.box-post-service:nth-child(2)::before,.box-post-service:nth-child(2)::after{
  content: "02.";
}

.box-post-service:nth-child(3)::before,.box-post-service:nth-child(3)::after{
  content: "03.";
}

.box-post-service:nth-child(4)::before,.box-post-service:nth-child(4)::after{
  content: "04.";
}

.box-post-service:nth-child(5)::before,.box-post-service:nth-child(5)::after{
  content: "05.";
}

.box-post-service:nth-child(6)::before,.box-post-service:nth-child(6)::after{
  content: "06.";
}

.box-post-service:nth-child(7)::before,.box-post-service:nth-child(7)::after{
  content: "07.";
}

.box-post-service:nth-child(8)::before,.box-post-service:nth-child(8)::after{
  content: "08.";
}

.box-post-service:nth-child(9)::before,.box-post-service:nth-child(9)::after{
  content: "09.";
}

.box-post-service:nth-child(10)::before,.box-post-service:nth-child(10)::after{
  content: "10.";
}



.box-post-service img.service-img-main{
  position: absolute;
  width: 500px;
  height: 500px!important;
  box-shadow: 20px 20px 30px #93959799;
  object-fit: cover;
  top: -100px;
  left: 50px;

}

.box-post-service .box-post-service-bg-box{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.box-post-service .box-post-service-bg-box span{
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  position: absolute;
  top: -10px;
  left: -10px;
  filter: blur(4px);
  opacity: 0.5;
}


.box-post-service .box-post-service-img-box{
  min-width: 300px;
}

.box-post-service .box-post-service-detail-box{
  z-index: 10;
  position: relative;
  background: #ffffffdd;
  padding: 40px;
}



.box-post-service h3{
  position: relative;
  border: none;
  font-size: 48px;
  margin: 0;
  line-height: 1;
  padding: 0px 0 20px;
  font-weight: bold;
  color: #15957a;
  font-family: "リュウミン M-KL", "Ryumin Medium KL", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.box-post-service h3::after{
  content: attr(data-text);
  font-size: 16px;
  margin-left: 20px;

}

.single-post-service-detail-box{
  background: #ffffffcc;
  padding: 80px;
  position: relative;
  overflow: hidden;
}

.single-post-service-detail-box::before{
  content: "";
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  display: block;
  position: absolute;
  top: -10px;
  left: -10px;
  filter: blur(4px);
  z-index: -10;
}

.single-post-service h1{
  position: relative;
  border: none;
  font-size: 64px;
  margin: 0;
  line-height: 1;
  padding: 0px 0 20px;
  font-weight: bold;
  color: #15957a;
  font-family: "リュウミン M-KL", "Ryumin Medium KL", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.single-post-service h1::after{
  content: attr(data-text);
  font-size: 32px;
  margin-left: 20px;

}

.box-post-service .btn-archive {
    width: 100%;
    margin-top: 15px;
}

.nav > .contents {
  width: auto;
}

.landing-separator img{
  height: 450px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.landing-content{
  width: 1200px;
  padding: 180px 40px;
  margin: 0 auto;
}

.landing-content iframe{
  margin: 50px auto;
  display: block;
}

.wrap-1column-max .wp-block-image{
  margin-bottom: 0;
}

.wrap-1column-max h2{
  text-align: center;
  display: block;
  margin-bottom: 28px;
  margin-top: 28px;
  padding-top: 0;
  font-size: 32px;
}

.wrap-1column-max p{

}

.wrap-1column-max .main-column h2 + p {
    margin-top: 0;
}


.col-1{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

}

.col-1 >  *{
  width: 100%;
  margin: 20px 0;
}


.col-2{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

}

.col-2 >  *{
  width: calc((100% - 40px) / 2);
  margin: 20px 0;
}


.col-3{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.col-3 > *{
  width: calc((100% - 80px) / 3);
  margin: 20px 0;
}

.col-4{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

}

.col-4 >  *{
  width: calc((100% - 120px) / 4);
  margin: 20px 0;
}

.br-min1280{
  display: block;
}

.br-min1080{
  display: block;
}

.br-min880{
  display: block;
}

.br-min680{
  display: block;
}

.br-max1280{
  display: none;
}

.br-max1080{
  display: none;
}

.br-max880{
  display: none;
}

.br-max680{
  display: none;
}

header .search-form{
  position: absolute;
  top: 15px;
  left: 15px;
  display: none;
}

.over header .search-form{
  position: absolute;
  top: 15px;
  left: 15px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: 33px;
}

.over header.active .search-form{
  display: none;
}

header .search-form .search-field{
  border-radius: 20px;
  width:33px;
  padding: 0.5em 16px;
  background: url(images/search.svg)no-repeat;
  background-size: 16px;
  background-position: center left 7px;
}

header .search-form .search-field:focus{
  width:300px;
  transition: 0.2s;
  background: none;
}

header .search-form .screen-reader-text,header .search-form .search-submit{
  display: none;
}

.wrap-2column .main-column {
  width:calc(100% - 360px);
}

.wrap-2column {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

.sidebar{
  margin-top: -13px;
  width:320px;
}

.mw_wp_form .horizontal-item + .horizontal-item{
  margin-right: 10px;
  margin-left: 0;
}

.spsearch{
  display: none;
}

input.accordion {
    display: none;
}

/* ナイトバード　デモ専用 */

.bird-box{
  position: relative;
}

.bird{
  position: absolute;
  width: 650px;
  top: -140px;
}

.build-box{
  position: relative;
}

.build {
  position: absolute;
  width: 700px;
  top: -260px;
  left: -50px;
}

.jazz{
  background: url(http://keita2017.xsrv.jp/night-bird/wp-content/uploads/jazz.svg);
  background-size: cover;
  background-position: center;
}

.jazz h2,.jazz p{
  color: #ffffff;
}


/* ナイトバード　デモ専用 ここまで */



#js-nav-drawer{
  display: flex;
  align-items: center;
}

.index .contents p{

font-size: 16px;
}

.index .top-news .box-post-archive p{
	font-weight: normal;
 font-size: 11px;
display: none;
}
.section-about p{
  margin-right: 20vw;
}

.section-about img{
  width: calc(100% + ((100vw - 1200px) /2));
  height: 550px!important;
  max-width: initial;
  object-fit: cover;
  margin-top: 40px;
  border-radius: 10px 0 0 10px ;

}

.wrap {
  z-index: 20;
  position: relative;
}

.top-news .wrap-post-archive{

width: 100%;
display: flex;
gap: 20px;
}

.wrap-1column .top-news .box-post-archive a{
  padding: 0;
  display: flex;
  flex-direction: column;
}

.wrap-1column .top-news .box-post-archive{
  border:none;
    width: calc((100% - 60px) / 4);
}

.wrap-1column .top-news .box-post-archive a > div:nth-of-type(1){
  margin-right: 0!important;
  width: 100%!important;
  margin-bottom: 20px;
}

.wrap-1column .top-news .box-post-archive a > div:nth-of-type(1) img{
  width: 100%;

}


.wrap-1column .top-news .box-post-archive a > div:nth-child(1) {
    width: 160px;
    margin-right: 20px;
}

.top-news .box-post-archive p{
  padding-bottom: 0;
  margin-top: 0;
}

.top-news .box-post-archive p:before{
  content: none;
}

.top-news .box-post-archive p:after{
  content: none;
}

.wrap-1column .top-news .box-post-archive a > div:nth-child(2){
  width: 100%;
}


.wrap-1column .top-news .box-post-archive h3{
  line-height: 1.5;
}

#js-nav-drawer > .contents:nth-child(1){
  width: 350px;
}

.footer-detail{
  display: flex;
  justify-content: space-between;
  width: 100%;

}


.wrap-footer-nav .menu{
  display: none;
}

.exhino-box{

  margin-top: 20px;
}

.exhino{
  background: #ffffff;
      color: #61c397;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
}


.exlink{
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid #61c397;
  margin-left: 10px;
  position: relative;
}

.exlink span{
  display: block;
  width: 10px;
  height: 10px;
  background: #ffffff;
  position: absolute;
  top: -1px;
  right: -1px;

}

.exlink span::before{
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid #61c397;
  border-right: 1px solid #61c397;
  position: absolute;
  top: 0;
  right: 0;
}

.exlink span::after{
  content: "";
  display: block;
  height: 1px;
  width: 11px;
  background: #61c397;
  transform: rotate(-45deg);
  position: absolute;
  top: 4px;
  right: -1px;

}


.page-recruit{

  background: url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/bg.jpg);
  background-position: center;

}

.page-recruit header{
 margin: 0; 
 width: 100%;
 background: #15957a;
 box-shadow: none;
 border-radius: 0;
 transition: all 0.5s 0.5s;

}


.page-recruit .header.over.active{
  background: #15957a;
 transition: all 0.5s 0.5s;
}


.page-recruit .header.over.active .global-nav > li > a{
  color: #ffffff;
 transition: all 0.5s 0.5s;
 font-weight: bold;
}

.page-recruit .header.over.active .global-nav > li > a:hover{
color:#ffffff;
}


.page-recruit .main-column h3::before{
  content: "◉";
  color:#15957a;
  margin-right: 5px;



}

.page-recruit .main-column .jobs-works h3::before{

  position: absolute;
  left: -50px!important;
  top: 50px;


}


.page-recruit .global-nav > li > a{
color:#ffffff;
}


.page-recruit .global-nav > li > a:hover{
color:#222222;
}




.page-recruit .footer{
  background: #ffffff;
}

.page-recruit .box-info-footer .logo {

    border-bottom: 1px solid #555555;
  }

.page-recruit .info-footer dt,.page-recruit .info-footer dd{
  color: #222222;
  font-size: 13px;
}


.page-recruit .simple-footer-nav li a {
  color: #222222;
  }

.page-recruit .wrap-footer-nav .footer-nav li a{
  color: #222222;
  }

.page-recruit .footer-nav a:before{
      border-top: 2px solid #555555;
    border-right: 2px solid #555555;
}

.page-recruit #js-nav-drawer > .contents:nth-child(1){
  display: flex;
  align-items: center;

}


.page-recruit #js-nav-drawer > .contents:nth-child(1)::after{
  content:"";
    display: block;
  width: 100px;
  height: 26.33333333px;
  min-width: 100px;

  background: url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/recluit.svg);
  margin-left: 10px;
  background-size: cover;




}





.page-recruit-top{

  background: url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/toyamahinosama_hp_bg.png);
  background-position: center;

}


.tire01 {
    position: absolute;
    height: 1920px;
    width: 150px;
    opacity: 0.2;
    transform: rotate(73deg);
    top: -800px;
}


.tire02 {
    position:absolute;
    height: 1920px;
    width: 150px;
    opacity: 0.2;
    transform: rotate(-58deg);
    top: -920px;
    right: 230px;
}


.recluit-infomation .tire01,.recluit-infomation .tire02{
  z-index: 20;
  opacity: 1;
  mix-blend-mode: overlay;
}




.page-recruit-top header{
 margin: 0; 
 width: 100%;
 background: none;
 box-shadow: none;
 border-radius: 0;
 transition: all 0.5s 0.5s;
}


.page-recruit-top .header.over.active{
  background: #15957a;
 transition: all 0.5s 0.5s;
}


.page-recruit-top .header.over.active .global-nav > li > a{
  color: #ffffff;
 transition: all 0.5s 0.5s;
}

.page-recruit-top .header.over.active .global-nav > li > a:hover{
  color: #222222;
}


.page-recruit-top .global-nav > li > a{

}



.page-recruit-top .footer{
  background: #ffffff;
}

.page-recruit-top .box-info-footer .logo {

    border-bottom: 1px solid #555555;
  }

.page-recruit-top .info-footer dt,.page-recruit .info-footer dd{
  color: #222222;
}


.page-recruit-top .simple-footer-nav li a {
  color: #222222;
  }

.page-recruit-top .wrap-footer-nav .footer-nav li a{
  color: #222222;
  }

.page-recruit-top .footer-nav a:before{
      border-top: 2px solid #555555;
    border-right: 2px solid #555555;
}

.page-recruit-top #js-nav-drawer > .contents:nth-child(1){
  display: flex;
  align-items: center;

}


.page-recruit-top #js-nav-drawer > .contents:nth-child(1)::after{
  content:"";
    display: block;
  width: 100px;
  height: 26.33333333px;
  min-width: 100px;

  background: url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/recluit.svg);
  margin-left: 10px;
  background-size: cover;




}


.page-featured-wrapper{
  height: 50vh;
  overflow: hidden;
}

.page-featured-wrapper img{
  object-fit: cover;
  object-position: center;
  height: 100%;
}


.main-column ol{
  padding-left: 1.5em;
}

.main-column ol li {
    list-style: decimal;
    line-height: 1.7;
    margin-bottom: .5em;
    font-size: 14px;

}



.overflow-img-right{
  position: relative;
  height: 100%;
}

.overflow-img-right figure{
  height: 100%;

}

.overflow-img-right figure picture{
  display: block;
  height: 100%;

}


.overflow-img-right img{
  width: calc(100% + ((100vw - 1200px) / 2));
  max-width: initial;
  height: 100%;
  object-fit: cover;

}

.overflow-img-left{
  position: relative;
  height: 100%;
}

.overflow-img-left figure{
  height: 100%;

}

.overflow-img-left figure picture{
  display: block;
  height: 100%;

}


.overflow-img-left img{
  width: calc(100% + ((100vw - 1200px) / 2));
  max-width: initial;
  height: 100%;
  position: absolute;
  right: 0;
  object-fit: cover;
  
}


 .jump-menu{
    display: flex;
    flex-flow: wrap;
    width: 100%;
    margin: 25px auto 50px;
    gap: 20px;
    justify-content: center;
    flex-direction: row;
}


.jump-menu .wp-block-button {
    color: #222222;
    border-radius: 0;
    background: none;
    box-shadow: none;

    text-decoration: none;
    font-weight: normal;

    width: auto;
    min-width: initial;
}



.jump-menu .wp-block-button__link {
    color: #222222;
    border-radius: 0;
    background: none;
    box-shadow: none;
    font-size: 12px!important;
    padding:1em 3.5em 1em 2.5em!important;
    background: #15957a;
    border-radius: 50px;
    color: #ffffff;
    font-weight: bold;
}

.jump-menu .wp-block-button__link:hover {

    background: none;
    box-shadow: none;
    font-size: 12px!important;
    background: #15957a;
    opacity: 0.8;


}



.page-recruit .jump-menu .wp-block-button__link:hover {

    background: none;
    box-shadow: none;
    font-size: 12px!important;
    background: #ffffff;
    opacity: 0.8;
    color: #15957a;

}


.jump-menu .wp-block-button__link::after{
  transform: rotate(135deg);
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  top: -4px;
  right: 1.2em;
  bottom: 0;
  width: 9px;
  height: 9px;
}


.jump-menu .wp-block-button__link:hover:after{
  transform: rotate(135deg);
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  top: -4px;
  right: 1.2em;
  bottom: 0;
  width: 9px;
  height: 9px;
}



.page-recruit .jump-menu .wp-block-button__link:hover:after{
  transform: rotate(135deg);
  border-top: 2px solid #15957a;
  border-right: 2px solid #15957a;
  top: -4px;
  right: 1.2em;
  bottom: 0;
  width: 9px;
  height: 9px;
}

.wp-block-button__link {
    color: #ffffff;
    background-color: #15957a;
      padding: 1em 2em!important;
      font-size: 15px;
      position: relative;
 }  

 .wp-block-button__link:hover {
    color: #ffffff;

 }


 .wp-block-button:hover{
  opacity: 0.6;
 }

 .jump-menu .wp-block-button:hover{
  opacity: 1;
 }

.wp-block-button__link:after {
    -webkit-transform: rotate(45deg);
    display: inline-block;
    position: absolute;
    top: 0;
    right: 1.5em;
    bottom: 0;
    width: 12px;
    height: 12px;
    margin: auto;
    transform: rotate(45deg);
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    content: "";
}

#menu-item-554{
  padding: 0;
}

#menu-item-554 a{
  padding: 20px 2em 30px;
  background: #15957a;
  margin: 0 0 0 1em;
  color: #ffffff;


  font-weight:bold;
}

#menu-item-554 a span{
  color: #ffffff;
}

#menu-item-554 a::after{
  content: none;
}


.global-nav-sub{
  position: absolute;
  right: 0;
  bottom: -22px;
  display: flex;
  transition: .5s;

}

.over .global-nav-sub{
 opacity: 0;
}


.global-nav-sub li{

}

.global-nav-sub li a{

  font-size: 12px;
  margin-right: 10px;
  color: #ffffff;
}


#menu-item-568{
    padding: 0;
}

#menu-item-568 a{
  padding: 20px 2em 30px;
  background: #de0225;
  margin: 0 0 0 0;
  color: #ffffff;
  transition: 0.5s!important;


}




#menu-item-568 a:hover{
  background: #15957a;
  color: #ffffff;
}

#menu-item-568 a span{
  color: #ffffff;
}

#menu-item-568 a:hover span{
  color: #ffffff;
}


#menu-item-568 a::after{
  content: none;
}



/*#menu-item-3353{
    padding: 0;
}

#menu-item-3353 a{
  padding: 12px 2em 9px;
  color: #ffffff;
  background: #EB010F;
  border:5px solid #15957a;
  margin: 0 0 0 1em;
  transition: 0.5s!important;
  font-size: 14px;
  line-height: 1.25;

}

#menu-item-3353 a:hover{
  background: #ffffff;
  color: #15957a;
}

#menu-item-3353 a span{
  color: #ffffff;
}

#menu-item-3353 a:hover span{
  color: #15957a;
}


#menu-item-3353 a::after{
  content: none;
}
*/


.page-recruit .copyright small{
  color: #222222;
}

.page-recruit .simple-footer-nav li a::before{
      border-top: 2px solid #222222;
    border-right: 2px solid #222222;

}

.used-cta{
  display: flex;
  background: url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/mqq8-1.jpg);
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  padding:12px;





}


.used-cta > div{
  display: flex;
  gap: 40px;
  align-items: center;
    padding: 54px;
    border: 12px double #ffffff;
    border-radius: 8px;
}



.used-cta > div p{
  color: #ffffff;
  ext-shadow: 0 0 3px #0e2722;
}

.used-cta > div p:nth-child(1){
  font-weight: bold;
  font-size: 24px;
  white-space: nowrap;
  line-height: 1.5;
}

.used-cta > div p:nth-child(2){
  font-weight: bold;
  font-size:20px;
  white-space: nowrap;
  line-height: 1.75;
}

.used-cta > div a{
  line-height: 1.5;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 25px 25px 35px #10604fcc;

}

.used-cta > div a em{
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
}


.wp-block-button__link mark{
  font-weight: normal;
  line-height: 2;
  font-size: 10px;
  font-style: normal;
}


.wp-block-table table{



}

.wp-block-table table tr{
  
}


.wp-block-table table tr th{
  background: #b0e1cb;
  padding: 15px;

}


.wp-block-table table tr td{
  padding: 10px;
  vertical-align: middle;
  
}


.wp-block-column table{
  margin-top: 0;
}



.history-table{
  padding-bottom: 200px;


}

.history-table tr{
  position: relative;
  border-top: none!important;
}



.history-table tr:last-child:after {
  content:"";
  width: 1px;
  height: 200px;
  background: linear-gradient(0deg,transparent,#15957a);
  display: block;
  position: absolute;
  left: 226.5px;
  bottom: -200px;
}


.history-table tr td{
  border: 0;
  padding: 0 0 30px 0;


}


.history-table tr td:nth-child(1){
  width: 75px;
  position: relative;
  padding: 0 15px 0 0;
  vertical-align: top;
  white-space: nowrap;


}

.history-table tr td:nth-child(2){
  border-right: 1px solid #15957a;
  width: 150px;
  position: relative;
  padding: 0 15px;
  vertical-align: top;
  text-align: right;
  padding-right:70px;
}

.history-table tr td:nth-child(2):after{
  content: "";
  width: 11px;
  height: 11px;
  background: #15957a;
  display: block;
  border-radius: 6px;
  position: absolute;
  right: -6px;
  top: 8px;
}

.history-table tr td:nth-child(3){
  padding: 0 0 30px 60px;
}

.history-table tr td span{
  
}


.has-text-align-right{
  text-align: right!important;
}

.in-numbers-box .has-text-align-right{
  text-align: right!important;
  display: block!important;
  width: 100%;
}


.greeting-box{

 padding: 0 200px;
 position: relative;

}


.greeting-box::before{
  content: "";
  display: block;
  height: 50%;
  width: 33vw;
background-image:
  linear-gradient(to right,
    rgba(255,255,255,1) 0%,      /* 白で開始 */
    rgba(255,255,255,0) 30%,     /* 30%で完全に透明へ */
    rgba(255,255,255,0) 100%),   /* 残り70%は透明維持 */
    url('https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/company1-1.jpg');
  background-size: 100% 100%, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  position: absolute;
  top: 0;
  right: calc((1920px - 1200px) / -2);
  z-index: -10;  
}


.greeting-box::after{
  content: "";
  display: block;
  height: 50%;
  width: 33vw;
  background-image:
  linear-gradient(to left,
    rgba(255,255,255,1) 0%,      /* 白で開始 */
    rgba(255,255,255,0) 30%,     /* 30%で完全に透明へ */
    rgba(255,255,255,0) 100%),   /* 残り70%は透明維持 */
    url('https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/company2-1.jpg');
  background-size: 100% 100%, cover;
  background-repeat: no-repeat, no-repeat;
  position: absolute;
  top: 0;
  left: calc((1920px - 1200px) / -2);
  z-index: -10;
}

.address{
  margin-bottom: 10px!important;
}


.section-recruit p {
    margin-right: 20vw;
}

.slider-box {
    width: 1920px;
    margin-top: 100px;
    margin-left:calc((100vw - 1200px) / -2) ;
    z-index: 10;
    position: relative;
}


.slider .slick-slide img {
    width: 260px;
    height: 440px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 20px 20px 30px #55555544;
}

.slider .slick-track li {
  position: relative;
  animation: wave 20s ease-in-out infinite;
  animation-fill-mode: both;
  will-change: transform;
}

.slider .slick-track li::before {
  content: none;
}

@keyframes wave {
  0% {
    transform: translateY(-25px);
  }
  50% {
    transform: translateY(25px);
  }
  100% {
    transform: translateY(-25px);
  }
}

/* 6分割でずらす */
.slick-track li:nth-child(6n+1) { animation-delay: 0s; }
.slick-track li:nth-child(6n+2) { animation-delay: -3.33s; }
.slick-track li:nth-child(6n+3) { animation-delay: -6.66s; }
.slick-track li:nth-child(6n+4) { animation-delay: -10s; }
.slick-track li:nth-child(6n+5) { animation-delay: -13.33s; }
.slick-track li:nth-child(6n+6) { animation-delay: -16.66s; }


.slick-list{
  overflow: visible!important;
}



.section-insta{
  padding-bottom: 0!important;
}


#sb_instagram .sbi_follow_btn a span{
  color: #ffffff!important;
}

#sb_instagram #sbi_load .sbi_load_btn span{
  color: #ffffff!important;
}

.section-youtube{
  margin-bottom: 200px;
}



.wrap-1column h2 {
  position: relative;
}

.top-link{
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  border: 1px solid #999999;
  right:0;
  border-radius: 50px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #ffffff;

}





.top-link::before{
  content: "";
  display: block;
  height: 1px;
  width: 50px;
  background: #999999;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: .2s;
}

.top-link::after{
  content: "";
  display: block;
  height: 20px;
  width: 20px;
  border-top: 1px solid #999999;
  border-right: 1px solid #999999;
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  left: 0;
  right: -25px;
  margin: auto;
  position: absolute;
  transition: .2s;
}

.top-link:hover:before{
  left: 20px;
}

.top-link:hover:after{
  left: 20px;
}


.top-link-other{
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  border: 1px solid #999999;
  right: -170px;
  border-radius: 50px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}


.top-link-other::before{
  content: "";
  display: block;
  height: 45px;
  width: 45px;
  border: 1px solid #999999;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
}

.top-link-other::after{
  content: "";
  display: block;
  height: 20px;
  width: 20px;

  top: -25px;
  bottom: 0;
  left: 0;
  right: -25px;
  margin: auto;
  position: absolute;
  background: #ffffff;
}

.top-link-other span::before{
  content: "";
  display: block;
  height: 1px;
  width: 40px;
  background: #999999;
  position: absolute;
  top: -15px;
  bottom: 0;
  left: 0;
  right: -15px;
  margin: auto;
    transform: rotate(-45deg);
    z-index: 10;
}

.top-link-other span::after{
  content: "";
  display: block;
  height:15px;
  width: 15px;
  border-top: 1px solid #999999;
  border-right: 1px solid #999999;
  top: -30px;
  bottom: 0;
  left: 0;
  right: -30px;
  margin: auto;
  position: absolute;

  z-index: 10;
}


.section-youtube h3{

}



.noslide {
  position: relative;
 
}

.noslide h2{
color: #ffffff;
    font-size: 10vw;
    position: absolute;
    bottom: calc(10vw + 2vw);
    left: 2vw;
    margin: auto;
    margin: auto;
    height: 1em;
    display: block;
    width: 100%;
    text-align: left;
    z-index: 100;
    font-weight: bold;

}


.noslide h2 span:nth-of-type(1){
    color: #ffffff;
    font-weight: bold;
    text-shadow: 2px -2px 4px rgba(0, 0, 0, 0.3);
}

.noslide h2 span:nth-of-type(1) span{
font-size: 54px;
}


.noslide h2 span:nth-of-type(2){

}


.noslide p{

  font-size: 18px;
  position: absolute;
  top: 0px;
  bottom: -700px;
  right: 0;
  left: -400px;
  margin: auto;
  height: 1em;
  display: block;
  width: 1300px;
  text-align: left;


z-index: 20;

}

.noslide p span{
background: #ffffff;
font-weight: bold;
  color:#15957a;
}



.img-multi img{
  mix-blend-mode: ;
}


.num {
  counter-reset: number 0;

}

.num .wp-block-column{
   position: relative; 
}

.num .wp-block-column::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero) " ";
  position: absolute;
  left: -20px;
  top: -20px;
  font-size: 94px;
      font-weight: bold;
    color: #15957a;
    mix-blend-mode: multiply;
}


.img-2-overflow{
  width: calc(100% + ((100vw - 1200px) / 2));
  margin: 0;
}

.overflow-map{
  width: calc(100% + ((100vw - 1200px) / 2));
  max-width: calc(100% + ((100vw - 1200px) / 2));
  position: relative;
}


.overflow-map::before{
  content:"Access アクセスマップ";
  position: absolute;
  background:  #15957a;
  position: 5px 10px;
  top: -20px;
  left: 0;
  color: #ffffff;

}


.group-companies{

}



.group-companies img{
  object-fit: cover;
}

.group-companies h3{
  margin-bottom: 0;
  padding-bottom: 0;
    font-size: 18px;
}



.mgb0 table{
  margin-bottom: 0;
}

.external-link-button{
  position: relative;
}

.external-link-button::before{
  content:"";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #ffffff;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: 10;


}

.external-link-button::after{
 content:"";
  display: block;
  width: 10px;
  height: 10px;

  position: absolute;
  right: 19px;
  top: -9px;
  bottom: 0;
  margin: auto 0;
  z-index: 10;

  background:  #15957a;


}

.external-link-button a::before{
 content:"";
  display: block;
  width: 15px;
  height: 1px;
  transform: rotate(-45deg);

  position: absolute;
  right: 19px;
  top: -7px;
  bottom: 0;
  margin: auto 0;
  z-index: 10;
  background: #ffffff;
  z-index: 15;
}

.external-link-button a::after{
    display: block;
    position: absolute;
    top: -12px;
    right: 20px;
    bottom: 0;
    width: 7px;
    height: 7px;
    margin: auto;
    transform: rotate(0deg);
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    content: "";
    z-index: 15;

}

.overflow-box{

}


.overflow-box .wp-block-column{
  
}

.overflow-box .wp-block-column figure{
  display: block;
  height: 100%;
  
}

.overflow-box .wp-block-column figure picture{
  display: block;
  height: 100%;
  position: relative;
}

.overflow-box .wp-block-column figure picture source{
  display: block;
  height: 100%;

}


.overflow-box .overflow-img-right img{
  width: calc(100% + ((100vw - 1200px) / 2));
  max-width: initial;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
}


.overflow-box h2{
  font-size: 28px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.overflow-box h2::after{
content: attr(id) !important;
    display: inline-block !important;
    font-size: 18px;
    width: auto !important;
    margin-left: 10px !important;

}

body.interview p{
	line-height:2;
	margin-bottom:1em;
}

.interview-all-box h2{
  font-size: 28px;
  display: flex;
  flex-direction: column;
  align-items: start;

}

.jobs .main-column .interview-box  h2 {
font-size: 24px;
    border-bottom: none;
    padding-top: 80px;
    padding-bottom: 0;
    margin-bottom: 10px;
    background: none;
}

.interview-all-box .interview-box h2{
    color: #ffffff;
    font-size: 36px;
}

.interview-all-box .interview-box h2::before{
  height: 0!important;
}

.interview-all-box .interview-box h2::after{
  height: 0!important;
}


.interview-all-box h2::before{
    content: attr(id)!important;
    display: block!important;
    font-size: 24px!important;
    width: auto!important;
    height: auto!important;

}

.interview-box .wp-block-column{
	background:#15957a;
	padding:20px;
}

.main-column .interview-box .wp-block-column h4{
    font-size: 18px;
    line-height: 1.5;
    font-weight: bold;
    color: #ffffff;
    text-align: justify;
    position: relative;
    padding-left: 0;
}
.main-column .interview-box .wp-block-column h4 strong{
    display:inline-block;
	margin-left:1em;
	font-size:80%;
    color: #ffffff;
}


.main-column .interview-box .wp-block-column p{
    color: #ffffff;
}


.main-column .interview-box .wp-block-column h4:before {
    display:none;
}
.main-column .interview-box .wp-block-column.young,.main-column .interview-box .wp-block-column.senior{
	position:relative;
}
.main-column .interview-box .wp-block-column.young:before{
position:absolute;
	top:0;
	left:0;
	border:10px solid #15957a;
  background: #ffffff;
	color:#15957a;

	font-weight:bold;
	font-size:17px;
	content:"若手インタビュー";	
	padding: 1em;

}
.main-column .interview-box .wp-block-column.senior:before{
position:absolute;
  top:0;
  left:0;
  border:10px solid #15957a;
  background: #ffffff;
  color:#15957a;

  font-weight:bold;
  font-size:17px;
	content:"先輩インタビュー";	
	padding: 1em;

}


.interview-box .wp-block-column .wp-block-button__link strong{
  font-weight: bold;
  color: #15957a;

}

.interview-box .wp-block-button__link:after{
  border-top: 2px solid #15957a;
  border-right: 2px solid #15957a;
}


.sns-youtube{

}

.sns-youtube ul{
  padding: 0;
  margin: 0;
}


.sns-youtube li::before{
  content: none!important;
}


.sns-youtube h2 {
  font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.5;
    font-size: 28px;
    margin: 0 0;
    padding: 0;
    border: none;
}


.sns-youtube h2 a{
  padding-top: 20px;
  color: #15957a;
}

.mb0{
  margin-bottom: 0;
}

.border-none{
  border-bottom: none!important;
  margin-bottom: 30px!important;
}


.table-recruit{

}

table.table-recruit th{
  padding: 20px 20px 20px 0;
  
}


table.table-recruit td{
 padding: 20px 0 20px 20px; 

}



.about-company-box,.about-employee-box{

}


.about-company-box div,.about-employee-box div{
  position: relative;
  
}

.about-company-box h2,.about-employee-box h2{
  display:flex ;
  flex-direction: column;
  align-items: start;
}

.about-company-box h2::after,.about-employee-box h2::after{
    content: attr(id)!important;
    display: inline-block!important;
    font-size: 18px;
    width: auto!important;
    margin-left: 10px!important;

}

.about-company-box img{
width: calc(100% + ((100vw - 1200px) / 2));
    max-width: initial;
    position: absolute;
    height: calc(100% - 260px);
    right: 0;
	object-fit: cover;
}
.about-employee-box img{
width: calc(100% + ((100vw - 1200px) / 2));
    max-width: initial;
    position: absolute;
    height: 100%;
    right: 0;
	object-fit: cover;
}


 .about-company-box2 img, .about-employee-box2 img{
    height: calc(100% - 460px);
 }


.about-company-box table,.about-employee-box table{
margin-bottom: 0;
}

.employee-schedule {
    position: relative;
    font-size: 14px;
}
.employee-schedule::before {
        top: 4em;
        left: 0px;
        transform: translateY(-50%);
        width: 100%;
        height: 5px;
    }
.employee-schedule ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}
.employee-schedule ul {
        display: flex;
        flex-wrap: nowrap;
        margin: 0;
        justify-content: space-between;
    }
.employee-schedule li {
        margin: 0;
        border-top: 3px solid #555555;
        flex:1;
        
    }

    .main-column .employee-schedule ul li:before{
    top: -9px;
    left: 0;
    height: 15px;
    width: 15px;
    border-radius: 10px;
    z-index: 10;
    }

    .main-column .employee-schedule li:nth-child(odd):after{
      content: "";
      display: block;
      width: 1px;
      height: 100px;
      background: #555555;
      position: absolute;
      left: 7.5px;
      top: -70px;
    }


    .main-column .employee-schedule li:nth-child(even):after{
      content: "";
      display: block;
      width: 1px;
      height: 100px;
      background: #555555;
      position: absolute;
      left: 7.5px;
      top:-30px;
    }

    .employee-schedule li:nth-child(odd) .schedule_time {
        margin: 0px auto;
        position: absolute;
        top: 0px;
        left: 15px;
        font-weight: bold;
    }


    .employee-schedule li:nth-child(even) .schedule_time {
        margin: 0px auto;
        position: absolute;
        top: -30px;
        left: 15px;
        font-weight: bold;
    }



    .schedule_time::before {
        left: 50%;
        bottom: 0px;
        transform: translateX(-50%) translateY(50%) rotate(45deg);
    }
    .schedule_time::after {
        top: 3.5em;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
    .schedule_content {
        margin: 3em 0px 0px;
    }
    
    .employee-schedule li:nth-child(odd) .schedule_content_title {
        font-weight: bold;
        position: absolute;
        left: 0px;
        top: -135px;
        white-space: nowrap;
    }


    .employee-schedule li:nth-child(even) .schedule_content_title {
        font-weight: bold;
        position: absolute;
        left: 0px;
        top: 30px;
        white-space: nowrap;
    }


 .employee-schedule{
  margin-top: 100px;
  margin-bottom: 80px;
 }

    .schedule_content_detail {
        margin-top: 0.5em;
    }
   body.interview  .schedule_content_detail p{
        font-size:10pt;
	   line-height:1.7;
    }

.section-recruit-entry .contents{
  align-items: center;
  display: flex;
  justify-content: space-between;
}


.section-recruit-entry .contents h2{
  align-items: start;
  font-size: 24px;
  margin-bottom: 0;
}

.section-recruit-entry .contents h2::before{
  content: attr(data-text)"";
  font-size:52px;
  margin-bottom: 20px;
}

.section-recruit-entry .contents .contact-btn-box{
  display: flex;
  flex-direction: column;
  margin: 0;
  width: 400px;
}

.section-recruit-entry .contents .contact-btn-box a{
  width: 100%;
}

.section-recruit-entry .contents .contact-btn-box a:not(:last-child){
  margin-bottom: 20px;

}





.index .wrap-1column h2 {
    position: relative;
    left: -170px;
    font-weight: bold;
  
    max-width: 100%;
}

/* 英字 */
.index .wrap-1column h2 .en-title {
    display: inline-block;
    font-size: 160px;
    margin-top: 15px;
    margin-right: 20px;
    font-weight: bold;
    font-family: cen;
    white-space: nowrap;
}

/* 日本語タイトル（企業情報） */
.index .wrap-1column h2 .jp-title {
    display: inline-block;
    font-size: 40px;
    vertical-align: middle;
    font-weight: bold;
    white-space: nowrap;
}

/* アニメ共通（英字・日本語） */
.index .wrap-1column h2 .char {
    display: inline-block;
    opacity: 0;
    transform: translateX(50px);
    transition:
        transform 0.8s ease-out,
        opacity 0.8s ease-out;

}

.jp-title span{
  font-weight: bold;
  font-size: 24px;
  margin: 0 -2px;

}

.en-title span{

  margin: 0 -5px;

}

.en-title span:nth-child(1){
  color: #15957a;
}




/* 表示トリガー */
.index .wrap-1column h2.move.show .char {
    opacity: 1;
    transform: translateX(0);
}





.interview .overflow-img-left{
  height: 650px;
}

.interview .overflow-img-right{
  height: 650px;
}


.interview .overflow-img-left img{
  height: 650px;
}

.interview .overflow-img-right img{
  height: 650px;
}


.employee-schedule{

}

.used-data{
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.main-column table.used-data-right{
  margin: 0!important;
}

.main-column table.used-data-right tr td{
    padding: 5px 0;
    text-align: center;
    font-size: 12px;
}

.main-column table.used-data-right tr:not(:last-child) td{

  border-bottom:1px solid #999999;


}

.main-column table.used-data-right tr td:not(:last-child){

  border-right:1px solid #999999;


}


.main-column table.used-data-left{
  margin: 0!important;
  min-width: 300px;
}

.main-column table.used-data-left tr td{
  padding: 0;
  text-align: center;
}

.main-column table.used-data-left tr:first-child td{
  font-weight: bold;
  font-size: 54px;
  line-height: 20px;
  padding-top: 20px;
  padding-bottom: 20px;


}

.main-column table.used-data-left tr:first-child{
  border-bottom:1px solid #999999; 

}

.main-column table.used-data-left tr:first-child td span{ 
  font-weight: bold;
  font-size: 20px;
    line-height:24px;
    width: 3em;
    display: inline-block;
    position: relative;
    bottom: 2px;

}
.main-column table.used-data-left tr:first-child td span span{ 
  font-size: 14px;
}
.main-column table.used-data-left tr:nth-child(2) td{
  font-size: 36px;
  font-weight: bold;
  line-height: 0.6em;
}


.main-column table.used-data-left tr:nth-child(2) td span{
  line-height: 2.8;
  font-weight: bold;
  font-size: 12px;
}

.main-column table.used-data-left tr:nth-child(2) td:first-child{
    border-right:1px solid #999999;
}

.main-column table.used-data-left tr:nth-child(2) td span:nth-of-type(2) {
  padding-left: 60px;
}


.main-column .box-post-archive-used h3{
  font-size: 32px;
  line-height: 1;
  margin-bottom: 20px;

}

.box-post-archive-used p{
  padding-bottom: 0;
}

.box-post-archive-used p:before{
  display: none;
}

.box-post-archive-used p:after{
  display: none;
}


.slider3 .slick-slide img{
  height: 472.5px;
  object-fit: cover;
}

.arrow-prev{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    margin: auto 0;
    z-index: 10;
    height: 30px;
    width: 30px;
    background: #ffffffcc;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    mix-blend-mode: lighten;
}


.arrow-next{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto 0;
    z-index: 10;
    height: 30px;
    width: 30px;
    background: #ffffffcc;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    mix-blend-mode: lighten;
}

.slider3 .slick-list{
  overflow: hidden!important;
}

.slider3thum.slick-slider .slick-track{
  transform: initial!important;
}

.slider3thum .slick-slide img{
  height: 95px;
  object-fit: cover;
}

.box-post-archive-used-inner{
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding: 20px 0;

}

.box-post-archive .box-post-archive-used-inner > div:nth-child(1) {
    width: 250px;
    margin-right: 20px;
}

.box-post-archive .box-post-archive-used-inner > a {
    display: block;
    width: calc(100% - 270px);
}

.box-post-archive-used-inner a{
    display: block;
    align-items: flex-start;
    width:initial;
    padding:  0;
  
}

.box-post-archive-used-inner a > div{
  width: 100%!important;

}


.box-post-archive-used-inner .slider3thum .slick-slide img{
  height: 40px!important;
}

.single-used .nav-link{
  display: none!important;
}




.box-post-archive.box-post-archive-baseball a > div:nth-child(1) {
    width: 500px;
    margin-right: 60px;
    border-right: 1px solid #cccccc;

}

.box-post-archive.box-post-archive-baseball a > div:nth-child(2) {
    width: calc(100% - 560px);
        display: flex;
    align-items: center;
    flex-wrap: nowrap;
    padding-right: 30px;
  }


.box-post-archive.box-post-archive-baseball p:before{
  content: none;

}

.box-post-archive.box-post-archive-baseball p:after{
  content: none;

}

.box-post-archive.box-post-archive-baseball p.game-date{

  font-size: 36px;
  color: #222222;
  font-weight: bold;
  padding-bottom: 0;
}


.box-post-archive.box-post-archive-baseball p.game-date span{
  font-size: 18px;
    font-weight: bold;

}


.box-post-archive.box-post-archive-baseball ul{

  margin: 0 ;
}

.box-post-archive.box-post-archive-baseball ul li{
  font-size: 12px;
  line-height: 20px;
}


.box-post-archive.box-post-archive-baseball ul li::before{
  top:6px;
}

.box-post-archive.box-post-archive-baseball h3{
  margin: 0;
  font-size: 14px;
}
  
.point-box{
  display: flex;
  padding-top: 10px;
}

.point-box div{

}


.point-box p{
  font-size: 120px;
  font-weight: bold;
  line-height: 1;
  text-align: center!important;
  color: #222222!important;
  padding-bottom: 0;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
}

.point-box p span{
  font-size: 12px;
  line-height: 14px;
  display: block;
  position: absolute;
  max-width: 140px;
  min-width: 140px;
    overflow: hidden;
    white-space: normal;
   bottom: -10px;
   overflow: visible;
   height: 1em;
}

.point-bar{
  position: relative;
  top: -10px;
  width: auto;
}


.archive-baseball .list-side > li a{
  text-align: center;
  border: 1px solid #cccccc;
  border-radius: 50px;
  width: 100%;
  margin-bottom: 15px;
}





.single-data-box{
  display: flex;
  justify-content: space-between;
}

.single-data-box .point-box{
  width: auto!important;
  padding-top: 0;
}



.game-table-box{
  background: #202020;
  padding: 20px;
  overflow-x: scroll;
}

.game-table{
  margin: 0!important;
}


.game-table td{
  border: 8px solid #202020;
  color: #ffffff;
  background: #2a3e3d;
  font-weight: bold;

  white-space: nowrap;
  vertical-align: middle!important;
}

.game-table td:not(:first-child){
  text-align: center;
  padding: 0.5em ;
    font-size: 22px;

}

.game-table tr:first-child td{
  font-size: 16px!important;
  padding: .25em .5em;
  text-align: center;
}

.game-table.front tr:nth-child(2){
  display: none;
}

.game-table.back tr:nth-child(4){
  display: none;
}

.game-table tr:nth-child(2) td{
  color: #FF6401;

}

.game-table tr:nth-child(2) td:first-child{
  max-width: 200px;
  overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
}


.game-table tr:nth-child(4) td{
  color: #FF6401;

}

.game-table tr:nth-child(4) td:first-child{
  max-width: 200px;
  overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
}


.game-table tr:nth-child(3) td{
  color: #FFFC67;
}


.single-baseball .wrap{
  background: url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/ji-zhongshita-ye-qiu-xuan-shoukafuro-ye-qiusutashiamutehoruwo-touketeiru.png)no-repeat;
  background-position: bottom;
  background-size: cover;
  background-attachment: fixed;
}

.page-baseball .wrap{
  background: url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/ji-zhongshita-ye-qiu-xuan-shoukafuro-ye-qiusutashiamutehoruwo-touketeiru.png)no-repeat;
  background-position: bottom;
  background-size: cover;
  background-attachment: fixed;
}

.baseball-result-box{
  display: flex;
  gap: 40px;
  align-items: flex-start;

}


.baseball-result-box .btn-archive{
  width: 100%;
  margin-top: 0;
}



.baseball-result-box .wrap-post-archive{
  min-width: 820px;
}

.baseball-team h2{
  display: block;
  flex-direction: column;
  font-size: 24px;
  border: none;

  align-items: flex-start;


}


.baseball-team h2::before {
    content: attr(data-text);
    font-size: 80px;
    margin-top: 15px;
    display: block;
    font-weight: bold;
    margin-right: 20px;
        font-family: YakuHanJP, "Noto Sans JP", sans-serif;
}

.abt-box{
  display: flex;
  gap: 40px;
}

.abt-box table td{
  padding: 0 20px 0 0;
  margin: 0;



}


.abt-box table td:nth-child(1){
  white-space: nowrap;
}

.abt-box > table{
  min-width: 600px;
  max-width: 600px;
  width: 600px;
  margin: 0;
}

.gs-box{

  gap: 40px;
  display: flex;
}

.gs-box-calendar{
min-width: 800px;
position: relative;
mix-blend-mode: multiply;
}


.gs-box .baseball-result-box .wrap-post-archive{
  width: 100%;
}

.gs-box .box-post-archive-baseball{
  width: 360px;
}

.gs-box .box-post-archive-baseball a > div:nth-child(1){
  border-right: none;
    margin-right: 0;
  width: 360px!important;

}

.gs-box .box-post-archive.box-post-archive-baseball p.game-date{
font-size: 32px;
}

.gs-box .box-post-archive.box-post-archive-baseball p.game-date span {
font-size: 16px;

}

.gs-box-calendar iframe{
  mix-blend-mode: multiply;

}



.gs-box-calendar iframe body{
  background: #444444;
}


.baseball-news .box-post-archive a > div:nth-child(1){
      width: 160px;
    margin-right: 20px;
}


.baseball-news .box-post-archive a > div:nth-child(2) {
    width: calc(100% - 160px);
}


.player-box .box-post-img-text{
    width: calc((100% - 60px) / 4);

      border-radius: 10px;
      overflow: hidden;
      margin: 10px 0;

}


.player-box .box-post-img-text .wrap-zoom{
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
}



.player-box .box-post-img-text img{
  position: absolute;
  width: 100%;
  height: 100%!important;
  top: 0;
  left: 0;
  object-fit: cover;


}

.player-exe{
  display: flex;
  border: 4px solid #15957a;
  padding: 20px 30px;
  border-radius: 10px;
  margin-bottom: 40px;

}

.player-exe ol{
  margin: 0;
  margin-right: 20px;

}

.player-exe ol li{
  margin: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.player-exe ol li ul li::before{
  content: none;
}

.player-exe ol li ul li{
  list-style: none;
}

.player-exe ul{
  margin: 0;
  float: right;
  margin-top: 4px;
  padding-left: 0;
}


.player-exe ul li{
  margin: 0;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.75;
}



ol.player-detail{
  padding-left: 1em;
  margin-top: 0.5em;
  letter-spacing: 0.05em;
  z-index: 20;
  position: relative;
}


.player-detail li{
  font-size: 10px!important;
  line-height: 1.25!important;
  font-style: normal;


}

.engname{
  position: absolute!important;
  z-index: 10;
  font-size: 54px!important;
  font-weight: bold;
  font-style: italic;
  color: #ffffff!important;
  font-family: recruit;
  letter-spacing: 0!important;
  line-height: 1em!important;
  white-space: nowrap;
  top: -4px;
 right:0px;
  writing-mode: vertical-rl;

mix-blend-mode: overlay;

height: 100%;
background: #1b3731;

}


.baseball-team .box-post-img-text a{
  position: relative;
  overflow: hidden;
    background: #f9f9f9;

  letter-spacing: -0.1em;
  color: #ffffff;
  font-style: italic;
  height: 100%;
}

.baseball-team .box-post-img-text a > div:nth-of-type(2){
  padding: 20px;
}

.player-no{
  font-size: 120px!important;
  position: absolute!important;
  font-family: recruit;
  color: #15957a!important;
  z-index: 10!important;
  left:-20px;
  top: -20px;
  line-height: 1em!important;
  letter-spacing: -0.08em!important;

}

.player-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    cursor: pointer;
    padding-left: 0!important;
}

.player-tabs li {
    list-style: none;
    padding: 4px 16px;
    border: 1px solid #15957a;
    border-radius: 4px;
    white-space: nowrap;
}


.player-tabs li::before {
  content: none!important;

}

.player-tabs li.active {
    background: #15957a;
    color: #fff;
}

.Players-box {
    display: none;
}

/* 最初は投手を表示 */
#pitcher {
    display: block;
}


.page-baseball .main-visual{
  height: 100vh!important;
}




html.webp  body.page-recruit-top .main-visual{
  height: 100vh!important;
  background:url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/toyamahinosama_hp_bg.png), #61c397!important;
  mix-blend-mode: initial;
  background-blend-mode: multiply;
}

html  body.page-recruit-top .main-visual{
  height: 100vh!important;
  background: #61c397!important;
  mix-blend-mode: initial;
}

.slider4 .slick-slide picture{

}

.slider4 .slick-slide img{
  width: 95%;
  height: 85vh;
  margin-top: -90px;
  border-radius: 20px;
}

.recruit-head{
  position: absolute;
  bottom: 5%;
  left: 80px;
  color: #ffffff;
  z-index: 100;
  font-size: 180px;
  font-weight: bold;
  text-shadow: 10px 10px 20px #00000099;
  line-height: 1;
}


.page-recruit-top .main-visual .section-common{
  position: absolute;
  bottom: 60px;
  right: 0;
    width: 30vw;
    z-index: 50;
	
}


.page-recruit-top .main-visual .section-common .btn-archive{
  display: none!important;

}


.page-recruit-top .main-visual .section-common .contents{
  width: 100%;
}

.page-recruit-top .main-visual .section-common .contents h2{
  display: none;
}

.page-recruit-top .main-visual .section-common .contents a{
  display: flex;
  flex-wrap: wrap;
  justify-content: left;

  background: #0e0001;
  border: none;
  border-radius: 20px 0 0 20px;
  padding: 20px 30px;

}

.page-recruit-top .main-visual .section-common .contents a h3{
width: 100%;
color: #ffffff;
}

.page-recruit-top .main-visual .section-common .contents a time,.page-recruit-top .main-visual .section-common .contents a span{
  color: #ffffff;
}

.page-recruit-top .main-visual .section-common .contents .box-post-text{
  border-top: none;
  border-bottom: none;
}



.page-recruit-top .head-page {
    color: #222222;
    position: absolute;
  bottom: calc(5% + 380px);
  left: 80px;
  font-size: 14px!important;
  color: #ffffff;
}


.page-recruit-top .head-page::after {
font-size: 24px!important
}



.recruit-message{

  width: 1200px;
  max-width: 100%;
  position: relative;


  padding: 80px 0 150px;
  position: relative;
  height: 200vh;
  margin: 0 auto;
}

.recruit-message::before{
  content: "";
  display: block;
  width: 200%;
  height: 100%;
  left: -50%;
  position: absolute;
  top: 0;
  background:url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/top1113.png),#555555;
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: multiply;
  filter: grayscale(100%);
  z-index: -10;
}

.recruit-message::after{
  content: "";
  display: block;
  width: 200%;
  left: -50%;
  height: 100vh;
  position: absolute;
  top: 100vh;
  background:url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/DSC01810.jpg),#555555;
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: multiply;
  filter: grayscale(100%);
  z-index: -10;
}

.recruit-message > span{

}

/*.recruit-message > span::before{
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 200vh;
  background:url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/A3_04398.jpg),#555555;
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: multiply;
  filter: grayscale(100%);
  z-index: -10;
}

.recruit-message > span::after{
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 300vh;
  background:url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/1J1A8006.jpg),#555555;
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: multiply;
  filter: grayscale(100%);
  z-index: -10;
}*/


.recruit-message div{
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  position: sticky;
  top: 120px;
}

.recruit-message div h2{
  text-align: center;
  width: 100%;
  display: block;
  border-bottom: none;

}


.baseball-message h2{
  font-size: 48px;
  display: block;

}

.baseball-message h2 span{
  letter-spacing: -0.2em;
  display: inline;
  color: #15957a;
  margin-left: 0.2em;
}



.baseball-message p{

}


.recruit-message p{
  color: #ffffff;
  text-align: center;
	font-size:18px;
  font-weight: bold;
  letter-spacing: 0.05em;
}


.page-recruit-top .breadcrumb{
  margin-bottom: 0;
  padding: 0;
  color: #ffffff;
  position: absolute;
  margin-top: 20px;
}


.page-recruit-top .breadcrumb li{
  color: #ffffff!important;

}


.page-recruit-top .breadcrumb li a span{
  color: #ffffff!important;

}

.page-recruit-top .breadcrumb li span{
  color: #ffffff!important;

}

.page-recruit-top h2{
  border: none;
}

.recruit-company{
  margin-top: 200px;
}

.recruit-company-inner{
display: flex;
gap: 40px;
position: relative;
}


.recruit-company-inner > div{
  width: 580px;
  min-width: 580px;
}

.recruit-company-inner picture{

  width:580px;
  min-width: 580px;
  position: relative;

}


.recruit-company-inner picture img{
  object-fit: cover;
  min-width: calc(100% + 50vw - 600px);
  height: 100%;
  position: absolute;
  display: block;
  border-radius: 200px 0 0 0;

}

.recruit-company-button{
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 60px;
}


.recruit-company-inner > div::after{
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 125px);
  background:#15957a30;
  position: absolute;
  top: 125px;
  left: 100px;
  mix-blend-mode: multiply;
  z-index: -10;

}


.recruit-job{
  margin-top: 200px;
}

.recruit-job-inner{
display: flex;
gap: 40px;
position: relative;
}


.recruit-job-inner > div{
  width: 580px;
  min-width: 580px;
}

.recruit-job-inner picture{

  width:580px;
  min-width: 580px;
  position: relative;

}


.recruit-job-inner picture img{
  object-fit: cover;
  min-width: calc(100% + 50vw - 600px);
  height: 100%;
  position: absolute;
  display: block;
  border-radius: 0 200px 0 0;
  right: 0;

}

.recruit-job-button{
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 60px;
}


.recruit-job-inner > div::after{
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 125px);
  background:#15957a30;
  position: absolute;
  top: 125px;
  right: 100px;
  mix-blend-mode: multiply;
  z-index: -10;

}

.recruit-job-inner h2{
  text-align: right;
  align-items: flex-end!important;
}



.slider6 .slick-slide{
  padding: 0 10px;
}

.slider6 .slick-slide img{
  height: 500px;
  object-fit: cover;
  box-shadow: 5px 5px 10px #00000055;
  transition: 0.5s;
  position: relative;
  bottom: 0;
}

.slider6 .slick-slide.slick-current + .slick-active img{
  transform: scale(1.2);
  position:relative;
  bottom: 50px;
  z-index: 10;


}

.slider6 dd{
  position: relative;
}

.slider6{
  position: relative;
}

.slider6::before {
  content: "";
  background: #15957a30;
  display: block;
  width: 200%;
  height: 125%;
  bottom: 0;
  left: 200px;
  position: absolute;
}

.interview-name{
  position: absolute;
  bottom: 40px;
  transition: .5s;
}

.interview-name h3{
  color: #ffffff;
  background: #15957a;
  padding: 10px 30px;
  display: inline;
  position: relative;
  top: -20px;



}

.interview-name h3 span{
  color: #ffffff;
  font-size: 16px;
  margin-left: 10px;
  position: 0 0 0 20px;


}

.interview-name p{
  color: #15957a;
  padding: 0 0 0 20px;
  font-weight: bold;
}

.slider6 .slick-slide.slick-current + .slick-active .interview-name{
 
  z-index: 20;
  margin-left: 2px;

transition: 0.5s;
transform: scale(1.2);
  color: #15957a;

}

.recruit-information > div{
  display: flex;
  gap: 40px;


}


.recruit-information > div p{
  width: 580px;
  min-width: 580px;
}

.recruit-information > div > div{
  display: flex;
  flex-direction: row;
    width: 580px;
  min-width: 580px;
  flex-wrap: wrap;
  gap: 20px;
}

.recruit-information > div > div > div{
  width: 48%;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  display: flex;
}

.recruit-interview{
  margin-top: 200px;
}



.recruit-information .wp-block-button__link{
  width: 100%;
}




.jobs-works{
  width: 840px;
  min-width: 840px;
}

.illustup img{
  margin-top: -20px;
}


.box3 .wp-block-column{

background:#ffffff;
border-radius:20px;
padding: 20px;

}

.plan3{
    counter-reset: number 0; 
}

.plan3 .wp-block-column{

background:#00000011;
border-radius:20px;
padding:40px 20px 20px;
position: relative;

}

.plan3 .wp-block-column::before{

    counter-increment: number 1;
    content: 'PLAN\A 0' counter(number);
    white-space: pre;
    display: block;
    height: 70px;
    width: 70px;
    background: #15957a;
    white-space: pre;
    color: #ffffff;
    text-align: center;
    border-radius: 50px;
    position: absolute;
    font-weight: bold;
    margin: auto;
    left: 0;
    right: 0;
    top: -35px;
    line-height: 1.2;
    padding: 20px 10px;
}



.career-section__header h2::before{
  height: 0!important;
}


/* スライド枠からはみ出した分は隠す */
.top-slider-box dl.slider2 dd {
  overflow: hidden;
}

/* ベース状態：最初から少しだけ拡大しておく */
.top-slider-box .slider2 .slide-img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center center;
  transform: scale(1.05); /* 元サイズは見せない */
}

/* ズームさせたいときだけ付くクラス */
.top-slider-box .slider2 .slide-img.is-zooming {
  animation: kenburns-zoom 7s linear forwards;
}

@keyframes kenburns-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.1); }
}




.slider2{
    height: 100vh;
    overflow: hidden;
}


.table-recruit-yellow{
background-color:#fffae1;
}


.fc-toolbar h2{
  color: #555555;
}


.top-blob-wrap {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.blob-svg {
  width: 2600px;
  height: auto;
  filter: drop-shadow(0 12px 25px rgba(0,0,0,.15));
  position: fixed;
  top: -400px;
  right:-900px;
  mix-blend-mode: multiply;
}


.about-img{
  background:url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/3fe9b1a9e44bc148b5ba2d5bbfb2d1c8.jpg) ;
  background-attachment: fixed;  

  width: calc(100% + ((100vw - 1200px) / 2));
  height: 400px !important;
  max-width: initial;
  margin-top:40px;
  border-radius: 10px 0 0 10px;
  background-position-x: 200px;
}




/* iOS判定（だいたいこれでOK） */
@supports (-webkit-touch-callout: none) {
  .about-img{
    width: calc(100% + 4vw);
    position: relative;
    overflow: hidden;           /* ← ここでクリップできる */
    background: none;           /* iOSでは通常背景を捨てる */
  }

  .about-img::before{
    content:"";
    position: absolute;
    inset: 0;
    left: 0;
    background: url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/3fe9b1a9e44bc148b5ba2d5bbfb2d1c8.jpg)
                no-repeat;
    background-size: cover;

    /* PCでの見た目に寄せる：X方向の位置 */
    background-position: center;

    /* “固定に見せる”ためのY移動（JSで値を入れる） */
    transform: translate3d(0, var(--bgY, 0px), 0);
    will-change: transform;

    /* 角丸に合わせる */
    border-radius: inherit;
  }
}




.join-company{
  font-weight: bold;
  color: #15957a;
  font-size: 24px;

}



/* 初期状態でアニメを設定 */
.baseball-logo img {
  display: block;
  margin: 0 auto;

  opacity: 0;
  transform: translateY(-30px); /* 少し上から */
  filter: blur(12px);
  -webkit-filter: blur(12px);

  animation: baseballLogoDownBlur 2s ease-out forwards;
}

/* 初期状態でアニメを設定 */
.baseball-logo img {
  display: block;
  margin: 0 auto;

  opacity: 0;
  transform: translateY(-100px); /* 少し上から */
  filter: blur(30px) drop-shadow(5px 5px 5px #000000);
  -webkit-filter: blur(30px) drop-shadow(5px 5px 5px #000000);

  animation: baseballLogoDownBlur 3s ease-out forwards;
}

/* 上→下 ＋ ブラー解除 ＋ ドロップシャドウ出現 */
@keyframes baseballLogoDownBlur {
  0% {
    opacity: 0;
    transform: translateY(-100px);
    filter: blur(30px) drop-shadow(5px 5px 5px #000000);
    -webkit-filter: blur(30px) drop-shadow(5px 5px 5px #000000);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0) drop-shadow(5px 5px 5px #000000);
    -webkit-filter: blur(0) drop-shadow(5px 5px 5px #000000);
  }
}


.main-column .service-contest-cover h2.has-text-align-center{

}


.career-path-box-slide .slick-list {
  overflow: hidden !important;
}


/* スライド同士の隙間 */
.career-path-box-slide .slick-slide {
  margin: 0 20px;
  height: 670px;
}

/* はみ出し調整（必須） */
.career-path-box-slide .slick-list {
  margin: 0 -20px;
  overflow: hidden; /* 念のため */
}

.career-path-box-slide .slick-prev, .career-path-box-slide .slick-next{
    width: 50px;
    height: 50px;
}

.career-path-box-slide .slick-prev{
  left: -75px;
}

.career-path-box-slide .slick-next{
  right: -75px;
}



.career-path-box-slide .slick-prev:before, .career-path-box-slide .slick-next:before{
color: #555555;
    font-weight: bold;
    background: #15957a;
    width: 50px;
    height: 50px;
    display: flex;
    border-radius: 50px;
    opacity: 1;
    align-items: center;
    justify-content: center;
        color: #ffffff;
}


.career-path-box-slide .slick-dots li.slick-active button:before{
    
}


.career-path-box-slide .slick-next:before {
    content: "➡";

}

.career-path-box-slide .slick-prev:before {
    content: '⬅︎';
}



.event-gallery .wp-block-gallery{

}


.event-gallery .wp-block-gallery figure{ 
  width:calc((100% - 20px) / 3)!important;
  max-width:calc((100% - 20px) / 3)!important;
}



/* 初期状態：少し下＋透明 */
#sbi_images .sbi_item {
  opacity: 0!important;
  transform: translateY(30px); /* 10〜15pxくらいがさりげない */
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

/* 表示状態 */
#sbi_images .sbi_item.is-show {
  opacity: 1!important;
  transform: translateY(0);
}



/*.top-news{
  box-shadow: 0 0 50px #0000001f;
  overflow: hidden;
  z-index: 10;
  position: relative;
}*/




.toph2 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(120px);
  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out;
    font-size: 10vw;
    font-weight: bold;
}

.toph2.is-show .char {
  opacity: 1;
  transform: translateY(0);
      font-size: 10vw;
    font-weight: bold;
    color: #ffffff;
}


.page-recruit .main-column h2.env-block__title::before{
  content: none!important;

}


.recluit-sns #sbi_images .sbi_item{
  opacity: 1!important;
      transform: initial;
}



.dispnone{
  display: none;
}



.in-numbers-box{
    background: #ffffff80;
    padding: 30px;
    display: flex;
    align-items: center!important;
  }

.in-numbers h4{
font-weight:bold;
}

.in-numbers p{
text-align:center;
display: flex;
white-space: nowrap;
align-items: baseline;
line-height: 1;
justify-content: center;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 0;
}
.in-numbers p strong{
font-size:90px;
font-weight:bold;
color: #15957a;
}
.in-numbers p span{
font-size:38px;
font-weight:bold;
color: #15957a;
}


.in-numbers figure{
  margin-bottom: 0;
  width: 100%;
}

.in-numbers figure a{
  margin-bottom: 0;
  width: 100%;
}

.in-numbers-box > div{
  display: flex;
  flex-direction: column;
  align-items: center;
}


.in-numbers-box > div > div{
  align-items: center!important;
  margin: 0;
}


.nam-img-ofset{
margin-right: -150px!important;
    margin-left: -150px!important;
}

.nam-img-ofset img{
  height: 240px;
}

.bbslider .slider .slick-slide img {
  height: 260px;
}


.bbslider .slider10 .slick-slide img {
  height: 260px;
  width: 260px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 20px 20px 30px #55555544;
}


/* スライダー全体を左右反転 */
.slider10 {
  transform: scaleX(-1);
}

/* 中身をもう一度反転させて文字や画像は元向きに戻す */
.slider10 .slick-slide {
  transform: scaleX(-1);
  width: 288px!important;
}



.slider-box2{
  margin-top: 28px;
}


.recruit-interview .slick-prev,
.recruit-interview .slick-next{
  background: #15957a;
  z-index: 100;
  height: 100px;
  width: 100px;
  border-radius: 50px;
}

.recruit-interview .slick-prev:hover,
.recruit-interview .slick-next:hover{
  background: #15957a;
  z-index: 100;
  height: 100px;
  width: 100px;
  border-radius: 50px;
  opacity: 0.8;
}

.fluffy {
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.6s ease-out;
  filter: drop-shadow(5px 5px 10px #00000055);}

.fluffy.is-show {
  opacity: 1;
  animation: fluffyBounce 0.8s cubic-bezier(.25,.46,.45,1.4) forwards;
}

@keyframes fluffyBounce {
  0% {
    transform: translateY(20px) scale(0.96);
  }
  60% {
    transform: translateY(-6px) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.section-products p{
  margin-right: 0;
}

.section-products h3{
    color: #15957a;
    font-size: 42px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}


body:not(.index) .wrap-logo .logo img{
 /* filter: brightness(0) invert(1);*/
}

body:not(.index) .active .wrap-logo .logo img{
  filter: initial;
}

body.page-recruit .wrap-logo .logo img{
  filter: initial;
}



.gcareer-hero h2{
  background: initial!important;
}



.section-recruit{
  background: url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/toyamahinosama_hp_bg.png), #61c397 !important;
  box-shadow: 0 0 50px #0000001f;
  overflow: hidden;
  z-index: 10;
  position: relative;
  background-attachment: fixed!important;

}

.section-recruit *{
  color: #ffffff!important;
}


#wpadminbar #wp-admin-bar-included_files_path .ab-item #included-files-list li {
  color: #ffffff!important; 
}

.fade {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: opacity .7s ease, transform .7s ease, filter .7s ease;
  will-change: opacity, transform;
  filter: blur(20px);
}

.fade.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0px);
}


.dispnone{
  display: none!important;

}

.recluit-img-box{
 border-radius: 400px 0 0 0;
 width: calc(580px + ((100vw - 1200px) / 2))!important;
  min-width: calc(580px + ((100vw - 1200px) / 2))!important;
  height: 630px;
  background: url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/1J1A3830.jpg);
  background-attachment: fixed;
}

.recluit-img-box2{
 border-radius: 0 400px 0 0;
 width: calc(580px + ((100vw - 1200px) / 2))!important;
  min-width: calc(580px + ((100vw - 1200px) / 2))!important;
  height: 630px;
  background: url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/1J1A8020-1.jpg);
  background-attachment: fixed;position: absolute;
  left: calc((100vw - 1200px) / -2);

  bottom: 0;
}

.flex-row-reverse{
  flex-direction: row-reverse;
}


.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a picture{
  height: 100%;
}

.about-employee-box h2 + figure{
  margin-top: 0;
}


.main-column .voices-box h3{
  color: #222222;
  font-weight: bold;
  font-size: 54px;
}

.main-column .voices-box h3::before{
content: "Q.";
color: #15957a;
font-weight: bold;
font-size: 54px;
}

.mb-400{
  margin-bottom: 400px;
}


.env-gallery picture{
  height: 100%;

}

/*.env-menu{
  position: sticky;
  flex-direction: column;
      width: auto;
    align-items: flex-start;
  left: 50px;
    margin-left: -220px;
    margin-bottom: -204px;
    top: 100px;
}*/

.environment .main-column{
  margin-bottom: 200px;
}

.recluit-infomation #sb_instagram #sbi_images .sbi_item{
  opacity: 1!important;
  transform: none;

}


#sb_instagram #sbi_load .sbi_follow_btn:hover{
opacity: 0.8;
}


.job-posting .nav-link-img{
  display: none;
}

.job-posting .nav-link-detail{
  width: 100%!important;
}


/*--------------------タテにする--------------------*/


.employee-schedule ul {
  flex-direction: column;
}



.main-column .employee-schedule ul li:before{

  top:initial;
  position: relative;
  min-width: 15px;
  margin-right: 20px;
}


.employee-schedule li:nth-child(odd) .schedule_content_title{
  top: initial;
  position: relative;
}

.employee-schedule li:nth-child(odd) .schedule_time{
  left: initial;
  position: relative;
  width: 120px;
}

.employee-schedule li:nth-child(even) .schedule_content_title{
  top: initial;
  position: relative;
}


.employee-schedule li:nth-child(even) .schedule_time{
  top: initial;
  left: initial; 
  position: relative;
  width: 120px;
}


.employee-schedule li{
  border-top: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;

}

.main-column .employee-schedule li:nth-child(odd):after{
  content: none;
}

.main-column .employee-schedule li:nth-child(even):after{
  content: none;
}

.schedule_content{
  margin: 0;
}

.schedule_content_detail{
display: none;
}

.employee-schedule ul:before{
  content: "";
  width: 1px;
  height: calc(100% + 40px);
  background: #999999;
  position: absolute;
  top:-20px;
  left: 6.5px;
}

.employee-schedule {
  margin-top: 30px;
  margin-bottom: -30px;
}


/*--------------------タテにする--------------------*/



.single-contents p.game-date {
font-weight: bold;
font-size: 48px;
line-height: 1;
}

.single-contents p.game-date span{
font-weight: bold;
font-size: 24px;
}


.service-table td{
  white-space: nowrap;
}

.recruit-interview h2 {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: none;
    background: none;
    color: #15957a!important;
    font-weight: bold;
    display: block!important;
    margin-bottom: 120px;
}

.main-column .recruit-interview h2 {
  
  position: relative;
  top: -120px!important;

}

.recluit-infomation .main-column .recruit-interview h2 {
  
  position: relative;
  top: 0!important;
  padding-top: 0;
  margin-bottom: 50px;

}


.baseball-team{
  overflow-x: hidden;
}

.dnav-mobile{
    display: none;
  }

.dnav-mobile{
    display:  none;
  }





/* Edge */
@supports (-ms-ime-align: auto) {
  .wp-block-image img{
    width: 100%;
}
  
}



/* IE10以降 */
@media all and (-ms-high-contrast: none) { /* ハイコントラストモードが「オフ」の場合 */
  .wp-block-image img{
    width: 100%;
  }
}







.wp-block-column h4:first-child{
  margin-top:0;
}
.main-column h4.service-contest-heading{
  margin-top:0;
}


/* ベースカラーはお好みで調整してください */
:root {
  --color-main: #00b6a4;
  --color-main-dark: #008c7f;
  --color-bg-light: #f5fbfa;
  --color-text: #333;
  --color-muted: #777;
  --radius-lg: 16px;
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.06);
}

/* -----------------------------
   キャリアステップ
----------------------------- */

.career-section {
  padding: 60px 20px;
  background: #ffffff;
}

.career-section__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.career-section__header {
  text-align: center;
  margin-bottom: 40px;
  background: #ffffff!important;
}

.career-section__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px!important;
  height: 80px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: #15957a;
  color: #ffffff;
  letter-spacing: 0.08em;
  border: 9px double #ffffff;
  font-weight: bold;
  font-size: 24px;
}

.main-column .career-section h2 {
  justify-content: center;
  padding-top: 80px;
}

.career-section__title {

  margin-bottom: 12px;
}

.career-section__lead {
  margin: 0 auto;
  color:#222;
  line-height: 1.8;
}

.career-steps {
  position: relative;
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

/* 働く環境セクション */
.env-section {
  padding: 60px 20px;
  background: #f7faf9;
}

.env-section__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.env-section__header {
  text-align: center;
  margin-bottom: 40px;
}

.env-section__title {

  font-weight: 700;
  margin-bottom: 10px;
}

.env-section__lead {
  max-width: 760px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.8;
}

/* --------------------------------
   ヒーロー（大きな写真 + オーバーレイ）
-------------------------------- */
.env-hero {
  position: relative;
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.env-hero__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* オーバーレイカード */
.env-hero__overlay {
  position: absolute;
  left: 5%;
  bottom: 5%;
  max-width: 380px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.main-column h3.env-hero__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 0;
}

.main-column h3.env-hero__title::before {
position: initial;
}

.env-hero__list {
  margin: 0;
  padding-left: 1.1em;
  font-size: 0.85rem;
  color: var(--color-text);
}

.env-hero__list li {
  margin-bottom: 4px;
  line-height: 1.6;
}

.wp-block-cover__inner-container p.env-hero__p {
  margin-top: 0px;
  color: #222;
  font-family: auto;
  font-weight: bold;
	text-align:center;
   font-family: YakuHanJP, "Noto Sans JP", sans-serif;
}

/* PCのときは3カラム＋右肩上がりの階段レイアウト */
@media (min-width: 900px) {
  .career-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  /* 左が一番下、右が一番上になるように調整 */
  .career-step--level1 {
    margin-top: 60px;
  }
  .career-step--level2 {
    margin-top: 30px;
  }
  .career-step--level3 {
    margin-top: 0;
  }

  /* 背景に右肩上がりのガイドライン */
  .career-steps::before {
    content: "";
    position: absolute;
    inset: 24px 0 auto 0;
    margin: 0 8%;
    border-top: 2px dashed rgba(0, 182, 164, 0.25);
    transform: skewY(-6deg);
    pointer-events: none;
  }
}

.career-step {
  position: relative;
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

/* 年次帯（上部リボン） */
.career-step__year {
  background: linear-gradient(90deg, var(--color-main), var(--color-main-dark));
  color: #fff;
  font-size: 0.85rem;
  padding: 10px 16px;
  letter-spacing: 0.06em;
}

/* 本体カード */
.career-step__body {
  padding: 18px 18px 22px;
}

.career-step__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.career-step__grade {
  font-size: 0.9rem;
  line-height: 1.5;
      font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;

}

.career-step__grade-num {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #fff;
  color: var(--color-main-dark);
  font-weight: 700;
  font-size: 0.95rem;
}

.career-step__tag {
  display: inline-block;
  padding: 8px 8px;
  border-radius: 10px;
  background: rgba(0, 182, 164, 0.1);
  color: var(--color-main-dark);
  font-size: 1rem;
  text-align: center;
  font-weight: bold;
}

.career-step__catch {
  font-size: 0.9rem;

  margin: 10px 0 8px;
  line-height: 1.6;
}

.career-step__list {
  padding-left: 1.1em;
  margin: 0;
  list-style: none;
  font-size: 0.85rem;
  color: var(--color-text);
}

.main-column .career-step__list li {
  position: relative;
  margin: 0 0 4px;
  line-height: 1.6;
font-size:12pt;
}

.career-step__list li::before {
  content: "●";
  position: absolute;
  left: -1.1em;
  top: 0;
  font-size: 0.5rem;
  color: var(--color-main);
}

.career-section__note {
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* ちょっとしたホバー演出（PCのみ） */
@media (hover: hover) and (pointer: fine) {
  .career-step {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .career-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  }
}

/* -----------------------------
   働く環境レイアウト
----------------------------- */

/* 共通レイアウト */
.env-layout {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

.env-layout--two {
  grid-template-columns: minmax(0, 1fr);
  margin-top:0;
}

.env-layout--two .env-block {
  height: 100%;
}

@media (min-width: 900px) {
  .env-layout--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ブロックカード */
.env-block {
  background: #ffffff;
  border-radius: 18px;
  padding:30px 32px;
  box-shadow: var(--shadow-soft);
}

.env-block--wide {
  margin-top: 10px;
}

.env-block__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  padding-left: 10px;
  padding-top: 80px;
}

.env-block__intro {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0 0 12px;
}

/* 職場の特徴リスト */
.env-feature-list {
  display: grid;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.env-feature-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: flex-start;
}

.env-feature-list__icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 182, 164, 0.1);
  font-size: 1.1rem;
}

.env-feature-list__head {
  font-weight: bold;
  margin-bottom: 2px;
  font-size: 14px;
}

.env-feature-list__text {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* チームの声 */
.env-voices {
  display: grid;
  gap: 12px;
}

.env-voice {
  padding: 10px 12px;
  border-radius: 12px;
  background: #f7faf9;
}

.env-voice__label {

  color: var(--color-main-dark);
  margin-bottom: 4px;
}

.env-voice__text {
  font-size: 12pt;
  line-height: 1.6;
}

/* 安全対策リスト */
.main-column ul.env-safety-list {
  list-style: none;
  padding-left: 1.2em;
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-text);
}

.main-column ul.env-safety-list li {
  position: relative;

  margin-bottom: 6px;
  line-height: 1.6;
}

.env-safety-list li::before {
  content: "&#x2714;";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.75rem;
  color: var(--color-main);
}

/* フォトギャラリー（ギャラリーブロック想定） */
.env-gallery {
  overflow-x: auto;
  padding-bottom: 8px;
}

.env-gallery .blocks-gallery-grid,
.env-gallery .wp-block-gallery {
  display: inline-flex;
  gap: 12px;
}

.env-gallery figure {
  flex: 0 0 220px;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin: 0;
}

.env-gallery img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.env-gallery figcaption {
  font-size: 0.8rem;
  padding: 6px 8px 8px;
  color: var(--color-text);
}

/* スクロールバー調整（任意） */
.env-gallery::-webkit-scrollbar {
  height: 6px;
}
.env-gallery::-webkit-scrollbar-track {
  background: transparent;
}
.env-gallery::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 999px;
}

/* -----------------------------
   福利厚生セクション
----------------------------- */

.benefits-section {
  padding: 60px 20px;
  background: #ffffff;
}

.benefits-section__inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* ヘッダー */
.benefits-section__header {

  margin-bottom: 40px;
}

.benefits-section__label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--color-main-dark);
  margin-bottom: 6px;
}

.benefits-section__title {

  font-weight: 700;
  margin-bottom: 10px;
}

.benefits-section__lead {
  margin: 0 auto;
  font-size: 0.95rem;
  color: #222;
  line-height: 1.8;
}

/* 主な福利厚生：グリッド */
.benefits-grid {
  margin-top: 32px;
  margin-bottom: 32px;
}

.benefits-grid__columns {
  gap: 18px;
  display: flex;
  align-items: stretch;
}

.benefit-card {
  height: 100%;
  background: #f7faf9;
  border-radius: 18px;
  padding: 18px 18px 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.benefit-card__icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 182, 164, 0.1);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.main-column h3.benefit-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 20px;
  text-align:center;
}

.benefit-card__text {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.benefit-card__list {
  margin: 0;
  padding-left: 1.1em;
  font-size: 0.85rem;
  color: var(--color-text);
}

.benefit-card__list li {
  margin-bottom: 4px;
  line-height: 1.6;
}

/* カラム高さ揃え（既に使っているenv-layoutと同じ思想） */
.benefits-grid__columns > .wp-block-column {
  display: flex;
}

.benefits-grid__columns .benefit-card {
  width: 100%;
}

/* ライフステージ別 */
.benefits-stage {
  margin-bottom: 32px;
}

.benefits-block__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 14px;
  padding-left: 10px;
}

.benefits-stage__columns {
  gap: 18px;
}

.benefits-stage__item {
  background: #f7faf9;
  border-radius: 16px;
  padding: 14px 16px;
  height: 100%;
}

.benefits-stage__label {

  margin-bottom: 4px;
}

.benefits-stage__text {
  color:#222;
  line-height: 1.6;
}

/* 数字で見る福利厚生 */
.benefits-numbers {
  margin-bottom: 28px;
}

.benefits-numbers__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .benefits-numbers__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.benefits-number {
  background: #f7faf9;
  border-radius: 16px;
  padding: 12px 10px;
  text-align: center;
}

.benefits-number__value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-main-dark);
  margin-bottom: 4px;
}

.benefits-number__label {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.benefits-numbers__note {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* 社員の声 */
.benefits-voices {
  margin-bottom: 0;
}

.benefits-voices__grid {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.service-contest-cover {
  color: #fff;
  padding-block: 4rem;
}

.main-column .service-contest-cover h2{
	margin-top:0;
	  padding-top: 0;
}

.main-column .service-contest-cover h3{
	margin-top:0;
	  padding-top: 0;
}

.wp-block-cover__inner-container p.service-contest-lead{
	color:#222;
	font-family:normal;
}

.service-contest-inner {
  text-align: left;
}

.service-contest-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.service-contest-lead {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 780px;
}

.service-contest-columns {
  gap: 2rem;
  margin-bottom: 2rem;
}

.service-contest-box {
  padding: 1.75rem;
  border-radius: 16px;
    height: 100%;
}




.service-contest-heading {
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
  padding-left: 0.6rem;
}

.service-contest-record {
  margin-top: 1rem;
}


/* 共通：テーブルのベース */
.step-table table {
  width: 100%;
  border-collapse: collapse;
}

/* ヘッダー行にだけグラデーションをかける */
.step-table table thead tr {
  /* 左が淡く、右に行くほど濃い緑になるグラデーション */
  background: linear-gradient(to right,
    #e8f5f2 0%,
    #b6ddd3 30%,
    #6ab1a0 65%,
    #15957a 100%
  );
}

/* 各 th の背景色は透過にして、行のグラデを見せる */
.step-table table thead th {
  background: transparent;
          /* 文字は白の方が読みやすいと思います */
}

/* 本文セルは通常の背景にする */
.step-table table tbody th,
.step-table table tbody td {
  background: #ffffff;
  font-size: 14px;
      border: 1px solid #999999;
}


.step-table table thead th:nth-child(1) { background: #f1f9f7; }
.step-table table thead th:nth-child(2) { background: #eaf8f5; }
.step-table table thead th:nth-child(3) { background: #d7ece8; }
.step-table table thead th:nth-child(4) { background: #c4e4de; }
.step-table table thead th:nth-child(5) { background: #b2dcd3; }
.step-table table thead th:nth-child(6) { background: #9dd1c6; }

.step-table table thead th{
  font-weight: bold;
}



.main-column > p {
    font-size: 14px;
    text-align: justify;
    line-height: 1.8;
    letter-spacing: .05em;
}

/* --------外国人採用---------- */

/* ページ全体 */

body .workplace p{
line-height:1.8;
font-size:12pt;
}

.gcareer-hero,
.gcareer-section {
  margin: 0 auto;
}

/* HERO */
.gcareer-hero {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 40px;
}
.gcareer-hero h1 {
  font-size: 3rem;
  letter-spacing: .2em;
  line-height: 1.4;
}

/* ローカルナビ4つ */
.gcareer-localnav {
  margin-top: 30px;
  justify-content: center;
  gap: 8px;
}
.gcareer-localnav .wp-block-button {
  flex: 1 1 0;
}
.gcareer-localnav .wp-block-button__link {

}

/* セクションタイトルの帯 */
.gcareer-section__head {
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
  text-align: center;
  margin-bottom: 30px;
}
.gcareer-section__head h2 {
  margin: 8px 0;
  font-size: 1.4rem;
  letter-spacing: .3em;
}

/* 採用メッセージ 3カラム */
.gcareer-message__columns {
  gap: 20px;
}
.gcareer-message__col img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

/* 働きやすさカード */
.gcareer-workstyle__points {
  margin-top: 20px;
  gap: 20px;
}
.gcareer-card {
  background: #f3f3f3;
  padding: 20px;
  min-height: 160px;
}

/* インタビュー各項目のボックス */
.gcareer-interview__item {
  border-top: 1px solid #ddd;
  padding: 30px 0;
}
.gcareer-interview__item:first-of-type {
  border-top: none;
}
.gcareer-interview__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 勤務地カード */
.gcareer-place__list {
  margin-top: 20px;
  gap: 16px;
}
.gcareer-place__card {
  background: #f5f5f5;
  padding: 10px;
}
.gcareer-place__card img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

/* ENTRY セクション */
.gcareer-entry {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 4px solid #000;
  text-align: center;
}
.gcareer-entry__buttons {
  justify-content: center;
  margin-top: 20px;
}
.gcareer-entry__buttons .wp-block-button__link {
  border-radius: 0;
}


.main-column ul.env-feature-list li{
	    font-size: 12px;
}

/* =========================
   GLOBAL CAREER ヒーロー
   （カバーの見た目調整）
========================= */

/* カバー全体 */
.gcareer-hero.wp-block-cover {
  /* 画面いっぱいすぎない程度の高さ */
  min-height: 480px;
  padding: 60px 20px 40px;

  /* テキストを白に（背景画像が暗め前提） */
  color: #fff;

  /* 中身をセンタリングしやすくする */
  display: flex;
  align-items: center;        /* 上下中央揃え */
  justify-content: center;    /* 左右中央揃え */
  box-sizing: border-box;
}

/* カバー内コンテンツの横幅と中央寄せ */
.gcareer-hero .wp-block-group {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;         /* 文字を中央揃え */
}

/* 見出し（GLOBAL CAREER） */
.page-recruit .main-column .gcareer-hero h2 {
    font-size: 100px;
    letter-spacing: 0.25em;
    line-height: 1;
    margin: 0;
    justify-content: center;
    border-bottom: none;
    padding-top: 50px;
}

.page-recruit .main-column .gcareer-hero h2.gcareer-hero-sub{
    font-size: 50pt;
    padding-top: 0px;

}

/* リード文 */
.gcareer-hero p {
  font-size: 1rem;
  line-height: 1.9;
  margin: 1.5em 0 50px;
  color: #fff;
}

/* カバーの暗幕（オーバーレイ）の濃さを少し抑える場合 */
.gcareer-hero .wp-block-cover__background {
  opacity: 0.45;  /* 0〜1で調整。濃くしたいなら0.6〜0.7など */
}

/* 画像は常にカバーいっぱいに */
.gcareer-hero .wp-block-cover__image-background {
  object-fit: cover;
}

/* -------------------------
   スマホ（幅768px以下）の調整
-------------------------- */
@media (max-width: 768px) {
  .gcareer-hero.wp-block-cover {
    min-height: 360px;
    padding: 40px 16px 32px;
  }

  .gcareer-hero h2 {
    font-size: 2rem;
    letter-spacing: 0.15em;
  }

  .gcareer-hero p {
    font-size: 0.95rem;
    text-align: left;
  }
}



/* ---------仕事を知る-------- */

/* 業務内容のh3に❶❷❸を付ける */
.jobs-works h3 {
  position: relative;
  padding-left: 0;   /* 番号の分だけ左に余白 */

}

/* 丸付き番号のベーススタイル */
.jobs-works h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
        /* ご指定のカラー */
  color: #15957a22;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  font-size: 180px;
  white-space: nowrap;
  position: absolute;
  top: 140px;
  left: .5em!important;

}

/* ❶❷❸ を順番にふる */
.jobs-works h3:nth-of-type(1)::before {
  content: "01";
  color: #00000015;
  z-index: -10;

}

.jobs-works h3:nth-of-type(2)::before {
  content: "02";
  color: #00000015;
  z-index: -10;
}

.jobs-works h3:nth-of-type(3)::before {
  content: "03";
  color: #00000015;
  z-index: -10;
}


.main-column h2 + ul {
    margin: 0 0 15px;
}






/*-----------------------------------
  仕事の魅力デザイン
-----------------------------------*/

/* カード全体のレイアウト */


.main-column ol.work-attract-list li {
    list-style: none;
}


/*-----------------------------------
  四角バッジデザイン
-----------------------------------*/

.work-attract-list {
  list-style: none;
  counter-reset: attract;
  margin: 32px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  padding-left: 0!important;
}

.work-attract-list li {
  background: #f5faf9;
  padding: 38px 20px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  position: relative;
}

/* 四角の番号バッジ */
.work-attract-list li::before {
  counter-increment: attract;
  content: counter(attract);
  position: absolute;
  top: -14px;
  left: 20px;
  width: 44px;
  height: 44px;
  background: #15957a;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

/* スマホ */
@media (max-width:768px){
  .work-attract-list {
    grid-template-columns: 1fr;
  }
}



/* 小さめ画面での微調整（任意） */
@media (max-width: 767px) {
  .jobs-works h3 {

  }

  .jobs-works h3::before {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }
}







@media screen and (min-width: 1281px) {

.contents {
  width: 1200px;
  margin-right: auto;
  margin-left: auto;
}





.has-large-font-size{
  font-size:42px;
}

.wrap-2column .main-column {
  width: 840px;
}

.main-column > p{

}


.wrap-1column-narrow .main-column {
  width: 840px;
  margin:0 auto;
}

.wrap-1column-max{
  width: 100%;
}

.wrap-1column-max .main-column {
  width:100%;
  margin:0 auto;
}


.wp-block-cover__inner-container p{
  color:#222;
  font-family: initial;
}

.wrap-message > div:nth-child(1) {
  width: calc(100% - 222px - 50px);
}



}


@media screen and (min-width: 681px) and (max-width:1280px) {
  .main-visual .noslide{
  width: 100%;
  height: 100vh;
  left: 0;
  }

}





@media screen and (min-width: 881px) and (max-width:1280px) {
  .contents {
  width: calc(100% - 80px);
  margin-right: auto;
  margin-left: auto;
  }


  .contents .contents {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  }




  .main-visual .contents {
    width: 100%;
    margin: 0 4vw;
  }

  .contents.wrap-1column-max{
    width: 100%;
  }


  .footer-contents {
    width:calc(100% - 340px);
  }

	.footer-contents .footer-nav a{
    font-size:1.2vw;
  }

	.wrap-message{
    flex-flow:wrap;
	}

	.wrap-message > div:nth-child(1){
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 25px;
	}




  .main-visual picture{
    height: 100%;
  }

  .main-visual img{
    height: 100%;
    object-fit: cover;
  }

}



@media screen and (min-width: 881px) {
  .tb {
    display: none;
  }
  .sp {
    display: none;
  }
  body.over {
}




  .index .wrap {
    padding: 0px;
  }
  body:not(.index) .wrap {
    padding: 0 0 150px;
  }
  .inner {
    padding: 0 50px;
  }
  .wrap-section-interval > *:not(:last-child) {
    margin-bottom: 90px;
  }
  .wrap-section-padding > * {
    padding: 60px 0;
  }
  .wrap-2column .section-common:nth-child(1) h2{
    margin-top: 0px;
  }
  .wrap-1column .section-common {
    padding: 100px 0;
  }
  .wrap-main {
    display: flex;
    position: absolute;
    top: -25px;
    left: -450px;
    align-items: center;
    justify-content: flex-end;
    width: 898px;
    height: 305px;
    padding: 50px;
  }
  .inner-main {
    width: 250px;
  }
  .inner-main h1 {
    font-size: 26px;
  }
  .inner-main p {
    font-size: 14px;
  }
  .wrap-post-img-text {
    margin: -20px 0;
  }

  .header.over {
    
  }
  .header.over .inner-header {

  }

  .wrap-tel-header {
    display: flex;
    flex-wrap: nowrap;
  }

  a[href^="tel:"] {
    pointer-events: none;
	word-break: keep-all;
    white-space: nowrap;
    text-decoration: none;
  }
  .btn-form,
  button.btn-form {
    width: 250px;
    padding: 1em;
    font-size: 15px;
  }
  .drawer-nav {
    display: none;
  }
  .pagetop {
  right: 20px;
  bottom: -20px;
  opacity:0;
  transition:0.5s;
  }
  .pagetop.active {
  bottom: 20px;
  opacity:0.7;
  transition:0.5s;
  }
	.pagetop.active:hover {
  opacity:1;
  }

  .icon-question:before,
  .icon-tel:before {
  width: 15px;
  height: 15px;
  }
  .bg-footer {
    background: url(images/bg-footer.jpg) no-repeat center top -1px;
    background-size: 2001px 273px;
  }
  .index .overlay:before {
    z-index: 4;
    position: absolute;
    top: -40px;
    left: -450px;
    width: 480px;
    height: 743px;
    background: rgba(0, 155, 219, 0.6);
    content: "";
  }
  .index1:after {
    z-index: 1;
    position: absolute;
    top: -160px;
    left: -450px;
    width: 898px;
    height: 864px;
    background: url(images/index1.png) no-repeat center center;
    content: "";
  }
  .bg-company {
    background: url(images/bg-works.png) no-repeat center top;
  }
  .bg-outline {
    background: url(images/bg-outline.jpg) no-repeat center top;
  }
  .bg-history {
    background: url(images/bg-history.jpg) no-repeat center top;
  }
  .bg-access {
    background: url(images/bg-access.jpg) no-repeat center top;
  }
  #nav-open {
    display: none;
  }
  .btn-close {
    display: none;
  }
  .table-common th {
    width: 180px;
    padding: 0.5em 1em;
    vertical-align: top;
  }
  .table-common td {
    padding: 0.5em 1em;
    vertical-align: top;
  }
  .table-contact {
    margin-bottom: 60px;
  }
  .table-contact th {
    width: 230px;
    padding: 2em 0 0 1em;
    border-bottom: 1px solid #ccc;
    font-size: 15px;
    vertical-align: middle;
    vertical-align: top;
  }
  .table-contact th.required:after {
    top: 2.5em;
    font-size: 11px;
  }
  .table-contact td {
    padding: 1em 2em;
  }
  .confirm .table-contact td {
    height: 72px;
    line-height: 40px;
  }

  .wrap-1column .box-post-archive a > div:nth-child(1) {
    width: 300px;
    margin-right: 40px;
  }

  .wrap-1column .box-post-archive a > div:nth-child(2) {
    width: calc(100% - 300px);
  }

  .main-visual picture {
    height: 100%;
  }


}




  .wrap-1column .box-post-archive a > div:nth-child(1) {
    width: 240px;
    margin-right: 40px;
  }

  .wrap-1column .box-post-archive a > div:nth-child(2) {
    width: calc(100% - 280px);
  }

	.wrap-message > div:nth-child(1){
   width:calc(70% - 40px);
	}

	.wrap-message > div:nth-child(2){
    width:75%;
	margin-right: 2%;
	}

	.wrap-message > div:nth-child(2) .btn-archive{
    min-width:100%;

	}






	.widget_media_image figure a{
		max-width:300px;

	}

	.widget_media_image figcaption{
		margin-top:.75em;
	}

  .main-visual picture {
    height: 100%;
  }

  .main-visual img {
    height: calc(100vh + 30px);
    object-fit: cover;
    width: 100%;
  }

    .page-baseball .main-visual img {
    object-fit: contain;
    width: 95%;
    margin: 0 auto;
    display: block;
    height: 18vw;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-bottom: 6vh;
    filter: drop-shadow(5px 5px 5px #000000) ;
  }





@media screen and (max-width: 1780px) {

.page-recruit-top .main-visual .section-common{
  display: none;
}


.index .wrap-1column h2{
  left: 0;
}



}




@media screen and (max-width: 1680px) {

  .page-recruit-top #js-nav-drawer > .contents:nth-child(1){
    width: 20vw;

  }


.page-recruit-top .wrap-logo .logo{
    width: 20vw;
}

.page-recruit-top .global-nav > li > a {
    font-size: 14px;
    margin: 8px 0;
}

#menu-item-568 a{
  padding: 10px 1em 20px;
}

.page-recruit-top #js-nav-drawer > .contents:nth-child(1)::after{
  width: 5vw;
  min-width: 5vw;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


.page-recruit #js-nav-drawer > .contents:nth-child(1){
    width: 20vw;

  }


.page-recruit .wrap-logo .logo{
    width: 20vw;
}

.page-recruit .global-nav > li > a {
    font-size: 14px;
    margin: 8px 0;
}


.page-recruit #js-nav-drawer > .contents:nth-child(1)::after{
  width: 5vw;
  min-width: 5vw;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.about-img{
background-position-x: 0;
}

.page-recruit .main-column .jobs-works h3::before{
  left: 100px!important;

}

    .index .wrap-1column h2 {
        flex-direction: column;
    }

}

/*--------------------1680ここまで--------------------*/


@media screen and (max-width: 1480px) {



  .wrap-logo .logo{
    width:20vw;
  }

  .global-nav > li{
    padding: 0 .5em;

  }

  .global-nav > li > a{
    font-size: 14px;
    margin: 8px 0;

  }

  #menu-item-554 a{
    padding: 10px 1em 20px;
  }

  #js-nav-drawer > .contents:nth-child(1){
    width: 20vw;
  }


}

/*--------------------1480ここまで--------------------*/




@media screen and (max-width: 1280px) {

  .landing-content{
    width: 100%;
  }

  .col-4 > * {
    width: calc((100% - 80px) / 3);
  }

  .br-min1280{
    display: none;
  }

  .br-max1280{
    display:block;
  }

  .greeting-box{
    padding: 0;
  }

  .greeting-box::after{
    content: none;
  }


  .greeting-box::before{
    content: none;
  }

  .overflow-map{
    width: 100%;
    max-width: 100%;
  }

  .img-2-overflow{
    width: 100%;
    max-width: 100%;
  }

  .group-companies{
    flex-wrap: wrap!important;
    gap: 4vw;
  }

  .group-companies > div{
    width: calc(50% - 1.25vw);
    flex-basis: initial!important;
  }

    .lease-merits__columns{
    flex-wrap: wrap!important;
  }

  .lease-merits__columns > div{
    width: 100%;
    display: flex;

  }

  .lease-merits__columns > div figure{
    width: 20%;
  }


  .lease-merits__columns div img{
    width: 100%;
    margin: 0 auto;
    display: block;
  }

  .lease-end-options__columns{
    flex-wrap: wrap!important;
  }

  .lease-end-options__columns div{
    width: calc(50% - 1.25vw);
    flex-basis: initial !important;
    margin-bottom: 40px;
  }


  .plan3 div:last-child{
    margin-right:  calc(50% + 1.25vw);
  }

  .lease-end-options__columns.plan3 div:last-child{
    margin-right: 0;
  }


  .plan3{
   flex-wrap: wrap!important;
  }


  .plan3 div{
    width: calc(50% - 1.25vw);
    flex-basis: initial !important;
    margin-bottom: 40px!important;
  }

    .plan3.leaseplan div{
    width: 100% ;
    flex-basis: initial !important;
    margin-bottom: 40px!important;
  }

   .plan3.leaseplan div img{
    max-width: 600px;
    margin: 0 auto;
    display: block;
   }

  .support-box{
   flex-wrap: wrap!important;
   gap: 2.5vw;
  }


  .support-box > div{
    width: calc(50% - 1.25vw);
    flex-basis: initial !important;
  }

  .support-box > div:last-child{
    margin-right:  calc(50% + 1.25vw);
  }

  .player-box .wrap-post-img-text{
   flex-wrap: wrap!important;
   gap: 2.5vw;
  }

  .player-box .wrap-post-img-text > article{
    width: calc(50% - 1.25vw);
    flex-basis: initial !important; 
  }



  .overflow-img-right img{
    width: 100%;
  }

  .overflow-img-left img{
    width: 100%;
    position: initial;
  }

  .used-cta > div{
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 3vw;
    gap: 3vw;
  }

  .used-cta > div > div{
    width: 100%;
  }



.gs-box{
  flex-direction: column-reverse;
}

.baseball-result-box{
  width: 100%;


}

.gs-box .box-post-archive-baseball{
  width: 100%;
}

.gs-box-calendar{
  min-width: auto;
}

.baseball-result-box .wrap-post-archive{
  min-width: auto;  
}

.baseball-result-box{
  flex-direction: column-reverse;
}


.main-column .section-common > .contents{
  width: 100%;

}

.box-post-archive.box-post-archive-baseball a > div:nth-child(1){
  width: 50vw;
  margin-right: 6vw;
  padding-right: 2vw;
}

.abt-box{
  flex-direction: column;
  gap: 4vw;
}

.abt-box > table {
  min-width: auto;
  max-width:initial;
  width: auto;
  margin: 0;
}

.abt-box table td:nth-child(2){
  padding: 0;
}

.abt-box table table td:nth-child(2){
  white-space: normal;
  word-break: break-all;
  text-align: justify;
  padding: 0;
}


.page-recruit-top .global-nav > li > a {
  font-size: 12px;
  margin: 8px 0;
}

.page-recruit-top .global-nav > li{
  padding: 0 0.35em;
}



.page-recruit .global-nav > li > a {
  font-size: 12px;
  margin: 8px 0;
}

.page-recruit .global-nav > li{
  padding: 0 0.35em;
}

.recruit-head{
  left: 4vw;
  font-size: 14vw;
}

.page-recruit-top .head-page{
  left: 4vw;
  bottom: calc(5% + 30vw);
}

.recruit-company-inner > div {
    width: 50%;
    min-width: 50%;
}

.recruit-job-inner > div {
    width: 50%;
    min-width: 50%;
}

.recluit-img-box{
    width: 50%!important;
    min-width: 50%!important;
}

.recluit-img-box2{
    width: 50%!important;
    min-width: 50%!important;
}

.recruit-information > div > p{
    width: 50%!important;
    min-width: 50%!important;
  }

.recruit-information > div > div{
    width: 50%!important;
    min-width: 50%!important;
  }
.recruit-information > div > div > div{
  width: 100%;
}

.overflow-box .overflow-img-right img{
  width: 100%;
}

.wp-block-buttons>.wp-block-button.wp-block-button__width-50{
  width: 100%;
}

.interview-all-box{
  flex-direction: column;
}

.wp-block-columns {
  gap: 2.5vw;
}

.benefits-grid__columns{
  flex-wrap: wrap!important;
}

body .benefits-grid__columns > div{
  width: calc(50% - 1.25vw);
  flex-basis: initial !important;

}

.index .main-visual .contents{
  margin: 0;
}


.index .wrap-1column h2{
  flex-direction: column;
}


.index .wrap-1column h2 .en-title{
  font-size: 10vw;
}
.index .wrap-1column h2 .jp-title {
  font-size: 7vw;
}
.about-img{
  width: calc(100% + 4vw);

  background-size: cover;
}

.blob-svg{
  width: 200%;
  right: -80%;
  top: -20vw;
}


.section-about img{
  width: calc(100% + 4vw);
  height: 60vw!important;
margin-top:0px;
  }

.jobs-works{
  width: 100%;
  min-width: 100%;
}

.wp-container-core-columns-is-layout-9d6595d7{
  flex-direction: column;
}

	
.voices-box .wp-container-core-columns-is-layout-9d6595d7{
  flex-direction: row;
  flex-wrap: nowrap!important;
}


.benefits-grid__columns.wp-container-core-columns-is-layout-9d6595d7{
  flex-direction: row!important;
}

.group-companies.wp-container-core-columns-is-layout-9d6595d7{
  flex-direction: row!important;
}

.lease-service .wp-container-core-columns-is-layout-9d6595d7{
  flex-direction: column;!important;
}
.lease-service .wp-container-core-columns-is-layout-9d6595d7.comparison{
  flex-direction:row;!important;
}
.lease-service .wp-container-core-columns-is-layout-9d6595d7.safechoice{
  flex-direction: row;!important;
}
.lease-service .wp-block-column .wp-block-image{
  height: auto;
  margin-bottom: 0;
}

.after-support .wp-container-core-columns-is-layout-9d6595d7{
  flex-direction: row!important;
}

.after-support .wp-block-column .wp-block-image{
  height: auto;
  margin-bottom: 0;
}

.wp-container-core-columns-is-layout-9d6595d7 > div:nth-child(2) .overflow-img-right{
  height: 40vw;
}


.illustup{
  flex-direction: row;
}

.illustup .wp-container-core-columns-is-layout-9d6595d7{
  flex-direction: row;
}

.illustup .wp-container-core-columns-is-layout-9d6595d7 > div{
  height: auto;
}

.wp-container-core-columns-is-layout-9d6595d7.box3 > div{
  height:auto;
}


.step-table{
  max-width: 100%;
  overflow-x: scroll;
}

.step-table table{
  min-width: 1000px;
  margin-bottom: 0;

}

.about-employee-box img{
  width: 100%;
}

.wp-block-column .wp-block-image{
  height: 40vw;
  height: auto;	
  margin-bottom: 2vw;
  overflow: hidden;
}


.interview .overflow-img-right img{
  height: 100%;
}

.interview .overflow-img-left img{
  height: 100%;
}

.left-flex{
  flex-direction: column-reverse!important;
}


.recruit-interview{
  margin-top: calc(100px + 8vw);
}


.grobal-career .wp-container-core-columns-is-layout-9d6595d7{
  flex-direction: row;

}

.grobal-career .wp-block-column .wp-block-image{
  height: auto;
  margin-bottom: 0;
}

.workplace img{
  margin-bottom: 2vw;
}

.used-car .wp-block-image img{
  height: 100%!important;
    object-fit: contain!important;
}

.num .wp-block-column::before{
  left: 0;
  top: 0;
}

.img-multi {
  display: flex;
  flex-direction: row!important;
}

.img-multi figure{
  height: auto!important;
  margin-bottom: 0!important;
}

.about-company-box img{
  width: 100%;
  height: 100%;
}

.nametext{
  height: 50px!important;
}

 .wp-block-columns.benefits-grid__columns .benefit-card .wp-block-image{
  height: auto!important;
}


.safechoice h3{
  margin-top: 10px!important;
}


.main-column .job-box .wp-block-column{
  display: contents;
}

.main-column .job-box .wp-block-columns .wp-block-heading{
  order: 10!important;
}

.page-recruit .main-column h2{
  background: none;
}


.president-message figure:nth-of-type(1){
height: 50vw;
width: 50vw;
margin:0 auto;
}

.president-message figure:nth-of-type(1) picture{
width: 100%;
height: 100%;
display: block;
}

.president-message figure:nth-of-type(1) picture img{
width: 100%;
height: 100%;
display: block;
position: relative;
}


  .in-numbers img{
    max-width: 400px!important;
    margin: 0 auto;
    display: block;

  }

.name-text-box{
  max-width: 400px;
  width: 100%;

}

 .greeting-box > div > div{
  display: flex;
  flex-direction: row;
  align-items: center!important;
  justify-content: center;

 }

}

/*--------------------1280ここまで--------------------*/


@media screen and (max-width: 1080px) {

.page-recruit-top .global-nav > li > a {
  font-size: 10px;
  margin: 8px 0;
}

.page-recruit .global-nav > li > a {
  font-size: 10px;
  margin: 8px 0;
}


  .none1080{
    display: none;

  }

  .column1080{
    flex-direction: column;
  }

  .column1080reverse{
    flex-direction: column-reverse;
  }



  .company-info{
    flex-direction: column;
  }

  .wp-block-columns{
    gap: 2.5vw;
    margin: 2vw 0;
  }

  .company-info > div:nth-child(1){
    width: 100%;
  }

  .box-post-img-text {
      width: calc((100% - 30px) / 2);
  }

  .box-post-service .box-post-service-img-box{
    min-width: 0;
    width: 0;
  }

  .box-post-service img.service-img-main{
    left: -100px;
  }

  .box-post-service::before, .box-post-service::after{
    right:40px;
    top:65px;
  }

  .wrap-2column .main-column {
    width:100%;
  }

  .wrap-2column .sidebar {
    width:100%;
  }

  .wrap-2column {
    display: flex;
    flex-flow: column-reverse; wrap;
    justify-content: space-between;
  }

  .wrap-2column .main-column {
    margin-bottom: 10vw;
  }

  .box-post-archive-side a > div:nth-child(1){
    width: 30vw;
    height: calc(30vw / 1.618);
  }

  .sidebar img{

  }
  .sidebar .box-post-archive-side img{
  height: calc(30vw / 1.618)!important;
  }

  .box-post-archive-side a > div:nth-child(2){
    width: calc(100% - 30vw - 10px);
  }

  .wrap-post-archive-side .box-post-archive-side:not(:last-child){
    margin-bottom: 3vw;
  }

  .global-nav > li{
    padding: 0 .5em;
  }

  .single-staff-summary{
    padding: 4vw;
  }

  .single-staff-summary img{
    margin-right: 3vw;
    box-shadow: 10px 10px 30px #93959799;
  }

  .single-staff-summary .head-common::after{
    display: block;
    margin-left:0;


  }

  .single-staff-summary .head-common{
    flex-flow: column;
  }



  .col-4 > * {
      width: calc((100% - 40px) / 2);
  }

  .col-3 > * {
      width: calc((100% - 40px) / 2);
  }


  .br-min1080{
    display: none;
  }

  .br-max1080{
    display:block;
  }

  .wp-block-table table tr{
    border-top: 1px solid;
  }

  .wp-block-table table tr td,.wp-block-table table tr th{
    font-size: 14px;
  }

  .used-cta{
    padding: 20px;
  }

  .baseball-message h2{
    font-size: 6vw;
    text-align: justify;
  }


  .page-recruit-top .main-column .recruit-message h2{
    font-size: 6vw;
  }

  .recruit-message p{
    font-size: 2.5vw;
  }

  .recruit-company-inner{
    flex-direction: column;
  }

  .recruit-job-inner.flex-row-reverse {
    flex-direction: column-reverse;
  }

  .recluit-img-box{
    border-radius: 0;
    width: calc(100% + 10vw)!important;
    margin-left: -5vw;
    height: 60vw;
    background-position: center;
  }



/* iOSだけ */
@supports (-webkit-touch-callout: none) {
  .recluit-img-box{
    position: relative;
    overflow: hidden;
    background: none;
  }

  .recluit-img-box::before{
    content:"";
    position:absolute;
    inset:0;
    background: url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/1J1A3830.jpg)
                no-repeat;
    background-size: cover;
    background-position: center;

    transform: translate3d(0, var(--bgY, 0px), 0);
    will-change: transform;
    border-radius: inherit;
  }
}


  .recluit-img-box2{
    border-radius: 0;
    width: calc(100% + 10vw)!important;
    margin-left: -5vw;
    height: 60vw;
    background-position: center;
    position: relative;
    left: initial;
    bottom: initial;
  }


  @supports (-webkit-touch-callout: none) {
  .recluit-img-box2{
    position: relative;
    overflow: hidden;   /* ← 箱の中で切り抜く */
    background: none;   /* ← fixedは捨てる */
  }

  .recluit-img-box2::before{
    content: "";
    position: absolute;
    inset: 0;
    background: url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/1J1A8020-1.jpg)
                no-repeat center / cover;
    background-size: cover;
    background-position: center;

    transform: translate3d(0, var(--bgY, 0px), 0);
    will-change: transform;
    border-radius: inherit;
  }
}

  .recruit-job-inner h2{
    align-items: flex-start!important;
  }

  .recruit-job-button{
    align-items: flex-start;
  }

  .recruit-job-inner > div::after {
    content: "";
    display: block;
    width: 100%;
    height: calc(100% - 125px);
    background: #15957a30;
    position: absolute;
    top: 125px;
    left: 100px;
    mix-blend-mode: multiply;
    z-index: -10;
}

.recruit-information > div{
  gap: 2.5vw;
  flex-direction: column;
}

    .recruit-information > div > p {
        width: 100% !important;
        min-width: 100% !important;
    }

    .recruit-information > div > div {
        width: 100% !important;
        min-width: 100% !important;
    }

  .slider6 .slick-slide img{
    min-height: 350px;
  }

  .interview-name h3{
    font-size: 2.5vw!important;
  }

  .interview-name h3 span{
    font-size: 1vw;
  }

  .interview-name p{
    font-size: 1.5vw;
  }

  .interview-name h3{
    padding-left: 2vw;
    text-align: left;
  }

  .interview-name h3::before{
    content: none!important;

  }

  .interview-name p{
    padding-left: 2vw!important;
  }

  .used-car-appraisal .img-multi{
    flex-direction: column!important;
  }


  .used-car-appraisal .img-multi .wp-block-column{
    display: flex;
  }


.main-column table.used-data-left{

}



}

/*--------------------1080こまで--------------------*/


@media screen and (max-width: 920px) {

.single-contents-narrow{
  width: 100%;
}

}


@media screen and (max-width: 880px) {
	  .main-visual .noslide {
    width: 100%;
    position: relative;
    height: 50vh;
    overflow: hidden;
}

.page-recruit #js-nav-drawer > .contents:nth-child(1)::after{
  margin-left: 20px;

}	
	.index .wrap-1column h2{
		margin-bottom:30px;
	}

    .index .wrap-1column h2 .jp-title {
        font-size: 5vw;
    }

	
	
.name-text-box img{
  height: auto;

}

.name-text-box.wp-block-column .wp-block-image{
  height: auto;
}


  .pc {
    display: none;
  }
  .sp {
    display:block;
  }
  body.over {
 
  }
  .tb-contents {
    width: 100%;

  }

	.footer-top {
		padding:50px 0 30px;
	}

  .footer-top .tb-contents {
    width: 100%;
  padding-right: 0;
  padding-left: 0;
  }

  .simple-footer-nav{
	flex-wrap:wrap;
  }


  .simple-footer-nav li{
    width: 100%;
    text-align: center;
    border-top: 1px solid #efefef;

  }

	.simple-footer-nav li a{
	border-right:none;
	width: 100%;
		padding: 15px 0;
	display:flex;
  align-items: center;
  justify-content: center;
	}

  .sp-contents {
    width: 100%;
  padding-right: 4%;
  padding-left: 4%;
  }


  .wrap-2column .section-common:nth-child(1) h2 {
    margin-top: 0px;
  }

  .wrap-2column .section-common h2 {
    text-align:center;
	display:block;
  }

  .index .wrap {
    padding: 0 0 20vw;
  }
  body:not(.index) .wrap {
    padding: 0 0 20vw;
  }
  .wrap-section-interval > *:not(:last-child) {
    margin-bottom: 15vw;
  }
  .wrap-section-padding > * {
    padding: 10vw 0;
  }
  .wrap-2column .section-common:not(:last-child) {
    margin-bottom: 10vw;
  }
  .wrap-1column .section-common {
    padding: 10vw 0;
  }
  .box-post-text a {
    flex-flow: row wrap;
    padding:10px 0;
  }
  .header.over {
    top: -180px;
  }
  .wrap-logo {
    margin-left: 20px;
    margin-top: 13px;
    margin-bottom: 13px;
  }
  .head-header {
    margin-bottom: 15px;
  }

  .head-header p,.head-header h1{
    min-width:420px;
    text-align: center;
  }

  .wrap-tel-header {
    display: none;
  }
  .inner-footer-top {
    justify-content: center;
  }
  .inner-footer-top > div {

  }
  .box-info-footer {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    width: 285px;
  }

	.wrap-footer-nav .footer-nav li a {
	font-size:1.6vw;

	}

  .sidebar {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .sidebar > * {
    width: 100%;
  }

  .sidebar .widget_nav_menu {
    display:none;
  }

  .sidebar img {
    width: 100%;
  }
  .list-side2 a div:nth-child(1) {
    width: 40%;
    margin-right: 5%;
  }
  .list-side2 a div:nth-child(2) {
    width: 55%;
  }
  .side-list-compnay {
    justify-content: flex-start;
  }
  .side-list-compnay li:nth-child(1) {
    margin-right: 1em;
  }

  .global-nav {
    display: none;
  }
  .footer-nav {
    align-items: center;
  }

  .footer-contents {
	  width:100%;
  }

  .pagetop {
    right: 3vw;
    bottom: -60px;
  }
  .pagetop.active {
    bottom: 3vw;
  }
  #nav-close {
    display: none;
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: 0.3s ease-in-out;
  }
  #nav-content {
    -webkit-transform: translateX(-105%);
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 90%;
    max-width: 300px;
	min-width:300px;
    height: 100%;
    overflow: auto;
    transform: translateX(-105%);
    background: #fff;
    transition: 0.5s ease-in-out;
	white-space:nowrap;
	word-break:keep-all;
  }
  .btn-close {
    display: block;
  }
  #nav-input:checked ~ #nav-close {
    display: block;
    opacity: 0.5;
  }
  #nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
  }
  .top-message {
    font-size: 30px;
  }

  .side-compnay{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
  }

  .side-compnay h3{
    width:100%;
  }

  .side-compnay picture{
    width:100%;
  }

  .side-address-compnay-box{
    width:100%;
  }

  .company-photo{
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
  }

  .sidebar .company-photo > div{
    width:48%;
    margin-bottom: 4vw;
    }

  .wrap-post-img-text {
    margin: -20px 0;
    }

  .contact-box .contents {

    }

  .contact-box h2 {
    font-size: 4vw;
    }

  .contact-btn-box {
    flex-direction: column;
    }

  .contact-btn-box {
    width: 100%;
    }

  .contact-btn-box a {
    width: 100%;
    }

  .contact-btn-box a:nth-child(1) {
    margin-bottom: 20px;
    }



	.single-post .head-common{
	font-size:4vw;
	}

	.wrap .wrap-message h3{
    margin: 0 2.5vw;
	}

	.contact-tel{

    margin: 4vw 0 0;
	}

  .contents {
    width: calc(100% - 8vw);
    margin-right: auto;
    margin-left: auto;
  }

  .contents .contents {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .main-visual .contents {
    width: 100%;
    margin: 0 4vw;
  }

  .contents.wrap-1column-max{
    width: 100%;
    }

  .section-message p{
    text-align: justify;
  }


  .contact-box p{
    text-align: justify;
  }

  .section-icon h2{
    flex-flow: row;
    font-size: 4vw;
    text-align: left;
  }

  .section-icon h2::before{
    margin-bottom: 0;
    margin-right: 2vw;
    width: 10vw;
    height: 10vw;
  }

  .index .top-col-icon1 h2:after,.index .top-col-icon2 h2:after,.index .top-col-icon3 h2:after,.index .top-col-icon4 h2:after{
    left: 2vw;
    top: initial;
    width: 6vw;
    height: 6vw;
  }

  .box-post-service{
    padding: 4vw;
  }

  .box-post-service::before, .box-post-service::after{
    font-size: 140px;
    right: 1vw;
    top: calc(4vw + 5px);
  }

  .section-icon h3{
    text-align: left;
    font-size: 3vw;
    margin:1em 0 .5em;
  }

  .main-visual.landing{
    margin-top: 15px;
  }

  body .telp {
  text-align: center;
  }

  .single-post-service-detail-box{
    padding: 4vw;
  }

  .single-post-service h1::after{
    display: block;
    margin-left: 0;
    margin-top: 0.2em;
  }

  .single-staff-summary{
    flex-flow: column;
  }

  .single-staff-summary img{
    margin: 0 auto;
  }

  .single-staff-summary > div{
    margin-top: 4vw;

  }

  .over header.active .search-form {
    display: block;
    margin: 0;
    position: initial;
  }

  .spsearch{
    display: none;
    border: 1px solid #cccccc;
    width: 33px;
    height: 33px;
    border-radius: 20px;
    position: absolute;
    top: 15px;
    left: 15px;
    background: url(images/search.svg)no-repeat;
    background-size: 16px;
    background-position: center left 7px;
  }

  .spsearch label{
    width: 33px;
    height: 33px;
    display: none;
  }

  header .search-form{
    position: initial;
  }

  .search-form-box {
    height: 0;
    max-height: 0;
    overflow: hidden;
    transition: 0.5s;
    padding: 0 4%;
  }

  #btn-spsearch:checked ~ .search-form-box {
    height: 48px;
    max-height: 48px;
    transition: 0.5s;
  }



  header .search-form .search-field{
    width: 100%;
    background: none;
  }

  header .search-form .search-field:focus {
    width: 100%;
  }


  .pagination{
    margin-top: 4vw;
    margin-bottom: 8vw;
  }


  .col-4 > * {
    width: 100%;
  }

  .col-3 > * {
    width: 100%;
  }

  .col-2 > * {
    width: 100%;
  }

  .br-min880{
    display: none;
  }

  .br-max880{
    display:block;
  }

.main-column .box-post-img-text h3, .wrap-1column .box-post-img-text h3 {
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.5;
    font-size: 17px;
    margin: 0;
    padding: 0;
    border: none;
}


.global-nav-sub{
  display: none;
}

.box-info-footer{
  width: 100%;
}


.box-info-footer .logo{
 width: calc(100% - 8vw);
  margin: 0 4vw;
}

.footer-detail{
  flex-direction: column;
}

.simple-footer-nav{
  width: 100%;

}

.info-footer{
 width: calc(100% - 8vw);
  margin: 2vw 4vw 0;

}

.exhino-box{
  display: flex;
  justify-content: space-between;
  gap: 2vw;

}

.exhino{
  width: 50%;
        font-size: 3vw;
        white-space: nowrap;
}

.wrap-footer-nav{
  flex-direction: column;
}

.wrap-footer-nav .footer-nav{
  width: 100%;
}

.wrap-footer-nav .footer-nav li{
    display: flex;
    width: 100%;
    justify-content: center;
        border-top: 1px solid #efefef;
}

.wrap-footer-nav .footer-nav li a{
  padding: 15px 0;
  width: 100%; 
  justify-content: center;
  font-size: 13px;

}

.simple-footer-nav{
  margin-bottom: 0;
}


#menu-item-554 a {
  background: none;
  color: #222222;
  margin-left: 0;
  padding: 0.5em 2.5vw;
  font-weight: normal;
}

.baseball-team h2{
  font-size: 6vw;
}

.baseball-team h2::before{
  font-size: 8vw;
}


.page-baseball .wrap{
  background-position: bottom right;
}

.box-post-archive.box-post-archive-baseball p.game-date{
  font-size: 4vw;
  white-space: nowrap;
}

.point-box p{
  font-size: 14vw;

}

.player-exe{
  flex-wrap: wrap;
}

.player-exe ol {
  width: 100%;
}


.recruit-company-inner{
  flex-direction: column;
}


.recruit-company-inner > div {
    width: 100%;
    min-width: 100%;
}

.recruit-job-inner > div {
    width: 100%;
    min-width: 100%;
}

.recluit-img-box{

}

.section-recruit-entry .contents{
  flex-direction: column;
}

.section-recruit-entry .contents h2{
  margin-bottom: 4vw;
  font-size: 2vw;
  width: 100%;
  align-items: center;
}

.section-recruit-entry .contents h2::before{
  font-size: 6vw;
}

.section-recruit-entry .contents .contact-btn-box{
  width: 100%;
}

.copyright small{
  text-align: center;
}

.page-recruit .head-page{
  font-size: 3vw;
}

.page-recruit .head-page::after{
  font-size: 6vw; 
  margin-top: 1vw;
}

.webp body.page-recruit .main-visual{
  height: 25vw;
}

.jump-menu{
  gap: 2vw;
}

.jump-menu .wp-block-button__link{
  font-size: 2.5vw!important;
}

.dispnone{
  display: none;
}
	.spnone{
  display: none;		
	}
.about-company-box{
  margin-top: 0;
}

.about-company-box{
  flex-direction: column;
}

.page-recruit .main-column h2{
  margin-top:12vw;
  font-size: 6vw;
  display: block!important;
}



.page-recruit .main-column h2::before{
  display:none;
}

.about-company-box h2::after, .about-employee-box h2::after{
margin-left: 0 !important;
        height: auto !important;
        display: block!important;
}

.page-recruit .main-column h2::before{
  margin-left: 0 !important;
  height: 4vw !important;
  width: 100%;
  display: block!important;
}

.page-recruit .main-column h2::after{
  margin-left: 0 !important;
  height: 0vw !important;
  width: 100%;
  display: block!important;
}

.main-column .voices-box h3{
  font-size: 6vw;
}

.main-column .voices-box h3::before{
  font-size: 6vw;
}

.overflow-box{
  flex-direction: column;
}

.overflow-box .wp-block-column figure{
  height: 40vw;
}

.overflow-box .overflow-img-right img{
  height: 40vw;
}

.main-column h2 + p{
  margin-top: 0;
}

.jump-menu .wp-block-button__link::after{
  width: 1.2vw!important;
  height: 1.2vw!important;

}

.page-recruit .main-column .career-section h2::before{
  display: block!important;
}


.section-youtube .contents .contents{
  margin:0;
  width: 100%;
}



.work-attract-list{
  margin-top: 10px!important;
}

.main-column h3{
  margin-top: 2vw;
    font-size: 4vw;	
}

.mb-400{
  margin-bottom:40vw;
}

.main-column .recruit-interview h2{
  font-size: 3vw;
}

.main-column .recruit-interview h2::before{
  height: auto!important;
  font-size: 8vw!important;
}

.recruit-interview .slick-prev, .recruit-interview .slick-next{
  height: 8vw;
  width: 8vw;
}

.recruit-interview .slick-next:hover {
  height: 8vw;
  width: 8vw;
}

.recruit-interview .slick-prev:hover {
  height: 8vw;
  width: 8vw;
}

.slick-next {
    right: -1vw!important;






}

.slick-prev {
    left: 1vw!important;
}



.grobal-career .wp-container-core-columns-is-layout-9d6595d7{
  flex-direction: column;

}

.grobal-career .wp-block-column .wp-block-image{
  height: 60vw;
  width: 60vw;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0;
  border-radius: 50vw;
  border-radius: 0;
}

.grobal-career .wp-block-column .wp-block-image img{ 
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.grobal-career .wp-block-column .wp-block-image.img-last{
  width: 100%!important;
  border-radius: 0;
}

.grobal-career .wp-block-column .wp-block-image.img-last img{
  object-fit: cover;
  border-radius: 0;
}


.workplace img{
  padding-bottom: 4vw;
}


.page-recruit-top .wrap-logo {
    width: 25vw;
    margin-left: 0;
   
  }

 .page-recruit-top .wrap-logo .logo {
    width: 25vw;
  }

.page-recruit-top #js-nav-drawer > .contents:nth-child(1) {
        width: 28vw;
    }

    .page-recruit-top #js-nav-drawer > .contents:nth-child(1)::after {
        width: 8vw;
        min-width: 7vw;
      }


.page-recruit-top .main-column h2{
  padding-top: 10vw;
  font-size: 3vw;
}

.page-recruit-top .main-column h2::before{
  font-size: 8vw!important;
}




body{
  overflow-x: hidden;
}

html{
  overflow-x: hidden;
}


.recruit-message{
  height: auto;
}

.recruit-message::after{
  content: none;

}

.recruit-message::before{
  width: 120%;
  height: 100%;
  left: -10%;
  background-attachment: initial;
}

.interview-name{
  bottom: 0;
}


.slider6 .slick-slide.slick-current + .slick-active img{
  bottom:20px;


}



.interview-name h3 span{
  margin-left: 1vw;
}


.page-recruit-top .drawer-nav{
  display: none;
}

.page-recruit .drawer-nav{
  display: none;
}

.page-recruit .dnav-mobile{
    display: block;
  }

.page-recruit-top .dnav-mobile{
    display: block;
  }

#menu-item-568 a{

  padding: 0.5em 2.5vw;

}

#menu-item-568 a:hover{
  background: none;
  color: #15957a;
}

body p{
  font-size:2.5vw;
}

.main-column > p {
    font-size:2.5vw;
  }


.main-column h2{
  font-size: 4vw;
  margin-bottom: 2vw;
}


.main-column ul li{
  font-size: 2.5vw;
}

.main-column ol li{
  font-size: 2.5vw;
  white-space: wrap;
}

table td,table th{
  font-size: 2.5vw!important;
}

.service-contest-box{
  padding: 0;
}

 .wp-block-columns.benefits-grid__columns .benefit-card .wp-block-image{
  height: auto!important;
}

.in-numbers-box .wp-block-column .wp-block-image{
  height: auto!important;
}

.about-company .wp-block-column .wp-block-image{
  height: auto!important;
}


.page-id-411 .main-column h2{
  font-size: 4vw;
}

.page-id-414 .main-column h2{
  font-size: 4vw;
}
.index .wrap-1column h2 .jp-title {

    line-height: 1;
}	
	
	.history-table tr:last-child:after{
		display:none;
	}
.history-table {
    padding-bottom: 0px;
}	

	.img-2-overflow div:nth-child(2){
		display:none;
	}
	


  .main-column .wp-block-columns.column1080reverse,
  .main-column .wp-block-columns.column1080{
    display: flex;
    flex-direction: column;
  }

  /* カラムの箱を消して中身を直下に出す（これが肝） */
  .main-column .wp-block-columns.column1080reverse > .wp-block-column,
  .main-column .wp-block-columns.column1080 > .wp-block-column{
    display: contents;
  }

  /* PC用スペーサーはモバイルでは邪魔なので消す */
  .main-column .wp-block-columns .wp-block-spacer.pc{
    display: none !important;
  }

  /* 望む順番：h2 → 画像 → p → ボタン */
  .main-column .wp-block-columns .wp-block-heading{ order: 10; }
  .main-column .wp-block-columns figure.wp-block-image{ order: 20; }
  .main-column .wp-block-columns p{ order: 30; }
  .main-column .wp-block-columns .wp-block-buttons{ order: 40; }

  /* もし figure や img のデフォルト余白が気になるなら（任意） */
  .main-column .wp-block-columns figure.wp-block-image{ margin: 0 !important; }
  .main-column .wp-block-columns figure.wp-block-image img{ display: block; }
	
  /* 左右どっちも「はみ出し」を無効化して、枠内に収める */
  .main-column figure.wp-block-image.overflow-img-left,
  .main-column figure.wp-block-image.overflow-img-right{
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .main-column figure.wp-block-image.overflow-img-left img,
  .main-column figure.wp-block-image.overflow-img-right img{
    width: 100% !important;
    height: 100% !important;
    display: block;
  }	
	


	/*--------------------@supports ここから--------------------*/
@supports (-webkit-touch-callout: none) {
  .page-baseball .wrap{
    position: relative;
    overflow: hidden;        /* 中で切り抜く */
    background: none;        /* fixed を捨てる */
  }


  .page-baseball .wrap::before{
    transform: translate3d(0, calc(var(--bgY) * 0.5), 0);
  }


	}/*--------------------@supports ここまで--------------------*/




    .blob-svg {
      opacity: 0.2;
    }

    .top-link{
      width: 10vw;
      height: 10vw;
    }


    .top-link::before{
      height: 1px;
      width: 6vw;
    }

    .top-link::after{
      height: 3vw;
      width: 3vw;
      right: -13px;
    }


    .business-Locations .wp-block-column:not(:last-child){
      margin-bottom: 0;
    }


    .group-companies h3{
      font-size: 2.5vw;
      margin-top: 2vw!important;
    }



    .main-column .group-company .wp-block-columns figure{
  max-height: 60vw!important;

    }
    .main-column .group-company .wp-block-columns figure picture{
     max-height: 60vw!important;
     display: block;

    }


    .main-column .group-company .wp-block-columns figure img{
      object-position: center;
           max-height: 60vw!important;
     display: block;
    }

    .jump-menu .wp-block-button__link:hover{
      font-size: 2.5vw!important;
    }
	  
    .leaseplan h3{
      height: auto;

    }

    .leaseplan h3 br{
      display: none;
    }


    .safechoice h3{
      font-size: 4vw!important;
      margin-top: 3vw!important;
    }
	 
   .used-cta{
    margin-top: 8vw;

   }

   .baseball-team .main-column h2{
    font-size: 2.5vw;
    line-height: 1.5;
   }


   .baseball-team .main-column .baseball-message h2{
    font-size: 6vw;
   }

   .tire01{
    height: 200vw;
    width: auto;
    top: -80vw;
   }

   .tire02 {
    height: 200vw;
    width: auto;
    top: -80vw;
    right: -10vw;
   }


   .business-content h3{
    margin-top: 6vw!important;
   }

   .ability .wp-block-columns{
    margin-bottom: 4vw!important;
   }

    .ability .wp-block-columns h4{
      margin-bottom: 0;
    }

    .job-introduction img{
      margin-bottom: 3vw;
    }

    .env-block{
      padding: 4vw;
      margin-bottom: 0!important;
    }

    .sp-speacer{
      height: 4vw!important;
    }

     .env-hero{
      margin-top: 24vw;

     }

     .wp-block-cover__inner-container p.env-hero__p{
      text-align: left;
     }

     .interview-box .wp-block-column h2{
      margin-top: 0;

     }

    .interview-box .wp-block-column .wp-block-spacer{
      display: none;
    }

    .interview-box .wp-block-column h4{
      font-size: 4vw;
      margin-bottom: 0;
      margin-top: 0;
    }

    .interview-box .wp-block-column p{
      font-size: 2.5vw;
      margin-bottom: 4vw;
    }

    .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
      max-width: calc((100% - 1em) /3) !important;
        margin: 0 !important;
    }

    .baseball-team .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
      max-width: 100%!important;
        margin: 0 !important;
    }
    .interview .recruit-interview{
      margin-top: 60vw;
    }


    .slider6{
      width: 880px;
      position: relative;
      left: calc((880px - 100vw) / -2 - 4vw);
    }

    .recruit-interview .slick-prev, .recruit-interview .slick-next{
      left: calc(440px + 35vw)!important;
    }



    .recruit-interview .slick-prev, .recruit-interview .slick-prev{
      left: calc(440px - 43vw)!important;
    }

    .page-recruit .main-column .gcareer-hero h2.gcareer-hero-sub{
    font-size: 13vw;
    padding-top: 0px;
    text-align:center ;
    padding-left: 0.15em;
    margin-top: 80vw;
  }

    .environment{
      width: 100%;
      max-width: 100%;
    }

  .environment figure{
    width: 100%!important;
  }

    .environment figure picture{
      border-radius: 0;
    }

  .environment figure picture .img-last{
    width: 100%!important;
    margin: 100%;
  }


  .environment .wp-block-column{
    width: 100%;
    overflow: hidden;
  }

  .environment p{
    width: 100%;

  } 
  
  .main-column .environment h4{
    margin-top: 3vw!important;  
  }



.section-recruit-entry .contents .contact-btn-box a{
  font-size: 3vw;
}



    .main-column .president-message figure:nth-of-type(1) {
        height: 50vw!important;
        width: 50vw;
        margin: 0 auto!important;
    }


    .page-recruit .main-column .president-message h2{
      margin-top: 0;
    }

  .main-column .president-message figure:nth-of-type(1).alignright{
    height: 35px!important;
  }

  .main-column .president-message figure:nth-of-type(1).alignright picture{
    display:flex ;
    justify-content: flex-end;
    height: 35px;
  }

  .career-section__header h2{
    margin-top: 0!important;
  }


	  .service-contest-cover{
      padding: 4vw;
      padding-block: initial;
      padding-top: 4vw;
    }

    .rally-img .wp-block-column{
      margin-bottom: 0!important;
    }

    .benefits-grid__columns .benefit-card img{
      margin: 0 auto;
      display: block;
    }


 .greeting-box > div > div{
  display: flex;
  flex-direction:column-reverse;
  align-items: center;

  justify-content: center;
  border: 4vw solid #eeeeee;
  padding: 4vw;
  margin-bottom: 14vw;

 }


 .wrap-1column .top-news .box-post-archive a > div:nth-of-type(1){
  margin-bottom: 2vw;
 }

  .wrap-1column .top-news .box-post-archive a{
    margin-bottom: 4vw;
  }


   .archive-used .main-column .box-post-archive-used h3{
    font-size: 3vw;
    margin-bottom: 2vw;
   }

.used-data{
  gap: 2vw;
}

.main-column table.used-data-left{
        width: 40%;
        min-width: 40%;
}

.main-column table.used-data-right td{ 
       font-size: 12px!important;
       padding:0!important;
       vertical-align: middle;
}

.main-column table.used-data-left tr:first-child td{
  font-size: 28px!important;
  padding: 4vw 0;
}

.main-column table.used-data-left tr:first-child td span {
    font-size: 11px;
    line-height: 11px;
  }
.main-column table.used-data-left tr:first-child td span span {
    font-size: 9px;
    line-height: 9px;
  }

.main-column table.used-data-left tr:nth-child(2) td span:nth-of-type(2) {
    padding-left:6vw;
}



.webp body.page-baseball .main-visual {
  background: url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/bbc_fvmo.jpg.webp) no-repeat;
  background-position: bottom;
          height: 100vh !important;
        padding-top: 0 !important;
        display: block;
        background-size: cover;
}

body.page-baseball .main-visual {
  background: url(https://keita202403.xsrv.jp/toyamahino/wp-content/uploads/bbc_fvmo.jpg) no-repeat;
  background-position: bottom;
          height: 100vh !important;
        padding-top: 0 !important;
        display: block;
        background-size: cover;
}

.page-baseball .main-visual img{
  display: none;
}


    .used-car-appraisal .img-multi .wp-block-column {
        display: flex;
        flex-direction: column-reverse;
    }

  .num .wp-block-column::before{
    content: none;
  }

  .used-car .used-car-appraisal .wp-block-column .wp-block-image img{
    width: 50%;
    margin: 0 auto;

  }

  .lease-merits__columns > div{
    flex-direction: column-reverse;
  }

     body .main-column .wp-block-columns.lease-merits__columns > div figure{
    width: 50%;
    margin: 0 auto!important;
  }

.recluit-infomation .main-column .recruit-interview h2{
  margin-bottom: 100px!important;
  margin-top: 30vw;
}

.top-slider-box{
  margin-bottom: 30vw;
}


}

/*--------------------880ここまで--------------------*/

@media screen and (max-width: 781px) {
	
	.plan3 div{
		width:100%;
	}

  .plan3 div:last-child {
    margin-right: 0;
  }

  .support-box > div:last-child{
    margin-right:  0;
  }

  .support-box > div .wp-block-image a{
   width: 50%;
   display: block;
   margin: 0 auto; 
  }

  .illustup{
    gap: 0;
    margin-bottom: 4vw!important;
  } 

  .illustup > div{
    margin-bottom: 0!important;
  } 

  .illustup .wp-container-core-columns-is-layout-9d6595d7 {
    flex-direction: row;
    flex-wrap: nowrap !important;
    align-items: center;
    margin: 0;
  }

  .illustup .wp-container-core-columns-is-layout-9d6595d7 div:nth-child(1){
    flex-basis: 40% !important;
    margin-bottom: 0;
  }

  .illustup .wp-container-core-columns-is-layout-9d6595d7 > div img{
    width: 100%;
    display: block;
  }

  .illustup img {
    margin-top: 0;
  }



}


@media screen and (max-width: 680px) {

	
body p{
  font-size: 4vw;
}
.recruit-message p{
    font-size: 4vw;
	text-align:left;
  }
	

.main-column > p {
    font-size: 4vw;
  }


.main-column h2{
  font-size: 7vw;
  margin-bottom: 2vw;
}
.main-column h3{
  margin-top: 3vw;
    font-size: 5vw;	
    margin-bottom: 3vw;
}
.main-column h4 {
    font-size: 4vw;
    margin: 4vw 0 2vw;
}
.main-column ul li{
  font-size: 3.5vw;
}

.main-column ol li{
  font-size: 3.5vw;
  white-space: wrap;
}
	

table td,table th{
  font-size: 3vw!important;
}	
	
	
.noslide h2{
  bottom: 26vw;
}
.box-post-archive:nth-child(1) {
    border-top: none;
}
.box-post-archive {
    border-bottom: none;
}	
.box-post-archive.box-post-archive-baseball ul li {
        font-size: 2.5vw;
        line-height: 4vw;
        margin-bottom: 0;
}
.box-post-archive.box-post-archive-baseball ul li::before {
    top: 1vw;
}	
.main-column .box-post-archive h3, .wrap-1column .box-post-archive h3 {
    font-size: 2.5vw;
}	
	
.box-post-archive time {

    width: 100%;
    font-size: 2vw;
}	


.archive .box-post-archive time {
  margin-top:0;
    width: 100%;
    font-size: 2vw;
}

.baseball-team .box-post-archive time {
  margin-top:0;
    width: 100%;
    font-size: 2vw;
} 
    .section-about img {
        height: auto !important;
    }	
	
  .player-tabs li{
    font-size: 2.5vw;
  }

	
	
.player-tabs{
  gap: 2vw;
}
.num .wp-block-column::before {
    position: relative;
    display: block;
    text-align: center;
}
.external-link-button::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #ffffff;
    position: absolute;
    right: 20px;
    top:1px;
    bottom: 0;
    margin: auto 0;
    z-index: 10;
}	
.external-link-button::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    right: 19px;
    top: -9px;
    bottom: 0;
    margin: auto 0;
    z-index: 10;
    background: #15957a;
}


.external-link-button a::before{

}


  body.over {

  }
  .spFullWidth {
    width: 100%;
    height: auto;
  }
  .wrap-main {
    width: 100%;
    padding: 10vw 5vw;
  }
  .inner-main h1 {
    font-size: 6vw;
  }
  .box-post-text time {
    width: 6em;
    margin-right: 5px;
    font-size: 10px;
    margin-bottom: 10px;
  }

  .main-column .box-post-text h3,.wrap-1column  .box-post-text h3{
    width: 100%;
    font-size: 13px;
    line-height:1.5;
	padding-right: 25px;
  }

  .wrap-post-img-text:after {
    width: 47%;
  }

  .box-post-img-text {
    width: calc((100% - 3vw) / 2);
  }

  .box-post-img-text h3 {
    font-size: 13px;
  }
  .box-post-img-text p {
    font-size: 13px;
  }
  .box-post-archive a > div:nth-child(1) {
    width: 25vw;
  }
  .box-post-archive a > div:nth-child(2) {
    width: calc(100% - 25vw - 20px);
  }
  .box-post-archive h3 {
    margin-top: 0;
    font-size: 4.5vw!important;
    line-height: 1.5!important;
  }
  .category-post {
    font-size: 10px;
  }
  .box-post-text .category-post {
    margin-right: 5px;
  }
  .header.over {
    top: -180px;
  }


  /*.inner-header {
    padding: 20px 0 0;
  }*/


  .wrap-logo {
    margin-left: 0;
    margin-top: 10px;
    margin-bottom: 8px;
  }
  .wrap-logo .logo {
    width: 50vw;
    min-width: 250px;
  }

   .page-recruit-top .wrap-logo .logo {
    width: 55vw;
  }


  .page-recruit-top .wrap-logo .logo {
    width: 50vw;
  }

  .head-header {

  }

  .head-header > * {
    color: #fff;
    font-size: 8px;
    text-align: center;
  }
  .list-sp-menu {
    display: flex;
    position: absolute;
    top: 34px;
    right: 50px;
  }

  .sp-header-tel{
    position:relative;
    height:40px;
    width:45px;
    display:inline-block;
  }

  .sp-header-tel span{
    width:100%;
    position:absolute;
    bottom:-0.5px;
  }

  .sp-header-tel:before{
    content:"";
    display:inline-block;
    height:34px;
    width:34px;
    position:absolute;
	background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24"><path fill="%231364b3" d="M15,12H17A5,5 0 0,0 12,7V9A3,3 0 0,1 15,12M19,12H21C21,7 16.97,3 12,3V5C15.86,5 19,8.13 19,12M20,15.5C18.75,15.5 17.55,15.3 16.43,14.93C16.08,14.82 15.69,14.9 15.41,15.18L13.21,17.38C10.38,15.94 8.06,13.62 6.62,10.79L8.82,8.59C9.1,8.31 9.18,7.92 9.07,7.57C8.7,6.45 8.5,5.25 8.5,4A1,1 0 0,0 7.5,3H4A1,1 0 0,0 3,4A17,17 0 0,0 20,21A1,1 0 0,0 21,20V16.5A1,1 0 0,0 20,15.5Z" /></svg>') no-repeat center center;
    background-size:cover;
    margin:0 auto;
    right:0;
    left:0;
	top:-5px;
  }


  .sp-header-contact{
    position:relative;
    height:40px;
    width:45px;
    display:inline-block;
  }

  .sp-header-contact span{
    width:100%;
    position:absolute;
    bottom:-0.5px;
  }

  .sp-header-contact:before{
    content:"";
    display:inline-block;
    height:34px;
    width:34px;
    position:absolute;
	background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24"><path fill="%231364b3" d="M20,8L12,13L4,8V6L12,11L20,6M20,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V6C22,4.89 21.1,4 20,4Z" /></svg>') no-repeat center center;
    background-size:cover;
    margin:0 auto;
    right:0;
    left:0;
	top:-5px;
  }

  .sp-header-access{
    position:relative;
    height:40px;
    width:45px;
    display:inline-block;
  }

  .sp-header-access span{
    width:100%;
    position:absolute;
    bottom:-0.5px;
  }

  .sp-header-access:before{
    content:"";
    display:inline-block;
    height:34px;
    width:34px;
    position:absolute;
	background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24"><path fill="%231364b3" d="M12,11.5A2.5,2.5 0 0,1 9.5,9A2.5,2.5 0 0,1 12,6.5A2.5,2.5 0 0,1 14.5,9A2.5,2.5 0 0,1 12,11.5M12,2A7,7 0 0,0 5,9C5,14.25 12,22 12,22C12,22 19,14.25 19,9A7,7 0 0,0 12,2Z" /></svg>') no-repeat center center;
    background-size:cover;
    margin:0 auto;
    right:0;
    left:0;
	top:-5px;
  }

  .inner-footer-top > div {
    margin:0 0 20px;
  }
  .box-footer-top {
    padding: 10vw 10vw 7.5vw;
    text-align: center;
  }
  .wrap-footer-nav {

  }
  .copyright {
    font-size: 10px;
  }
  .sidebar {
    display: block;
  }
  .sidebar > * {
    width: auto;
  }
  .widget_nav_menu:not(:last-child),
  .box-side:not(:last-child) {
    margin-bottom: 10vw;
  }
  .list-side2 a div:nth-child(1) {
    width: 30%;
  }
  .list-side2 a div:nth-child(2) {
    width: 65%;
  }

  .breadcrumb{
	margin-bottom:5px;
  }

  .index .main-visual {
    width: 100%;
	margin-bottom:0;
  }

  .webp body:not(.index) .main-visual {
    height: 200px;
    padding-top: 20px;
  }
  
  body:not(.index) .main-visual {
    height: 200px;
    padding-top: 20px;
  }


  .head-page {
    font-size: 4vw;
  }
  .head-page:after {
    font-size: 12px;
  }
  .wrap-slider .slider {
    height: 75vw;
  }
  .wrap-slider .slider img {
    height: 75vw;
  }
  .section-about .wrap-btn {
    justify-content: center;
  }
  .btn-form,
  button.btn-form {
    width: 65vw;
    padding: 1em;
  }

  .pagination .pager {
    min-width: 7.5vw;
    min-height: 7.5vw;
    font-size: 3vw;
    line-height: 7.5vw;
    max-width: 7.5vw;
    max-height: 7.5vw;
  }
  .pagination .pager i:before {
    min-width: 7.5vw;
    height: 7.5vw;
    font-size: 4vw;
    line-height: 7.5vw;
  }
  .nav-link {
    z-index: 10;
/*     position: fixed; */
    bottom: 0;
    left: 0;
    width: 100%;

  }
  .link-prev,
  .link-next,
  .link-archive {
    width: 100%;
  }

  .link-prev,
  .link-next{
    margin-bottom: 3vw;
  }

  .link-prev a > p, .link-next a > p{
    font-size: 3vw;
    text-align: left;
    margin-bottom: 2vw;
  }

  .link-next a:after {
    -webkit-transform: rotate(45deg);
    display: inline-block;
    position: absolute;
    top: 3.7vw;
    right: 3.7vw;
    width: calc(3vw / 1.414);
    height: calc(3vw / 1.414);
    margin: auto;
    transform: rotate(45deg);
    border-top: 1px solid #999999;
    border-right: 1px solid #999999;
    content: "";
}

.link-prev a:after{
  -webkit-transform: rotate(45deg);
  display: inline-block;
  position: absolute;
  top: 2.7vw;
  right: 2.7vw;
  left: initial;
  width: calc(3vw / 1.414);
  height: calc(3vw / 1.414);
  margin: auto;
  transform: rotate(45deg);
  border-top: 1px solid #999999;
  border-right: 1px solid #999999;
  content: "";
}


  .link-prev a,
  .link-next a,
  .link-archive a {
    height: 100%;
    padding: 3vw;
    font-size: 3vw;
  }
  .icon-question:before,
  .icon-tel:before {
    width: 4vw;
    height: 4vw;
  }
  .bg-footer {
    background: url(images/bg-footer@2x.jpg) no-repeat center top;
    background-size: 100% 55.5vw;
  }
  .bg-company {
    background: url(images/bg-works.png) no-repeat right 40% bottom;
    background-size: cover;
  }
  .bg-outline {
    background: url(images/bg-outline.jpg) no-repeat center top;
    background-size: cover;
  }
  .bg-history {
    background: url(images/bg-history.jpg) no-repeat center top;
    background-size: cover;
  }
  .bg-access {
    background: url(images/bg-access.jpg) no-repeat center top;
    background-size: cover;
  }
  .spImgFullWidth {
    display: block;
    width: 100%;
    height: auto;
  }
  #nav-open {
    top: 12px;
    right: 12px;
  }
  .table-common > tbody > tr, .table-contact > tbody > tr {
    display: flex;
	flex-flow: wrap;
    align-items: center;
    width: 100%;
	border-top: 1px solid #cccccc;
  }

  .table-common > tbody > tr:last-child {
	border-bottom: 1px solid #cccccc;
  }


  .table-common > tbody > tr th, .table-contact > tbody > tr th,
  .table-common > tbody > tr td,
  .table-contact > tbody > tr td {
	 min-width: 8em;
    list-style-type: none;
  }

  .recruit .table-common > tbody > tr th{
    width:100%;
    font-size: 12px;
    font-weight: bold;
    padding-bottom: .5vw;
    padding-top: 2vw;
    padding-right: 0;
  }

  .recruit .table-common > tbody > tr td{
    padding-left: 0;
    padding-top: .5vw;
    padding-bottom: 2vw;
  }

   .main-column .contact-form table th,.main-column .contact-form table td	{
		width: 100%;
		padding-left: 0;
	}

   .main-column .contact-form table td{
		padding-top: 0;
	}

  .table-common th {
    padding: 1em 0 0.5em;
  }
  .table-common td {
    padding: 0 0 1em;
    border-bottom: 1px solid #eee;
  }
  .table-contact {
    margin-bottom: 5vw;
  }
  .table-contact th {
    padding: 1.5em 1em 0.5em;
  }
  .table-contact th.required:after {
    top: 1.5em;
    margin-right: 1em;
    font-size: 2.7vw;
  }
  .table-contact td {
    padding: 0.5em 1em 1.5em;
  }

  .main-column table th{
	border-bottom:none;
    border-top:none;
  }



  .wrap-about {
    flex-flow: row wrap;
    justify-content: center;
  }
  .wrap-about > div:nth-child(1) {
    margin-right: 0;
    margin-bottom: 3vw;
    margin-left:0;
    width:100%;
  }

	.wrap-about > div:nth-child(1) img {
    width:100%;
	}

  .wrap-about > div:nth-child(2) {
    width: 100%;
  }
  .wrap-message {
    flex-flow: row-reverse wrap;
    justify-content: center;
    padding: 5vw 2.5vw;
  }
  .wrap-message > div {
    margin: 2.5vw;
  }
  .wrap-message > div:nth-child(1) {
    width: 100%;
  }

	.main-visual .noslide{
	width:100%;
	left:0;
	}

	.wrap-message > div:nth-child(2){
		width: 100%;
	}

	.wrap-message > div:nth-child(3){
    width: 100%;
    padding:0 15%;

	}

	.widget_media_image figure{
		width:100%!important;
	}

	.widget_media_image figcaption{
		width:100%;
	}

	.single-post .head-common{
		font-size:6vw;
	}

	.mobile-tel-header a{
    letter-spacing: -0.02em;
	}

  .contents {
    width: calc(100% - 8vw);
    margin-right: auto;
    margin-left: auto;
  }

  .main-visual .contents {
    width: 100%;
    margin-top: 0;
  }

  header .contents {
    width: 100%;
  }







  .box-post-service .box-post-service-img-box{
    min-width: 100%;
    width: 100%;
    height: calc((100vw - 16vw) / 1.618);

  }

  .box-post-service img.service-img-main{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%!important;

  }

  .box-post-service{
    flex-flow: row;
  }

  .box-post-service {
    flex-flow: row;
    flex-wrap: wrap;
    margin-top: 10vw;
  }

  .box-post-service::before, .box-post-service::after{
    right: inherit;
    left: 5vw;
    top: 0;
    font-size: 40vw;
    line-height: 1em;
  }

  .br-min680{
    display: none;
  }

  .br-max680{
    display:block;
  }

  .box-post-service h3{
    font-size:8vw;
  }

  .service-lead{
    font-size: 2.5vw;
    line-height: 1.5;
    margin-bottom: 1vw;
  }

  .box-post-service .box-post-service-detail-box{
    padding: 4vw;

  }

  .box-post-service h3::after {
    font-size: 2vw;
    margin-left: 0;
    margin-top: 0.75em;
    display: block;
  }

  .single-post-service h1{
    font-size: 8vw;
  }

  .single-post-service h1::after{
    font-size: 2vw;
    margin-top:2vw;
  }

  .section-icon h2{
    font-size: 5vw;
  }

  .section-icon h3{
    font-size: 4vw;
  }

  .main-visual.landing {
    margin-top: 0;
  }

  .btn-archive{
    width:100%;
  }

  .page-landing .header{
    position: absolute;
  }

  body:not(.index) .main-visual.landing{
    height: 100vh;
  }

  .landing-content{
        padding: 180px 4vw;
  }

  .webp .contact-box {
    background-attachment: initial !important;
  }

  .webp .contact-box {
    background-attachment: initial !important;
  }

  .single-post-service-detail-box::before {
    background-attachment: initial !important;
  }

  .main-column .box-post-archive p{
    display: none;
  }

  .archive-baseball .main-column .box-post-archive p{
    display:block;
  }

  .page-baseball .main-column .box-post-archive p{
    display:block;
  }
  .page-baseball .main-column .baseball-news .box-post-archive p{
    display:none;
  }
  .page-baseball .env-gallery{
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .page-baseball .env-gallery .wp-block-image{
    width: auto !important;
    margin: 0 !important;
  }	
	
  .main-column .box-post-faq h3{
    font-size: 6vw;
    line-height: 1.7;
    padding-bottom: 2vw;
    padding-left: 6vw;
  }

  .main-column .box-post-faq h3::before{
    font-size: 25vw;
    line-height: 1;
    top: -10vw;
    left: -6vw;

  }

  .main-column .box-post-faq p{
    padding-left: 6vw;
  }

  .main-column .box-post-faq p::before{
    font-size: 25vw;
    line-height: 1;
    top: -2vw;
    left: -6vw;
  }

  .contact-box h2 {
    font-size: 6vw;
    }
.section-message p {
    text-align: center;
    font-size: 3.8vw;
	line-height:2;
}
body p {
    line-height:1.8;
    text-align: justify;
}


.table-common > tbody > tr{
  display: block;
}

.contact-form .table-common > tbody > tr{
  display: flex;
}
	
	table.table-company th,table.table-company td{
		font-size:4vw!important;
	}
.history-table table th,.history-table table td{
		font-size:3.5vw!important;
	}	
table.table-company th {
  display: block;
  text-align: center;
  padding: 1vw 0 0;
  font-size: 10px;
  font-weight: bold;
  color: #15957a;
}

table.table-company td{
  display: block;
  text-align: center;
  padding: 0 0 1vw;
}


.history-table tr td:nth-child(2){
  padding-right: 15px;
  width: 55px;
  padding-left: 0;
}

.history-table tr td:nth-child(3){
  padding-left: 20px;
  padding-bottom: 1.5vw;
}


.history-table tr:last-child:after{
  left: 132.5px;

}

.used-cta > div p:nth-child(1){
  font-size: 3vw;
}

.used-cta > div p:nth-child(2){
  font-size: 3vw;
}

.wp-block-buttons .wp-block-button__link{

    font-size: 4vw;
}

.jump-menu .wp-block-button__link:hover {
    font-size: 2.5vw!important;
}


.wp-block-buttons .wp-block-button__link em{
    font-size: 2vw;
}

.used-cta > div{
  border: none;
  padding: 0;
}

.box-post-archive.box-post-archive-baseball a > div:nth-child(1) {
  width: 50vw;
  margin-right: 2vw;
  padding-right: 2vw;
}


.point-box p {
    font-size: 21vw;
 }


.point-box p span{
  font-size: 2vw;
  max-width: 15.5vw;
  min-width: 15.5vw;
  transform: scale(0.75);

}

.box-post-archive.box-post-archive-baseball h3 {
    margin: 0;
    font-size: 3vw;
}


.box-post-archive.box-post-archive-baseball p.game-date span{
  font-size: 2vw;
}

.baseball-team .box-post-img-text a > div:nth-of-type(2){
  padding: 3vw;
}

.single-job-posting table.table-company th{
  text-align: left;
}

.top-news .wrap-post-archive {
    margin-left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
	justify-content:space-between;
  gap: 2%;
}
	
	.top-news .wrap-post-archive .box-post-archive{
		width:48%;
	}

.index .contents p {
    font-size: 4vw;
}
.section-about p {
    margin-right: 0;
}
.section-recruit p {
    margin-right: 0vw;
}		
	
.section-products h3{
  font-size: 6vw;
}

.top-news .box-post-archive p{
  font-size: 2vw;
	display:none;
}

.wrap-1column .top-news .box-post-archive h3{
    font-size: 3vw!important;
}

.employee-schedule li {
  font-size: 4vw;
  margin-bottom: 0 !important;
}

.employee-schedule{
  margin-top: 0;
  margin-bottom: 0;
}


.wp-block-column .wp-block-image {
  height: 80vw;
  margin-bottom: 4vw;
  overflow: hidden;
}


.service-contest-columns .wp-block-column .wp-block-image {
  height: auto;
}

.rally-img .wp-block-column .wp-block-image {
  height: auto;
}

.wp-block-gallery .wp-block-image {
  height: auto!important;
}

.wp-container-core-columns-is-layout-9d6595d7 > div:nth-child(2) .overflow-img-right{
  height:100%;

}

.recluit-infomation .wp-container-core-columns-is-layout-9d6595d7 > div:nth-child(2) .overflow-img-right{
  height: 40vw!important;
}

.wp-container-core-columns-is-layout-9d6595d7 > div:nth-child(1) .overflow-img-left{
  height:100%;

}

 .page-recruit-top .wrap-logo .logo {
    width: 45vw;
  }

.page-recruit-top #js-nav-drawer > .contents:nth-child(1)::after {
    width: 10vw;
    min-width: 14vw;

    position: absolute;
    left: 47vw;
}

.page-recruit .wrap-logo .logo {
    width: 45vw;
    min-height: 30px;
    display: flex;
    align-items: center;
}

.page-recruit #js-nav-drawer > .contents:nth-child(1)::after {
    width: 10vw;
    min-width: 14vw;

    position: absolute;
    left: 47vw;
}



.recluit-infomation{
  overflow-x: hidden;
}

.jobs{
  overflow-x: hidden;
}



.jobs .wp-block-column .wp-block-image{
  height: auto;
  margin-bottom: 0;
}


.img-2-overflow .wp-block-column{
  height: 40vh;
}

.img-2-overflow .wp-block-column figure{
  height: auto;
  margin-bottom: 0!important;
}

.img-2-overflow .wp-block-column img{
  height: auto;
}

.group-companies > div {
        width: 100%;
        flex-basis: initial !important;
    }


.single-data-box{
  flex-direction: column;
}

.point-box{
  width: 100%;
  justify-content: space-around;
}

.single-baseball .point-box p {
        font-size: 40vw;
    }

.single-baseball .point-box p span{
  transform:none;
}
	


.section-youtube .contents .contents .wrap-post-img-text{
  flex-direction: column;
}	
	
.section-youtube .contents .contents .wrap-post-img-text .box-post-img-text{
  width: 100%;
}	
	
.main-column ul.player-tabs li {
    font-size:3.5vw;
	padding: 4px 0.5em;
}	

   .player-box .wrap-post-img-text {
        margin: 0px 0;
    }	
	
 /* 一覧の親を2カラムのグリッドに */
  section.player-box .wrap-post-img-text{
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px; /* 好きに調整 */
  }

  /* 子（カード）が全幅指定されてても崩す */
  section.player-box .wrap-post-img-text article{
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
  }

  /* 画像がはみ出したり隙間出るのを防ぐ（保険） */
  section.player-box .wrap-post-img-text img{
    width: 100%;
    height: auto;
    display: block;
  }
.player-no {
    font-size: 50px !important;
    left: -5px;
    top: -8px;
}	
/*html.webp body.page-recruit-top .main-visual {
    height: 90vh !important;

}

.slider4 .slick-slide img {
    width: 95%;
    height: 80vh;
  }*/



  .wrap-1column .top-news .box-post-archive a{
    flex-direction: column;
  }

  .wrap-1column .top-news .box-post-archive a > div:nth-child(1){
    margin-right: 0;
    width: 100%;
  }

  .wrap-1column .top-news .box-post-archive a > div:nth-child(2){
    width: 100%;
  }


.jp-title span{
  font-size: 4vw;
  margin-top: 1vw;
}

    .leaseplan h3{
      font-size: 6vw;
    }


        .safechoice h3{
      font-size: 5vw!important;
      margin-top: 3vw!important;
    }

    .page-id-411 .main-column h2 {
        font-size: 5vw;
    }

        .page-id-414 .main-column h2 {
        font-size: 5vw;
    }


    .box-post-archive-used-inner{
      flex-direction: column;
    }

.box-post-archive .box-post-archive-used-inner > a{
  width: 100%;
}

.box-post-archive .box-post-archive-used-inner > div:nth-child(1){
  margin-right: 0;
  margin: 0 auto;
}

    .archive-used .main-column .box-post-archive-used h3 {
      margin-top: 4vw;
    }




.slider4 .slick-slide img{
  width: 95%;
  height: 50vh;
  margin-top: -30vh;
  border-radius: 20px;
  z-index: 100;
  position: relative;
}

	.recluit-infomation #sb_instagram{
		width:96%!important;
	}



}


/*--------------------680ここまで--------------------*/



@media screen and (max-width: 523px) {
  .fc-list-header-right::after{
    content: "日";

  }

   .fc-listMonth-view .fc-row .fc-content-skeleton .fc-day-number{
        display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
   }
}



@media screen and (max-width: 580px) {

.page-recruit-top #js-nav-drawer > .contents:nth-child(1)::after{
  left: 265px;
}
.page-recruit #js-nav-drawer > .contents:nth-child(1)::after {
  left: 265px;
}
}


@media screen and (max-width: 480px) {


  .in-numbers p strong {
    font-size: 15vw
  }

  .in-numbers p span{
    font-size: 10vw;
  }




 .player-box .wrap-post-img-text > article{
    width:100%;
    flex-basis: initial !important; 
  }



  .contact-box h2 {
    font-size:6vw;
    }

    .mobile-tel-header a::before{
      font-size: 3.5vw;
    }
}


@media screen and (max-width: 600px) {
  .wp-block-column:not(:last-child){
    margin-bottom: 5vw;
  }
}

@media screen and (min-width: 1681px) {

.index .wrap-1column h2 {
    position: relative;
    left: -170px;
    font-weight: bold;
    max-width: calc(100% + 170px);
    width: calc(100% + 170px);
}

}



@media screen and (min-width: 681px) and (max-width:1080px){

.widget_media_image figure{
width:100%!important;
display:flex;
flex-direction:row;
}

.widget_media_image figure a {
    max-width: 40vw;
    margin-right: 3vw;
}

.widget_media_image figcaption {
    margin-top: 0;
    width: calc(100% - 40vw - 3vw);
}

}

@media screen and (min-width: 681px) and (max-width:880px){

  .main-visual{

  }

}


/*--------------------common.css--------------------*/

/* ////////////////////////////////////////
PC,SP共通
//////////////////////////////////////// */
/* 共通色指定
*************************** */
.global-nav .sub-menu > li > a,
.btn-contact,
.pagetop,
.slick-dots li.slick-active button:before,
.sp-nav,
.wpcf7-submit {
  background:#15957a;
  color: #fff;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}

.category-post {
  display: inline-block;
  font-size: 12px;
  text-align: left;
  position: relative;

  display: flex;
  align-items: center;

}

.category-post::before {
  content: "";
  display: block;
  width: 14px;
  height: 12px;
  background: url(images/category.svg);
  background-size: cover;
  margin-right: 5px;
}

.main-column .category-post {
  width: auto;
  margin-right: 0;
}

.copyright{

}


.main-slider .slick-prev:before,
.main-slider .slick-next:before {
  color: #fff;
}

.footer {
  z-index: 20;
  position: relative;
  background: #61c397;

}

/*　フッター　*/
/* カテゴリ表示の背景色 */
.bg-cate-1 {
  background: #ffae5e;
}

.bg-cate-2 {
  background: #7a5b44;
}

.bg-cate-3 {
  background: #57b7e8;
}

.bg-cate-4 {
  background: #8fc31f;
}

.bg-cate-5 {
  background: #7e2a00;
}

.bg-cate-6 {
  background: #00a29a;
}

.bg-cate-7 {
  background: #f29c97;
}

.bg-cate-8 {
  background: #9082a4;
}

.bg-cate-9 {
  background: #e6001b;
}

.bg-cate-10 {
  background: #0047cf;
}

/* カテゴリ表示の背景色 */
/* 共通色指定
*************************** */
/* ウィジェット
*************************** */
.widget_nav_menu li > a {
  padding: 1em 1em;
}

#gallery-1 .gallery-item,
#gallery-2 .gallery-item {
  margin-top: 0 !important;
  margin-bottom: 0.5em;
}

#gallery-1 .gallery-caption,
#gallery-2 .gallery-caption {
  padding: 0.5em 0;
  line-height: 1.25;
}

/* ウィジェット
*************************** */
/* 固定ページ
*************************** */
/* 見出し */
.contents-page h2,
.contents-page h3,
.contents-page h4 {
  margin-bottom: 28px;
  line-height: 1.5;
}

.contents-page h2 {
  padding: 0.5em;
  font-size: 22px;
  font-weight: bold;
}

.contents-page h3 {
  padding: 0.5em;
  border-bottom: 1px solid #ccc;
  font-size: 20px;
}

.contents-page h4 {
  padding: 0.5em;
  font-size: 18px;
  font-weight: bold;
}

.contents-page h2 .mincho {
  font-size: 24px;
}

/* 見出し */
.contents-page p,
.contents-page span {
  line-height: 1.75;
}

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

/* 固定ページ
*************************** */
/* 会社概要　テーブル
*************************** */

table.table-company th {

  border:none;
  white-space: nowrap;
}

table.table-company td {
  border:none;
}

/* 会社概要　テーブル
*************************** */
/* お問い合わせ　テーブル
*************************** */
.contact table {
  width: 100%;
}

.contact table th,
.contact table td {
  line-height: 1.75;
}


.table-common th span{
  background: #990000;
  margin-left: 10px;
  color: #ffffff;
  font-size: 12px;
  padding: 2px 5px 2px;
  border-radius: 5px;
  height: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  text-indent: 0.2em;
}


/* お問い合わせ　テーブル
*************************** */
/* ////////////////////////////////////////
PC,SP共通
//////////////////////////////////////// */
/* ////////////////////////////////////////
PCのみ
//////////////////////////////////////// */

/* ////////////////////////////////////////
PCのみ
//////////////////////////////////////// */
/* ////////////////////////////////////////
SPのみ
//////////////////////////////////////// */
/* ////////////////////////////////////////
SPのみ
//////////////////////////////////////// */
@media screen and (min-width: 681px), print {
  /* 会社概要　テーブル
	*************************** */

table.table-company tr {
    border-bottom: 1px solid #ccc;
  }

table.table-company tr:first-child {
    border-top: 1px solid #ccc;
  }

table.table-company th {
    width: 20%;
  }
  /* 会社概要　テーブル
	*************************** */
  /* お問い合わせ　テーブル
	*************************** */
  .contact table tr {
    border-bottom: 1px solid #ccc;
	display: flex;
    align-items: center;
    flex-flow: wrap;
  }
  .contact table tr:first-child {
    border-top: 1px solid #ccc;
  }
  .contact table th {
    width: 20%;
    line-height: 42px;
  }
  /* お問い合わせ　テーブル
	*************************** */
}
@media screen and (min-width: 881px) {
  .nav {

    color: #666;

  }




}

/*--------------------common.cssここまで--------------------*/
