@charset "UTF-8";
/* 日本語 charset "utf-8 */
/*company*/
/*--------------------------------------------------------------------------
reset
---------------------------------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, div, span, article, section, nav, header, footer, main, aside, h1, h2, h3, h4, h5, h6, form, fieldset, legend, label, dl, dt, dd, ol, ul, li, p, table, caption, tbody, thead, tfoot, tr, th, td, a, strong, em, mark, b, small, i, img, object, figure, figcaption, canvas, audio, video, iframe {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

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

ol, ul {
  list-style: none;
}

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

:focus {
  outline: 0;
}

a {
  text-decoration: none;
  color: #333333;
  transition: 0.5s;
}
a:hover {
  opacity: 0.8 !important;
  transition: 0.3s;
}

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

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

.clearfix:before {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  display: block;
}

/* ============================================
  common.css                                  
  ============================================ */
html, body {
  font-size: 62.5% !important;
  color: #333333;
  line-height: 1;
  font-family: "Work Sans", "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media screen and (max-width: 767px) {
  .__sp {
    display: block !important;
  }

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

  .__pc {
    display: block !important;
  }
}
@media screen and (max-width: 1023px) {
  .__sptab {
    display: block !important;
  }

  .__pc_only {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .__sptab {
    display: none !important;
  }

  .__pc_only {
    display: block !important;
  }
}
.en {
  font-family: "Work Sans", sans-serif;
}

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

body {
  position: relative;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  min-height: 100vh;
  word-break: break-all;
  background: #fcebe1;
}

@media print, screen and (min-width: 768px) {
  body .wrapper {
    font-size: 1.4rem;
  }
  body .wrapper .inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0;
  }
}
p {
  word-break: break-all;
}

@media print {
  #header, #footer, .breadcrumb {
    display: none;
  }
}
/* wysiwyg */
img.alignright {
  display: block;
  margin: 0 0 0 auto !important;
}

img.alignleft {
  display: block;
  margin: 0 auto 0 0 !important;
}

img.aligncenter {
  display: block;
  margin: 0 auto !important;
}

/* effect01 up from the bottom */
.animation {
  opacity: 0;
  -webkit-transform: translate(0, 40px);
  -ms-transform: translate(0, 40px);
  transform: translate(0, 40px);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}
.animation.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

/* effect02 rotation */
@keyframes rotate-anime {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}
/* effect03 right to left */
.fade-text {
  opacity: 0;
  animation: fade-text 1s ease forwards;
}

