/* ========================================================================== Foundation ========================================================================== */
/* Reset  ----------------------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 16px;
  font-weight: normal;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
audio, canvas, video {
  display: inline-block;
  max-width: 100%;
}
html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
ul, ol {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
a:focus {
  outline: none;
}
ins {
  text-decoration: none;
}
mark {
  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;
  width: 100%;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
button, input, select, textarea {
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
}
input,
textarea {
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  -webkit-appearance: none;
  border-radius: 0;
  /* Removing the inner shadow, rounded corners on iOS inputs */
}
input[type="checkbox"] {
  -webkit-appearance: checkbox;
}
input[type="radio"] {
  -webkit-appearance: radio;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
img {
  -ms-interpolation-mode: bicubic;
}

/* clearfix */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  font-size: 0.1em;
  line-height: 0;
  visibility: hidden;
  overflow: hidden;
}
.clearfix {
  display: inline-block;
}

/* exlude MacIE5 \*/
* html .clearfix {
  height: 1%;
}
.clearfix {
  display: block;
}

/* end MacIE5 */
/* Base ----------------------------------------------------------------- */

body {
  background: #fff;
  color: #000;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  font-size: calc(16 / 1920 * 100vw);
  font-family: 'Noto Sans JP', sans-serif !important;
  letter-spacing: 1px;
}
a {
  color: #000;
  text-decoration: none;
}
b,
strong {
  font-weight: 700;
}
big {
  font-size: larger;
}
small {
  font-size: 80%;
}
sub {
  vertical-align: sub;
  font-size: smaller;
}
sup {
  vertical-align: super;
  font-size: smaller;
}
i,
cite,
em,
var,
address,
dfn {
  font-style: italic;
}
tt,
code,
kbd,
samp {
  font-family: monospace;
}
u,
ins {
  text-decoration: underline;
}
img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}
input {
  border: 0;
  margin: 0;
  padding: 0;
}
select {
  background: none transparent;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

/* for IE */
select::-ms-expand {
  display: none;
}

a,
a:before,
a:after,
input {
  -moz-transition-property: background-color, color;
  -moz-transition-duration: 0.2s;
  -moz-transition-timing-function: ease;
  -o-transition-property: background-color, color;
  -o-transition-duration: 0.2s;
  -o-transition-timing-function: ease;
  -webkit-transition-property: background-color, color;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease;
  transition-property: background-color, color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}

/* infinite scroll */
#infscr-loading {
  color: #525252;
  font-size: 14px;
  text-align: center;
  width: 100%;
}
#infscr-loading img {
  margin-right: 8px;
  vertical-align: middle;
}
#infscr-loading div {
  display: inline;
}


/*  header */
#js-header {
  height: 103px;
  line-height: 103px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
	width: 100%;
}
.l-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 100%;
  height: 100%;
}

/*========= header 上部固定させるためのCSS ===============*/
#js-header.fixed{
	position: fixed;
  z-index: 999;
  top:0;
  left:0;
	animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

#js-header.fixed .p-global-nav li a {
    color: #000;
    text-shadow: unset;
}
#js-header.fixed .contact_btn a {
  background: rgb(235,228,205);
  background: -moz-linear-gradient(90deg, rgba(235,228,205,1) 0%, rgba(56,176,185,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(235,228,205,1) 0%, rgba(56,176,185,1) 100%);
  background: linear-gradient(90deg, rgba(235,228,205,1) 0%, rgba(56,176,185,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ebe4cd",endColorstr="#38b0b9",GradientType=1);
}
#js-header.fixed .contact_btn a:hover {
  background: rgb(229,214,166);
  background: -moz-linear-gradient(90deg, rgba(229,214,166,1) 0%, rgba(204,138,132,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(229,214,166,1) 0%, rgba(204,138,132,1) 100%);
  background: linear-gradient(90deg, rgba(229,214,166,1) 0%, rgba(204,138,132,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e5d6a6",endColorstr="#cc8a84",GradientType=1);
	color:#fff;
}


/* header_logo */

.header_logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 60%;
  max-width: 147px;
  padding-left: 30px;
}
.header_logo a {
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  overflow: hidden;
  word-wrap: break-word;
  width: 100%;
  position: relative;
}
.header_logo img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}
.logo_whi {
  display: block;
}
.logo_bli {
  display: none;
}

/* スクロール時 header logo切り替え*/
#js-header.fixed .logo_whi {
  display: none;
}
#js-header.fixed .logo_bli {
  display: block;
}
/* END */


 /*** global nav*/

nav {
  margin: 0 30px 0 auto;
}
.p-global-nav {
  font-size: 16px;
  display: flex;
}

@media only screen and (min-width: 1201px) {
.p-global-nav {
  display:block !important;
}
}

.p-global-nav li {
  float: left;
  line-height: inherit;
  padding-left: 35px;
  padding-right: 35px;
}
.p-global-nav li.menu-item-has-children:hover > .sub-menu {
  top: 80%;
}
.p-global-nav li a {
  padding-left: 0;
  padding-right: 0;
}
.p-global-nav li sub-menu {
  top: 75%;
  left: 0;
}
.p-global-nav a {
  color: #fff;
  display: block;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.3s ease 0s;
  font-size:16px;
  font-weight: 500;
}
.p-global-nav a:hover {
  color: #fff;
}


/* pageごとでglobal color変更*/

.bl_header .p-global-nav a {
  color: #000;
  text-shadow: unset;
}
.bl_header .logo_whi {
  display: none;
}
.bl_header .logo_bli {
  display: block;
}


/* p-global-nav hover 設定-調整*/

.p-global-nav li a:after {
  position: absolute;
  content: '';
  bottom: 35px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease 0s;
  right: 0;
  margin: 0 auto;
}
.p-global-nav li a:hover {
    cursor: pointer;
}
.p-global-nav li a:hover:after {
    width: 100%;
}
#js-header.fixed .p-global-nav li a:after {
    background: #000;
}
.p-global-nav .menu-item-has-children {
  position: relative;
}
.p-global-nav .menu-item-has-children:hover > .sub-menu {
  opacity: 1; top: 0; visibility: visible;
}
.p-global-nav > li > .sub-menu {
  line-height: 0.5;
  opacity: 0;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
  visibility: hidden;
  z-index: 99;
  background: #fff;
  border-radius: 7px;
  padding: 16px 20px;
  box-shadow: 3px 3px 16px #a1a1a1;
  width: unset;
}
.p-global-nav .sub-menu .menu-item-has-children > a {
  position: relative;
}
.p-global-nav .sub-menu li:before {
  content: "-";
  position: unset;
  margin-right: .3em;
  font-weight: bold;
}
.p-global-nav .sub-menu li {
  margin: 0;
  padding: 0;
  text-wrap: nowrap;
}
.p-global-nav .sub-menu li:not(:last-child) {
  margin-bottom: 2px;
}

.p-global-nav .sub-menu li a {
  display: inline-block;
  width: unset;
  padding: 11px 0;
  font-size: 14px;
}

.p-global-nav .sub-menu li a:not([href]) {
  pointer-events: none;
  color: #aaaaaa!important;
}

.p-global-nav .sub-menu li:has(a:not([href])) {
  color: #aaaaaa!important;
}

li#menu-item-254 a {
  cursor: unset !important;
  color: #ddd !important;
}
.p-global-nav .sub-menu .menu-item-has-children > a::after {
  content: "\e910";
  font-family: "design_plus";
  position: absolute;
  right: 16px;
}
.p-global-nav .sub-menu a {
  box-sizing: border-box;
  padding: 11px 5px 11px 35px;
  width: 280px;
  color: #000 !important;
  font-size: 16px;
  text-shadow: unset;
  font-weight: bold;
}
.p-global-nav .sub-menu a:hover{
  color:#BAA45D !important
}

.p-global-nav .sub-menu:has(a:hover){
  color:#BAA45D !important
}

.p-global-nav .sub-menu li a:after{
  display:none
}

.p-global-nav > li > .sub-menu li .sub-menu {
  padding-left: 1em;
}

.contact_btn {
  max-width: 240px;
  width: 100%;
  position: relative;
  display: block;
  line-height: 1;
  margin-right: 30px;
  font-size: 16px;
}
.contact_btn a {
  background: #BAA45D;
  display: block;
  position: relative;
  padding: 19px 0;
  color: #fff;
  border-radius: 100px;
  text-align: center;
  top: 24px;
  letter-spacing: 1px;
  font-weight: 500;
  transition: all 0.3s ease 0s;
}
.contact_btn a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 20px;
  height: 1px;
  background: #FFF;
  transition: .3s;
}
.contact_btn a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-left: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  transform: rotate(-135deg);
  transition: .3s;
}
.contact_btn a:hover:before {
  width: 30px;
}
.contact_btn a:hover {
  background: rgb(229,214,166);
  background: -moz-linear-gradient(90deg, rgba(229,214,166,1) 0%, rgba(204,138,132,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(229,214,166,1) 0%, rgba(204,138,132,1) 100%);
  background: linear-gradient(90deg, rgba(229,214,166,1) 0%, rgba(204,138,132,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e5d6a6",endColorstr="#cc8a84",GradientType=1);
	color:#fff;
}

@media screen and (max-width: 768px){
  #js-header{
    display:none
  }
}


/* sp_menu */

@media screen and (min-width: 769px){
  .sp-nav-block {
    display: none;
  }	
}

.sp-nav-block:before {
  background: rgb(248 248 248 / 70%);
  position: absolute;
  content: "";
  width: 100%;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  height: 100%;
  z-index: 0;
  border-radius: 30px 30px 0 0;
}
.sp-nav-block {
  position: fixed;
  bottom: 0;
  height: 72px;
  width: 100%;
  z-index: 9999;
  border-radius: 30px 30px 0 0;
  box-shadow: 0px -2px 7px rgb(0 0 0 / 16%);
}
#g-nav {
  position: fixed;
  z-index: 999;
  bottom: -120%;
  left: 0;
  width: 100%;
  height: 93%;
  transition: all 0.6s;
  border-radius: 30px 30px 0 0;
  box-shadow: 0px -2px 7px rgb(0 0 0 / 16%);
}
#g-nav:before {
  background: rgb(248 248 248 / 80%);
  position: absolute;
  content: "";
  width: 100%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  height: 100%;
  z-index: 0;
  border-radius: 30px 30px 0 0;
}
#g-nav.panelactive{
  bottom: 0;
}
#g-nav.panelactive #g-nav-list{
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: calc(93% - 56px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}


/*リストのレイアウト設定*/

.in_gsp_ul {
  position: relative;
  width: 90%;
  display: table;
  padding: 8px 0;
  margin: 0 auto;
  line-height: 56px;
  height: 56px;
}
.openbtn {
  position: fixed;
  z-index: 9999;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background-color: #baa45d;
  width: 60%;
  right: 0;
  margin: 0 auto;
}
.openbtn span:nth-of-type(1) {
	top:19px;	
}
.openbtn span:nth-of-type(2) {
	top:23px;
	display:none;
}
.openbtn span:nth-of-type(3) {
	top:28px;
}
.openbtn.active span:nth-of-type(1) {
  left: 0;
  transform: translateY(6px) rotate(-20deg);
  width: 60%;
  right: 0;
  margin: 0 auto;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  left: 0;
  transform: translateY(-6px) rotate(20deg);
  width: 60%;
  right: 0;
  margin: 0 auto;
  top: 31px;
}
.openbtn.active {
  position: absolute;
  top: 10px;
  right: 10px;
}
.gsp_ul {
  position: relative;
  width: 90%;
  display: table;
  padding: 8px 0;
  margin: 0 auto;
  line-height: 56px;
  height: 56px;
}
.opmn {
  font-size: 14px;
  color: #baa45d;
  font-weight: 400;
}
.gsp_ul_right {
  width: 100%;
  position: relative;
  display: table;
}
.gsp_ul_right li {
  width: 40%;
  float: left;
  margin: 0 5%;
  text-align:center;
}
.contact_li_img {
  width: 50% !important;
  position: relative;
  margin: 0 !important;
}
.contact_li_img img {
  vertical-align: middle;
}
.gsp_ul li img {
  height: auto;
  vertical-align: middle;
  min-width: 88px;
  width: 88px;
}
.gsp_ul li a {
  display: block;
  position: relative;
}
.glsp_li_img img {
  vertical-align: middle;
}
.glsp_li_img {
  max-width: 82px;
  width: 30%;
  float: left;
  position: relative;
}
.glsp_left {
  width: 40%;
  float: right;
  position: relative;
  max-width: 170px;
  margin-right: 12px;
}
#g-nav-list_inner {
  width: 240px;
  margin: 9% auto 0;
}
.g-nav_list {
  font-size: 14px;
  text-align: center;
  margin: 0 auto 7%;
}
.g-nav_tag {
  color: #BAA45D;
  text-align: center;
  font-size: 14px;
  margin: 0 auto 13px;
  font-weight: bold;
  padding-top: 6px;
}


.g-nav_list a {
  font-weight: bold;
  color: #BAA45D;
  background: #fff;
  padding: 11px 0;
  position: relative;
  display: block;
  border-radius: 100px;
}

.g-nav_list a#footer-sub-menu-btn::after {
  content: '';
  display: inline-block;
  width: 11px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='9' viewBox='0 0 11 9'%3E%3Cpath id='多角形_19' data-name='多角形 19' d='M5.5,0,11,9H0Z' transform='translate(11 9) rotate(180)' fill='%23baa45d'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%);
  transition: 0.3s;
}

.g-nav_list a#footer-sub-menu-btn.sub-menu-btn-open::after {
  transform: translateY(-50%)rotate(180deg);
}

.g-nav_list a#footer-sub-menu-btn:hover {
  color: #BAA45D;
}

.g-nav_list .sub-menu {
  display: none;
  transition: 0.3s;
  padding: 11px;
}

.g-nav_list .sub-menu li a {
  text-align: center;
  font-weight: bold;
  background: unset;
  color: rgba(0, 0, 0, 0.5608)!important;/* #707070乗算 */
}


@media screen and (max-width: 500px){
.glsp_left {
  max-width: 180px;
  width: 80%;
}
.glsp_li_img {
  width: 82px;
}
#g-nav-list_inner {
  margin: 10% auto 13%;
}
}


/********* fadeUp *************************************/
.delay-time{
	opacity: 0;
}
.delay-time02{
  animation-delay: 0.2s;
}
.delay-time04{
  animation-delay: 0.4s;
}
.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:2s;
  animation-fill-mode:forwards;
  opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
    opacity: 0;
}


/* footer */

footer {
  background: rgb(245,231,203);
  background: -moz-linear-gradient(0deg, rgba(245,231,203,1) 0%, rgba(186,164,93,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(245,231,203,1) 0%, rgba(186,164,93,1) 100%);
  background: linear-gradient(0deg, rgba(245,231,203,1) 0%, rgba(186,164,93,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f5e7cb",endColorstr="#baa45d",GradientType=1);
  position: relative;
  padding: 80px 0 50px;
}
.footer_inner {
  display: table;
  max-width: 1100px;
  margin: 0 auto 80px;
  position: relative;
  width: 100%;
}
.footer_left {
  width: 35%;
  float: left;
  position: relative;
}
.footer_left .logo {
  height: auto;
  width: 158px;
}
.footer_right {
  width: 65%;
  float: left;
  position: relative;
}
.copy_txt span:before {
  content: "";
  position: absolute;
  border-left: solid 1.5px #000;
  left: -10px;
  top: 20%;
  height: 75%;
}
.copy_txt span {
  position: relative;
  margin-left: 20px;
  font-weight: 500;
  font-size: 10px;
}
.copy_txt small {
  font-weight: 500;
  font-size:10px
}
.copy_txt {
  text-align: center;
  font-size: 16px;
}
.p-footer-nav ul {
  display: table;
  position: relative;
  width: 97%;
}
.p-footer-nav ul .sub-menu li a {
  font-weight: 300;
}
.p-footer-nav ul .sub-menu li {
  margin-bottom: 10px;
  font-size: 14px;
}
.p-footer-nav ul li {
  margin-bottom: 38px;
  position: relative;
}
.p-footer-nav {
  width: 38%;
  float: left;
  position: relative;
}
.p-footer-nav.left_ds {
  width: 24%;
}
.p-footer-nav a {
  color: #fff;
  font-size: 16px;
}
.p-footer-nav ul li span {
  font-weight: 500;
  color: #fff;
  font-size: 16px;
}
.p-footer-nav ul li a:hover {
  opacity: 0.7;
  color:#fff;
  border-bottom: solid 1px #fff;
}
.p-footer-nav ul li a {
  font-weight: 500;
  transition: all 0.3s ease 0s;
}
.sub-menu li {
  margin: 17px 0 0;
  padding-left: 11px;
  position: relative;
}
.sub-menu li:before {
  position: absolute;
  content: "";
  width: 5px;
  border-top: solid 1px #fff;
  top: 7px;
  left: 0;
}
.link_le {
  color: rgb(255 255 255 / 50%);
}
.p-pagetop {
  line-height: 65px;
  position: fixed;
  bottom:30px;
  right: 30px;
  z-index: 9999;
  display: block !important;
}
.p-pagetop a:hover{
  opacity:0.7
}
.p-pagetop a {
  display: block;
  position: relative;
  width: 55px;
  height: 55px;
  text-align: center;
  transition: all 0.3s ease 0s;
}
.p-pagetop img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.request_Info_btn {
  position: fixed;
  max-width: 300px;
  width: calc((100% - 1100px) / 2);
  bottom:100px;
  right: 0px;
  z-index: 9999;
  display: block !important;
}

.request_Info_btn a {
  position: relative;
  display: block;
}

.request_Info_btn a::before {
  position: absolute;
  width: 10%;
  height: 50px;
  background-image: url(../images/request_Info_btn_arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  content: "";
  right: 11%;
  bottom: 12%;
  display: block;
  transition: all 0.2s ease-out;
}

.request_Info_btn a:hover::before {
  right: 8%;
}

.request_Info_btn a img {
  width: 100%;
  display: block;
}

.request_Info_btn_sp {
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 9999;
  display: none !important;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}

.request_Info_btn a img {
  width: 100%;
}

/* #main_visual */

.main_visual {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: block;
  height: 100vh;
}
#main_section {
  position: relative;
}
.main_catch img {
  width: 85%;
  height: auto;
  max-width: 200px;
}
.main_catch p {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 40px;
}
.main_catch {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 42%;
  width: 50%;
  text-align: center;
  max-width: 300px;
}
.scroll_line {
  width: 22px;
  margin: 0 auto;
  left: 0;
  right: 0;
  position: absolute;
  color: #fff;
  font-weight: 600;
  bottom: 190px;
  writing-mode: vertical-lr;
}
.scroll_line:before {
  position: absolute;
  border-left: solid 1.5px;
  height: 60px;
  content: "";
  left: 31%;
  right: 0;
  animation: 0 auto;
  bottom: -87px;
}
.inner h2, .inner h3  {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 64px;
}


/* about_section*/

#about_section {
  position: relative;
  margin: 144px auto 160px;
}
.inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
#about_section ul {
  width: 100%;
  position: relative;
  display: table;
}
.ab_li_txt {
  width: 50%;
  float: left;
  position: relative;
}
.ab_li_img {
  width: 50%;
  float: right;
  position: relative;
}
#about_section p {
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  margin-bottom: 80px;
	max-width:450px;
}
.btn_01:hover {
  opacity: 0.7;
  color: #fff;
}
.btn_01 {
  background: rgb(219,200,140);
  background: -moz-linear-gradient(90deg, rgba(219,200,140,1) 0%, rgba(132,199,204,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(219,200,140,1) 0%, rgba(132,199,204,1) 100%);
  background: linear-gradient(90deg, rgba(219,200,140,1) 0%, rgba(132,199,204,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#dbc88c",endColorstr="#84c7cc",GradientType=1);
  max-width: 350px;
  display: block;
  text-align: center;
  padding: 23px 0;
  border-radius: 100px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease 0s;
}
.btn_01:hover:before {
  width: 30px;
}
.btn_01:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-left: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  transform: rotate(-135deg);
  transition: .3s;
}
.btn_01:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 20px;
  height: 1px;
  background: #FFF;
  transition: .3s;
}


/*animation部分*/

.ab_en_img {
  background: url(../images/serv_img_pc.png)center no-repeat;
  position: relative;
  background-size: cover;
  width: 514px;
  height: 470px;
  margin: 0 auto;
}
.ab_ring_img {
  animation: rotate-anime 7s linear infinite;
  width: 406px;
  height: auto;
  margin: 0 auto;
  position: absolute;
  top: 12%;
  left: 0;
  right: 0;
  z-index: -1;
}

@keyframes rotate-anime {
  0%  {
    transform: rotate(0);
  }
  100%  {
    transform: rotate(-360deg);
  }
}


/*service_section*/

#service_section {
  position: relative;
  background: rgb(193,189,178);
  background: -moz-linear-gradient(0deg, rgba(193,189,178,1) 0%, rgba(244,241,237,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(193,189,178,1) 0%, rgba(244,241,237,1) 100%);
  background: linear-gradient(0deg, rgba(193,189,178,1) 0%, rgba(244,241,237,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c1bdb2",endColorstr="#f4f1ed",GradientType=1);
  padding: 144px 0 160px;
}
.ser_flex {
  position: relative;
  display: flex;
}
.a-ser:before {
  background: url(../images/t_img1.jpg)center no-repeat;
  background-size: cover;
  content: "";
  width: 100%;
  position: absolute;
  height: 100%;
  transition-duration: 0.4s;
  top: 0;
  left: 0;
}
.b-ser:before {
  background: url(../images/t_img2.jpg)center no-repeat;
  background-size: cover;
  content: "";
  width: 100%;
  position: absolute;
  height: 100%;
  transition-duration: 0.4s;
  top: 0;
  right: 0;
  margin: 0 auto;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}
.c-ser:before {
  background: url(../images/t_img3.jpg)center no-repeat;
  background-size: cover;
  content: "";
  width: 100%;
  position: absolute;
  height: 100%;
  transition-duration: 0.4s;
  top: 0;
  right: 0;
}
.b-ser:hover:before {
  width: 200% !important;
  transition: all .4s ease-out;
  z-index:9;
}
.ser_contents a {
  display: block;
  position: relative;
  height: 100%;
  width: 100%;
  color: #fff;
  z-index:10;
}
.ser_contents {
  float: left;
  position: relative;
  overflow: hidden;
  width: 50%;
  height: 720px;
}


.a-ser:hover:before {
  width: 200% !important;
  transition: all .4s ease-out;
  z-index:9
}
.c-ser:hover:before {
  width: 200% !important;
  transition: all .4s ease-out;
  z-index:9

}
.ser_contents:hover {
  overflow: unset;
}
.ser_txt_block {
  padding: 80px 10% 0;
  position: relative;
  display: block;
  height: 570px;
}
.ser_txt_block:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 10%;
  margin: auto;
  width: 8px;
  height: 8px;
  border-left: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  transform: rotate(-135deg);
  transition: .3s;
}

.c-ser .ser_txt_block:before, .c-ser .ser_txt_block:after{
  display:none
}
.ser_txt_block:before {
  content: "";
  position: absolute;
  bottom: 4px;
  right: 10%;
  margin: auto;
  width: 29px;
  height: 2px;
  background: #FFF;
  transition: .3s;
}
.ser_txt_block p {
  font-size: 14px;
  line-height: 1.7;
}
.ser_txt_block h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 25px;
}
.ta_sym_ttl {
  font-size: 20px;
  text-align: center;
  margin: 0 auto 30px;
  font-weight: bold;
}
.ser_contents a:hover {
  color: #fff !important;
}
.ser_contents:hover .ser_txt_block {
  z-index: 9;
  position: relative;
}
.a-ser:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  border-right: solid 1px #c5c5c5;
  top: 0;
  right: 0;
  z-index: 10;
}
.b-ser:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  border-right: solid 1px #c5c5c5;
  top: 0;
  right: 0;
  z-index: 10;
}


