@charset "UTF-8";
/* ====================================================
reset style
==================================================== */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:200,300,400,500,600,700,900&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Marcellus&subset=latin-ext");
@import url("https://fonts.googleapis.com/css?family=Italiana");
html {
  overflow-y: scroll;
  font-size: 10px;
  /* Base font size, change to 14px or 16px if needed */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}


.cf:before,
.cf:after {
  content: "";
  display: block;
  overflow: hidden; 
}

.cf:after {
  clear: both; 
}

.cf {
  zoom: 1; 
}

.dsp {
    display: none!important;
}

.dpc {
    display: block!important;
}



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


.dpc {
        display: none!important;
}

.dsp {
        display: block!important;
}

}


.bg_light {
   background:  rgba(244,239,231,0.2);
   padding-top: 50px!important;
}


table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset, img {
  border: 0;
}

img {
  vertical-align: middle;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/*to enable resizing for IE*/
input, textarea, select {
  *font-size: 100%;
}

/*because legend doesn't inherit in IE */
legend {
  color: #000;
}

del, ins {
  text-decoration: none;
}

/* ====================================================
Font
==================================================== */
/* ====================================================
Position & transform
==================================================== */
/* ====================================================
Color
==================================================== */
/* ====================================================
Sizing
==================================================== */
/* ====================================================
Misc
==================================================== */
/* ====================================================
Base style & container
==================================================== */
body {
  color: #000000;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
  font-family: "Noto Sans JP";
  font-size: 15px;
  font-size: 1.5rem;
  overflow: hidden;
}

body.noScroll {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.container {
  display: block;
  margin: 0 auto;
}

.container.container-sm {
  max-width: 1030px;
  padding: 0 15px;
}

.container.container-md {
  max-width: 1230px;
  padding: 0 20px;
}

.container.container-lg {
  max-width: 1530px;
  padding: 0 25px;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media screen and (min-width: 1100px) {
  .tb-sp {
    display: none !important;
  }
}

/* ====================================================
Float & clear
==================================================== */
.clearfix {
  *zoom: 1;
}

.clearfix:before {
  content: "";
  display: table;
}

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

/*
#overview
モジュールスタイルガイド

これはサイト全体に適用されるモジュールのパーツ群です。
必ずこちらのパーツを使用してコーディングするようにお願いします。
*/
/*
#colors
@背景色 #996600
@文字色 #333
@リンク #ccc
*/
/*
#styleguide
パンくずモジュール

パンくずのモジュールです。

@depulicated
@非推奨
@todo
@common

```
<div class="breadcrumb">
<a href='/'>トップページ</a> <i class='fa fa-angle-right' aria-hidden='true'></i> <span>ページ1</span>
</div>

```

*/
/*
#styleguide
見出しモジュール　識別子はttl

見出しモジュールは、セクションごとの見出しとなる要素（HTML5の分類で、「ヘッディングコンテンツ(Heading Content)」となるh1やh2などの要素、見出しとみなすことが出来そうなp要素の事です。
クラス名として識別子、「 ttl 」をつけて管理します。

```
<h1 class="ttlCom01"><span class="ttlCom01In">見出しモジュール</span></h1>
<h2 class="ttlCom02">見出しモジュール</h2>
<h3 class="ttlCom03">見出しモジュール</h3>

```

*/
/*
#styleguide
テキストモジュール　識別子はtxt

テキストモジュールは、p要素やテキストに該当するspan要素などのコンテンツ内の本文のことです。
基本的に、サイト内のテキストはテキストモジュールに該当します。クラス名として識別子「txt」をつけます。

```
<p class="txtBasic">テキストモジュール、識別子は～</p>

```

*/
/*
#styleguide
リンクモジュール　識別子はlink

リンクモジュールは、基本的にa要素のようにリンクが関係するモジュールの事です。クラス名として識別子「link」をつけます。
通常は、テキスト内にリンクが存在する場合にモジュールとして分ける事が多いです。

```
<a href="" class="linkCmn">OOCSS</a>

```

*/
/*
#styleguide
ボタンモジュール　識別子はbtn

ボタンモジュールは、見た目や役割がボタン上の要素の事です。クラス名をつける要素は特に指定はありませんが、button要素やa要素、a要素を囲むdiv要素に付与するパターンが多いです。
クラス名として識別子「btn」をつけます。

```
<div class="btn btnRed">ボタン</div>
<br>
<div class="btn btnBlue">ボタン</div>

```

*/
/*
#styleguide
リストモジュール　識別子はlist

リストモジュールは、リスト状の同じものが連続して並ぶものが該当します。基本的には、ul、ol、dl要素の様な明確にリスト分けされるものが該当しますが、div要素でも構いません。クラス名として識別子「list」をつけます。
また、クラス名を付与する場所はリストの親要素、つまり連続するリストの子要素がliだとすると、ul要素やol要素に識別子「list」を付与したクラス名をつけます。

```
<ul class="listOption">
	<li class="item">HTML</li>
	<li class="item">CSS</li>
	<li class="item">JavaScript</li>
</ul>

```

*/
/*
#styleguide
ボックスモジュール　識別子はbox

ボックスモジュールは、ボックス状のものが該当します。基本的には見出しやテキストなどの要素を含み込むボーダー付きの箱をボックスモジュールとしてみなします。クラス名として識別子「box」をつけます。

```
<div class="boxReading">
	<h2 class="ttlCom01">ボックスモジュールとは</h2>
		<p class="txtCom01">モジュールコーディングという考え方～</p>
		<a href="" class="linkCom01">続きを読む</a>
</div>

```

*/
/*
#styleguide
グリッドモジュール　識別子はgrid（子要素にはcol)

2カラムや3カラムなど、カラム分けするレイアウトのモジュールが該当します。識別子「grid」を付与します。
子要素には「col」を付与します。基本的に、親に「gridXXX」というメインクラスを付与して、「column-2」や「column-3」などカラム数と対応する数字込みのサブクラスを付与します。

```

<div class="gridCom column-3">
	<div class="col">
		<img class="imageCodingDetail" src="img/XXX.jpg">
	<h2 class="ttlCodingDetail">コーディングの秘訣その1</h2>
	<p class="txtCodingDetail">モジュールコーディングという考え方は～</p>
	</div>
	<div class="col">
		<img class="imageCodingDetail" src="img/XXX.jpg">
	<h2 class="ttlCodingDetail">コーディングの秘訣その1</h2>
	<p class="txtCodingDetail">モジュールコーディングという考え方は～</p>
	</div>
	<div class="col">
		<img class="imageCodingDetail" src="img/XXX.jpg">
	<h2 class="ttlCodingDetail">コーディングの秘訣その1</h2>
	<p class="txtCodingDetail">モジュールコーディングという考え方は～</p>
	</div>
</div>


```

*/
/*
#styleguide
FORMモジュール　

フォーム用の部品になります。

```

<form actione="">
<dl>
	<dt>テキスト</dt>
	<dd><input type="text" name="" value=""></dd>
	<dt>パスワード</dt>
	<dd><input type="password" name="passwd" value=""></dd>
	<dt>ラジオボタン</dt>
	<dd><input type="radio" name="" value="" checked="checked" />テスト1
	<input type="radio" name="" value="" />テスト2
	<input type="radio" name="" value="" />テスト3</dd>
	<dt>チェックボックス</dt>
	<dd><input type="checkbox" name="" value="" checked="checked" />テスト1
	<input type="checkbox" name="" value="" />テスト2
	<input type="checkbox" name="" value="" checked="checked" />テスト3</dd>
	<dt>プルダウン</dt>
	<dd><select name="">
	<option value="" selected="selected">テスト1</option>
	<option value="">テスト2</option>
	<option value="">テスト3</option>
	</select></dd>
	<dt>テキストエリア</dt>
	<dd><textarea name="" rows="5" cols="20">テキストエリア</textarea></dd>
</dl>
<div>
	<input type="button" name="btn1" value="汎用ボタン">
	<input type="reset" name="btn2" value="リセット" >
	<input type="submit" name="btn3" value="送信" >
</div>
</form>


```

*/
/* ====================================================
MODULE
==================================================== */
/*パンくずMODULE*/
/*見出しMODULE*/
/*テキストMODULE*/
.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.txt-left {
  text-align: left;
}

/*リンクMODULE*/
/*ボタンMODULE*/
.btn {
  width: 100px;
  height: 50px;
  border: 2px solid #FFCCCC;
  text-align: center;
  line-height: 50px;
}

.btnRed {
  color: red;
  background-color: #FFCCCC;
}

.btnBlue {
  color: white;
  border-color: blue;
  background-color: blue;
}

/*リストMODULE*/
/*ボックスMODULE*/
/*グリッドMODULE*/
/*フォームMODULE*/
.ttl-style01 {
  font-size: 30px;
  font-size: 3rem;
  font-weight: normal;
  font-family: "Marcellus", serif;
  line-height: 1;
  text-align: center;
  margin-bottom: 55px;
}

@media only screen and (max-width: 767px) {
  .ttl-style01 {
    margin-bottom: 30px;
  }
}

.ttl-style02 {
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 40px;
  font-family: "Noto Serif JP", serif;
}

.ttl-style02 span {
  display: block;
  font-size: 60px;
  font-size: 6rem;
  font-weight: normal;
  font-family: "Marcellus", serif;
  line-height: 1;
  text-align: center;
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .ttl-style02 {
    margin-bottom: 20px;
    line-height: 1.4;
  }
  .ttl-style02 span {
    font-size: 40px;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 500px) {
  .ttl-style02 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 321px) {
  .ttl-style02 {
    font-size: 20px;
    font-size: 2rem;
  }
}

.ttl-style03 {
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 30px;
  font-family: "Noto Serif JP", serif;
}

.ttl-style03 span {
  display: block;
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 1;
  margin-bottom: 40px;
  font-family: "Marcellus", serif;
}

@media only screen and (max-width: 767px) {
  .ttl-style03 {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .ttl-style03 span {
    font-size: 40px;
    font-size: 4rem;
    margin-bottom: 20px;
  }
}

.ttl-style04 {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
}

.ttl-style04 span {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 5px;
  font-family: "Marcellus", serif;
  display: block;
}

.ttl-style05 {
  font-size: 72px;
  font-size: 7.2rem;
  text-align: center;
  line-height: 1;
  font-family: "Italiana", serif;
  margin-bottom: 50px;
}

.ttl-style05 img {
  display: inline-block;
  margin: auto;
}

.ttl-style05 .img-txt {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
  font-family: "Noto Sans JP";
  display: block;
  margin: 10px 0px 30px;
  color: #bfa473;
}

.ttl-style05 .sub-text {
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
  margin-top: 22px;
  display: block;
  line-height: 1;
}

@media only screen and (max-width: 1200px) {
  .ttl-style05 {
    font-size: 68px;
    font-size: 6.8rem;
  }
}

@media only screen and (max-width: 767px) {
  .ttl-style05 {
    font-size: 36px;
    font-size: 3.6rem;
    line-height: 1.4;
    margin-bottom: 25px;
  }
}

.ttl-style06 {
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 25px;
  font-family: "Noto Serif JP", serif;
}

.ttl-style06 span {
  display: block;
  font-size: 72px;
  font-size: 7.2rem;
  line-height: 1;
  margin-bottom: 10px;
  font-family: "Italiana", serif;
}

@media only screen and (max-width: 767px) {
  .ttl-style06 {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .ttl-style06 span {
    font-size: 40px;
    font-size: 4rem;
    margin-bottom: 20px;
  }
}

.ttl-style07 {
  font-size: 30px;
  font-size: 3rem;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  line-height: 1;
  position: relative;
  padding-bottom: 20px;
  display: inline-block;
  color: #000000;
}

.ttl-style07:after, .ttl-style07:before {
  content: '';
  position: absolute;
  bottom: 0;
}

.ttl-style07:before {
  width: 100%;
  height: 1px;
  left: 0;
  right: 0;
  background: #000;
  z-index: 1;
}

.ttl-style07:after {
  background: url("../img/recruit/arr-r.png") no-repeat center/cover;
  width: 5px;
  height: 7px;
  right: 0;
  bottom: -3px;
  z-index: 2;
}

.ttl-style07 span {
  display: block;
  font-family: "Italiana", serif;
  font-size: 18px;
  font-size: 1.8rem;
  margin-top: 15px;
}

@media only screen and (max-width: 767px) {
  .ttl-style07 {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .ttl-style07 span {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.btn-style01 {
  display: inline-block;
  color: #bfa473;
  font-size: 15px;
  font-size: 1.5rem;
  font-family: "Marcellus", serif;
  position: relative;
  padding-bottom: 10px;
  line-height: 1;
}

.btn-style01:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: #bfa473;
  bottom: 0;
  left: 0;
}

.btn-style02 {
  display: inline-block;
  color: #000000;
  font-size: 15px;
  font-size: 1.5rem;
  font-family: "Marcellus", serif;
  position: relative;
  padding-bottom: 10px;
  line-height: 1;
}

.btn-style02:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: #000000;
  bottom: 0;
  left: 0;
}

.btn-style03 {
  color: #ffffff;
  font-size: 15px;
  font-size: 1.5rem;
  font-family: "Marcellus", serif;
  line-height: 48px;
  text-align: center;
  width: 100%;
  display: block;
  max-width: 270px;
  background: #bfa473;
  margin: auto;
}

.btn-style04 {
  color: #000000;
  font-size: 20px;
  font-size: 2rem;
  font-family: "Italiana", serif;
  line-height: 53px;
  text-align: center;
  width: 100%;
  display: block;
  max-width: 270px;
  background: transparent;
  margin: auto;
  border: 1px solid;
}

.btn-style05 {
  font-size: 30px;
  font-size: 3rem;
  font-family: "Italiana", serif;
  line-height: 95px;
  text-align: center;
  width: 100%;
  display: block;
  max-width: 560px;
  background: transparent;
  margin: auto;
  border: 1px solid;
  color: #ffffff;
}

.btn-style05 i {
  display: inline-block;
  margin-right: 10px;
}

#main-header {
  position: fixed;
  width: 100%;
  z-index: 9999;
  transition: all 0.3s;
  background: #FFF;
}

#main-header {
	box-shadow: 0px 1px rgba(0, 0, 0, 0.1);
}

#main-header.top-header {
  background: none;
}

#main-header.on {
  background: #ffffff !important;
  transition: all 0.3s;
}

#main-header.entry-header {
  background: #ffffff;
}

#main-header .navGlobal {
  display: -ms-flexbox;
  display: flex;
  padding: 20px 30px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

@media screen and (min-width: 1201px) {
  #main-header .navGlobal.navGlobal01 {
    padding: 20px 170px 20px 30px;
  }
}

#main-header .navGlobal .logo {
  position: relative;
}

