@charset "UTF-8";
/* ========================================================
 reset.css
======================================================== */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6,
main,
article,
aside,
figcaption,
figure,
footer,
header,
nav,
section,
img,
embed,
iframe,
object,
audio,
video,
area,
button,
input,
label,
select,
summary,
textarea,
div,
a,
span {
  box-sizing: border-box;
  word-break: unset;
}

html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  display: block;
}

main,
article,
aside,
figcaption,
figure,
footer,
header,
nav,
section {
  display: block;
}

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

img,
embed,
iframe,
object,
audio,
video {
  height: auto;
  max-width: 100%;
}

button {
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

html {
  box-sizing: border-box;
  line-height: 1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

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

th,
td {
  padding: 0;
  font-weight: normal;
  text-align: left;
}

iframe {
  border: 0;
}

img {
  vertical-align: bottom;
}

/* ========================================================
 フォームの基本設定
======================================================== */
/* フォームのデフォルトスタイルをリセット
=========================================== */
select {
  margin: 0;
  padding: 0;
  border: 0;
  border: none;
  border-radius: 0;
  background: none transparent;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "游ゴシック", sans-serif;
  -webkit-appearance: none;
  /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none;
  /* ベンダープレフィックス(Firefox用) */
  appearance: none;
  /* 標準のスタイルを無効にする */
}
@media screen and (max-width: 767px) {
  select {
    font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "游ゴシック", sans-serif;
  }
}

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

textarea {
  border: none;
  border-radius: 0;
  resize: vertical;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input:not([type=radio]) {
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}

input[type=submit] {
  vertical-align: middle;
  cursor: pointer;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=button],
input[type=num],
select,
textarea {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "游ゴシック", sans-serif;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  input[type=text],
input[type=tel],
input[type=email],
input[type=button],
input[type=num],
select,
textarea {
    font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "游ゴシック", sans-serif;
    font-size: 1.6rem;
  }
}
/* chromeの履歴の背景色
------------------------------ */
input:-webkit-autofill {
  box-shadow: 0 0 0 999px #fff inset;
}

/* iOSでのデフォルトスタイルをリセット
------------------------------ */
input[type=submit],
input[type=button] {
  border: none;
  border-radius: 0;
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/* placeholderの色を変更(カンマで複数区切りは出来ない)
------------------------------ */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #bbb;
  font-weight: 500;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #bbb;
  font-weight: 500;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #bbb;
  font-weight: 500;
}

/* ========================================================
 slickのカスタマイズ
======================================================== */
.slide-arrow {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 0;
  border: 1px solid #b89f38;
  z-index: 1;
  opacity: 0.85;
  transition: background-color 0.2s ease-in-out;
}
.slide-arrow.prev-arrow {
  top: calc(50% - 20px);
  left: -44px;
  background: url("../../img/common/base/prev-arrow01.svg") no-repeat 44% 50%;
  background-color: #fff;
  background-size: 8px 15px;
}
@media screen and (max-width: 767px) {
  .slide-arrow.prev-arrow {
    left: -24px;
  }
}
.slide-arrow.prev-arrow:hover {
  background-color: #e1e0cb;
}
.slide-arrow.next-arrow {
  top: calc(50% - 20px);
  right: -48px;
  background: url("../../img/common/base/next-arrow01.svg") no-repeat 52% 50%;
  background-color: #fff;
  background-size: 8px 15px;
}
@media screen and (max-width: 767px) {
  .slide-arrow.next-arrow {
    right: -24px;
  }
}
.slide-arrow.next-arrow:hover {
  background-color: #e1e0cb;
}
.slide-arrow.slick-disabled {
  display: none !important;
}

.none-arrow {
  display: none;
}

/* ========================================================
JavaScript
======================================================== */
/* ========================================================
汎用クラス
======================================================== */
/* switch
=========================================== */
.hdn-sp {
  display: block;
}

.view-sp {
  display: block;
}

.hdn-tb {
  display: block;
}

.view-tb-l {
  display: none;
}

.view-tb {
  display: none;
}

.hdn-pc {
  display: none;
}

@media screen and (max-width: 1200px) {
  .view-tb-l {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  .hdn-tb {
    display: none;
  }

  .view-tb {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .hdn-sp {
    display: none;
  }

  .view-sp {
    display: block;
  }

  .hdn-pc {
    display: block;
  }
}
/* clearfix
=========================================== */
.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/* ========================================================
共通クラス
======================================================== */
.cmn-inner-l {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .cmn-inner-l {
    padding: 0 16px;
  }
}

.cmn-inner-m {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .cmn-inner-m {
    padding: 0 16px;
  }
}

.cmn-inner-s {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .cmn-inner-s {
    padding: 0 16px;
  }
}

/* anchor
=========================================== */
.cmn-anchor01 {
  pointer-events: none;
  margin-top: -100px;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .cmn-anchor01 {
    margin-top: -84px;
    padding-top: 84px;
  }
}

.cmn-sec-mv {
  background-color: #4d4d4d;
  padding: 200px 0 104px;
}

@media screen and (max-width: 767px) {
  .cmn-sec-mv {
    padding: 96px 0 48px;
  }
}
/* title
=========================================== */
/* .cmn-ttl-box01
------------------------------ */
.cmn-ttl-box01 {
  display: inline-block;
  position: relative;
}

.cmn-ttl-box01 .page-ttl {
  position: relative;
  z-index: 1;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 46px 94px;
}
.cmn-ttl-box01 .page-ttl__jp {
  font-size: 3.6rem;
  font-weight: 700;
  font-family: "Outfit", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "游ゴシック", sans-serif;
}
.cmn-ttl-box01 .page-ttl__en {
  margin: 2px 0 0 20px;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Outfit", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "游ゴシック", sans-serif;
  line-height: 1.3;
}
.cmn-ttl-box01 .page-ttl .line {
  position: absolute;
  left: 0;
  bottom: calc(50% - 1px);
  width: 72px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 767px) {
  .cmn-ttl-box01 .page-ttl {
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
    padding: 24px 60px;
    letter-spacing: 0.06em;
  }
  .cmn-ttl-box01 .page-ttl__jp {
    font-size: 2.4rem;
    font-weight: 700;
    font-family: "Outfit", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "游ゴシック", sans-serif;
  }
  .cmn-ttl-box01 .page-ttl__en {
    margin: 8px 0 0 2px;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: "Outfit", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "游ゴシック", sans-serif;
  }
  .cmn-ttl-box01 .page-ttl .line {
    position: absolute;
    left: 0;
    bottom: calc(50% - 1px);
    width: 48px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.6);
  }
}
.cmn-ttl-box01 .ttl-bg {
  background-color: #f4e803;
  position: absolute;
  width: calc(100% - 32px);
  height: 100%;
  bottom: -16px;
}

/* list
=========================================== */
/* .cmn-list01
------------------------------ */
.cmn-list01 {
  margin-top: 44px;
}
.cmn-list01__item:last-child .data-block {
  border-bottom: 1px solid #4d4d4d;
}

.cmn-list01 .data-block {
  border-top: 1px solid #4d4d4d;
  padding: 20px 24px;
}
.cmn-list01 .data-block__ttl, .cmn-list01 .data-block__txt {
  line-height: 1.5;
}
.cmn-list01 .data-block__ttl {
  color: #000;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 6px;
}

@media screen and (max-width: 767px) {
  .cmn-list01 .data-block {
    width: 100%;
    padding: 16px;
  }
  .cmn-list01 .data-block__ttl {
    position: relative;
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
}
.cmn-list01 .data-block .txt-list__item {
  line-height: 1.5;
  padding-left: 1em;
  text-indent: -1em;
}
.cmn-list01 .data-block .txt-list__item + .txt-list__item {
  margin-top: 8px;
}

/* ========================================================
cmn-pagenavi
======================================================== */
.cmn-pagenavi {
  margin-bottom: -10px;
  text-align: center;
}
.cmn-pagenavi .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}
.cmn-pagenavi .page-item {
  display: inline-block;
}
.cmn-pagenavi a,
.cmn-pagenavi span {
  display: inline-block;
  margin: 0 2px 10px;
  padding: 14px 10px;
  border: 1px solid #808080;
  color: #4d4d4d;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0.1, 0.3, 1);
}
.cmn-pagenavi span {
  font-size: 2.1rem;
  font-weight: 700;
  border: none;
  margin: 0 0 10px;
  padding: 12px 10px;
  vertical-align: -3px;
}
.cmn-pagenavi a:hover {
  background-color: #f4e803;
}
.cmn-pagenavi .current span {
  background-color: #4d4d4d;
  border: 1px solid #4d4d4d;
  color: #fff;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .cmn-pagenavi {
    margin-bottom: -12px;
  }
  .cmn-pagenavi a,
.cmn-pagenavi span {
    margin: 0 2px 10px;
    padding: 10px 8px;
    font-size: 1.3rem;
  }
  .cmn-pagenavi span {
    font-size: 1.6rem;
    padding: 8px 6px;
    vertical-align: -2px;
  }
}
/* others
=========================================== */
/* ========================================================
サイト全体
======================================================== */
html {
  font-size: 62.5%;
}

body,
textarea {
  position: relative;
  color: #4d4d4d;
  font-weight: 400;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "游ゴシック", sans-serif;
  line-height: 1;
  letter-spacing: 0.04em;
  font-size: 1.6rem;
  word-wrap: break-word;
  word-break: unset;
}

@media screen and (max-width: 767px) {
  body {
    font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "游ゴシック", sans-serif;
    letter-spacing: 0.01em;
    font-size: 1.4rem;
    -webkit-text-size-adjust: 100%;
  }
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* ========================================================
glb-wrapper
======================================================== */
.glb-wrapper {
  position: relative;
}

/* ========================================================
glb-header
======================================================== */
.glb-header {
  position: fixed;
  width: 100%;
  height: 100px;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (max-width: 1023px) {
  .glb-header {
    height: 64px;
  }
}

.body-index .glb-header {
  position: absolute;
  top: unset;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .body-index .glb-header {
    position: fixed;
    top: 0;
    bottom: unset;
    left: 0;
  }
}

.body-index .glb-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.glb-header__in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 32px;
  width: 100%;
  height: 100%;
  background-color: #1d1e1f;
  transition: background-color 0.3s ease-in-out;
}
@media screen and (max-width: 1200px) {
  .glb-header__in {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1023px) {
  .glb-header__in {
    padding: 0 12px;
  }
}
@media screen and (max-width: 767px) {
  .glb-header__in {
    padding: 0 16px;
    background-color: transparent;
  }
}

@media screen and (max-width: 767px) {
  .glb-header.is-fill .glb-header__in {
    background-color: #1d1e1f;
  }
}

.body-index .glb-header__in {
  background-color: #f4f4f4;
}
@media screen and (max-width: 767px) {
  .body-index .glb-header__in {
    background-color: transparent;
  }
}

/* .site-ttl
=========================================== */
.glb-header .site-ttl a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.glb-header .site-ttl .logo-wrap {
  position: relative;
}

.glb-header .site-ttl .logo {
  width: 57px;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 1023px) {
  .glb-header .site-ttl .logo {
    width: 46px;
  }
}
@media screen and (max-width: 767px) {
  .glb-header .site-ttl .logo {
    opacity: 0;
  }
}

.glb-header .site-ttl .txt {
  position: relative;
  padding-left: 12px;
  width: calc(160px + 12px);
}
@media screen and (max-width: 1200px) {
  .glb-header .site-ttl .txt {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .glb-header .site-ttl .txt {
    display: block;
  }
}
.glb-header .site-ttl .txt img {
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .glb-header .site-ttl .txt img {
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  .glb-header .site-ttl .txt.sp-none {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .glb-header.is-fill .site-ttl .logo {
    opacity: 1;
  }
}

.glb-header.is-fill .site-ttl .txt img {
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .glb-header.is-fill .site-ttl .txt img {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .glb-header .site-ttl .white-logo {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 46px;
    height: 39px;
    background-image: url("../../img/common/base/logo01_white.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .glb-header.is-fill .site-ttl .white-logo {
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  .glb-header .site-ttl .white-logo-txt {
    position: absolute;
    top: 2px;
    left: 12px;
    display: block;
    width: 160px;
    height: 12px;
    background-image: url("../../img/common/base/logo_txt01_white.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
  }
  .glb-header .site-ttl .white-logo-txt img {
    transition: opacity 0.3s ease-in-out;
  }
}
@media screen and (max-width: 767px) {
  .glb-header.is-fill .site-ttl .white-logo-txt {
    opacity: 0;
  }
  .glb-header.is-fill .site-ttl .white-logo-txt img {
    opacity: 0;
  }
}
/* .header-nav
=========================================== */
@media screen and (max-width: 767px) {
  .glb-header .header-nav {
    display: none;
  }
}

.glb-header .header-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.glb-header .header-nav-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 4px;
}
@media screen and (max-width: 1023px) {
  .glb-header .header-nav-list__item {
    margin: 0 2px;
  }
}
.glb-header .header-nav-list__item a {
  display: block;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  padding: 18px 28px;
  transition: border 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
@media screen and (max-width: 1360px) {
  .glb-header .header-nav-list__item a {
    padding: 12px 16px;
  }
}
@media screen and (max-width: 1200px) {
  .glb-header .header-nav-list__item a {
    padding: 12px 16px;
  }
}
@media screen and (max-width: 1023px) {
  .glb-header .header-nav-list__item a {
    padding: 8px;
  }
}

.glb-header .header-nav-list__item.item-contact a {
  padding: 18px 24px;
  padding-right: calc(24px + 56px);
  border: 1px solid #b69a28;
  background-image: url("../../img/common/base/icon_arrow01_white.svg");
  background-repeat: no-repeat;
  background-size: 26px 6px;
  background-position: top 50% right 24px;
}
@media screen and (max-width: 1360px) {
  .glb-header .header-nav-list__item.item-contact a {
    padding: 12px 16px;
    padding-right: calc(16px + 40px);
  }
}
@media screen and (max-width: 1023px) {
  .glb-header .header-nav-list__item.item-contact a {
    padding: 8px;
    padding-right: calc(8px + 26px);
    background-size: 17px 4px;
    background-position: top 50% right 8px;
  }
}

.glb-header .header-nav-list__item.item-contact a {
  background-image: url("../../img/common/base/icon_arrow01.svg");
}

.glb-header .header-nav-list__item .item-jp {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .glb-header .header-nav-list__item .item-jp {
    font-size: 1.3rem;
  }
}

.body-index .glb-header .header-nav-list__item .item-jp {
  color: #1d1e1f;
}

.glb-header .header-nav-list__item .item-en {
  display: block;
  padding-top: 14px;
  text-align: center;
  color: #a3914a;
  font-size: 1rem;
  font-family: "Outfit", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "游ゴシック", sans-serif;
  font-weight: 300;
}
@media screen and (max-width: 1023px) {
  .glb-header .header-nav-list__item .item-en {
    padding-top: 8px;
  }
}

@media (any-hover: hover) {
  .glb-header .header-nav-list__item a:hover {
    border: 1px solid #000;
    background-color: #000;
  }

  .glb-header .header-nav-list__item.item-contact a:hover {
    border: 1px solid #b69a28;
  }

  .body-index .glb-header .header-nav-list__item a:hover {
    border: 1px solid #b69a28;
    background-color: #e1e0cb;
  }
}
/* glb-search-btn
=========================================== */
.glb-search-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .glb-search-btn {
    display: block;
    position: absolute;
    top: 12px;
    right: 112px;
    width: 80px;
    height: 40px;
    text-align: center;
    border: 1px solid #fff;
    padding: 8px 8px;
    font-size: 1.5rem;
  }
}
.glb-search-btn__txt {
  color: #fff;
}

/* glb-menu-btn
=========================================== */
.glb-menu-btn {
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .glb-menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 40px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 1.5rem;
  }
}

/* ========================================================
glb-sp-menu
======================================================== */
.glb-sp-menu {
  display: none;
}

@media screen and (max-width: 767px) {
  .glb-sp-menu {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100vh;
    background-color: #1d1e1f;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
  }

  .glb-sp-menu.is-open {
    opacity: 1;
    pointer-events: visible;
  }

  .glb-sp-menu .sp-nav {
    padding: 64px 16px 0;
  }

  .glb-sp-menu .sp-nav-list {
    padding-top: 32px;
  }

  .glb-sp-menu .sp-nav-list__item a {
    position: relative;
    display: block;
    padding: 16px;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .glb-sp-menu .sp-nav-list__item a:after {
    content: "";
    position: absolute;
    bottom: 1px;
    right: 0;
    display: block;
    width: 10px;
    height: 1px;
    background-color: #fff;
    transform: rotate(30deg);
  }
}
@media screen and (max-width: 767px) {
  .glb-sp-menu .sp-nav-list__item + .sp-nav-list__item {
    padding-top: 12px;
  }
}
@media screen and (max-width: 767px) {
  .glb-sp-menu .sp-nav .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-end;
    margin-top: 36px;
  }
  .glb-sp-menu .sp-nav .login-btn,
.glb-sp-menu .sp-nav .logout-btn,
.glb-sp-menu .sp-nav .contact-btn {
    width: 100%;
    margin: 0 8px;
  }
  .glb-sp-menu .sp-nav .login-btn a,
.glb-sp-menu .sp-nav .logout-btn a,
.glb-sp-menu .sp-nav .contact-btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 48px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 1.6rem;
    transition: opacity 0.2s ease-in-out;
  }
  .glb-sp-menu .sp-nav .login-txt {
    padding-bottom: 8px;
    text-align: center;
    color: #c1bb8f;
    font-size: 1.3rem;
    font-weight: 700;
  }
  .glb-sp-menu .sp-nav .login-btn a {
    position: relative;
    padding-right: 24px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#5e5c59), to(#bfb98e));
    background-image: linear-gradient(to bottom, #5e5c59 0%, #bfb98e 100%);
    transition: opacity 0.2s ease-in-out;
  }
  .glb-sp-menu .sp-nav .login-btn a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(50% - 36px);
    transform: translate(50%, -50%);
    display: inline-block;
    width: 15px;
    height: 19px;
    background-image: url("../../img/common/base/icon_rock01.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    pointer-events: none;
  }
  .glb-sp-menu .sp-nav .login-btn.member a {
    padding-right: 0;
  }
  .glb-sp-menu .sp-nav .login-btn.member a:after {
    content: none;
  }
  .glb-sp-menu .sp-nav .contact-btn {
    margin-top: 0;
  }
}
@media (any-hover: hover) {
  .login-btn a:hover,
.contact-btn a:hover {
    opacity: 0.8;
  }
}
.logout-btn a {
  position: relative;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5e5c59), to(#bfb98e));
  background-image: linear-gradient(to bottom, #5e5c59 0%, #bfb98e 100%);
  transition: opacity 0.2s ease-in-out;
}

/* ========================================================
.cmn-breadcrumb
======================================================== */
.cmn-breadcrumb {
  padding: 8px 0;
}

@media screen and (max-width: 767px) {
  .cmn-breadcrumb {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .cmn-breadcrumb .cmn-inner01 {
    max-width: 960px;
  }
}
.cmn-breadcrumb .breadcrumb-list {
  text-align: left;
  font-size: 0;
  line-height: 1.5;
}
.cmn-breadcrumb .breadcrumb-list__item {
  display: inline-block;
  font-size: 1.4rem;
  color: #999;
}
.cmn-breadcrumb .breadcrumb-list__item + .breadcrumb-list__item {
  margin-left: 15px;
}
.cmn-breadcrumb .breadcrumb-list__item + .breadcrumb-list__item:before {
  display: inline-block;
  margin-right: 12px;
  content: "";
  vertical-align: -4%;
  width: 12px;
  height: 12px;
  background-image: url("../../img/common/base/breadcrumb_arrow01.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.cmn-breadcrumb .breadcrumb-list__item__in {
  color: #4d4d4d;
}
.cmn-breadcrumb .breadcrumb-list__item a {
  transition: opacity 0.4s cubic-bezier(0.4, 0.1, 0.3, 1);
  text-decoration: underline;
}
.cmn-breadcrumb .breadcrumb-list__item a:hover {
  opacity: 0.8;
  text-decoration: none;
}
.cmn-breadcrumb .breadcrumb-list__item span > span {
  color: #ccc;
}

.glb-header.is-thin .cmn-breadcrumb .breadcrumb-list__item {
  color: #f2f2f2;
}
.glb-header.is-thin .cmn-breadcrumb .breadcrumb-list__item__in {
  color: #f2f2f2;
}

/* ========================================================
.glb-container
======================================================== */
/* ========================================================
共通ボタン
======================================================== */
.cmn-btn01 {
  width: 100%;
  max-width: 264px;
}
.cmn-btn01.center {
  margin: 0 auto;
}
.cmn-btn01.right {
  margin-left: auto;
}
.cmn-btn01 a,
.cmn-btn01 button,
.cmn-btn01 input {
  display: block;
  padding: 20px 50px 20px 22px;
  width: 100%;
  background-color: #fff;
  color: #b69a28;
  font-size: 1.8rem;
  font-family: "Outfit", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "游ゴシック", sans-serif;
  border: 1px solid #b69a28;
  background-image: url("../../img/common/base/icon_arrow01.svg");
  background-repeat: no-repeat;
  background-size: 26px 8px;
  background-position: top 50% right 22px;
  transition: background-color 0.3s ease-in-out, background-position 0.3s ease-in-out;
}
@media screen and (max-width: 1023px) {
  .cmn-btn01 a,
.cmn-btn01 button,
.cmn-btn01 input {
    padding: 18px 40px 18px 20px;
    background-position: top 50% right 16px;
    font-size: 1.7rem;
  }
}
.cmn-btn01.bold a, .cmn-btn01.bold button, .cmn-btn01.bold input {
  font-weight: 700;
}

@media (any-hover: hover) {
  .cmn-btn01 a:hover,
.cmn-btn01 button:hover,
.cmn-btn01 input:hover {
    background-color: #e1e0cb;
    background-position: top 50% right 18px;
  }
}
@media screen and (any-hover: hover) and (max-width: 1023px) {
  .cmn-btn01 a:hover,
.cmn-btn01 button:hover,
.cmn-btn01 input:hover {
    background-position: top 50% right 12px;
  }
}
.cmn-btn01.gold-btn a,
.cmn-btn01.gold-btn button,
.cmn-btn01.gold-btn input {
  background-color: #b89f38;
  color: #fff;
  background-image: url("../../img/common/base/icon_arrow01_white.svg");
}

@media (any-hover: hover) {
  .cmn-btn01.gold-btn a:hover,
.cmn-btn01.gold-btn button:hover,
.cmn-btn01.gold-btn input:hover {
    background-color: #a3914a;
  }
}
/* ========================================================
.cmn-cv-order-made
======================================================== */
.cmn-cv-order-made {
  background-image: url("../../img/common/base/cmn_order_made_bg01.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 767px) {
  .cmn-cv-order-made {
    background-image: url("../../img/common/base/cmn_order_made_bg01_sp.jpg");
  }
}

.cmn-cv-order-made__in {
  padding: 98px 0 60px;
  background-image: url("../../img/common/base/logo01_bgblue.svg");
  background-repeat: no-repeat;
  background-size: 428px 110%;
  background-position: left -104px top 0;
}
@media screen and (max-width: 1023px) {
  .cmn-cv-order-made__in {
    padding: 72px 0 48px;
    background-size: 328px 110%;
  }
}
@media screen and (max-width: 767px) {
  .cmn-cv-order-made__in {
    padding: 40px 0;
    background-image: none;
  }
}

.cmn-cv-order-made .catch {
  padding: 0 28px;
}
@media screen and (max-width: 1023px) {
  .cmn-cv-order-made .catch {
    padding: 0 12px;
  }
}
@media screen and (max-width: 1023px) {
  .cmn-cv-order-made .catch img {
    width: 420px;
  }
}

.cmn-cv-order-made .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding: 10px 28px;
  border-top: 1px solid #e1e0cb;
  border-bottom: 1px solid #e1e0cb;
}
@media screen and (max-width: 1023px) {
  .cmn-cv-order-made .box {
    padding: 10px 16px;
  }
}
@media screen and (max-width: 767px) {
  .cmn-cv-order-made .box {
    display: block;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 1023px) {
  .cmn-cv-order-made .box-ttl-txt img {
    width: 172px;
  }
}

.cmn-cv-order-made .box-catch {
  padding-top: 8px;
}
@media screen and (max-width: 1023px) {
  .cmn-cv-order-made .box-catch img {
    width: 420px;
  }
}

.cmn-cv-order-made .cmn-btn01 {
  max-width: 248px;
}
.cmn-cv-order-made .cmn-btn01 a {
  padding-top: 26px;
  padding-bottom: 26px;
  padding-left: 8px;
}
@media screen and (max-width: 1023px) {
  .cmn-cv-order-made .cmn-btn01 a {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .cmn-cv-order-made .cmn-btn01 a {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.cmn-cv-order-made .cmn-btn01 .jp {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "游ゴシック", sans-serif;
}
@media screen and (max-width: 767px) {
  .cmn-cv-order-made .cmn-btn01 .jp {
    font-size: 1.6rem;
    font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "游ゴシック", sans-serif;
  }
}
.cmn-cv-order-made .cmn-btn01 .en {
  display: block;
  padding-top: 16px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .cmn-cv-order-made .cmn-btn01 .en {
    padding-top: 8px;
    font-size: 1rem;
  }
}

/* ========================================================
.cmn-ordermade-banner01
======================================================== */
.cmn-ordermade-banner01 {
  margin: 0 auto;
  max-width: 840px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .cmn-ordermade-banner01 {
    width: 100%;
    padding: 40px 0;
    background-image: url("../../img/common/base/cmn_order_made_banner_bg01.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
}
.cmn-ordermade-banner01 a {
  transition: opacity 0.3s ease-in-out;
}

.cmn-ordermade-banner01__in {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .cmn-ordermade-banner01__in div:nth-child(2) {
    padding: 28px 0 16px;
  }
}

@media screen and (max-width: 767px) {
  .cmn-ordermade-banner01__in div:nth-child(3) {
    padding: 0 16px;
  }
}

@media (any-hover: hover) {
  .cmn-ordermade-banner01 a:hover {
    opacity: 0.8;
  }
}
/* ========================================================
glb-footer
======================================================== */
.glb-footer {
  padding: 64px 0 20px;
  background-color: #1d1e1f;
}
@media screen and (max-width: 767px) {
  .glb-footer {
    padding: 20px 0;
  }
}

/* footer-box
=========================================== */
.glb-footer .footer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .glb-footer .footer-box {
    display: block;
  }
}

/* footer-box
=========================================== */
.glb-footer .footer-box__left {
  width: 236px;
}
@media screen and (max-width: 767px) {
  .glb-footer .footer-box__left {
    width: 100%;
  }
}

.glb-footer .footer-box__right {
  width: calc(100% - 236px - 48px);
}
@media screen and (max-width: 1023px) {
  .glb-footer .footer-box__right {
    width: calc(100% - 236px - 16px);
  }
}
@media screen and (max-width: 767px) {
  .glb-footer .footer-box__right {
    padding-top: 28px;
    width: 100%;
  }
}

/* .site-ttl
=========================================== */
.glb-footer .site-ttl-wrap {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .glb-footer .site-ttl-wrap {
    height: 68px;
  }
}
@media screen and (max-width: 767px) {
  .glb-footer .site-ttl-wrap {
    height: auto;
  }
}

.glb-footer .site-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .glb-footer .site-ttl {
    justify-content: center;
  }
}

.glb-footer .site-ttl .logo-wrap {
  position: relative;
}

.glb-footer .site-ttl .logo {
  width: 57px;
}
@media screen and (max-width: 767px) {
  .glb-footer .site-ttl .logo {
    width: 46px;
  }
}

.glb-footer .site-ttl .logo {
  width: 57px;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 1023px) {
  .glb-footer .site-ttl .logo {
    width: 46px;
  }
}

.glb-footer .site-ttl .txt {
  padding-left: 12px;
  width: calc(160px + 12px);
}

/* .footer-info
=========================================== */
.glb-footer .footer-info {
  margin-top: 56px;
}
@media screen and (max-width: 1023px) {
  .glb-footer .footer-info {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .glb-footer .footer-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column-reverse;
  }
}
.glb-footer .footer-info__tel {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .glb-footer .footer-info__tel {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 12px 0;
  }
}
.glb-footer .footer-info__tel a {
  font-size: 3.2rem;
  font-weight: 700;
  font-family: "Outfit", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "游ゴシック", sans-serif;
  transform: scale(0.95, 1.05);
}
.glb-footer .footer-info__tel .tel-open {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .glb-footer .footer-info__tel .tel-open {
    padding-top: 4px;
  }
}
.glb-footer .footer-info__address {
  padding-top: 36px;
}
@media screen and (max-width: 767px) {
  .glb-footer .footer-info__address {
    padding-top: 0;
    padding-bottom: 28px;
  }
}
.glb-footer .footer-info__address .company {
  font-size: 1.8rem;
  font-weight: 700;
}
.glb-footer .footer-info__address .address {
  padding-top: 16px;
  font-size: 1.4rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .glb-footer .footer-info__address .address {
    padding-top: 8px;
  }
}

/* .footer-txt
=========================================== */
.glb-footer .footer-txt {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (max-width: 1023px) {
  .glb-footer .footer-txt {
    height: 68px;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .glb-footer .footer-txt {
    height: auto;
  }
}

/* .footer-nav
=========================================== */
.glb-footer .footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  padding-left: 60px;
  border-left: 1px solid #4d4d4d;
}
@media screen and (max-width: 1023px) {
  .glb-footer .footer-nav {
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .glb-footer .footer-nav {
    display: block;
    padding-left: 0;
    border-left: none;
  }
}

.glb-footer .footer-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  width: 296px;
}
@media screen and (max-width: 767px) {
  .glb-footer .footer-nav-list {
    width: 100%;
  }
}
.glb-footer .footer-nav-list__item {
  position: relative;
  margin-bottom: 36px;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .glb-footer .footer-nav-list__item {
    margin-bottom: 28px;
    border-bottom: 1px solid #fff;
  }
}
@media screen and (max-width: 767px) {
  .glb-footer .footer-nav-list__item:after {
    content: "";
    position: absolute;
    bottom: 1px;
    right: 0;
    display: block;
    width: 10px;
    height: 1px;
    background-color: #fff;
    transform: rotate(30deg);
  }
}
.glb-footer .footer-nav-list__item a {
  font-size: 1.4rem;
  font-weight: 700;
  transition: opacity 0.2s ease-in-out;
}
@media screen and (max-width: 767px) {
  .glb-footer .footer-nav-list__item a {
    display: block;
    padding-bottom: 8px;
  }
}

@media (any-hover: hover) {
  .glb-footer .footer-nav-list__item a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1023px) {
  .glb-footer .footer-nav-list__item:nth-child(2n-1) {
    width: 108px;
  }
}
@media screen and (max-width: 767px) {
  .glb-footer .footer-nav-list__item:nth-child(2n-1) {
    width: calc(50% - 8px);
  }
}

@media screen and (max-width: 1023px) {
  .glb-footer .footer-nav-list__item:nth-child(2n) {
    width: 160px;
  }
}
@media screen and (max-width: 767px) {
  .glb-footer .footer-nav-list__item:nth-child(2n) {
    margin-left: 16px;
    width: calc(50% - 8px);
  }
}

.glb-footer .footer-nav-member {
  width: 152px;
}
@media screen and (max-width: 767px) {
  .glb-footer .footer-nav-member {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .glb-footer .footer-nav-member .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-end;
    margin-top: 12px;
  }
}
.glb-footer .footer-nav-member .login-btn,
.glb-footer .footer-nav-member .contact-btn {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .glb-footer .footer-nav-member .login-btn,
.glb-footer .footer-nav-member .contact-btn {
    margin: 0 8px;
  }
}
.glb-footer .footer-nav-member .login-btn a,
.glb-footer .footer-nav-member .contact-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  border: 1px solid #fff;
  transition: opacity 0.2s ease-in-out;
}
@media screen and (max-width: 767px) {
  .glb-footer .footer-nav-member .login-btn a,
.glb-footer .footer-nav-member .contact-btn a {
    font-size: 1.6rem;
  }
}
.glb-footer .footer-nav-member .login-txt {
  padding-bottom: 8px;
  text-align: center;
  color: #c1bb8f;
  font-size: 1.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .glb-footer .footer-nav-member .login-txt {
    font-size: 1.3rem;
  }
}
.glb-footer .footer-nav-member .login-btn a {
  position: relative;
  padding-right: 24px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5e5c59), to(#bfb98e));
  background-image: linear-gradient(to bottom, #5e5c59 0%, #bfb98e 100%);
}
.glb-footer .footer-nav-member .login-btn a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(50% - 36px);
  transform: translate(50%, -50%);
  display: inline-block;
  width: 15px;
  height: 19px;
  background-image: url("../../img/common/base/icon_rock01.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  pointer-events: none;
}
.glb-footer .footer-nav-member .login-btn.member a {
  padding-right: 0;
}
.glb-footer .footer-nav-member .login-btn.member a:after {
  content: none;
}
.glb-footer .footer-nav-member .contact-btn {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .glb-footer .footer-nav-member .contact-btn {
    margin-top: 0;
  }
}
.glb-footer .footer-nav-member .privacy-txt {
  padding-top: 20px;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .glb-footer .footer-nav-member .privacy-txt {
    font-size: 1.3rem;
  }
}
.glb-footer .footer-nav-member .privacy-txt a {
  transition: opacity 0.2s ease-in-out;
}

@media (any-hover: hover) {
  .glb-footer .footer-nav-member .privacy-txt a:hover {
    opacity: 0.8;
  }

  .glb-footer .footer-nav-member .login-btn a:hover,
.glb-footer .footer-nav-member .contact-btn a:hover {
    opacity: 0.8;
  }
}
/* .copyright
=========================================== */
.copyright {
  margin-top: 20px;
  text-align: center;
  color: #999;
}
.copyright__in {
  font-size: 1.2rem;
}

/* ========================================================
wp-pagenavi
======================================================== */
.wp-pagenavi {
  margin-top: 44px;
  text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-block;
  margin: 4px;
  min-width: 32px;
  height: 32px;
  padding: 8px 12px 0;
  color: #000;
  font-weight: 700;
  font-family: "Outfit", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "游ゴシック", sans-serif;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
.wp-pagenavi a:hover {
  background-color: #f4e803;
  color: #fff;
}
.wp-pagenavi span.current {
  background-color: #000;
  color: #fff;
}
.wp-pagenavi span.current {
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin-top: 40px;
  }
}

/*# sourceMappingURL=common.min.css.map*/