@charset "UTF-8";
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
/*----------------------------------------------------
ホバー
----------------------------------------------------*/
/*----------------------------------------------------
ローディング関連
----------------------------------------------------*/
html {
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation: beforeLoad 0.8s;
          animation: beforeLoad 0.8s;
}
@-webkit-keyframes beforeLoad {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes beforeLoad {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

header .header_inner {
  /* -750 */
}
@media all and (max-width: 750px) {
  header .header_inner {
    -webkit-animation-name: fadeInAnime;
            animation-name: fadeInAnime;
    -webkit-animation-duration: 0.8s;
            animation-duration: 0.8s;
    -webkit-animation-delay: 0;
            animation-delay: 0;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    z-index: -1;
    opacity: 0;
  }
}

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

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*----------------------------------------------------
SP
----------------------------------------------------*/
/* -750 */
@media all and (max-width: 750px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e2e2;
    z-index: 100;
  }
  header .logo {
    position: absolute;
    top: 23px;
    left: 15px;
    width: 104px;
    height: 20px;
    z-index: 110;
  }
  header .logo a {
    display: block;
  }
  header .contactbtn {
    position: fixed;
    width: 60px;
    height: 60px;
    top: 0;
    right: 60px;
    z-index: 90;
  }
  header .contactbtn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
    height: 100%;
  }
  header .contactbtn a img {
    width: 14px;
  }
  header .contactbtn a span {
    font-family: "Libre Baskerville", serif;
    font-size: 10px;
  }
  header .openbtn {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
    z-index: 90;
  }
  header .openbtn img {
    width: 14px;
  }
  header .openbtn span {
    font-family: "Libre Baskerville", serif;
    font-size: 10px;
  }
  header #gNav {
    visibility: hidden;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    overflow-y: scroll;
    opacity: 0;
    z-index: -10;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  header #gNav.panelactive {
    opacity: 1;
    visibility: visible;
    z-index: 80;
  }
  header #gNav .nav_list {
    width: 100%;
    padding: 40px 25px 48px;
  }
  header #gNav .nav_list > li:not(.contact) {
    position: relative;
    border-bottom: 1px solid #e4e4e4;
  }
  header #gNav .nav_list > li:not(.contact) a {
    display: block;
    font-size: 13px;
    font-weight: 400;
    padding: 21px 0;
  }
  header #gNav .nav_list > li:not(.contact) .hasSub {
    padding: 21px 0;
    position: relative;
  }
  header #gNav .nav_list > li:not(.contact) .hasSub span {
    font-size: 13px;
    font-weight: 400;
  }
  header #gNav .nav_list > li:not(.contact) .hasSub::before, header #gNav .nav_list > li:not(.contact) .hasSub::after {
    position: absolute;
    content: "";
    display: block;
    background-color: #343434;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    top: 50%;
    right: 0;
    width: 12px;
    height: 1px;
  }
  header #gNav .nav_list > li:not(.contact) .hasSub::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  header #gNav .nav_list > li:not(.contact) .hasSub.open::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  header #gNav .nav_list > li:not(.contact) .sub {
    display: none;
    padding-bottom: 20px;
  }
  header #gNav .nav_list > li:not(.contact) .sub ul li {
    position: relative;
  }
  header #gNav .nav_list > li:not(.contact) .sub ul li::before {
    position: absolute;
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    top: 44%;
    left: 0;
    border-top: 1px solid #343434;
    border-right: 1px solid #343434;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header #gNav .nav_list > li:not(.contact) .sub ul li a {
    padding: 0.5em 20px;
  }
  header #gNav .nav_list .contact {
    margin-top: 35px;
  }
  header #gNav .nav_list .contact a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    background-color: #d0a635;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.05em;
    padding: 24px;
  }
  header #gNav .nav_list .contact a img {
    width: 15px;
  }
}
/*----------------------------------------------------
PC
----------------------------------------------------*/
/* 751- */
@media all and (min-width: 751px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: #ffffff;
    z-index: 100;
    /*　751px - $w_tb　*/
  }
  header .header_inner {
    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;
    height: 100%;
    padding-left: 40px;
  }
  header .logo {
    width: 169px;
    height: 31px;
  }
  header .logo a {
    display: block;
  }
  header .logo a img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  header .openbtn {
    display: none;
  }
  header #gNav {
    width: calc(100% - 180px);
  }
  header #gNav .nav_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 40px;
  }
  header #gNav .nav_list > li:not(.contact) {
    position: relative;
  }
  header #gNav .nav_list > li:not(.contact) a {
    display: block;
    font-size: 14px;
    font-weight: 300;
    padding: 2em 0;
  }
  header #gNav .nav_list > li:not(.contact) a span {
    position: relative;
  }
  header #gNav .nav_list > li:not(.contact) a span::after {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    bottom: -8px;
    left: 0;
    background-color: #343434;
  }
}
@media (min-width: 751px) and (hover: hover) {
  header #gNav .nav_list > li:not(.contact) a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  header #gNav .nav_list > li:not(.contact) a span::after {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  header #gNav .nav_list > li:not(.contact) a:hover span::after {
    width: 100%;
  }
}
@media all and (min-width: 751px) {
  header #gNav .nav_list > li:not(.contact) .hasSub {
    font-size: 14px;
    font-weight: 300;
    padding: 2em 0;
    cursor: pointer;
  }
  header #gNav .nav_list > li:not(.contact) .hasSub span {
    position: relative;
  }
  header #gNav .nav_list > li:not(.contact) .hasSub span::after {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    bottom: -8px;
    left: 0;
    background-color: #343434;
  }
}
@media (min-width: 751px) and (hover: hover) {
  header #gNav .nav_list > li:not(.contact) .hasSub {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  header #gNav .nav_list > li:not(.contact) .hasSub span::after {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  header #gNav .nav_list > li:not(.contact) .hasSub:hover span::after {
    width: 100%;
  }
}
@media all and (min-width: 751px) {
  header #gNav .nav_list > li:not(.contact) .sub {
    position: absolute;
    left: -30px;
    top: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 30px 20px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  header #gNav .nav_list > li:not(.contact) .sub ul {
    opacity: 0;
    -webkit-transition: 300ms 150ms ease-out;
    transition: 300ms 150ms ease-out;
  }
  header #gNav .nav_list > li:not(.contact) .sub ul li {
    position: relative;
  }
  header #gNav .nav_list > li:not(.contact) .sub ul li::before {
    position: absolute;
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    top: 44%;
    left: 0;
    border-top: 1px solid #343434;
    border-right: 1px solid #343434;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header #gNav .nav_list > li:not(.contact) .sub ul li a {
    white-space: nowrap;
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: #343434;
    padding: 0.5em 0;
    padding-left: 20px;
  }
  header #gNav .nav_list > li:not(.contact) .sub ul li a span {
    position: relative;
  }
  header #gNav .nav_list > li:not(.contact) .sub ul li a span::after {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    bottom: -3px;
    left: 0;
    background-color: #343434;
  }
}
@media (min-width: 751px) and (hover: hover) {
  header #gNav .nav_list > li:not(.contact) .sub ul li a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  header #gNav .nav_list > li:not(.contact) .sub ul li a span::after {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  header #gNav .nav_list > li:not(.contact) .sub ul li a:hover span::after {
    width: 100%;
  }
}
@media all and (min-width: 751px) {
  header #gNav .nav_list > li:not(.contact).hasSubItem:hover .sub {
    visibility: visible;
    opacity: 1;
  }
  header #gNav .nav_list > li:not(.contact).hasSubItem:hover .sub ul {
    opacity: 1;
  }
  header #gNav .nav_list .contact a {
    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;
    gap: 9px;
    width: 170px;
    height: 90px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    background-color: #343434;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    /* 751- */
  }
}
@media (min-width: 751px) and (min-width: 751px) and (hover: hover) {
  header #gNav .nav_list .contact a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  header #gNav .nav_list .contact a:hover {
    opacity: 0.6;
  }
}
@media all and (min-width: 751px) {
  header #gNav .nav_list .contact a img {
    width: 17px;
  }
}
@media screen and (min-width: 751px) and (min-width: 751px) and (max-width: 1099px) {
  header {
    height: 70px;
  }
  header .logo {
    width: 130px;
    height: 22px;
  }
  header #gNav .nav_list {
    gap: 2vw;
  }
  header #gNav .nav_list > li:not(.contact) a,
  header #gNav .nav_list > li:not(.contact) .hasSub {
    font-size: 12px;
  }
  header #gNav .nav_list > li:not(.contact) .sub ul li a {
    font-size: 12px;
  }
  header #gNav .nav_list .contact a {
    width: 140px;
    height: 70px;
    font-size: 12px;
  }
  header #gNav .nav_list .contact a img {
    width: 13px;
  }
}
footer {
  /*----------------------------------------------------
  cta_area
  ----------------------------------------------------*/
  /*----------------------------------------------------
  nav_area
  ----------------------------------------------------*/
  /*----------------------------------------------------
  Copy Right
  ----------------------------------------------------*/
}
footer .cta_area {
  background-color: #f7f6f4;
  padding: 52px 0 58px;
  /* 751- */
}
@media all and (min-width: 751px) {
  footer .cta_area {
    padding: 100px 0 93px;
  }
}
footer .cta_area p {
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  line-height: 2.166;
  margin: 40px 0;
  /* 751- */
}
@media all and (min-width: 751px) {
  footer .cta_area p {
    font-size: 14px;
    line-height: 2.14;
    margin: 54px 0 70px;
  }
}
footer .nav_area {
  position: relative;
  background-color: #ffffff;
  padding-top: 50px;
  /* 751- */
  /* 751- */
}
@media all and (min-width: 751px) {
  footer .nav_area {
    padding-top: 95px;
    padding-bottom: 33px;
  }
}
@media all and (min-width: 751px) {
  footer .nav_area .fx_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 40px;
    /*　751px - $w_tb　*/
  }
}
@media screen and (min-width: 751px) and (min-width: 751px) and (max-width: 1099px) {
  footer .nav_area .fx_wrap {
    gap: 20px;
  }
}
@media all and (min-width: 751px) {
  footer .nav_area .logo_insta_wrap {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  footer .nav_area .nav_list {
    width: 72.8%;
  }
}
footer .nav_area .logo {
  width: 144px;
  margin: 0 auto 38px;
  /* 751- */
  /*　751px - $w_tb　*/
}
@media all and (min-width: 751px) {
  footer .nav_area .logo {
    width: 184px;
    margin: 0 0 54px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1099px) {
  footer .nav_area .logo {
    width: 130px;
  }
}
footer .nav_area .logo a {
  display: block;
}
footer .nav_area .insta {
  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;
  gap: 12px;
  margin-bottom: 38px;
  /* 751- */
  /*　751px - $w_tb　*/
}
@media all and (min-width: 751px) {
  footer .nav_area .insta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 19px;
    margin-bottom: unset;
  }
}
@media screen and (min-width: 751px) and (max-width: 1099px) {
  footer .nav_area .insta {
    gap: 10px;
  }
}
footer .nav_area .insta .insta_btn {
  width: 70px;
  height: 70px;
  /* 751- */
  /*　751px - $w_tb　*/
}
@media all and (min-width: 751px) {
  footer .nav_area .insta .insta_btn {
    width: 80px;
    height: 80px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1099px) {
  footer .nav_area .insta .insta_btn {
    width: 60px;
    height: 60px;
  }
}
footer .nav_area .insta .insta_btn a {
  position: relative;
  display: block;
  border: 1px solid #e4e4e4;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
footer .nav_area .insta .insta_btn a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  z-index: 1;
  /*　751px - $w_tb　*/
}
@media screen and (min-width: 751px) and (max-width: 1099px) {
  footer .nav_area .insta .insta_btn a img {
    width: 18px;
    height: 18px;
  }
}
@media (hover: hover) {
  footer .nav_area .insta .insta_btn a,
  footer .nav_area .insta .insta_btn a img {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  footer .nav_area .insta .insta_btn a:hover {
    border-color: #343434;
  }
  footer .nav_area .insta .insta_btn a:hover img {
    -webkit-transform: translate(-50%, -50%) rotateY(360deg);
            transform: translate(-50%, -50%) rotateY(360deg);
  }
}
footer .nav_area .insta p {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  /* 751- */
  /*　751px - $w_tb　*/
}
@media all and (min-width: 751px) {
  footer .nav_area .insta p {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 751px) and (max-width: 1099px) {
  footer .nav_area .insta p {
    font-size: 14px;
  }
}
footer .nav_area .nav_list {
  /* -750 */
  /* 751- */
  /*　751px - $w_tb　*/
}
@media all and (max-width: 750px) {
  footer .nav_area .nav_list .right_block {
    display: contents;
  }
  footer .nav_area .nav_list .nav_item {
    position: relative;
    border-top: 1px solid #e4e4e4;
  }
  footer .nav_area .nav_list .nav_item:last-child {
    border-bottom: 1px solid #e4e4e4;
  }
  footer .nav_area .nav_list .nav_item a {
    display: block;
    font-weight: 400;
    color: #343434;
    font-size: 13px;
    padding: 21px 0;
  }
  footer .nav_area .nav_list .nav_item .cross {
    position: absolute;
    top: 15px;
    right: -6px;
    width: 30px;
    height: 30px;
    display: inline-block;
    cursor: pointer;
  }
  footer .nav_area .nav_list .nav_item .cross::before, footer .nav_area .nav_list .nav_item .cross::after {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background-color: #343434;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  footer .nav_area .nav_list .nav_item .cross::before {
    width: 14px;
    height: 1px;
  }
  footer .nav_area .nav_list .nav_item .cross::after {
    width: 1px;
    height: 14px;
  }
  footer .nav_area .nav_list .nav_item .cross.open::after {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  footer .nav_area .nav_list .nav_item .sub {
    display: none;
    margin-bottom: 30px;
  }
  footer .nav_area .nav_list .nav_item .sub ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .nav_area .nav_list .nav_item .sub ul li {
    width: 50%;
  }
  footer .nav_area .nav_list .nav_item .sub ul li a {
    padding: 6px 0;
    font-size: 12px;
    font-weight: 300;
  }
}
@media all and (min-width: 751px) {
  footer .nav_area .nav_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px;
  }
  footer .nav_area .nav_list .nav_item a {
    display: block;
    font-weight: 400;
    color: #343434;
    font-size: 14px;
  }
  footer .nav_area .nav_list .nav_item a span {
    position: relative;
  }
  footer .nav_area .nav_list .nav_item a span::after {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #343434;
  }
}
@media (min-width: 751px) and (hover: hover) {
  footer .nav_area .nav_list .nav_item a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  footer .nav_area .nav_list .nav_item a span::after {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  footer .nav_area .nav_list .nav_item a:hover span::after {
    width: 100%;
  }
}
@media all and (min-width: 751px) {
  footer .nav_area .nav_list .nav_item a small {
    font-size: 11px;
  }
  footer .nav_area .nav_list .nav_item .sub {
    display: block;
    margin-top: 16px;
  }
  footer .nav_area .nav_list .nav_item .sub ul li a {
    padding: 7px 0;
    font-size: 14px;
    font-weight: 300;
  }
  footer .nav_area .nav_list .right_block .nav_item:not(.hasSubItem):not(:last-child) > a {
    padding-bottom: 23px;
  }
  footer .nav_area .nav_list .right_block .nav_item.hasSubItem {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1099px) {
  footer .nav_area .nav_list {
    width: 75%;
  }
  footer .nav_area .nav_list .nav_item a {
    font-size: 12px;
  }
  footer .nav_area .nav_list .nav_item .sub {
    margin-top: 12px;
  }
  footer .nav_area .nav_list .nav_item .sub ul li a {
    padding: 5px 0;
    font-size: 12px;
  }
}
footer .copyright {
  text-align: center;
  color: #b2b0a3;
  font-size: 10px;
  padding: 43px 0;
  /* 751- */
}
@media all and (min-width: 751px) {
  footer .copyright {
    padding: 85px 0;
  }
}

/*----------------------------------------------------
共通スタイル
----------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-style: normal;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #343434;
  /* 751- */
}
@media all and (min-width: 751px) {
  body {
    font-size: 14px;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #343434;
}

a img {
  border: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

figure {
  margin: 0;
}

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

ul,
li,
ol,
dl,
dt,
dd,
td {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

input,
label,
select,
textarea {
  vertical-align: middle;
}

button {
  color: unset;
  background-color: unset;
  border: none;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  button {
    cursor: pointer;
  }
}

/*----------------------------------------------------
ヘッダー分余白
----------------------------------------------------*/
main {
  padding-top: 60px;
  /* 751- */
  /*　751px - $w_tb　*/
}
@media all and (min-width: 751px) {
  main {
    padding-top: 90px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1099px) {
  main {
    padding-top: 70px;
  }
}

/*----------------------------------------------------
inner
----------------------------------------------------*/
/* ベース */
.inner {
  padding: 0 15px;
  /* 751- */
  /*　751px - $w_tb　*/
}
@media all and (min-width: 751px) {
  .inner {
    padding: 0 83px;
    max-width: 1366px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 751px) and (max-width: 1099px) {
  .inner {
    padding: 0 4%;
  }
}

.short_inner {
  padding: 0 15px;
  /* 751- */
  /*　751px - $w_tb　*/
}
@media all and (min-width: 751px) {
  .short_inner {
    padding: 0 183px;
    max-width: 1366px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 751px) and (max-width: 1099px) {
  .short_inner {
    padding: 0 4%;
  }
}

.side_inner {
  padding: 0 15px;
  /* 751- */
  /*　751px - $w_tb　*/
}
@media all and (min-width: 751px) {
  .side_inner {
    padding: 0 80px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1099px) {
  .side_inner {
    padding: 0 4%;
  }
}

/*----------------------------------------------------
表示 非表示
----------------------------------------------------*/
.forSP {
  display: block;
  /* 751- */
}
@media all and (min-width: 751px) {
  .forSP {
    display: none;
  }
}

.forPC {
  display: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  .forPC {
    display: block;
  }
}

/*----------------------------------------------------
改行 表示非表示
----------------------------------------------------*/
.brsp {
  display: block;
  /* 751- */
}
@media all and (min-width: 751px) {
  .brsp {
    display: none;
  }
}

.brpc {
  display: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  .brpc {
    display: block;
  }
}

.brtb {
  display: none;
  /*　751px - $w_tb　*/
}
@media screen and (min-width: 751px) and (max-width: 1099px) {
  .brtb {
    display: block;
  }
}

/*----------------------------------------------------
ボタン
----------------------------------------------------*/
.btn {
  width: clamp(230px, 60%, 290px);
  margin: 0 auto;
}
.btn a {
  display: block;
  background-color: #343434;
  border-radius: 30px;
  text-align: center;
  color: #ffffff;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 15px 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  /* 751- */
  /* 751- */
}
@media (min-width: 751px) and (hover: hover) {
  .btn a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .btn a:hover {
    opacity: 0.6;
  }
}
@media all and (min-width: 751px) {
  .btn a {
    font-size: 15px;
    padding: 16px 0 17px;
    border-radius: 40px;
  }
}
.btn.gray a {
  background-color: #959595;
}

.contact_btn {
  width: min(640px, 100%);
  margin: 0 auto;
}
.contact_btn a {
  display: block;
  background-color: #d0a635;
  border-radius: 30px;
  text-align: center;
  color: #ffffff;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 20px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  /* 751- */
  /* 751- */
}
@media (min-width: 751px) and (hover: hover) {
  .contact_btn a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .contact_btn a:hover {
    opacity: 0.6;
  }
}
@media all and (min-width: 751px) {
  .contact_btn a {
    font-size: 19px;
    padding: 26px;
    border-radius: 40px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1200px) {
  .contact_btn a {
    font-size: 1.5vw;
    padding: 20px 10px;
  }
}

.consult_btn {
  width: min(458px, 100%);
  margin: 0 auto;
}
.consult_btn a {
  display: block;
  background-color: #d0a635;
  border-radius: 78px;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.1em;
  padding: 24px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  /* 751- */
  /* 751- */
}
@media (min-width: 751px) and (hover: hover) {
  .consult_btn a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .consult_btn a:hover {
    opacity: 0.6;
  }
}
@media all and (min-width: 751px) {
  .consult_btn a {
    font-size: 19px;
    padding: 30px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1200px) {
  .consult_btn a {
    font-size: 1.5vw;
    padding: 20px 10px;
  }
}
.consult_btn a span {
  display: inline-block;
  padding-right: 35px;
  /* 751- */
  position: relative;
}
@media all and (min-width: 751px) {
  .consult_btn a span {
    padding-right: 50px;
  }
}
.consult_btn a span::before {
  position: absolute;
  content: "";
  background-image: url(../images/common/icon/fukidashi.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22px;
  height: 17px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .consult_btn a span::before {
    width: 29px;
    height: 22px;
  }
}

/*----------------------------------------------------
タイトル
----------------------------------------------------*/
body#pageAbout .page_title,
body#pageFlow .page_title,
body#pageNews .page_title,
body#pageContact .page_title,
body#pageContactCheck .page_title,
body#pageContactThanks .page_title,
body#pagePrivacy .page_title {
  text-align: center;
  margin-top: 34px;
  /* 751- */
}
@media all and (min-width: 751px) {
  body#pageAbout .page_title,
  body#pageFlow .page_title,
  body#pageNews .page_title,
  body#pageContact .page_title,
  body#pageContactCheck .page_title,
  body#pageContactThanks .page_title,
  body#pagePrivacy .page_title {
    margin-top: 47px;
  }
}
body#pageAbout .page_title .en,
body#pageFlow .page_title .en,
body#pageNews .page_title .en,
body#pageContact .page_title .en,
body#pageContactCheck .page_title .en,
body#pageContactThanks .page_title .en,
body#pagePrivacy .page_title .en {
  display: block;
  font-family: "Libre Baskerville", serif;
  color: #959595;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  font-size: 13px;
  margin-bottom: 12px;
  /* 751- */
}
@media all and (min-width: 751px) {
  body#pageAbout .page_title .en,
  body#pageFlow .page_title .en,
  body#pageNews .page_title .en,
  body#pageContact .page_title .en,
  body#pageContactCheck .page_title .en,
  body#pageContactThanks .page_title .en,
  body#pagePrivacy .page_title .en {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
body#pageAbout .page_title .jp,
body#pageFlow .page_title .jp,
body#pageNews .page_title .jp,
body#pageContact .page_title .jp,
body#pageContactCheck .page_title .jp,
body#pageContactThanks .page_title .jp,
body#pagePrivacy .page_title .jp {
  display: block;
  font-family: "Shippori Mincho", serif;
  color: #000000;
  font-weight: 400;
  letter-spacing: 0.25em;
  line-height: 1;
  font-size: 24px;
  /* 751- */
}
@media all and (min-width: 751px) {
  body#pageAbout .page_title .jp,
  body#pageFlow .page_title .jp,
  body#pageNews .page_title .jp,
  body#pageContact .page_title .jp,
  body#pageContactCheck .page_title .jp,
  body#pageContactThanks .page_title .jp,
  body#pagePrivacy .page_title .jp {
    font-size: 36px;
  }
}

.section_title {
  text-align: center;
}
.section_title .en {
  display: block;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  color: #959595;
  line-height: 1;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .section_title .en {
    font-size: 15px;
    letter-spacing: 0.15em;
    margin-bottom: 26px;
  }
}
.section_title .jp {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  display: block;
  font-size: 18px;
  letter-spacing: 0.03em;
  /* 751- */
}
@media all and (min-width: 751px) {
  .section_title .jp {
    font-size: 28px;
    letter-spacing: 0.1em;
  }
}

.area_title {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  margin-bottom: 33px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .area_title {
    font-size: 18px;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
  }
}

/*----------------------------------------------------
カテゴリーリスト
----------------------------------------------------*/
.cat_list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 8px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .cat_list {
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 12px;
  }
}
.cat_list li a {
  display: block;
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  padding: 12px 9px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .cat_list li a {
    padding: 17px 15px;
  }
}
.cat_list li a .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.cat_list li a .wrap .image img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  aspect-ratio: 1;
  width: 57px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .cat_list li a .wrap .image img {
    width: 66px;
  }
}
.cat_list li a .wrap p {
  font-weight: 300;
  font-size: 11px;
  line-height: 1.77;
  /* 751- */
}
@media all and (min-width: 751px) {
  .cat_list li a .wrap p {
    font-size: 13px;
  }
}
@media (hover: hover) {
  .cat_list li a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .cat_list li a:hover {
    border-color: #959595;
  }
}

.allcat_list .group:not(:last-child) {
  margin-bottom: 76px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .allcat_list .group:not(:last-child) {
    margin-bottom: 85px;
  }
}
.allcat_list .group h3 {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.05em;
  margin-bottom: 23px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .allcat_list .group h3 {
    font-size: 18px;
    letter-spacing: 0.1em;
    margin-bottom: 33px;
  }
}

/*----------------------------------------------------
商品一覧
----------------------------------------------------*/
.item_list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  row-gap: 40px;
  -webkit-column-gap: 13px;
     -moz-column-gap: 13px;
          column-gap: 13px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .item_list {
    row-gap: 80px;
  }
}
.item_list li a .image {
  aspect-ratio: 69/44;
  border-radius: 3px;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  /* 751- */
}
@media (min-width: 751px) and (hover: hover) {
  .item_list li a .image {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .item_list li a .image:hover {
    opacity: 0.6;
  }
}
.item_list li a .image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
}
.item_list li a .title {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 14px;
  margin-top: 19px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .item_list li a .title {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.1em;
    margin-top: 22px;
  }
}
.item_list li a .tx {
  font-weight: 300;
  font-size: 12px;
  line-height: 2.16;
  margin-top: 17px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .item_list li a .tx {
    font-size: 14px;
    line-height: 2.14;
    margin-top: 21px;
  }
}

/*----------------------------------------------------
パンくずリスト
----------------------------------------------------*/
.breadcrumb {
  margin-top: 13px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .breadcrumb {
    margin-top: 33px;
  }
}
.breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
  row-gap: 0.2em;
}
.breadcrumb ul li {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: -0.03em;
  /* 751- */
}
@media all and (min-width: 751px) {
  .breadcrumb ul li {
    font-size: 13px;
  }
}
.breadcrumb ul li:not(:first-child)::before {
  content: ">";
  color: #959595;
  font-size: 11px;
  padding-right: 1em;
  /* 751- */
}
@media all and (min-width: 751px) {
  .breadcrumb ul li:not(:first-child)::before {
    font-size: 13px;
  }
}
.breadcrumb ul li a {
  color: #959595;
  text-decoration: underline;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  /* 751- */
}
@media (min-width: 751px) and (hover: hover) {
  .breadcrumb ul li a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .breadcrumb ul li a:hover {
    opacity: 0.6;
  }
}

/*----------------------------------------------------
もっと見るボタン
----------------------------------------------------*/
.more_btn_back {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 400px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), color-stop(60%, #fff));
  background: linear-gradient(rgba(255, 255, 255, 0) 0, #fff 60%);
  margin-top: -300px;
}

.more_btn {
  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;
  gap: 11px;
  cursor: pointer;
  /* 751- */
}
@media all and (min-width: 751px) {
  .more_btn {
    gap: 27px;
  }
}
.more_btn span {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.03em;
  /* 751- */
}
@media all and (min-width: 751px) {
  .more_btn span {
    font-size: 16px;
  }
}
.more_btn img {
  width: 47px;
  height: 47px;
}

/*----------------------------------------------------
おすすめ特集
----------------------------------------------------*/
.recommend_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .recommend_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 18px;
  }
}
.recommend_list li {
  /* 751- */
}
@media all and (min-width: 751px) {
  .recommend_list li {
    width: min((100% - 18px) / 2, 484px);
  }
}
.recommend_list li a {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  /* 751- */
}
@media (min-width: 751px) and (hover: hover) {
  .recommend_list li a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .recommend_list li a:hover {
    opacity: 0.6;
  }
}
.recommend_list li a .image {
  overflow: hidden;
  border-radius: 3px;
}
.recommend_list li a p {
  text-align: center;
  font-weight: 300;
  font-size: 13px;
  margin-top: 10px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .recommend_list li a p {
    font-size: 14px;
  }
}
/*# sourceMappingURL=common.css.map */