@keyframes fade-text {
  0% {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
    transition-duration: 1.5s;
    transition-property: opacity, transform, color;
    transition-timing-function: cubic-bezier(0.55, 0.09, 0.68, 0.53), cubic-bezier(0.65, 0.05, 0.36, 1);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.delay01 {
  animation-delay: 1s;
  display: block;
}

.delay02 {
  animation-delay: 1.2s;
  display: block;
}

.delay03 {
  animation-delay: 1.4s;
  display: block;
}

/* effect04 fadein */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all .8s;
  transition-delay: 300ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/* effect05 fadeleft */
@keyframes fadeleft {
  0% {
    opacity: 0.2;
    transform: translateX(-40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeleft {
  animation-name: fadeleft;
  animation-duration: 800ms;
  opacity: 0;
  transform: translate(-40px, 0);
  transition: all 0.8s;
  transition-delay: 300ms;
}
.fadeleft.cutin {
  opacity: 1;
  transform: translate(0, 0);
}

/* effect06 fadein slowly */
.fadeslow {
  animation-duration: 500ms;
  opacity: 0;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
  transition-delay: 1000ms;
}
.fadeslow.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

/* effect07 slide up */
@keyframes slideup {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
.slide-up {
  animation-name: slideup;
  opacity: 0;
  -webkit-transform: translate(0, 40px);
  -ms-transform: translate(0, 40px);
  transform: translate(0, 40px);
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}
.slide-up.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

@media print, screen and (min-width: 768px) {
  .tel {
    pointer-events: none;
  }
}
/*--------------------------------------------------------------------------
HEADER
---------------------------------------------------------------------------*/
@media only screen and (max-width: 1023px) {
  body #wrapper #header {
    position: fixed;
    width: 100%;
    z-index: 9999;
    background: #fcebe1;
    top: 0;
    left: 0;
  }
  body #wrapper #header .header_inner {
    width: 100%;
    height: 56px;
    top: 0;
    left: 0;
  }
  body #wrapper #header .header_inner .header_sitelogo {
    width: 35%;
    max-width: 104px;
    padding-left: 24px;
    padding-top: 18px;
  }
  body #wrapper #header .header_inner .header_sitelogo a h1 {
    height: 20px;
  }
  body #wrapper #header .header_inner .header_sitelogo a h1 svg {
    width: 100%;
    height: auto;
  }
  body #wrapper #header .header_inner #spnav_btn {
    position: absolute;
    top: 0;
    right: 12px;
    width: 56px;
    height: 56px;
    transition: 0.5s;
    border: 0;
    background: #fcebe1;
  }
  body #wrapper #header .header_inner #spnav_btn::before, body #wrapper #header .header_inner #spnav_btn::after {
    display: block;
    position: absolute;
    width: 32px;
    height: 1px;
    content: '';
    background: black;
    left: 25%;
    transition: .2s;
  }
  body #wrapper #header .header_inner #spnav_btn::before {
    top: 42%;
  }
  body #wrapper #header .header_inner #spnav_btn::after {
    top: 58%;
  }
  body #wrapper #header .header_inner #spnav_btn.open::before, body #wrapper #header .header_inner #spnav_btn.open::after {
    top: 50%;
    transition: .2s;
  }
  body #wrapper #header .header_inner #spnav_btn.open::before {
    transform: rotate(30deg);
  }
  body #wrapper #header .header_inner #spnav_btn.open::after {
    transform: rotate(-30deg);
  }
  body #wrapper #sp_nav {
    display: none;
    opacity: 0;
    padding: 56px 0 88px;
    background: #fcebe1;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    overflow: scroll;
    z-index: 999;
    transition: .2s;
    -webkit-transition: .2s;
  }
  body #wrapper #sp_nav .sp_main_menu {
    padding: 16px 6.4% 0;
  }
}
@media only screen and (max-width: 1023px) and (min-width: 768px) {
  body #wrapper #sp_nav .sp_main_menu {
    padding: 32px 6.4% 0;
  }
}
@media only screen and (max-width: 1023px) {
  body #wrapper #sp_nav .sp_main_menu .menu_list {
    border-bottom: 1px solid #888888;
  }
  body #wrapper #sp_nav .sp_main_menu .menu_list .menu_item:not(:first-of-type) {
    border-top: 1px solid #888888;
  }
  body #wrapper #sp_nav .sp_main_menu .menu_list .menu_item > a {
    font-family: "Work Sans", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    padding: 16px 8px;
    position: relative;
    display: inline-block;
    width: 100%;
  }
  body #wrapper #sp_nav .sp_main_menu .menu_list .menu_item > a.parent {
    position: relative;
  }
  body #wrapper #sp_nav .sp_main_menu .menu_list .menu_item > a.parent::before, body #wrapper #sp_nav .sp_main_menu .menu_list .menu_item > a.parent::after {
    width: 16px;
    height: 1px;
    background: #333333;
    content: '';
    display: block;
    position: absolute;
    right: 6px;
    top: 50%;
  }
  body #wrapper #sp_nav .sp_main_menu .menu_list .menu_item > a.parent::after {
    transform: rotate(90deg);
    transition: .2s;
  }
  body #wrapper #sp_nav .sp_main_menu .menu_list .menu_item > a.parent.is_open::after {
    transform: rotate(0);
    transition: .2s;
  }
  body #wrapper #sp_nav .sp_main_menu .menu_list .menu_item > a:not(.parent) {
    position: relative;
  }
  body #wrapper #sp_nav .sp_main_menu .menu_list .menu_item > a:not(.parent)::after {
    width: 11px;
    height: 11px;
    content: '';
    display: block;
    position: absolute;
    right: 12px;
    top: calc(50% - 5px);
    transform: rotate(90deg);
    border-right: 1px solid #333333;
    border-bottom: 1px solid #333333;
    transform: rotate(-45deg);
  }
  body #wrapper #sp_nav .sp_main_menu .menu_list .menu_item .sub-cat {
    border-top: 1px solid #888888;
  }
  body #wrapper #sp_nav .sp_main_menu .menu_list .menu_item .sub-cat li {
    margin: 24px 8px 24px 16px;
  }
  body #wrapper #sp_nav .sp_main_menu .menu_list .menu_item .sub-cat li > a span {
    display: block;
  }
  body #wrapper #sp_nav .sp_main_menu .menu_list .menu_item .sub-cat li > a span.en {
    font-size: 1.4rem;
    font-weight: bold;
  }
  body #wrapper #sp_nav .sp_main_menu .menu_list .menu_item .sub-cat li > a span.jp {
    font-size: 1.4rem;
    line-height: 1.57143;
  }
  body #wrapper #sp_nav .sp_main_menu .menu_list .menu_item .sub-cat .btn_catalog {
    width: 140px;
    display: inline-block;
    text-align: center;
    margin: 0 8px 16px 16px;
  }
  body #wrapper #sp_nav .sp_main_menu .menu_list .menu_item .sub-cat .btn_catalog a {
    display: block;
    border: 1px solid #333333;
    padding: 10px 0;
    width: 100%;
    font-size: 1.3rem;
    font-weight: bold;
    font-family: "Work Sans", sans-serif;
  }
  body #wrapper #sp_nav .sp_main_menu .menu_list .menu_item .sub-cat .btn_lookbook {
    width: 140px;
    display: inline-block;
    text-align: center;
    margin: 0 8px 32px 16px;
  }
  body #wrapper #sp_nav .sp_main_menu .menu_list .menu_item .sub-cat .btn_lookbook a {
    display: block;
    border: 1px solid #333333;
    padding: 10px 0;
    width: 100%;
    font-size: 1.3rem;
    font-weight: bold;
    font-family: "Work Sans", sans-serif;
  }
  body #wrapper #sp_nav .nav_sns_list {
    display: flex;
    margin-top: 32px;
    padding: 0 6.4%;
  }
  body #wrapper #sp_nav .nav_sns_list li.sns_btn_ico {
    width: 24px;
    height: 24px;
    margin: 0 8px;
  }
  body #wrapper #sp_nav .nav_sns_list li.sns_btn_ico a {
    display: block;
    width: 24px;
    height: 24px;
  }
  body #wrapper #sp_nav .nav_sns_list li.sns_btn_ico.i-ig {
    background: url("ico_ig.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  body #wrapper #sp_nav .nav_sns_list li.sns_btn_ico.i-fb {
    background: url("../svg/ico_fb.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  body #wrapper #sp_nav.open {
    display: block;
    opacity: 1;
  }
  body #wrapper #sp_nav::-webkit-scrollbar {
    display: none;
  }
}
@media print, screen and (min-width: 1024px) {
  body #wrapper #header {
    position: fixed;
    width: 100%;
    background: #fcebe1;
    z-index: 9999;
  }
  body #wrapper #header .header_inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    height: 94px;
    top: 0;
    left: 0;
    display: flex;
    display: -ms-flexbox;
    flex-wrap: nowrap;
  }
  body #wrapper #header .header_inner .header_sitelogo {
    width: 156px;
    padding-left: 32px;
    padding-top: 32px;
  }
  body #wrapper #header .header_inner .header_sitelogo a h1 {
    width: 124px;
    height: 30px;
  }
  body #wrapper #header .header_inner .header_sitelogo a h1 svg {
    width: 100%;
    height: auto;
  }
  body #wrapper #header .header_inner #grobalnav {
    width: calc(100% - 156px);
    padding-left: 20px;
  }
  body #wrapper #header .header_inner #grobalnav .main_menu {
    display: flex;
    display: -ms-flexbox;
    justify-content: flex-end;
    align-items: center;
    height: 94px;
  }
  body #wrapper #header .header_inner #grobalnav .main_menu .menu_list {
    display: flex;
    display: -ms-flexbox;
    justify-content: flex-end;
    -ms-flex-pack: end;
    flex-wrap: wrap;
  }
  body #wrapper #header .header_inner #grobalnav .main_menu .menu_list > li {
    margin: 0 0 0 40px;
    line-height: 94px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1280px) {
  body #wrapper #header .header_inner #grobalnav .main_menu .menu_list > li {
    margin: 0 0 0 20px;
  }
}
@media print, screen and (min-width: 1024px) {
  body #wrapper #header .header_inner #grobalnav .main_menu .menu_list > li > a {
    display: inline-block;
    line-height: 1.1875;
    position: relative;
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1280px) {
  body #wrapper #header .header_inner #grobalnav .main_menu .menu_list > li > a {
    font-size: 1.4rem;
  }
}
@media print, screen and (min-width: 1024px) {
  body #wrapper #header .header_inner #grobalnav .main_menu .menu_list > li > a::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    display: block;
    background: #333333;
    bottom: -8px;
    z-index: 10;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
  }
  body #wrapper #header .header_inner #grobalnav .main_menu .menu_list > li > a.current::after {
    transform: scale(1, 1);
  }
  body #wrapper #header .header_inner #grobalnav .main_menu .menu_list > li.parent .sub-cat {
    width: 100%;
    position: absolute;
    left: 0;
    top: 90px;
    background: #fcebe1;
    padding: 24px 24px 92px;
    display: none;
  }
  body #wrapper #header .header_inner #grobalnav .main_menu .menu_list > li.parent .sub-cat::after {
    width: 100%;
    height: 100%;
    background: #fcebe1;
    content: '';
    display: block;
  }
  body #wrapper #header .header_inner #grobalnav .main_menu .menu_list > li.parent .sub-cat > ul {
    max-width: 954px;
    margin: auto;
    background: #fcebe1;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
  }
  body #wrapper #header .header_inner #grobalnav .main_menu .menu_list > li.parent .sub-cat > ul > li {
    width: calc((100% - 24px) / 2);
    border-bottom: 1px solid #333333;
    line-height: 1;
  }
  body #wrapper #header .header_inner #grobalnav .main_menu .menu_list > li.parent .sub-cat > ul > li a {
    padding: 15px 0 16px;
    display: block;
    position: relative;
  }
  body #wrapper #header .header_inner #grobalnav .main_menu .menu_list > li.parent .sub-cat > ul > li a::after {
    position: absolute;
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-right: 1px solid #333333;
    border-bottom: 1px solid #333333;
    top: calc(50% - 3px);
    right: 8px;
    transform: rotate(-45deg);
  }
  body #wrapper #header .header_inner #grobalnav .main_menu .menu_list > li.parent .sub-cat > ul > li a > span.en {
    font-weight: bold;
    margin-right: 16px;
  }
  body #wrapper #header .header_inner #grobalnav .main_menu .menu_list > li.parent .sub-cat > ul > li:nth-of-type(odd) {
    margin-right: 24px;
  }
  body #wrapper #header .header_inner #grobalnav .main_menu .menu_list > li.parent .sub-cat > ul > li:nth-of-type(-n+2) {
    border-top: 1px solid #333333;
  }
  body #wrapper #header .header_inner #grobalnav .main_menu .menu_list > li.parent .sub-cat > ul .btn_catalog {
    width: 140px;
    display: inline-block;
    line-height: 1;
    text-align: center;
    margin: 0;
    position: absolute;
    right: 150px;
    bottom: -40px;
  }
  body #wrapper #header .header_inner #grobalnav .main_menu .menu_list > li.parent .sub-cat > ul .btn_catalog a {
    display: block;
    border: 1px solid #333333;
    padding: 10px 0;
    width: 100%;
    font-size: 1.3rem;
    font-weight: bold;
    font-family: "Work Sans", sans-serif;
    line-height: 1;
  }
  body #wrapper #header .header_inner #grobalnav .main_menu .menu_list > li.parent .sub-cat > ul .btn_lookbook {
    width: 140px;
    display: inline-block;
    line-height: 1;
    text-align: center;
    margin: 0;
    position: absolute;
    right: 0;
    bottom: -40px;
  }
  body #wrapper #header .header_inner #grobalnav .main_menu .menu_list > li.parent .sub-cat > ul .btn_lookbook a {
    display: block;
    border: 1px solid #333333;
    padding: 10px 0;
    width: 100%;
    font-size: 1.3rem;
    font-weight: bold;
    font-family: "Work Sans", sans-serif;
    line-height: 1;
  }
  body #wrapper #header .header_inner #grobalnav .main_menu .menu_list > li.parent.menu_brand .sub-cat > ul > li a > span.en {
    display: block;
  }
  body #wrapper #header .header_inner #grobalnav .main_menu .menu_list > li.parent.menu_brand .sub-cat > ul > li a > span.jp {
    display: block;
    margin-top: 6px;
  }
  body #wrapper #header .header_inner #grobalnav .sns_list {
    display: flex;
    display: -ms-flexbox;
    margin: 0;
    padding-right: 40px;
    padding-left: 40px;
  }
  body #wrapper #header .header_inner #grobalnav .sns_list .sns_btn_ico {
    width: 20px;
    height: 20px;
  }
  body #wrapper #header .header_inner #grobalnav .sns_list .sns_btn_ico:not(:first-of-type) {
    margin: 0 0 0 16px;
  }
  body #wrapper #header .header_inner #grobalnav .sns_list .sns_btn_ico > a {
    display: block;
    width: 20px;
    height: 20px;
  }
  body #wrapper #header .header_inner #grobalnav .sns_list .sns_btn_ico.i-ig {
    background: url("../svg/ico_ig.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  body #wrapper #header .header_inner #grobalnav .sns_list .sns_btn_ico.i-fb {
    background: url("../svg/ico_fb.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  body #wrapper #sp_nav {
    display: none;
  }
}