#main-header .navGlobal .logo img {
  width: 250px;
}

@media only screen and (max-width: 1200px) {
  #main-header .navGlobal {
    display: block;
    padding: 0px 0px;
    z-index: 999;
  }
  #main-header .navGlobal .logo {
    padding: 20px 0px;
    margin-left: 10px;
  }
  #main-header .navGlobal .logo img {
    width: 200px;
  }
}

#main-header .navGlobal .nav-wrap {
  width: calc(100% - 250px);
  padding-right: 30px;
}

@media only screen and (max-width: 1200px) {
  #main-header .navGlobal .nav-wrap {
    width: 100%;
    padding-right: 0;
    background: #ffffff;
    color: #000000;
    right: -100%;
    position: absolute;
    transition: all 0.3s;
    height: 100vh;
  }
  #main-header .navGlobal .nav-wrap.on {
    right: 0;
    transition: all 0.3s;
  }
}

#main-header .navGlobal .nav-wrap .navGlobalIn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-pack: end;
      justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
  #main-header .navGlobal .nav-wrap .navGlobalIn {
    display: block;
  }
}

#main-header .navGlobal .nav-wrap .navGlobalIn .nav-item {
  padding: 0px 20px;
}

@media only screen and (max-width: 1200px) {
  #main-header .navGlobal .nav-wrap .navGlobalIn .nav-item {
    padding: 20px 10px;
    border-bottom: 1px solid;
  }
  #main-header .navGlobal .nav-wrap .navGlobalIn .nav-item:last-child {
    border-bottom: 0;
  }
}

