/* ##############################################################################

    COMMON

############################################################################## */

html {
  height: 100%;
  overflow-y: scroll;
}
body {
  height: 100%;
}

/* layout
**************************************** */

/* --- inner --- */
.inner {
  width: calc(100% - 80px);
  max-width: 1400px;
  margin: 0 auto;
}
.inner-sm {
  max-width: 1080px;
}
.inner-xs {
  max-width: 800px;
}
.inner-lg {
  max-width: calc(100% - 112px);
}

/* --- section_pdg --- */
.section_pdg {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* --- float --- */
.flt-rgt {
  float: right;
}
.flt-lft {
  float: left;
}

/* --- position --- */
.pos_rel {
  position: relative;
  z-index: 0;
}

/* --- margin --- */
.mgn-btm8 {
  margin-bottom: 8px;
}
.mgn-btm16 {
  margin-bottom: 16px;
}
.mgn-btm24 {
  margin-bottom: 24px;
}
.mgn-btm32 {
  margin-bottom: 32px;
}
.mgn-btm40 {
  margin-bottom: 40px;
}
.mgn-btm48 {
  margin-bottom: 48px;
}
.mgn-btm56 {
  margin-bottom: 56px;
}
.mgn-btm64 {
  margin-bottom: 64px;
}
.mgn-btm72 {
  margin-bottom: 72px;
}
.mgn-btm80 {
  margin-bottom: 80px;
}

/* --- pc or sp --- */
.pc-none,
.pc-none-inline,
.pc-none-table,
.pc-none-flex {
  display: none;
}
.sp-none {
  display: block;
}
.sp-none-inline {
  display: inline;
}
.sp-none-table {
  display: table;
}
.sp-none-flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/* --- box --- */
.box {
  position: relative;
  border: 2px solid;
  padding: 24px 32px;
}
.box::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: -2px;
  right: 24px;
  z-index: 10;
}
.faq-box .box::before {
  display: none;
}

.border-bottom {
  position: relative;
  padding-bottom: 48px;
  margin-bottom: 48px;
}
.border-bottom::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  border-bottom: 2px solid darkkhaki;
  width: 40px;
  height: 2px;
  margin: auto;
  border-radius: 4px;
}