/*--------------------------------------------------------------------------
BREADCRUMB
---------------------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
  body #main .breadcrumb {
    margin: 106px auto 30px;
    padding: 0 6.4%;
  }
  body #main .breadcrumb .inner {
    list-style: none;
  }
  body #main .breadcrumb .inner li {
    font-size: 1.2rem;
    line-height: 1.5;
    display: inline;
  }
  body #main .breadcrumb .inner li a {
    position: relative;
    display: inline-block;
    margin-right: 16px;
  }
  body #main .breadcrumb .inner li a::after {
    content: '';
    position: absolute;
    display: block;
    width: 3px;
    height: 3px;
    border-bottom: 1px solid #888888;
    border-right: 1px solid #888888;
    bottom: 3px;
    right: -10px;
    transform: rotate(315deg);
  }
  body #main .breadcrumb .inner li:first-of-type a {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: url("home.svg") no-repeat;
    background-size: contain;
  }
}
@media print, screen and (min-width: 768px) {
  body #main .breadcrumb {
    margin: 84px auto 24px;
    padding: 0;
  }
  body #main .breadcrumb .inner {
    list-style: none;
    padding: 0 24px;
  }
  body #main .breadcrumb .inner li {
    font-size: 1.2rem;
    display: inline;
  }
  body #main .breadcrumb .inner li a {
    position: relative;
    display: inline-block;
    margin-right: 16px;
  }
  body #main .breadcrumb .inner li a::after {
    content: '';
    position: absolute;
    display: block;
    width: 3px;
    height: 3px;
    border-bottom: 1px solid #888888;
    border-right: 1px solid #888888;
    bottom: 3px;
    right: -10px;
    transform: rotate(315deg);
  }
  body #main .breadcrumb .inner li:first-of-type a {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: url("home.svg") no-repeat;
    background-size: contain;
  }
}

/*--------------------------------------------------------------------------
sticky banner
---------------------------------------------------------------------------*/
@media only screen and (max-width: 1023px) {
  body #sticky_btn {
    position: fixed;
    z-index: 100;
    bottom: 0;
    right: 0;
    background: #99bbb3;
    width: 100%;
    padding: 14px 0;
    display: none;
  }
  body #sticky_btn .btn {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body #sticky_btn .btn li {
    width: 33.06667%;
  }
  body #sticky_btn .btn li a {
    display: block;
    width: 100%;
    color: #99bbb3;
    background: white;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    padding: 10px 0;
  }
  body #sticky_btn .btn li:not(:first-of-type) {
    margin-left: 16px;
  }
  body #sticky_btn.show {
    display: block;
    bottom: 1px;
  }
}
@media print, screen and (min-width: 1024px) {
  body #sticky_btn {
    position: fixed;
    z-index: 100;
    bottom: 1px;
    right: 24px;
    background: #99bbb3;
    width: 269px;
    padding: 13px 26px 16px;
  }
  body #sticky_btn > p {
    color: white;
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 14px;
  }
  body #sticky_btn .btn {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body #sticky_btn .btn li {
    width: 104px;
  }
  body #sticky_btn .btn li a {
    display: block;
    width: 100%;
    color: #99bbb3;
    background: white;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    padding: 10px 0;
  }
  body #sticky_btn .btn li:not(:first-of-type) {
    margin-left: 8px;
  }
  body #sticky_btn.show {
    bottom: 1px;
  }
}