#main-header .navGlobal .nav-wrap .navGlobalIn .nav-item a {
  font-size: 15px;
  font-size: 1.5rem;
  font-family: "Marcellus", serif;
  position: relative;
  display: block;
}

#main-header .navGlobal .nav-wrap .navGlobalIn .nav-item a:after {
  position: absolute;
  bottom: -10px;
  left: 0;
  content: "";
  display: inline-block;
  width: 0;
  height: 2px;
  background: #4d5057;
  transition: all 0.3s;
}

#main-header .navGlobal .nav-wrap .navGlobalIn .nav-item.on a {
	color: #a37e39;
}

@media only screen and (max-width: 1200px) {
  #main-header .navGlobal .nav-wrap .navGlobalIn .nav-item a:after {
    display: none;
  }
}

#main-header .navGlobal .nav-wrap .navGlobalIn .nav-item a:hover:after {
  width: 100%;
}

@media only screen and (max-width: 1200px) {
  #main-header .navGlobal .nav-wrap .navGlobalIn .nav-item:last-child a {
    border-bottom: 0;
  }
}

#main-header .item-entry {
  position: absolute;
  right: 0;
  top: 0;
  background: #bfa473;
  color: #ffffff;
  text-align: center;
  bottom: 0;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1;
}

#main-header .item-entry a {
  font-family: "Italiana", serif;
  padding: 20px 20px 0px;
  width: 170px;
  display: block;
  height: 100%;
}

@media only screen and (max-width: 1200px) {
  #main-header .item-entry {
    position: relative;
    bottom: unset;
    top: unset;
  }
  #main-header .item-entry a {
    width: 100%;
    padding: 20px;
  }
}

@media only screen and (max-width: 1200px) {
  #main-header .menuBar {
    position: absolute;
    top: 43%;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    bottom: 0;
    padding: 0px 10px;
    right: 0;
    display: block !important;
  }
  #main-header .menuBar span {
    height: 2px;
    display: block;
    width: 30px;
    background: #000000;
    position: relative;
    transition: all 0.3s;
  }
  #main-header .menuBar span:nth-child(1) {
    top: 15px;
  }
  #main-header .menuBar span:nth-child(2) {
    top: 20px;
  }
  #main-header .menuBar span:nth-child(3) {
    top: 25px;
  }
  #main-header .menuBar.on {
    transition: all 0.3s;
  }
  #main-header .menuBar.on span:nth-child(1) {
    top: 24px;
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
  }
  #main-header .menuBar.on span:nth-child(2) {
    opacity: 0;
  }
  #main-header .menuBar.on span:nth-child(3) {
    top: 20px;
    -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
  }
}

#main-footer {
  padding: 60px 12vw 50px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  #main-footer {
    padding: 30px 25px 25px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  #main-footer {
    padding: 60px 10vw 50px;
  }
}

#main-footer.gray-bg {
  background-color: #ebeaef;
}

#main-footer .footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 0px 5.6vw;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  #main-footer .footer {
    padding: 0px 20px;
  }
}

@media only screen and (max-width: 767px) {
  #main-footer .footer {
    display: block;
    padding: 0px 10px;
  }
}

#main-footer .footer .logo-f {
  width: 80px;
  margin-right: 50px;
}

@media only screen and (max-width: 767px) {
  #main-footer .footer .logo-f {
    display: block;
    margin: 0px auto 20px;
  }
}

#main-footer .footer .listNav-f {
  width: calc(100% - 130px);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
}

@media only screen and (max-width: 767px) {
  #main-footer .footer .listNav-f {
    width: 100%;
    -ms-flex-pack: center;
        justify-content: center;
  }
}

@media only screen and (max-width: 767px) {
  #main-footer .footer .listNav-f li {
    margin-bottom: 12px;
  }
}

#main-footer .footer .listNav-f li a {
  padding: 0px 20px;
  display: block;
  border-right: 1px solid;
  font-family: "Marcellus", serif;
  font-size: 13px;
  font-size: 1.3rem;
}

@media only screen and (max-width: 767px) {
  #main-footer .footer .listNav-f li a {
    padding: 0px 17px;
  }
}

@media only screen and (min-width: 768px) {
  #main-footer .footer .listNav-f li:last-child a {
    border-right: 0;
  }
}

#main-footer .listSns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: -10px;
  margin-bottom: 80px;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  #main-footer .listSns {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  #main-footer .listSns {
    margin-top: 20px;
    margin-bottom: 40px;
  }
}

#main-footer .listSns li {
  margin-right: 20px;
}

#main-footer .listSns li:last-child {
  margin-right: 0;
}

#main-footer .listSns .fa {
  font-size: 20px;
  font-size: 2rem;
  color: #999999;
}

#main-footer .coppyRight {
  text-align: center;
  color: #999999;
  font-family: "Marcellus", serif;
  font-size: 14px;
  font-size: 1.4rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}

a:hover {
  opacity: 0.75;
  transition: all 0.3s;
}

@media only screen and (min-width: 768px) {
  a[href^="tel"] {
    pointer-events: none;
  }
}

img {
  max-width: 100%;
}

.scrEvent {
  -ms-transform: translate(0, 50px);
      transform: translate(0, 50px);
  opacity: 0;
  transition: all 1400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.slideUp {
  -ms-transform: translate(0, 0);
      transform: translate(0, 0);
  opacity: 1;
}

.backTop {
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
}

#main-header.entry-header .navGlobal .nav-wrap .navGlobalIn .nav-item a,
#main-footer.entry-footer .footer .listNav-f li a {
  font-family: "Noto Sans JP";
  font-weight: 500;
}

.page-mv {
  position: relative;
}

.page-mv img {
  width: 100%;
  max-width: unset;
}

@media only screen and (max-width: 767px) {
  .page-mv img {
    height: 300px;
    object-fit: cover;
  }
}

.page-mv .ttl-mv {
  font-size: 60px;
  font-size: 6rem;
  line-height: 1.1;
  color: #ffffff;
  position: absolute;
  left: 9.64vw;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  z-index: 2;
  font-family: "Marcellus", serif;
}

.page-mv .ttl-mv .font-ex {
  font-size: 80px;
  font-size: 8rem;
}

