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

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

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

nav ul,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/* form reset
------------------------------- */
input,
select {
  vertical-align: middle;
}

input[type=button],
input[type=text],
input[type=submit],
input[type=image],
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

/* IE text マーク削除 */
input::-ms-clear {
  visibility: hidden;
}

/* IE password マーク削除 */
input::-ms-reveal {
  visibility: hidden;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -moz-appearance: none;
       appearance: none;
  color: inherit;
  -webkit-appearance: none;
}

/* ======================================
    Base (SP)
====================================== */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
html {
  overflow-x: hidden;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.03em;
  font-size: clamp(0.938rem, 0.375rem + 2.4vw, 1.5rem);
  word-wrap: break-word;
  background: #fff;
  font-family: "Noto Serif JP", serif;
  color: #5b4a3f;
  -webkit-font-smoothing: antialiased;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
          animation: fadeIn 2s ease 0s 1 normal;
}
@media screen and (min-width: 768px) {
  body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
  }
}
p {
  font-weight: 500;
  /* フォントサイズはbodyを継承 */
  line-height: 2;
}
p a:link {
  text-decoration: underline;
}

/* svgのIEバグ回避 */
img[src$=".svg"] {
  width: 100%;
  height: auto;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
}

a img {
  border: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

small {
  text-align: center;
  font-size: 1rem;
  font-style: normal;
}

address {
  font-style: normal;
}

strong {
  font-weight: 700;
}

button {
  font-family: inherit;
  color: inherit;
}

sub {
  font-size: 60%;
  vertical-align: sub;
}

sup {
  font-size: 60%;
  vertical-align: super;
}

/* リンク----------------------------- */
a {
  color: #003ec7;
  /* ブレ防止追加 */
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  text-decoration: none;
}
@media screen and (min-width: 1025px) {
  a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  a:hover {
    color: #003ec7;
    text-decoration: none;
    opacity: 0.7;
  }
  a:hover img, a:focus img {
    opacity: 0.7;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ======================================
    .bl_headerNav
====================================== */
.bl_headerNav {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: clamp(15.625rem, 66.67vw, 31.25rem);
  position: fixed;
  top: clamp(5rem, 21.33vw, 10rem);
  right: -100%;
  max-height: calc(100vh - clamp(5rem, 21.33vw, 10rem));
  background: #fff;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  overflow-y: auto;
  z-index: 11100;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
  /*Google Chrome、Safariへの対応*/
}
.bl_headerNav::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 1280px) {
  .bl_headerNav {
    position: static;
    width: 100%;
    max-width: 500px;
    max-height: 100%;
    opacity: 1;
    background: transparent;
  }
}
.bl_headerNav ul {
  width: 100%;
  height: auto;
  background: #fff;
  padding: clamp(3.125rem, 13.33vw, 6.25rem) clamp(1.563rem, 6.67vw, 3.125rem);
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
.bl_headerNav ul::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 1280px) {
  .bl_headerNav ul {
    padding: 50px 0 0;
    background: transparent;
  }
}
.bl_headerNav ul > li {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: auto;
  text-align: left;
}
.bl_headerNav ul > li:first-of-type {
  border-top: 1px solid #5b4a3f;
}
@media screen and (min-width: 1280px) {
  .bl_headerNav ul > li {
    margin-bottom: 16px;
  }
  .bl_headerNav ul > li:first-of-type {
    border-top: none;
  }
}
.bl_headerNav ul > li > a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: auto;
  padding-top: clamp(1.25rem, 5.33vw, 2.5rem);
  padding-bottom: clamp(1.25rem, 5.33vw, 2.5rem);
  padding-left: clamp(0.313rem, 1.33vw, 0.625rem);
  border-bottom: 1px solid #5b4a3f;
  font-size: clamp(0.938rem, 0.375rem + 2.4vw, 1.5rem);
  text-align: left;
  line-height: 1.6;
  color: #5b4a3f;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 1280px) {
  .bl_headerNav ul > li > a {
    border-top: none;
    padding: 15px 30px;
    font-size: 20px;
    background: #fff;
    border-radius: 10px;
    border-bottom: none;
  }
  .bl_headerNav ul > li > a br {
    display: none;
  }
}
.bl_headerNav ul > li > a::after {
  content: "";
  display: inline-block;
  background: url(../images/icon_arrow_b__brown.svg) no-repeat center center/contain;
  aspect-ratio: 22/24;
  width: clamp(0.688rem, 2.93vw, 1.375rem);
  position: absolute;
  right: clamp(0.313rem, 1.33vw, 0.625rem);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 1280px) {
  .bl_headerNav ul > li > a::after {
    right: 30px;
    width: 16px;
  }
}

.is_btnHamburger__on .bl_headerNav {
  right: 0; /* 右から出す場合 */
  opacity: 1;
}

.ly_wrapPc {
  position: relative;
}
@media screen and (min-width: 768px) {
  .ly_wrapPc {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .ly_wrapPc {
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .ly_wrapPc .ly_wrapPc_inner {
    position: relative;
    width: 100%;
    max-width: 1474px;
    padding-top: 100px;
    padding-bottom: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
  }
}
.ly_wrapSp {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0;
  background: #fff;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .ly_wrapSp {
    margin: 0 auto;
  }
}
@media screen and (min-width: 1280px) {
  .ly_wrapSp {
    margin: 0;
    border-radius: 30px;
    overflow: hidden;
  }
}

/* =================================================
    .bl_header
=================================================== */
.bl_header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 750px;
  height: clamp(5rem, 21.33vw, 10rem);
  margin: 0 auto;
  background: #fff;
  z-index: 11000;
}
@media screen and (min-width: 768px) {
  .bl_header {
    width: calc(100% - 60px);
  }
}
@media screen and (min-width: 1280px) {
  .bl_header {
    position: sticky;
    -ms-flex-item-align: start;
        align-self: flex-start;
    top: 145px;
    left: 0;
    right: auto;
    -webkit-transform: none;
            transform: none;
    max-width: 500px;
    height: calc(100vh - 345px);
    margin: 0;
    margin-right: 30px;
    background: transparent;
  }
}
.bl_header_inner {
  position: relative;
  width: 86.6666666667%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .bl_header_inner {
    width: 100%;
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.bl_header_logo {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 60.9230769231%;
  max-width: 396px;
  height: auto;
  z-index: 11000;
}
@media screen and (min-width: 1280px) {
  .bl_header_logo {
    width: 100%;
    max-width: 100%;
  }
}
.bl_header_logo a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
}
.bl_header .el_insta {
  width: clamp(1.25rem, 5.33vw, 2.5rem);
  height: auto;
}
@media screen and (min-width: 1280px) {
  .bl_header .el_insta {
    margin: clamp(1.563rem, 6.67vw, 3.125rem) auto 0;
  }
}
.bl_header .el_insta a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
}

/* =================================================
    main
=================================================== */
main {
  margin-top: clamp(5rem, 21.33vw, 10rem);
}
@media screen and (min-width: 1280px) {
  main {
    margin-top: 0;
  }
}

/* =================================================
    layout section
=================================================== */
.ly_sec {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.ly_sec_inner {
  width: 86.6666666667%;
  margin: 0 auto;
}

/* =================================================
    footer
=================================================== */
.bl_footer {
  width: 100%;
  height: auto;
  padding-bottom: 50px;
  margin: 0 auto;
  text-align: center;
}
.bl_footer_copyright {
  display: block;
  font-size: clamp(0.75rem, 3.2vw, 1.5rem);
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
}

/* =================================================
    layout Flex
=================================================== */
.ly_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ly_flex_center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ly_flex_btw {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ly_flex_ard {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.ly_flex_start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.ly_flex_row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.ly_flex_nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.ly_flex .ly_flexBox50 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

@media screen and (min-width: 1024px) {
  .ly_flex_pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .ly_flex_pc_center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .ly_flex_pc_btw {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .ly_flex_pc_ard {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .ly_flex_pc_start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .ly_flex_pc_row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .ly_flex_pc_nowrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

/* ======================================
    el_btnHamburger
====================================== */
.el_btnHamburger {
  position: relative;
  width: clamp(1.875rem, 8vw, 3.75rem);
  max-width: 60px;
  height: clamp(1.188rem, 5.07vw, 2.375rem);
  margin: 0;
  z-index: 100000;
  background-color: transparent;
  cursor: pointer;
}
@media screen and (min-width: 1280px) {
  .el_btnHamburger {
    display: none;
  }
}
.el_btnHamburger__animation {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
}
.el_btnHamburger_line {
  /* 線色 */
  background: #313131;
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  top: calc(50% - 1px);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.el_btnHamburger_line.el_btnHamburger_line__top {
  top: 0;
}
.el_btnHamburger_line.el_btnHamburger_line__bottom {
  top: auto;
  bottom: 0;
}

/* 背景 */
.js_wrapBg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  z-index: 10100;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}

.is_btnHamburger__on .el_btnHamburger_line.el_btnHamburger_line__middle {
  background: transparent;
}
.is_btnHamburger__on .el_btnHamburger_line.el_btnHamburger_line__top {
  top: calc(50% - 1px);
  -webkit-transform: rotate(-45deg) translateY(0px);
          transform: rotate(-45deg) translateY(0px);
}
.is_btnHamburger__on .el_btnHamburger_line.el_btnHamburger_line__bottom {
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(0px);
          transform: rotate(45deg) translateY(0px);
  bottom: auto;
}
.is_btnHamburger__on .js_wrapBg {
  opacity: 0.3;
  visibility: visible;
}

/* =================================================
    ボタン
=================================================== */
.el_btn {
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 258px;
  height: auto;
  padding: 16px;
  border: 1px solid #5b4a3f;
  border-radius: 100vh;
  font-size: 100%;
  font-weight: 500;
  color: #5b4a3f !important;
  text-align: center;
  overflow: hidden;
  text-decoration: none !important;
}
@media screen and (min-width: 1024px) {
  .el_btn {
    width: 310px;
    padding: 21px;
  }
  .el_btn:hover {
    background: #5b4a3f;
    opacity: 1;
    color: #fff !important;
  }
  .el_btn:hover::after {
    width: 22px;
    height: 4px;
    background: url(../images/common/icon/icon_arrow_linkBtn__hover.svg) no-repeat right center/contain;
  }
}
.el_btn::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 4px;
  background: url(../images/common/icon/icon_btnArrow.svg) no-repeat center/contain;
  vertical-align: middle;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.el_btn.el_btn_backtolist {
  width: 242px;
  padding: 21px 16px;
  padding-left: 30px;
  text-align: left;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .el_btn.el_btn_backtolist {
    width: 293px;
    padding: 21px;
    padding-left: 40px;
  }
  .el_btn.el_btn_backtolist::after {
    right: 28px;
  }
}
.el_btn.el_btn_solid {
  background: #5b4a3f;
  color: #fff !important;
}
.el_btn.el_btn_solid::after {
  background: url(../images/common/icon/icon_arrow_linkBtn__hover.svg) no-repeat center/contain;
}
@media screen and (min-width: 1024px) {
  .el_btn.el_btn_solid:hover {
    color: #5b4a3f !important;
    opacity: 1;
  }
  .el_btn.el_btn_solid:hover::after {
    width: 22px;
    height: 4px;
    background: url(../images/common/icon/icon_btnArrow.svg) no-repeat right center/contain;
  }
}

.el_btn_top {
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 258px;
  height: auto;
  padding: 10px;
  border: 1px solid #5b4a3f;
  border-radius: 100vh;
  font-size: 100%;
  font-weight: 500;
  color: #5b4a3f !important;
  text-align: center;
  overflow: hidden;
  text-decoration: none !important;
}
@media screen and (min-width: 1024px) {
  .el_btn_top {
    width: 310px;
  }
  .el_btn_top:hover {
    background: #5b4a3f;
    opacity: 1;
    color: #fff !important;
  }
}

/* =================================================
    VIEW ALL ボタン
=================================================== */
.el_btn_viewAll {
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: auto;
  padding: 6px 30px 6px;
  padding-right: 55px;
  margin-right: 10px;
  background: #5b4a3f;
  border: 1px solid #5b4a3f;
  font-weight: 500;
  line-height: 1.7333333333;
  color: #fff;
  text-decoration: none !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: left;
}
.el_btn_viewAll:last-of-type {
  margin-right: 0;
}
@media screen and (min-width: 1024px) {
  .el_btn_viewAll {
    padding: 11px 34px;
    padding-right: 68px;
  }
  .el_btn_viewAll:hover {
    background: #fff;
    opacity: 1;
    color: #5b4a3f;
  }
  .el_btn_viewAll:hover::after {
    background: #fff;
    color: #5b4a3f;
  }
}
.el_btn_viewAll a {
  display: block;
  width: 100%;
  height: 100%;
  font-weight: inherit;
  color: inherit;
}
.el_btn_viewAll::after {
  content: "\e900";
  font-family: "icomoon" !important;
  speak: never;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background: #44be2f;
  line-height: 20px;
  font-size: 10px;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .el_btn_viewAll::after {
    right: 30px;
  }
}
.el_btn_viewAll + .el_linkBtn {
  margin-top: 15px;
}

/* =================================================
    BACK TO LIST ボタン
=================================================== */
.el_btn_backtolist {
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: auto;
  padding: 6px 30px 6px;
  padding-right: 55px;
  margin-right: 10px;
  background: #5b4a3f;
  border: 1px solid #5b4a3f;
  font-weight: 500;
  line-height: 1.7333333333;
  color: #fff;
  text-decoration: none !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: left;
}
.el_btn_backtolist:last-of-type {
  margin-right: 0;
}
@media screen and (min-width: 1024px) {
  .el_btn_backtolist {
    padding: 11px 34px;
    padding-right: 68px;
  }
  .el_btn_backtolist:hover {
    background: #fff;
    opacity: 1;
    color: #5b4a3f;
  }
  .el_btn_backtolist:hover::after {
    background: #fff;
    color: #5b4a3f;
  }
}
.el_btn_backtolist a {
  display: block;
  width: 100%;
  height: 100%;
  font-weight: inherit;
  color: inherit;
}
.el_btn_backtolist::after {
  content: "\e900";
  font-family: "icomoon" !important;
  speak: never;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background: #fff;
  line-height: 20px;
  font-size: 10px;
  color: #5b4a3f;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .el_btn_backtolist::after {
    right: 30px;
  }
}
.el_btn_backtolist + .el_linkBtn {
  margin-top: 15px;
}

/* ======================================
    投稿一覧
====================================== */
.page_archive {
  padding-top: clamp(1.5625rem, 6.6666666667vw, 3.125rem);
  padding-bottom: clamp(1.5625rem, 6.6666666667vw, 3.125rem);
}
.page_archive h1 {
  font-size: clamp(0.9375rem, 4vw, 1.875rem);
  text-align: center;
}
.page_archive .bl_archive {
  margin-top: 30px;
}
.page_archive .bl_archive .bl_loop-topics_card {
  line-height: 1.2;
}
.page_archive .bl_archive .bl_loop-topics_card a {
  font-size: 80%;
  color: #5b4a3f;
}

/* ======================================
    投稿
====================================== */
.bl_post {
  min-height: 80dvh;
}
.bl_post .bl_single_header {
  padding-top: clamp(3.125rem, 13.33vw, 6.25rem);
  padding-bottom: clamp(3.125rem, 13.33vw, 6.25rem);
  text-align: center;
}
.bl_post .bl_single_header h1 {
  font-size: clamp(1.125rem, 4.8vw, 2.25rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.4347826087;
}
.bl_post .bl_post_thum {
  margin-bottom: clamp(1.5625rem, 6.6666666667vw, 3.125rem);
}
.bl_post .el_btnWrap {
  margin-top: clamp(1.5625rem, 6.6666666667vw, 3.125rem);
  margin-bottom: clamp(1.5625rem, 6.6666666667vw, 3.125rem);
  text-align: center;
}

/* video */
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.bl_bkgSlide {
  display: none;
}
@media screen and (min-width: 768px) {
  .bl_bkgSlide {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
  }
  .bl_bkgSlide .swiper-slide-active .swiper-img,
  .bl_bkgSlide .swiper-slide-duplicate-active .swiper-img,
  .bl_bkgSlide .swiper-slide-prev .swiper-img {
    -webkit-animation: zoomUp 7s linear 0s normal both;
            animation: zoomUp 7s linear 0s normal both;
  }
  .bl_bkgSlide .swiper-slide .swiper-img {
    width: 100dvw;
    height: 100dvh;
  }
  .bl_bkgSlide .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* =================================================
    common
=================================================== */
.bl_sec {
  overflow-x: hidden;
  position: relative;
  padding-top: clamp(3.125rem, 13.33vw, 6.25rem);
  padding-bottom: clamp(6.25rem, 26.67vw, 12.5rem);
}
.bl_sec::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 1/1;
  background: rgba(91, 74, 63, 0.15);
  width: 86.6666666667%;
  border-top-right-radius: clamp(0.313rem, 1.33vw, 0.625rem);
  border-bottom-right-radius: clamp(0.313rem, 1.33vw, 0.625rem);
}
.bl_sec h2 {
  position: relative;
  padding-bottom: clamp(0.75rem, 0.063rem + 2.93vw, 1.438rem);
  margin-left: clamp(1.563rem, 6.67vw, 3.125rem);
  font-size: clamp(1.5rem, 6.4vw, 3rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.03em;
}
.bl_sec h2::after {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100vw;
  max-width: 650px;
  height: clamp(0.063rem, 0.27vw, 0.125rem);
  position: absolute;
  bottom: 0;
  left: 0;
  background: #5b4a3f;
}
.bl_sec h3 {
  margin-top: clamp(3.125rem, 13.33vw, 6.25rem);
  margin-left: clamp(1.563rem, 6.67vw, 3.125rem);
  font-size: clamp(1.125rem, 4.8vw, 2.25rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.bl_sec .el_img {
  position: relative;
  z-index: 10;
  margin-top: clamp(3.125rem, 13.33vw, 6.25rem);
  margin-bottom: clamp(3.125rem, 13.33vw, 6.25rem);
}
.bl_sec p {
  margin-top: 2em;
}
.bl_sec p:first-of-type {
  margin-top: 0;
}

.ly_img_right {
  margin: 0 calc(50% - 50vw) 0 auto;
}
@media screen and (min-width: 768px) {
  .ly_img_right {
    margin: 0 -50px 0 auto;
  }
}
.ly_img_right img {
  border-top-left-radius: clamp(0.313rem, 1.33vw, 0.625rem);
  border-bottom-left-radius: clamp(0.313rem, 1.33vw, 0.625rem);
}

.ly_img_left {
  margin: 0 auto 0 calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .ly_img_left {
    margin: 0 auto 0 -50px;
  }
}
.ly_img_left img {
  border-top-right-radius: clamp(0.313rem, 1.33vw, 0.625rem);
  border-bottom-right-radius: clamp(0.313rem, 1.33vw, 0.625rem);
}

/* =================================================
    .bl_fv
=================================================== */
.bl_fv {
  padding-top: clamp(3.75rem, 16vw, 7.5rem);
  aspect-ratio: 750/1110;
  background: url(../images/bkg_fv.jpg) no-repeat center center/cover;
}
.bl_fv h1 {
  font-size: clamp(1.25rem, 5.33vw, 2.5rem);
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
}
.bl_fv p {
  margin-top: clamp(2.5rem, 10.67vw, 5rem);
  line-height: 1.6;
  color: #fff;
  text-align: center;
}
.bl_fv .bl_fv_btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(12.5rem, 53.33vw, 25rem);
  height: auto;
  margin: 0 auto;
  margin-top: clamp(2.5rem, 10.67vw, 5rem);
  aspect-ratio: 400/100;
  border: clamp(0.063rem, 0.27vw, 0.125rem) solid #fff;
  color: #fff;
  letter-spacing: 0.1em;
}
.bl_fv .bl_fv_btn::after {
  content: "";
  display: inline-block;
  background: url(../images/icon_arrow__white.svg) no-repeat center center/contain;
  aspect-ratio: 22/24;
  width: clamp(0.688rem, 2.93vw, 1.375rem);
}

/* =================================================
    .bl_about
=================================================== */
.bl_about {
  padding-top: clamp(6.25rem, 26.67vw, 12.5rem);
  padding-bottom: clamp(6.25rem, 26.67vw, 12.5rem);
}
.bl_about h2 {
  position: relative;
  font-size: clamp(1.5rem, 6.4vw, 3rem);
  line-height: 1.5789473684;
  letter-spacing: 0.03em;
  font-weight: 600;
  text-align: center;
}
.bl_about h2 span {
  display: inline-block;
  margin: 0 4px;
  font-size: clamp(1.188rem, 5.07vw, 2.375rem);
  font-weight: 600;
}
.bl_about .el_img {
  margin: clamp(3.125rem, 13.33vw, 6.25rem) auto;
}
.bl_about p {
  margin-top: 2em;
}
.bl_about p:first-of-type {
  margin-top: 0;
}
.bl_about p a {
  color: inherit;
}

/* =================================================
    .bl_concept
=================================================== */
.bl_concept .el_img {
  width: calc(100% - clamp(1.563rem, 6.67vw, 3.125rem));
  border-top-left-radius: clamp(0.313rem, 1.33vw, 0.625rem);
  border-bottom-left-radius: 10px;
  margin-left: auto;
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .bl_concept .el_img {
    margin-left: auto;
    margin-right: -50px;
  }
}
.bl_concept .el_img .swiper .swiper-slide {
  aspect-ratio: 70/84;
}
.bl_concept .el_img .swiper .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/* =================================================
    .bl_soil
=================================================== */
.bl_soil .el_img {
  margin-bottom: 0;
}
.bl_soil .el_point {
  width: 100vw;
  max-width: 750px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -50px calc(50% - 50vw) clamp(3.125rem, 13.33vw, 6.25rem);
  list-style: none;
}
@media screen and (min-width: 768px) {
  .bl_soil .el_point {
    margin: -50px -50px clamp(3.125rem, 13.33vw, 6.25rem);
  }
}
.bl_soil .el_point li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33%;
          flex: 0 0 33.33%;
  padding-top: clamp(5.125rem, -0.063rem + 22.13vw, 10.313rem);
  padding-bottom: clamp(3.125rem, 13.33vw, 6.25rem);
  background: rgba(91, 74, 63, 0.5);
  text-align: center;
  color: #fff;
}
.bl_soil .el_point li:nth-of-type(2) {
  background: rgba(91, 74, 63, 0.65);
}
.bl_soil .el_point li:nth-of-type(3) {
  background: rgba(91, 74, 63, 0.8);
}
.bl_soil .el_point li .el_no {
  font-size: clamp(2.125rem, 9.07vw, 4.25rem);
  font-weight: 500;
  text-align: center;
}
.bl_soil .el_point li .el_no span {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  font-size: clamp(0.813rem, 3.47vw, 1.625rem);
  line-height: 1;
  text-align: center;
}
.bl_soil .el_point li p {
  letter-spacing: 0.03em;
  line-height: 1.6;
  font-weight: 500;
}
.bl_soil .el_bandImg {
  width: 100vw;
  max-width: 750px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: clamp(3.125rem, 13.33vw, 6.25rem) calc(50% - 50vw);
  gap: clamp(0.313rem, 1.33vw, 0.625rem);
}
@media screen and (min-width: 768px) {
  .bl_soil .el_bandImg {
    margin: clamp(3.125rem, 13.33vw, 6.25rem) -50px;
  }
}
.bl_soil .el_bandImg figure {
  overflow: hidden;
}
.bl_soil .el_bandImg figure:first-of-type {
  border-top-right-radius: clamp(0.313rem, 1.33vw, 0.625rem);
  border-bottom-right-radius: clamp(0.313rem, 1.33vw, 0.625rem);
}
.bl_soil .el_bandImg figure:nth-of-type(2) {
  border-top-left-radius: clamp(0.313rem, 1.33vw, 0.625rem);
  border-bottom-left-radius: clamp(0.313rem, 1.33vw, 0.625rem);
}
.bl_soil .el_bandImg figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bl_soil .el_bandImg figure figcaption {
  text-align: center;
}

/* =================================================
    .bl_band_slide
=================================================== */
.bl_band_slide {
  overflow-x: hidden;
}
.bl_band_slide .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.bl_band_slide .swiper-slide figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background: #5b4a3f;
}
.bl_band_slide .swiper-slide figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.bl_band_slide .swiper-slide figure figcaption {
  width: 100%;
  height: 100%;
  font-size: clamp(0.75rem, 3.2vw, 1.5rem);
  color: #fff;
  text-align: center;
}
.bl_band_slide .swiper-slide:nth-of-type(odd) figure {
  background: rgba(91, 74, 63, 0.8);
}

/* =================================================
    .bl_story
=================================================== */
.bl_story {
  padding-top: clamp(3.125rem, 13.33vw, 6.25rem);
  padding-bottom: clamp(3.125rem, 13.33vw, 6.25rem);
  background: #5b4a3f;
  color: #fff;
}
.bl_story p {
  margin-top: 2em;
  font-weight: 500;
  line-height: 1.6;
}
.bl_story p:first-of-type {
  margin-top: 0;
}
.bl_story .el_former-ceo .ly_flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1.563rem, 6.67vw, 3.125rem);
  margin-bottom: clamp(1.563rem, 6.67vw, 3.125rem);
}
.bl_story .el_former-ceo .el_img {
  width: clamp(9.375rem, 40vw, 18.75rem);
  aspect-ratio: 1/1;
  margin: 0 auto;
  border-radius: 100vh;
  padding: clamp(0.625rem, 2.67vw, 1.25rem);
  overflow: hidden;
  border: 1px solid;
}
.bl_story .el_former-ceo .el_img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100vh;
}
.bl_story .el_former-ceo h2 {
  margin-top: clamp(1.5625rem, 6.6666666667vw, 3.125rem);
  font-size: clamp(1.438rem, 6.13vw, 2.875rem);
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.4347826087;
}
.bl_story .el_former-ceo h2 .el_post {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.05em;
  font-size: clamp(0.875rem, 3.73vw, 1.75rem);
}
.bl_story .el_former-ceo h2 .el_kana {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: clamp(0.75rem, 3.2vw, 1.5rem);
  letter-spacing: 0.1em;
  font-weight: 700;
  font-family: "Nanum Myeongjo", serif;
}
.bl_story .el_former-ceo .el_lead {
  margin-top: clamp(1.5625rem, 6.6666666667vw, 3.125rem);
  font-weight: 500;
  line-height: 1.6;
}
.bl_story .el_line {
  margin: clamp(3.125rem, 13.3333333333vw, 6.25rem) auto;
}

/* =================================================
    .bl_manager
=================================================== */
.bl_manager {
  padding-top: clamp(3.125rem, 13.33vw, 6.25rem);
  padding-bottom: clamp(3.125rem, 13.33vw, 6.25rem);
}
.bl_manager .el_line {
  margin: clamp(1.563rem, 6.67vw, 3.125rem) auto;
}
.bl_manager .el_ceo .ly_flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.bl_manager .el_ceo .ly_flex .el_img {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 clamp(9.375rem, 40vw, 18.75rem);
          flex: 0 0 clamp(9.375rem, 40vw, 18.75rem);
  width: clamp(9.375rem, 40vw, 18.75rem);
  aspect-ratio: 1/1;
  margin: 0 auto;
  border-radius: 100vh;
  padding: clamp(0.625rem, 2.6666666667vw, 1.25rem);
  overflow: hidden;
  border: 1px solid;
}
.bl_manager .el_ceo .ly_flex .el_img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100vh;
}
.bl_manager .el_ceo .ly_flex .el_cont {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: grid;
  place-content: center;
}
.bl_manager .el_ceo .ly_flex .el_cont h2 {
  font-size: clamp(1.4375rem, 6.1333333333vw, 2.875rem);
  letter-spacing: 0.05em;
}
.bl_manager .el_ceo .ly_flex .el_cont h2 .el_post {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: clamp(0.1875rem, 0.8vw, 0.375rem);
  font-size: clamp(0.875rem, 3.7333333333vw, 1.75rem);
  letter-spacing: 0.05em;
  line-height: 1;
}
.bl_manager .el_ceo .ly_flex .el_cont h2 .el_kana {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Nanum Myeongjo", serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 3.2vw, 1.5rem);
  letter-spacing: 0.1em;
  font-weight: bold;
}
.bl_manager .el_ceo .el_lead {
  margin-bottom: 1em;
}
.bl_manager .el_line {
  margin-top: clamp(1.5625rem, 6.6666666667vw, 3.125rem);
  margin-bottom: clamp(1.5625rem, 6.6666666667vw, 3.125rem);
}
.bl_manager .el_career {
  margin-top: clamp(1.5625rem, 6.6666666667vw, 3.125rem);
}
.bl_manager .el_career li {
  margin-bottom: clamp(0.3125rem, 1.3333333333vw, 0.625rem);
  font-size: clamp(0.75rem, 3.2vw, 1.5rem);
  line-height: 1.7857142857;
  padding-left: 1em;
  text-indent: -1em;
}

/* =================================================
    .bl_map
=================================================== */
.bl_map iframe {
  width: 100%;
  aspect-ratio: 1/1;
}

/* =================================================
    .bl_company
=================================================== */
.bl_company {
  position: relative;
  padding-top: clamp(3.125rem, 13.33vw, 6.25rem);
  padding-bottom: clamp(6.25rem, 26.67vw, 12.5rem);
}
.bl_company .bl_company_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-top: 1px solid #5b4a3f;
  margin-bottom: clamp(0.938rem, 4vw, 1.875rem);
}
.bl_company .bl_company_info dt {
  width: 5em;
  padding-top: clamp(0.938rem, 4vw, 1.875rem);
  padding-bottom: clamp(0.938rem, 4vw, 1.875rem);
  border-bottom: 1px solid #5b4a3f;
}
.bl_company .bl_company_info dd {
  width: calc(100% - 5em);
  padding-left: clamp(3.125rem, 13.33vw, 6.25rem);
  padding-top: clamp(0.938rem, 4vw, 1.875rem);
  padding-bottom: clamp(0.938rem, 4vw, 1.875rem);
  border-bottom: 1px solid #5b4a3f;
  line-height: 1.6;
}
.bl_company .bl_company_info dd a {
  color: #5b4a3f;
  text-decoration: none;
}
.bl_company p.el_desc {
  font-size: 0.813rem, 3.47vw, 1.625rem;
}
.bl_company .bl_goods {
  margin-top: clamp(1.875rem, 8vw, 3.75rem);
}
.bl_company .bl_goods .is_hidden {
  display: none;
}
.bl_company .bl_goods dt {
  position: relative;
  border-bottom: 1px solid #5b4a3f;
  font-size: 100%;
}
.bl_company .bl_goods dt::after {
  content: "※時期や事情により一部在庫がない場合がございます";
  font-size: 60%;
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
}
.bl_company .bl_goods dd {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-top: 40px;
}
.bl_company .bl_goods dd table {
  width: 100%;
}
.bl_company .bl_goods dd table th,
.bl_company .bl_goods dd table td {
  text-align: left;
  font-size: 80%;
}
.bl_company .bl_goods dd .el_more {
  display: block;
  width: 100%;
  margin: 1em auto 0;
  font-family: inherit;
  font-size: 80%;
  text-align: center;
  line-height: 1em;
}
.bl_company .bl_goods dd .el_more span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  background: #fff;
  padding: 1px 1em;
}
.bl_company .bl_goods dd .el_more::before {
  content: "・・・";
  display: block;
  width: 1em;
  height: 4em;
  margin: 0 auto;
}
.bl_company .bl_goods dd .el_more::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #5b4a3f;
  margin-top: -0.5em;
}
.bl_company .bl_goods dd .el_btnWrap {
  margin-top: clamp(3.125rem, 13.3333333333vw, 6.25rem);
  text-align: center;
}