/*case_section*/

.thum_img {
  display: block;
  width: 100%;
  height: 281px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  transition: all 0.3s ease 0s;
}
.thum_img .timage {
  height: 100% !important;
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}
#case_section ,
#news_section ,
#journal_section {
  position: relative;
  margin: 144px auto 160px;
}
#case_section:before ,
#news_section:before ,
#journal_section:before {
  position: absolute;
  content: "";
  background: rgb(219,200,140);
  background: -moz-linear-gradient(90deg, rgba(219,200,140,1) 0%, rgba(132,199,204,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(219,200,140,1) 0%, rgba(132,199,204,1) 100%);
  background: linear-gradient(90deg, rgba(219,200,140,1) 0%, rgba(132,199,204,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#dbc88c",endColorstr="#84c7cc",GradientType=1);
  width: 60%;
  right: 0;
  top: 0;
  height: 400px;
  border-radius: 20px 0 0 0;
}
.category-name {
  display: inline-block;
  background: #BAA45D;
  color: #fff;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 80%;
}
.blog_ttl {
  font-size: 20px;
  color: #000;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 25px 0 0;
  line-height: 1.7;
  max-height: 68px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 表示する行数を指定 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.swiper-slide {
  height: auto !important;
}
.case_box {
  height: 100%;
  background: #F8F8F8;
  border-radius: 20px;
  box-shadow: 10px 10px 20px rgb(0 0 0 / 16%);
  padding-bottom:1px;
  transition: all 0.3s ease 0s;
}
.case_box:hover .thum_img,
.case_box:hover .case_box_in{
  opacity: 0.7;
}
.case_box_in {
  margin: 45px 6%;
  position: relative;
  min-height: 122px;
  transition: all 0.3s ease 0s;
}
.case_box_in .post-categories-tags {
  margin: 0 -8px -8px 0;
}
.case_box_in .post-categories{
  display: inline-block;
  margin-bottom: 0;
}
.swiper {
  margin-top: 144px;
}
span.swiper-pagination-bullet {
  font-size: 24px;
  font-weight: 600;
  margin: 0 30px 0 0;
  padding: 10px;
  cursor: pointer;
  color: rgb(255 255 255 / 52%);
  transition: all 0.3s ease 0s;
}
span.swiper-pagination-bullet:hover {
  color: #fff;
}
.swiper-pagination-bullet-active {
  color: #fff !important;
}
.swipe_block {
  position: absolute;
  top: 100px;
  width: 60%;
  display: table;
  left: 40%;
}
.swipe_block_left {
  width: 60%;
  float: left;
  position: relative;
}
.swipe_block_right {
  width: 25%;
  float: right;
  position: relative;
}
.swipe_block_in {
  display: table;
  position: relative;
  width: 100%;
}
.swiper-button-prev:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 20px;
  height: 1px;
  background: #FFF;
  transition: .3s;
}
.swiper-button-prev:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 31px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-left: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  transform: rotate(45deg);
  transition: .3s;
}
.swiper-button-next:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 20px;
  height: 1px;
  background: #FFF;
  transition: .3s;
}
.swiper-button-next:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-left: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  transform: rotate(-135deg);
  transition: .3s;
}
.swiper-button-prev {
  position: relative;
  border: solid 1px #fff;
  height: 50px;
  width: 65px;
  float: left;
  border-radius: 100px;
  transition: all 0.3s ease 0s;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
  cursor: pointer;
  opacity: 0.7;
}
.swiper-button-next {
  position: relative;
  border: solid 1px #fff;
  height: 50px;
  width: 65px;
  float: right;
  border-radius: 100px;
  transition: all 0.3s ease 0s;
}
.center_btn{
  margin: 0 auto;
}
.thum_numtxt {
  position: absolute;
  z-index: 9;
  top: 3%;
  font-size: 48px;
  font-weight: bold;
  left: 5%;
  color: #fff;
}


/* member_section */

#member_section {
  position: relative;
  background: #F5F5F4;
  padding: 144px 0 140px;
}
.member_img {
  display: block;
  height: 630px;
  position: absolute;
  z-index: 0;
  overflow: hidden;
  border-radius: 0px 20px 20px 0;
  width: 53%;
  z-index:1;
}
.image {
  height: 100% !important;
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.right_pos {
  border-radius: 20px 0 0 20px;
  width: 53%;
  right: 0;
}
.mem_outbox {
  position: relative;
  margin-bottom: 230px;
  min-height: 630px;
}
.mem_txtbox {
  position: relative;
  display: table;
  width: 50%;
  background: #fff;
  top: 175px;
  margin: 0 0 0 auto;
  min-height: 604px;
}
.left_pos {
  margin: 0 auto 0 0;
}
.mem_txtbox_in {
  display: table-cell;
  padding: 64px 64px 64px 6vw;
  vertical-align: middle;
}
.left_pos .mem_txtbox_in {
  padding: 64px 6vw 64px 64px;
}
.txt01 {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 0;
}
.name_txt {
  font-size: 20px;
  color: #000;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.mem_txtbox_in .sns_link {
  margin: 48px 0 0;
}
.mem_txtbox_in .sns_link li {
  display: inline-block;
  padding: 0 32px 0 0;
}
.mem_txtbox_in .sns_link a {
  transition: .3s;
}

@media (hover: hover) and (pointer: fine) {
  .mem_txtbox_in .sns_link a:hover  {
    opacity: 0.7
  }
}

.mem_txtbox_in .sns_link img {
  width: 24px;
  height: auto;
}


/* news_section */
#news_section .post-categories {
  width: 100%;
}

#news_section .post-categories .seminar_status {
  letter-spacing: 0;
  background: #baa45d;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  margin: 0 10px 8px 0;
  border-radius: 100px;
  display: inline-block;
  border: solid 1px #baa45d;
}

#news_section .post-categories .seminar_status.plan {
  background: #84C7CC;
  border-color: #84C7CC;
}

#news_section .post-categories .seminar_status.progress {
  background: #D19789;
  border-color: #D19789;
}

#news_section .post-categories .category {
  letter-spacing: 0;
  background: transparent;
  color: #baa45d;
  border: solid 1px #baa45d;
  font-size: 12px;
  padding: 6px 12px;
  margin: 0 10px 8px 0;
  border-radius: 100px;
  display: inline-block;
}

#news_section .post-tags span,#news_section .post-tags a {
  letter-spacing: 0;
  background: transparent;
  color: #baa45d;
  border: solid 1px #baa45d;
  font-size: 12px;
  padding: 6px 12px;
  margin: 0 10px 8px 0;
  border-radius: 100px;
  display: inline-block;
}

#news_section .thum_img {
  height: 246px;
}

.blog_date span:before {
  position: absolute;
  content: "";
  border-left: solid 1.5px #8d8d8d;
  height: 70%;
  left: -10px;
}
.newsblog_ttl {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  line-height: 1.5;
}
.news_box a:hover {
  opacity: 0.6;
}
.news_box a {
  transition: all 0.3s ease 0s;
}
.news_box:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 36px;
  height: 1px;
  background: #000;
  transition: .3s;
}
.news_box:hover:before {
  width: 46px;
}
.news_box:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(-135deg);
  transition: .3s;
}
.blog_date span {
  position: relative;
  margin-left: 20px;
}
.blog_date {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  margin-bottom: 11px;
}
.news_li_list .btn_01 {
  margin-top: 80px;
}

/* journal_section */
#journal_section .thum_img {
  height: 246px;
}

#journal_section .post-categories .category {
  letter-spacing: 0;
  background: #baa45d;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  margin: 0 10px 8px 0;
  border-radius: 100px;
  display: inline-block;
}

/*recruit_section */

.rec_img .image {
  background-position: center !important;
}
.rec_img {
  display: block;
  height: 400px;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 144px;
}
#recruit_section {
  position: relative;
  padding-bottom: 160px;
}
#recruit_section  .btn_01 {
  margin-top: 80px;
}
#recruit_section .inner h3 {
  margin-bottom: 30px;
}
#recruit_section p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
}
.pre_li a {
  position: relative;
  border: solid 1px #BAA45D;
  height: 50px;
  width: 65px;
  float: left;
  border-radius: 100px;
  display: block;
  transition: all 0.3s ease 0s;
}
.next_li {
  position: relative;
  float: left;
  margin: 0 0 0 30px;
}
.pre_li {
  float: left;
  position: relative;
}
.page-navi-ul {
  position: absolute;
  display: table;
  width: auto;
  right: 0;
  top: 4px;
}
.post_pager_block {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.pre_li a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 22px;
  margin: auto;
  width: 21px;
  height: 1px;
  background: #BAA45D;
  transition: .3s;
}
.pre_li a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 31px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-left: 1px solid #BAA45D;
  border-bottom: 1px solid #BAA45D;
  transform: rotate(45deg);
  transition: .3s;
}
.next_li a {
  position: relative;
  border: solid 1px #BAA45D;
  height: 50px;
  width: 65px;
  float: left;
  display: block;
  border-radius: 100px;
  transition: all 0.3s ease 0s;
}
.next_li a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 22px;
  margin: auto;
  width: 21px;
  height: 1px;
  background: #BAA45D;
  transition: .3s;
}
.next_li a:after {
	content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-left: 1px solid #BAA45D;
  border-bottom: 1px solid #BAA45D;
  transform: rotate(-135deg);
  transition: .3s;
}


/************************************************************************
固定ページ（下層ページ）
**********************************************************************************/
#contents_header {
  background-size: cover;
  height: 940px;
  position: relative;
}
.p-page-header__inner {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  max-width: 1100px;
  text-align: left;
  position: absolute;
  z-index: 2;
  top: 273px;
  left: 0;
  right: 0;
}
.page_head_tittle {
  font-size: 60px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0px 1px 6px #777777;
  margin-bottom: 44px;
  line-height: 1.4;
}
.company-head .page_head_tittle, .recruit-head .page_head_tittle, .cases-head .page_head_tittle, .newgraduate-head .page_head_tittle, .interview-head .page_head_tittle, .cases-head .page_head_tittle{
  text-shadow: 0px 1px 6px #474747;
}
.page_head_desc {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 25px;
  text-shadow: 0px 3px 6px #7d7d7d;
}


/*company page */

.company-head {
  background: url(/wp-content/uploads/company_header.jpg)center no-repeat;
  background-position: 92% 100% !important;
}
.mi_inner {
  position: relative;
  overflow: hidden;
}
.mi_out {
  width: 641px;
  height: 693px;
  margin: 144px auto 90px;
  position: relative;
}
.mi_out:after {
  content: "";
  background: url(/wp-content/uploads/mi_imgout.svg)center no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.4;
  z-index: -1;
  top: 0;
  align-items: center;
  transform: rotate(-45deg);
    right: -6%;
}
.mi_out:before {
  content: "";
  background: url(/wp-content/uploads/mi_imgin2.svg)center no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  right: -1%;
}
.mi_in {
  animation-name: blurAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  position: relative;
  top: 35%;
  z-index: 2;
  margin: 0 auto;
}
.k_ttl01 {
  text-align: center;
  font-weight: bold;
  color: #D19789;
  font-size: 32px;
  margin-bottom: 15px;
}
.sub_ttl01 {
  font-size: 16px;
  text-align: center;
  color: #000000;
}
.mi_in h3 {
  font-size: 32px;
  text-align: center;
  font-weight: bold;
  color: #000;
  margin-top: 40px;
  letter-spacing: 2px;
}


@keyframes blurAnime{
  from {
    filter: blur(20px);
    transform: scale(1.01);
  }
  to {
    filter: blur(0);
    transform: scale(1);
  }
}

.heikei_g {
  position: relative;
  background: #F5F5F4;
  padding: 90px 0 144px;
}
.heikei_b {
  position: relative;
  background: #DBD8D0;
  padding: 90px 0 144px;
}
.k_ttl02 {
  font-size: 32px;
  text-align: center;
  font-weight: bold;
  color: #000;
  margin-top: 40px;
  letter-spacing: 2px;
  line-height: 1.5;
}
.k_ttl02 span {
  font-size: 32px;
  text-align: center;
  font-weight: bold;
  color: #000;
  margin-top: 40px;
  letter-spacing: 2px;
  line-height: 1.5;
  display: inline;
}
.line_space {
  border-top: solid 5px #DBC88C;
  width: 48px;
  margin: 90px auto;
  position: relative;
}
.k_inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.se_txt {
  font-size: 32px;
  font-weight: bold;
  color: #BAA45D;
  text-align: center;
  margin: 70px auto 50px;
}
.seven_ul01 li {
  width: 21%;
  float: left;
  margin: 0 2%;
  position: relative;
}
.seven_ul01 {
  width: 100%;
  max-width: 1045px;
  display: table;
  position: relative;
  margin: 0 auto 40px;
}
.seven_ul02 li {
  width: 29%;
  float: left;
  margin: 0 2%;
  position: relative;
}
.seven_ul02 {
  width: 100%;
  max-width: 750px;
  display: table;
  position: relative;
  margin: 0 auto;
}

.six_ul01 li {
  width: 29%;
  float: left;
  margin: 0 2%;
  position: relative;
}
.six_ul01 {
  width: 100%;
  max-width: 750px;
  display: table;
  position: relative;
  margin: 0 auto 40px;
}
.six_ul02 li {
  width: 29%;
  float: left;
  margin: 0 2%;
  position: relative;
}
.six_ul02 {
  width: 100%;
  max-width: 750px;
  display: table;
  position: relative;
  margin: 0 auto;
}

.six_ul01 li img,
.six_ul02 li img {
  border-radius: 15%;
}