.page-mv .ttl-mv .sub-text {
  font-size: 24px;
  font-size: 2.4rem;
  display: block;
  margin-top: 20px;
  line-height: 1;
  font-family: "Noto Serif JP", serif;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .page-mv .ttl-mv {
    font-size: 50px;
    font-size: 5rem;
  }
  .page-mv .ttl-mv .font-ex {
    font-size: 70px;
    font-size: 7rem;
  }
  .page-mv .ttl-mv .sub-text {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media only screen and (max-width: 767px) {
  .page-mv .ttl-mv {
    font-size: 30px;
    font-size: 3rem;
    left: 3vw;
  }
  .page-mv .ttl-mv .font-ex {
    font-size: 38px;
    font-size: 3.8rem;
  }
  .page-mv .ttl-mv .sub-text {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media only screen and (max-width: 767px) {
  .main-content {
    margin-top: 67px;
  }
}

.ss-news {
  background: #ffffff;
  padding: 85px 11.5vw 90px;
}

@media only screen and (max-width: 767px) {
  .ss-news {
    padding: 50px 15px 50px;
  }
}

.ss-news .ss-news-inner .listNews {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8;
}

.ss-news .ss-news-inner .listNews .item {
  margin-right: 3.6%;
  width: 22.3%;
  margin-bottom: 3.6%;
}

@media only screen and (max-width: 767px) {
  .ss-news .ss-news-inner .listNews .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
  }
}

.ss-news .ss-news-inner .listNews .item:nth-child(4n) {
  margin-right: 0;
}

.ss-news .ss-news-inner .listNews .item img {
  width: 100%;
  margin-bottom: 30px;
}

.ss-news .ss-news-inner .listNews .item .date {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 10px;
  color: #989898;
  font-family: "Marcellus", serif;
  display: block;
}

.ss-news .ss-news-inner .listNews .item .btn-style01 {
  margin-top: 20px;
}

.ss-innovation {
  background: url("../img/index/inno-bg.png") no-repeat center/cover;
  padding: 115px 15.6vw 80px;
}

@media only screen and (max-width: 767px) {
  .ss-innovation {
    padding: 50px 25px 45px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .ss-innovation {
    padding: 120px 10vw 65px;
  }
}

.ss-innovation .ss-innovation-inner {
  color: #ffffff;
  font-size: 16px;
  font-size: 1.6rem;
}

.ss-innovation .ss-innovation-inner > p {
  line-height: 1.8;
  font-family: "Noto Serif JP", serif;
}

@media only screen and (max-width: 767px) {
  .ss-innovation .ss-innovation-inner > p {
    text-align: left;
  }
}

.ss-innovation .ss-innovation-inner .listInno {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-top: 75px;
  color: #000000;
}

@media only screen and (max-width: 767px) {
  .ss-innovation .ss-innovation-inner .listInno {
    margin-top: 45px;
  }
}

.ss-innovation .ss-innovation-inner .listInno .item {
  margin-right: 3.6%;
  margin-bottom: 3.6%;
  width: 30.93%;
}

@media only screen and (max-width: 767px) {
  .ss-innovation .ss-innovation-inner .listInno .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
  }
  .ss-innovation .ss-innovation-inner .listInno .item:last-child {
    margin-bottom: 0;
  }
}

.ss-innovation .ss-innovation-inner .listInno .item:nth-child(3n) {
  margin-right: 0;
}

.ss-innovation .ss-innovation-inner .listInno .item .item-content {
  padding: 0px 25px;
}

.ss-innovation .ss-innovation-inner .listInno .item img {
  width: 100%;
  margin-bottom: 23px;
}

.ss-innovation .ss-innovation-inner .listInno .item .ttl {
  margin-bottom: 10px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 768px) {
  .ss-innovation .ss-innovation-inner .listInno .item .ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.ss-innovation .ss-innovation-inner .listInno .item .btn-style02 {
  margin-top: 24px;
}

.ss-product {
  background: #ffffff;
}

.ss-product .ss-product-inner {
  padding: 115px 0px 0px;
  font-size: 16px;
  font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
  .ss-product .ss-product-inner {
    padding-top: 50px;
  }
  .ss-product .ss-product-inner .txt-center {
    padding: 0px 15px;
  }
}

.ss-product .ss-product-inner > p {
  line-height: 1.8;
  font-family: "Noto Serif JP", serif;
}

@media only screen and (max-width: 767px) {
  .ss-product .ss-product-inner > p {
    text-align: left;
  }
}

.ss-product .ss-product-inner .ttl-style01 {
  margin-bottom: 45px;
}

@media only screen and (max-width: 767px) {
  .ss-product .ss-product-inner .ttl-style01 {
    margin-bottom: 30px;
  }
}

.ss-product .ss-product-inner .product-item {
  margin-top: 70px;
  position: relative;
  margin-bottom: 130px;
}

@media only screen and (max-width: 767px) {
  .ss-product .ss-product-inner .product-item {
    margin-top: 35px;
    margin-bottom: 65px;
  }
}

.ss-product .ss-product-inner .product-item.product-item01 {
  margin-bottom: 80px;
}

@media only screen and (max-width: 767px) {
  .ss-product .ss-product-inner .product-item.product-item01 {
    margin-bottom: 40px;
  }
}

.ss-product .ss-product-inner .product-item.product-item01 .item-l {
  text-align: right;
  width: auto;
  margin-left: 35.3%;
}

@media only screen and (max-width: 767px) {
  .ss-product .ss-product-inner .product-item.product-item01 .item-l {
    text-align: left;
    margin-left: 0;
  }
}

.ss-product .ss-product-inner .product-item.product-item01 .item-r {
  left: 0;
  right: unset;
}

.ss-product .ss-product-inner .product-item .item-l {
  width: 64.7%;
  height: 766px;
}

@media only screen and (max-width: 767px) {
  .ss-product .ss-product-inner .product-item .item-l {
    width: 100%;
    height: auto;
  }
}

@media only screen and (min-width: 768px) {
  .ss-product .ss-product-inner .product-item .item-l img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.ss-product .ss-product-inner .product-item .item-r {
  background: #ffffff;
  padding: 5.8vw 5.67vw;
  width: 46.2%;
  line-height: 1.8;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 16px;
  font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
  .ss-product .ss-product-inner .product-item .item-r {
    width: 100%;
    height: auto;
    position: relative;
    padding: 25px;
  }
}

.ss-product .ss-product-inner .product-item .item-r .btn-style01 {
  margin-top: 50px;
}

.ss-product .ss-product-inner .listProduct-wrap {
  position: relative;
}

@media only screen and (min-width: 768px) {
  .ss-product .ss-product-inner .listProduct-wrap .bg-white {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, 0.5);
    top: 0;
    bottom: 0;
    right: 0;
  }
}

.ss-product .ss-product-inner .listProduct {
  padding-left: 15.6vw;
  margin-right: -50px;
  margin-bottom: 125px;
}

@media only screen and (max-width: 767px) {
  .ss-product .ss-product-inner .listProduct {
    margin-right: 0;
    padding-left: 0;
    margin-bottom: 85px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .ss-product .ss-product-inner .listProduct {
    padding-left: 10vw;
  }
}

.ss-product .ss-product-inner .listProduct .item {
  font-size: 15px;
  font-size: 1.5rem;
  margin-right: 50px;
}

@media only screen and (max-width: 767px) {
  .ss-product .ss-product-inner .listProduct .item {
    margin-right: 10px;
  }
  .ss-product .ss-product-inner .listProduct .item .item-content {
    padding: 0px 15px;
  }
}

@media screen and (max-width: 480px) {
  .ss-product .ss-product-inner .listProduct .item {
    margin-right: 0 !important;
  }
}

.ss-product .ss-product-inner .listProduct .item:focus {
  outline: none;
}

.ss-product .ss-product-inner .listProduct .item img {
  margin-bottom: 18px;
  width: 100%;
  max-width: unset;
}

.ss-product .ss-product-inner .listProduct .item .ttl {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  border-bottom: 1px solid;
  padding-bottom: 12px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.ss-product .ss-product-inner .listProduct .item .price {
  font-size: 14px;
  font-size: 1.4rem;
  margin: 23px 0px;
}

.ss-product .ss-product-inner .listProduct .item .price .weight {
  color: #666666;
  display: inline-block;
  margin-right: 10px;
}

.ss-product .ss-product-inner .listProduct .item .price .money {
  font-weight: bold;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
}

.ss-product .slick-next, .ss-product .slick-prev {
  top: -80px;
}

@media only screen and (max-width: 767px) {
  .ss-product .slick-next, .ss-product .slick-prev {
    top: -70px;
  }
}

.ss-product .slick-next:before, .ss-product .slick-prev:before {
  color: #000000;
  content: '';
  opacity: 1;
  position: absolute;
}

.ss-product .slick-next {
  right: 99px;
  left: unset;
}

@media only screen and (max-width: 767px) {
  .ss-product .slick-next {
    right: 49px;
  }
}

.ss-product .slick-next:before {
  background: url("../img/index/btn-next.png") no-repeat center/cover;
  width: 59px;
  height: 59px;
}

.ss-product .slick-prev {
  left: unset;
  right: 160px;
}

@media only screen and (max-width: 767px) {
  .ss-product .slick-prev {
    right: 110px;
  }
}

.ss-product .slick-prev:before {
  background: url("../img/index/btn-pre.png") no-repeat center/cover;
  width: 59px;
  height: 59px;
}

.ss-facility {
  width: 100%;
  position: relative;
}

.ss-facility img {
  width: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 767px) {
  .ss-facility img {
    height: 400px;
  }
}

.ss-facility .facility-inner {
  position: absolute;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  left: 50%;
  bottom: 70px;
  text-align: center;
  z-index: 9;
  color: #ffffff;
  width: 100%;
  font-size: 30px;
  font-size: 3rem;
}

.ss-facility .facility-inner .ttl {
  margin-bottom: 30px;
  line-height: 1;
  font-family: "Marcellus", serif;
}

.ss-facility .facility-inner > p {
  font-family: "Noto Serif JP", serif;
}

.ss-facility .facility-inner .btn-style03 {
  margin-top: 40px;
  font-family: "Noto Serif JP", serif;
}

@media only screen and (max-width: 767px) {
  .ss-facility .facility-inner {
    font-size: 20px;
    font-size: 2rem;
  }
  .ss-facility .facility-inner .ttl {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .ss-facility .facility-inner .btn-style03 {
    margin-top: 20px;
  }
}

.page-bnr {
  padding: 90px 15.6vw 120px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .page-bnr {
    padding: 45px 25px 60px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .page-bnr {
    padding: 90px 10vw 120px;
  }
}

.page-bnr:after {
  content: '';
  position: absolute;
  background: #e5dbc7;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 17.4vw;
  z-index: -1;
}

.page-bnr .page-bnr-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .page-bnr .page-bnr-inner {
    display: block;
  }
}

.page-bnr .page-bnr-inner .bnr-item {
  position: relative;
  overflow: hidden;
}

.page-bnr .page-bnr-inner .bnr-item img {
  transition: all 0.3s;
}

.page-bnr .page-bnr-inner .bnr-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.page-bnr .page-bnr-inner .bnr-item a:hover {
  opacity: 1;
}

.page-bnr .page-bnr-inner .bnr-item a:hover img {
  -ms-transform: scale(1.1);
      transform: scale(1.1);
  transition: all 0.3s;
}

.page-bnr .page-bnr-inner .bnr-item .ttl-style04 {
  position: absolute;
  top: 40%;
  left: 6%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}

.page-bnr .page-bnr-inner .bnr-l {
  width: 50.8%;
  margin-right: 2.26vw;
}

.page-bnr .page-bnr-inner .bnr-l img {
  height: 100%;
  object-fit: cover;
  max-width: unset;
  width: 100%;
}

.page-bnr .page-bnr-inner .bnr-l .bnr-item {
  height: 39.06vw;
}

.page-bnr .page-bnr-inner .bnr-l .bnr-item .ttl-style04 {
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .page-bnr .page-bnr-inner .bnr-l {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .page-bnr .page-bnr-inner .bnr-l .bnr-item {
    height: auto;
  }
}

.page-bnr .page-bnr-inner .bnr-r {
  width: calc(100% - 50.8% - 2.26vw);
}

.page-bnr .page-bnr-inner .bnr-r img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-bnr .page-bnr-inner .bnr-r .bnr-item {
  height: 18.39vw;
  margin-bottom: 2.26vw;
}

.page-bnr .page-bnr-inner .bnr-r .bnr-item:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .page-bnr .page-bnr-inner .bnr-r {
    width: 100%;
    margin-right: 0;
  }
  .page-bnr .page-bnr-inner .bnr-r .bnr-item {
    height: auto;
    margin-bottom: 10px;
  }
}

#page-recruit .page-mv .ttl-mv {
  font-size: 72px;
  font-size: 7.2rem;
  line-height: 1.4;
  font-family: "Italiana", serif;
}

#page-recruit .page-mv .ttl-mv .sub-text {
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  #page-recruit .page-mv .ttl-mv {
    font-size: 30px;
    font-size: 3rem;
    left: 3vw;
  }
  #page-recruit .page-mv .ttl-mv .font-ex {
    font-size: 38px;
    font-size: 3.8rem;
  }
  #page-recruit .page-mv .ttl-mv .sub-text {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  #page-recruit .page-mv .ttl-mv {
    font-size: 62px;
    font-size: 6.2rem;
  }
  #page-recruit .page-mv .ttl-mv .sub-text {
    font-size: 20px;
    font-size: 2rem;
  }
}

.ss-mission {
  background: #ffffff;
  padding: 40px 20px 60px;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .ss-mission {
    padding-bottom: 0;
  }
}

.ss-mission .ss-misstion-inner p {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  line-height: 2.2;
  margin-bottom: 35px;
  text-align: center;
}

@media screen and (max-width: 320px) {
  .ss-mission .ss-misstion-inner p {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 767px) {
  .ss-mission .ss-misstion-inner p {
    text-align: left;
  }
}

.ss-entry {
  margin-bottom: 17.8%;
}

@media screen and (max-width: 880px) {
  .ss-entry {
    margin-bottom: 22%;
  }
}

@media screen and (max-width: 780px) {
  .ss-entry {
    margin-bottom: 25%;
  }
}

@media only screen and (max-width: 767px) {
  .ss-entry {
    margin-bottom: 15px;
  }
}

.ss-entry .ss-entry-inner .entry-item {
  margin-top: 70px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .ss-entry .ss-entry-inner .entry-item {
    margin-top: 10px;
    margin-bottom: 65px;
  }
}

.ss-entry .ss-entry-inner .entry-item .item-l {
  width: 76.8%;
  height: 874px;
}

@media only screen and (max-width: 767px) {
  .ss-entry .ss-entry-inner .entry-item .item-l {
    width: 100%;
    height: auto;
  }
}

.ss-entry .ss-entry-inner .entry-item .item-l .group-img {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ss-entry .ss-entry-inner .entry-item .item-l .group-img li {
  width: 25%;
}

.ss-entry .ss-entry-inner .entry-item .item-l .group-img li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ss-entry .ss-entry-inner .entry-item .item-r {
  background: #bfa473;
  padding: 5.4vw 9.4vw 4.8vw;
  width: 62.5%;
  line-height: 1.8;
  position: absolute;
  right: 0;
  top: 345px;
  top: 39%;
  color: #ffffff;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 1200px) {
  .ss-entry .ss-entry-inner .entry-item .item-r {
    padding: 5.67vw 4.4vw;
    width: 80%;
  }
}

.ss-entry .ss-entry-inner .entry-item .item-r > p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.2;
  margin-bottom: 45px;
  font-family: "Noto Serif JP", serif;
}

@media only screen and (max-width: 767px) {
  .ss-entry .ss-entry-inner .entry-item .item-r {
    width: 100%;
    height: auto;
    position: relative;
    padding: 25px;
  }
}

.ss-entry .ss-entry-inner .entry-item .item-r .btn-style01 {
  margin-top: 50px;
}

.ss-entry .ss-entry-inner .item-content {
  display: -ms-flexbox;
  display: flex;
}

.ss-entry .ss-entry-inner .item-content .item-content-inner {
  margin-right: 40px;
  font-size: 15px;
  font-size: 1.5rem;
  width: 20.7vw;
}

@media screen and (max-width: 1200px) {
  .ss-entry .ss-entry-inner .item-content .item-content-inner {
    width: 28.5vw;
  }
}

@media only screen and (max-width: 767px) {
  .ss-entry .ss-entry-inner .item-content .item-content-inner {
    margin-right: 10px;
    margin-bottom: 20px;
    width: 100%;
  }
  .ss-entry .ss-entry-inner .item-content .item-content-inner:last-child {
    margin-right: 0;
  }
}

.ss-entry .ss-entry-inner .item-content .item-content-inner .box-entry {
  border: 4px solid #ece2d0;
  background: #ffffff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
}

.ss-entry .ss-entry-inner .item-content .item-content-inner .box-entry a {
  display: block;
  padding: 4.2vw 0;
  height: 100%;
  width: 100%;
}

.ss-entry .ss-entry-inner .item-content .item-content-inner:last-child {
  margin-right: 0;
}

.ss-member {
  background: url("../img/recruit/member-bg.jpg") no-repeat center/cover;
  padding: 145px 20px 190px;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .ss-member {
    padding: 80px 20px 100px;
  }
}

@media only screen and (max-width: 767px) {
  .ss-member {
    padding: 70px 20px 80px;
  background: url("../img/recruit/member-bg.jpg") no-repeat center/cover;
  }
}

.ss-member .ss-member-inner {
  color: #ffffff;
  text-align: center;
}

.ss-member .ss-member-inner > p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.2;
  font-family: "Noto Serif JP", serif;
}

@media only screen and (max-width: 767px) {
  .ss-member .ss-member-inner > p {
    text-align: left;
  }
}

.ss-member .ss-member-inner .ttl-style05 .img-txt {
  color: #ffffff;
}

.ss-member .ss-member-inner .btn-style04 {
  margin-top: 60px;
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .ss-member .ss-member-inner .btn-style04 {
    margin-top: 30px;
  }
}

.ss-interview {
  padding: 100px 0px 0px;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .ss-interview {
    padding: 60px 0px 0px;
  }
}

@media only screen and (max-width: 767px) {
  .ss-interview {
    padding: 50px 0px 0px;
  }
}

.ss-interview .ss-interview-inner .slick-dots {
  bottom: -20px;
}

.ss-interview .ss-interview-inner .slick-dots li.slick-active button:before {
  background: red;
}

.ss-interview .ss-interview-inner .slick-dots li button:before {
  content: '';
}

.ss-interview .ss-interview-inner .slick-dots li button {
  border-radius: 50%;
  background: #000;
  width: 10px;
  height: 10px;
}

.ss-interview .ss-interview-inner .slick-dots li.slick-active button:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.ss-interview .ss-interview-inner .interview-top {
  padding: 0px 40px;
}

@media only screen and (max-width: 767px) {
  .ss-interview .ss-interview-inner .interview-top {
    padding: 0px 20px;
  }
}

.ss-interview .ss-interview-inner .interview-top .img-thumb {
  width: 68.5%;
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .ss-interview .ss-interview-inner .interview-top .img-thumb {
    width: 100%;
    margin-bottom: 25px;
  }
}

.ss-interview .ss-interview-inner .interview-top .img-thumb img {
  width: 100%;
  max-width: 100%;
}

.ss-interview .ss-interview-inner .interview-top .interview-top-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 0px 0px 0px 3.68vw;
  max-width: 1200px;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .ss-interview .ss-interview-inner .interview-top .interview-top-content {
    padding-left: 0;
    display: block;
  }
}

