@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;
}

span {
  font-weight: inherit;
}

/* ======================================
    Base
====================================== */
html {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  font-size: 62.5%;
}

body {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0.05em;
  background: #fff;
  word-wrap: break-word;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  color: #5a3810;
  -webkit-font-smoothing: antialiased;
  -webkit-animation: fadeInAnime 2s ease 0s 1 normal;
          animation: fadeInAnime 2s ease 0s 1 normal;
}
@media screen and (min-width: 1024px) {
  body {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.8666666667;
    letter-spacing: 0.05em;
  }
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

p {
  line-height: 1.8666666667;
}
p a:link {
  text-decoration: underline;
}
@media screen and (min-width: 1024px) {
  p {
    line-height: 1.8666666667;
  }
}

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 {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -moz-appearance: none;
       appearance: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: none;
}

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

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

a {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  text-decoration: none;
  color: #de321e;
}
a:visited {
  color: #9c8870;
}
a:hover {
  color: #de321e;
  text-decoration: none;
  opacity: 0.7;
}
@media screen and (min-width: 1024px) {
  a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  a:hover img, a:focus img {
    opacity: 0.7;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.ly_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-height: 100vh;
  max-width: 900px;
  margin: 0 auto;
}

/* =================================================
    .bl_header
=================================================== */
.bl_header {
  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-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: clamp(60px, 16vw + 0px, 80px);
  background: #fff;
  padding-left: 10px;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.bl_header_logo {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 108.9552238806%;
  max-width: 365px;
  height: auto;
}
.bl_header_logo a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
}

.is_btnHamburger__on .bl_header,
.bl_header.is_scroll {
  background: #fff;
  -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1);
}

/* =================================================
    main
=================================================== */
/* =================================================
    layout section
=================================================== */
.ly_sec {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.ly_sec_inner {
  width: 89.3333333333%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .ly_sec_inner {
    width: 92.1875%;
  }
}
@media screen and (min-width: 1024px) {
  .ly_sec_inner {
    width: 96.875%;
    max-width: 1260px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* =================================================
    footer
=================================================== */
.bl_footer {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 25px;
  padding-bottom: 80px;
  margin: 0 auto;
  background: #faf0e6;
  border-top: 1px solid #a67c52;
  color: #4d4d4d;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .bl_footer {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    border-top: none;
    background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(30%, #faf0e6), color-stop(70%, #faf0e6), to(#fff));
    background: linear-gradient(to right, #fff 0%, #faf0e6 30%, #faf0e6 70%, #fff 100%);
  }
  .bl_footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: #a67c52;
    mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(30%, black), color-stop(80%, black), to(transparent));
    mask-image: linear-gradient(to right, transparent, black 30%, black 80%, transparent);
    -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(30%, black), color-stop(80%, black), to(transparent));
    -webkit-mask-image: linear-gradient(to right, transparent, black 30%, black 80%, transparent);
    pointer-events: none;
  }
}
.bl_footer_logo {
  width: 76.5333333333%;
  max-width: 300px;
  margin: 0 auto;
}
.bl_footer .bl_footer_info {
  margin: 20px auto 0;
}
.bl_footer .bl_footer_info h2 {
  font-size: 12px;
  font-size: 1.2rem;
}
.bl_footer .bl_footer_info .el_footer_address {
  margin: 5px auto 0;
  font-size: 12px;
  font-size: 1.2rem;
}
.bl_footer .bl_footer_info .el_footer_address a {
  color: inherit;
  text-decoration: none;
  letter-spacing: 0;
}
.bl_footer .bl_footer_info .el_footer_address .el_mail {
  margin-left: 0.4em;
}
.bl_footer .bl_footer_copyright {
  display: block;
  margin: 25px auto 0;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

/* =================================================
    footer fixed nav
=================================================== */
.bl_fixedNav {
  position: fixed;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  -webkit-box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.15);
  z-index: 11100;
}
.bl_fixedNav .bl_fixedNav_list {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 69.3333333333%;
          flex: 0 0 69.3333333333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.bl_fixedNav .bl_fixedNav_list li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  border-right: 1px solid #a67c52;
  padding-top: 4px;
}
.bl_fixedNav .bl_fixedNav_list li:last-child {
  border-right: none;
}
.bl_fixedNav .bl_fixedNav_list li a {
  position: relative;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #5a3810;
  font-weight: 500;
  font-size: 12px;
  text-decoration: none;
}
.bl_fixedNav .bl_fixedNav_list li a::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 20px;
  height: 20px;
}
.bl_fixedNav .bl_fixedNav_list li.el_tel a::before {
  width: 15px;
  height: 19px;
  background: url(../images/common/icon_tel.svg) no-repeat center center;
  background-size: contain;
}
.bl_fixedNav .bl_fixedNav_list li.el_mail a::before {
  width: 19px;
  height: 15px;
  background: url(../images/common/icon_mail.svg) no-repeat center center;
  background-size: contain;
}
.bl_fixedNav .bl_fixedNav_list li.el_instagram a::before {
  width: 19px;
  height: 19px;
  background: url(../images/common/icon_insta.svg) no-repeat center center;
  background-size: contain;
}
.bl_fixedNav .el_btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30.6666666667%;
          flex: 0 0 30.6666666667%;
  background: #a67c52;
}
.bl_fixedNav .el_btnWrap .el_btnHome {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-right: 1px solid #fff;
}
.bl_fixedNav .el_btnWrap .el_btnHome a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding-top: 1px;
  color: #fff;
  text-align: center;
}
.bl_fixedNav .el_btnWrap .el_btnHome a::after {
  content: "home";
  position: absolute;
  bottom: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  font-size: 10px;
  font-size: 1rem;
  letter-spacing: 0.075em;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  text-align: center;
  z-index: 10;
}
.bl_fixedNav .el_btnWrap .el_btnHome a img,
.bl_fixedNav .el_btnWrap .el_btnHome a svg {
  width: 24px;
  height: 24px;
  margin: 0 auto;
}

/* =================================================
    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;
  }
}

/* ======================================
    .bl_headerNav
====================================== */
.bl_globalNav {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  height: 100%;
  background: #faf0e6;
  padding-bottom: 70px;
  opacity: 0;
  -webkit-transition: opacity 0.7s ease, visibility 0.6s, -webkit-transform 0.6s ease;
  transition: opacity 0.7s ease, visibility 0.6s, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.7s ease, visibility 0.6s;
  transition: transform 0.6s ease, opacity 0.7s ease, visibility 0.6s, -webkit-transform 0.6s ease;
  visibility: hidden;
  z-index: 11000;
}
.bl_globalNav .bl_globalNav_logo {
  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-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 10px;
  width: 100%;
  height: clamp(60px, 16vw + 0px, 80px);
  max-width: 900px;
  margin: 0 auto;
}
.bl_globalNav .bl_globalNav_logo a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 108.9552238806%;
  max-width: 365px;
  height: auto;
}
.bl_globalNav ul {
  width: 100%;
  max-width: 600px;
  height: 100%;
  max-height: calc(100% - 70px);
  margin: 0 auto;
  overflow-y: auto;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
  /*Google Chrome、Safariへの対応*/
}
.bl_globalNav ul::-webkit-scrollbar {
  display: none;
}
.bl_globalNav ul > li {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: auto;
  text-align: left;
}
.bl_globalNav ul > li > a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 81.3333333333%;
  height: auto;
  padding: 15px;
  margin: 0 auto;
  background: #faf0e6;
  border-bottom: 1px solid #5a3810;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
  color: #5a3810;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.is_btnHamburger__on .bl_globalNav {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* =================================================
    .bl_fv slide