/*--------------------------------------------------------------------------
FOOTER
---------------------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
  #footer {
    width: 100%;
    padding-bottom: 24px;
  }
  #footer .footer_inner {
    padding: 8px 6.4% 0;
    position: relative;
  }
  #footer .footer_inner .footer_nav .footer_nav_company h2, #footer .footer_inner .footer_nav .footer_nav_information h2 {
    font-family: "Work Sans", sans-serif;
    font-size: 1.6rem;
    line-height: 1;
    padding: 16px 0;
    position: relative;
    border-bottom: 1px solid #888888;
  }
  #footer .footer_inner .footer_nav .footer_nav_company h2::before, #footer .footer_inner .footer_nav .footer_nav_company h2::after, #footer .footer_inner .footer_nav .footer_nav_information h2::before, #footer .footer_inner .footer_nav .footer_nav_information h2::after {
    width: 16px;
    height: 1px;
    background: #333333;
    content: '';
    display: block;
    position: absolute;
    right: 8px;
    top: 50%;
  }
  #footer .footer_inner .footer_nav .footer_nav_company h2::before, #footer .footer_inner .footer_nav .footer_nav_information h2::before {
    right: 8px;
  }
  #footer .footer_inner .footer_nav .footer_nav_company h2::after, #footer .footer_inner .footer_nav .footer_nav_information h2::after {
    transform: rotate(90deg);
    transition: .2s;
  }
  #footer .footer_inner .footer_nav .footer_nav_company h2.is_open::after, #footer .footer_inner .footer_nav .footer_nav_information h2.is_open::after {
    transform: rotate(0);
    transition: .2s;
  }
  #footer .footer_inner .footer_nav .footer_nav_company ul, #footer .footer_inner .footer_nav .footer_nav_information ul {
    padding: 24px 16px;
    display: none;
  }
  #footer .footer_inner .footer_nav .footer_nav_company ul li:not(:first-of-type), #footer .footer_inner .footer_nav .footer_nav_information ul li:not(:first-of-type) {
    margin-top: 24px;
  }
  #footer .footer_inner .footer_nav .footer_nav_company ul li a, #footer .footer_inner .footer_nav .footer_nav_information ul li a {
    font-size: 1.4rem;
    padding-left: 7px;
    position: relative;
  }
  #footer .footer_inner .footer_nav .footer_nav_company ul li a::before, #footer .footer_inner .footer_nav .footer_nav_information ul li a::before {
    display: block;
    width: 3px;
    height: 1px;
    content: '';
    position: absolute;
    background: #333333;
    left: 0;
    top: 50%;
  }
  #footer .footer_inner .footer_sns {
    padding-top: 16px;
  }
  #footer .footer_inner .footer_sns h2 {
    font-family: "Work Sans", sans-serif;
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 16px;
  }
  #footer .footer_inner .footer_sns .sns_list {
    display: flex;
  }
  #footer .footer_inner .footer_sns .sns_list li.sns_btn_ico {
    width: 24px;
    height: 24px;
    margin: 0 8px;
  }
  #footer .footer_inner .footer_sns .sns_list li.sns_btn_ico a {
    display: block;
    width: 24px;
    height: 24px;
  }
  #footer .footer_inner .footer_sns .sns_list li.sns_btn_ico.i-ig {
    background: url("ico_ig.svg");
    background-size: contain;
  }
  #footer .footer_inner .footer_sns .sns_list li.sns_btn_ico.i-fb {
    background: url("../svg/ico_fb.svg");
    background-size: contain;
  }
  #footer .copyright {
    margin-top: 40px;
    text-align: center;
  }
  #footer .copyright .copyright_inner small {
    font-size: 1.1rem;
    font-family: "Work Sans", sans-serif;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #footer {
    width: 100%;
    padding-bottom: 24px;
  }
  #footer .footer_inner {
    padding: 8px 24px 0;
    position: relative;
  }
  #footer .footer_inner .footer_nav .footer_nav_company h2, #footer .footer_inner .footer_nav .footer_nav_information h2 {
    font-family: "Work Sans", sans-serif;
    font-size: 1.6rem;
    line-height: 1;
    padding: 16px 0;
    position: relative;
    border-bottom: 1px solid #888888;
  }
  #footer .footer_inner .footer_nav .footer_nav_company h2::before, #footer .footer_inner .footer_nav .footer_nav_company h2::after, #footer .footer_inner .footer_nav .footer_nav_information h2::before, #footer .footer_inner .footer_nav .footer_nav_information h2::after {
    width: 16px;
    height: 1px;
    background: #333333;
    content: '';
    display: block;
    position: absolute;
    right: 8px;
    top: 50%;
  }
  #footer .footer_inner .footer_nav .footer_nav_company h2::before, #footer .footer_inner .footer_nav .footer_nav_information h2::before {
    right: 8px;
  }
  #footer .footer_inner .footer_nav .footer_nav_company h2::after, #footer .footer_inner .footer_nav .footer_nav_information h2::after {
    transform: rotate(90deg);
    transition: .2s;
  }
  #footer .footer_inner .footer_nav .footer_nav_company h2.is_open::after, #footer .footer_inner .footer_nav .footer_nav_information h2.is_open::after {
    transform: rotate(0);
    transition: .2s;
  }
  #footer .footer_inner .footer_nav .footer_nav_company ul, #footer .footer_inner .footer_nav .footer_nav_information ul {
    padding: 24px 16px;
    display: none;
  }
  #footer .footer_inner .footer_nav .footer_nav_company ul li:not(:first-of-type), #footer .footer_inner .footer_nav .footer_nav_information ul li:not(:first-of-type) {
    margin-top: 24px;
  }
  #footer .footer_inner .footer_nav .footer_nav_company ul li a, #footer .footer_inner .footer_nav .footer_nav_information ul li a {
    font-size: 1.4rem;
    padding-left: 7px;
    position: relative;
  }
  #footer .footer_inner .footer_nav .footer_nav_company ul li a::before, #footer .footer_inner .footer_nav .footer_nav_information ul li a::before {
    display: block;
    width: 3px;
    height: 1px;
    content: '';
    position: absolute;
    background: #333333;
    left: 0;
    top: 50%;
  }
  #footer .footer_inner .footer_sns {
    padding-top: 16px;
  }
  #footer .footer_inner .footer_sns h2 {
    font-family: "Work Sans", sans-serif;
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 16px;
  }
  #footer .footer_inner .footer_sns .sns_list {
    display: flex;
  }
  #footer .footer_inner .footer_sns .sns_list li.sns_btn_ico {
    width: 24px;
    height: 24px;
    margin: 0 8px;
  }
  #footer .footer_inner .footer_sns .sns_list li.sns_btn_ico a {
    display: block;
    width: 24px;
    height: 24px;
  }
  #footer .footer_inner .footer_sns .sns_list li.sns_btn_ico.i-ig {
    background: url("ico_ig.svg");
    background-size: contain;
  }
  #footer .footer_inner .footer_sns .sns_list li.sns_btn_ico.i-fb {
    background: url("../svg/ico_fb.svg");
    background-size: contain;
  }
  #footer .copyright {
    margin-top: 40px;
    text-align: center;
  }
  #footer .copyright .copyright_inner small {
    font-size: 1.1rem;
    font-family: "Work Sans", sans-serif;
  }
}
@media print, screen and (min-width: 1024px) {
  #footer {
    width: 100%;
    padding-bottom: 24px;
  }
  #footer .footer_inner {
    max-width: 1240px;
    width: 100%;
    margin: auto;
    padding: 104px 24px 0;
    display: flex;
    justify-content: space-between;
  }
  #footer .footer_inner .footer_nav {
    display: flex;
    /*width: calc(100% - 100px);*/
  }
  #footer .footer_inner .footer_nav .footer_nav_company, #footer .footer_inner .footer_nav .footer_nav_information {
    padding-right: 3.5vw;
  }
  #footer .footer_inner .footer_nav .footer_nav_company h2, #footer .footer_inner .footer_nav .footer_nav_information h2 {
    font-family: "Work Sans", sans-serif;
    font-size: 1.6rem;
    line-height: 1;
    padding: 0;
    position: relative;
    pointer-events: none;
  }
  #footer .footer_inner .footer_nav .footer_nav_company ul, #footer .footer_inner .footer_nav .footer_nav_information ul {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  #footer .footer_inner .footer_nav .footer_nav_company ul li, #footer .footer_inner .footer_nav .footer_nav_information ul li {
    display: inline-block;
    margin-bottom: 10px;
  }
  #footer .footer_inner .footer_nav .footer_nav_company ul li:not(:last-of-type), #footer .footer_inner .footer_nav .footer_nav_information ul li:not(:last-of-type) {
    margin-right: 16px;
  }
  #footer .footer_inner .footer_nav .footer_nav_company ul li a, #footer .footer_inner .footer_nav .footer_nav_information ul li a {
    font-size: 1.3rem;
    padding-left: 7px;
    position: relative;
  }
  #footer .footer_inner .footer_nav .footer_nav_company ul li a::before, #footer .footer_inner .footer_nav .footer_nav_information ul li a::before {
    display: block;
    width: 3px;
    height: 1px;
    content: '';
    position: absolute;
    background: #333333;
    left: 0;
    top: 50%;
  }
  #footer .footer_inner .footer_nav .footer_nav_company {
    min-width: 300px;
  }
  #footer .footer_inner .footer_nav .footer_nav_information {
    display: flex;
    flex-wrap: wrap;
  }
  #footer .footer_inner .footer_sns {
    width: 100px;
    padding-right: 22px;
  }
  #footer .footer_inner .footer_sns h2 {
    font-family: "Work Sans", sans-serif;
    font-size: 1.6rem;
    line-height: 1;
    padding: 0;
    position: relative;
  }
  #footer .footer_inner .footer_sns .sns_list {
    margin-top: 14px;
    display: flex;
  }
  #footer .footer_inner .footer_sns .sns_list li.sns_btn_ico {
    width: 16px;
    height: 16px;
  }
  #footer .footer_inner .footer_sns .sns_list li.sns_btn_ico:not(:first-of-type) {
    margin: 0 0 0 12px;
  }
  #footer .footer_inner .footer_sns .sns_list li.sns_btn_ico a {
    display: block;
    width: 16px;
    height: 16px;
  }
  #footer .footer_inner .footer_sns .sns_list li.sns_btn_ico.i-ig {
    background: url("../svg/ico_ig.svg");
    background-size: contain;
  }
  #footer .footer_inner .footer_sns .sns_list li.sns_btn_ico.i-fb {
    background: url("../svg/ico_fb.svg");
    background-size: contain;
  }
  #footer .copyright {
    margin-top: 70px;
  }
  #footer .copyright .copyright_inner {
    max-width: 1240px;
    width: 100%;
    margin: auto;
    padding: 0 24px;
  }
  #footer .copyright .copyright_inner small {
    font-size: 1.2rem;
    font-family: "Work Sans", sans-serif;
  }
}