.ss-interview .ss-interview-inner .interview-top .interview-top-content .content-l {
  margin-right: 6.11%;
}

.ss-interview .ss-interview-inner .interview-top .interview-top-content .content-l .ttl {
  font-size: 72px;
  font-size: 7.2rem;
  line-height: 1;
  font-family: "Italiana", serif;
}

@media screen and (max-width: 1300px) {
  .ss-interview .ss-interview-inner .interview-top .interview-top-content .content-l .ttl {
    font-size: 50px;
    font-size: 5rem;
  }
}

@media only screen and (max-width: 767px) {
  .ss-interview .ss-interview-inner .interview-top .interview-top-content .content-l {
    padding-right: 0;
  }
  .ss-interview .ss-interview-inner .interview-top .interview-top-content .content-l .ttl {
    font-size: 40px;
    font-size: 4rem;
    margin-bottom: 20px;
  }
}

.ss-interview .ss-interview-inner .interview-top .interview-top-content .content-r {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
}

.ss-interview .ss-interview-inner .interview-top .interview-top-content .content-r .ttl {
  font-size: 48px;
  font-size: 4.8rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.25;
  margin-bottom: 45px;
}

@media screen and (max-width: 1300px) {
  .ss-interview .ss-interview-inner .interview-top .interview-top-content .content-r .ttl {
    font-size: 38px;
    font-size: 3.8rem;
  }
}