=================================================== */
@-webkit-keyframes swayUpDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@keyframes swayUpDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
.bl_fv {
  position: relative;
}
.bl_fv .el_badge {
  aspect-ratio: 77/85;
  width: 20.5333333333%;
  height: auto;
  position: absolute;
  right: 40px;
  bottom: 10px;
  z-index: 40;
  -webkit-animation: swayUpDown 1.8s ease-in-out infinite;
          animation: swayUpDown 1.8s ease-in-out infinite;
}
.bl_fv .el_badge a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.bl_fv .el_badge a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bl_fv_slideWrap {
  position: relative;
}
.bl_fv_slideWrap .swiper {
  position: relative;
}
.bl_fv_slideWrap .swiper .swiper-slide {
  aspect-ratio: 375/352;
}
.bl_fv_slideWrap .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bl_fv_slideWrap .el_swiperButton {
  position: absolute;
  width: 100%;
  height: 18px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 20;
}
.bl_fv_slideWrap .el_swiperButton .swiper-button-prev,
.bl_fv_slideWrap .el_swiperButton .swiper-button-next {
  width: 18px;
  height: 18px;
  opacity: 1;
  margin-top: 0;
  top: 0;
  pointer-events: all;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-size: 18px;
  border-radius: 18px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 1024px) {
  .bl_fv_slideWrap .el_swiperButton .swiper-button-prev,
  .bl_fv_slideWrap .el_swiperButton .swiper-button-next {
    cursor: pointer;
  }
  .bl_fv_slideWrap .el_swiperButton .swiper-button-prev:hover,
  .bl_fv_slideWrap .el_swiperButton .swiper-button-next:hover {
    opacity: 0.7;
  }
}
.bl_fv_slideWrap .el_swiperButton .swiper-button-prev {
  left: 7px;
  background: url("../images/common/arrow_slide_l.svg") no-repeat center center;
}
.bl_fv_slideWrap .el_swiperButton .swiper-button-next {
  right: 7px;
  background: url("../images/common/arrow_slide_r.svg") no-repeat center center;
}
.bl_fv_slideWrap .swiper-pagination {
  position: static;
  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;
  width: 90%;
  margin: 30px auto 0;
  gap: 20px;
}
.bl_fv_slideWrap .swiper-pagination .swiper-pagination-bullet {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 30px;
  height: 30px;
  margin: 0;
  background: #faf0e6;
  border-radius: 100vh;
  opacity: 1;
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
  color: #a67c52;
  line-height: 30px;
  text-align: center;
}
.bl_fv_slideWrap .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #a67c52;
}
.bl_fv_slideWrap.is_noslide .swiper-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}
.bl_fv_slideWrap.is_noslide .swiper-wrapper .swiper-slide {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  width: 100%;
  max-width: 400px;
}
.bl_fv_slideWrap.is_noslide .swiper-button-prev,
.bl_fv_slideWrap.is_noslide .swiper-button-next {
  display: none;
}
.bl_fv .el_btnWrap {
  text-align: center;
}

/* =================================================
    .bl_hope
=================================================== */
.bl_hope {
  padding-top: 14px;
  padding-bottom: 14px;
  background: #bfddc0;
}
.bl_hope p {
  width: 69.6%;
  margin: 0 auto;
  font-size: clamp(1.1rem, 2.0952380952vw, 2.2rem);
  text-align: center;
}

/* =================================================
    .bl_topContents
=================================================== */
.bl_topContents {
  padding-top: 5px;
  padding-bottom: 40px;
}
.bl_topContents .bl_topContents_list {
  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: 0 auto;
}
.bl_topContents .bl_topContents_list li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 33%;
          flex: 1 1 33%;
}
.bl_topContents .bl_topContents_list li a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.bl_topContents .bl_topContents_list li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bl_topContents .el_btnCompany {
  width: 34.328358209%;
  margin: 10px auto 0;
}
.bl_topContents .bl_attention {
  padding: clamp(18px, 4.8vw, 32px) clamp(15px, 4vw, 28px);
  margin: 30px auto 0;
  border: 1px solid #5a3810;
}
.bl_topContents .bl_attention h2 {
  margin-bottom: 10px;
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 500;
  color: #5a3810;
  letter-spacing: 0;
}
.bl_topContents .bl_attention .bl_attention_img img {
  width: 100%;
}
.bl_topContents .bl_attention .bl_attention_cont {
  margin: 15px auto 0;
}
.bl_topContents .bl_attention .bl_attention_cont p {
  line-height: 1.6;
}
.bl_topContents .bl_attention .bl_attention_cont .el_more {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 1em;
  font-weight: 700;
  text-decoration: underline;
  color: #5a3810;
}
.bl_topContents .bl_banner {
  max-width: 370px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin: 30px auto 0;
}

/* =================================================
    .bl_pageIndex
=================================================== */
.bl_page {
  padding-top: 50px;
  padding-bottom: 70px;
}

/* =================================================
    .bl_pageIndex
=================================================== */
.bl_pageIndex {
  padding-top: 0;
  padding-bottom: 70px;
}
.bl_pageIndex .bl_pageIndex_inner {
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px 15px;
  width: 89.3333333333%;
  max-width: 655px;
  margin: 30px auto 0;
}
.bl_pageIndex .bl_pageIndex_inner .bl_pageIndex_card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 15px) / 2);
          flex: 0 0 calc((100% - 15px) / 2);
}
.bl_pageIndex .bl_pageIndex_inner .bl_pageIndex_card a {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 6px;
  color: #5a3810;
}
.bl_pageIndex .bl_pageIndex_inner .bl_pageIndex_card a h3 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6875;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: left;
}
.bl_pageIndex .bl_pageIndex_inner .bl_pageIndex_card a p {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.9230769231;
  letter-spacing: 0.025em;
}

/* =================================================
    .bl_singleHeader
=================================================== */
.bl_singleHeader_text {
  margin: 30px auto 30px;
  font-size: clamp(1.1rem, 2.0952380952vw, 2.2rem);
  text-align: center;
}
.bl_singleHeader h1 {
  width: 100%;
  padding: 12px;
  background: repeating-linear-gradient(to bottom, #c69c6d, #c69c6d 2px, #d3b28b 2px, #d3b28b 4px);
  color: #fff;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.5454545455;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
}

.bl_articleList {
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: 89.3333333333%;
  max-width: 655px;
  margin: 20px auto 60px;
}
.bl_articleList_card {
  width: 100%;
}
.bl_articleList_card a {
  position: relative;
  width: 100%;
  display: grid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  box-sizing: border-box;
  grid-template-columns: 32.8358208955% 1fr;
  gap: 15px;
  color: #5a3810;
}
.bl_articleList_card a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 11px;
  background: url(../images/common/icon_arrow.svg) no-repeat center center/contain;
}
.bl_articleList_card a .el_img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1/1;
}
.bl_articleList_card a .el_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bl_articleList_card a .el_cont {
  padding-right: 28px;
}
.bl_articleList_card a .el_cont p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.025em;
  text-align: left;
}
.bl_articleList_card a .el_cont address {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 2.0769230769;
  letter-spacing: 0.05em;
}

/* =================================================
    .bl_single
=================================================== */
.bl_single {
  padding-top: 20px;
  padding-bottom: 60px;
}
.bl_single_slideWrap {
  position: relative;
  max-width: 670px;
  margin: 0 auto;
}
.bl_single_slideWrap .swiper {
  position: relative;
}
.bl_single_slideWrap .swiper .swiper-slide {
  aspect-ratio: 335/252;
  width: 100%;
}
.bl_single_slideWrap .swiper .swiper-slide a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  text-align: center;
}
.bl_single_slideWrap .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.bl_single_slideWrap .el_swiperButton {
  position: absolute;
  width: 95%;
  height: 18px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 20;
}
.bl_single_slideWrap .el_swiperButton .swiper-button-prev,
.bl_single_slideWrap .el_swiperButton .swiper-button-next {
  width: 18px;
  height: 18px;
  opacity: 1;
  margin-top: 0;
  top: 0;
  pointer-events: all;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 18px;
  background-size: 18px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 1024px) {
  .bl_single_slideWrap .el_swiperButton .swiper-button-prev,
  .bl_single_slideWrap .el_swiperButton .swiper-button-next {
    cursor: pointer;
  }
  .bl_single_slideWrap .el_swiperButton .swiper-button-prev:hover,
  .bl_single_slideWrap .el_swiperButton .swiper-button-next:hover {
    opacity: 0.7;
  }
}
.bl_single_slideWrap .el_swiperButton .swiper-button-prev {
  left: 0;
  background: url("../images/common/arrow_slide_l.svg") no-repeat center center;
}
.bl_single_slideWrap .el_swiperButton .swiper-button-next {
  right: 0;
  background: url("../images/common/arrow_slide_r.svg") no-repeat center center;
}
.bl_single_slideWrap .swiper-pagination {
  position: static;
  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;
  width: 90%;
  margin: 20px auto;
  gap: 15px;
}
.bl_single_slideWrap .swiper-pagination .swiper-pagination-bullet {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 12px;
  height: 12px;
  margin: 0;
  background: #cdc3b7;
  border-radius: 100vh;
  opacity: 1;
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
  color: #a67c52;
  line-height: 12px;
  text-align: center;
}
.bl_single_slideWrap .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #5a3810;
}
.bl_single_slideWrap.is_noslide .swiper-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.bl_single_slideWrap.is_noslide .swiper-wrapper .swiper-slide {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  width: 100%;
  max-width: 670px;
}
.bl_single_slideWrap.is_noslide .swiper-button-prev,
.bl_single_slideWrap.is_noslide .swiper-button-next {
  display: none;
}
.bl_single .bl_data {
  padding-top: 20px;
}
.bl_single .bl_data_text {
  text-align: center;
}