.sp_ta{
  display:none;
}
.para_scroll {
  height: 500px;
  background: url(/wp-content/uploads/company_header.jpg)center no-repeat;
  width: 100%;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.para_scroll:before {
  content: '';
  background: inherit;
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
}
.k_name_box_out {
  position: relative;
margin-bottom:144px;
}
.pad_space {
  margin: 140px auto;
}
.pad_space02 {
  margin: 140px auto 0;
}
.k_img03 {
  width: 90%;
  position: relative;
  left: 0;
}
.k_img03 img {
  border-radius: 15px;
}
.k_ttl03 {
  font-size: 40px;
  font-weight: bold;
  color: #000;
  margin-bottom: 35px;
  letter-spacing: 2px;
  line-height: 1.5;
}
.vok {
  font-size: 20px !important;
  font-weight: bold;
  margin-bottom: 45px !important;
}
.k_name_box {
  position: absolute;
  bottom: -60px;
  background: rgb(132,199,204);
  background: -moz-linear-gradient(90deg, rgba(132,199,204,1) 0%, rgba(219,200,140,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(132,199,204,1) 0%, rgba(219,200,140,1) 100%);
  background: linear-gradient(90deg, rgba(132,199,204,1) 0%, rgba(219,200,140,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#84c7cc",endColorstr="#dbc88c",GradientType=1);
  right: 0;
  padding: 50px 0px 50px 40px;
  width: 310px;
}
.k_name01 {
  font-size: 19px;
  font-weight: bold;
  color: #fff;
}
.k_name01 {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}
.k_name02 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}
.k_name_ttl {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
}
.k_txt01 {
  line-height: 1.8;
  margin-bottom: 25px;
	font-size:16px;
}
.company_map_inner {
  position: relative;
  background: #F5F5F4;
}
.company_map_inner ul {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
}
.company_map_inner li {
  width: 50%;
  position: relative;
  float: left;
}
.company .heikei_b .btn_01 {
  margin-top: 60px;
}
.ggmap {
  position: relative;
  padding-bottom: 0;
  padding-top: 0;
  height: 100%;
  overflow: hidden;
  width: 100%;
}
.ggmap iframe, .ggmap object, .ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ggmap iframe {
  filter: grayscale(100%);
  transition: all 0.7s ease;	
}
.info_block {
  position: relative;
  min-height: 1020px;
}
.company_map_inner_in {
  width: 90%;
  max-width: 1140px;
  margin: 144px auto;
  position: absolute;
  left: 0;
  right: 0;
}
.company_map_inner_in .k_ttl03 {
  width: 50%;
}
.company_map_inner_in table.info_table {
  width: 50%;
  margin-top: 70px;
}
table.info_table td {
  text-align: left;
  vertical-align: baseline;
  font-size: 16px;
  padding: 2px 0 2px 55px;
  border-left: solid 2px #707070;
  border-bottom: solid 40px #f5f5f4;
  line-height: 1.4;
}
table.info_table th {
  color: #707070;
  font-size: 16px;
  text-align: left;
  vertical-align: baseline;
  border-bottom: solid 40px #f5f5f4;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
  width:100%;
  margin:0 auto;
}
.slick-track {
  margin-bottom: 30px;
}
.slider img {
  width:60vw;
  height:auto;
}
.slider .slick-slide {
	transform: scale(0.8);
	transition: all .5s;
	opacity: 1;
  margin: 0 -40px;
}
.slider .slick-slide:before{
	content:"";
	position:absolute;
	width:100%;
	height:100%;
	top:0;
  background: rgb(0 0 0 / 60%);
}
.slider .slick-slide.slick-center{
	transform: scale(1);
	opacity: 1;
}
.slider .slick-slide.slick-center:before{
  display:none;
}
.slick-dots button {
  display:none;
}
.slick-dots .slick-active button{
  display:none;
}
span.sl_txt {
  position: absolute;
  font-size: 16px;
  bottom: -30px;
}
button.slick-next.slick-arrow:before {
  content: "";
  background: url(/wp-content/uploads/s_arrow_right.png)center no-repeat;
  background-size: contain;
  width: 100%!important;
  height: 100%!important;
  position: absolute;
  top: 0;
  left: 0;
}
button.slick-next.slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 9;
  right: 14%;
  font-size: 0;
  background: unset;
  border: unset;
  width: 27px;
  height: 21px;
}
button.slick-prev.slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 9;
  left: 14%;
  font-size: 0;
  background: unset;
  border: unset;
  width: 27px;
  height: 21px;
}
button.slick-prev.slick-arrow:before {
  content: "";
  background: url(/wp-content/uploads/s_arrow_left.png)center no-repeat;
  background-size: contain;
  width: 100%!important;
  height: 100%!important;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 1500px){
  .slider img {
      width: 70vw;
  }
  button.slick-prev.slick-arrow {
    left: 9%;
  }
  button.slick-next.slick-arrow {
    right: 9%;
  }
}

@media screen and (max-width: 1300px){
  .slider .slick-slide {
      margin: 0 -20px;
  }
  button.slick-prev.slick-arrow {
    left: 7%;
  }
  button.slick-next.slick-arrow {
    right: 7%;
  }
}

@media screen and (max-width: 768px){
  .slider img {
    width: 76vw;
  }
  .slider .slick-slide {
    margin: 0 -15px;
  }
  button.slick-prev.slick-arrow {
    left: 3%;
  }
  button.slick-next.slick-arrow {
    right: 3%;
  }

  .company .heikei_b .swiper03 {
    height: 51vw;
  }

  .company .heikei_b .culture__swiper-navigation {
    display: none;
  }

  .company .heikei_b .btn_01 {
    margin-top: 20px;
  }
}

@media screen and (max-width: 500px){
  .slider .slick-slide {
    margin: 0 -8px;}
  button.slick-prev.slick-arrow {
    left: 1.5%;
    top: 43%;
    width: 20px;
    height: 15px;
  }
  button.slick-next.slick-arrow {
    right: 1.5%;
    top: 43%;
    width: 20px;
    height: 15px;
  }
}



/* consulting page */

.consulting-head {
  background: url(/wp-content/uploads/service_header.png)center no-repeat;
}
.consulting-head:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 76%;
  background: rgb(186,164,93);
  background: -moz-linear-gradient(0deg, rgba(186,164,93,1) 0%, rgba(245,231,203,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(186,164,93,1) 0%, rgba(245,231,203,1) 100%);
  background: linear-gradient(0deg, rgba(186,164,93,1) 0%, rgba(245,231,203,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#baa45d",endColorstr="#f5e7cb",GradientType=1);
  top: 0;
  z-index: -1;
}
.consulting-head .page_head_desc {
  margin-bottom: 25px;
}
.space {
  height: 144px;
}
.k_img02 {
  max-width: 623px;
  margin: 0 auto;
}
.cou_ul01 li {
  background: #F8F8F8;
  border-radius: 10px;
  box-shadow: 5px 5px 15px #dbdbdb;
  padding: 40px 3% 90px;
  width: 42%;
  margin: 0 1% 2%;
  float: left;
}
.cou_ul01 li:first-child {
  margin: 0 50% 2% 1%;
}
.cou_ul01 {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
}
.cou_ttl01 {
  font-size: 24px;
  font-weight: bold;
  color: #BAA45D;
  margin-bottom: 25px;
  letter-spacing: 2px;
  position: relative;
}
.cou_ttl02 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 20px;
}
.cou_txt {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}
.cou_ttl01 span {
  background: #BAA45D;
  color: #fff;
  padding: 0px 9px 0 12px;
  font-size: 27px;
  border-radius: 100px;
  font-weight: bold;
  margin-right: 13px;
}
.k_swipe_box {
  position: relative;
  background: rgb(237,235,231);
  background: -moz-linear-gradient(0deg, rgba(237,235,231,1) 0%, rgba(193,189,178,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(237,235,231,1) 0%, rgba(193,189,178,1) 100%);
  background: linear-gradient(0deg, rgba(237,235,231,1) 0%, rgba(193,189,178,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#edebe7",endColorstr="#c1bdb2",GradientType=1);
  padding: 144px 0;
  margin-top: 144px;
}
.cou_swip_ul {
  width: 100%;
  position: relative;
  display: table;
}
.cou_swip_liing img {
  box-shadow: 2px 2px 15px #696969;
  border-radius: 15px;
  width: 105%;
}
.cou_swip_liing {
  width: 58%;
  float: right;
  position: relative;
  right: 3%;
  text-align: right;
}
.k_ttl04 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}
.k_swipe_box .swipe_block {
  top: 130px;
}
.cou_swip_litxt {
  width: 42%;
  float: left;
  position: relative;
}
.k_swipe_box .k_ttl03 {
  color: #fff;
}
.swl_b_num {
  font-size: 220%;
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
}
.cou_txt_st {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}
.swl_b_in {
  background: #fff;
  padding: 40px 40px 0;
  position: relative;
  min-height: 230px;
}


/* agency page*/

.agency-head {
  background: url(/wp-content/uploads/hr_header.png)center no-repeat;
}
.agency-head .page_head_desc {
  margin-bottom: 25px;
}
.agency-head:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 76%;
  background: rgb(204,136,119);
  background: -moz-linear-gradient(90deg, rgba(204,136,119,1) 0%, rgba(230,222,198,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(204,136,119,1) 0%, rgba(230,222,198,1) 100%);
  background: linear-gradient(90deg, rgba(204,136,119,1) 0%, rgba(230,222,198,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#cc8877",endColorstr="#e6dec6",GradientType=1);
  top: 0;
  z-index: -1;
}
.age_ul01 li {
  background: #F8F8F8;
  width: 47%;
  margin: 0 3% 3% 0;
  border-radius: 15px;
  position: relative;
  float: left;
  padding-bottom:44px;
}
.ali_img {
  width: 50%;
  margin: 10px auto;
}
.ali_ttl {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.ali_txt {
  font-size: 16px;
  line-height: 1.7;
  width: 80%;
  margin: 0 auto;
}
.age_ul01 {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 80px auto 0;
}
.age_ul02 {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 80px auto 0;
}
.age_ul02 li {
  width: 47%;
  margin: 0 3% 0 0;
  float: left;
  box-shadow: 2px 2px 15px #dfdfdf;
  border-radius: 15px;
  position: relative;
}
.age_li02_gl {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: #DBC88C;
  border-radius: 15px 15px 0 0;
  padding: 15px 0px 15px 35px;
}
.age_li02_pi {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: #D19789;
  border-radius: 15px 15px 0 0;
  padding: 15px 0px 15px 35px;
}
.age_m_img {
  width: 25%;
  position: absolute;
  right: 20px;
  top: 10px;
  background: #F8F8F8;
  border-radius: 100px;
}
.age_li_in {
  width: 80%;
  margin: 35px auto;
  position: relative;
}
table.age_table01 {
  width: 70%;
}
table.age_table01 th {
  width: 25%;
  font-size: 85%;
  line-height: 1.3;
  padding: 0px 0 7px;
  vertical-align: baseline;
}
table.age_table01 td {
  font-size: 85%;
  line-height: 1.3;
  padding: 0px 0 7px;
  vertical-align: baseline;
}
.age_li02_ttl {
  font-size: 16px;
  font-weight: bold;
  margin: 35px 0 20px;
  padding-bottom: 20px;
  border-bottom: solid 2px #BAA45D;
  letter-spacing: 2px;
}
table.age_table02 th {
  width: 25%;
  font-size: 85%;
  line-height: 1.5;
  padding: 0px 0 15px;
  vertical-align: baseline;
}
table.age_table02 td {
  font-size: 85%;
  line-height: 1.5;
  padding: 0px 0 15px;
  vertical-align: baseline;
}
.age_txt01 {
  line-height: 1.5;
  font-size: 85%;
}
.space_s {
  height: 80px;
}
.age_ul03 {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0px auto 30px;
}
.age03_li_left {
  width: 20%;
  position: relative;
  float: left;
  background: rgb(230,222,198);
  background: -moz-linear-gradient(90deg, rgba(230,222,198,1) 0%, rgba(204,136,119,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(230,222,198,1) 0%, rgba(204,136,119,1) 100%);
  background: linear-gradient(90deg, rgba(230,222,198,1) 0%, rgba(204,136,119,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e6dec6",endColorstr="#cc8877",GradientType=1);
  border-radius: 20px 0 0 20px;
}
.age03_li_right {
  width: 70%;
  background: #fff;
  position: relative;
  float: left;
  border-radius: 0 20px 20px 0;
  padding: 40px 3% 40px 7%;
}
.age03_li_left span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 80%;
  text-align: center;
  color: #ffffff;
  z-index: 1;
  font-size: 17px;
  font-weight: bold;
}
.arrow01:before {
  content: "";
  position: absolute;
  background: url(/wp-content/uploads/sankaku.png)no-repeat;
  width: 27px;
  height: 100%;
  background-size: cover;
  right: -27px;
  z-index: 1;
}
.arrow02:before {
  content: "";
  position: absolute;
  background: url(/wp-content/uploads/sankaku02.png)no-repeat;
  width: 28px;
  height: 100%;
  background-size: cover;
  right: -28px;
  z-index: 1;
}
.age03_txt {
  font-size: 16px;
}
.age03_ttl {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 25px;
  line-height: 1.3;
}
.age03_li_ul li:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #D19789;
  transform: rotate(-45deg);
  top: 6px;
  left: 0;
}
.age03_li_ul li {
  font-size: 16px;
  position: relative;
  padding-left: 17px;
  line-height: 1.3;
  margin-bottom: 4px;
}
.age03_li_ul {
  width: 100%;
  position: relative;
  display: table;
}


/* recruit page */
.recruit-head {
  background: url(/wp-content/uploads/rec_header.png)no-repeat;
  background-size: 35% auto !important;
  background-position: 72% 58%;
}
.recruit-head .page_head_desc {
  margin-bottom: 25px;
}
.recruit-head:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 76%;
  background: rgb(134,199,203);
  background: -moz-linear-gradient(90deg, rgba(134,199,203,1) 0%, rgba(192,200,160,1) 31%, rgba(219,170,140,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(134,199,203,1) 0%, rgba(192,200,160,1) 31%, rgba(219,170,140,1) 100%);
  background: linear-gradient(90deg, rgba(134,199,203,1) 0%, rgba(192,200,160,1) 31%, rgba(219,170,140,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#86c7cb",endColorstr="#dbaa8c",GradientType=1);
  top: 0;
  z-index: -1;
}
.re_unker_ul {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 80px auto 0;
}
.re_unker_ul li:hover {
  opacity: 0.7;
}
.re_unker_ul li {
  width: 32%;
  margin: 0 2% 0 0;
  float: left;
  border-radius: 25px;
  transition: all 0.3s ease 0s;
}
.re_unker_ul li a:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 15px;
  right: 0;
  margin: 0 auto;
  width: 8px;
  height: 8px;
  border-left: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  transform: rotate(-45deg);
  transition: .3s;
}
.re_unker_ul li a span{font-weight:bold}
.re_unker_ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 15px;
  right: 0;
  width: 1px;
  height: 20px;
  background: #FFF;
  margin: 0 auto;
}
.re_unker_ul li a {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  display: block;
  position: relative;
  padding: 70px 0;
  color: #fff !important;
}
.re_unker_ul li:last-child {
  margin: 0;
}
.unker01 {
  background: rgb(95,175,181);
  background: -moz-linear-gradient(0deg, rgba(95,175,181,1) 0%, rgba(202,234,222,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(95,175,181,1) 0%, rgba(202,234,222,1) 100%);
  background: linear-gradient(0deg, rgba(95,175,181,1) 0%, rgba(202,234,222,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5fafb5",endColorstr="#caeade",GradientType=1);
}
.unker02 {
  background: rgb(152,181,121);
  background: -moz-linear-gradient(0deg, rgba(152,181,121,1) 0%, rgba(222,232,210,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(152,181,121,1) 0%, rgba(222,232,210,1) 100%);
  background: linear-gradient(0deg, rgba(152,181,121,1) 0%, rgba(222,232,210,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#98b579",endColorstr="#dee8d2",GradientType=1);
}
.unker03 {
  background: rgb(186,164,93);
  background: -moz-linear-gradient(0deg, rgba(186,164,93,1) 0%, rgba(245,231,203,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(186,164,93,1) 0%, rgba(245,231,203,1) 100%);
  background: linear-gradient(0deg, rgba(186,164,93,1) 0%, rgba(245,231,203,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#baa45d",endColorstr="#f5e7cb",GradientType=1);
}
.recmem_outbox {
  position: relative;
  margin-bottom: 80px;
  min-height: 560px;
}
.recmem_img {
  display: block;
  height: 560px;
  position: absolute;
  overflow: hidden;
  width: 45%;
  z-index: 1;
  filter: grayscale(100%);
  transition: all 0.7s ease;
}
.recmem_txtbox {
  position: relative;
  width: 59%;
  background: #ddd;
  margin: 0 0 0 auto;
  min-height: 560px;
}
.recmem_img:before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  background: #F5F5F4;
  position: absolute;
}
.recmem_img .right_pos {
  width: 53%;
  right: 0;
}
.recmem_txtbox.left_pos {
  margin: 0 auto 0 0;
  background: rgb(222,232,210);
  background: -moz-linear-gradient(0deg, rgba(222,232,210,1) 0%, rgba(152,181,121,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(222,232,210,1) 0%, rgba(152,181,121,1) 100%);
  background: linear-gradient(0deg, rgba(222,232,210,1) 0%, rgba(152,181,121,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#dee8d2",endColorstr="#98b579",GradientType=1);
  border-radius: 20px 0px 0 20px;
}
.recmem_txtbox_in {
  padding: 120px 100px 0px;
}
.recmem_ttl {
  font-weight: bold;
  color: #fff;
  margin-bottom: 40px;
  font-size: 32px;
  letter-spacing: 2px;
}
.recmem_txtbox_in .right_pos {
  border-radius: 20px 0 0 20px;
  width: 53%;
  right: 0;
}
.recmem_img.right_pos {
  border-radius: 0;
}
.recmem_txt01 {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
}
.gl0 {
  background: rgb(202,234,222);
  background: -moz-linear-gradient(0deg, rgba(202,234,222,1) 0%, rgba(95,175,181,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(202,234,222,1) 0%, rgba(95,175,181,1) 100%);
  background: linear-gradient(0deg, rgba(202,234,222,1) 0%, rgba(95,175,181,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#caeade",endColorstr="#5fafb5",GradientType=1);
  border-radius: 0 20px 20px 0;
}
.gl03 {
  background: rgb(245,231,203);
  background: -moz-linear-gradient(0deg, rgba(245,231,203,1) 0%, rgba(186,164,93,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(245,231,203,1) 0%, rgba(186,164,93,1) 100%);
  background: linear-gradient(0deg, rgba(245,231,203,1) 0%, rgba(186,164,93,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f5e7cb",endColorstr="#baa45d",GradientType=1);
  border-radius: 0 20px 20px 0;
}
.recmem_btn_01 {
  display: block;
  text-align: center;
  padding: 19px 0;
  border-radius: 100px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease 0s;
  border: solid 1px #fff;
  max-width: 350px;
  margin: 50px 0 0;
}
.recmem_btn_01:hover:before {
  width: 30px;
}
.recmem_btn_01:hover{color:#fff !important}
.recmem_btn_01:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-left: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  transform: rotate(-135deg);
  transition: .3s;
}
.recmem_btn_01:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 20px;
  height: 1px;
  background: #FFF;
  transition: .3s;
}
.culture__swiper-navigation {
  width: 100%;
  height: 48px;
  background-color: rgba(0, 0, 0, 0.54);
  position: absolute;
  bottom: 0;
  display: flex;
  gap: 32px;
  z-index: 2;
  align-items: center;
  padding-left: 40px;
  padding-right: 30px;
}
.culture__swiper-navigation .culture-swiper-button-next, .culture__swiper-navigation .culture-swiper-button-prev {
  width: 8px;
  height: 14px;
  cursor: pointer;
  line-height: 0;
}
.culture__swiper-navigation .culture-swiper-button-next {
  transform: rotate(180deg);
}
.culture__slide--download {
  margin-left: 80%;
}
.swiper-button-next.ssne img {
  width: 8px;
  height: 14px;
  transform: rotate(180deg);
  cursor: pointer;
  line-height: 0;
}
.swiper-button-prev.sspre {
  width: 8px;
  height: 14px;
  cursor: pointer;
  line-height: 0;
  border: unset;
  float: unset;
  border-radius: unset;
  transition: unset;
}
.swiper-button-prev.sspre:after {
  display:none}

.swiper-button-next.ssne:before {
  display:none
}
.swiper-button-prev.sspre:before, .swiper-button-next.sspre:after {
	display:none
}
.swiper-button-prev.ssne:before, .swiper-button-next.ssne:after {
	display:none
}
.swiper-button-next.ssne {
  position: relative;
  border: unset !important;
  height: auto;
  width: auto;
  float: unset;
  border-radius: unset;
}


/* newgraduate page */
.newgraduate-head {
  background: url(/wp-content/uploads/rec_header02.png)no-repeat;
  background-size: 35% auto !important;
	background-position: 83% 58%;
}
.newgraduate .page_head_desc {
  margin-bottom: 25px;
}
.newgraduate:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 700px;
  background: rgb(95,175,181);
  background: -moz-linear-gradient(0deg, rgba(95,175,181,1) 0%, rgba(202,234,222,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(95,175,181,1) 0%, rgba(202,234,222,1) 100%);
  background: linear-gradient(0deg, rgba(95,175,181,1) 0%, rgba(202,234,222,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5fafb5",endColorstr="#caeade",GradientType=1);
  top: 0;
  z-index: -1;
}
.flow_list {
  position: relative;
}
.flow_ul {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto 25px;
}
.flow_li_img {
  width: 18%;
  float: left;
  position: relative;
}
.flow_li_txt {
  width: 79%;
  margin: 0 0 0 3%;
  float: left;
  padding:77px 0 0;
  position: relative;
}
.flow_ap_box {
  margin-bottom: 19%;
}
.flow_ap_box2 {
  margin-bottom: 16.5%;
}
.flow_ap_box3 {
  margin-top: 21%;
}
.flow_ttl {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}
.flow_txt {
  font-size: 14px;
line-height: 1.5;
}
.form_inner_left .k_ttl03 {
  font-size: 60px;
  margin-bottom: 50px;
}
.k_img_line {
  max-width: 240px;
  width: 40%;
  margin: 60px 0 0;
}


/* interview page*/
.interview-head {
  background: url(/wp-content/uploads/inter_head.png)no-repeat;
  background-size: 38% auto !important;
  background-position: 81% 76%;
}
.interview .page_head_desc {
  margin-bottom: 25px;
}
.interview:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 700px;
  background: rgb(152,181,121);
  background: -moz-linear-gradient(0deg, rgba(152,181,121,1) 0%, rgba(222,232,210,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(152,181,121,1) 0%, rgba(222,232,210,1) 100%);
  background: linear-gradient(0deg, rgba(152,181,121,1) 0%, rgba(222,232,210,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#98b579",endColorstr="#dee8d2",GradientType=1);
  top: 0;
  z-index: -1;
}
.k_img05 img {
  border-radius: 20px;
}
.k_img05 {
  margin: 60px auto 0;
}
.form_inner {
  position: relative;
  overflow: hidden;
  margin-top: 140px;
}
.form_inner_left {
  width: 720px;
  position: relative;
  float: left;
  margin: 0 40px 0 0;
  padding: 144px 0 0;
}
.form_inner_right {
  position: relative;
  float: right;
  width: 330px;
  padding: 144px 0 0 50px;
}
.form_inner_right ul {
  position: relative;
  width: 100%;
  display: table;
}
.form_inner_right li:before {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  background: #707070;
  height: 5px;
  width: 5px;
  border-radius: 100px;
}
.form_inner_right li {
  font-size: 16px;
  line-height: 1.5em;
  margin-bottom: 15px;
  padding-left: 22px;
  position: relative;
  color: #707070;
  font-weight: bold;
}
.form_inner_right:before {
  content: "";
  position: absolute;
  width: 200%;
  top: 0;
  left: 0;
  background: #f5f5f4;
  height: 100%;
}
.form_in_inner {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.carrent_li {
  color: #000 !important;
}
.carrent_li:before {
  background: #BAA45D !important;
  width: 24px !important;
  height: 24px !important;
  top: -3px !important;
  left: -8px !important;
}
.form_block {
  position: relative;
  margin: 90px 0 160px;
}
table.form_table th span {
  font-weight: bold;
  color: #D96A60;
  font-size: 16px;
  margin-left: 5px;
}
.form_tx {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.5em;
  margin-bottom: 11px;
}
textarea {
  height: 400px;
}
.form_tx span {
  font-weight: bold;
  color: #D96A60;
  font-size: 16px;
  margin-left: 10px;
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
	font-family: 'Noto Sans JP', sans-serif !important;
  -webkit-backface-visibility: hidden;
  background: unset;
  border: solid 1px #707070;
  box-sizing: border-box;
  outline: none;
  padding: 25px 25px;
  -webkit-appearance: none;
  outline-offset: 0;
  border-radius: 0;
  width: 100%;
  border-radius: 8px;
}
.form_in {
  margin-top: 20px;
}
.form_in a {
  color: #D96A60 !important;
  font-weight: bold;
  text-decoration: underline;
}
.form_btn {
  max-width: 350px;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  margin-top: 80px;
}
input.btn_c01 {
  border-radius: 100px;
  color: #707070 !important;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 19px 0;
  position: relative;
  display: block;
  text-align: center;
  margin: 0 auto;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease 0s;
  background: #fff !important;
  border: solid 1px #707070;
  margin-bottom: 33px;
}
.btn_01out{
  position:relative;
}
input.btn_c01:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-left: 1px solid #707070;
  border-bottom: 1px solid #707070;
  transform: rotate(-135deg);
  transition: .3s;
}
input.btn_c01:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 20px;
  height: 1px;
  background: #707070;
  transition: .3s;
}
input.btn_c02 {
  border-radius: 100px;
  background: rgb(219,200,140);
  background: -moz-linear-gradient(90deg, rgba(219,200,140,1) 0%, rgba(132,199,204,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(219,200,140,1) 0%, rgba(132,199,204,1) 100%);
  background: linear-gradient(90deg, rgba(219,200,140,1) 0%, rgba(132,199,204,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#dbc88c",endColorstr="#84c7cc",GradientType=1);
  color: #fff !important;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 19px 0;
  position: relative;
  display: block;
  text-align: center;
  margin: 0 auto;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease 0s;
}
input.btn_c01:hover {
  opacity: 0.7;
}
input.btn_c02:hover {
  opacity: 0.7;
}
.form_btn input {
  font-family: 'Noto Sans JP', sans-serif !important;
}
.form_confwide, .form_conf {
  position: relative;
  overflow: hidden;
}
.form_conf {
  margin-bottom: 25px;
}


/* 確認画面 */
.mw_wp_form_confirm .form_conf, .mw_wp_form_confirm .form_confwide {
  background: #F8F8F8;
  -webkit-backface-visibility: hidden;
  box-sizing: border-box;
  outline: none;
  padding: 25px 25px;
  -webkit-appearance: none;
  outline-offset: 0;
  border-radius: 0;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 25px;
}
.form_block .secl .form_conf {
  margin: 0;
  padding: 0 !important;
}
article.midcareer-confirm .form_block .secl .form_conf {
  padding: 25px 25px !important;
}

article.contact-confirm .form_block .secl .form_conf {
  padding: 25px 25px !important;
}
.form_block .secl {
  padding: 0;
  border: unset;
}
.form_block .secl select {
  color: #434343;
  font-family: 'Noto Sans JP', sans-serif !important;
  -webkit-backface-visibility: hidden;
  background: unset;
  border: solid 1px #707070;
  box-sizing: border-box;
  outline: none;
  padding: 25px 25px;
  -webkit-appearance: none;
  outline-offset: 0;
  width: 100%;
  border-radius: 8px;
}
.mw_wp_form_confirm .form_confwide {
  height: 400px;
}
.mw_wp_form_confirm table.form_table th {
  width: 30%;
}
.mw_wp_form_confirm table.form_table td {
  background: #F8F8F8;
  -webkit-backface-visibility: hidden;
  box-sizing: border-box;
  outline: none;
  padding: 25px 25px;
  -webkit-appearance: none;
  outline-offset: 0;
  border-radius: 0;
  width: 100%;
  border-bottom: solid 10px #fff;
}
.mw_wp_form_confirm .file_comen {
  border: unset;
  background: #f8f8f8;
  /* color: #f8f8f8; */
}
.mw_wp_form_confirm .secl {
  background: unset;
  border: unset;
  padding: 0;
}
#contents_header.interview-confirm-head {
  height: 0;
}
#contents_header.midcareer-confirm-head {
  height: 0;
}
#contents_header.contact-complete-head, #contents_header.interview-complete-head, #contents_header.midcareer-complete-head{
  height: 0;
}
.carrent_lisp01:before {
  top: -36px !important;
  background: #BAA45D !important;
  width: 24px !important;
  height: 24px !important;
}
.form_inner_right_sp li {
  width: 29%;
  margin: 0 2%;
  float: left;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  position: relative;
}
.form_inner_right_sp ul {
  width: 90%;
  display: table;
  position: relative;
  margin: 0 auto;
}
.form_inner_right_sp {
  background: #F5F5F4;
  position: relative;
  padding: 77px 0 21px;
  display:none
}
.form_inner_right_sp li:before {
  content: "";
  position: absolute;
  top: -29px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 8px;
  height: 8px;
  background: #8D8D8D;
  border-radius: 100px;
}
.carrent_lisp .bot_a:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 100px;
  background: #BAA45D !important;
  width: 24px !important;
  height: 24px !important;
}


/* midcareer page*/
.midcareer-head {
  background: url(/wp-content/uploads/midchead.png)no-repeat;
  background-size: 23% auto !important;
  background-position: 81% 100%;
}
.midcareer .page_head_desc {
  margin-bottom: 25px;
}
.midcareer:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 700px;
  background: rgb(186,164,93);
  background: -moz-linear-gradient(0deg, rgba(186,164,93,1) 0%, rgba(245,231,203,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(186,164,93,1) 0%, rgba(245,231,203,1) 100%);
  background: linear-gradient(0deg, rgba(186,164,93,1) 0%, rgba(245,231,203,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#baa45d",endColorstr="#f5e7cb",GradientType=1);
  top: 0;
  z-index: -1;
}
.file_flex {
  display: table;
  position: relative;
  width: 100%;
}
.file_comenss {
  /* display: table;
  position: relative;
  width: 100%; */
  margin-bottom: 25px;
}
.file_comenss label {
  padding: 25px 0;
  /* margin: 0 0 10px 21px; */
  margin-left: 21px;
  background: #efadad;
  color: #fff;
  display: inline-block;
  cursor: pointer;
  border-radius: 10px;
  float: left;
  width: 100%;
  text-align: center;
  text-indent: -16px;
}
.file_comen {
  width: 65%;
  -webkit-backface-visibility: hidden;
  background: #fff;
  border: solid 1px #707070;
  box-sizing: border-box;
  outline: none;
  padding: 25px 25px;
  -webkit-appearance: none;
  outline-offset: 0;
  border-radius: 0;
  border-radius: 8px;
  /* margin-bottom: 25px; */
  float: left;
  color: #757575;
}


.fileclear {
  display: none;
  margin: 10px 0 0;
  text-decoration: underline;
  font-weight: bold;
  cursor: pointer;
}
.file_btn {
  width: 32%;
  float: left;
  display: block;
  position: relative;
}
.mw-wp-form_file {
  display: none;
}


input[type="file"] {
  display: none!important;
}


.fileclear {
  display: none;
  padding: 10px 17px;
  background: #F8F8F8;
  color: #3A6590;
  font-weight: 600;
  border: 1px solid #3A6590;
  cursor: pointer;
  margin-left: 16px;
}
.file-input {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 14px;
}
.note {
  text-indent: -14px;
  padding-left: 14px;
  margin-top: 12px;
}


/*privacy-head*/
#contents_header.privacy-head .page_head_tittle {
  color: #000;
  text-shadow: unset;
  margin-top: 144px;
}
#contents_header.privacy-head .p-page-header__inner {
  position: relative;
  top:90px;
}
#contents_header.privacy-head {
  padding: 0;
  height: 250px;
}
.k_ttl06 {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 40px;
  line-height: 1.5;
}
.k_ttl07 {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 1.5;
  text-align:center;
}
.k_txt02 {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.k_ttl05 {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background: #BAA45D;
  border-radius: 100px;
  padding: 15px 30px;
  margin: 60px 0 30px;
}


/* contact page */
.page_head_tittle.page_in {
  color: #000;
  text-shadow: unset;
}
#contents_header.contact-head, #contents_header.contact-confirm-head {
  height: 0;
}
article.contact .form_inner {
  margin-top: 0;
}


/* 404 */
#page_s_header {
  background: #f5f5f4;
  height: 243px;
}
.k_img06 {
  width: 40%;
  margin: 0 auto 50px;
}
article#page404 {
  background: #f5f5f4;
}


/* news */
.section.news_posts {
  margin: 231px auto 160px;
  position: relative;
}
.post-title {
  font-size: 40px;
  font-weight: bold;
  margin: 90px 0 70px;
  line-height: 1.25em;
  text-transform: none !important;
}
.post-body p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 30px;
}
.section.news_posts .new_thum_img {
  margin-bottom: 66px;
}
.section.news_posts .center_btn {
  margin: 80px auto 0;
}
/* news archive*/
.p-news-block {
  position: relative;
  background: #f5f5f4;
}
#post_header {
  background-size: cover;
  position: relative;
  height: 700px;
}
.news-archive-head {
  background: url(/wp-content/uploads/news_header.jpg)no-repeat center;
}
.p-news-inner {
  width: 90%;
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-article02__content a:hover {
  opacity: 0.7;
}
.p-article02__content ul:hover:before {
  opacity: 0.4;
}
.p-article02__content ul:hover:after {
  opacity: 0.4;
}
.p-news_left {
  width: 760px;
  margin: 0 110px 160px 0;
  position: relative;
  padding-top:144px;
}
.p-news_left:before {
  position: absolute;
  content: "";
  background: #fff;
  left: calc(114% - 100vw);
  width: 100vw;
  max-width: 100vw;
  top: 0;
  height: calc(100% - -160px);
}
.p-article02__content a {
  color: #000;
  display: block;
  transition: all 0.3s ease 0s;
  position: relative;
}
.p-article02__content ul a {
  width: 100%;
  position: relative;
  display: block;
  height: 100%;
}
.p-news_right {
  position: sticky;
  top: 80px;
  height: 100%;
  padding: 144px 0 15% 75px;
  color: #1b243b;
}
.p-news_right ul {
  width: 100%;
  position: relative;
  display: table;
}
.p-news_right li a {
  color: #000 !important;
  font-weight: bold;
}
.p-news_right li {
  font-size: 16px;
  margin-bottom: 27px;
  font-weight: bold;
  padding-left: 28px;
  position: relative;
}
.p-news_right li:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 7px;
  left: 0;
  background: #8D8D8D;
  border-radius: 50px;
}
.p-article02__title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.7;
}
.date_cate_txt {
  font-size: 14px;
  letter-spacing: 0;
  margin-bottom: 15px;
}
.p-art_txt_li {
  width: 480px;
  margin: 0 0 0 16px;
  float: left;
  padding-top: 55px;
  position: relative;
}
.p-article02__content ul:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(-135deg);
  transition: .3s;
}
.p-article02__content ul:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 36px;
  height: 1px;
  background: #000;
  transition: .3s;
}
.thum_li {
  width: 255px;
  float: left;
  position: relative;
}
.p-article02__content ul {
  width: 100%;
  position: relative;
  display: table;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: solid 1px #707070;
}
.news_inner_right_sp {
  background: #F5F5F4;
  position: relative;
  padding: 43px 0 21px;
  display: none;
}
.news_inner_right_sp ul {
  width: 350px;
  display: table;
  position: relative;
  margin: 0 auto;
}
.news_inner_right_sp li a {
display: block;
position: relative;
color: #000 !important;
font-weight: bold;
}
.news_inner_right_sp li {
width: auto;
margin: 0 9px;
float: left;
text-align: center;
font-size: 14px;
font-weight: bold;
position: relative;
}
/*
.news_inner_right_sp li:before {
  content: "";
  position: absolute;
  top: -29px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 8px;
  height: 8px;
  background: #8D8D8D;
  border-radius: 100px;
}
.news_inner_right_sp li:before {
  content: "";
  position: absolute;
  top: -29px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 8px;
  height: 8px;
  background: #8D8D8D;
  border-radius: 100px;
}*/
.bot_a {
  padding: 10px;
  margin-bottom: 15px;
}
.bot_a:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 8px;
  height: 8px;
  background: #8D8D8D;
  border-radius: 100px;
}


/* cases　一覧 */

.cases-head {
  background: url(/wp-content/uploads/case_header.png)center no-repeat;
  background-position: 92% 100% !important;
}
.ser_ttl {
  font-size: 20px;
  font-weight: bold;
}
.serch_inner li {
  font-size: 12px;
  padding: 9px 10px;
  float: left;
  margin: 0 10px 0 0;
  position: relative;
  border: solid 1px #707070;
  border-radius: 100px;
}
.serch_inner ul {
  margin: 25px auto 33px;
  display: table;
  position: relative;
  width: 100%;
  border-bottom: solid 1px #707070;
  padding-bottom: 33px;
}
.li_cur02 {
  background: #707070;
  color: #fff;
}
.li_cur {
  border: solid 1px #BAA45D !important;
  background: #BAA45D;
  color: #fff;
}
.p-case_ul {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
}
.p-case_ul li {
  width: 31%;
  margin: 0 1%;
  float: left;
}
.case_thum_img .image {
  height: 100% !important;
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.case_thum_img {
  display: block;
  width: 100%;
  height: 320px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.category-consulting {
  letter-spacing: 0;
  background: #baa45d;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  margin: 0 10px 8px 0;
  border-radius: 100px;
  display: inline-block;
}
.category-human{
  letter-spacing: 0;
  background: #84C7CC;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  margin: 0 10px 0 0;
  border-radius: 100px;
  display: inline-block;
}
.category-recruitment{
  letter-spacing: 0;
  background: #d19789;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  margin: 0 10px 0 0;
  border-radius: 100px;
  display: inline-block;
}
.post-tags {
  display: inline;
}
.post-tags .tag {
  letter-spacing: 0;
  background: #707070;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  margin: 0 10px 8px 0;
  border-radius: 100px;
  display: inline-block;
}
.post-categories a:hover {
  /* color: #fff; */
  opacity: 0.7;
}
.post-tags a:hover{
  color: #fff;
  opacity: 0.7;
}
.case_posts .category-consulting, .case_posts .category-human, .case_posts .category-recruitment, .case_posts .post-tags .tag {
  padding: 8px 12px;
}
.p-article03__content_in {
  padding: 30px 30px 40px;
  position: relative;
}
.serch_inner .center_btn {
  margin: 80px auto 0;
}
.p-article03__content a,.p-article03__title a {
  transition: all 0.3s ease 0s;
}
.p-article03__content a:hover, .p-article03__title a:hover {
  opacity: 0.7;
}
.p-case_ul li {
  width: calc(94%/3);
  margin: 0 1% 50px;
  float: left;
  position: relative;
  border-radius: 20px;
  background: #fff;
  box-shadow: 1px 1px 15px #ddd;
}
.p-article03__title a {
  font-weight: bold;
  color: #000;
  line-height: 1.5;
}
.p-article03__title {
  font-size: 18px;
  margin-top: 20px;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 表示する行数を指定 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* case 記事**/

.case-title {
  font-size: 40px;
  margin-bottom: 65px;
  font-weight: bold;
  line-height: 1.5;
  text-transform: none !important;
}
.case_posts {
  padding: 93px 92px 60px;
  background: #fff;
  border-radius: 25px;
  box-shadow: 3px 3px 15px #c9c9c9;
  margin: 0 auto;
  max-width: 1110px;
  margin-bottom: 74px;
}
.case_posts .post-categories-tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  margin: 0 0 70px auto;
}
.case_posts .post-categories {
  margin: 0 0 0 auto;
}
.casespost-head:before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  background: #F5F5F4;
  z-index: -1;
}
article.case_detail {
  background: #F5F5F4;
  position: relative;
  padding: 1px 0 160px;
}
.casespost-head {
  background: url(/wp-content/uploads/case_header.png)center no-repeat;
}
.cate_txt a {
  font-size: 12px;
  padding: 7px 10px;
  margin: 0 10px 0 0;
  position: relative;
  border-radius: 100px;
  border: solid 1px #BAA45D !important;
  background: #BAA45D;
  color: #fff;
}
.tt_ttl {
  font-size: 20px !important;
  font-weight: bold;
  border-bottom: solid 2px #BAA45D;
  padding-bottom: 20px;
  margin-bottom: 20px !important;
  margin-top: 50px;
}
.cate_txt {
  margin-bottom: 74px;
  text-align: right;
}
.secl select {
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif !important;
  color: #434343;
}
.secl {
  -webkit-backface-visibility: hidden;
  border: solid 1px #707070;
  box-sizing: border-box;
  outline: none;
  padding: 13px 25px;
  -webkit-appearance: none;
  outline-offset: 0;
  border-radius: 0;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 25px;
}
.secl .form_conf {
  margin: 0;
  padding: 13px 0;
}
.secl .form_conf span.error:last-child {
  background: unset;
}
.sp_kai{
  display:none;
}
.sp_block{
  display:none;
}


/* アーカイブ*/

.searchandfilter ul > li > ul > li {
  width: auto !important;
  float: left;
}
.searchandfilter ul {
  display: inline-block;
  width: 100%;
}
.searchandfilter li {
  width: 100%;
  display: block;
}
.searchandfilter h4 {
  font-size: 20px !important;
  font-weight: bold;
  margin: 20px auto 30px !important;
}
.searchandfilter label {
  display: block;
  text-align: center;
  border-radius: 100px;
  font-size: 12px;
  padding: 9px 10px;
  margin: 0 10px 0 0;
  position: relative;
  border: solid 1px #707070;
}
.searchandfilter input[type=checkbox] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  width:0;
  height:0
}
.searchandfilter input[type=checkbox]:checked::after {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease 0s;
  content: "";
  background: #aaa;
  top: 0;
  left: 0;
  z-index:-1;
  border-radius: 100px;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.cat-item-7 label {
  border-color: #BAA45D !important;
}
.cat-item-8 label {
  border-color: #84C7CC !important;
}
.cat-item-9 label {
  border-color: #D19789 !important;
}
.cat-item-7 input[type=checkbox]:checked::after{
    background: #BAA45D !important;
}
.cat-item-8 input[type=checkbox]:checked::after{
    background: #84C7CC !important;
}
.cat-item-9 input[type=checkbox]:checked::after{
    background: #D19789 !important;
}
.searchandfilter input[type="submit"] {
  background: rgb(219,200,140);
  background: -moz-linear-gradient(90deg, rgba(219,200,140,1) 0%, rgba(132,199,204,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(219,200,140,1) 0%, rgba(132,199,204,1) 100%);
  background: linear-gradient(90deg, rgba(219,200,140,1) 0%, rgba(132,199,204,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#dbc88c",endColorstr="#84c7cc",GradientType=1);
  width: 350px;
  display: block;
  text-align: center;
  padding: 17px 0;
  border-radius: 100px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease 0s;
  margin: 30px auto 0;
  cursor: pointer;
}
.searchandfilter input[type="submit"]:hover {
  opacity: 0.7;
}
.searchandfilter li:first-child {
  border-bottom: solid 1px;
  margin-bottom: 25px;
}

/* 検索404解除*/
.cat-item.cat-item-9 {
  visibility: visible;
}
.cat-item.cat-item-8 {
  visibility: visible;
}
.cat-item.cat-item-1 {
  visibility: hidden;
}
.cat-item.cat-item-7 {
  visibility: visible;
}
.cat-item-1 {
  border-bottom: unset !important;
  margin-bottom: 0 !important;
  margin-top: -32px;
}
/*END*/
/*
.searchandfilter li:nth-child(2) {
    border-bottom: solid 1px;
}
*/
.cat-item-7, .cat-item-10, .cat-item-11, .cat-item-8 {
  border-bottom: unset !important;
}
.serch_post {
  font-size: 16px;
  margin: 54px 0 40px;
}
.flow_utxt {
  margin-top: 3.5%;
}
.k_ttl061 {
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 40px;
  line-height: 1.5;
}
table.form_table td {
  border-bottom: solid 25px #fff;
  overflow: hidden;
  position: relative;
}
.form_confwide {
  margin-bottom: 25px;
}
.mw_wp_form .error {
  /* background: rgb(255 192 183 / 20%); */
  -webkit-backface-visibility: hidden;
  box-sizing: border-box;
  outline: none;
  height: 100%;
  -webkit-appearance: none;
  outline-offset: 0;
  width: 100%;
  border-radius: 8px;
  /* margin-bottom: 25px; */
  /* position: absolute;
  z-index: -1; */
  margin-top: 8px;
}
.file_btn .error {
  height: auto;
}
.file_btn span.error:first-child {
  display: none;
}
.file_btn span.error {
  height: auto;
  /* margin-top: 35px; */
  font-weight: 600;
  font-size: 16px;
  background: unset;
}
.btn_lay01 span.error:first-child {
  display: none;
}
.btn_lay01 span.error {
  background: unset;
  height: auto;
  margin-top: 13px;
  font-weight: 600;
  font-size: 16px;
}
/* 投稿　*/
.has-large-font-size {
  font-size: 32px !important;
  margin-bottom: 66px !important;
}
.has-large-font-size strong {
  font-size: 32px !important;
}
figure.wp-block-image {
  margin-bottom: 66px;
}
.wp-block-heading {
  font-size: 20px !important;
  font-weight: bold;
  border-bottom: solid 2px #BAA45D;
  padding-bottom: 20px;
  margin-bottom: 20px !important;
  margin-top: 50px;
}
.post-body li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 2px;
}
.post-body ul {
  list-style: disc;
  margin-left: 22px;
  display: table;
  position: relative;
}
.post_pager_block .next_li a:after {
  right: unset;
  margin: auto;
  transform: rotate(45deg);
  left: 23px;
}
.post_pager_block .pre_li a:after {
  transform: rotate(-135deg);
  left: unset;
  right: 23px;
}
.post_pager_block .next_li {
  margin: 0 30px 0 0;
}


/*pagenation*/

.news_pager {
  position: relative;
  text-align: center;
  margin: 0 auto;
}
.cases_pager {
  position: relative;
  text-align: center;
  margin: 0 0 0 auto;
  width: 85%;
}
.news_pager nav {
  margin: 0;
}
.prev.page-numbers:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 33px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-left: 1px solid #707070;
  border-bottom: 1px solid #707070;
  transform: rotate(45deg);
  transition: .3s;
}
.page-numbers {
  font-size: 24px;
  padding: 0 40px 0 0;
  color: #8b8b8b;
  font-weight: 600;
}
span.page-numbers.current {
  font-size: 24px;
  padding: 0 40px 0 0;
  color: #000;
  font-weight: 600;
}
.nav-links {
  padding-top: 10px;
}
.prev.page-numbers:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 22px;
  margin: auto;
  width: 21px;
  height: 1px;
  background: #707070;
  transition: .3s;
}
.prev.page-numbers {
  position: absolute;
  border: solid 1px #707070;
  height: 50px;
  width: 65px;
  padding: 0;
  float: left;
  border-radius: 100px;
  display: block;
  transition: all 0.3s ease 0s;
  font-size: 0;
  top: 0;
  right: 100px;
}
.next.page-numbers {
  position: absolute;
  border: solid 1px #707070;
  height: 50px;
  width: 65px;
  padding: 0;
  float: left;
  border-radius: 100px;
  display: block;
  transition: all 0.3s ease 0s;
  font-size: 0;
  right: 0;
  top: 0;
}
.next.page-numbers:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 22px;
  margin: auto;
  width: 21px;
  height: 1px;
  background: #707070;
  transition: .3s;
}
.next.page-numbers:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 23px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-left: 1px solid #707070;
  border-bottom: 1px solid #707070;
  transform: rotate(-135deg);
  transition: .3s;
}


/**************************
フォント調整
**********************************************************************************/

@media (min-width: 1401px) and (max-width: 1599px){
body {
	font-size: calc(16 / 1599 * 100vw);}
}

@media (min-width: 1200px) and (max-width: 1400px){
body {
	font-size: calc(16 / 1400 * 100vw);}
}

@media (min-width: 1001px) and (max-width: 1199px){
body {
	font-size: calc(16 / 1199 * 100vw);}
}

@media (min-width: 768px) and (max-width: 1000px){
body {
	font-size: calc(16 / 1000 * 100vw);}
}

@media (min-width: 501px) and (max-width: 767px){
body {
	font-size: calc(16 / 767 * 100vw);}
}

@media (min-width: 300px) and (max-width: 500px){
body {
	font-size: calc(16 / 500 * 100vw);}
}



/******respon*****************************************/




@media screen and (max-width: 1500px){
  .member_img .image {
    background-position: 50% 100% !important;
  }
  .right_pos .image {
    background-position: 0% 100% !important;
  }
  .newgraduate-head {
    background-size: 39% auto !important;
    background-position: 91% 68%;
  }
  .midcareer-head {
    background-size: 28% auto !important;
    background-position: 90% 75%;
  }
}


@media screen and (max-width: 1300px){
  .form_inner_left, .p-news_left {
    width: 60%;}
  .form_inner_right {
    width: 18%;
  }
  .p-news_right {
    width: 20%;
    padding: 144px 0 0 23px;
  }
  .interview-head {
    background-size: 41% auto !important;
    background-position: 89% 75%;
  }
  .swl_b_in {
    min-height: 320px;
    padding: 25px 25px 0;
  }
  .p-art_txt_li {
    width: 60%;
    margin: 0 0 0 3%;
  }
  .p-art_txt_li p {
    padding-right: 18%;
  }
  .thum_li {
    width: 37%;
  }
}


@media screen and (max-width: 1200px){
  .flow_ap_box2 {
    margin-bottom: 14.5%;
  }
  .member_img {
    width: 80%;
    height: 500px;
  }
  .flow_ap_box3 {
    margin-top: 18%;
  }
  .flow_ap_box {
    margin-bottom: 18%;
  }
  .contact_btn {
    max-width: 200px;
  }
  .flow_li_txt {
    padding: 7% 0 0;
  }
  .p-global-nav li {
    padding-left: 20px;
    padding-right: 20px;
  }
  .mem_txtbox {
    width: 100%;
    top: 450px;
    min-height: 550px;
    left: 16%;
  }
  .mem_txtbox_in {
    padding: 100px 15% 64px 64px;
  }
  .file_comen {
    font-size: 14px;
    padding: 25px 10px;
  }
  .swipe_block_right {
    width: 28%
  }
  .left_pos {
    left: -8vw;
    width: 81vw;
  }
  .left_pos .mem_txtbox_in {
    padding: 100px 64px 64px 64px;
  }
  #member_section {
    overflow: hidden;
  }
  .mem_outbox {
    min-height: 780px;
    margin-bottom: 300px;
  }
  .mem_outbox:last-of-type {
    margin-bottom: 220px;
  }
  .culture__swiper-navigation {
    width: 94%;
    padding-right: 3%;
    padding-left: 3%;
  }
  .newgraduate-head {
    background-size: 50% auto !important;
    background-position: 100% 68%;
  }
  .footer_inner {
    width: 90%;
  }
  .thum_li {
    width: 30%;
  }
  .p-art_txt_li {
    width: 67%;
    margin: 0 0 0 3%;
    padding-top: 25px;
  }
}

@media screen and (max-width: 1100px){
  .flow_ap_box {
    margin-bottom: 17%;
  }
}

@media (min-width:1000px) and (max-width: 1080px){
  .ab_li_txt {
    width: 45%;
  }
  .ab_li_img {
    width: 53%;
  }
}

@media screen and (max-width: 1000px){
  .swl_b_in {
    min-height: 420px;
    padding: 20px;
  }
  .swiper-button-prev.sspre {
    top: 1px;
  }
  .contact_btn {
    max-width: 180px;
    margin-right: 10px;
  }
  .flow_ap_box {
    margin-bottom: 16%;
  }
  .file_comenss label {
    margin: 0 0 10px 1%;
  }
  .file_btn {
    width: 24%;
  }
  .file_comen {
    width: 75%;
  }
  .header_logo {
    padding-left: 15px;
  }
  .p-global-nav li {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 15px;
  }
  nav {
    margin: 0 10px 0 auto;
  }
  .seven_ul02 {
    width: 74%;
  }
  .k_swipe_box .swipe_block {
    width: 80%;
    left: 20%;
  }
  .swiper-button-prev.sspre {
    width: 20px;
  }
  .swiper-button-next.ssne img, .swiper-button-prev.sspre img {
    width: auto;
    height: auto;}
  .culture__slide--download {
    width: 70px;
    height: auto;
  }
  .culture__slide--download {
    margin-left: 80%;
  }
  .culture__slide--link {
    width: 70px;
    height: auto;
  }
  .recmem_txtbox_in {
    padding: 60px 30px 0px 60px;
  }
  .recmem_txtbox.left_pos .recmem_txtbox_in {
    padding: 60px 50px 0px 30px;
  }
  .ab_li_img, .ab_li_txt {width: 100%;float: unset;}
  .inner h2 {
    text-align: center;
  }
  .ab_li_img {
    margin-bottom: 70px;
  }
  #about_section p {
    max-width: unset;
  }
  .btn_01 {
    margin: 0 auto;
  }
  .swipe_block_right {
    display: none;
  }
}

@media (min-width:700px) and (max-width: 1025px){
  body {
    overflow-x: hidden;
  }
  .k_inner, .p-page-header__inner, .inner, .footer_inner, .form_in_inner, .p-news-inner{
    width: 88%;
  }
  .para_scroll {
    height: 240px;
    background: url(/wp-content/uploads/sp_pall.jpg)no-repeat center;
    background-size: cover;
  }
  .para_scroll:before {
    -webkit-filter: blur(6px);
    -moz-filter: blur(6px);
    -o-filter: blur(6px);
    -ms-filter: blur(6px);
    filter: blur(6px);}
  .post_pager_block .next_li {
    margin: 0 23px 0 0;
  }
}

@media screen and (max-width: 900px){
  .flow_ap_box {
    margin-bottom: 15.2%;
  }
  .flow_ap_box2 {
    margin-bottom: 12.5%;
  }
  .culture__slide--download {
    margin-left: 79%;
  }
  .p-news_right {
    padding: 144px 0 0 0;
    width: 23%;
  }
}

@media screen and (max-width: 768px){
  .ab_li_img {
    margin-bottom: 70px;
  }
  .p-pagetop {
    display: none !important
  }
  .request_Info_btn {
    display: none !important
  }
  .request_Info_btn_sp {
    display: block !important
  }
  #about_section p {
    max-width: unset;
  }
  .btn_01 {
    margin: 0 auto;
  }
  .inner h2 {
    text-align: center;
  }
  .ser_contents {
    float: unset;
    width: 100%;
    height: auto;
  }
  .ser_txt_block {
    padding: 64px 64px 0 40px;
    width: 57%;
    height: 200px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1;
  }

  .ser_flex {
    position: relative;
    display: table;
  }
  .b-ser:before {
    background: url(../images/b-ser_sp.jpg);
  }
  .b-ser:before {
    background: url(../images/b-ser_sp.jpg);
    background-size: contain;
    background-position: right;
  }
  .a-ser:after {
    background: rgb(59 43 0 / 30%);
    width: 100%;
    height: 100%;             
    border-right: unset;
    top: 0;
    right: 0;
    z-index: 0;
  }
  .b-ser:after {
    background: rgb(107 144 147 / 30%);
    width: 100%;
    height: 100%;
    border-right: unset;
    top: 0;
    right: 0;
    z-index: 0;
  }
  .c-ser:after {
    position: absolute;
    content: "";
    background: rgb(121 92 85 / 30%);
    width: 100%;
    height: 100%;
    border-right: unset;
    top: 0;
    right: 0;
    z-index: 0;
  }
  #service_section {
    background: rgb(193, 189, 178);
    background: -moz-linear-gradient(0deg, rgba(193, 189, 178, 1) 0%, rgba(244, 241, 237, 1) 100%);
    background: -webkit-linear-gradient(270deg, rgba(193, 189, 178, 1) 0%, rgba(244, 241, 237, 1) 100%);
    background: linear-gradient(270deg, rgba(193, 189, 178, 1) 0%, rgba(244, 241, 237, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c1bdb2", endColorstr="#f4f1ed", GradientType=1);
  }
  .ser_txt_block:after {
    bottom: 26px;
    right: -21%;
    border-left: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
  }
  .ser_txt_block:before {
    bottom: 30px;
    right: -21%;
    height: 1px;
  }
  .swipe_block_left {
    width: 100%;
  }
  #case_section .swipe_block,
  #news_section .swipe_block,
  #journal_section .swipe_block{
    top: 190px;
    left: unset;
    right: 0;
    width: 40%;
  }
  #case_section:before ,
  #news_section:before ,
  #journal_section:before{
    height: 500px;
    width: 50%;
    top: 120px;
  }



  span.swiper-pagination-bullet {
    margin: 0 20px 0 0;
  }
  .swiper {
    margin-top: 190px;
  }
  #case_section .swipe_block_in ,
  #news_section .swipe_block_in ,
  #journal_section .swipe_block_in {
    display: none;
  }


  .member_img {
    height: 405px;
    width: 85%;
  }
  #member_section .inner {
    width: 100%;
  }
  .mem_txtbox {
    top: 345px;
    min-height: auto;
    left: unset;
    right: 0;
    width: 552px;
  }
  .footer_left {
    width: 100%;
    float: unset;
  }
  .footer_right {
    width: 100%;
    float: unset;
    margin-top: 60px;
  }
  .rec_img {
    height: 240px;
  }
  footer {
    padding: 80px 0 140px;
  }
  .p-footer-nav.left_ds {
    width: 32%;
  }
  .p-footer-nav {
    width: 34%;
  }
  .footer_inner {
    width: 90%;
  }
  .news_li_list {
    width: 100%;
    float: unset;
  }
  .news_li_img {
    width: 100%;
    height: 235px;
    margin: 0 auto 80px;
  }
  .mem_outbox {
    margin-bottom: 130px;
  }
  .mem_txtbox_in {
    padding: 122px 105px 60px 55px;
  }
  #contents_header {
    height: 313px;
  }
  .p-page-header__inner {
    top: 84px;
  }
  .page_head_tittle {
    line-height: 1;
    font-size: 40px;
    margin-bottom: 17px;
  }
  .page_head_desc {
    font-size: 24px;
    margin: 0;
    line-height: 1.2
  }
  .sub_ttl01 {
    font-size: 12px;
  }
  .mi_out:before,
  .mi_out:after {
    background-size: contain;
  }
  .k_ttl01 {
    font-size: 24px;
  }
  .mi_in h3 {
    font-size: 24px;
    margin-top: 25px;
  }
  .se_txt {
    margin: 100px auto 30px;
    font-size: 24px;
  }
  .line_space {
    margin: 50px auto;
  }
  .k_ttl02 {
    font-size: 24px;
    margin-top: 30px;
  }
  .k_ttl02 span{
    font-size: 24px;
    margin-top: 5px;
    display: block;
    white-space: nowrap;
  }
  .heikei_g {
    padding: 90px 0;
  }
  .heikei_b {
    padding: 90px 0;
  }
  .mi_out {
    width: 404px;
    height: 437px;
    margin: 35px auto 90px;
  }
  .pad_space {
    margin: 90px auto;
  }
  .k_ttl03 {
    font-size: 24px;
  }
  .k_name_box_out {
    margin-bottom: 180px;
  }
  .k_name01 {
    font-size: 18px;
  }
  .k_name_ttl {
    font-size: 20px;
  }
  .k_name02 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .k_txt01 {
    font-size: 14px;
  }
  .k_name_box {
    width: 200px;
    padding: 30px 0px 30px 24px;
    bottom: -116px;
  }
  .k_img03 {
    width: 96%;
  }
  .pc_ta {
    display: none;
  }
  table.info_table td,
  table.info_table th {
    font-size: 16px;
  }
  .company_map_inner_in table.info_table {
    width: 100%;
    margin-top: 50px;
  }
  .k_ttl03 {
    font-size: 24px;
  }
  .company_map_inner li:first-child {
    display: none;
  }
  .company_map_inner {
    padding-bottom: 1px;
  }
  .company_map_inner_in {
    position: relative;
    margin: 50px auto 90px;
  }
  .company_map_inner li {
    width: 100%;
    float: unset;
    height: 240px;
  }
  .info_block {
    display: none;
  }
  .space {
    height: 90px;
  }
  .sp_ta {
    display: block;
  }
  .pad_space02 {
    margin: 90px auto 0;
  }
  .agency-head .p-page-header__inner {
    top: 74px;
  }
  .agency-head .page_head_desc {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .agency-head .page_head_tittle {
    font-size: 28px;
  }
  .age_ul01 li {
    padding-bottom: 20px;
  }
  .ali_txt {
    font-size: 14px;
  }
  .age_ul01 {
    margin: 45px auto 0;
  }
  .agency-head {
    background: url(/wp-content/uploads/sp_head02.png)no-repeat;
    background-position: top right;
    background-size: contain !important;
  }
  .age_ul01 li:nth-child(2),
  .age_ul01 li:nth-child(4) {
    margin: 0 0 3%;
  }
  .age_ul01 li {
    padding-bottom: 20px;
    width: 48%;
    margin: 0 4% 4% 0;
  }
  .sp_block {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  .pc_block {
    display: none
  }
  .age_ul02 {
    margin: 40px auto 0;
  }
  .age_ul02 li {
    width: 100%;
    margin: 0 auto 40px;
    float: unset;
  }
  table.age_table01 td,
  table.age_table01 th {
    font-size: 14px;
  }
  .age_txt01 {
    font-size: 14px;
  }
  .age_li02_ttl {
    font-size: 18px;
  }
  .age_li_in {
    width: 86%;
  }
  table.age_table02 td,
  table.age_table02 th {
    font-size: 14px;
  }
  .age03_li_left span {
    font-size: 18px;
  }
  .age03_li_left:after {
    content: '';
    display: block;
    background-color: rgb(204, 136, 119);
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    width: 100%;
    height: 27px;
    bottom: -26px;
    position: absolute;
    z-index: 1;
  }
  .age03_li_ul li {
    font-size: 14px;
  }
  .age03_txt {
    font-size: 14px;
    line-height: 1.7;
  }
  .age03_ttl {
    font-size: 18px;
  }
  .age03_li_left {
    width: 100%;
    float: unset;
    height: 59px;
    border-radius: 20px 20px 0 0;
    background: rgb(204, 136, 119);
    background: -moz-linear-gradient(0deg, rgba(204, 136, 119, 1) 0%, rgba(230, 222, 198, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(204, 136, 119, 1) 0%, rgba(230, 222, 198, 1) 100%);
    background: linear-gradient(0deg, rgba(204, 136, 119, 1) 0%, rgba(230, 222, 198, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#cc8877", endColorstr="#e6dec6", GradientType=1);
  }
  .heikei_g .space_s {
    height: 20px;
  }
  .heikei_b .space_s {
    height: 20px;
  }
  .age03_ttl br {
    display: none;
  }
  img.eightimg {
    width: 84% !important;
  }
  .arrow01:before {
    display: none
  }
  .arrow02:before {
    display: none
  }
  .age03_li_right {
    width: 100%;
    float: unset;
    border-radius: 0 0 20px 20px;
    padding: 60px 5% 30px;
  }
  .consulting-head .p-page-header__inner {
    top: 74px;
  }
  .consulting-head .page_head_tittle {
    font-size: 28px;
    line-height: 1.4
  }
  .consulting-head .page_head_desc {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .k_swipe_box .swipe_block_right {
    display: none;
  }
  .k_swipe_box {
    margin-top: 60px;
    padding: 90px 0;
  }
  .cou_ttl02 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  .cou_ttl01 span {
    font-size: 23px;
    padding: 0px 9px 0 10px;
  }
  .cou_ttl01 {
    font-size: 19px;
  }
  .cou_ul01 li {
    width: 90%;
    padding: 40px 5%;
    margin: 0 auto 40px;
  }
  .swl_b_in {
    background: unset;
    padding: 50px 30px 0;
  }
  .cou_txt_st {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .cou_txt {
    font-size: 14px;
    line-height: 2;
    font-weight: 400;
  }
  .cou_ul01 li:first-child {
    margin: 0 auto 40px;
  }
  .cou_swip_liing img {
    width: 100%;
  }
  .swl_b {
    position: relative;
  }
  .swl_b_num {
    position: absolute;
    z-index: 9;
    top: -53px;
    font-size: 450%;
    right: 20px;
  }
  .cou_swip_litxt {
    width: 100%;
    float: unset;
  }
  .cou_swip_liing {
    width: 100%;
    float: unset;
    right: 0;
  }
  .k_swipe_box .swipe_block {
    width: 100%;
    left: 0;
  }
  .p-case_ul li {
    width: 48%;
    margin: 0 1% 8%;
    float: left;
  }
  .re_unker_ul {
    margin: 60px auto 0;
  }
  .re_unker_ul li a {
    padding: 40px 0;
    line-height: 1.3;
    font-size: 14px;
  }
  .recruit-head .page_head_desc {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .recruit-head .page_head_tittle {
    font-size: 28px;
  }
  .p-article03__content_in {
    padding: 30px 19px 30px;
    position: relative;
  }
  .recruit-head {
    background-size: contain !important;
    background-position: right;
  }
  .recmem_outbox {
    width: 90%;
    margin: 0 auto 60px;
  }
  .recmem_img {
    height: 227px;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px 20px 0 0;
    position: relative;
  }
  .recmem_ttl {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .recmem_btn_01 {
    margin: 40px auto 0;
    font-size: 14px;
  }
  .recmem_txt01 {
    font-size: 14px;
    line-height: 2;
  }
  .recmem_txtbox_in,
  .recmem_txtbox.left_pos .recmem_txtbox_in {
    padding: 50px 17px;
  }
  .left_pos {
    left: 0;
  }
  .recmem_outbox .inner {
    width: 100%;
  }
  .recmem_txtbox.left_pos {
    border-radius: 0 0 20px 20px;
  }
  .recmem_txtbox {
    min-height: unset;
    width: 100%;
    border-radius: 0 0 20px 20px;
  }
  .newgraduate-head .page_head_tittle,
  .interview-head .page_head_tittle,
  .midcareer-head .page_head_tittle {
    font-size: 28px;
  }
  .newgraduate-head .page_head_desc,
  .interview-head .page_head_desc,
  .midcareer-head .page_head_desc {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .newgraduate:before {
    display: none
  }
  .newgraduate-head:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 256px;
    background: rgb(95, 175, 181);
    background: -moz-linear-gradient(0deg, rgba(95, 175, 181, 1) 0%, rgba(202, 234, 222, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(95, 175, 181, 1) 0%, rgba(202, 234, 222, 1) 100%);
    background: linear-gradient(0deg, rgba(95, 175, 181, 1) 0%, rgba(202, 234, 222, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5fafb5", endColorstr="#caeade", GradientType=1);
    top: 0;
    z-index: -1;
  }
  .newgraduate-head {
    height: 340px !important;
    background-size: 40% auto !important;
    background-position: 100% 100%;
  }
  .ckihaikei a {
    background: #fff;
    display: block;
    position: relative;
    padding: 20px;
    box-shadow: 3px 3px 15px #bdbdbd;
    border-radius: 20px;
  }
  .ckihaikei {
    width: 94%;
    margin: 40px auto 0;
  }
  .interview-head:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 256px;
    background: rgb(152, 181, 121);
    background: -moz-linear-gradient(0deg, rgba(152, 181, 121, 1) 0%, rgba(222, 232, 210, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(152, 181, 121, 1) 0%, rgba(222, 232, 210, 1) 100%);
    background: linear-gradient(0deg, rgba(152, 181, 121, 1) 0%, rgba(222, 232, 210, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#98b579", endColorstr="#dee8d2", GradientType=1);
    top: 0;
    z-index: -1;
  }
  .midcareer-head {
    background-size: 29% auto !important;
    background-position: 90% 100%;
  }
  .midcareer-head:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 256px;
    background: rgb(186, 164, 93);
    background: -moz-linear-gradient(0deg, rgba(186, 164, 93, 1) 0%, rgba(245, 231, 203, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(186, 164, 93, 1) 0%, rgba(245, 231, 203, 1) 100%);
    background: linear-gradient(0deg, rgba(186, 164, 93, 1) 0%, rgba(245, 231, 203, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#baa45d", endColorstr="#f5e7cb", GradientType=1);
    top: 0;
    z-index: -1;
  }
  .midcareer:before {
    display: none
  }
  .interview-head {
    background-size: 44% auto !important;
    background-position: 100% 100%;
  }
  .interview:before {
    display: none
  }
  .form_inner_left .k_ttl03 {
    font-size: 28px;
    margin-bottom: 25px;
  }
  .form_block {
    position: relative;
    margin: 60px auto 100px;
  }
  .form_inner_right {
    display: none;
  }
  .form_inner_left {
    width: 100%;
    float: unset;
    margin: 0;
    padding: 0;
  }
  .form_tx {
    font-size: 14px;
  }
  .form_tx span {
    margin-left: 1px;
  }
  .txt01 {
    font-size: 14px;
  }
  .form_btn {
    margin: 60px auto 0;
  }
  .news-archive-head {
    height: 256px !important;
  }
  .news-archive-head .page_head_tittle {
    font-size: 28px;
  }
  .p-news_left {
    width: 100%;
    margin: 0 auto 90px;
    padding-top: 60px;
  }
  .thum_li {
    width: 104px;
  }
  .p-art_txt_li {
    width: 74%;
    float: left;
    padding-top: 0px;
  }
  .post-body p {
    font-size: 14px;
  }
  .section.news_posts .center_btn {
    margin: 60px auto 0;
  }
  .p-news_right {
    display: none;
  }
  .post-title {
    font-size: 24px;
    margin: 55px auto;
  }
  .section.news_posts {
    margin: 100px auto;
  }
  .casespost-head .page_head_tittle {
    font-size: 40px;
    margin-bottom: 15px;
  }
  .g-nav_list.link_le {
    font-size: 14px;
    color: rgb(186 164 93 / 30%);
    text-align: center;
    background: #fff;
    display: block;
    position: relative;
    padding: 11px 0px;
    border-radius: 100px;
    font-weight: bold;
  }
  .page-navi-ul {
    top: -80px;
  }
  .post_pager_block {
    margin: 100px auto 0;
  }
  .case_posts {
    padding: 55px 20px 20px;
    margin-bottom: 20px;
  }
  .casespost-head .page_head_desc {
    font-size: 20px;
  }
  .serch_post {
    margin: 20px 0 25px;
  }
  .tt_ttl {
    font-size: 16px !important;
    font-weight: bold;
    border-bottom: solid 2px #BAA45D;
    padding-bottom: 15px;
    margin-bottom: 15px !important;
    margin-top: 30px;
  }
  .case-title {
    font-size: 24px;
    margin-bottom: 40px;}
  .form_inner_right_sp {
    display:block;
  }
  .news_inner_right_sp {
    display:block;
  }
  .midcareer .form_inner_right_sp {
    margin: 90px auto 0px;
  }
  .interview .form_inner_right_sp {
    margin: 90px auto 0px;
  }
  .file_comen {
    width: 100%;
    font-size: 16px;
    padding: 25px;
  }
  .file_btn {
    width: 50%;
    margin: 0 0 0 auto;
    float: right;
  }
  .ab_ring_img {
    width: 267.77px;
  }
  .form_inner {
    margin-top: 50px;
  }
  .flow_li_txt {
    padding: 6.5% 0 0;
    width: 72%;
  }
  .flow_ap_box {
    margin-bottom: 22.3%;
  }
  .flow_txt {
    min-height: 50px;
  }
  .ab_en_img {
    width: 338px;
    height: 309.65px;
  }
  .k_img06 {
    width: 90%;
    margin: 0 auto 50px;
  }
  .flow_li_img {
    width: 25%;
  }
  .flow_ap_box2 {
    margin-bottom: 20.5%;
  }
  .a-ser:before {
    background: url(../images/a-ser_sp.jpg);
    background-position: 76% 100% !important;
  }
  .a-ser:after, .b-ser:after, .c-ser:after {
    z-index: 9;
  }
  .b-ser .ser_txt_block:before, .b-ser .ser_txt_block:after{
    display:none
  }
  .c-ser .ser_txt_block:before, .c-ser .ser_txt_block:after{
    display:none
  }

  .c-ser:before {
    background: url(../images/c-ser_sp-1.jpg);
    background-position: 50% 100% !important;left: 0;
  }
  .a-ser:hover:before, .c-ser:hover:before{
    width: 200% !important;
  }
  #g-nav.panelactive .copy_txt {
    margin-bottom: 100px;
  }
  .culture__slide--download {
    margin-left: 75%;
  }
  .p-news-block {
    background: unset;
  }
  .p-news_left:before{
    display:none
  }
  .nav-links {
    margin: 0 auto 0 0;
    text-align: left;
    width: 67%;
  }
  .cases_pager {
    width: 100%;
  }
}

@media screen and (max-width: 700px){
  .flow_ap_box {
    margin-bottom: 20.3%;
  }
  .flow_ap_box2 {
    margin-bottom: 18.5%;
  }
  .culture__slide--download {
    margin-left: 71%;
  }
}

@media screen and (max-width: 600px){
  .flow_ap_box {
    margin-bottom: 13.3%;
  }
  .culture__slide--download {
    margin-left: 68%;
  }
  .main_catch {
    max-width: 176px;
  }
  .main_catch img {
    width: 100%;}
  .main_catch p {
    margin-bottom: 30px;
    font-size: 24px;
  }
  .flow_ap_box2 {
    margin-bottom: 13.5%;
  }
}

@media screen and (max-width: 500px){
  .inner h2,
  .inner h3 {
    text-align: left;
    font-size: 24px;
  }
  .inner h2 {
    margin-bottom: 25px;
  }
  #about_section p {
    font-size: 14px;
    margin-bottom: 50px;
  }
  .ser_txt_block p {
    font-size: 12px;
  }
  .ser_txt_block h4 {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
  }
  .ser_txt_block p span {
    font-size: 10px;
  }


  .thum_img {
    height: 218px;
  }

  #news_section .thum_img ,
  #journal_section .thum_img {
    height: 41.5vw;
  }

  .case_box_in{
    margin: 30px 16px;
    position: relative;
    min-height: unset;
  }


  .blog_ttl {
    font-size: 16px;
    margin: 15px 0 0;
    min-height: 56px;
    max-height: 56px;
  }
  .swiper {
    margin-top: 136px;
  }
  #case_section .swipe_block ,
  #news_section .swipe_block ,
  #journal_section .swipe_block {
    top: 123px;
    right: 17%;
  }

  #case_section:before ,
  #news_section:before ,
  #journal_section:before{
    height: 240px;
    width: 82%;
    top: 86px;
  }
  #case_section ,
  #news_section ,
  #journal_section {
    margin: 90px auto;
  }






  .ser_txt_block {
    padding: 48px 28px 0px 16px;
    width: 65%;
    height: 214px;
  }
  .ser_txt_block:after {
    bottom: 45px;
    right: -18%;
  }
  .ser_txt_block:before {
    right: -18%;
    bottom: 49px;
  }

  .a-ser:before {
    background: url(../images/a-ser_sp2.png);
    background-position: 76% 100% !important;
  }

  .b-ser:before {
    background: url(../images/b-ser_sp2.png);
    background-size: contain;
    background-position: right;
  }

  #about_section {
    margin: 87px auto 98px;
  }
  .inner h3 {
    margin-bottom: 50px;
  }
  #service_section {
    padding: 90px 0 98px;
  }
  .sp_kai {
    display: block
  }
  .seven_ul01 li {
    width: 44%;
    margin: 0 3% 6%;
  }
  .seven_ul01 {
    margin: 0 auto;
  }
  .seven_ul02 li {
    width: 44%;
    margin: 0 3% 6%;
  }
  .seven_ul02 {
    width: 100%;
  }
  table.info_table td {
    padding: 2px 0 2px 15px;
    border-bottom: solid 20px #f5f5f4;
    border-left: solid 1px #707070;
  }
  table.info_table th {
    width: 25%;
    border-bottom: solid 20px #f5f5f4
  }
  footer {
    padding: 50px 0 90px;
  }
  .footer_left .logo {
    margin: 0 auto;
  }
  .footer_right {
    margin-top: 50px;
  }
  .p-footer-nav.left_ds {
    display: none;
  }
  .p-footer-nav {
    width: 239px;
    margin: 0 auto;
    float: unset;
  }
  .p-footer-nav ul li a {
    font-size: 14px;
    color: #BAA45D;
    text-align: center;
    background: #fff;
    display: block;
    position: relative;
    padding: 11px 0px;
    border-radius: 100px;
    font-weight: bold;
  }
  .copy_txt span {
    display: block;
  }
  .copy_txt {
    font-size: 10px;
    line-height: 2;
  }
  .p-footer-nav ul {
    width: 100%;
  }
  .copy_txt span {
    margin: 0;
  }
  .footer_inner {
    margin: 0 auto 50px;
  }
  .copy_txt span:before {
    display: none
  }
  .p-footer-nav ul li {
    margin-bottom: 25px;
    position: relative;
    text-align: center;
  }
  .p-footer-nav ul li span {
    font-size: 15px;
  }
  .un_high {
    margin-bottom: 55px !important;
  }
  .p-footer-nav ul .sub-menu li {
    padding-left: 0;
  }
  .p-footer-nav ul .sub-menu li a {
    font-weight: bold;
  }
  .mi_out {
    width: 252px;
    height: 272px;
  }
  .sub-menu li:before {
    display: none;
  }
  .age_m_img {
    width: 38%;
    right: 16px;
    top: 2%;
  }
  table.age_table02 th {
    width: 32%;
  }
  table.age_table01 th {
    width: 33%;
  }
  table.age_table01 {
    width: 58%;
  }
  .swiper02 {
    margin-top: 120px !important;
  }
  .srayout br {
    display: none
  }
  .k_swipe_box .swiper-slide {
    margin-bottom: 0 !important;
  }
  .recruit-head {
    background: url(/wp-content/uploads/sp_head03.png) no-repeat;
    background-position: right !important;
    background-size: 82% auto !important;
  }
  .serch_inner li {
    font-size: 12px;
    padding: 7px 8px;
    margin: 0 8px 0 0;
  }
  .ser_ttl {
    font-size: 18px;
  }
  .p-article03__title {
    font-size: 14px;
  }
  .p-case_ul li {
    width: 100%;
    margin: 0 auto 30px;
    float: unset;
  }
  span.swiper-pagination-bullet {
    font-size: 20px;
    font-weight: 600;
    margin: 0 10px 0 0;
    padding: 7px;
  }
  .k_swipe_box .swipe_block {
    top: 130px;
  }
  .swl_b_in {
    background: unset;
    padding: 40px 14px 0;
  }
  .re_unker_ul li a {
    padding: 10px 0 26px;
    line-height: 1.5;
    font-size: 12px;
  }
  .re_unker_ul li a span {
    display: block;
    font-size: 105%;
  }
  .re_unker_ul li {
    border-radius: 15px;
  }
  .re_unker_ul li a:after {
    bottom: 8px;
    width: 5px;
    height: 5px;
  }
  .re_unker_ul li a:before {
    bottom: 8px;
    height: 13px;
  }
  .re_unker_ul {
    margin: 40px auto 0;
  }
  .flow_li_txt {
    padding: 4% 0 0;
    width: 70%;
    margin: 0 0 0 5%;
  }
  .flow_ul {
    margin: 0 auto 15px;
  }
  .flow_txt {
    font-size: 12px;
  }
  .flow_ttl {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .vok {
    font-size: 16px !important;
    margin: -10px 0 35px !important;
  }
  .swiper03 {
    border-radius: 20px;
  }
  input[type="text"],
  input[type="email"],
  input[type="url"],
  input[type="password"],
  input[type="search"],
  input[type="number"],
  input[type="tel"],
  input[type="range"],
  input[type="date"],
  input[type="month"],
  input[type="week"],
  input[type="time"],
  input[type="datetime"],
  input[type="datetime-local"],
  input[type="color"],
  textarea {
    padding: 18px 25px;
  }
  .p-article02__content ul:after {
    bottom: -6%;
    right: 4px;
  }
  .p-article02__content ul:before {
    bottom: -6%;
    right: 4px;
    width: 34px;
  }
  .p-art_txt_li {
    width: 65%;
  }
  .p-article02__title {
    font-size: 14px;
    line-height: 1.5;
  }
  .date_cate_txt {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .cate_txt a {
    padding: 5px 8px;}
  .file_comenss label {
    width: 40%;
    padding: 17px 6px;
    margin: 0 0px 15px auto;
    text-align: center;
    line-height: 1.2;
    float: right;
  }
  .link_le {
    font-size: 14px;
    color: rgb(186 164 93 / 30%);
    text-align: center;
    background: #fff;
    display: block;
    position: relative;
    padding: 11px 0px;
    border-radius: 100px;
    font-weight: bold;
  }
  .left_pos .mem_txtbox_in {
    padding: 155px 30px 50px calc(6vw + 16px);
  }
  #member_section h3 {
    width: 90%;
    margin: 0 auto 50px;
  }
  .file_comen {
    padding: 22px 14px;
    width: 100%;
    margin-bottom: 9px;
    font-size: 15px;
  }
  .file_btn {
    width: 100%;
  margin: 4px 0 0 auto;}
  .left_pos {
    margin: 0 0 0 auto;
  }
  .mem_outbox {
    min-height: auto;
  }
  .mem_outbox:last-of-type {
    margin-bottom: 74px;
  }
  #member_section {
    padding: 90px 0;
  }
  .name_txt {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .mem_txtbox_in {
    padding: 155px 30px 50px  calc(6vw + 16px);
  }
  .mem_txtbox_in .sns_link {
    margin: 32px 0 0;
  }
  .mem_txtbox_in .sns_link li {
    padding: 0 24px 0 0;
  }.mem_txtbox_in .sns_link img {
    width: 20px;
  }
  .mem_txtbox {
    top: 75px;
    min-height: auto;
    left: unset;
    right: 0;
    width: 95%;
  }
  .link_le a {
    color: #e5dfcc !important;
  }
  .member_img {
    width: 80%;
  height: 200px;
  }
  .rec_img {
    margin-bottom: 100px;
  }
  #recruit_section {
    padding-bottom: 100px;
  }
  .newsblog_ttl {
    width: 80%;
    font-size: 14px;
  }
  .news_li_img {
    border-radius: 15px;
    height: 144px;
      background-position: 100% 100%;
    margin: 0 auto 50px;
  }
  .searchandfilter label {
    font-size: 11px;
    padding: 8px 6px;
    margin: 0;
  }
  .searchandfilter input[type="submit"] {
    width: 320px;
  }
  .rec_img .image {
    background-size: 170% auto !important;
  }
  .cases-head .page_head_tittle {
    margin-bottom: 15px;
    line-height: 1;
  }
  .cases-head, .casespost-head{
    background: url(/wp-content/uploads/case_headersp.png)center no-repeat;
  }
  .company-head {
    background: url(/wp-content/uploads/company_headersp.png)center no-repeat;
  }
  .pre_li a, .next_li a {
    height: 32px;
    width: 42px;
  }
  .next_li a:before {
    width: 14px;
    right: 14px;
  }
  .next_li {
    margin: 0 0 0 23px;
  }
  .pre_li a:before {
    width: 14px;
    left: 14px;
  }
  .next_li a:after {
    left: 24px;
    margin: auto;
    width: 4px;
    height: 4px;
  }
  .pre_li a:after {
    right: 24px;
    margin: auto;
    width: 4px;
    height: 4px;
  }
  .consulting-head .p-page-header__inner {
    width: 80%;
    margin: 0 0 0 34px;
  }
  .consulting-head:before {
    height: 256px;
  }
  .consulting-head {
    margin-bottom: 20px;
  height: 318px !important;
    background-position: 73% 100% !important;
  }
  .flow_utxt {
    margin-top: 6.5%;
  }
  .interview-head .p-page-header__inner {
    top: 75px;
    margin: 0 0 0 30px;
  }
  #contents_header.privacy-head .page_head_tittle {
    margin: 0;
    font-size: 28px;
    letter-spacing: 2px;
  }
  #contents_header.privacy-head {
    padding: 0;
    height: 154px;
  }
  .interview-head {
    height: 335px !important;
    margin-bottom: 5px;
    background-size: 57% auto !important;
  }
  .spacedel{display:none}
  .interview-head .page_head_desc {
    margin-bottom: 15px;
  }
  .k_ttl061 {
    font-size: 28px;
  }
  #page_s_header {
    height: 100px;
  }
  .p-page-header__inner{
    width: 80%;
    margin: 0 0 0 40px;
  }
  .k_ttl07{text-align: left;}
  .thum_numtxt {
    font-size: 24px;
    left: 4%;
  }
  .case_posts .post-categories-tags {
    display: inline-block;
    margin: 0 0 17px auto;
    width: auto;
  }
  .flow_ap_box {
    margin-bottom: 20.3%;
  }
  .flow_li_txt {
    padding: 9% 0 0;
    width: 67%;
    margin: 0 0 0 5%;
  }
  .flow_txt {
    min-height: 36px;
  }
  .flow_li_img {
    width: 28%;
  }
  .flow_ap_box {
    margin-bottom: 20.5%;
  }
  .flow_ap_box2 {
    margin-bottom: 23.5%;
  }
  .case_thum_img {
    height: 210px;
  }
  .case_posts {
    padding: 40px 17px 20px;
  }
  .post-body li {
  font-size: 14px;}
  .has-large-font-size strong {
    font-size: 18px !important;
  }
  .wp-block-heading {
    font-size: 16px !important;
    font-weight: bold;
    border-bottom: solid 2px #BAA45D;
    padding-bottom: 15px;
    margin-bottom: 15px !important;
    margin-top: 30px;
  }
  figure.wp-block-image {
    margin-bottom: 40px;
  }
  .has-large-font-size {
    line-height: 0.8 !important;
    margin-bottom: 40px !important;
  }
  .post_pager_block .next_li a:after {
    left: 13px;
  }
  .post_pager_block .pre_li a:after {
    right: 13px;
  }
  .cases_pager {
    width: 100%;
  }
  .page-numbers, span.page-numbers.current {
    font-size: 16px;
    padding: 0 23px 0 0;
  }
  .prev.page-numbers:before {
    width: 14px;
    right: 14px;
  }
  .next.page-numbers:before {
    width: 14px;
    right: 14px;
  }
  .next.page-numbers:after {
    right: 14px;
  }
  .prev.page-numbers:after {
    right: 19px;
  }
  .prev.page-numbers {
    right: 54px;
  }
  .prev.page-numbers, .next.page-numbers {
    height: 32px;
    width: 42px;
  }
  .culture__slide--download {
    margin-left: 64%;}
  .case_box_in .post-categories {
    display: inline;
  }
}

@media screen and (max-width: 430px){
  .swiper03, .swiper03 .swiper-slide {
    height:26vh;
  }
  .swiper03 .swiper-wrapper {
    height: 26vh
  }
  .flow_ap_box {
    margin-bottom: 21%;
  }
  .swiper03 {
    border-radius: 15px !important;
  }
  .swiper03 .swiper-slide > img {
    object-fit: cover; /* IE: not support */
    width: 100%;
    height: 100%;
  }
  body#home {
    overflow: hidden;
  }
  #about_section{overflow:hidden}
  .news_box:before {
    right: 1px;
    width: 31px;
  }
  .news_box:after {
    right: 1px;
  }
  .culture__slide--download {
    margin-left: 57%;
  }
  .flow_ap_box3 {
    margin-top: 30%;
  }
  .flow_ap_box2 {
    margin-bottom: 17.5%;
  }
}
	
@media screen and (max-width: 400px){
  .flow_ap_box2 {
    margin-bottom: 15.5%;
  }
  .flow_ap_box3 {
    margin-top: 21%;
  }
  .ab_en_img {
    width: 300px;
    height: 273.65px;
    background: url(../images/serv_img_sp.png)center no-repeat;
    background-size: contain;
    
  }
  .ab_ring_img {
    width: 240.77px;
  }
  .ab_ring_img {
    width: 219.77px;
    top: 17%;
  }
  .newsblog_ttl {
    width: 288px;
  }
  .flow_ap_box {
    margin-bottom: 19%;
  }
}

@media screen and (max-width:390px){
  .flow_ap_box {
    margin-bottom: 18%;
  }
  .culture__slide--download {
    margin-left: 54%;
  }
}

@media screen and (max-width:380px){
  .flow_ap_box {
    margin-bottom: 17%;
  }
  .culture__slide--download {
    margin-left: 53%;
  }
  #g-nav-list_inner {
    margin: 15px auto 30px;
  }
  .g-nav_list {
    margin: 0 auto 25px;
  }
}
@media screen and (max-width:370px){
  .flow_li_txt {
    padding: 7% 0 0;
  }
  .flow_ap_box2 {
    margin-bottom: 9.5%;
  }
  .p-art_txt_li {
    width: 63%;
  }
}



/* seminar section */

#seminar_section {
  position: relative;
  margin: 144px auto 160px;
}

#seminar_section:before {
  position: absolute;
  content: "";
  background: rgb(219,200,140);
  background: -moz-linear-gradient(90deg, rgba(219,200,140,1) 0%, rgba(132,199,204,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(219,200,140,1) 0%, rgba(132,199,204,1) 100%);
  background: linear-gradient(90deg, rgba(219,200,140,1) 0%, rgba(132,199,204,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#dbc88c",endColorstr="#84c7cc",GradientType=1);
  width: 60%;
  right: 0;
  top: 0;
  height: 400px;
  border-radius: 20px 0 0 0;
}



.seminar_box {
  background: #F8F8F8;
  border-radius: 20px;
  box-shadow: 10px 10px 20px rgb(0 0 0 / 16%);
  padding-bottom:1px;
  transition: all 0.3s ease 0s;
  height: 100%;
}

.seminar_box_in {
  margin: 45px 6%;
  position: relative;
  min-height: 122px;
  transition: all 0.3s ease 0s;
}


.category_seminar {
  letter-spacing: 0;
  background: #baa45d;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  margin: 0 10px 8px 0;
  border-radius: 100px;
  display: inline-block;
}

.category_seminar_pr {
  letter-spacing: 0;
  background: #84C7CC;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  margin: 0 10px 8px 0;
  border-radius: 100px;
  display: inline-block;
}

.category_seminar_now {
  letter-spacing: 0;
  background: #D19789;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  margin: 0 10px 8px 0;
  border-radius: 100px;
  display: inline-block;
}


.category_seminar_title {
  letter-spacing: 0;
  background: #fff;
  border:1px solid #baa45d;
  color: #baa45d;
  font-size: 12px;
  padding: 6px 12px;
  margin: 0 10px 8px 0;
  border-radius: 100px;
  display: inline-block;
}

p.seminar_date {
  font-weight: 500;;
  margin-top: 24px;
}

p.seminar_title {
  font-weight: bold;
  margin-top: 12px;

}

p.seminar_contents {
  margin-top: 12px;
  line-height :1.5;
}

#seminar_section span.seminar{
  font-size: 12px;
  font-weight: bold;
  margin-top: 15px;
  display: inline-block;
}

.post-body .post_seminar_date {
  font-weight: 500;
  margin-bottom: 0;
}

@media screen and (max-width : 1000px) {

#seminar_section .swipe_block_in {
  display: table;
  position: relative;
  width: 150px;
}

  #seminar_section .swiper-button-prev.ssne:before,  #seminar_section .swiper-button-next.ssne:after {
    display:block
  }

  #seminar_section .swipe_block_right {
    display: block;

}

}

@media screen and (max-width : 768px) {


#seminar_section .swipe_block_in {
  display: table;
  position: relative;
  width: 150px;
}

  #seminar_section .swiper-button-prev.ssne:before,  #seminar_section .swiper-button-next.ssne:after {
    display:block
  }

  #seminar_section .swipe_block_right {
    display: block;

}

#seminar_section .swipe_block{
  top: 190px;
  left: unset;
  right: 30%;
  width: 40%;
}

#seminar_section:before{
  height: 500px;
  width: 50%;
  top: 120px;
}
}


@media screen and (max-width : 500px) {

  #seminar_section {
    padding: 0;
  }


#seminar_section:before {
  height: 240px;
  width: 82%;
  top: 86px;
}


#seminar_section .swipe_block_in {
  display: block;
  top: 123px;
  right: 17%;

}

.seminar_box_in {
  margin: 30px 16px;
  position: relative;
  min-height: unset;
}
#seminar_section .swipe_block {
  top: 0;
  right: 35%;
}

#seminar_section .swipe_block_left {
  width: 60%;
  float: left;
  position: relative;
}
#seminar_section .swipe_block_right {
  width: 25%;
  float: right;
  position: relative;
}
#seminar_section .swipe_block_in {
  display: table;
  position: relative;
  width: 100px;
}