@media only screen and (max-width: 767px) {
  .ss-interview .ss-interview-inner .interview-top .interview-top-content .content-r .ttl {
    font-size: 25px;
    font-size: 2.5rem;
    margin-bottom: 25px;
  }
}

.ss-interview .ss-interview-inner .interview-top .interview-top-content .content-r .btn-style04 {
  display: inline-block;
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .ss-interview .ss-interview-inner .interview-top .interview-top-content .content-r .btn-style04 {
    display: block;
  }
}

.ss-interview .ss-interview-inner .interview-main {
  position: relative;
  padding: 0px 16.2vw 25px;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .ss-interview .ss-interview-inner .interview-main {
    padding: 0px 10vw 25px;
  }
}

@media only screen and (max-width: 767px) {
  .ss-interview .ss-interview-inner .interview-main {
    padding: 0px 0px 25px;
  }
}

.ss-interview .ss-interview-inner .interview-main:after {
  content: '';
  position: absolute;
  background: #f3efe7;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 6.4vw;
  z-index: -1;
}

.ss-interview .ss-interview-inner .interview-main .listInterview {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 80px;
}

.ss-interview .ss-interview-inner .interview-main .listInterview .slick-prev, .ss-interview .ss-interview-inner .interview-main .listInterview .slick-next {
  background: transparent;
  top: 40%;
}

.ss-interview .ss-interview-inner .interview-main .listInterview .slick-next:before {
  content: ">";
}

.ss-interview .ss-interview-inner .interview-main .listInterview .slick-prev:before {
  content: '<';
}

.ss-interview .ss-interview-inner .interview-main .listInterview .slick-prev:before, .ss-interview .ss-interview-inner .interview-main .listInterview .slick-next:before {
  opacity: 1;
  position: absolute;
  left: 50%;
  top: 44%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  font-size: 30px;
}

@media only screen and (max-width: 767px) {
  .ss-interview .ss-interview-inner .interview-main .listInterview {
    margin-top: 40px;
  }
}

.ss-interview .ss-interview-inner .interview-main .listInterview .item {
  margin-right: 3.6%;
  margin-bottom: 3.6%;
  width: 30.93%;
}

.ss-interview .ss-interview-inner .interview-main .listInterview .item:nth-child(3n) {
  margin-right: 0;
}

.ss-interview .ss-interview-inner .interview-main .listInterview .item img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .ss-interview .ss-interview-inner .interview-main .listInterview .item {
    margin: 0 0px 20px;
    width: 100%;
  }
}