/* =================================================
    .bl_contacts
=================================================== */
.bl_contacts {
  padding-top: 20px;
  padding-bottom: 70px;
}
.bl_contacts form {
  max-width: 600px;
  margin: 0 auto;
}
.bl_contacts .bl_form_group {
  margin-top: 30px;
}
.bl_contacts .bl_form_group .el_form_label {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 10px;
  padding-bottom: 5px;
}
.bl_contacts .bl_form_group .el_form_label span {
  font-size: 120%;
  font-weight: 500;
}
.bl_contacts .bl_form_group .el_form_label span.el_required {
  display: inline-block;
  margin-left: 1em;
  font-size: 12px;
  font-size: 1.2rem;
  background: #ff5d78;
  color: #fff;
  padding: 1px 5px;
}
.bl_contacts .bl_form_group .el_form_field.el_radio {
  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;
  gap: 15px;
}
.bl_contacts .bl_form_group .el_form_field.el_radio .el_radioItem {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
}
.bl_contacts .bl_form_group .el_form_field .el_survey {
  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;
  gap: 15px;
}
.bl_contacts .bl_form_group .el_form_field .el_survey .el_radioItem:not(.el_other) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
}
.bl_contacts .bl_form_group .el_form_field .el_survey .el_other .el_radioItemLabel {
  margin-bottom: 10px;
}
.bl_contacts .bl_form_group .el_form_city {
  margin-top: 10px;
}
.bl_contacts .bl_form_group .el_btnZip {
  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;
}
.bl_contacts .bl_form_group .el_btnZip span {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.bl_contacts .bl_form_group .el_btnZip a {
  display: inline-block;
  margin-left: auto;
  margin-right: 0;
  color: inherit;
  text-decoration: underline;
  text-align: right;
}
.bl_contacts .bl_form_submit {
  margin-top: 30px;
}
.bl_contacts .el_error {
  color: red !important;
}

.page_cofirm .bl_contacts .bl_form_submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}

.page_thanks .bl_contacts .el_btnWrap {
  margin-top: 30px;
  text-align: center;
}
.page_thanks .bl_contacts .el_btnWrap .el_btn {
  font-family: inherit;
  position: relative;
  display: inline-block;
  cursor: pointer;
  width: 20rem;
  height: 5rem;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #a67c52;
  background: #a67c52;
  border-radius: 0.5rem;
  font-size: 16px;
  font-size: 1.6rem;
  text-decoration: none !important;
  color: #fff;
  text-align: center;
  line-height: 5rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media screen and (min-width: 1025px) {
  .page_thanks .bl_contacts .el_btnWrap .el_btn:hover {
    border: 1px solid #000;
    background: #fff;
    color: #000;
  }
}

/* =================================================
    #lightbox override
=================================================== */
#lightboxOverlay {
  z-index: 100010;
}

#lightbox {
  padding-bottom: 100px;
  z-index: 100010;
}
#lightbox .lb-outerContainer {
  width: 90% !important;
  max-width: 1200px !important;
  margin: 0 auto;
}
#lightbox .lb-image {
  border-radius: 0;
  border: none;
  max-width: 800px;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  -o-object-fit: contain;
     object-fit: contain;
}
#lightbox .lb-nav {
  top: calc(100% + 35px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding-left: 10px;
  padding-right: 10px;
  background: rgba(0, 0, 0, 0.3);
  height: 50px;
  width: 94.6666666667dvw;
  max-width: 800px;
  z-index: 10;
  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;
  z-index: 100010;
}
#lightbox .lb-nav a.lb-prev,
#lightbox .lb-nav a.lb-next {
  opacity: 1;
  background-size: 20px;
}
#lightbox .lb-nav a.lb-next {
  width: 30%;
  right: 0;
  float: none;
}
#lightbox .lb-nav a.lb-prev {
  width: 30%;
  left: 0;
  float: none;
}
#lightbox .lb-data .lb-close {
  position: fixed;
  top: 20px;
  right: 20px;
  float: none;
  background-size: 20px;
  z-index: 100010;
}