#seminar_section .swiper-button-prev:before {

  right: 15px;
  width: 15px;

}
#seminar_section .swiper-button-prev:after {
  right: 20px;
}

#seminar_section .swiper-button-next:before {
  right: 15px;
  width: 15px;
}
#seminar_section .swiper-button-next:after {
  right: 15px;
}
#seminar_section .swiper-button-prev {
  height: 32px;
  width: 44px;
  float: left;

}

#seminar_section .swiper-button-next {
  height: 32px;
  width: 44px;
  float: right;
}


}

/*追加タグ*/
.hidden{
  display: none;
}

/* フッターサブメニュー */
.p-footer-nav .menu-item-has-children {
  width: fit-content;
}

.p-footer-nav .menu-item-has-children a {
  padding-left: 0;
  padding-right: 0;
}
.p-footer-nav .menu-item-has-children:hover > .sub-menu {
  opacity: 1; top: 0; visibility: visible;
}
.p-footer-nav .menu-item-has-children .sub-menu {
  line-height: 0.5;
  opacity: 0;
  position: absolute;
  top: 5%;
  right: 0;
  transform: translateY(-105%);
  transition: 0.3s;
  visibility: hidden;
  z-index: 99;
  background: #fff;
  border-radius: 7px;
  padding: 16px 20px;
  box-shadow: 3px 3px 16px #a1a1a1;
  width: 549px;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
}
.p-footer-nav .menu-item-has-children .sub-menu li  > a {
  position: relative;
}