/*--------------------------------------------------------------------------
IE ALERT
---------------------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
  body #wrapper .ie_alert {
    position: fixed;
    width: 100%;
    z-index: 99;
    background: #333333;
    bottom: 0;
    left: 0;
    padding: 20px 20px 30px;
  }
  body #wrapper .ie_alert > p {
    font-size: 1.4rem;
    text-align: center;
    color: white;
    line-height: 1.6;
  }
}
@media print, screen and (min-width: 768px) {
  body #wrapper .ie_alert {
    position: fixed;
    width: 100%;
    z-index: 99;
    background: #333333;
    bottom: 0;
    left: 0;
    padding: 20px 20px 30px;
  }
  body #wrapper .ie_alert > p {
    font-size: 1.4rem;
    text-align: center;
    color: white;
    line-height: 1.6;
  }
}

/*2505_ヘッダー改修_forcer*/
.main_menu li {
	font-size: 1.6rem;
}

body #wrapper #header {
	box-shadow: 0px 0px 15px -5px #777777;
	/* すりガラス加工
	background: none;
	backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
	*/
}

.mega-sp ul li {
  font-size: 1.4rem;
}


/*調整CSS*/

.footer_partner .partner_list .is_kawasaki img {
  width: 40px;
}
.footer_link {
  display: flex;
  gap: 10px;
}
.footer_partner h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
body #wrapper #header .header_inner #grobalnav .main_menu .menu_list > li > a {
	font-size: 16px;
}


@media print, screen and (min-width: 1024px) {
  #footer .footer_inner .footer_nav .footer_nav_information {
      flex-wrap: wrap;
      display: block;
  }
}

@media print, screen and (min-width: 1024px) {
  #footer .footer_inner .footer_sns .sns_list li.sns_btn_ico.i-ig {
      background: url(ico_ig.svg);
      background-size: contain;
  }
  body #wrapper #header .header_inner #grobalnav .sns_list .sns_btn_ico.i-ig {
    background: url(ico_ig.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }
  body #wrapper #sp_nav .nav_sns_list li.sns_btn_ico.i-ig {
    background: url(ico_ig.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }
}



@media only screen and (max-width: 1023px) {
  .footer_partner {
    padding-top: 16px;
  }
}

/*250612__フッターにロゴ追加*/
.footer_partner .partner_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}