.ss-interview .ss-interview-inner .interview-main .listInterview .item .ttl {
  font-size: 24px;
  font-size: 2.4rem;
  margin: 10px auto;
  display: inline-block;
  border-bottom: 1px solid;
  line-height: 1.4;
  font-family: "Italiana", serif;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .ss-interview .ss-interview-inner .interview-main .listInterview .item .ttl {
    font-size: 22px;
    font-size: 2.2rem;
    margin: 0 auto;
  }
  .ss-interview .ss-interview-inner .interview-main .listInterview .item .ttl span {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

.ss-interview .ss-interview-inner .interview-main .listInterview .item .ttl span {
  font-size: 36px;
  font-size: 3.6rem;
}

.ss-interview .ss-interview-inner .interview-main .listInterview .item .item-content {
  padding: 20px 30px;
  background: #ffffff;
  line-height: 1.8;
  font-size: 20px;
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
}

@media only screen and (max-width: 767px) {
  .ss-interview .ss-interview-inner .interview-main .listInterview .item .item-content {
    padding: 10px 15px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .ss-interview .ss-interview-inner .interview-main .listInterview .item .item-content {
    padding: 10px 10px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.ss-story {
  padding: 80px 20px 1px;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .ss-story {
    padding: 60px 20px 1px;
  }
}

@media only screen and (max-width: 767px) {
  .ss-story {
    padding: 40px 10px 0px;
  }
}

.ss-story .ss-story-inner .ttl-style05 {
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .ss-story .ss-story-inner .ttl-style05 {
    margin-bottom: 25px;
  }
}

.ss-story .ss-story-inner > p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.2;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}

@media only screen and (max-width: 767px) {
  .ss-story .ss-story-inner > p {
    text-align: left;
  }
}

.ss-story .ss-story-inner .listStory {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-top: 60px;
  margin-bottom: -2px;
}

@media only screen and (max-width: 767px) {
  .ss-story .ss-story-inner .listStory {
    margin-top: 35px;
    display: block;
  }
}

.ss-story .ss-story-inner .listStory .item {
  width: calc(100% / 3);
}

.ss-story .ss-story-inner .listStory .item:nth-child(2n) .item-content {
  background: #d3be97;
}

@media only screen and (max-width: 767px) {
  .ss-story .ss-story-inner .listStory .item {
    width: 100%;
    margin-bottom: 20px;
  }
}

.ss-story .ss-story-inner .listStory .item .item-content {
  padding: 30px 3.4vw 36px;
  background: #bfa473;
  color: #ffffff;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
  .ss-story .ss-story-inner .listStory .item .item-content {
    padding: 15px 3.4vw;
  }
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .ss-story .ss-story-inner .listStory .item .item-content {
    padding: 30px 2.4vw 36px;
  }
}

.ss-story .ss-story-inner .listStory .item .item-content .ttl {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6;
  margin-bottom: 15px;
}

.ss-story .ss-story-inner .listStory .item .item-content .ttl span {
  display: block;
  font-size: 24px;
  font-size: 2.4rem;
}

@media only screen and (max-width: 767px) {
  .ss-story .ss-story-inner .listStory .item .item-content .ttl {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: -0.6px;
  }
}

.ss-company {
  background: #f3efe7;
}

.ss-company .ss-company-inner {
  color: #ffffff;
}

.ss-company .ss-company-inner .ttl-style05 {
  font-family: "Noto Serif JP", serif;
  font-size: 48px;
  font-size: 4.8rem;
}

.ss-company .ss-company-inner .ttl-style05 .img-txt {
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .ss-company .ss-company-inner .ttl-style05 {
    font-size: 35px;
    font-size: 3.5rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .ss-company .ss-company-inner .ttl-style05 {
    font-size: 47px;
    font-size: 4.7rem;
  }
}

.ss-company .ss-company-inner .ss-company-top {
  background: url("../img/recruit/bg-compnay.png") no-repeat center/cover;
  padding: 100px 20px 260px;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .ss-company .ss-company-inner .ss-company-top {
    padding-top: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .ss-company .ss-company-inner .ss-company-top {
    padding: 50px 20px 130px;
  }
}

.ss-company .ss-company-inner .ss-company-top .ttl-style05 {
  margin-bottom: 32px;
}

.ss-company .ss-company-inner .ss-company-top > p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.2;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}

@media only screen and (max-width: 767px) {
  .ss-company .ss-company-inner .ss-company-top > p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 320px) {
  .ss-company .ss-company-inner .ss-company-top > p {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.ss-company .ss-company-inner .listCompany {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  padding: 0px 16.2vw 65px;
  margin-top: -175px;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .ss-company .ss-company-inner .listCompany {
    padding: 0px 10vw 70px;
  }
}

@media only screen and (max-width: 767px) {
  .ss-company .ss-company-inner .listCompany {
    margin-top: -70px;
    display: block;
    padding: 0px 25px 35px;
  }
}

.ss-company .ss-company-inner .listCompany .item {
  margin-right: 30px;
  margin-bottom: 35px;
  width: 30.93%;
}

.ss-company .ss-company-inner .listCompany .item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.ss-company .ss-company-inner .listCompany .item a:hover {
  opacity: 1;
}

.ss-company .ss-company-inner .listCompany .item:nth-child(2) {
  margin-right: 0;
}

.ss-company .ss-company-inner .listCompany .item:nth-child(1), .ss-company .ss-company-inner .listCompany .item:nth-child(2) {
  width: calc((100% - 30px) / 2);
}

.ss-company .ss-company-inner .listCompany .item:last-child {
  margin-right: 0;
}

.ss-company .ss-company-inner .listCompany .item:nth-child(n+3) {
  width: calc((100% - 60px) / 3);
}

.ss-company .ss-company-inner .listCompany .item .ttl {
  font-size: 24px;
  font-size: 2.4rem;
  margin: 10px auto;
  display: inline-block;
  border-bottom: 1px solid;
  line-height: 1.4;
  font-family: "Italiana", serif;
}

.ss-company .ss-company-inner .listCompany .item .item-content {
  padding: 20px 30px;
  background: #ffffff;
  color: #000;
  line-height: 1.8;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
}

.ss-company .ss-company-inner .listCompany .item img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .ss-company .ss-company-inner .listCompany .item {
    width: 100% !important;
    margin: 0px 0px 20px;
  }
}

.entry-access {
  padding: 100px 0px 100px;
  background: url("../img/recruit/bg-01.png") no-repeat center/cover;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .entry-access {
    padding: 60px 0px;
  }
}

@media only screen and (max-width: 767px) {
  .entry-access {
    padding: 50px 0px 50px;
  }
}

.entry-access .entry-access-inner {
  color: #ffffff;
  text-align: center;
}

.entry-access .entry-access-inner .ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-size: 3rem;
  margin-bottom: 55px;
}

@media only screen and (max-width: 767px) {
  .entry-access .entry-access-inner .ttl {
    font-size: 28px;
    font-size: 2.8rem;
    margin-bottom: 30px;
  }
  .entry-access .entry-access-inner .btn-style05 {
    width: 80%;
    line-height: 60px;
  }
}

/* blog-common */
.blog-content {
  padding-top: 74px;
  margin-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .blog-content {
    padding-top: 67px;
    padding-bottom: 50px;
    margin-bottom: 40px;
  }
}

.blog-content .blog-mv {
  position: relative;
  background: url(../img/blog/blog_mv.png) no-repeat center;
  background-size: cover;
  height: 360px;
  margin-bottom: 150px;
}

@media only screen and (max-width: 767px) {
  .blog-content .blog-mv {
    height: 170px;
    margin-bottom: 50px;
  }
}

.blog-content .blog-mv .mv-ttl {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-size: 36px;
  font-size: 3.6rem;
}

@media only screen and (max-width: 767px) {
  .blog-content .blog-mv .mv-ttl {
    font-size: 30px;
    font-size: 3rem;
  }
}

.blog-content .blog-inner {
  max-width: 1010px;
  padding: 0 15px;
  margin: 0 auto;
}

.blog-content .blog-main {
  width: 67.5%;
  float: left;
}

@media only screen and (max-width: 767px) {
  .blog-content .blog-main {
    width: 100%;
    float: none;
    margin-bottom: 65px;
  }
}

.blog-content .blog-side {
  width: 27.6%;
  float: right;
}

@media only screen and (max-width: 767px) {
  .blog-content .blog-side {
    width: 100%;
    float: none;
  }
}

.blog-content .blog-ttl {
  background: #666666;
  border-left: #bca97e solid 8px;
  color: #FFF;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 11px 20px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .blog-content .blog-ttl {
    margin-bottom: 30px;
  }
}

.blog-content .archive-box {
  position: relative;
  border: 1px solid #bfbfbf;
  border-top: 6px solid #000000;
  padding: 25px 0 0;
}

.blog-content .archive-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 6px;
  width: 100%;
  background-color: #ebeaef;
}

.blog-content .archive-box .widget-title {
  text-align: center;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-size: 22px;
  font-size: 2.2rem;
  margin-bottom: 25px;
}

.blog-content .archive-box ul li {
  border-top: 1px dotted #cbcbcb;
  font-size: 14px;
  font-size: 1.4rem;
  color: #bca97e;
  display: block;
  padding: 10px 10px 10px 25px;
}

.blog-content .archive-box ul li:first-of-type {
  border: none;
}

.blog-content .archive-box ul li a {
  position: relative;
  color: #bca97e;
}

.blog-content .archive-box ul li a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #444444;
  border-right: 1px solid #444444;
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}

/* blog-list */
.blog-content .post-box {
  margin-bottom: 100px;
}

@media only screen and (max-width: 767px) {
  .blog-content .post-box {
    margin-bottom: 55px;
  }
}

.blog-content .post-box .post-box-inner {
  border-bottom: 1px solid #c6beb2;
  padding-bottom: 25px;
  margin-bottom: 20px;
}

.blog-content .post-box .img-col {
  width: 40.8%;
  float: left;
}

@media only screen and (max-width: 767px) {
  .blog-content .post-box .img-col {
    width: 100%;
    float: none;
    margin-bottom: 25px;
  }
  .blog-content .post-box .img-col img {
    width: 100%;
  }
}

.blog-content .post-box .txt-col {
  width: 59.2%;
  float: left;
  padding-left: 30px;
}

@media only screen and (max-width: 767px) {
  .blog-content .post-box .txt-col {
    width: 100%;
    float: none;
    padding: 0;
  }
}

.blog-content .post-box .post-ttl {
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .blog-content .post-box .post-ttl {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}

.blog-content .post-box .txt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 10px;
}

.blog-content .post-box .more-btn {
  font-size: 14px;
  font-size: 1.4rem;
}

.blog-content .post-box .more-btn a {
  color: #bca97e;
  padding-bottom: 7px;
  border-bottom: 1px solid #ddd4be;
}

.blog-content .post-foot {
  text-align: right;
  font-size: 0;
}

.blog-content .post-foot > div {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
  margin-left: 25px;
  padding-left: 22px;
}

@media only screen and (max-width: 767px) {
  .blog-content .post-foot > div {
    margin-left: 15px;
  }
}

.blog-content .post-foot > div::after {
  position: absolute;
  top: 50%;
  left: 0;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  display: block;
  height: 18px;
  width: 19px;
  background-size: 100% auto;
}

.blog-content .post-foot > div.data::after {
  background-image: url(../img/blog/data_ico.png);
}

.blog-content .post-foot > div.view::after {
  background-image: url(../img/blog/view_ico.png);
}

.blog-content .post-foot > div.cate::after {
  background-image: url(../img/blog/list_ico.png);
}

/* blog-detail */
.blog-content .detail-head {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
  .blog-content .detail-head {
    display: block;
    margin-bottom: 35px;
  }
}

.blog-content .sns {
  margin-left: auto;
}

.blog-content .data {
  color: #666666;
  line-height: 1.2;
}

@media only screen and (max-width: 767px) {
  .blog-content .data {
    margin-bottom: 10px;
  }
}

.blog-content .data .cate {
  display: inline-block;
  color: #bca97e;
  border-left: 1px solid #8c8c8c;
  padding-left: 10px;
  margin-left: 10px;
}

.blog-content .text-area {
  padding-bottom: 120px;
  border-bottom: 1px solid #b9b3aa;
}

@media only screen and (max-width: 767px) {
  .blog-content .text-area {
    padding-bottom: 50px;
  }
}

.blog-content .text-area p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 45px;
}

@media only screen and (max-width: 767px) {
  .blog-content .text-area p {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
}

.blog-content .text-area a {
  color: #bca97e;
}

.blog-content .text-area img {
  margin-bottom: 45px;
}

@media only screen and (max-width: 767px) {
  .blog-content .text-area img {
    margin-bottom: 25px;
  }
}

.blog-content .new-post {
  padding: 35px 0 0;
}

.blog-content .new-post .ttl {
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 45px;
}

@media only screen and (max-width: 767px) {
  .blog-content .new-post .ttl {
    margin-bottom: 25px;
  }
}

.blog-content .new-post .new-post-list {
  overflow: hidden;
}

.blog-content .new-post .new-post-list a {
  display: block;
}

.blog-content .new-post .new-post-list li {
  width: 30.25%;
  float: left;
  margin: 0 0 0 4.625%;
  color: #bca97e;
  font-size: 15px;
  font-size: 1.5rem;
}

@media only screen and (max-width: 767px) {
  .blog-content .new-post .new-post-list li {
    width: 100%;
    margin: 0 0 30px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.blog-content .new-post .new-post-list li:first-of-type {
  margin-left: 0;
}

.blog-content .new-post .new-post-list li .img {
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

.blog-content .new-post .new-post-list li .img::after {
  content: "";
  display: block;
  padding-top: 66.5%;
}

.blog-content .new-post .new-post-list li .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .blog-content .new-post .new-post-list li .img {
    margin-bottom: 15px;
  }
}

.blog-content .new-post .new-post-list li a {
  color: #bca97e;
}

.wp-pagenavi {
  padding: 25px 0 0;
  text-align: center;
  font-size: 0;
}

@media only screen and (max-width: 767px) {
  .wp-pagenavi {
    padding-top: 0;
  }
}

.wp-pagenavi span, .wp-pagenavi a {
  display: inline-block !important;
  height: 35px;
  width: 35px;
  line-height: 35px;
  border: none !important;
  font-size: 14px !important;
  color: #222222 !important;
  margin: 0 7px !important;
  padding: 0 !important;
  border-radius: 50px;
}

@media only screen and (max-width: 767px) {
  .wp-pagenavi span, .wp-pagenavi a {
    height: 25px;
    width: 25px;
    line-height: 20px;
    margin: 0 4px !important;
    font-size: 12px !important;
  }
}

.wp-pagenavi span.pages, .wp-pagenavi span.extend, .wp-pagenavi a.pages, .wp-pagenavi a.extend {
  display: none !important;
}

.wp-pagenavi span.last, .wp-pagenavi span.first, .wp-pagenavi a.last, .wp-pagenavi a.first {
  border-radius: 0;
  width: inherit !important;
  background: none !important;
}

.wp-pagenavi span.current, .wp-pagenavi span:hover, .wp-pagenavi a.current, .wp-pagenavi a:hover {
  font-weight: normal !important;
  background: #f7f4ef;
}

.txt-404 {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  .txt-404 {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.txt-404 a {
  color: #bca97e;
  text-decoration: underline;
}


.item .item-content i {
	font-size: 12px;
	color: #999;
}

/*# sourceMappingURL=maps/styles.css.map */