/* =================================================
    .記事詳細ページ 
=================================================== */
.bl_post .txt_aliginLeft {
  text-align: left !important;
}
.bl_post .txt_aliginRight {
  text-align: right !important;
}
.bl_post .txt_aliginCenter {
  text-align: center !important;
}
.bl_post .block_alignLeft {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.bl_post .block_alignRight {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.bl_post .block_alignCenter {
  margin-left: auto;
  margin-right: auto;
}
.bl_post .el_pageheader_img {
  width: 153px;
  height: auto;
  text-align: center;
  margin: 15px auto 0;
}
.bl_post * + .el_pageheader_img {
  margin-top: 40px;
}
.bl_post .el_pageheader_ttl {
  margin: 10px auto 0;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.4166666667;
  letter-spacing: 0.05em;
  text-align: center;
  font-weight: 500;
  color: #5a3810;
}
.bl_post .el_pageheader_text {
  margin: 10px auto 0;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: left;
}
.bl_post .el_postjumpNavi {
  margin-top: 40px;
  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;
  gap: 15px;
  row-gap: 10px;
}
.bl_post .el_postjumpNavi li a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #5a3810;
  text-decoration: none !important;
  padding: 0;
  padding-left: 20px;
  line-height: 1.6;
}
.bl_post .el_postjumpNavi li a::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0px;
  display: inline-block;
  width: 10px;
  height: 5px;
  background: url(../images/common/icon/icon_jump.svg) no-repeat center center/contain;
}
.bl_post h2:not(.el_singleTtl) {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding: 0 15px 8px;
  margin: 50px auto 20px;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.5454545455;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
}
.bl_post h2:not(.el_singleTtl)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(to right, #5a3810 0, #5a3810 4px, transparent 4px, transparent 6px);
  background-size: 100% 1px;
  background-repeat: repeat-x;
}
.bl_post * + h2:not(.el_singleTtl) {
  margin-top: 35px;
}
.bl_post h3 {
  position: relative;
  padding: 8px 12px;
  margin-top: 10px;
  margin-bottom: 15px;
  background: #f7f5f3;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.5238095238;
  letter-spacing: 0.025em;
  color: #5a3810;
  font-weight: 500;
}
.bl_post h3 + * {
  margin-top: 11px !important;
}
.bl_post * + h3 {
  margin-top: 45px;
}
.bl_post h4 {
  position: relative;
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1.5789473684;
  letter-spacing: 0.025em;
  color: #216744;
  font-weight: 500;
}
.bl_post h5 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: #5a3810;
  font-weight: 500;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.7647058824;
  letter-spacing: 0em;
}
.bl_post p:not(.el_pageheader_text) {
  margin-top: 15px;
  text-align: left;
  line-height: 1.8666666667;
}
.bl_post p:not(.el_pageheader_text):first-of-type {
  margin-top: 0;
}
.bl_post .el_postLead {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0em;
  font-weight: 500;
}
.bl_post strong {
  font-weight: 700;
}
.bl_post a:not(.el_linkBtn):not(.el_postjumpNavi a):not(.el_tableofcontents a):not(.el_figureFlex a) {
  text-decoration: underline;
}
.bl_post iframe {
  max-width: 100%;
  display: block;
}
.bl_post ul:not(.el_postjumpNavi):not(.el_tableofcontents):not(.el_tableofcontents ul) {
  padding-left: 8px;
}
.bl_post ul:not(.el_postjumpNavi):not(.el_tableofcontents):not(.el_tableofcontents ul) li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 20px;
  color: #5a3810;
  line-height: 1.6;
}
.bl_post ul:not(.el_postjumpNavi):not(.el_tableofcontents):not(.el_tableofcontents ul) li:last-of-type {
  margin-bottom: 0;
}
.bl_post ul:not(.el_postjumpNavi):not(.el_tableofcontents):not(.el_tableofcontents ul) li::before {
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #cdc3b7;
}
.bl_post * + ul:not(.el_postjumpNavi):not(.el_tableofcontents):not(.el_tableofcontents ul) {
  margin-top: 17px;
}
.bl_post ol:not(.el_flow):not(.el_flowNo) {
  list-style-type: none;
  counter-reset: cnt;
  padding-left: 8px;
}
.bl_post ol:not(.el_flow):not(.el_flowNo) li {
  position: relative;
  counter-increment: cnt;
  padding-left: 20px;
  margin-bottom: 15px;
  color: #5a3810;
  line-height: 1.6;
}
.bl_post ol:not(.el_flow):not(.el_flowNo) li:last-of-type {
  margin-bottom: 0;
}
.bl_post ol:not(.el_flow):not(.el_flowNo) li:before {
  content: counter(cnt);
  display: inline-block;
  margin-left: -22px;
  width: 2em;
  text-align: right;
  position: absolute;
  top: 0;
  left: 0;
}
.bl_post * + ol:not(.el_flow):not(.el_flowNo) {
  margin-top: 23px;
}
.bl_post table:not(table.el_table_responsive):not(table.tbl_scroll) {
  width: 100% !important;
}
.bl_post table th p:last-of-type,
.bl_post table th ul:last-of-type,
.bl_post table th ol:last-of-type,
.bl_post table th img:last-of-type,
.bl_post table th figure:last-of-type,
.bl_post table th ol:not(.el_flow):not(.el_flowNo):last-of-type,
.bl_post table th ul:not(.el_postjumpNavi):not(.el_tableofcontents):not(.el_tableofcontents ul):last-of-type,
.bl_post table td p:last-of-type,
.bl_post table td ul:last-of-type,
.bl_post table td ol:last-of-type,
.bl_post table td img:last-of-type,
.bl_post table td figure:last-of-type,
.bl_post table td ol:not(.el_flow):not(.el_flowNo):last-of-type,
.bl_post table td ul:not(.el_postjumpNavi):not(.el_tableofcontents):not(.el_tableofcontents ul):last-of-type {
  margin-bottom: 0;
}
.bl_post table {
  background: #fff;
  margin-bottom: 40px;
  border: 1px solid #5a3810;
  border-collapse: collapse;
}
@media screen and (min-width: 1024px) {
  .bl_post table {
    margin-bottom: 50px;
  }
}
.bl_post table th,
.bl_post table td {
  padding: 10px 15px;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.bl_post table td {
  vertical-align: top;
}
.bl_post table thead th {
  background: #f7f5f3;
  border: 1px solid #5a3810;
  text-align: left;
  font-weight: 700;
  color: #5a3810;
  text-align: center;
}
.bl_post table tbody th {
  background: #fff;
  border: 1px solid #5a3810;
  color: #5a3810;
  font-weight: 500;
}
.bl_post table tbody td {
  background: #fff;
  border: 1px solid #5a3810;
}
.bl_post * + table {
  margin-top: 30px;
}
.bl_post table.el_table_none {
  border: none !important;
}
.bl_post table.el_table_none th,
.bl_post table.el_table_none td {
  color: #5a3810;
  font-size: 85% !important;
  background: transparent;
  border: none !important;
  padding: 0 10px 0 0 !important;
}
.bl_post table.el_table_none tr {
  border: none !important;
}
.bl_post table.el_table_responsive {
  width: 100%;
}
.bl_post table.el_table_responsive th,
.bl_post table.el_table_responsive td {
  display: block;
  border: none;
}
@media screen and (min-width: 768px) {
  .bl_post table.el_table_responsive th,
  .bl_post table.el_table_responsive td {
    display: table-cell;
    border: 1px solid #5a3810;
  }
}
@media screen and (max-width: 767px) {
  .bl_post table.el_table_responsive th,
  .bl_post table.el_table_responsive td {
    width: 100% !important;
  }
}
.bl_post table.el_table_responsive th {
  border-bottom: 1px solid #5a3810;
  background: #f7f5f3;
}
.bl_post table.el_table_responsive td {
  vertical-align: top;
}
.bl_post table.el_table_responsive tr {
  border-bottom: 1px solid #5a3810;
}
@media screen and (min-width: 768px) {
  .bl_post table.el_table_responsive tr {
    border: none;
  }
}
.bl_post table.el_table_fix {
  table-layout: fixed !important;
}
.bl_post * + .bl_overflowSP {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .bl_post .bl_overflowSP {
    width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .bl_post .bl_overflowSP table {
    max-width: 767px !important;
    width: 767px !important;
  }
  .bl_post .bl_overflowSP::before {
    content: "→スクロールできます。";
    display: inline-block;
    margin-bottom: 10px;
    line-height: 1;
  }
}
.bl_post .el_tableofcontents {
  background: #fff;
  margin-bottom: 15px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}
.bl_post .el_tableofcontents_ttl {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 100%;
  background: #f7f5f3;
  padding: 20px 18px;
  padding-right: 70px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #5a3810;
}
.bl_post .el_tableofcontents > li > a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 100%;
}
.bl_post .el_tableofcontents > li > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 6px;
  height: 11px;
  background: url(../images/common/icon_arrow.svg) no-repeat center center/contain;
}
.bl_post .el_tableofcontents_lv2 {
  padding: 12px 18px 18px;
}
.bl_post .el_tableofcontents_lv2 > li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
  line-height: 1.6;
}
.bl_post .el_tableofcontents_lv2 > li:last-of-type {
  margin-bottom: 0;
}
.bl_post .el_tableofcontents_lv2 > li:not(.el_tableofcontents_hasChiled)::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 3px;
  display: inline-block;
  width: 6px;
  height: 11px;
  background: url(../images/common/icon_arrow.svg) no-repeat center center/contain;
}
.bl_post .el_tableofcontents_lv2 > li > a {
  position: relative;
  color: #de321e;
  text-decoration: underline !important;
}
@media screen and (min-width: 1024px) {
  .bl_post .el_tableofcontents_lv2 > li > a:hover {
    text-decoration: none !important;
  }
}
.bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled {
  display: grid;
  grid-template-areas: "icon list" "icon childlist";
  grid-template-columns: 24px 1fr;
  padding-left: 0;
  margin-bottom: 15px;
}
.bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled .el_btnToggle {
  grid-area: icon;
  display: block;
  width: 14px;
  height: 14px;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  background: url(../images/common/icon/icon_tableofcontents_open.svg) no-repeat center/contain;
  text-align: center;
  cursor: pointer;
}
.bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled .el_btnToggle.is_open {
  background: url(../images/common/icon/icon_tableofcontents_close.svg) no-repeat center/contain;
}
.bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled > a {
  grid-area: list;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #de321e;
  text-decoration: underline !important;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled > a:hover {
    text-decoration: none !important;
  }
}
.bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled > ul {
  grid-area: childlist;
  display: none;
}
.bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled > ul li {
  position: relative;
  padding-left: 14px;
  margin-top: 12px;
}
.bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled > ul li::before {
  content: "-";
  display: inline-block;
  position: absolute;
  top: 1px;
  left: 0;
}
.bl_post .el_tableofcontents_lv2 > li.el_tableofcontents_hasChiled > ul li > a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #de321e;
  text-decoration: underline !important;
}
.bl_post .el_linkBtn {
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 240px;
  height: auto;
  padding: 17px 20px;
  padding-right: 55px;
  margin-top: 15px;
  margin-right: 15px;
  background: #fff;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  letter-spacing: 0em;
  font-weight: 500;
  color: #5a3810;
  text-decoration: none !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: left;
}
.bl_post .el_linkBtn:first-of-type {
  margin-top: 0;
}
.bl_post .el_linkBtn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 6px;
  height: 11px;
  background: url(../images/common/icon_arrow.svg) no-repeat center center/contain;
}
.bl_post .bl_accordion,
.bl_post .bl_qanda {
  margin-bottom: 15px;
  background: #f7f5f3;
}
.bl_post .bl_accordion_ttl,
.bl_post .bl_qanda_ttl {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px 44px 16px 15px;
  cursor: pointer;
}
.bl_post .bl_accordion_ttl *:last-of-type,
.bl_post .bl_qanda_ttl *:last-of-type {
  margin-bottom: 0;
}
.bl_post .bl_accordion_ttl p,
.bl_post .bl_qanda_ttl p {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  letter-spacing: 0em;
  font-weight: 500;
}
.bl_post .bl_accordion_ttl::before, .bl_post .bl_accordion_ttl::after,
.bl_post .bl_qanda_ttl::before,
.bl_post .bl_qanda_ttl::after {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 15px;
  height: 2px;
  background-color: #a67c52;
  position: absolute;
  top: 50%;
  right: 19px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.bl_post .bl_accordion_ttl::before,
.bl_post .bl_qanda_ttl::before {
  width: 2px;
  height: 15px;
  right: 25px;
}
.bl_post .bl_accordion_ttl.is_open::before,
.bl_post .bl_qanda_ttl.is_open::before {
  display: none;
}
.bl_post .bl_accordion_body,
.bl_post .bl_qanda_body {
  position: relative;
  display: none;
  padding: 12px 18px 15px;
}
.bl_post .bl_accordion_body::after,
.bl_post .bl_qanda_body::after {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 90%;
  height: 1px;
  background: #ac9b87;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.bl_post .bl_accordion_body *:last-of-type,
.bl_post .bl_qanda_body *:last-of-type {
  margin-bottom: 0;
}
.bl_post .bl_qanda_ttl {
  padding-left: 47px;
  cursor: pointer;
}
.bl_post .bl_qanda_ttl p::before {
  position: absolute;
  display: block;
  width: 31px;
  height: 31px;
  background: #fff;
  top: 16px;
  left: 10px;
  content: "Q";
  font-family: "Outfit", sans-serif;
  color: #5a3810;
  text-align: center;
  font-weight: 100;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 31px;
}
.bl_post .bl_qanda_body {
  padding: 0;
  position: relative;
}
.bl_post .bl_qanda_body .bl_qanda_bodyInner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 85px;
  padding: 12px 18px 15px;
  padding-left: 54px;
}
.bl_post .bl_qanda_body .bl_qanda_bodyInner::before {
  position: absolute;
  display: block;
  width: 31px;
  height: 31px;
  background: #bc9d7d;
  top: 21px;
  left: 10px;
  content: "A";
  font-family: "Outfit", sans-serif;
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 31px;
}
.bl_post .el_flow {
  list-style: none;
  counter-reset: num;
}
.bl_post .el_flow li {
  position: relative;
  padding: 14px 16px;
  background: #f7f5f3;
  margin-bottom: 63px;
}
.bl_post .el_flow li:last-of-type::after {
  display: none;
}
.bl_post .el_flow li::after {
  position: absolute;
  top: calc(100% + 23.5px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  display: block;
  width: 31px;
  height: 16px;
  background: url(../images/common/icon/icon_flow.svg) no-repeat center center/contain;
}
.bl_post .el_flow li > p:first-of-type {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.7647058824;
}
.bl_post .el_flow li .el_flow_cont p {
  margin-bottom: 1em;
}
.bl_post .el_flow li .el_flow_cont *:last-of-type {
  margin-bottom: 0;
}
.bl_post .el_flow_num li {
  padding-left: 80px;
}
.bl_post .el_flow_num li > p:first-of-type {
  position: relative;
}
.bl_post .el_flow_num li > p:first-of-type::before {
  content: counter(num, decimal-leading-zero);
  counter-increment: num;
  display: block;
  width: 46px;
  margin-bottom: 9px;
  border-right: 1px solid #5a3810;
  line-height: 1;
  font-size: 22px;
  font-size: 2.2rem;
  font-family: "Outfit", sans-serif;
  font-weight: 100;
  color: #5a3810;
  line-height: 1;
  position: absolute;
  top: 6px;
  left: -65px;
}
.bl_post img {
  display: block;
}
.bl_post figure,
.bl_post .el_figure {
  display: table;
}
.bl_post figure figcaption,
.bl_post figure .el_caption,
.bl_post .el_figure figcaption,
.bl_post .el_figure .el_caption {
  display: table-caption;
  caption-side: bottom;
  margin-top: 6px;
  line-height: 1.8666666667;
  text-align: center;
}
.bl_post * + figure,
.bl_post .el_figure_fluid {
  margin-top: 20px;
}
.bl_post .el_figure_fluid {
  margin: 0 calc(50% - 50vw) 25px;
}
@media screen and (min-width: 768px) {
  .bl_post .el_figure_fluid {
    margin: 0 auto 50px;
  }
}
.bl_post .el_figure_fluid img {
  border-radius: 0;
}
.bl_post .el_figure_fluid figcaption {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_post .el_figure_fluid figcaption {
    width: 100%;
  }
}
.bl_post .alignleft {
  margin: 0 auto 10px;
}
@media screen and (min-width: 768px) {
  .bl_post .alignleft {
    float: left;
    margin-right: 2em;
    margin-bottom: 5px;
  }
}
.bl_post .alignright {
  margin: 0 auto 10px;
}
@media screen and (min-width: 768px) {
  .bl_post .alignright {
    float: right;
    margin-left: 2em;
    margin-bottom: 5px;
  }
}
.bl_post .aligncenter {
  margin-bottom: 10px;
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.bl_post .el_figureFlex {
  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;
}
.bl_post .el_figureFlex > div {
  width: 47%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .bl_post .el_figureFlex > div {
    width: calc(50% - 20px);
  }
}
.bl_post .el_figureFlex > div .wp-caption,
.bl_post .el_figureFlex > div img {
  width: 100% !important;
}
.bl_post .el_figureFlex > div figcaption,
.bl_post .el_figureFlex > div p {
  line-height: 1.8666666667;
}
.bl_post .el_figureFlex > div figure img {
  margin-bottom: 0;
}
.bl_post .el_figureFlex > div .wp-caption-dd,
.bl_post .el_figureFlex > div img + p,
.bl_post .el_figureFlex > div img + figcaption {
  margin-top: 10px;
}
.bl_post .el_figureFlex > div a {
  color: #5a3810;
}
.bl_post .el_figureFlex__half {
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .bl_post .el_figureFlex__half {
    gap: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .bl_post .el_figureFlex__half {
    gap: 80px;
  }
}
.bl_post .el_figureFlex__half > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 15px) / 2);
          flex: 0 0 calc((100% - 15px) / 2);
}
@media screen and (min-width: 768px) {
  .bl_post .el_figureFlex__half > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 40px) / 2);
            flex: 0 0 calc((100% - 40px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .bl_post .el_figureFlex__half > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 80px) / 2);
            flex: 0 0 calc((100% - 80px) / 2);
  }
}
.bl_post .el_figureFlex__onethird {
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .bl_post .el_figureFlex__onethird {
    gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .bl_post .el_figureFlex__onethird {
    gap: 45px;
  }
}
.bl_post .el_figureFlex__onethird > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 15px) / 2);
          flex: 0 0 calc((100% - 15px) / 2);
}
@media screen and (min-width: 768px) {
  .bl_post .el_figureFlex__onethird > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 40px) / 3);
            flex: 0 0 calc((100% - 40px) / 3);
  }
}
@media screen and (min-width: 1024px) {
  .bl_post .el_figureFlex__onethird > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 90px) / 3);
            flex: 0 0 calc((100% - 90px) / 3);
  }
}
.bl_post .el_figureFlex__quarter {
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .bl_post .el_figureFlex__quarter {
    gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .bl_post .el_figureFlex__quarter {
    gap: 36px;
  }
}
.bl_post .el_figureFlex__quarter > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 15px) / 2);
          flex: 0 0 calc((100% - 15px) / 2);
}
@media screen and (min-width: 768px) {
  .bl_post .el_figureFlex__quarter > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 60px) / 4);
            flex: 0 0 calc((100% - 60px) / 4);
  }
}
@media screen and (min-width: 1024px) {
  .bl_post .el_figureFlex__quarter > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 108px) / 4);
            flex: 0 0 calc((100% - 108px) / 4);
  }
}
@media screen and (min-width: 768px) {
  .bl_post .el_figureFlex__halfTitle {
    gap: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .bl_post .el_figureFlex__halfTitle {
    gap: 80px;
  }
}
.bl_post .el_figureFlex__halfTitle > div {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .bl_post .el_figureFlex__halfTitle > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 40px) / 2);
            flex: 0 0 calc((100% - 40px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .bl_post .el_figureFlex__halfTitle > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 80px) / 2);
            flex: 0 0 calc((100% - 80px) / 2);
  }
}
.bl_post .el_figureFlex__halfTitle > div + div {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .bl_post .el_figureFlex__halfTitle > div + div {
    margin-top: 0;
  }
}
.bl_post .el_figureFlex__halfTitle + * {
  margin-top: 40px;
}
.bl_post * + .el_figureFlex {
  margin-top: 25px;
}
@media screen and (min-width: 1024px) {
  .bl_post * + .el_figureFlex {
    margin-top: 50px;
  }
}