.p-footer-nav .menu-item-has-children .sub-menu li {
  width: 50%;
  margin: 0;
  padding: 0;
  text-wrap: nowrap;
  text-align: center;
}
.p-footer-nav .menu-item-has-children .sub-menu li a {
  display: inline-block;
  width: unset;
  padding: 8px 0;
  font-weight: bold!important;
  line-height: 1em;
}
.p-footer-nav .menu-item-has-children .sub-menu li > a::after {
  content: "\e910";
  font-family: "design_plus";
  position: absolute;
  right: 16px;
}
.p-footer-nav .menu-item-has-children .sub-menu a {
  box-sizing: border-box;
  padding: 11px 5px 11px 35px;
  width: 280px;
  color: #000 !important;
  font-size: 16px;
  text-shadow: unset;
  font-weight: bold;
}
.p-footer-nav .menu-item-has-children .sub-menu a:hover{
  color:#BAA45D !important;
  border: none!important;
}
.p-footer-nav .menu-item-has-children .sub-menu li a:after{
  display:none
}

@media screen and (max-width : 500px) {
  .p-footer-nav .menu-item-has-children {
    width: auto;
  }

  .p-footer-nav .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 11px;
    height: 9px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='9' viewBox='0 0 11 9'%3E%3Cpath id='多角形_19' data-name='多角形 19' d='M5.5,0,11,9H0Z' transform='translate(11 9) rotate(180)' fill='%23baa45d'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 1.5em;
    transform: translateY(-50%);
    transition: 0.3s;
  }

  .p-footer-nav .menu-item-has-children > a.sub-menu-btn-open::after {
    transform: translateY(-50%)rotate(180deg);
  }

  .p-footer-nav .menu-item-has-children .sub-menu {
    position: unset;
    width: 100%;
    height: 0;
    transform: none;
    background: none;
    box-shadow: none;
    gap: 16px;
    padding: 0;
  }
  

  .p-footer-nav .menu-item-has-children > .sub-menu {
    line-height: 0.5;
    opacity: 1;
    position: inherit;
    top: unset;
    right: unset;
    transform: none;
    transition: unset;
    visibility: unset;
    z-index: 10;
    background: unset;
    border-radius: 0;
    padding: 16px 20px;
    box-shadow: none;
    width: 100%;
    font-size: 14px;
    display: none;
    flex-wrap: unset;
    height: auto;
    padding: 11px 0;
  }  

  .p-footer-nav .menu-item-has-children .sub-menu li {
    width: 100%;
    margin: 20px 0!important;
    font-size: 14px;
    padding: 11px 0;
  }

  .p-footer-nav .menu-item-has-children .sub-menu li a {
    width: 100%;
    background: none;
    padding: 0;
    line-height: 1em;
    color: rgba(0, 0, 0, 0.5608)!important;/* #707070乗算 */
  }

  .p-footer-nav ul li.menu-item-has-children a:hover {
    color: #BAA45D;
    opacity: 1;
  }
}