/* =================================================
    .bl_insta
=================================================== */
.bl_insta {
  padding-bottom: clamp(3.125rem, 13.33vw, 6.25rem);
}
.bl_insta h2 {
  width: clamp(1.875rem, 8vw, 3.75rem);
  height: auto;
  aspect-ratio: 1/1;
  margin: 0 auto clamp(3.125rem, 13.33vw, 6.25rem);
}
.bl_insta .el_instaLoad {
  text-align: center;
}
.bl_insta .el_instaLoad .instagram-feed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
.bl_insta .el_instaLoad .post {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 4px) / 3);
          flex: 0 0 calc((100% - 4px) / 3);
  aspect-ratio: 3/4;
}
.bl_insta .el_instaLoad .post a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
}
.bl_insta .el_instaLoad .post a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bl_insta .el_btnWrap {
  margin-top: clamp(3.125rem, 13.33vw, 6.25rem);
}
.bl_insta .el_btnWrap .el_btn_insta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(15.625rem, 66.67vw, 31.25rem);
  height: auto;
  margin: 0 auto;
  aspect-ratio: 5/1;
  text-align: center;
  font-size: clamp(0.938rem, 4vw, 1.875rem);
  letter-spacing: 0.1em;
  line-height: 1;
  color: #5b4a3f;
  border: 1px solid #5b4a3f;
}
.bl_insta .el_btnWrap .el_btn_insta::after {
  content: "";
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: clamp(0.688rem, 2.93vw, 1.375rem);
  height: auto;
  margin-left: 5px;
  aspect-ratio: 24/22;
  background: url(../images/icon_arrow_r.svg) no-repeat center center/contain;
}
@media screen and (min-width: 1024px) {
  .bl_insta .el_btnWrap .el_btn_insta:hover {
    opacity: 1;
    background: #5b4a3f;
    color: #fff;
  }
}