.icon_pdf::after,
.icon_excel::after,
.icon_word::after,
.icon_ppt::after,
.icon_blank::after,
.icon_new::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1em;
  margin: 0 5px 3px;
  margin-right: 5px;
  vertical-align: middle;
}

.icon_pdf::after {
  background: url(../images/common/icon/icon_pdf.svg) no-repeat center center/contain;
}

.icon_excel::after {
  background: url(../images/common/icon/icon_excel.svg) no-repeat center center/contain;
}

.icon_word::after {
  background: url(../images/common/icon/icon_word.svg) no-repeat center center/contain;
}

.icon_ppt::after {
  height: 15px;
  background: url(../images/common/icon/icon_ppt.svg) no-repeat center center/contain;
}

.icon_blank::after {
  width: 15px;
  background: url(../images/common/icon/icon_blank.svg) no-repeat center center/contain;
}

.icon_new:not(.icon_pdf)::after,
.icon_pdf.icon_new::after {
  content: "NEW";
  display: inline-block;
  width: auto;
  height: 1em;
  vertical-align: middle;
  font-weight: 500;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: #d80a30;
  line-height: 1;
  white-space: nowrap;
}

.icon_new:not(.icon_pdf)::after {
  margin: 0 0 5px;
}

.icon_pdf.icon_new::after {
  display: inline-block;
  width: 30px;
  height: 15px;
  padding-left: 35px;
  margin: 0 0px 2px;
  background: url(../images/common/icon/icon_pdf.svg) no-repeat left center/contain;
}