/* journal */
.journal-archive-head {
  background: url(/wp-content/uploads/journal_header.jpg) no-repeat 75%;
}

.search-form-journal {
  display: flex;
  width: 350px;
  margin: 144px auto 80px 0;
  border: 2px solid #BAA45D;
  border-radius: 999px;
  overflow: hidden;
}

.search-form-journal label {
  width: 85%;
}

.search-form-journal label .search-field {
  padding: 0.75em 1em;
  border: none;
  font-size: 14px;
}

.search-form-journal .search-submit {
  width: 15%;
  background: #BAA45D url(../images/journal_search_icon.svg) no-repeat center;
}

.journal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5%;
  padding: 144px 0 100px;
}

.journal .journal_posts {
  max-width: 760px;
}

.journal .new_thum_img {
  margin-bottom: 66px;
}

.journal .new_thum_img video {
  width: 100%;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.journal .journal_side {
  width: 255px;
}

.journal .journal_side .journal_contents {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 100px;
  width: 100%;
}

.journal .post-body {
  margin-bottom: 30px;
}

.journal .journal_side .journal_contents h2 {
  font-size: 32px;
  font-weight: 500;
  padding-bottom: 24px;
  border-bottom: 2px solid #BAA45D;
}

.journal .journal_side .journal_contents_inner .journal-item {
  border-bottom: 2px solid #BAA45D;
}

.journal .journal_side .journal_contents_inner .journal-item .journal-title {
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  padding: 24px 2em 24px 0;
  line-height: 1.2em;
}

.journal .journal_side .journal_contents_inner .journal-item .journal-title::before,
.journal .journal_side .journal_contents_inner .journal-item .journal-title::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  content: "";
  background-color: #000;
  width: 13px;
  height: 2px;
  transition: 0.3s;
}