/* =================================================
    .bl_banner
=================================================== */
.bl_banner {
  padding-top: clamp(3.125rem, 13.33vw, 6.25rem);
  padding-bottom: clamp(6.25rem, 26.67vw, 12.5rem);
}

/*==================================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  opacity: 1;
}

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

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 上から */
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.js_fadeInTrigger,
.js_fadeUpTrigger,
.js_fadeDownTrigger,
.js_fadeLeftTrigger,
.js_fadeRightTrigger {
  opacity: 0;
}

/*==================================================
パタッ
===================================*/
/* 下へ */
.flipDown {
  -webkit-animation-name: flipDownAnime;
          animation-name: flipDownAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes flipDownAnime {
  from {
    -webkit-transform: perspective(2500px) rotateX(100deg);
            transform: perspective(2500px) rotateX(100deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(2500px) rotateX(0);
            transform: perspective(2500px) rotateX(0);
    opacity: 1;
  }
}

@keyframes flipDownAnime {
  from {
    -webkit-transform: perspective(2500px) rotateX(100deg);
            transform: perspective(2500px) rotateX(100deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(2500px) rotateX(0);
            transform: perspective(2500px) rotateX(0);
    opacity: 1;
  }
}
/* 左へ */
.flipLeft {
  -webkit-animation-name: flipLeftAnime;
          animation-name: flipLeftAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-perspective-origin: left center;
          perspective-origin: left center;
  opacity: 0;
}

@-webkit-keyframes flipLeftAnime {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipLeftAnime {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
/* 左上へ */
.flipLeftTop {
  -webkit-animation-name: flipLeftTopAnime;
          animation-name: flipLeftTopAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes flipLeftTopAnime {
  from {
    -webkit-transform: translate(-20px, 80px) rotate(-15deg);
            transform: translate(-20px, 80px) rotate(-15deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}

@keyframes flipLeftTopAnime {
  from {
    -webkit-transform: translate(-20px, 80px) rotate(-15deg);
            transform: translate(-20px, 80px) rotate(-15deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}
/* 右へ */
.flipRight {
  -webkit-animation-name: flipRightAnime;
          animation-name: flipRightAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-perspective-origin: right center;
          perspective-origin: right center;
  opacity: 0;
}

@-webkit-keyframes flipRightAnime {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipRightAnime {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
/* 右上へ */
.flipRightTop {
  -webkit-animation-name: flipRightTopAnime;
          animation-name: flipRightTopAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes flipRightTopAnime {
  from {
    -webkit-transform: translate(-20px, 80px) rotate(25deg);
            transform: translate(-20px, 80px) rotate(25deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 1) rotate(0deg);
            transform: translate(0, 1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes flipRightTopAnime {
  from {
    -webkit-transform: translate(-20px, 80px) rotate(25deg);
            transform: translate(-20px, 80px) rotate(25deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 1) rotate(0deg);
            transform: translate(0, 1) rotate(0deg);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.js_flipDownTrigger,
.js_flipLeftTrigger,
.js_flipLeftTopTrigger,
.js_flipRightTrigger,
.js_flipRightTopTrigger {
  opacity: 0;
}

/*==================================================
くるっ
===================================*/
/* X 軸（縦へ） */
.rotateX {
  -webkit-animation-name: rotateXAnime;
          animation-name: rotateXAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes rotateXAnime {
  from {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateX(-360deg);
            transform: rotateX(-360deg);
    opacity: 1;
  }
}

@keyframes rotateXAnime {
  from {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateX(-360deg);
            transform: rotateX(-360deg);
    opacity: 1;
  }
}
/*　Y軸（横へ） */
.rotateY {
  -webkit-animation-name: rotateYAnime;
          animation-name: rotateYAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes rotateYAnime {
  from {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateY(-360deg);
            transform: rotateY(-360deg);
    opacity: 1;
  }
}

@keyframes rotateYAnime {
  from {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateY(-360deg);
            transform: rotateY(-360deg);
    opacity: 1;
  }
}
/* Z 軸（左へ） */
.rotateLeftZ {
  -webkit-animation-name: rotateLeftZAnime;
          animation-name: rotateLeftZAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes rotateLeftZAnime {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateZ(-360deg);
            transform: rotateZ(-360deg);
    opacity: 1;
  }
}

@keyframes rotateLeftZAnime {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateZ(-360deg);
            transform: rotateZ(-360deg);
    opacity: 1;
  }
}
/*　Z 軸（右へ） */
.rotateRightZ {
  -webkit-animation-name: rotateRightZAnime;
          animation-name: rotateRightZAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes rotateRightZAnime {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
    opacity: 1;
  }
}

@keyframes rotateRightZAnime {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.js_rotateXTrigger,
.js_rotateYTrigger,
.js_rotateLeftZTrigger,
.js_rotateRightZTrigger {
  opacity: 0;
}

/*==================================================
ボンッ、ヒュッ
===================================*/
/* 拡大 */
.zoomIn {
  -webkit-animation-name: zoomInAnime;
          animation-name: zoomInAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
/* 縮小 */
.zoomOut {
  -webkit-animation-name: zoomOutAnime;
          animation-name: zoomOutAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomOutAnime {
  from {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomOutAnime {
  from {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.js_zoomInTrigger,
.js_zoomOutTrigger {
  opacity: 0;
}

/*==================================================
じわっ
===================================*/
/* ぼかしから出現 */
.blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0.1;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0.1;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.js_blurTrigger {
  opacity: 0.1;
}

/*==================================================
にゅーん
===================================*/
/* 滑らかに変形して出現 */
.smooth {
  -webkit-animation-name: smoothAnime;
          animation-name: smoothAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform-origin: left;
          transform-origin: left;
  opacity: 0;
}

@-webkit-keyframes smoothAnime {
  from {
    -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
            transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
            transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}

@keyframes smoothAnime {
  from {
    -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
            transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
            transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.js_smoothTrigger {
  opacity: 0;
  opacity: 1;
}

/*==================================================
スーッ（枠線が伸びて出現）
===================================*/
/*枠線が伸びて出現*/
.js_lineTrigger {
  position: relative; /* 枠線が書かれる基点*/
  opacity: 0;
}

.js_lineTrigger.lineanime {
  -webkit-animation-name: lineAnimeBase;
          animation-name: lineAnimeBase;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes lineAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes lineAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*上下線*/
.js_lineTrigger::before,
.js_lineTrigger::after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: #333; /* 枠線の色*/
}

/*左右線*/
.line2::before,
.line2::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 0;
  background: #333; /* 枠線の色*/
}

/*上線*/
.js_lineTrigger::before {
  top: 0;
  left: 0;
}

.js_lineTrigger.lineanime::before {
  -webkit-animation: lineAnime 0.5s linear 0s forwards;
          animation: lineAnime 0.5s linear 0s forwards; /*表示されて0秒後に上線が0.5秒かけて表示*/
}

/*右線*/
.js_line2::before {
  top: 0;
  right: 0;
}

.js_lineTrigger.lineanime .line2::before {
  -webkit-animation: lineAnime2 0.5s linear 0.5s forwards;
          animation: lineAnime2 0.5s linear 0.5s forwards; /*表示されて0.5秒後に右線が0.5秒かけて表示*/
}

/*下線*/
.js_lineTrigger::after {
  bottom: 0;
  right: 0;
}

.js_lineTrigger.lineanime::after {
  -webkit-animation: lineAnime 0.5s linear 1.5s forwards;
          animation: lineAnime 0.5s linear 1.5s forwards; /*表示されて1秒後に下線が0.5秒かけて表示*/
}

/*左線*/
.line2::after {
  bottom: 0;
  left: 0;
}

.js_lineTrigger.lineanime .line2::after {
  -webkit-animation: lineAnime2 0.5s linear 1.5s forwards;
          animation: lineAnime2 0.5s linear 1.5s forwards; /*表示されて1.5秒後に左線が0.5秒かけて表示*/
}

@-webkit-keyframes lineAnime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes lineAnime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes lineAnime2 {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
@keyframes lineAnime2 {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
/*枠線内側の要素*/
.js_lineTrigger.lineanime .lineinappear {
  -webkit-animation: lineInnerAnime 0.5s linear 1.5s forwards;
          animation: lineInnerAnime 0.5s linear 1.5s forwards; /*1.5秒後に中央のエリアが0.5秒かけて表示*/
  opacity: 0; /*初期値を透過0にする*/
}

@-webkit-keyframes lineInnerAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes lineInnerAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*==================================================
シャッ（背景色が伸びて出現）
===================================*/
/*背景色が伸びて出現（共通）*/
.bgextend {
  -webkit-animation-name: bgextendAnimeBase;
          animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  position: relative;
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  -webkit-animation-name: bgextendAnimeSecond;
          animation-name: bgextendAnimeSecond;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*左から*/
.bgLRextend::before {
  -webkit-animation-name: bgLRextendAnime;
          animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #5b4a3f; /*伸びる背景色の設定*/
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
/*右から*/
.bgRLextend::before {
  -webkit-animation-name: bgRLextendAnime;
          animation-name: bgRLextendAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}

@-webkit-keyframes bgRLextendAnime {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes bgRLextendAnime {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
/*下から*/
.bgDUextend::before {
  -webkit-animation-name: bgDUextendAnime;
          animation-name: bgDUextendAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}

@-webkit-keyframes bgDUextendAnime {
  0% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  50.001% {
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  100% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}

@keyframes bgDUextendAnime {
  0% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  50.001% {
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  100% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}
/*上から*/
.bgUDextend::before {
  -webkit-animation-name: bgUDextendAnime;
          animation-name: bgUDextendAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}

@-webkit-keyframes bgUDextendAnime {
  0% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  50.001% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}

@keyframes bgUDextendAnime {
  0% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  50.001% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.js_bgappearTrigger,
.js_bgUDextendTrigger,
.js_bgDUextendTrigger,
.js_bgRLextendTrigger,
.js_bgLRextendTrigger {
  opacity: 0;
}

/* =================================================
    アニメーション設定
=================================================== */
/* アニメーションの回数を決めるCSS*/
.count2 {
  -webkit-animation-iteration-count: 2;
          animation-iteration-count: 2; /*この数字を必要回数分に変更*/
}

.countinfinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite; /*無限ループ*/
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.hp_delay_time0 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.hp_delay_time1 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.hp_delay_time2 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.hp_delay_time3 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.hp_delay_time4 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.hp_delay_time5 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.hp_delay_time6 {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.hp_delay_time7 {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}

.hp_delay_time8 {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.hp_delay_time9 {
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
}

.hp_delay_time10 {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

/* アニメーション自体が変化する時間を決めるCSS*/
.hp_change_time0 {
  -webkit-animation-duration: 0s;
          animation-duration: 0s;
}

.hp_change_time1 {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

.hp_change_time2 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.hp_change_time3 {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.hp_change_time4 {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.hp_change_time5 {
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
}

.hp_change_time6 {
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

.hp_change_time7 {
  -webkit-animation-duration: 3.5s;
          animation-duration: 3.5s;
}

.hp_change_time8 {
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
}

.hp_change_time9 {
  -webkit-animation-duration: 4.5s;
          animation-duration: 4.5s;
}

.hp_change_time10 {
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
}

/* ======================================
    .mask
====================================== */
.js_mask {
  position: relative;
  display: block;
  overflow: hidden;
}

/* ======================================
    .js_pageTop
====================================== */
.bl_pageTop {
  position: fixed;
  right: 0;
  bottom: 0;
  margin: 0;
  z-index: 10010;
}
@media screen and (min-width: 768px) {
  .bl_pageTop {
    cursor: pointer;
    bottom: 20px;
    right: 48px;
  }
}
.bl_pageTop span {
  position: relative;
  display: block;
  width: 45px;
  height: 45px;
  background: rgba(91, 74, 63, 0.8);
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
@media screen and (min-width: 768px) {
  .bl_pageTop span {
    width: 65px;
    height: 65px;
  }
}
.bl_pageTop span::before {
  position: absolute;
  top: 7px;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 10px;
  height: 10px;
  margin: auto;
  content: "";
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .bl_pageTop span::before {
    width: 14px;
    height: 14px;
  }
}

/*　上に上がる動き　*/
.bl_pageTop.is_upMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

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

@keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*　下に下がる動き　*/
.bl_pageTop.is_downMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

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

@keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(120px);
            transform: translateY(120px);
  }
}
/* ======================================
    Common Class
====================================== */
/*  display
-------------------------------------- */
.hp_sp_none {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .hp_sp_none {
    display: block !important;
  }
}

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

.hp_pc_none {
  display: block !important;
}
@media screen and (min-width: 1025px) {
  .hp_pc_none {
    display: none !important;
  }
}

.hp_pc_display {
  display: none !important;
}
@media screen and (min-width: 1025px) {
  .hp_pc_display {
    display: block !important;
  }
}

/*  direction
-------------------------------------- */
.hp_row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

/*  text_align
-------------------------------------- */
.hp_text_center {
  text-align: center !important;
}

.hp_text_left {
  text-align: left !important;
}

.hp_text_right {
  text-align: left !important;
}

/*  margin padding
-------------------------------------- */
/* margin 部分的な設定*/
.hp_mb-0 {
  margin-bottom: 0px !important;
  margin-bottom: 0rem !important;
}

.hp_mb-5 {
  margin-bottom: 5px !important;
  margin-bottom: 0.5rem !important;
}

.hp_mb-10 {
  margin-bottom: 10px !important;
  margin-bottom: 1rem !important;
}

.hp_mb-15 {
  margin-bottom: 15px !important;
  margin-bottom: 1.5rem !important;
}

.hp_mb-20 {
  margin-bottom: 20px !important;
  margin-bottom: 2rem !important;
}

.hp_mb-25 {
  margin-bottom: 25px !important;
  margin-bottom: 2.5rem !important;
}

.hp_mb-30 {
  margin-bottom: 30px !important;
  margin-bottom: 3rem !important;
}

.hp_mb-35 {
  margin-bottom: 35px !important;
  margin-bottom: 3.5rem !important;
}

.hp_mb-40 {
  margin-bottom: 40px !important;
  margin-bottom: 4rem !important;
}

.hp_mb-45 {
  margin-bottom: 45px !important;
  margin-bottom: 4.5rem !important;
}

.hp_mb-50 {
  margin-bottom: 50px !important;
  margin-bottom: 5rem !important;
}

.hp_mb-55 {
  margin-bottom: 55px !important;
  margin-bottom: 5.5rem !important;
}

.hp_mb-60 {
  margin-bottom: 60px !important;
  margin-bottom: 6rem !important;
}

.hp_mb-65 {
  margin-bottom: 65px !important;
  margin-bottom: 6.5rem !important;
}

.hp_mb-70 {
  margin-bottom: 70px !important;
  margin-bottom: 7rem !important;
}

.hp_mb-75 {
  margin-bottom: 75px !important;
  margin-bottom: 7.5rem !important;
}

.hp_mb-80 {
  margin-bottom: 80px !important;
  margin-bottom: 8rem !important;
}

.hp_mb-85 {
  margin-bottom: 85px !important;
  margin-bottom: 8.5rem !important;
}

.hp_mb-90 {
  margin-bottom: 90px !important;
  margin-bottom: 9rem !important;
}

.hp_mb-95 {
  margin-bottom: 95px !important;
  margin-bottom: 9.5rem !important;
}

.hp_mb-100 {
  margin-bottom: 100px !important;
  margin-bottom: 10rem !important;
}

.hp_mt-0 {
  margin-top: 0px !important;
  margin-top: 0rem !important;
}

.hp_mt-5 {
  margin-top: 5px !important;
  margin-top: 0.5rem !important;
}

.hp_mt-10 {
  margin-top: 10px !important;
  margin-top: 1rem !important;
}

.hp_mt-15 {
  margin-top: 15px !important;
  margin-top: 1.5rem !important;
}

.hp_mt-20 {
  margin-top: 20px !important;
  margin-top: 2rem !important;
}

.hp_mt-25 {
  margin-top: 25px !important;
  margin-top: 2.5rem !important;
}

.hp_mt-30 {
  margin-top: 30px !important;
  margin-top: 3rem !important;
}

.hp_mt-35 {
  margin-top: 35px !important;
  margin-top: 3.5rem !important;
}

.hp_mt-40 {
  margin-top: 40px !important;
  margin-top: 4rem !important;
}

.hp_mt-45 {
  margin-top: 45px !important;
  margin-top: 4.5rem !important;
}

.hp_mt-50 {
  margin-top: 50px !important;
  margin-top: 5rem !important;
}

/* padding 部分的な設定*/
.hp_pb-0 {
  padding-bottom: 0px !important;
  padding-bottom: 0rem !important;
}

.hp_pb-5 {
  padding-bottom: 5px !important;
  padding-bottom: 0.5rem !important;
}

.hp_pb-10 {
  padding-bottom: 10px !important;
  padding-bottom: 1rem !important;
}

.hp_pb-15 {
  padding-bottom: 15px !important;
  padding-bottom: 1.5rem !important;
}

.hp_pb-20 {
  padding-bottom: 20px !important;
  padding-bottom: 2rem !important;
}

.hp_pb-25 {
  padding-bottom: 25px !important;
  padding-bottom: 2.5rem !important;
}

.hp_pb-30 {
  padding-bottom: 30px !important;
  padding-bottom: 3rem !important;
}

.hp_pb-35 {
  padding-bottom: 35px !important;
  padding-bottom: 3.5rem !important;
}

.hp_pb-40 {
  padding-bottom: 40px !important;
  padding-bottom: 4rem !important;
}

.hp_pb-45 {
  padding-bottom: 45px !important;
  padding-bottom: 4.5rem !important;
}

.hp_pb-50 {
  padding-bottom: 50px !important;
  padding-bottom: 5rem !important;
}

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

/*  スクリーンリーダー用テキスト / スキップリンク
-------------------------------------- */
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.hp_skipLink:focus {
  position: fixed !important;
  top: 8px;
  left: 8px;
  z-index: 100000;
  width: auto;
  height: auto;
  padding: 12px 20px;
  clip: auto;
  white-space: normal;
  background: #fff;
  color: #313131;
  font-weight: 700;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ======================================
    page 404
====================================== */
.bl_page404 {
  padding-bottom: 8rem;
}
.bl_page404 h2 {
  margin-bottom: 6rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}
.bl_page404 .el_btnBacktoTop {
  position: relative;
  width: 220px;
  height: 50px;
  margin: 0 auto;
  text-align: center;
}
.bl_page404 .el_btnBacktoTop a {
  position: absolute;
  width: 100%;
  height: 50px;
  background: #5b4a3f;
  border-radius: 3px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  line-height: 50px;
}
@media screen and (min-width: 1025px) {
  .bl_page404 .el_btnBacktoTop a {
    background: #fff;
    color: #5b4a3f;
    border: 1px solid #5b4a3f;
    opacity: 1;
  }
  .bl_page404 .el_btnBacktoTop a:hover {
    background: #5b4a3f;
    color: #fff;
  }
}

/* =================================================
    .bl_breadcrumb
=================================================== */
.bl_breadcrumb {
  display: none;
}
@media screen and (min-width: 768px) {
  .bl_breadcrumb {
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 160px;
  }
}
.bl_breadcrumb ol {
  width: 94.7916666667%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .bl_breadcrumb ol {
    width: 94.7916666667%;
    max-width: 750px;
    padding-left: 50px;
    padding-right: 50px;
  }
}
.bl_breadcrumb ol li {
  display: inline-block;
  list-style: none;
  color: #888888;
  padding-left: 0;
  font-size: 14px;
  font-size: 1.4rem;
}
.bl_breadcrumb ol li::before {
  display: none;
}
.bl_breadcrumb ol li::after {
  content: ">";
  font-size: inherit;
  margin-left: 0.3em;
}
.bl_breadcrumb ol li:last-of-type::after {
  content: "";
}
.bl_breadcrumb ol li a {
  color: inherit;
}
.bl_breadcrumb ol li br {
  display: none;
}
@media screen and (min-width: 1024px) {
  .bl_breadcrumb {
    padding-top: 30px;
    padding-bottom: 70px;
    margin-top: 160px;
  }
}

/* =================================================
    loop
=================================================== */
/* ======================================
  .wp-pagenavi
======================================= */
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 80px;
  margin-bottom: 80px;
  text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
  margin: 0 0.5em;
  padding: 0;
  border: none;
  text-decoration: none;
}

.wp-pagenavi .pages {
  display: block;
  width: 100%;
  margin-top: 20px;
  margin-right: 0;
  font-size: 15px;
  font-size: 1.5rem;
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.wp-pagenavi .page {
  line-height: 2em;
  width: 2em;
  height: 2em;
}

.wp-pagenavi a.page:hover {
  background: rgba(91, 74, 63, 0.3);
}

.wp-pagenavi span.current {
  font-weight: 400;
  line-height: 2.2em;
  width: 2.2em;
  height: 2.2em;
  color: #fff;
  background-color: #5b4a3f;
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .last,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .first {
  font-size: 15px;
  font-size: 1.5rem;
  padding-bottom: 0.3em;
}

/* =================================================
    折り畳みアーカイブウィジェット
=================================================== */
.widget {
  margin-bottom: 10rem;
}
.widget .bl_cat_list li {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px dotted #5b4a3f;
}
.widget_archive a.year {
  display: block;
  padding: 1.5em 0;
  cursor: pointer;
  border-bottom: 1px solid #5b4a3f;
}
.widget_archive a.year.open .mark {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.widget_archive .widget-title {
  font-weight: 600;
  padding-bottom: 0.6em;
  margin-bottom: 2rem;
  color: #5b4a3f;
  border-bottom: 2px solid #5b4a3f;
}
.widget_archive .mark {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.4em;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border-top: 0.4em solid transparent;
  border-bottom: 0.4em solid transparent;
  border-left: 0.4em solid black;
}
.widget_archive .month {
  display: none;
  padding-right: 1em;
  padding-left: 1em;
  border-bottom: 1px solid #5b4a3f;
}
.widget_archive .month li:nth-of-type(n + 2) {
  border-top: 1px dotted #5b4a3f;
}
.widget_archive .month li a {
  display: block;
  padding: 0.8em 0 0.9em 0.3em;
}

/* =================================================
    setup-style-block.phpで設定した項目のCSS
=================================================== */
.is-style-section_title {
  padding-bottom: 20px;
  margin-bottom: 50px;
  background-size: 5px 1px;
  background-image: linear-gradient(to right, #333333 2px, transparent 2px);
  background-repeat: repeat-x;
  background-position: left bottom;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.4230769231;
  letter-spacing: 0.05em;
  color: #5b4a3f;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .is-style-section_title {
    font-size: 30px;
    font-size: 3rem;
    line-height: 1.4666666667;
    letter-spacing: 0.05em;
  }
}

* + .is-style-section_title {
  margin-top: 50px;
}

.is-style-decoration-square {
  position: relative;
  padding-left: 24px;
  margin-bottom: 50px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  color: #5b4a3f;
  font-weight: 700;
  text-align: left;
}
.is-style-decoration-square::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  background: #5b4a3f;
  position: absolute;
  top: 9px;
  left: 0;
}

* + .is-style-decoration-square {
  margin-top: 30px;
}

.is-style-post_title {
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.4230769231;
  letter-spacing: 0.05em;
  color: #5b4a3f;
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .is-style-post_title {
    font-size: 30px;
    font-size: 3rem;
    line-height: 1.4666666667;
    letter-spacing: 0.05em;
  }
}

* + .is-style-post_title {
  margin-top: 30px;
}

.is-style-flex_reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (min-width: 782px) {
  .is-style-flex_reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.wp-block-button.is-style-fill .wp-element-button {
  background: #5b4a3f;
  padding: 13px 20px;
  border: 1px solid #5b4a3f;
  border-radius: 0;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 400;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .wp-block-button.is-style-fill .wp-element-button:hover {
    opacity: 1;
    background: rgba(91, 74, 63, 0.1);
    color: #5b4a3f;
  }
}

.wp-block-button.is-style-outline {
  margin-top: 10px !important;
  background: #fff;
}
.wp-block-button.is-style-outline .wp-element-button {
  padding: 13px 20px;
  border: 1px solid #5b4a3f;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 400;
  color: #5b4a3f;
}
@media screen and (min-width: 1024px) {
  .wp-block-button.is-style-outline .wp-element-button:hover {
    opacity: 1;
    background: #5b4a3f;
    color: #fff;
  }
}

.wp-block-button.is-style-button_link-blank {
  display: block !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 400px;
  position: relative;
  margin-top: 10px !important;
}
.wp-block-button.is-style-button_link-blank .wp-element-button {
  width: 100%;
  padding: 13px 20px;
  padding-right: 100px;
  border: 2px solid #5b4a3f;
  border-radius: 10px;
  background: #fff;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #5b4a3f;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .wp-block-button.is-style-button_link-blank .wp-element-button {
    padding: 13px 40px;
  }
}
@media screen and (min-width: 1024px) {
  .wp-block-button.is-style-button_link-blank .wp-element-button:hover {
    opacity: 1;
    background: rgba(91, 74, 63, 0.1);
  }
}
.wp-block-button.is-style-button_link-blank .wp-element-button::after {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 42px;
  height: 20px;
  background: url(../images/common/icon/icon_blank__defult.svg) no-repeat center center/contain;
}

.wp-block-image.is-style-image_round img {
  border-radius: 10px;
  display: block;
  width: 100%;
}

.wp-block-image.is-style-image_round-line img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid #ccc;
}
@media screen and (min-width: 768px) {
  .wp-block-image.is-style-image_round-line img {
    border: 1px solid #ccc;
  }
}

.wp-block-list.is-style-default li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.5em;
  font-size: 32px;
  font-size: 3.2rem;
}
.wp-block-list.is-style-default li:before {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  content: "・";
}

.wp-block-list.is-style-liststyle-circle_defult li {
  padding-left: 1em;
}
.wp-block-list.is-style-liststyle-circle_defult li:before {
  border-radius: 100vh;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  content: "";
  background: #5b4a3f;
}

.wp-block-list.is-style-liststyle-circle_brand li {
  padding-left: 1em;
}
.wp-block-list.is-style-liststyle-circle_brand li:before {
  border-radius: 100vh;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  content: "";
  background: #5b4a3f;
}

.wp-block-list.is-style-liststyle-square_default li {
  padding-left: 1em;
}
.wp-block-list.is-style-liststyle-square_default li:before {
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  content: "";
  background: #5b4a3f;
}

.wp-block-table.is-style-no-border {
  overflow: visible;
}
.wp-block-table.is-style-no-border table,
.wp-block-table.is-style-no-border thead,
.wp-block-table.is-style-no-border th,
.wp-block-table.is-style-no-border td {
  border: none;
}

/* =================================================
    .bl_post
=================================================== */
.post-type-post h2:not(.is-style-section_title):not(.is-style-decoration-square):not(.is-style-post_title) {
  padding: 4px 20px;
  -webkit-margin-after: 50px;
          margin-block-end: 50px;
  background: rgba(0, 0, 0, 0.5);
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
}
.post-type-post * + h2:not(.is-style-section_title):not(.is-style-decoration-square):not(.is-style-post_title) {
  -webkit-margin-before: 2em;
          margin-block-start: 2em;
}
.post-type-post h3:not(.is-style-section_title):not(.is-style-decoration-square):not(.is-style-post_title) {
  padding: 4px 20px;
  -webkit-margin-after: 30px;
          margin-block-end: 30px;
  border-top: 1px solid #5b4a3f;
  border-bottom: 1px solid #5b4a3f;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #5b4a3f;
}
.post-type-post * + h3:not(.is-style-section_title):not(.is-style-decoration-square):not(.is-style-post_title) {
  -webkit-margin-before: 2em;
          margin-block-start: 2em;
}
.post-type-post h4:not(.is-style-section_title):not(.is-style-decoration-square):not(.is-style-post_title) {
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.11);
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.4375;
  letter-spacing: 0.05em;
  color: #5b4a3f;
}
.post-type-post * + h4:not(.is-style-section_title):not(.is-style-decoration-square):not(.is-style-post_title) {
  -webkit-margin-before: 2em;
          margin-block-start: 2em;
}
.post-type-post h5:not(.is-style-section_title):not(.is-style-decoration-square):not(.is-style-post_title) {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.4375;
  letter-spacing: 0.05em;
  color: #5b4a3f;
  font-weight: 700;
  border-bottom: 1px solid #5b4a3f;
}
.post-type-post * + h5:not(.is-style-section_title):not(.is-style-decoration-square):not(.is-style-post_title) {
  -webkit-margin-before: 2em;
          margin-block-start: 2em;
}
.post-type-post h6:not(.is-style-section_title):not(.is-style-decoration-square):not(.is-style-post_title) {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #5b4a3f;
  font-weight: 700;
  border-bottom: 1px dashed #5b4a3f;
}
.post-type-post * + h6:not(.is-style-section_title):not(.is-style-decoration-square):not(.is-style-post_title) {
  -webkit-margin-before: 2em;
          margin-block-start: 2em;
}
.post-type-post p {
  font-size: 90%;
}
.post-type-post * + p {
  -webkit-margin-before: 1em !important;
          margin-block-start: 1em !important;
}
.post-type-post strong {
  font-weight: bold;
  color: rgba(204, 17, 102, 0.6666666667);
}
.post-type-post a {
  color: #00b900;
  text-decoration: underline;
  font-weight: bold;
}
@media screen and (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .post-type-post a:hover {
    opacity: 0.7;
  }
}
.post-type-post a:visited {
  color: #540082;
}
.post-type-post ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.3em;
}
.post-type-post ul li::before {
  content: "●";
  color: #777777;
  position: absolute;
  top: 0;
  left: 0;
}
.post-type-post * + ul {
  -webkit-margin-before: 2em;
          margin-block-start: 2em;
}
.post-type-post ol {
  list-style: none;
  counter-reset: count 0;
}
.post-type-post ol li {
  position: relative;
  padding-left: 2em;
  margin-bottom: 0.3em;
}
.post-type-post ol li::before {
  content: counter(count, decimal-leading-zero) ". ";
  counter-increment: count 1;
  position: absolute;
  top: 0px;
  left: 0;
}
.post-type-post * + ol {
  -webkit-margin-before: 2em;
          margin-block-start: 2em;
}
.post-type-post .wp-block-table table {
  background: #fff;
  border: 1px solid #cecece;
  border-collapse: collapse;
}
.post-type-post .wp-block-table table th,
.post-type-post .wp-block-table table td {
  padding: 10px 20px;
  border: 1px solid #cecece;
}
.post-type-post .wp-block-table table thead {
  border-bottom: none;
}
.post-type-post .wp-block-table table thead th {
  background: #222222;
  border: 1px solid #cecece;
  text-align: left;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.post-type-post .wp-block-table table tbody th {
  background: #f0f0f0;
  color: #5b4a3f;
  font-weight: 500;
}
.post-type-post .wp-block-table table tfoot {
  border-top: none;
  text-align: center;
}
.post-type-post * + .wp-block-table {
  -webkit-margin-before: 2em;
          margin-block-start: 2em;
}
.post-type-post iframe {
  max-width: 100%;
  display: block;
}
.post-type-post .wp-block-image .wp-element-caption {
  margin-top: 6px;
  text-align: left;
  font-size: 12px;
  font-size: 1.2rem;
}
.post-type-post * + .wp-block-image {
  -webkit-margin-before: 2em;
          margin-block-start: 2em;
}

/* =================================================
    gutenberg 基本設定
=================================================== */
/* 投稿エディターに左右の余白を入れる */
.is-root-container {
  padding-right: var(--wp--style--root--padding-right);
  padding-left: var(--wp--style--root--padding-left);
}
.is-root-container :where(.has-global-padding) {
  padding-right: 0;
  padding-left: 0;
}
.is-root-container > .alignfull {
  margin-right: calc(var(--wp--style--root--padding-right) * -1);
  margin-left: calc(var(--wp--style--root--padding-left) * -1);
}
.is-root-container :where(.has-global-padding) > .alignfull {
  margin-right: 0;
  margin-left: 0;
}

.underline {
  font-weight: bold;
  color: #5b4a3f;
}

.block-editor-rich-text__editable.has-text-align-right {
  text-align: right !important;
}/*# sourceMappingURL=style.css.map */