/* ======================================
    el_btnHamburger
====================================== */
.el_btnHamburger {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 70px;
  height: 50px;
  padding-top: 10px;
  margin: 0;
  overflow: hidden;
  z-index: 100000;
  background-color: transparent;
  cursor: pointer;
}
.el_btnHamburger__animation {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 18px;
  height: 15px;
  text-align: center;
}
.el_btnHamburger__animation::after {
  content: "menu";
  position: absolute;
  top: 111%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  font-size: 10px;
  font-size: 1rem;
  letter-spacing: 0.075em;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  text-align: center;
}
.el_btnHamburger_line {
  /* 線色 */
  background: #fff;
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.el_btnHamburger_line__top {
  top: 1px;
}
.el_btnHamburger_line__bottom {
  top: 100%;
}

.is_btnHamburger__on .el_btnHamburger_line__top {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 50%;
}
.is_btnHamburger__on .el_btnHamburger_line__middle {
  background: transparent;
}
.is_btnHamburger__on .el_btnHamburger_line__bottom {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 50%;
}
.is_btnHamburger__on .el_btnHamburger__animation::after {
  content: "close";
}

/* ==============================================
    form Reset
================================================= */
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  vertical-align: middle;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  vertical-align: middle;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  vertical-align: middle;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  vertical-align: middle;
}
input,
select,
textarea,
label,
option,
input::placeholder,
textarea::placeholder {
  font-family: "Noto Sans JP", sans-serif;
  vertical-align: middle;
}

input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=tel],
input[type=url],
textarea {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 0 0 0 transparent;
          box-shadow: 0 0 0 0 transparent;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=url]:focus,
textarea:focus {
  outline-offset: 0;
  outline: 2px solid #a67c52;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  background: transparent;
  color: #5a3810;
}

textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  resize: none;
  outline: none;
}

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

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
          box-shadow: 0 0 0 1000px white inset;
}

#autozip {
  display: none !important;
}

/* ==============================================
   form module contactform7
================================================= */
input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=url],
textarea {
  width: 100%;
  background: #fff;
  padding: 0.9em;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #5a3810;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-size: 16px;
  font-size: 1.6rem;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #bfbfbf;
  font-weight: normal;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #bfbfbf;
  font-weight: normal;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #bfbfbf;
  font-weight: normal;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #bfbfbf;
  font-weight: normal;
}

input::placeholder,
textarea::placeholder {
  color: #bfbfbf;
  font-weight: normal;
}

input[type=hidden],
textarea[type=hidden],
select[type=hidden],
.form_preview .required {
  display: none;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #ccc;
  font-weight: normal;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #ccc;
  font-weight: normal;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #ccc;
  font-weight: normal;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #ccc;
  font-weight: normal;
}

input::placeholder,
textarea::placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #ccc;
  font-weight: normal;
}

input[type=hidden],
textarea[type=hidden],
select[type=hidden],
.form_preview .required {
  display: none;
}

.el_selectWrap {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
}
.el_selectWrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #5a3810;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
.el_selectWrap select {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  padding: 0.5em 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #5a3810;
  border-radius: 3px;
  background: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 13px 13px;
}
.el_selectWrap select:focus {
  outline: 2px solid #a67c52;
}

.el_checkboxWrap .el_checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  display: inline-block;
  margin-top: 0.5em;
  font-size: 90%;
  z-index: -1;
}
.el_checkboxWrap .el_checkbox label {
  cursor: pointer;
}
.el_checkboxWrap .el_checkbox .el_itemLabel {
  padding-left: 2em;
  position: relative;
  margin-right: 20px;
}
.el_checkboxWrap .el_checkbox .el_itemLabel::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 2px;
}
.el_checkboxWrap .el_checkbox input[type=checkbox]:checked ~ .el_itemLabel {
  color: #000;
}
.el_checkboxWrap .el_checkbox input[type=checkbox]:checked ~ .el_itemLabel::after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: 5px;
  width: 7px;
  height: 14px;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
}
.el_checkboxWrap .el_checkbox input[type=checkbox]:focus + span::before {
  outline: 2px solid #a67c52; /* Outline color when focused */
}