@media screen and (max-width: 767px) {
  .inner {
    width: calc(100% - 48px);
  }
  .section_pdg {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .mgn-btm16 {
    margin-bottom: 8px;
  }
  .mgn-btm24 {
    margin-bottom: 16px;
  }
  .mgn-btm32 {
    margin-bottom: 16px;
  }
  .mgn-btm40 {
    margin-bottom: 24px;
  }
  .mgn-btm48 {
    margin-bottom: 24px;
  }
  .mgn-btm56 {
    margin-bottom: 32px;
  }
  .mgn-btm64 {
    margin-bottom: 32px;
  }
  .mgn-btm72 {
    margin-bottom: 40px;
  }
  .mgn-btm80 {
    margin-bottom: 40px;
  }
  .sp-none,
  .sp-none-inline,
  .sp-none-table,
  .sp-none-flex {
    display: none;
  }
  .pc-none {
    display: block;
  }
  .pc-none-inline {
    display: inline;
  }
  .pc-none-table {
    display: table;
  }
  .pc-none-flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .border-bottom {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  .border-bottom::after {
    width: 24px;
  }
}

/* flex
**************************************** */

/* --- ブロック要素 --- */
.flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/* --- インライン要素 --- */
.flex-inline {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/* --- 逆向き --- */
.flex-reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/* --- 縦並び --- */
.flex-column {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* --- 水平方向揃え --- */
.flex-j-start {
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.flex-j-end {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flex-j-ctr {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-j-between {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-j-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

/* --- 垂直方向揃え --- */
.flex-a-start {
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flex-a-end {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.flex-a-ctr {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-a-baseline {
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.flex-a-stretch {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

/* --- 子要素の折り返し設定 --- */
.flex-c-nowrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex-c-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* --- 子要素の複数行設定 --- */
.flex-c-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
.flex-c-start {
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.flex-c-start {
  -webkit-align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.flex-c-end {
  -webkit-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
}
.flex-c-ctr {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}
.flex-c-baseline {
  -webkit-align-content: baseline;
  -ms-flex-line-pack: baseline;
  align-content: baseline;
}
.flex-c-stretch {
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

/* --- ざっくりflexレイアウト --- */
.flex-col2,
.flex-col3,
.flex-col4 {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-col2 > * {
  width: 48.5%;
  margin-right: 3%;
  margin-bottom: 3%;
}
.flex-col2:not(.flex-reverse) > *:nth-child(even) {
  margin-right: 0;
}
.flex-col2.flex-reverse > *:nth-child(odd) {
  margin-right: 0;
}
.flex-col3 > * {
  width: 31.33%;
  margin-right: 3%;
  margin-bottom: 3%;
}
.flex-col3 > *:nth-child(3n + 3) {
  margin-right: 0;
}
.flex-col4 > * {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 2%;
}
.flex-col4 > *:nth-child(4n + 4) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  /* --- 縦並び - sp --- */
  .flex-sp-block {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-sp-block.flex-col2 > * {
    width: 100%;
    margin-right: 0;
    margin-bottom: 6%;
  }
  .flex-sp-block.flex-col2 > *:last-child {
    margin-bottom: 0;
  }

  /* --- 並び順変更 - sp --- */
  .flex-sp-reverse {
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  /* --- ざっくりflexレイアウト - sp --- */
  .flex-sp-col2 > *,
  .flex-sp-col2.flex-col3 > *:nth-child(3n + 3) {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-sp-col2 > *:nth-child(even) {
    margin-right: 0;
  }
  .flex-sp-col3 > *,
  .flex-sp-col3.flex-col4 > *:nth-child(4n + 4) {
    width: 31.33%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-sp-col3 > *:nth-child(3n + 3) {
    margin-right: 0;
  }
}

/* ttl
**************************************** */

/* --- page_ttl --- */
.page_ttl {
  padding: 80px 0 0;
  text-transform: uppercase;
}
.page_ttl-jp {
  display: block;
  font-size: 200%;
  letter-spacing: 0.2em;
  padding-left: 0.2em;
  line-height: 1;
  text-align: center;
}

/* --- section_ttl --- */
.section_ttl {
  font-size: 150%;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1;
  padding-bottom: 24px;
  position: relative;
  letter-spacing: 0.2em;
  padding-left: 0.2em;
}
.section_ttl::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  border-top: 2px solid darkkhaki;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  bottom: 0;
}

.section_ttl-sm {
  font-size: 267%;
}
.section_catch {
  text-align: center;
  font-size: 120%;
  font-weight: 700;
}

/* --- heading --- */
.heading-1 {
  font-size: 200%;
  letter-spacing: 0.2em;
  padding-left: 0.2em;
}
.heading-2 {
  font-size: 150%;
  letter-spacing: 0.1em;
  padding-left: 0.1em;
}
.heading-3 {
  font-size: 125%;
  letter-spacing: 0.1em;
  padding-left: 0.1em;
}
.heading-4 {
  font-size: 100%;
}

@media screen and (max-width: 767px) {
  /* --- page_ttl --- */
  .page_ttl {
    padding-top: 74px;
  }
  .page_ttl-jp {
    text-align: right;
    font-size: 150%;
    margin-right: -0.2em;
  }
  .page_ttl-en {
    font-size: 86%;
  }

  /* --- section_ttl --- */
  .section_ttl {
    margin-bottom: 24px;
    line-height: 1.5;
    padding-bottom: 18px;
  }
  .section_catch {
    font-size: 86%;
  }

  /* --- heading --- */
  .heading-1 {
    font-size: 175%;
  }
  .heading-2 {
    font-size: 125%;
  }
  .heading-3 {
    font-size: 108%;
  }
  .heading-4 {
    line-height: 1.5;
  }
}

/* breadcrumbs
**************************************** */
.breadcrumbs {
  padding: 16px 0;
  font-size: 75%;
  font-weight: 700;
  text-align: center;
}
.breadcrumbs a {
  position: relative;
  margin-right: 24px;
  border-bottom: 2px solid;
  padding-bottom: 5px;
}
.breadcrumbs a::before {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  border-top: 1px solid #aaa;
  border-right: 1px solid #aaa;
  right: -17px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .breadcrumbs {
    text-align: right;
    padding: 8px 0;
    letter-spacing: 0.05em;
    font-size: 70%;
  }
  .breadcrumbs .inner {
    padding-left: 110px;
  }
  .breadcrumbs a {
    border-bottom: 1.5px solid;
    margin-right: 16px;
    padding-bottom: 3px;
  }
  .breadcrumbs a::before {
    right: -13px;
  }
}

/* txt
**************************************** */
.txt-lg {
  font-size: 107%;
  line-height: 2;
}
.txt-sm {
  font-size: 81.4%;
  font-weight: 800;
}
.txt-xs {
  font-size: 69%;
  font-weight: 800;
}
.txt-hight {
  line-height: 2.5;
}
.txt-thin {
  font-weight: 100;
  -webkit-font-smoothing: antialiased;
}
.txt-color {
  color: darkkhaki;
}
.txt-ctr,
.txt-ctr-pc {
  text-align: center;
}
.txt-rgt,
.txt-rgt-pc {
  text-align: right;
}
.txt-attention {
  font-size: 69%;
  font-weight: 800;
}
.txt-attention-kome {
  position: relative;
  padding-left: 1.4em;
}
.txt-attention-kome::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.txtarea p:not(:last-child) {
  margin-bottom: 1em;
}
.link-txt {
  border-bottom: 0.5px dotted #ccc;
}
.link-txt:hover {
  border-color: transparent;
  color: darkkhaki;
}

@media screen and (max-width: 767px) {
  .txt-ctr-pc,
  .txt-rgt-pc {
    text-align: left;
  }
  .txt-sm {
    font-size: 86%;
  }
  .txt-xs {
    font-size: 79%;
  }
  .txt-hight {
    line-height: 2.25;
  }
}

/* table & list
**************************************** */
table {
  width: 100%;
}

/* --- table_default --- */
.table_default th,
.table_default td {
  padding: 16px 8px;
}
.table_default th {
  border-bottom: 2px solid darkkhaki;
}
.table_default td {
  padding: 16px 16px;
  border-bottom: 1px solid darkkhaki;
  border-left: 4px solid #fff;
}

/* --- table_line --- */
.table_line th,
.table_line td {
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 24px;
  padding-right: 24px;
}
.table_line th {
  background-color: darkkhaki;
  border: 1px solid darkkhaki;
  color: #fff;
  font-size: 107%;
}
.table_line td {
  border: 1px solid #d2d2d2;
  font-size: 93%;
}

/* --- list ---- */
.list {
  list-style-type: none;
}
.list li:not(:last-child) {
  margin-bottom: 4px;
}
.list li {
  position: relative;
  padding-left: 1.4em;
}
.list-disc li::before,
.list-square li::before,
.list-circle li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 6px;
  background-color: darkkhaki;
}
/* 数字付きリスト */
.list-num {
  padding-left: 1.4em;
  list-style-type: decimal;
}
.list-num li {
  padding-left: 0;
}
.list-num li::before {
  display: none;
}
/* 白丸付きリスト */
.list-circle li::before {
  border: 1px solid darkkhaki;
  background-color: transparent;
}
/* 四角付きリスト */
.list-square li::before {
  border-radius: 0;
  background-color: darkkhaki;
}
/* 入れ子のスタイル */
.list li ul {
  margin-top: 16px;
}
.list li ul li::before {
  width: 6px;
  height: 6px;
  top: 0.8em;
}

/* --- dlリスト --- */
.list-dl {
  position: relative;
  border-top: 1px solid #bfbfbf;
}
.list-dl dt {
  position: absolute;
  padding-top: 16px;
  color: darkkhaki;
  font-weight: 700;
}
.list-dl dd {
  padding-left: 140px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #bfbfbf;
}

/* btn
**************************************** */
.btn {
  position: relative;
  display: inline-block;
  min-width: 280px;
  min-height: 48px;
  padding: 12px 40px;
  text-align: center;
  letter-spacing: 0.1em;
  overflow: hidden;
  border: 2px solid;
  font-weight: 700;
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -moz-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}
.btn-sm {
  min-width: 200px;
  min-height: 32px;
  line-height: 1.4;
  font-size: 87%;
  padding: 8px 40px;
}
.btn-wh {
  border-color: #fff;
  color: #fff;
}
.btn-line {
  border: none;
  border-bottom: 2px solid;
  padding: 8px 24px 8px 0;
  min-width: auto;
  min-height: auto;
}
.btn-line.btn-back {
  padding-right: 0;
  padding-left: 24px;
}
.btn-submit {
  background-color: #cf2e2e;
  color: #fff;
  border-radius: 4px;
  border: none;
  width: 100%;
  min-width: 0;
}
.btn::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 32px;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px;
  border-right: solid 2px;
  transform: rotate(45deg);
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -moz-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}
.btn-sm::before {
  right: 24px;
}
.btn-wh::before {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}
.btn-line::before {
  right: 2px;
}
.btn-back::before {
  right: auto;
  left: 32px;
  transform: rotate(-135deg);
}
.btn-line.btn-back::before {
  left: 2px;
}
/* hover */
.btn:hover {
  background-color: darkkhaki;
}
.btn-wh:hover {
  color: #fff;
}
.btn-line:hover {
  background-color: transparent;
  color: darkkhaki;
}
.btn:hover::before {
  right: 28px;
}
.btn-line:hover::before {
  right: 2px;
  border-color: darkkhaki;
}
.flex .btn + .btn {
  margin-left: 16px;
}

@media screen and (max-width: 767px) {
  .btn {
    min-width: auto;
    padding: 8px 48px;
    min-height: 0;
  }
  .flex .btn,
  .flex .btn + .btn {
    margin-top: 4px;
    margin-left: auto;
    margin-right: auto;
  }
  .btn::before {
    border-top-width: 1.5px;
    border-right-width: 1.5px;
  }
}

/* cta
**************************************** */
.cta {
  padding: 40px 0;
  background-color: #eee;
}
.cta--txt {
  font-size: 120%;
  margin-bottom: 24px;
}
.cta--btn {
  font-size: 160%;
}
.cta--btn.btn a {
  min-width: 400px;
}
.cta--tel .tel_txt {
  font-size: 160%;
}
.cta--form {
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .cta--btn.btn a {
    min-width: 0;
  }
}

/* cta-page
**************************************** */
.cta-page {
  padding: 80px 0 40px;
  background-color: #eee;
}
.cta-page a:hover {
  opacity: 0.6;
}
.cta-page .imgarea {
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .cta-page {
    padding: 40px 0 24px;
  }
  .cta-page .imgarea {
    margin-bottom: 8px;
  }
}

/* ##############################################################################

    HEADER

############################################################################## */

/* header
**************************************** */
.header {
  line-height: 1;
}
.header--logo {
  position: fixed;
  top: 40px;
  left: 40px;
  z-index: 9999;
}

@media screen and (max-width: 1080px) and (min-width: 768px) {
  .header--logo {
    width: 128px;
  }
}

@media screen and (max-width: 767px) {
  .header--logo {
    top: 24px;
    left: 24px;
    width: 100px;
  }
}

/* gnav
**************************************** */

/* ---gnav_btn --- */
.gnav_btn {
  position: fixed;
  top: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  z-index: 9999;
}
.gnav_btn--lines {
  position: relative;
  width: 48px;
  height: 10px;
}
.gnav_btn--lines span {
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -moz-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #231f1e;
}
.gnav_btn:hover .gnav_btn--lines span {
  background-color: darkkhaki;
}
.gnav_btn--lines span:nth-of-type(1) {
  top: 0;
}
.gnav_btn--lines span:nth-of-type(2) {
  bottom: 0;
}
.header.active .gnav_btn--lines span:nth-of-type(1) {
  -webkit-transform: translateY(4px) rotate(-45deg);
  transform: translateY(4px) rotate(-45deg);
}
.header.active .gnav_btn--lines span:nth-of-type(2) {
  -webkit-transform: translateY(-4px) rotate(45deg);
  transform: translateY(-4px) rotate(45deg);
}
.header.active .gnav_btn--lines span {
  background-color: darkkhaki;
}

/* ---gnav --- */
.gnav {
  position: fixed;
  top: 0;
  width: 320px;
  right: 0;
  bottom: 0;
  padding: 112px 40px 0;
  pointer-events: none;
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -moz-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transform: translateX(100%);
  background-color: #fff;
  border-left: 2px solid;
  z-index: 9998;
}
.header.active .gnav {
  pointer-events: all;
  transform: translateX(0);
}
.gnav a,
.gnav--nolink {
  display: block;
  padding: 0 16px;
  margin-bottom: 24px;
  font-weight: bold;
}
.gnav a:hover {
  background-color: darkkhaki;
}
.gnav .current a {
  border-left: 2px solid darkkhaki;
}
.gnav span {
  padding: 8px 0;
}
.gnav .gnav--nolink {
  padding: 0 16px;
  margin-bottom: 16px;
}
.gnav .gnav--item {
  margin-bottom: 16px;
}
.gnav .gnav--list--category {
  margin-bottom: 32px;
}
.gnav .gnav--list--category a {
  position: relative;
  margin-bottom: 10px;
  text-transform: uppercase;
  margin-left: 16px;
  padding-left: 32px;
}
.gnav .current .gnav--list--category a {
  border-left: none;
  padding-right: 0;
}
.gnav .gnav--list--category a::before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 1px;
  border-top: 2px solid darkkhaki;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -moz-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}
.gnav .gnav--list--category a:hover::before {
  border-color: #231f1e;
}

@media screen and (max-width: 767px) {
  .gnav_btn {
    top: 16px;
    right: 24px;
  }
  .gnav {
    width: 240px;
    padding: 80px 24px 0;
  }
}

/* ##############################################################################

    FOOTER

############################################################################## */

/* pagetop
*************************************************** */
.pagetop {
  width: 48px;
  height: 48px;
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 999;
  transform: translateY(80px);
}
.scrolled .pagetop {
  transform: translateY(0);
}
.pagetop::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 16px 28px 16px;
  border-color: transparent transparent #231f1e transparent;
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -moz-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}
.pagetop:hover::before {
  border-color: transparent transparent darkkhaki transparent;
}

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

/* footer--main
*************************************************** */
.footer {
  padding-top: 80px;
  border-top: 2px solid;
}
.sns .section_ttl {
  margin-bottom: 16px;
}
.sns--list li {
  margin: 0 16px;
}
.footer--nav li:not(:last-child) a {
  border-right: 0.5px solid #ccc;
}
.footer--nav a {
  display: inline-block;
  font-weight: 700;
  line-height: 1;
  padding: 0 24px;
  font-size: 88%;
}
.footer--nav a:hover {
  background-color: darkkhaki;
}

@media screen and (max-width: 767px) {
  .footer {
    padding-top: 48px;
    background-color: transparent;
  }
}

/* footer--sub_nav
*************************************************** */
.footer--sub_nav {
  padding: 8px 0 80px;
  font-size: 70%;
  font-weight: 100;
}
.footer--sub_nav p:not(:last-child) {
  margin-right: 16px;
}
.footer--copyright {
  text-align: center;
  white-space: nowrap;
}
.pbl-svg {
  fill: #aaa;
}

@media screen and (max-width: 767px) {
  .footer--sub_nav {
    padding-top: 0;
    padding-bottom: 24px;
  }
}

/* ##############################################################################

    INDEX

############################################################################## */

/* home
*************************************************** */
.home .gnav_btn--lines span {
  background-color: #fff;
}
.home.scrolled .gnav_btn--lines span {
  background-color: #231f1e;
}
.home .header--logo::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(../images/common/logo-white.svg);
  background-repeat: no-repeat;
  z-index: 10;
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -moz-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}
.home .header--logo img {
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -moz-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}
.home.scrolled .header--logo::before {
  opacity: 0;
}
.home.scrolled .header--logo img {
  opacity: 1;
}

/* hero
*************************************************** */
.hero {
  position: relative;
  border-bottom: 2px solid;
  background-color: #231f1e;
}
.hero--vid {
  width: 100%;
}
.sound_button {
  position: absolute;
  right: 0;
  bottom: 80px;
  z-index: 900;
  color: #fff;
  width: 120px;
  height: 56px;
  text-align: center;
  left: 0;
  margin: auto;
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -moz-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}
.sound_button::after {
  content: "AUDIO / OFF";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  letter-spacing: 0.2em;
  pointer-events: none;
}
.sound_button.sound_on::after {
  content: "AUDIO / ON";
}
.audio.icon {
  color: #fff;
  position: absolute;
  margin-left: 5px;
  margin-top: 8px;
  width: 16px;
  height: 13px;
  border-left: solid 2px currentColor;
  border-right: solid 2px currentColor;
  border-bottom: solid 2px currentColor;
  border-radius: 0 0 50% 50%;
  top: 8px;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -moz-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}
.audio.icon::before {
  content: "";
  position: absolute;
  left: 2px;
  top: -6px;
  width: 8px;
  height: 14px;
  border: solid 2px currentColor;
  border-radius: 4px;
}
.audio.icon::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: -6px;
  width: 2px;
  height: 4px;
  background-color: currentColor;
}
.sound_on .audio.icon::before {
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .hero {
    min-height: 375px;
  }
  .sound_button {
    bottom: 16px;
    height: 48px;
    transform: scale(0.5);
  }
  .home .header--logo::before {
    display: none;
  }
}

@media screen and (max-width: 320px) {
  .hero {
    min-height: 320px;
  }
}
/* home_category
*************************************************** */
.home_category--lists {
  margin-bottom: -48px;
}
.home_category--list {
  position: relative;
  text-transform: uppercase;
  text-align: center;
  width: calc((100% - 80px) / 3);
  margin-bottom: 64px;
  text-align: center;
}
.home_category--list--ttl {
  display: inline-block;
  min-width: 168px;
  border-left: 2px solid;
  line-height: 1;
  padding-left: 8px;
  padding-right: 8px;
  border-right: 2px solid;
  text-align: center;
  margin: 0 auto 32px;
  z-index: 10;
}
.home_category--list .imgarea {
  position: relative;
  display: inline-block;
  border: 1px solid;
  max-width: 360px;
  font-size: 50%;
}
.home_category--list .imgarea::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  background-color: darkkhaki;
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -moz-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}
.home_category--list a:hover .imgarea::before {
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  .home_category--lists {
    border-top: 1px solid;
    border-left: 1px solid;
    margin-bottom: -24px;
  }
  .home_category--list {
    width: 50%;
    margin-bottom: 0;
    line-height: 1;
  }
  .home_category--list--ttl {
    position: absolute;
    left: 0;
    right: 0;
    width: 120px;
    min-width: 120px;
    color: #fff;
    top: 0;
    bottom: 0;
    height: 1em;
    margin: auto;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  }

  .home_category--list .imgarea {
    border-top: none;
    border-left: none;
  }
}

/* home_concept
*************************************************** */

@media screen and (max-width: 767px) {
  .home_concept .imgarea {
    width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* home_news
*************************************************** */
.posts-home_news .post {
  padding: 16px 40px;
  border-bottom: 0.5px solid #eee;
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -moz-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  line-height: 1.5;
}
.posts-home_news .post:first-child {
  border-top: 0.5px solid #eee;
}
.posts-home_news .post:hover,
.posts-home_news .post:hover a {
  color: darkkhaki;
}

/* ##############################################################################

    PAGE

############################################################################## */

/* page-about
*************************************************** */
.about_intro .heading-1 {
  padding-left: 0;
}
.about_intro .txtarea p:not(:last-child) {
  margin-bottom: 1.5em;
}
.about_history {
  padding-top: 0;
}
.txt-english {
  text-align: left;
}
.about-logo {
  padding: 56px 160px;
}

@media screen and (max-width: 767px) {
  .about-logo {
    padding: 24px;
    background-color: transparent;
    border: none;
  }
}

/* page-faq
*************************************************** */
.faq-box--dl {
  padding-top: 16px;
  padding-bottom: 16px;
  margin-top: 16px;
}
.faq-box--dl dt {
  position: relative;
  float: left;
  clear: both;
  width: 136px;
  padding: 4px 0;
}
.faq-box--dl dt::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: darkkhaki;
  width: 16px;
  height: 2px;
  margin: auto;
  border-radius: 4px;
}
.faq-box--dl dd {
  padding: 4px 0 4px 160px;
}

@media screen and (max-width: 767px) {
  .faq-box--dl dt {
    width: 116px;
  }
  .faq-box--dl dd {
    padding-left: 132px;
  }
}

/* page-order
*************************************************** */

/* --- order text --- */
.order--start_date {
  width: 350px;
  margin: 16px auto;
  padding: 14px;
  font-size: 86%;
  border: 1px solid;
  border: 0.5px solid #eee;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .order--start_date {
    width: 100%;
    padding: 8px 12px;
  }
}

/* --- order--flow --- */
.order--flow--list {
  width: 25%;
  padding: 24px;
  border-top: 0.5px solid #eee;
  border-left: 0.5px solid #eee;
  border-bottom: 0.5px solid #eee;
}
.order--flow--list:last-child {
  border-right: 0.5px solid #eee;
}
.order--flow--list .number {
  line-height: 1;
}
.order--flow--list .txt-xs {
  -ms-text-justify: inter-ideograph;
  text-justify: inter-ideograph;
  text-align: justify;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

/* --- order--selectbox--imgarea --- */
.order--selectbox--imgarea--inner {
  position: relative;
}
.order_backpack .order--selectbox--imgarea--inner {
  width: 595px;
}
.order_sacoche .order--selectbox--imgarea--inner {
  width: 450px;
  margin-left: 142px;
}
.order_backpack--base,
.order_sacoche--base {
  position: relative;
  z-index: 0;
}
.order_backpack--wire,
.order_sacoche--wire {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
}
.order--selectbox--backpack--parts {
  position: absolute;
  top: 0;
  left: 0;
  width: 595px;
  height: 842px;
}
.order--selectbox--sacoche--parts {
  position: absolute;
  top: 0;
  left: 0;
  width: 551px;
  height: 477px;
}
.order--selectbox--pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.order_backpack--wire,
.order_backpack--base,
.order_backpack--svg,
.order--selectbox--backpack--parts,
.order--selectbox--backpack--parts svg {
  width: 100%;
  height: auto;
}
.order_sacoche--wire,
.order_sacoche--base,
.order_sacoche--svg,
.order--selectbox--sacoche--parts,
.order--selectbox--sacoche--parts svg {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .order_sacoche .order--selectbox--imgarea {
    width: 100%;
    margin: auto;
  }
  .order_backpack .order--selectbox--imgarea--inner {
    width: 100%;
    margin-bottom: 16px;
  }
  .order_sacoche .order--selectbox--imgarea--inner {
    margin: 0 auto 32px;
    width: 280px;
  }
}

/* --- order--selectbox--txtarea --- */
.order--selectbox--txtarea {
  width: calc(100% - 640px);
}
.order_pattern .btn-sm {
  padding-top: 12px;
  padding-bottom: 12px;
  opacity: 0.5;
}
.order_pattern .btn-sm:hover {
  opacity: 1;
}
.order_pattern input[type="radio"]:checked + .btn-sm {
  opacity: 1;
  background-color: darkkhaki;
}
.order_pattern .btn::before {
  display: none;
}
.order_pattern {
  position: relative;
  margin-right: 8px;
  margin-bottom: 20px;
}
.order_pattern input {
  display: none;
}
.order_pattern .imgarea {
  display: block;
  border: 2px solid;
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -moz-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  opacity: 0.5;
}
.order_pattern .imgarea-color {
  display: block;
  width: 48px;
  height: 48px;
}
.order_pattern input[type="radio"]:checked + .imgarea,
.order_pattern:hover .imgarea {
  opacity: 1;
}
.order_pattern .txtarea {
  position: absolute;
  display: inline-block;
  bottom: -16px;
  left: 0;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0;
  z-index: 90;
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -moz-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  opacity: 0;
}
.order_pattern:hover .txtarea {
  opacity: 1;
}
.backpack-belt.disp-none {
  display: none;
}

/* --- .attention --- */
.attention {
  padding: 24px 0;
  border-top: 0.5px solid #eee;
  border-bottom: 0.5px solid #eee;
  line-height: 1.5;
}
.attention-info {
  border-bottom: none;
}
.attention-info .mce-content-body ul {
  margin: 0;
}
.attention li::before {
  top: 0.4em;
}

/* --- .order--sheet --- */
.order--sheet {
  padding: 40px;
  background-color: #f8f8f8;
  border: none;
  border: 0.5px solid #eee;
}
.order--sheet--list {
  border-bottom: 2px solid darkkhaki;
}
.order--sheet--contents,
.order--sheet--belt,
.order--sheet--price,
.order--sheet--other {
  border-top: 2px solid darkkhaki;
  padding: 8px 0;
}
.order--sheet--dl {
  padding: 4px 0;
  line-height: 1.5;
}
.order--sheet--dl:not(:last-child) {
  border-bottom: 1px dotted #ccc;
}
.order--sheet--dl.disp-none {
  display: none;
}
.order--sheet--dl dt {
  width: 200px;
}
.order--sheet--dl dd {
  width: calc(100% - 200px);
}
.order--sheet--dl .formy_form .formy_textarea {
  width: 100%;
  height: 80px;
  background-color: #fff;
  border: none;
}

/* --- .order--sheet --- */
.order--selectbox input {
  appearance: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  font-family: bebas-neue-pro, dnp-shuei-gothic-gin-std, sans-serif;
  letter-spacing: 0.1em;
  width: calc(100% - 24px);
}
.order--selectbox input.subtotal,
.order--selectbox input.total {
  width: 200px;
  text-align: right;
  margin-right: 8px;
}
@media screen and (max-width: 1200px) {
  .order--sheet--dl {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .order--sheet--dl dt,
  .order--sheet--dl dd {
    width: 100%;
  }
  .order--sheet--dl dt {
    color: darkkhaki;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 767px) {
  .order--flow--lists,
  .order--selectbox {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .order--flow--lists {
    padding: 16px;
    border: 2px solid;
  }
  .order--flow--list {
    width: 100%;
    padding: 0 0 8px;
    border-top: none;
    border-left: none;
    margin-bottom: 8px;
  }
  .order--flow--list:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .order--selectbox--txtarea {
    width: 100%;
  }
  .order_pattern .btn-sm {
    padding: 8px 18px;
  }
  .order_pattern .imgarea {
    width: 32px;
  }
  .order_pattern .imgarea-color {
    width: 28px;
    height: 28px;
  }
  .order--sheet {
    padding: 24px;
  }
}

/* page-contact
*************************************************** */
.contact--tel .tel_txt {
  font-size: 150%;
}
.contact--form {
  padding: 40px;
  box-shadow: 0 0 40px -20px rgba(0, 0, 0, 0.25);
}
.contact_panel_area {
  position: relative;
}
.contact_panel {
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  pointer-events: auto;
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -moz-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}
.contact_panel_off {
  display: none;
}
.contact--iframe {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .contact--form {
    padding: 24px;
  }
  .contact--txt.txt-ctr {
    text-align: left;
  }
}

/* page-order-contact
*************************************************** */
.page-order-contact #formy_form tbody tr:last-child,
.page-order-contact #formy_form tbody tr:first-child {
  display: none;
}

/* page-thanks
*************************************************** */

@media screen and (max-width: 767px) {
  .page-thanks .inner.txt-ctr {
    text-align: left;
  }
}

/* page-404
*************************************************** */
.page-404 .content-404 {
  padding-top: 160px;
  padding-bottom: 160px;
}

/* page-sitemap
*************************************************** */
.sitemap--list-page.sitemap--list > li {
  margin-bottom: 10px;
}
.sitemap--list-posts.sitemap--list .sitemap--item-ttl:not(:first-child) {
  margin-top: 10px;
}
.sitemap--list-posts.sitemap--list > .sitemap--item-child {
  margin-bottom: 16px;
}
.sitemap--list li a {
  display: block;
  text-decoration: none;
}
.sitemap--list li a:hover {
  color: #4267b2;
  text-decoration: underline;
}
.sitemap--item-ttl {
  font-weight: bold;
}
.sitemap--item:not(.sitemap--item-ttl) {
  font-size: 87%;
}

/* --- category --- */
.sitemap--list li.sitemap--item-child a {
  padding-right: 8px;
}
.sitemap--list li.sitemap--item-taxonomy ul {
  letter-spacing: -0.4em;
}
.sitemap--list li.sitemap--item-taxonomy ul li {
  display: inline-block;
  padding: 0;
  margin-right: 8px;
  letter-spacing: normal;
}

@media screen and (max-width: 767px) {
  .sitemap--list {
    width: 100%;
  }
  .sitemap--list-posts.sitemap--list > .sitemap--item-child {
    margin-bottom: 8px;
  }
}

/* ##############################################################################

    ARCHIVE

############################################################################## */

/* post
**************************************** */
.post {
  position: relative;
}
.post--link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.post--date {
  width: 10em;
  margin-right: 32px;
  text-transform: uppercase;
  font-weight: 100;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0;
}
.cat_list {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.post .post--img img {
  overflow: hidden;
}
.cat_list a {
  display: inline-block;
  vertical-align: middle;
  font-size: 79%;
  background-color: #56a0b9;
  color: #f6f6f6;
  line-height: 1;
  padding: 6px 12px;
  float: left;
  margin-right: 4px;
  margin-bottom: 4px;
  white-space: nowrap;
}

/* archive-pulldown
**************************************** */
.archive-pulldown {
  position: relative;
  z-index: 1;
}
.archive-pulldown .archive_list {
  position: relative;
  font-size: 85%;
  margin-left: auto;
}
.archive-pulldown .archive_list:not(:last-child) {
  margin-right: 24px;
}
.archive-pulldown .archive_list a {
  display: block;
  padding: 8px 16px;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
.archive-pulldown .archive_list a:not(:last-child) {
  border-bottom: 2px solid;
}
.archive-pulldown .archive_list--label {
  margin-right: 8px;
}
.archive-pulldown .archive_list--btn {
  cursor: pointer;
  border: none;
  outline: none;
  appearance: none;
  padding: 8px 16px;
  background-color: #fff;
  border: 2px solid;
  font-size: 100%;
  font-weight: 700;
  min-width: 120px;
  text-align: left;
}
.archive-pulldown .archive_list--btn::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 16px;
  display: block;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -moz-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transform-origin: 50% 50%;
}
.archive-pulldown .active .archive_list--btn::after {
  top: 14px;
  transform: rotate(225deg);
}
.archive-pulldown .archive_list--menu {
  position: absolute;
  z-index: 1;
  width: 100%;
  background-color: #fff;
  border-left: 2px solid;
  border-right: 2px solid;
  border-bottom: 2px solid;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -moz-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}
.archive-pulldown .active .archive_list--menu {
  visibility: visible;
  opacity: 1;
}

/* arvchive-item
**************************************** */

/* --- post-list=item --- */
.post-item {
  width: calc(100% / 4);
  padding: 3%;
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -moz-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}
.post-item:hover {
  background-color: rgba(189, 183, 107, 0.1);
}
.post-item--ttl {
  text-transform: uppercase;
}
.post-item--img {
  width: 100%;
  padding-top: 120%;
  background-color: #aaa;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  line-height: 400px;
  text-align: center;
}

@media screen and (max-width: 1240px) {
  .post-item {
    width: calc(100% / 3);
  }
}

@media screen and (max-width: 767px) {
  .post-item {
    width: calc(100% / 2);
  }
}

/* arvchive-news
**************************************** */

/* --- news--archive --- */
.news--archive {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #111;
}
.news--archive li {
  margin-left: 8px;
  margin-right: 8px;
}
.news--archive a {
  color: #fff;
}

/* --- posts-news --- */
.posts-news {
  border-top: 2px solid;
  border-bottom: 2px solid;
}
.posts-news .post {
  padding: 16px 40px;
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -moz-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  line-height: 1.5;
}
.posts-news .post:not(:last-child) {
  border-bottom: 0.5px solid #eee;
}
.posts-news .post--date {
  margin-right: 32px;
}
.posts-news a[href="javascript:void(0);"],
.posts-news a[href="javascript:void(0);"]::before {
  color: inherit;
  cursor: inherit;
  opacity: 1;
  text-decoration: none;
}
.post--ttl {
  width: calc(100% - 10em);
}
.posts-home_news a,
.posts-news a,
.link-blank {
  display: inline-flex;
  align-items: center;
  padding-right: 20px;
  position: relative;
}
.posts-news .post:hover,
.posts-news .post a:hover {
  color: darkkhaki;
}
.posts-home_news a[target="_blank"]::after,
.posts-news a[target="_blank"]::after,
.link-blank::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: 6px;
  background-image: url(/wp/wp-content/themes/original_theme/images/common/icon-external.svg);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  .posts-news .post {
    display: block;
    padding: 12px 0;
  }
  .posts-news .post--date {
    display: block;
    margin-bottom: 4px;
  }
  .post--ttl {
    width: 100%;
  }
}

/* ##############################################################################

    SINGLE

############################################################################## */

/* single-item
**************************************** */

/* -- item_content--main(右) -- */
.item_content--info {
  order: 2;
  width: 360px;
}
.item_content--info .imgarea img {
  display: block;
  margin: auto;
}
.item_content--info .txtarea {
  position: relative;
  border: 2px solid;
  padding: 32px;
}
.item_content--sns_share {
  position: absolute;
  line-height: 16px;
  bottom: -28px;
  left: 0;
}
.item_content--sns_share li {
  margin-right: 16px;
  line-height: 13px;
}
.soryo {
  border-top: 2px solid;
  border-bottom: 2px solid;
  padding: 4px;
}
.soldout {
  background-color: darkkhaki;
  padding: 2px;
  width: 9em;
  text-align: center;
  margin-left: auto;
}
.comingsoon {
  text-align: right;
  padding: 2px;
  color: #bbb;
}
.item_content--info .txtarea .comingsoon {
  text-align: center;
  color: #231f1e;
  background-color: #eee;
}
.item_content--info .txtarea .soldout,
.item_content--info .txtarea .comingsoon {
  padding: 24px 0;
  margin-bottom: 8px;
  line-height: 1.4;
}
.item_content--info .txtarea .soldout {
  width: 100%;
  font-weight: 800;
}
.price {
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: 700;
  line-height: 1;
}
.item_content--info .txtarea .price {
  margin-bottom: 32px;
}
.price .txt-xs {
  font-size: 50%;
  margin-left: 8px;
}
.item_content--btn_area {
  padding-top: 8px;
  margin-bottom: 16px;
}
.selectbox {
  position: relative;
  -webkit-appearance: button;
  appearance: button;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  outline: none;
  border: none;
  background-color: #fff;
  margin: 0;
  width: 100%;
  padding: 0;
  height: 56px;
  letter-spacing: 0.05em;
  font-family: bebas-neue-pro, dnp-shuei-gothic-gin-std, "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  border-top: 2px solid;
  border-bottom: 2px solid;
  padding-right: 32px;
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -moz-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}
.selectbox-wrapper {
  position: relative;
}
.selectbox-wrapper::before,
.selectbox-wrapper::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  margin: auto;
}
.selectbox-wrapper::before {
  top: 4px;
  bottom: 4px;
  right: 2px;
  width: 48px;
  height: auto;
  background-color: #fff;
  z-index: 10;
}
.selectbox-wrapper::after {
  top: 0;
  bottom: 2px;
  right: 21px;
  width: 8px;
  height: 8px;
  border-right: 2px solid;
  border-bottom: 2px solid;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 20;
}
.selectbox:hover {
  background-color: #f8f8f8;
}
.item_content--btn {
  position: relative;
  height: 60px;
}
.stores_btn {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  pointer-events: auto;
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -moz-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}
.stores_btn_off {
  opacity: 0;
  pointer-events: none;
}
.item_content--info .txtarea .stores_btn .soldout,
.stores_btn_default {
  padding: 0;
  height: 60px;
  line-height: 60px;
  font-weight: bold;
  border-radius: 4px;
}
.stores_btn_default {
  text-align: center;
  background-color: #eee;
}

/* -- item_content--main(左) -- */
.item_content--main {
  order: 1;
  width: calc(100% - 440px);
}
.item_content--detail p:not(:last-child) {
  margin-bottom: 1.5em;
}
.item_content--detail_others {
  position: relative;
  padding-top: 48px;
}
.item_content--detail_others::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  border-bottom: 2px solid darkkhaki;
  width: 40px;
  height: 2px;
  margin: auto;
  border-radius: 4px;
}
.item_content--images {
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px dotted #aaa;
}
.item_content--images .img {
  position: relative;
  padding: 3%;
  width: calc(100% / 3);
  overflow: hidden;
}
.item_content--images .img-link {
  position: relative;
  display: block;
  background-color: #231f1e;
}
.item_content--images .img-link img {
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -moz-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}
.item_content--images .img-link:hover img {
  opacity: 0.5;
}
.magnify.icon {
  color: #fff;
  position: absolute;
  margin-top: 2px;
  margin-left: 3px;
  width: 32px;
  height: 32px;
  border: solid 2px currentColor;
  border-radius: 100%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  -moz-transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
  opacity: 0;
}
.magnify.icon::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 14px;
  height: 10px;
  width: 2px;
  background-color: currentColor;
}
.magnify.icon i {
  position: absolute;
  left: 10px;
  top: 9px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.magnify.icon i::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: currentColor;
}
.magnify.icon i::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: currentColor;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.item_content--images .img:hover .magnify.icon {
  opacity: 1;
}

/* --- item_other --- */
.item_other {
  border-top: 2px solid;
  padding-bottom: 0;
}

@media screen and (max-width: 1240px) {
  .item_content--images .img {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .item_content {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .item_content--info,
  .item_content--main {
    width: 100%;
  }
  .item_content--info {
    order: 0;
    margin-bottom: 64px;
  }
  .item_content--info .txtarea {
    padding: 16px;
  }
  .item_content--info .txtarea .imgarea,
  .item_content--info .txtarea .price {
    margin-bottom: 24px;
  }
  .item_content--detail_others {
    padding-top: 32px;
  }
  .magnify.icon {
    opacity: 1;
    left: auto;
    top: auto;
    bottom: 12px;
    right: 12px;
    width: 18px;
    height: 18px;
  }
  .magnify.icon::before {
    top: 14px;
    left: 5px;
    height: 8px;
  }
  .magnify.icon i {
    left: 5px;
    top: 4px;
  }
  .magnify.icon i::before,
  .magnify.icon i::after {
    width: 7px;
  }
  .selectbox {
    padding-right: 8px;
  }
  .selectbox-wrapper::before {
    width: 22x;
  }
  .selectbox-wrapper::after {
    right: 10px;
    width: 6px;
    height: 6px;
  }
}

/* single-news
**************************************** */
.news--info .post--date {
  width: 100%;
}
.news--info .eyecatch {
  border: 0.5px solid #eee;
  padding: 32px;
}

/* wp-pagenavi
**************************************** */
.wp-pagenavi {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
}
.wp-pagenavi .pages {
  width: 100%;
  padding-top: 32px;
  margin-bottom: 32px;
  text-align: center;
  font-size: 81.4%;
  font-weight: 800;
}
.wp-pagenavi .current,
.wp-pagenavi a {
  position: relative;
  max-width: 42%;
  display: inline-block;
  vertical-align: top;
  border: 2px solid;
  text-transform: uppercase;
  line-height: 1.4;
  padding: 8px 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 8px;
  margin-bottom: 8px;
  font-weight: 700;
}
.wp-pagenavi a:hover {
  background-color: #eee;
}
.wp-pagenavi .current {
  background-color: darkkhaki;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin-bottom: 40px;
  }
  .wp-pagenavi .current,
  .wp-pagenavi a {
    max-width: 100%;
  }
}

/* pass
**************************************** */
.single .pass {
  width: 100%;
}
.single .pass p:first-child {
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .single .pass p:first-child {
    text-align: left;
  }
}

/* ##############################################################################

    FORMY

############################################################################## */
.formy_form table {
  width: 100%;
}
.formy_form th,
.formy_form td {
  padding: 16px 0;
  vertical-align: middle;
  line-height: 1.5;
}
.formy_form th {
  font-weight: normal;
  text-align: left;
  width: 25%;
}
.formy_form table input[type="text"],
.formy_form table input[type="email"],
.formy_form table input[type="tel"],
.formy_form table input[type="date"],
.formy_form table input[type="password"],
.formy_form table textarea {
  width: 100%;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  vertical-align: bottom;
  outline: none;
}
.formy_form table input[type="text"],
.formy_form table input[type="email"],
.formy_form table input[type="tel"],
.formy_form table input[type="date"],
.formy_form table input[type="password"],
.formy_form select,
.formy_form textarea,
.order_etc {
  margin: 0;
  padding: 8px 16px;
  border: transparent;
  font: inherit;
  font-size: 100%;
  background-color: #f8f8f8;
  border-left: 2px solid;
  border-right: 2px solid;
}
.order_etc {
  width: 100%;
  background-color: #fff;
  border: none;
}
.formy_form textarea {
  height: 160px;
  resize: vertical;
}
.formy_form select {
  height: 40px;
}
.formy_form ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.formy_form input:hover {
  opacity: 0.7;
}
.formy_form textarea:hover {
  opacity: 0.7;
}
.formy_form input:focus {
  outline: none;
}
.formy_form .parsley-validated {
  background-color: #eee;
}
.formy_form .parsley-error {
  background-color: #fee;
}
.formy_form .parsley-success {
  background-color: #fff;
}
.help_text,
.formy_error {
  font-size: 69%;
  font-weight: 800;
}
.formy_error {
  color: #cf2e2e !important;
}
.hidden_help {
  display: none;
}
.formy_privacy div {
  overflow-y: scroll;
  height: 140px;
  border: solid 1px #ccc;
  font-size: 87%;
  padding: 8px 16px;
}
.requiredIcon {
  font-weight: 800;
  line-height: 1;
  position: relative;
  color: transparent;
  padding-left: 5px;
}
.requiredIcon::before {
  color: #cf2e2e;
  content: "*";
}
#formy_btn {
  padding-top: 32px;
  text-align: center;
}
#formy_btn input,
input.order-submit,
#wpcf7-submit_btn input {
  min-width: 200px;
  padding: 12px 56px;
  margin-right: 4px;
  margin-left: 4px;
  border: none;
  border-radius: 0;
  font-size: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  font-family: bebas-neue-pro, dnp-shuei-gothic-gin-std, "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  border: 2px solid;
  -webkit-font-smoothing: antialiased;
  color: #231f1e;
}
input.order-submit {
  width: 100%;
  min-width: auto;
}
.formy_form ul li input[type="radio"],
.formy_form ul li input[type="checkbox"],
.wpcf7-list-item input[type="radio"] {
  display: none !important;
}
.formy_form ul li label {
  height: 32px;
  line-height: 32px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0 8px 0 40px;
  cursor: pointer;
  font-weight: 700;
}
.formy_form ul li label:hover,
.wpcf7-list-item label:hover {
  opacity: 0.7;
}
.wpcf7-list-item span {
  position: relative;
  display: block;
  padding-left: 32px;
}
.wpcf7-list-item label {
  display: block;
  margin-bottom: 8px;
}
.formy_form ul li label::before,
.wpcf7-list-item span::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  margin: auto;
  left: 8px;
  top: 0;
  bottom: 0;
  border: 2px solid;
}
.formy_form ul li input[type="radio"] + label::before,
.wpcf7-list-item span::before {
  border-radius: 10px;
}
.formy_form ul li input[type="radio"]:checked + label,
.formy_form ul li input[type="checkbox"]:checked + label,
.wpcf7-list-item input:checked + span,
.wpcf7-list-item input:checked + input + span {
  color: darkkhaki;
}
.formy_form ul li input[type="radio"]:checked + label::before,
.formy_form ul li input[type="checkbox"]:checked + label::before,
.wpcf7-list-item input:checked + span::before,
.wpcf7-list-item input:checked + input + span::before {
  border-color: darkkhaki;
}
.formy_form ul li input[type="radio"]:checked + label::after,
.formy_form ul li input[type="checkbox"]:checked + label::after,
.wpcf7-list-item input:checked + span::after,
.wpcf7-list-item input:checked + input + span::after {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 22px;
  top: 0;
  bottom: 1px;
  left: 15px;
  margin: auto;
  border-right: 2px solid darkkhaki;
  z-index: 10;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.formy_confirm,
.wpcf7-submit {
  background-color: darkkhaki;
}
.formy_submit_disabled {
  background-color: transparent;
  opacity: 0.5;
}
#formy_btn .formy_submit_disabled:hover {
  opacity: 1;
  cursor: default;
}
.confirm-message {
  text-align: center;
  padding: 32px 0 0;
  border-top: 2px solid;
  margin-top: 32px;
}
.autoConfirmBack {
  background-color: #ccc;
}
.formy_send {
  background-color: darkkhaki;
}
#total_required {
  color: darkkhaki;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .formy_form th,
  .formy_form td {
    display: block;
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }
  .formy_form th {
    border-bottom: none;
    padding-bottom: 0;
    white-space: normal;
    font-weight: bold;
  }
  .formy_form td {
    padding-top: 0;
  }
  #formy_btn {
    padding-top: 8px;
  }
  #formy_btn input {
    width: 100%;
    padding: 12px;
    min-width: 100%;
    margin-right: 0;
    margin-left: 0;
    background-size: contain;
    background-position: center;
  }
  .formy_form input:hover {
    opacity: 1;
  }
  .autoConfirmBack {
    margin-bottom: 8px;
  }
  .formy_form table input[type="text"],
  .formy_form table input[type="email"],
  .formy_form table input[type="tel"],
  .formy_form table input[type="date"],
  .formy_form table input[type="password"],
  .formy_form select,
  .formy_form textarea {
    font-size: 16px; /* iOSでズーム防止 */
  }
  .orderitem .first {
    margin-top: 16px;
  }
}

/* cf7用のスタイル */
#wpcf7-submit_btn {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.wpcf7-confirm,
.wpcf7-submit,
.wpcf7-submit-btn,
.wpcf7-back {
  /* OKボタンのスタイル */
  font-size: inherit;
  border: none;
  cursor: pointer;
  color: #fff;
  border-radius: 3px;
  padding: 16px 32px;
  -webkit-appearance: none;
  appearance: none;
}
.wpcf7-confirm,
.wpcf7-submit {
  padding: 16px 64px;
}
.wpcf7-back {
  /* 戻るボタンのスタイル */
  background-color: #aaa;
}
span.wpcf7-list-item {
  /* ラジオボタンを縦並び */
  display: block;
}
.first.wpcf7-list-item {
  /* ラジオボタンの変なパディング消す */
  padding-top: 0;
}
.wpcf7c-conf {
  /* 確認画面をシンプルに */
  background-color: #fff;
  border: none !important;
}
span.wpcf7-list-item {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .wpcf7-submit_btn input {
    width: 100%;
    margin-bottom: 8px;
  }
  #wpcf7-submit_btn {
    display: block;
  }
  #wpcf7-submit_btn input {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

/* エラーメッセージの基本クラス paddingとかに */
.wpcf7 form .wpcf7-response-output {
}
/*メール送信成功時…初期：緑線*/
.wpcf7 form.sent .wpcf7-response-output {
}
/*入力項目エラー時…初期：赤線*/
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
}
/*これはよくわからない…初期：オレンジ線*/
.wpcf7 form.spam .wpcf7-response-output {
}
/*なんか黄色のとき…初期：黄色線*/
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
}

/*
      チェックボックスは下記を追記
      確認画面でinputとspan（.wpcf7-list-item-label）の間に<input>が挿入されるため、改めて指定が必要
    */
.wpcf7-form .wpcf7-list-item-label {
}
.wpcf7-form input[type="radio"],
.wpcf7-form input[type="checkbox"] {
}
.wpcf7-form .wpcf7-list-item-label::before {
}
.wpcf7-form input[type="checkbox"]:checked + .wpcf7-list-item-label,
.wpcf7-form input[type="checkbox"]:checked + input + .wpcf7-list-item-label {
}
.wpcf7-form input[type="checkbox"]:checked + .wpcf7-list-item-label::before,
.wpcf7-form input[type="checkbox"]:checked + input + .wpcf7-list-item-label::before {
}
.wpcf7-form input[type="checkbox"]:checked + .wpcf7-list-item-label::after,
.wpcf7-form input[type="checkbox"]:checked + input + .wpcf7-list-item-label::after {
}