.journal .journal_side .journal_contents_inner .journal-item .journal-title::after {
  transform: translateY(-50%) rotate(-90deg);
}

.journal .journal_side .journal_contents_inner .journal-item.active .journal-title::after {
  transform: translateY(-50%) rotate(0deg);
}

.journal .journal_side .journal_contents_inner .journal-item .journal-content {
  display: none;
  padding-bottom: 24px;
}

.journal .journal_side .journal_contents_inner .journal-item.active .journal-content {
  display: block;
}

.journal .journal_side .journal_contents_inner .journal-item .journal-content ul li {
  font-size: 13px !important;
  padding: 10px 0 10px 3em;
  text-indent: -2em;
  line-height: 1.2em;
}

.journal .journal_side .journal_contents_inner .journal-item .journal-content ul li .chapter_number,
.journal .journal_side .journal_contents_inner .journal-item .journal-content ul li a {
  color: unset;
  font-size: 13px !important;
}

.post-navigation {
  display: flex;
  width: 100%;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  padding: 16px 0;
  margin: 54px auto;
}

.post-navigation > div {
  width: 50%;
}

.post-navigation .nav-previous {
  border-right: 1px solid #707070;
}

.post-navigation > div a {
  display: block;
  color: #000;
  padding: 1em 1.5em;
  position: relative;
}

.post-navigation .nav-previous a {
  padding-left: 2.5em;
}

.post-navigation .nav-next a {
  padding-right: 2.5em;
}

.post-navigation > div a::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.post-navigation .nav-previous a::before {
  content: url(../images/journal_prev_arrow.svg);
  left: 0.5em;
}

.post-navigation .nav-next a::before {
  content: url(../images/journal_next_arrow.svg);
  right: 0.5em;
}

.post-navigation > div a > span {
  display: block;
  font-size: 14px;
  line-height: 1.5em;
}

.post-navigation > div a .nav-previous-txt,
.post-navigation > div a .nav-next-txt {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0.5em;
}

.post-navigation > div a .nav-next-txt {
  text-align: right;
}

.journal_posts .post-categories-tags {
  display: flex;
  width: 90%;
  margin: 0 0 70px auto;
}

.journal_posts .post-categories {
  margin-left: auto;
}

.journal_posts .post-categories a,
.category-journal {
  letter-spacing: 0;
  background: #baa45d;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  margin: 0 10px 8px 0;
  border-radius: 100px;
  display: inline-block;
}

#journal-result .case_thum_img {
  height: 195px;
}

.journal_index {
  margin-bottom: 40px;
}

.journal_index .journal_index_title {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 16px;
  border-bottom: solid 1px #707070;
}

.journal_index ul {
  margin: 0;
  width: 100%;
  counter-reset: index;
}

.journal_index ul li {
  list-style: none;
  counter-increment: index;
}

.journal_index ul li a{
  display: flex;
  height: 4em;
  color: #000;
  align-items: center;
  border-bottom: solid 1px #707070;
  line-height: 1.25em;
  position: relative;
  padding-left: 3em;
}

.journal_index ul li a::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: counter(index);
  width: 1.8em;
  height: 1.8em;
  display: flex;
  background: #BAA45D;
  color: #fff;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

@media screen and (max-width: 1100px)  {
  #journal-result .case_thum_img {
    height: 15vw; 
  }
  #journal-result .heikei_g {
    padding-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .journal {
    padding-top: 80px;
  }

  .journal .new_thum_img {
    margin-bottom: 32px;
  }

  .journal-archive-head {
    height: 256px !important;
  }

  .journal_posts .post-categories-tags {
    margin-bottom: 0;
  }

  .journal .post-title {
    margin:  1.5em auto;
  }

  .search-form-journal {
    width: 100%;
    margin: 5rem auto 1rem;
  }

  .journal .heikei_g {
    padding: 2rem 0;
  }

  .journal .journal_posts {
    width: 100%;
    margin-bottom: 3rem;
  }

  .journal .journal_side {
    width: 90%;
  }

  #journal-result .case_thum_img {
    height: 23vw;
  }
}

@media screen and (max-width: 500px)  {
  #journal-result .case_thum_img {
    height: 50vw;
  }
}

/* archive-news */
.category-posts {
  width: 100%;
}

.category-posts .swiper {
  width: 100%;
}

/* request-page */
#contents_header.request-head {
  height: 0;
}

.request .form_inner {
  margin-top: 0;
}

.swiper_news {
  overflow: hidden;
  padding: 8px;
}

.swiper_news .swiper-slide {
  box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.1);
  border-radius: 32px;
}

.swiper_news .swiper-slide a {
  transition: all 0.3s ease 0s;
}

.swiper_news .swiper-slide .case_thum_img {
  height: 286px;
}

.category-posts h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 60px;
  display: flex;
  padding: 0 8px;
}

.p-news-inner {
  padding-top: 200px;
}

.p-news-inner .swiper-button-prev,
.p-news-inner .swiper-button-next {
  border-color: #707070;
}

.p-news-inner .swiper-button-prev {
  margin-left: auto;
  margin-right: 16px;
}

.p-news-inner .swiper-button-prev::before,
.p-news-inner .swiper-button-next::before {
  background: #707070;
}

.p-news-inner .swiper-button-prev::after,
.p-news-inner .swiper-button-next::after {
  border-color: #707070;
}

.post-categories .status {
  letter-spacing: 0;
  background: #BAA45D;
  border: solid 1px #BAA45D;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  margin: 0 10px 8px 0;
  border-radius: 100px;
  display: inline-block;
}