.el_radio input[type=radio] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.el_radio label {
  display: inline-block;
  cursor: pointer;
}
.el_radio .el_radioItemLabel {
  position: relative;
  padding-left: 2em;
}
.el_radio input[type=radio] + span::before,
.el_radio input[type=radio] + span::after {
  position: absolute;
  display: block;
  content: "";
  border-radius: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.el_radio input[type=radio] + span::before {
  top: 50%;
  left: 0;
  width: 22px;
  height: 22px;
  background: #fff;
  border: 1px solid #000;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.el_radio input[type=radio] + span::after {
  opacity: 0;
  top: 50%;
  left: 4px;
  width: 16px;
  height: 16px;
  background: #000;
  -webkit-transform: translateY(-50%) scale(1.6);
          transform: translateY(-50%) scale(1.6);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.el_radio input[type=radio]:checked + span::after {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}
.el_radio input[type=radio]:focus + span::before {
  outline: 2px solid #a67c52;
}

/* 送信ボタン
---------------------------------------- */
button[type=submit],
input[type=submit],
input[type=button] {
  font-family: inherit;
  position: relative;
  display: block;
  cursor: pointer;
  width: 20rem;
  height: 5rem;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #a67c52;
  background: #a67c52;
  border-radius: 0.5rem;
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  line-height: 5rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media screen and (min-width: 1025px) {
  button[type=submit]:hover,
  input[type=submit]:hover,
  input[type=button]:hover {
    border: 1px solid #000;
    background: #fff;
    color: #000;
  }
}

input[name=submitBack],
button[name=submitBack] {
  font-family: inherit;
  position: relative;
  display: block;
  cursor: pointer;
  width: 20rem;
  height: 5rem;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #898989;
  border: 1px solid #898989;
  border-radius: 0.5rem;
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  line-height: 5rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media screen and (min-width: 1025px) {
  input[name=submitBack]:hover,
  button[name=submitBack]:hover {
    border: 1px solid #000;
    background: #fff;
    color: #000;
  }
}

/* ======================================
    .js_pageTop
====================================== */
.bl_pageTop {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  height: 35px;
  text-align: center;
}
.bl_pageTop img {
  width: 96px;
  height: auto;
  margin: 0 auto;
}

/* ======================================
    .Swiper 初期化
====================================== */
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "";
  display: none;
}

/* =================================================
    .bl_sample slide
=================================================== */
.bl_sample {
  padding-top: 30px;
  padding-bottom: 80px;
}
@media screen and (min-width: 1024px) {
  .bl_sample {
    padding-top: 60px;
    padding-bottom: 120px;
  }
}
.bl_sample_slideWrap {
  position: relative;
  margin: 30px calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .bl_sample_slideWrap {
    margin: 50px auto;
  }
}
@media screen and (min-width: 1024px) {
  .bl_sample_slideWrap {
    max-width: 1140px;
    margin: 60px 0;
  }
}
.bl_sample_slideWrap .swiper {
  position: relative;
}
.bl_sample_slideWrap .swiper .swiper-slide > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  color: #5a3810;
}
.bl_sample_slideWrap .swiper .swiper-slide > a .el_thum {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.bl_sample_slideWrap .swiper .swiper-slide > a .el_thum img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bl_sample_slideWrap .swiper .swiper-slide > a .el_cont {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  padding: 10px;
}
.bl_sample_slideWrap .swiper .swiper-slide > a .el_cont time {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
.bl_sample_slideWrap .swiper .swiper-slide > a .el_cont p {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  letter-spacing: 0.025em;
}
.bl_sample_slideWrap .el_swiperButton {
  position: absolute;
  width: 100vw;
  height: 18px;
  top: 28.6458333333vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  z-index: 20;
}
@media screen and (min-width: 1024px) {
  .bl_sample_slideWrap .el_swiperButton {
    top: 7.34375vw;
    height: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .bl_sample_slideWrap .el_swiperButton {
    top: 85px;
    width: calc(100% + 120px);
  }
}
.bl_sample_slideWrap .el_swiperButton .swiper-button-prev,
.bl_sample_slideWrap .el_swiperButton .swiper-button-next {
  width: 18px;
  height: 18px;
  opacity: 1;
  margin-top: 0;
  top: 0;
  pointer-events: all;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 1024px) {
  .bl_sample_slideWrap .el_swiperButton .swiper-button-prev,
  .bl_sample_slideWrap .el_swiperButton .swiper-button-next {
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .bl_sample_slideWrap .el_swiperButton .swiper-button-prev,
  .bl_sample_slideWrap .el_swiperButton .swiper-button-next {
    cursor: pointer;
  }
  .bl_sample_slideWrap .el_swiperButton .swiper-button-prev:hover,
  .bl_sample_slideWrap .el_swiperButton .swiper-button-next:hover {
    opacity: 0.7;
  }
}
.bl_sample_slideWrap .el_swiperButton .swiper-button-prev {
  left: 0;
  background: url("../images/common/arrow_slide_l.svg") no-repeat center center/contain;
}
.bl_sample_slideWrap .el_swiperButton .swiper-button-next {
  right: 0;
  background: url("../images/common/arrow_slide_r.svg") no-repeat center center/contain;
}
.bl_sample_slideWrap .swiper-pagination {
  position: static;
  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;
  width: 90%;
  margin: 30px auto 0;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .bl_sample_slideWrap .swiper-pagination {
    margin: 50px auto 0;
  }
}
.bl_sample_slideWrap .swiper-pagination .swiper-pagination-bullet {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 30px;
  height: 30px;
  margin: 0;
  background: #cad2e2;
  border-radius: 100vh;
  opacity: 1;
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
  color: #a67c52;
  line-height: 30px;
  text-align: center;
}
.bl_sample_slideWrap .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #0092d9;
}
.bl_sample_slideWrap.is_noslide .swiper-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}
.bl_sample_slideWrap.is_noslide .swiper-wrapper .swiper-slide {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  width: 100%;
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  .bl_sample_slideWrap.is_noslide .swiper-wrapper .swiper-slide {
    max-width: 400px;
  }
}
.bl_sample_slideWrap.is_noslide .swiper-button-prev,
.bl_sample_slideWrap.is_noslide .swiper-button-next {
  display: none;
}
.bl_sample .el_btnWrap {
  text-align: center;
}

/*==================================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -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(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

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

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

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

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

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

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

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  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: 1s;
          animation-duration: 1s;
  -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: 1s;
          animation-duration: 1s;
  -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: 1s;
          animation-duration: 1s;
  -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: 1s;
          animation-duration: 1s;
  -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: 1s;
          animation-duration: 1s;
  -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: 1s;
          animation-duration: 1s;
  -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: 1s;
          animation-duration: 1s;
  -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: 1s;
          animation-duration: 1s;
  -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: 1s;
          animation-duration: 1s;
  -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: 0.5s;
          animation-duration: 0.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: 0.5s;
          animation-duration: 0.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: 1s;
          animation-duration: 1s;
  -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: 1s;
          animation-duration: 1s;
  -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: 1s;
          animation-duration: 1s;
  -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 1s forwards;
          animation: lineAnime 0.5s linear 1s 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: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  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: 1s;
          animation-duration: 1s;
  -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: #666; /*伸びる背景色の設定*/
}

@-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: 1s;
          animation-duration: 1s;
  -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: 1s;
          animation-duration: 1s;
  -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: 1s;
          animation-duration: 1s;
  -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;
}

/* ======================================
    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: 1024px) {
  .hp_pc_none {
    display: none !important;
  }
}

.hp_pc_display {
  display: none !important;
}
@media screen and (min-width: 1024px) {
  .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: right !important;
}

/*  margin padding
-------------------------------------- */
/* 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;
}

/* margin 部分的な設定*/
.mt-0 {
  margin-top: 0px !important;
}
@media screen and (min-width: 1024px) {
  .mt-0 {
    margin-top: 0px !important;
  }
}

.mt-10 {
  margin-top: 8px !important;
}
@media screen and (min-width: 1024px) {
  .mt-10 {
    margin-top: 10px !important;
  }
}

.mt-20 {
  margin-top: 16px !important;
}
@media screen and (min-width: 1024px) {
  .mt-20 {
    margin-top: 20px !important;
  }
}

.mt-30 {
  margin-top: 24px !important;
}
@media screen and (min-width: 1024px) {
  .mt-30 {
    margin-top: 30px !important;
  }
}

.mt-40 {
  margin-top: 32px !important;
}
@media screen and (min-width: 1024px) {
  .mt-40 {
    margin-top: 40px !important;
  }
}

.mt-50 {
  margin-top: 40px !important;
}
@media screen and (min-width: 1024px) {
  .mt-50 {
    margin-top: 50px !important;
  }
}

.mt-60 {
  margin-top: 48px !important;
}
@media screen and (min-width: 1024px) {
  .mt-60 {
    margin-top: 60px !important;
  }
}

.mt-70 {
  margin-top: 56px !important;
}
@media screen and (min-width: 1024px) {
  .mt-70 {
    margin-top: 70px !important;
  }
}

.mt-80 {
  margin-top: 64px !important;
}
@media screen and (min-width: 1024px) {
  .mt-80 {
    margin-top: 80px !important;
  }
}

.mt-90 {
  margin-top: 72px !important;
}
@media screen and (min-width: 1024px) {
  .mt-90 {
    margin-top: 90px !important;
  }
}

.mt-100 {
  margin-top: 80px !important;
}
@media screen and (min-width: 1024px) {
  .mt-100 {
    margin-top: 100px !important;
  }
}

.mt--0 {
  margin-top: 0px !important;
}
@media screen and (min-width: 1024px) {
  .mt--0 {
    margin-top: 0px !important;
  }
}

.mt--10 {
  margin-top: -8px !important;
}
@media screen and (min-width: 1024px) {
  .mt--10 {
    margin-top: -10px !important;
  }
}

.mt--20 {
  margin-top: -16px !important;
}
@media screen and (min-width: 1024px) {
  .mt--20 {
    margin-top: -20px !important;
  }
}

.mt--30 {
  margin-top: -24px !important;
}
@media screen and (min-width: 1024px) {
  .mt--30 {
    margin-top: -30px !important;
  }
}

.mt--40 {
  margin-top: -32px !important;
}
@media screen and (min-width: 1024px) {
  .mt--40 {
    margin-top: -40px !important;
  }
}

.mt--50 {
  margin-top: -40px !important;
}
@media screen and (min-width: 1024px) {
  .mt--50 {
    margin-top: -50px !important;
  }
}

.mt--60 {
  margin-top: -48px !important;
}
@media screen and (min-width: 1024px) {
  .mt--60 {
    margin-top: -60px !important;
  }
}

.mt--70 {
  margin-top: -56px !important;
}
@media screen and (min-width: 1024px) {
  .mt--70 {
    margin-top: -70px !important;
  }
}

.mt--80 {
  margin-top: -64px !important;
}
@media screen and (min-width: 1024px) {
  .mt--80 {
    margin-top: -80px !important;
  }
}

.mt--90 {
  margin-top: -72px !important;
}
@media screen and (min-width: 1024px) {
  .mt--90 {
    margin-top: -90px !important;
  }
}

.mt--100 {
  margin-top: -80px !important;
}
@media screen and (min-width: 1024px) {
  .mt--100 {
    margin-top: -100px !important;
  }
}

.mb-0 {
  margin-bottom: 0px !important;
}
@media screen and (min-width: 1024px) {
  .mb-0 {
    margin-bottom: 0rem !important;
  }
}

.mb-10 {
  margin-bottom: 8px !important;
}
@media screen and (min-width: 1024px) {
  .mb-10 {
    margin-bottom: 10rem !important;
  }
}

.mb-20 {
  margin-bottom: 16px !important;
}
@media screen and (min-width: 1024px) {
  .mb-20 {
    margin-bottom: 20rem !important;
  }
}

.mb-30 {
  margin-bottom: 24px !important;
}
@media screen and (min-width: 1024px) {
  .mb-30 {
    margin-bottom: 30rem !important;
  }
}

.mb-40 {
  margin-bottom: 32px !important;
}
@media screen and (min-width: 1024px) {
  .mb-40 {
    margin-bottom: 40rem !important;
  }
}

.mb-50 {
  margin-bottom: 40px !important;
}
@media screen and (min-width: 1024px) {
  .mb-50 {
    margin-bottom: 50rem !important;
  }
}

.mb-60 {
  margin-bottom: 48px !important;
}
@media screen and (min-width: 1024px) {
  .mb-60 {
    margin-bottom: 60rem !important;
  }
}

.mb-70 {
  margin-bottom: 56px !important;
}
@media screen and (min-width: 1024px) {
  .mb-70 {
    margin-bottom: 70rem !important;
  }
}

.mb-80 {
  margin-bottom: 64px !important;
}
@media screen and (min-width: 1024px) {
  .mb-80 {
    margin-bottom: 80rem !important;
  }
}

.mb-90 {
  margin-bottom: 72px !important;
}
@media screen and (min-width: 1024px) {
  .mb-90 {
    margin-bottom: 90rem !important;
  }
}

.mb-100 {
  margin-bottom: 80px !important;
}
@media screen and (min-width: 1024px) {
  .mb-100 {
    margin-bottom: 100rem !important;
  }
}

.mb-110 {
  margin-bottom: 88px !important;
}
@media screen and (min-width: 1024px) {
  .mb-110 {
    margin-bottom: 110rem !important;
  }
}

.mb-120 {
  margin-bottom: 96px !important;
}
@media screen and (min-width: 1024px) {
  .mb-120 {
    margin-bottom: 120rem !important;
  }
}

.mb-130 {
  margin-bottom: 104px !important;
}
@media screen and (min-width: 1024px) {
  .mb-130 {
    margin-bottom: 130rem !important;
  }
}

.mb-140 {
  margin-bottom: 112px !important;
}
@media screen and (min-width: 1024px) {
  .mb-140 {
    margin-bottom: 140rem !important;
  }
}

.mb-150 {
  margin-bottom: 120px !important;
}
@media screen and (min-width: 1024px) {
  .mb-150 {
    margin-bottom: 150rem !important;
  }
}

.mb-160 {
  margin-bottom: 128px !important;
}
@media screen and (min-width: 1024px) {
  .mb-160 {
    margin-bottom: 160rem !important;
  }
}

.mb-170 {
  margin-bottom: 136px !important;
}
@media screen and (min-width: 1024px) {
  .mb-170 {
    margin-bottom: 170rem !important;
  }
}

.mb-180 {
  margin-bottom: 144px !important;
}
@media screen and (min-width: 1024px) {
  .mb-180 {
    margin-bottom: 180rem !important;
  }
}

.mb-190 {
  margin-bottom: 152px !important;
}
@media screen and (min-width: 1024px) {
  .mb-190 {
    margin-bottom: 190rem !important;
  }
}

.mb-200 {
  margin-bottom: 160px !important;
}
@media screen and (min-width: 1024px) {
  .mb-200 {
    margin-bottom: 200rem !important;
  }
}

.mb--0 {
  margin-bottom: 0px !important;
}
@media screen and (min-width: 1024px) {
  .mb--0 {
    margin-bottom: 0rem !important;
  }
}

.mb--10 {
  margin-bottom: -8px !important;
}
@media screen and (min-width: 1024px) {
  .mb--10 {
    margin-bottom: -10rem !important;
  }
}

.mb--20 {
  margin-bottom: -16px !important;
}
@media screen and (min-width: 1024px) {
  .mb--20 {
    margin-bottom: -20rem !important;
  }
}

.mb--30 {
  margin-bottom: -24px !important;
}
@media screen and (min-width: 1024px) {
  .mb--30 {
    margin-bottom: -30rem !important;
  }
}

.mb--40 {
  margin-bottom: -32px !important;
}
@media screen and (min-width: 1024px) {
  .mb--40 {
    margin-bottom: -40rem !important;
  }
}

.mb--50 {
  margin-bottom: -40px !important;
}
@media screen and (min-width: 1024px) {
  .mb--50 {
    margin-bottom: -50rem !important;
  }
}

.mb--60 {
  margin-bottom: -48px !important;
}
@media screen and (min-width: 1024px) {
  .mb--60 {
    margin-bottom: -60rem !important;
  }
}

.mb--70 {
  margin-bottom: -56px !important;
}
@media screen and (min-width: 1024px) {
  .mb--70 {
    margin-bottom: -70rem !important;
  }
}

.mb--80 {
  margin-bottom: -64px !important;
}
@media screen and (min-width: 1024px) {
  .mb--80 {
    margin-bottom: -80rem !important;
  }
}

.mb--90 {
  margin-bottom: -72px !important;
}
@media screen and (min-width: 1024px) {
  .mb--90 {
    margin-bottom: -90rem !important;
  }
}

.mb--100 {
  margin-bottom: -80px !important;
}
@media screen and (min-width: 1024px) {
  .mb--100 {
    margin-bottom: -100rem !important;
  }
}

.mb--110 {
  margin-bottom: -88px !important;
}
@media screen and (min-width: 1024px) {
  .mb--110 {
    margin-bottom: -110rem !important;
  }
}

.mb--120 {
  margin-bottom: -96px !important;
}
@media screen and (min-width: 1024px) {
  .mb--120 {
    margin-bottom: -120rem !important;
  }
}

.mb--130 {
  margin-bottom: -104px !important;
}
@media screen and (min-width: 1024px) {
  .mb--130 {
    margin-bottom: -130rem !important;
  }
}

.mb--140 {
  margin-bottom: -112px !important;
}
@media screen and (min-width: 1024px) {
  .mb--140 {
    margin-bottom: -140rem !important;
  }
}

.mb--150 {
  margin-bottom: -120px !important;
}
@media screen and (min-width: 1024px) {
  .mb--150 {
    margin-bottom: -150rem !important;
  }
}

.mb--160 {
  margin-bottom: -128px !important;
}
@media screen and (min-width: 1024px) {
  .mb--160 {
    margin-bottom: -160rem !important;
  }
}

.mb--170 {
  margin-bottom: -136px !important;
}
@media screen and (min-width: 1024px) {
  .mb--170 {
    margin-bottom: -170rem !important;
  }
}

.mb--180 {
  margin-bottom: -144px !important;
}
@media screen and (min-width: 1024px) {
  .mb--180 {
    margin-bottom: -180rem !important;
  }
}

.mb--190 {
  margin-bottom: -152px !important;
}
@media screen and (min-width: 1024px) {
  .mb--190 {
    margin-bottom: -190rem !important;
  }
}

.mb--200 {
  margin-bottom: -160px !important;
}
@media screen and (min-width: 1024px) {
  .mb--200 {
    margin-bottom: -200rem !important;
  }
}

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

.hp_scrollbarNone {
  /*Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
.hp_scrollbarNone::-webkit-scrollbar {
  display: none;
}/*# sourceMappingURL=style.css.map */