.post-categories .status.status-plan {
  background: #84C7CC;
  border-color: #84C7CC;
}

.post-categories .status.status-progress {
  background: #D19789;
  border-color: #D19789;
}

.post-categories .category {
  letter-spacing: 0;
  background: transparent;
  border: solid 1px #BAA45D;
  color: #BAA45D;
  font-size: 12px;
  padding: 6px 12px;
  margin: 0 10px 8px 0;
  border-radius: 100px;
  display: inline-block;
}

.p-news-inner .p-article03__title {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 表示する行数 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

@media screen and (max-width : 768px) {
  .p-news-inner {
    padding-top: 100px;
  }
  .category-posts h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .swiper_news {
    padding: 0;
    width: calc(100% * 10 / 9);
    margin-left: calc((-5% * 10 / 9));
  }
  .p-news-inner .swiper-button-prev, .p-news-inner .swiper-button-next {
    height: 30px;
    width: 40px;
  }
  .swiper-button-prev::before,
  .swiper-button-next::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    width: 4px;
    height: 4px;
  }
  .swiper-button-prev::after {
    left: 27%;
  }
  .swiper-button-next::after {
    right: 27%;
  }
  .swiper_news .swiper-slide .case_thum_img {
    height: 58vw;
  }
}

.news_detail .news_posts .k_inner {
  max-width: 780px;
}

.news_head {
  display: flex;
  flex-wrap: wrap;
}

.news_head .news_head_tags {
  margin-left: auto;
}

.news_head .news_head_tags .tag {
  letter-spacing: 0;
  background: transparent;
  border: solid 1px #BAA45D;
  color: #BAA45D;
  font-size: .8em;
  padding: 6px 12px;
  border-radius: 100px;
  display: inline-block;
}

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

.news_btn_wrap .btn_01 {
  width: 49%;
}

.news_btn_wrap .btn_02 {
  background: rgb(229,214,166);
  background: -moz-linear-gradient(90deg, rgba(229,214,166,1) 0%, rgba(204,138,132,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(229,214,166,1) 0%, rgba(204,138,132,1) 100%);
  background: linear-gradient(90deg, rgba(229,214,166,1) 0%, rgba(204,138,132,1) 100%);
}

.news_category_inner {
  margin-top: 60px;
  padding-top: 60px;
}

.news_category_inner h4 {
  font-size: 20px !important;
  font-weight: bold;
  margin: 20px auto 30px !important;
}

.search_news_category {
  border-bottom: solid 1px;
}

.search_news_category a {
  display: inline-block;
  text-align: center;
  border-radius: 100px;
  font-size: 12px;
  padding: 9px 10px;
  margin: 0 10px 25px 0;
  position: relative;
  border: solid 1px #BAA45D;
  color: #000;
}

.search_news_category a.active {
  background-color: #BAA45D;
  color: #fff;
}

.news-category .case_thum_img {
  height: 256px;
}

@media screen and (max-width : 768px) {
  .news_btn_wrap .btn_01 {
    width: 90%;
  }
  .news_btn_wrap .btn_01:not(:first-of-type) {
    margin-top: 32px;
  }
  .news_head .news_head_tags {
    width: 100%;
  }
}


/* social_section */


#social_container h2 {
  font-weight: bold;
  font-size: 64px;
  color: #BBA45D;
}

#social_container h3 {
  font-weight: bold;
  font-size: 32px;
  color: #BBA45D;
}

#social_container h4 {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 24px;
  color: #000000;
}

#social_container h5 {
  font-weight: bold;
  font-size: 32px;
  color: #000000;
  margin-bottom: 48px;
  line-height: 1.5;
}

#social_container h6 {
  font-weight: bold;
  font-size: 18px;
  color: #000000;
  margin-bottom: 48px;
  line-height: 1.5;
}

#social_container p {
  line-height: 2;
  font-size: 16px;
  text-align: left;
  text-align:justify;
}


.social_inner {
  max-width: 1100px;
  margin: 0 auto;
}


.social_inner_wide {
  margin: 0 auto;
  background-color: #F5F5F4;
}


.social_flexbox {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}

.social_box {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 10px 10px 20px rgb(0 0 0 / 16%);
  padding-bottom: 1px;
  transition: all 0.3s ease 0s;
  padding: 48px 32px;
  vertical-align: top;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  #social_container h2 {
    font-size: 300%;
  }

  #social_container h3 {
    font-size: 150%;
  }

  #social_container h4 {
    font-size: 120%;
    margin-bottom: 16px;
  }

  #social_container h5 {
    font-size: 150%;
    margin-bottom: 24px;
  }

  #social_container h6 {
    font-size: 100%;
    margin-bottom: 24px;
  }

  #social_container p {
    font-size: 14px;
  }

  .social_inner {
    padding: 0 8%;
  }


  .social_flexbox {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
  }

}

@media screen and (max-width: 768px) {

  #social_container h2 {
    font-size: 32px;
  }

  #social_container h3 {
    font-size: 18px;
  }

  #social_container h4 {
    font-size: 16px;
  }

  #social_container h5 {
    font-size: 24px;
  }

  .social_flexbox {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    margin-top: 80px;
  }

  .social_box {
    padding: 32px 24px;
  }

  .social_inner {
    padding: 0 5%;
  }

}


/* social header */

.social-contributions-head {
  background: url("../images/social_header.png")center no-repeat;
  background-position: 92% 100% !important;
}

.social-contributions-head p.page_head_desc {
  font-size: 30px !important;
}


.soc_head_box {
  border: 2px solid rgb(219, 200, 140);
  border-radius: 999px;
  background-color: #FFFFFF;
  height: 360px;
  width: 360px;
  text-align: center;
  margin-top: 5em;
}

.soc_head_box h2 {
  margin-bottom: 40px;
  text-align: center;
  margin-top: 15%;
}

.soc_head_box h3 {
  margin-top: 20%;
}


.soc_head_box span {
  font-weight: bold;
  font-size: 32px;
  display: inline-block;
  color: #BBA45D;
}

.soc_head_box p {
  font-weight: bold;
  color: #BBA45D;
  padding-top: 5%;
  text-align: center !important;
}

@media screen and (max-width: 1100px) {


  .social-contributions-head {
    background: url("../images/social_header_tb.png")center no-repeat;
    background-position: 50% 100% !important;
  }


  .soc_head_box {
    height: 300px;
    width: 300px;
    margin-top: 10em;
  }


  .soc_head_box h2 {
    margin-bottom: 5%;
    text-align: center;
    margin-top: 10%;
  }

  .soc_head_box h3 {
    margin-top: 25%;
  }

  .soc_head_box span {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
.social-contributions-head {
  background: url("../images/social_header_sp.png")center no-repeat;
  background-position: 50% 100% !important;
}
#social_container #contents_header {
  height: 800px;
}

.soc_head_box {
  margin-top: 16em;
}
}

@media screen and (max-width: 600px) {


  #social_container .p-page-header__inner {
    top: 4vh;
  }

  #social_container #contents_header {
    height: 50vh;
    margin-bottom: 20vh;
  }


  .social-contributions-head p.page_head_desc {
    font-size: 24px !important;
  }

  .social-contributions-head .page_head_tittle {
    margin-bottom: 15px;
    line-height: 1;
  }


  .soc_head_box {
    height: 180px;
    width: 180px;
    text-align: center;
    margin-top: 15vh;
  }

  .soc_head_box h2 {
    margin-bottom: 5%;
    text-align: center;
    margin-top: 10%;
  }

  .soc_head_box h3 {
    margin-top: 25%;
  }

  .soc_head_box span {
    font-size: 24px;
  }

  .soc_head_box p {
    font-size: 11px !important;
  }



}

/* social contents common */

#soc_wel,
#soc_luv_wel,
#soc_contribu,
#soc_story {
  padding-top: 144px;
  padding-bottom: 160px;
}


#soc_price,
#soc_vision {
  margin-bottom: 160px;
}

@media screen and (max-width: 1100px) {

  #soc_wel,
  #soc_luv_wel,
  #soc_contribu,
  #soc_story {
    padding-top: 6em;
    padding-bottom: 8em;
  }


}

@media screen and (max-width: 768px) {
  #soc_young {
    padding-top: 6m;
    padding-bottom: 8em;
  }
  #soc_vision{
  padding-bottom: 8em;
  margin-bottom: 0;
}

}


/* soc_wellbeing */

#soc_wel {
  display: flex;
  position: relative;
  justify-content: space-between;
  padding-top: 0;
}


.soc_wel_leftbox {
  width: 55%;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 10px 10px 20px rgb(0 0 0 / 16%);
  transition: all 0.3s ease 0s;
  padding: 48px 32px;
  text-align: center;
}



.soc_wel_lefttopic {
  width: 100%;
  line-height: 1.4em;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.soc_wel_lefttopic .soc_wel_textbox {
  width: 45%;
}

#soc_wel h4 {
  margin-top: 8px;
}


#soc_wel strong {
  font-size: 40px;
  color: #bba45d;
  margin: 24px;
  display: block;
  font-weight: 700;
  clear: both;
}

.soc_wel_lefttopic img {
  width: 45%;
  height: 45%;
}


.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 20px solid #BBA45D;
  border-right: 0;
  position: absolute;
  top: 35%;
  left: 64%;
}

.soc_wel_rightbox {
  width: 25%;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 10px 10px 20px rgb(0 0 0 / 16%);
  transition: all 0.3s ease 0s;
  padding: 48px 32px;

}

.soc_wel_righttopic {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
}


.soc_wel_righttopic .soc_wel_textbox {
  width: 100%;
}

.soc_wel_righttopic img {
  width: 100%;
}


@media screen and (max-width: 1100px) {

  #soc_wel h3 {
    font-size: 120%;
    white-space: nowrap;
    text-align: center;
  }

  #soc_wel h4 {
    margin-top: 8px;
    font-size: 100%;
    text-align: center;
  }

  #soc_wel h5 {
    font-size: 100%;
  }


  #soc_wel strong {
    margin: 16px;
  }

  .soc_wel_leftbox {
    width: 50%;
  }


  .triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 18px solid #BBA45D;
    border-right: 0;
    position: absolute;
    top: 35%;
    left: 61.5%;
  }

}



@media screen and (max-width: 768px) {

  #soc_wel {
    flex-flow: column;
  }

  #soc_wel h3 {
    font-size: 16px;
  }

  #soc_wel h4 {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 16px;
  }

  #soc_wel p {
    font-size: 14px;
    line-height: 2;
  }


  .soc_wel_leftbox {
    width: 100%;
    padding: 24px 12px;
    box-sizing: border-box;

  }

  .soc_wel_lefttopic .soc_wel_textbox {
    width: 50%;
  }

  .soc_wel_lefttopic{
    align-items: center;
}

  #soc_wel strong {
    margin: 16px;
    font-size: 32px;
  }


  .triangle {
    border-top: 18px solid #BBA45D;
    border-bottom: 18px solid transparent;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    position: relative;
    left: 47%;
    margin-top: 32px;
  }


  .soc_wel_rightbox {
    width: 100%;
    padding: 24px 12px;
    box-sizing: border-box;
  
  }

  .soc_wel_righttopic {
    width: 100%;
    line-height: 1.4em;
    display: flex;
    justify-content: space-between;
    flex-flow:row;
    align-items: center;
  }

  .soc_wel_righttopic .soc_wel_textbox {
    width: 50%;
  }

  .soc_wel_rightbox .soc_wel_righttopic img {
    width: 45%;
    height: 45%;
  }

}


@media screen and (max-width: 450px) {

  #soc_wel p {
    font-size: 12px;
    line-height: 1.2;
  }
}


/* soc luvir wellbeing */

#soc_luv_wel {
  margin: 0 auto;
  max-width: 1100px;
}


#soc_luv_wel .social_box {
  width: 42%;
}

p.number {
  color: #BAA45D !important;
  margin: 0 auto;
  border-bottom: 1px solid #BAA45D;
  font-size: 24px !important;
  font-weight: bold;
  width: 24px;
}

#soc_luv_wel h4 {
  color: #BAA45D;
  margin-top: 12px;
}


@media screen and (max-width: 1100px) {
  #soc_luv_wel {
    padding-left: 8%;
    padding-right: 8%;
  }

  #soc_luv_wel .social_box {
    width: 38%;
  }

}

@media screen and (max-width: 768px) {
  #soc_luv_wel .social_box {
    width: auto;
    flex-flow: column;
    margin-bottom: 48px;
  }

}

/* soc katariba */

#soc_contribu .social_flexbox {
  margin-bottom: 80px;
}

#soc_contribu .social_flexbox:first-child {

  align-items: center;
}

.soc_contribu_imgbox {
  width: 50%;
  height: auto;
  margin: 0 auto;
}

.soc_contribu_imgbox img {
  width: auto;
  height: 25em;
  object-fit: cover;
}

.soc_contribu_textbox {
  width: 50%;
  padding-left: 5em;
}



#soc_contribu .social_box {
  width: 22%;
}

#soc_contribu .social_box img {
  height: 48px;
  width: auto;
  padding-bottom: 5%;
}

#soc_contribu .social_box h4 {
  color: #BAA45D;
  font-size: 110%;
}

@media screen and (max-width: 1100px) {
  .soc_contribu_imgbox {
    width: 50%;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }


}

@media screen and (max-width: 768px) {
  #soc_contribu{
    padding-top: 0;
  }

  #soc_contribu .social_flexbox{
    margin-bottom: 0;
  }
  .soc_contribu_imgbox {
    width: 100%;
  }

  .soc_contribu_imgbox img{
    height: 16em;
  }


  .soc_contribu_textbox {
    width: auto;
    padding-left: 0;
    padding-top: 48px;
  }

  #soc_contribu .social_box {
    width: auto;
    margin-bottom: 48px;
  }

  #soc_contribu .social_box img {
    height: 48px;
    width: auto;
    padding-bottom: 5%;
  }

  #soc_contribu .social_box h4 {
    color: #BAA45D;
    font-size: 110%;
  }
}


/* soc youngcarer */

#soc_young {
  height: 500px;
}

.soc_young_textbox {
  padding: 5% 10% 0 20%;
  width: 60%;
  box-sizing: border-box;
  padding-left: calc(50% - 550px);
}

.soc_young_imgbox {
  width: 40%;
  height: 500px;
}

.soc_young_imgbox img {
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1100px) {
  #soc_young {
    height: auto;
    padding-left: 8%;
  }

  #soc_young .social_flexbox {
    margin-top: ;
  }

  .soc_young_textbox {
    padding-left: 0;
  }

  .soc_young_imgbox {
    width: 50%;
    height: 300px;
  }

}

@media screen and (max-width: 768px) {

  #soc_young {
    padding-left: 0;
    padding-bottom: 0;
    display: flex;
  }

  #soc_young .social_flexbox {
    margin-top: 0;
  }

  .soc_young_textbox {
    width: auto;
    padding: 48px 8%;
    order: 2;

  }

  .soc_young_imgbox {
    width: 100vw;
    height: 250px;
    order: 1;
  }

}

/* soc story */

.soc_story_textbox {
  margin-bottom: 48px;
}

#soc_story .soc_flow {
  border-radius: 50px;
  border: 1px solid #BAA45D;
  padding: 8px;
  margin-top: 24px;
}

#soc_story dl {
  display: flex;
}

#soc_story dt{
  padding: 2px;
  display: flex;
  text-align: left;
  align-items: center;
  width: 220px;
  flex-shrink: 0;
}

#soc_story dt span{
  background-color: #BAA45D;
  padding: 22px 20px;
  color: #fff;
  border-radius: 50px;
  margin-right: 24px;
  font-size: 18px;
  font-weight: bold;
}

#soc_story dt p{

  font-size: 18px;
  color: #BAA45D;
  font-weight: bold;

}


#soc_story dd {
  padding: 8px 24px 8px 0;
  display: flex;
  text-align: left;
  align-items: center;
}

#soc_story dd p {
  line-height: 1.4;
}


#soc_story .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 20px solid #BBA45D;
  border-bottom: 20px solid transparent;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  position: relative;
  left: 47%;
  margin-top: 48px;
}

@media screen and (max-width: 1100px) {


  #soc_story .soc_flow {
    margin-top: 8px;
    margin-bottom: 8px;
  }


  #soc_story .triangle {
    margin-top: 32px;
  }

  #soc_story dd p {
    font-size: 13px;
    line-height: 1.2;
  }
}

@media screen and (max-width: 768px)  {


  #soc_story .soc_flow {
    border-radius: 20px;
    padding: 24px;
    margin-top: 24px;
  }

  #soc_story dl {
    display: flex;
    flex-flow: column;
  }

  #soc_story dt {
    border-radius: 50px;
    margin-right: 4px;
    font-size: 16px;
  }

  #soc_story dt span{
    padding: 16px 14px;
    margin-right: 16px;

  }

  #soc_story dd {
    padding: 0;
    margin-top: 16px;
  }

  #soc_story dd p {
    font-size: 14px;
    line-height: 2;
  }

}

/* soc price */

#soc_price {
  border: 5px solid #BAA45D;
  color: #BAA45D;

}

#soc_price {
  padding: 10%;
}

.soc_price_textbox {
  text-align: center;
}

#soc_price h2 {
  display: inline;
  font-size: 490%;
}

#soc_price h4 {
  color: #BBA45D;
}


#soc_price strong {
  font-size: 24px;

}

#soc_price p {
  padding-top: 48px;
  text-align: center;
}

@media screen and (max-width: 1100px) {}

@media screen and (max-width: 768px) {
  #soc_price h2 {
    font-size: 200%;
  }
}


/* soc vision */

#soc_vision {
  height: 500px;
}

.soc_vision_textbox {
  padding: 5% 20% 10% 10%;
  width: 50%;
  box-sizing: border-box;
  padding-right: calc(50% - 550px);
}

.soc_vision_imgbox {
  width: 50%;
  height: 500px;
}

.soc_vision_imgbox img {
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1100px) {


  #soc_vision {
    height: 300px;
  }

  .soc_vision_textbox {
    padding-right: 8%;
  }

  .soc_vision_imgbox {
    height: 300px;
  }

}

@media screen and (max-width: 768px)  {

  #soc_vision {
    height: 100%;
  }

  #soc_vision .social_flexbox {
    margin-top: 0;
  }


  .soc_vision_textbox {
    width: auto;
    padding: 0 8%;
    margin-top: 48px;
    margin-top: 48px;


  }

  .soc_vision_imgbox {
    width: 100vw;
    height: 250px;
  }

}


.article-item.is-hidden {
  display: none;
}

.show-more-button-wrapper {
  text-align: center;
  margin-top: 20px;
}

.show-more-button {
  background: rgb(219, 200, 140);
  background: -moz-linear-gradient(90deg, rgba(219,200,140,1) 0%, rgba(132,199,204,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(219, 200, 140, 1) 0%, rgba(132, 199, 204, 1) 100%);
  background: linear-gradient(90deg, rgba(219, 200, 140, 1) 0%, rgba(132, 199, 204, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#dbc88c",endColorstr="#84c7cc",GradientType=1);
  max-width: 350px;
  display: block;
  text-align: center;
  padding: 23px 0;
  border-radius: 100px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease 0s;
  border: none;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  position: relative;
}

.show-more-button::before,
.show-more-button::after {
  content: "";
  position: absolute;
  right: 1.5em; 
  top: 50%;
  transform: translateY(-50%); 
  background: #fff;
  height: 1px; 
  width: 1em;
}

.show-more-button::before {
}

.show-more-button::after {
  transform: translateY(-50%) rotate(90deg); 
  transition: transform ease-in-out 0.3s;
}

.show-more-button.is-open::after {
  transform: translateY(-50%) rotate(0deg); 
}

.interview .category-posts h2 ,
.news .category-posts h2 {
  margin-bottom: 120px;
}

.interview .category-posts.k_inner,
.news .category-posts.k_inner {
  width: 90%;
}

@media screen and (max-width: 768px)  {
  .interview .category-posts h2 ,
  .news .category-posts h2 {
    margin-bottom: 60px;
  }
}

.wp-block-table td, .wp-block-table th {
	line-height: 1.75em;
}


.whitepaper-archive-head {
  background: url(/wp-content/uploads/whitepaper_header.jpg) no-repeat 75%;
}

@media screen and (max-width: 768px) {
  .whitepaper-archive-head {
    height: 256px !important;
  }
}