@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@200;300;400;700;900&family=Noto+Serif+JP:wght@200;300;400;600;700&display=swap");
.black01 {
  color: black;
}

.red01 {
  color: red;
}

.blue01 {
  color: #062976;
}

.blue02 {
  color: #0068b7;
}

.blue03 {
  color: #4d96cd;
}

.yellow {
  color: #ffbf35;
}

.yellow {
  color: #ffeb68;
}

.orange {
  color: #f08404;
}

.orange {
  color: #f39800;
}

.green {
  color: #12a73b;
}

.gray {
  color: #848484;
}

.gray {
  color: #d6d6d6;
}

/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]:-webkit-search-decoration,
input[type=button]:-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  width: 100%;
  position: relative;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "Meiryo UI", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  color: #242424;
  overflow-x: hidden;
}
@media screen and (max-width: 640px) {
  body {
    font-size: 1.4rem;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.5;
}
a:active, a:focus {
  outline: none;
}

img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

strong {
  font-size: 120%;
}

small {
  font-size: 80%;
}

/**
 * hr
***************************/
hr {
  border-width: 1px 0 0 0;
  /* 太さ */
  border-color: #c5c5c5;
  /* 色 */
}
hr.dotted {
  border-style: dotted;
  /* 種類 */
}
hr.dashed {
  border-style: dashed;
  /* 種類 */
}
hr.double {
  border-style: double;
  /* 種類 */
}
hr.horizon {
  height: 1px;
  background-color: #0068b7;
  border: none;
  color: #0068b7;
  margin: 80px 0;
}
@media screen and (max-width: 640px) {
  hr.horizon {
    margin: 40px 0;
  }
}

/**
 * responsive
***************************/
.sp {
  display: none;
}
@media screen and (max-width: 640px) {
  .sp {
    display: block;
  }
}

.l-header {
  display: block;
  width: 100%;
  height: 128px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 640px) {
  .l-header {
    position: static;
    height: 88px;
  }
}
@media screen and (max-width: 640px) {
  .l-header::before {
    content: " ";
    display: block;
    width: 0;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: -1;
  }
}
@media screen and (max-width: 640px) {
  .l-header .c-news_block {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
  }
}
.l-header__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  background-color: white;
  padding: 0 2.5%;
}
@media screen and (max-width: 640px) {
  .l-header__wrap {
    display: block;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
  }
}
.l-header--logo {
  display: block;
  padding: 30px 0;
}
@media screen and (max-width: 640px) {
  .l-header--logo {
    max-width: 124px !important;
    margin: 0 auto;
    padding: 15px;
  }
}
.l-header--logo img {
  -o-object-fit: contain;
     object-fit: contain;
}
.l-header--nav {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 675px;
          flex: 0 1 675px;
  margin-right: -10px;
  margin-left: 20px;
}
@media screen and (max-width: 640px) {
  .l-header--nav {
    margin-right: 0;
    margin-left: 0;
  }
}
.l-header--nav_second {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .l-header--nav_second {
    width: 100%;
    position: absolute;
    top: 50px;
    left: 0;
  }
}
.l-header--nav_second::after {
  content: " ";
  display: block;
  width: 100%;
  height: 48px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f6f6f6;
  z-index: -1;
}

.l-main {
  background-color: #f4f4f4;
  padding: 120px 0 70px;
}
@media screen and (max-width: 640px) {
  .l-main {
    padding: 80px 0 45px;
  }
}

.l-footer {
  border-top: 1px solid #d6d6d6;
  margin: 80px 0 0 0;
  padding: 30px 0 80px 0;
}
@media screen and (max-width: 640px) {
  .l-footer {
    margin: 50px 0 0 0;
    padding: 30px 0;
  }
}
.l-footer__wrap {
  width: 95%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
          align-items: flex-end;
  margin-left: auto;
  margin-right: auto;
}
.l-footer__wrap--content {
  padding: 0 0 0 5px;
}
.l-footer__wrap--content img {
  -o-object-fit: contain;
     object-fit: contain;
}

.copylight {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 300;
  text-align: left;
  margin: 20px 0 0 0;
}

.c-block__anchor {
  width: 90%;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 640px) {
  .c-block__anchor {
    margin-bottom: 30px;
  }
}
.c-block__anchor--item {
  font-size: 1.5rem;
  font-weight: 200;
  color: #242424;
}
@media screen and (max-width: 640px) {
  .c-block__anchor--item {
    font-size: 1.2rem;
    font-weight: 500;
  }
}
.c-block__anchor .c-row {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}
.c-block__anchor .c-column:not(:first-child) {
  margin: 0 0 0 30px;
  padding: 0 0 0 30px;
  border-left: 1px solid black;
}
@media screen and (max-width: 640px) {
  .c-block__anchor .c-column:not(:first-child) {
    margin: 0 0 0 17px;
    padding: 0 0 0 17px;
  }
}
.c-block__column {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 640px) {
  .c-block__column {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
            align-items: flex-start;
  }
}
.c-block__column--img {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 200px;
          flex: 1 0 200px;
}
@media screen and (max-width: 640px) {
  .c-block__column--img {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 112px;
            flex: 1 0 112px;
  }
}
.c-block__column--text {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 100%;
          flex: 0 1 100%;
  line-height: 1.9;
  text-align: justify;
}
@media screen and (max-width: 640px) {
  .c-block__column--text {
    font-size: 1.2rem;
    line-height: 1.75;
    padding: 0 0 0 20px;
  }
}
.c-block__float::after {
  content: " ";
  display: block;
  clear: both;
}
@media screen and (max-width: 640px) {
  .c-block__float {
    padding: 0 0 0 5%;
  }
}
.c-block__float:not(:first-child) {
  margin: 50px 0 0 0;
}
@media screen and (max-width: 640px) {
  .c-block__float:not(:first-child) {
    margin: 40px 0 0 0;
  }
}
@media screen and (max-width: 640px) {
  .c-block__float--wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    width: 100%;
    margin: 0 0 20px 0;
  }
}
.c-block__float--title {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 120px;
          flex: 1 0 120px;
  font-weight: 600;
  margin-bottom: 25px;
}
.c-block__float--img {
  width: 240px;
  height: 238px;
  float: right;
  margin: 0 0 0 40px;
}
@media screen and (max-width: 640px) {
  .c-block__float--img {
    float: unset;
    width: 250px;
    height: 160px;
    margin: 0;
  }
}
.c-block__float--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-block__float--text {
  line-height: 1.9;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .c-block__float--text {
    line-height: 1.5;
    padding: 0 5% 0 0;
  }
}
.c-block__float--use {
  display: inline-block;
  color: #5b5b5b;
  margin: 0 0 15px 0;
  padding: 4px 12px;
  background-color: #e6e6e6;
}
@media screen and (max-width: 640px) {
  .c-block__float--use_list {
    padding: 0 5% 0 0;
  }
}
.c-block__float--use_list .i-triangle {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin: 0 30px 10px 0;
}
.c-block__about {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .c-block__about {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  .c-block__about--detail {
    margin: 0 0 20px 0;
  }
}
.c-block__about--title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #c2c2c2;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 640px) {
  .c-block__about--title {
    margin: 0 0 15px 0;
  }
}
.c-block__about--text {
  line-height: 1.76;
}
.c-block__about--map {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 427px;
          flex: 0 1 427px;
  margin-left: 10px;
}
.c-block__about--map .iframe {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
  padding-top: 50%;
}
.c-block__about--map .iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 640px) {
  .c-block__about--map .iframe {
    padding-top: 56.25%;
  }
}

.breadcrumbs {
  width: 95%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0 45px 0;
}
@media screen and (max-width: 640px) {
  .breadcrumbs {
    width: 100%;
    font-size: 1rem;
    padding: 0 15px 32px;
  }
}
.breadcrumbs li::after {
  content: ">";
  color: #7b7b7b;
  padding: 0 3px 0 0;
}
.breadcrumbs li:first-child {
  color: #7b7b7b;
}
.breadcrumbs li:last-child::after {
  content: "";
}
.breadcrumbs li a {
  font-size: 1.2rem;
  color: #7b7b7b;
}
.breadcrumbs li a:hover {
  opacity: 0.5;
}

.wrapper {
  width: 90%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.c-container {
  width: 90%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.c-container__inner {
  width: 100%;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

body {
  font-size: 1.3rem;
  font-weight: 200;
  line-height: 1.6;
}
@media screen and (max-width: 640px) {
  body {
    padding-top: 0;
  }
}

.l-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: white;
  padding: 0 2.5%;
}
@media screen and (max-width: 640px) {
  .l-header {
    height: 50px;
  }
}

.l-header__wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 80px;
          flex: 1 0 80px;
  padding: 0;
}

.c-Hnav--col.sns {
  position: relative;
}
@media screen and (max-width: 640px) {
  .c-Hnav--col.sns::before {
    content: " ";
    display: block;
    width: 1px;
    height: 19px;
    position: absolute;
    top: 75%;
    left: 0;
    background-color: black;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media screen and (max-width: 640px) {
  .c-Hnav .c-Hnav--list {
    padding-bottom: 0;
  }
}
.c-Hnav .l-footer__wrap {
  width: 100%;
  padding: 0 20px;
}
@media screen and (max-width: 640px) {
  .c-Hnav .c-Fnav--item {
    position: relative;
    top: 5px;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
  }
}

.l-footer {
  border: none;
  margin: 0;
  padding: 20px 0;
}

.c-Fnav--item {
  font-size: 1.2rem;
  font-weight: 600;
}
@media screen and (max-width: 640px) {
  .c-Fnav--item {
    margin: 0 15px 0 0;
  }
}

.copylight {
  margin: 0;
  line-height: 1;
}

.js-drawer {
  display: none;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (max-width: 640px) {
  .js-drawer {
    display: block;
    width: 30px;
    height: 30px;
    position: fixed;
    top: 11px;
    left: 10px;
    z-index: 11;
  }
}
.js-drawer--line {
  display: block;
  width: 22px;
  height: 1px;
  position: absolute;
  top: 7px;
  left: 4px;
  background-color: black;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.js-drawer--line::before, .js-drawer--line::after {
  content: " ";
  position: absolute;
  display: block;
  width: 22px;
  height: 1px;
  background-color: black;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.js-drawer--line::before {
  top: 7px;
  left: 0;
}
.js-drawer--line::after {
  top: 14px;
  left: 0;
}

@media screen and (max-width: 640px) {
  body.is-open .l-header::before {
    width: 100%;
    opacity: 1;
    z-index: 3;
  }
}
body.is-open .js-drawer {
  top: 10px;
  right: 10px;
  left: auto;
}
body.is-open .js-drawer--line {
  width: 25px;
  top: 15px;
  left: 3px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: white;
}
body.is-open .js-drawer--line::before, body.is-open .js-drawer--line::after {
  width: 25px;
  top: 0px;
  background-color: white;
}
body.is-open .js-drawer--line::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 0;
}
body.is-open .js-drawer--line::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (max-width: 640px) {
  body.is-open .c-Hnav {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

#mailformpro .mailform input,
#mailformpro .mailform textarea {
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  padding: 6px;
  border: 1px solid #bbbbbb;
}
#mailformpro .mailform input::-webkit-input-placeholder {
  opacity: 0.5;
}
#mailformpro .mailform input::-moz-placeholder {
  opacity: 0.5;
}
#mailformpro .mailform input:-ms-input-placeholder {
  opacity: 0.5;
}
#mailformpro .mailform input::placeholder {
  opacity: 0.5;
}
#mailformpro .mailform input[type=checkbox] {
  max-width: 13px;
}
#mailformpro .mailform input[type=radio] {
  max-width: 13px;
}
#mailformpro .mailform input[type=file] {
  font-size: 12px;
  padding: 0;
  border: none;
}
#mailformpro .mailform label {
  white-space: unset;
  margin: 0 5px 5px 0;
  border-radius: 0;
}
#mailformpro .mailform select {
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}
#mailformpro .mailform select::-ms-expand {
  display: none;
}
#mailformpro .mailform .mfp {
  float: none;
  width: auto;
  border-top: none;
}
#mailformpro .mailform .mfp_achroma {
  background-color: transparent;
}
#mailformpro .mailform .mfp_element_text, #mailformpro .mailform .mfp_element_number, #mailformpro .mailform .mfp_element_select-one, #mailformpro .mailform .mfp_element_email, #mailformpro .mailform .mfp_element_tel, #mailformpro .mailform .mfp_element_textarea, #mailformpro .mailform .mfp_element_date, #mailformpro .mailform .mfp_element_password {
  box-shadow: none;
  margin: 0;
}
#mailformpro .mailform .mfp_colored {
  background-color: transparent;
}
#mailformpro .mailform .mfp_element_all {
  max-width: unset;
}
#mailformpro .mailform .mfp_err {
  margin: 0px 0px 0px 0px;
  padding: 5px 0px 5px 15px;
  line-height: 1;
  background-position: 0px 5px;
  background-size: 10px auto;
}
#mailformpro .mailform .mfp_not_checked {
  padding: 0;
  border: none;
}
#mailformpro .mailform .mfp_checked {
  padding: 0;
  box-shadow: none;
  background-color: transparent;
  border: none;
}
#mailformpro .mailform .mfp_element_file {
  font-size: inherit;
  padding: 0;
  border: none;
  border-radius: 0px;
  box-shadow: none;
  background: transparent;
}
#mailformpro .mailform .mfp .must {
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  margin: 0 10px 0 0;
  padding: 5px 12px 7px;
  float: none;
  text-shadow: none;
  box-shadow: none;
  background-image: none;
  background-color: #3db032;
  border: none;
}
#mailformpro .mfp_element_submit,
#mailformpro .mfp_element_reset,
#mailformpro .mfp_element_button,
#mailformpro button.mfp_next,
#mailformpro button.mfp_prev {
  border: unset;
  background: unset;
  text-shadow: unset;
  font-size: 14px;
  outline: none;
  border-radius: unset;
  padding: 0;
}
#mailformpro .mfp_element_submit:hover,
#mailformpro .mfp_element_reset:hover,
#mailformpro .mfp_element_button:hover,
#mailformpro button.mfp_next:hover,
#mailformpro button.mfp_prev:hover {
  background: none;
  box-shadow: none;
}

form#mailformpro dl dt, form#mailformpro dl dd {
  font-size: inherit;
  text-align: inherit;
  line-height: inherit;
}

div#mfp_thanks {
  text-align: center;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
div#mfp_thanks strong {
  display: inline-block;
  font-size: 30px;
  color: #C00;
  font-weight: 700;
}

#form table#mfp_confirm_table {
  border-spacing: 0px;
  border-collapse: collapse;
  width: 100%;
  max-width: 500px;
  margin: 30px auto;
  border-right: solid 1px #CCC;
  border-bottom: solid 1px #CCC;
}
#form table#mfp_confirm_table tr.mfp_achroma,
#form table#mfp_confirm_table tr.mfp_colored {
  background-color: white;
}
#form table#mfp_confirm_table tr th,
#form table#mfp_confirm_table tr td {
  padding: 20px;
  border-top: solid 1px #CCC;
  border-left: solid 1px #CCC;
}
#form div.mfp_buttons button#mfp_button_cancel,
#form div.mfp_buttons button#mfp_button_send {
  display: inline-block;
  width: 200px;
  max-width: unset;
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #4e4e4e;
  margin-top: 30px;
  padding: 15px;
  border-radius: 0;
  background: #c1c1c1;
  text-shadow: none;
  border: none;
}
#form div.mfp_buttons button#mfp_button_send {
  background: #dddddd;
}
#form div.mfp_buttons button#mfp_button_cancel {
  background: #c1c1c1;
}

form#mailformpro {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
form#mailformpro .mailform {
  width: 100%;
}
form#mailformpro .mailform:not(:first-child) {
  margin: 20px 0 0 0;
}
@media screen and (max-width: 640px) {
  form#mailformpro .mailform:not(:first-child) {
    margin: 12px 0 0 0;
  }
}
form#mailformpro .mailform .mfp_input,
form#mailformpro .mailform .mfp_textarea,
form#mailformpro .mailform .mfp_text,
form#mailformpro .mailform .mfp_label,
form#mailformpro .mailform .mfp_button {
  margin: 5px 0 0 0;
}
form#mailformpro .mailform .mfp_element_submit,
form#mailformpro .mailform .mfp_element_reset,
form#mailformpro .mailform .mfp_element_button,
form#mailformpro .mailform button.mfp_next,
form#mailformpro .mailform button.mfp_prev {
  border: unset;
  background: unset;
  text-shadow: unset;
  font-size: 14px;
  outline: none;
  border-radius: unset;
  padding: 0;
}
form#mailformpro .mailform .mfp_element_submit:hover,
form#mailformpro .mailform .mfp_element_reset:hover,
form#mailformpro .mailform .mfp_element_button:hover,
form#mailformpro .mailform button.mfp_next:hover,
form#mailformpro .mailform button.mfp_prev:hover {
  background: none;
  box-shadow: none;
}
form#mailformpro .mailform input,
form#mailformpro .mailform textarea {
  width: 100% !important;
  border: 1px solid #c0c0c0;
}
@media screen and (max-width: 640px) {
  form#mailformpro .mailform input,
form#mailformpro .mailform textarea {
    font-size: 16px;
  }
}
form#mailformpro .mailform input {
  padding: 14px 10px;
}
@media screen and (max-width: 640px) {
  form#mailformpro .mailform input {
    padding: 10px;
  }
}
form#mailformpro .mailform textarea {
  padding: 10px;
}
form#mailformpro .mailform.agree {
  text-align: center;
}
form#mailformpro .mailform.agree .mfp label input[type=checkbox] ~ span {
  line-height: 2;
  padding: 0 0 0 30px;
}
form#mailformpro .mailform.agree .mfp label input[type=checkbox] ~ span::before,
form#mailformpro .mailform.agree .mfp label input[type=checkbox] ~ span::after {
  top: 3px;
  left: 0;
}
form#mailformpro .mailform.agree a {
  position: relative;
}
form#mailformpro .mailform.agree a::after {
  content: " ";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -2px;
  background-color: #8d8d8d;
}
form#mailformpro .mailform.submit {
  margin: 20px 0 0 0;
}
form#mailformpro .mailform .mfp {
  font-size: 1.3rem;
  font-weight: 400;
  /***
  **     ラベルデザイン
  ****  //////////////  ****/
}
@media screen and (max-width: 640px) {
  form#mailformpro .mailform .mfp {
    font-size: 1.2rem;
  }
}
form#mailformpro .mailform .mfp_text {
  font-weight: 200;
}
@media screen and (max-width: 640px) {
  form#mailformpro .mailform .mfp_text {
    font-size: 1.1rem;
    letter-spacing: -0.01em;
  }
}
form#mailformpro .mailform .mfp_label {
  margin: 20px 0 0 0;
}
@media screen and (max-width: 640px) {
  form#mailformpro .mailform .mfp_label {
    margin: 12px 0 0 0;
  }
}
form#mailformpro .mailform .mfp_button {
  text-align: center;
}
form#mailformpro .mailform .mfp_button .mfp_submit,
form#mailformpro .mailform .mfp_button .mfp_reset {
  display: inline-block;
  width: 200px;
  max-width: unset;
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #4e4e4e;
  padding: 15px;
  border-radius: 0;
  text-shadow: none;
  border: none;
  background: #c1c1c1;
}
form#mailformpro .mailform .mfp_button .mfp_submit {
  color: white;
  background: #242424;
}
form#mailformpro .mailform .mfp_button .mfp_submit.disabled {
  color: white;
  background: #dddddd;
}
form#mailformpro .mailform .mfp_button .mfp_reset {
  color: #4e4e4e;
  background: #c1c1c1;
}
form#mailformpro .mailform .mfp label {
  /* label セレクトボックスに矢印 */
  /* radio ラジオボタンに装飾 */
  /* checkbox に装飾 */
}
form#mailformpro .mailform .mfp label > span {
  display: inline-block;
}
form#mailformpro .mailform .mfp label.label-select {
  width: 100%;
  max-width: 265px;
  position: relative;
  margin: 0;
  border-radius: 0px;
  z-index: 1;
}
form#mailformpro .mailform .mfp label.label-select::before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top: 11px;
  right: 15px;
  border: 5px solid transparent;
  border-top: 8px solid black;
  z-index: 1;
}
form#mailformpro .mailform .mfp label.label-select select {
  width: 100%;
  max-width: 265px;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 0;
  padding: 6px 22px 6px 6px;
  border: 1px solid #c0c0c0;
  background: white;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
form#mailformpro .mailform .mfp label input[type=radio] {
  display: none;
  /* radio:checked */
}
form#mailformpro .mailform .mfp label input[type=radio] ~ span {
  font-weight: 200;
  padding: 0 0 0 35px;
  position: relative;
}
form#mailformpro .mailform .mfp label input[type=radio] ~ span::before, form#mailformpro .mailform .mfp label input[type=radio] ~ span::after {
  content: "";
  display: inline-block;
  position: absolute;
  border-radius: 50%;
}
form#mailformpro .mailform .mfp label input[type=radio] ~ span::before {
  width: 22px;
  height: 22px;
  top: 0;
  left: 0;
  border: 1px solid #c0c0c0;
  background-color: white;
  z-index: 0;
  border-radius: 50%;
}
form#mailformpro .mailform .mfp label input[type=radio] ~ span::after {
  top: 4px;
  left: 4px;
  width: 14px;
  height: 14px;
  z-index: 1;
}
form#mailformpro .mailform .mfp label input[type=radio]:checked ~ span {
  color: #525252;
}
form#mailformpro .mailform .mfp label input[type=radio]:checked ~ span::after {
  background: #525252;
}
form#mailformpro .mailform .mfp label input[type=checkbox] {
  display: none;
  /* checkbox:checked */
}
form#mailformpro .mailform .mfp label input[type=checkbox] ~ span {
  font-weight: 200;
  padding: 0 0 0 30px;
  position: relative;
}
form#mailformpro .mailform .mfp label input[type=checkbox] ~ span::before, form#mailformpro .mailform .mfp label input[type=checkbox] ~ span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
form#mailformpro .mailform .mfp label input[type=checkbox] ~ span::before {
  width: 20px;
  height: 20px;
  border: 1px solid #c0c0c0;
  background-color: white;
  border-radius: 0;
  z-index: 0;
}
form#mailformpro .mailform .mfp label input[type=checkbox] ~ span::after {
  width: 6px;
  height: 11px;
  margin: 3px 7px;
  z-index: 1;
}
form#mailformpro .mailform .mfp label input[type=checkbox]:checked ~ span::before {
  background-color: #525252;
}
form#mailformpro .mailform .mfp label input[type=checkbox]:checked ~ span::after {
  border: 2px solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.contact_form#form div.mfp_buttons button#mfp_button_send {
  color: white;
  background-color: #242424;
}

.mfp_thanks {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
}

div#mfp_thanks strong {
  display: inline-block;
  font-size: inherit;
  color: #C00;
  font-weight: 200;
  letter-spacing: -0.01em;
}

.c-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .c-row {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media screen and (max-width: 640px) {
  .c-row {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
  }
}
.c-row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.c-column-half {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 48%;
          flex: 0 1 48%;
}
@media screen and (max-width: 640px) {
  .c-column-half {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}
.c-column--head {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 180px;
          flex: 1 0 180px;
}
@media screen and (max-width: 640px) {
  .c-column--head {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}
.c-column--body {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 100%;
          flex: 0 1 100%;
}
@media screen and (max-width: 640px) {
  .c-column--body {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}
.c-column--image {
  text-align: center;
}

.i, .i-account, .i-cart, .i-logout, .i-login {
  display: inline-block;
  position: relative;
  padding: 15px;
}
.i::before, .i-account::before, .i-cart::before, .i-logout::before, .i-login::before {
  content: " ";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 18px;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.i-login {
  padding-left: 14px !important;
}
@media screen and (max-width: 640px) {
  .i-login {
    width: 14px;
    height: 15px;
    padding: 20px !important;
  }
}
.i-login::before {
  width: 8px;
  height: 11px;
  background-image: url(https://gigaplus.makeshop.jp/shopihaag/assets/img/common/icon-login.svg);
}
@media screen and (max-width: 640px) {
  .i-login::before {
    top: 13px;
    left: 15px;
    width: 9px;
    height: 14px;
  }
}
.i-login:hover {
  color: #837A62 !important;
}
.i-logout {
  padding-left: 18px !important;
}
@media screen and (max-width: 640px) {
  .i-logout {
    width: 14px;
    height: 15px;
    padding: 20px !important;
  }
}
.i-logout::before {
  width: 11px;
  height: 11px;
  background-image: url(https://gigaplus.makeshop.jp/shopihaag/assets/img/common/icon-logout.svg);
}
@media screen and (max-width: 640px) {
  .i-logout::before {
    top: 13px;
    left: 12px;
    width: 14px;
    height: 15px;
  }
}
.i-logout:hover {
  color: #837A62 !important;
}
.i-cart {
  padding-left: 17px !important;
}
.i-cart::before {
  width: 10px;
  height: 11px;
  background-image: url(https://gigaplus.makeshop.jp/shopihaag/assets/img/common/icon-cart.png);
}
.i-cart:hover {
  color: #837A62 !important;
}
.i-account {
  padding-left: 18px !important;
}
.i-account::before {
  width: 11px;
  height: 13px;
  background-image: url(https://gigaplus.makeshop.jp/shopihaag/assets/img/common/icon-account.svg);
}
.i-account:hover {
  color: #837A62 !important;
}
.i-triangle {
  display: inline-block;
  position: relative;
  font-size: 1.3rem;
  font-weight: 500;
  padding-right: 15px;
}
@media screen and (max-width: 640px) {
  .i-triangle {
    font-size: 1.2rem;
  }
}
.i-triangle::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 4px;
  border-color: transparent transparent transparent #000000;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.i-triangle:hover::after {
  border-color: transparent transparent transparent #345ecb;
}

.c-list__slist--item:not(:first-child) {
  margin: 35px 0 0 0;
  padding: 28px 0 0 0;
  border-top: 1px solid #d6d6d6;
}
@media screen and (max-width: 640px) {
  .c-list__slist--item:not(:first-child) {
    margin: 15px 0 0 0;
    padding: 20px 0 0 0;
  }
}
.c-list__slist--title {
  display: inline-block;
  position: relative;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 25px;
}
@media screen and (max-width: 640px) {
  .c-list__slist--title {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }
}
.c-list__slist--title::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 4px;
  border-color: transparent transparent transparent #000000;
  position: absolute;
  top: 50%;
  right: -12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-list__slist--text {
  font-size: 1.3rem;
  font-weight: 200;
  line-height: 1.69;
}
@media screen and (max-width: 640px) {
  .c-list__slist--text {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 640px) {
  .c-Hnav {
    display: block;
    width: calc(100% - 50px);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 10;
    overflow-y: scroll;
  }
}
@media screen and (max-width: 640px) and (max-width: 640px) {
  .c-Hnav {
    background-color: #f6f6f6;
  }
}
@media screen and (max-width: 640px) {
  .c-Hnav li:not(:first-child) .c-Hnav--item {
    border-top: 1px solid #dbdbdb;
  }
}
.c-Hnav li:nth-last-child(2),.c-Hnav li:nth-last-child(3) {

}
@media screen and (max-width: 1024px) {
  .c-Hnav li:nth-last-child(2),.c-Hnav li:nth-last-child(3) {
    margin-left: 0;
  }
}
@media screen and (max-width: 640px) {
  .c-Hnav li.u-border_u {
    border-bottom: 1px solid #dbdbdb;
  }
}
.c-Hnav--list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}
@media screen and (max-width: 640px) {
  .c-Hnav--list {
    display: block;
    padding-bottom: 30px;
  }
}
.c-Hnav--item {
  display: inline-block;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 1.34rem;
  font-weight: 600;
  color: #242424;
  white-space: nowrap;
  padding: 25px 12px 15px;
}
@media screen and (max-width: 1024px) {
  .c-Hnav--item {
    padding: 25px 5px 15px;
  }
}
@media screen and (max-width: 640px) {
  .c-Hnav--item {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: left;
    padding: 20px;
  }
}
.c-Hnav--item:hover {
  opacity: 1;
}
.c-Hnav--item::before, .c-Hnav--item::after {
  content: " ";
  display: block;
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 13px;
  background-color: black;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .c-Hnav--item::before, .c-Hnav--item::after {
    bottom: 15px;
  }
}
@media screen and (max-width: 640px) {
  .c-Hnav--item::before, .c-Hnav--item::after {
    display: none;
  }
}
.c-Hnav--item::before {
  right: 50%;
}
.c-Hnav--item::after {
  left: 50%;
}
.c-Hnav--item:hover::before, .c-Hnav--item:hover::after {
  width: 38%;
}
.c-Hnav--item.contact-link:hover {
  opacity: 0.5;
}
.c-Hnav--item.contact-link::before, .c-Hnav--item.contact-link::after {
  display: none;
}
.c-Hnav--item.current::before, .c-Hnav--item.current::after {
  width: 38%;
}
.c-Hnav--item.c-hide {
  color: #afafaf;
  cursor: default;
}
.c-Hnav--item.c-hide::before, .c-Hnav--item.c-hide::after {
  display: none !important;
}
.c-Hnav__sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  position: relative;
  margin: 0 0 0 10px;
  padding: 10px 0 0 10px;
}
@media screen and (max-width: 1024px) {
  .c-Hnav__sns {
    margin: 0 0 0 10px;
  }
}
@media screen and (max-width: 640px) {
  .c-Hnav__sns {
    margin: 0 0 -10px 0;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
            align-items: flex-end;
  }
}
.c-Hnav__sns::before {
  content: " ";
  display: block;
  width: 1px;
  height: 19px;
  position: absolute;
  top: 58%;
  left: 0;
  background-color: black;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
  .c-Hnav__sns::before {
    display: none;
  }
}
.c-Hnav__sns--item {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.34rem;
  font-weight: 600;
  color: #242424;
  padding: 10px 5px;
}
@media screen and (max-width: 1024px) {
  .c-Hnav__sns--item {
    padding: 10px 5px;
  }
}
@media screen and (max-width: 640px) {
  .c-Hnav__sns--item {
    padding: 10px;
  }
}
@media screen and (max-width: 640px) {
  .c-Hnav--level2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
    border-top: 1px solid #dbdbdb;
  }
}
@media screen and (max-width: 640px) {
  .c-Hnav--level2 li {
    margin-right: 5px;
  }
}
@media screen and (max-width: 640px) {
  .c-Hnav--level2 li a {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 20px 5px;
  }
}
@media screen and (max-width: 640px) {
  .c-Hnav--col {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 640px) {
  .c-Hnav--col .privacy {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}
.c-Hnav--col .privacy .c-Hnav--item {
  padding: 20px 20px 20px 5px;
}
@media screen and (max-width: 640px) {
  .c-Hnav--col .mail {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 70px;
            flex: 1 0 70px;
    text-align: center;
  }
  .c-Hnav--col .mail::before {
    content: " ";
    display: block;
    width: 1px;
    height: 20px;
    position: absolute;
    top: 20px;
    left: 0;
    background-color: #dbdbdb;
  }
  .c-Hnav--col .mail img {
    width: 20px;
  }
}
@media screen and (max-width: 640px) {
  .c-Hnav--col.sns {
    display: inline-block;
    width: 55%;
  }
}
.c-Hnav--col.sns .c-Hnav__sns {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}
@media screen and (max-width: 640px) {
  .c-Hnav--col1 {
    display: inline-block;
  }
}
@media screen and (max-width: 640px) {
  .c-Hnav--col1 .c-Hnav--item {
    border-top: none !important;
  }
}
.c-Hnav--col1.mail .c-Hnav--item::before, .c-Hnav--col1.mail .c-Hnav--item::after {
  display: none;
}
@media screen and (max-width: 640px) {
  .c-Hnav--col1.mail .c-Hnav--item {
    padding: 20px 15px 20px 20px;
  }
}
@media screen and (max-width: 640px) {
  .c-Hnav--col2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    background-color: #f6f6f6;
  }
}
@media screen and (max-width: 640px) {
  .c-Hnav--col2 .c-Hnav--item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 50%;
            flex: 0 1 50%;
    width: 100%;
    padding: 20px 5px 20px 20px;
  }
}
@media screen and (max-width: 640px) {
  .c-Hnav--col2 .c-Hnav--item:not(:first-child) {
    border-left: 1px solid #dbdbdb;
  }
}
@media screen and (max-width: 640px) {
  .c-Hnav--link {
    width: 100%;
    position: relative;
    text-align: left;
    background-color: white;
  }
}
@media screen and (max-width: 640px) {
  .c-Hnav--link a {
    display: block;
    width: 100%;
  }
}
.c-Hnav--link a.c-Hnav--item:hover {
  opacity: 0.5;
}
@media screen and (max-width: 640px) {
  .c-Hnav--last {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    width: 100%;
    padding: 20px 20px 30px 0;
    border-top: 1px solid #dbdbdb;
    background-color: white;
  }
}
.c-Hnav--last::before {
  display: none;
}

.js-click {
  position: relative;
}
.js-click::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 22px;
  right: 15px;
  background-image: url(https://gigaplus.makeshop.jp/shopihaag/assets/img/common/i-plus.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.js-click.is-open::after {
  height: 2px;
  top: 28px;
  background-image: url(https://gigaplus.makeshop.jp/shopihaag/assets/img/common/i-minus.png);
}
.js-click_content {
  display: none;
}

.c-Fnav.pc {
  margin-bottom: 18px;
}
@media screen and (max-width: 640px) {
  .c-Fnav.pc {
    display: none;
  }
}
.c-Fnav.pc .c-Fnav--item {
  font-weight: 400;
}
.c-Fnav--list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 640px) {
  .c-Fnav--list {
    display: block;
    text-align: left;
  }
}
.c-Fnav--item {
  display: inline-block;
  margin: 0 25px 0 0;
  font-size: 1.2rem;
  color: #242424;
}
@media screen and (max-width: 640px) {
  .c-Fnav--item {
    margin: 0 0 10px 0;
  }
}

.c-Hnav__bar {
  width: 95%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 640px) {
  .c-Hnav__bar {
    width: 100%;
    padding-left: 5px;
  }
}
.c-Hnav__bar--scroll {
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 565px;
          flex: 0 1 565px;
  max-width: 565px;
  overflow-x: scroll;
}
.c-Hnav__bar--list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.c-Hnav__bar--list.category {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 565px;
          flex: 0 1 565px;
  max-width: 565px;
  overflow-x: scroll;
  margin-left: -11px;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}
.c-Hnav__bar--list.category::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}
@media screen and (max-width: 640px) {
  .c-Hnav__bar--list.category {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
            flex: 0 1 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 640px) {
  .c-Hnav__bar--list.category li .c-Hnav__bar--level2 {
    padding: 0 0 0 5px;
    overflow-x: scroll !important;
  }
}
@media screen and (max-width: 640px) {
  .c-Hnav__bar--list.category li.is-open a::before {
    width: 80%;
  }
}
.c-Hnav__bar--list.category li.is-open a::after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-style: solid;
  border-width: 0px 8px 9px 8px;
  border-color: transparent transparent #e7e7e7 transparent;
}
.c-Hnav__bar--list.category > li > a {
  position: relative;
}
.c-Hnav__bar--list.category > li > a::before {
  content: " ";
  display: block;
  width: 0;
  height: 1px;
  background-color: #242424;
  position: absolute;
  top: 49%;
  left: 10%;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.c-Hnav__bar--list.category > li > a:hover::before {
  width: 80%;
}
@media screen and (max-width: 640px) {
  .c-Hnav__bar--list.category > li > a:hover::before {
    width: 0;
  }
}
.c-Hnav__bar--list.category > li.is-open > a::before {
  width: 80%;
}
.c-Hnav__bar--list.shopNav {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 235px;
          flex: 1 0 235px;
  position: relative;
  margin-right: -11px;
  padding-left: 10px;
}
@media screen and (max-width: 640px) {
  .c-Hnav__bar--list.shopNav {
    display: none;
    margin-right: 0;
    padding-left: 0;
  }
}
.c-Hnav__bar--list.shopNav::after {
  content: " ";
  display: block;
  width: 1px;
  height: 15px;
  position: absolute;
  top: 17px;
  left: 0;
  background-color: black;
}
.c-Hnav__bar--list.shopNav li {
  margin-left: 10px;
}
.c-Hnav__bar--list.shopNav .c-navigation_bar--item {
  margin-left: 10px;
}
@media screen and (max-width: 640px) {
  .c-Hnav__bar--list.spShopNav {
    padding: 0 2%;
    border-bottom: 1px solid #dbdbdb;
  }
}
@media screen and (max-width: 640px) {
  .c-Hnav__bar--list.spShopNav li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 33.33%;
            flex: 0 1 33.33%;
    position: relative;
  }
}
@media screen and (max-width: 640px) {
  .c-Hnav__bar--list.spShopNav li:not(:first-child)::before {
    content: " ";
    display: block;
    width: 1px;
    height: 20px;
    position: absolute;
    top: 20px;
    left: 0;
    background-color: #dbdbdb;
  }
}
@media screen and (max-width: 640px) {
  .c-Hnav__bar--list.spShopNav li .c-Hnav__bar--item {
    display: block;
    width: 100%;
    padding: 20px 5px !important;
  }
}
@media screen and (max-width: 640px) {
  .c-Hnav__bar--list.spShopNav li .i-account::before, .c-Hnav__bar--list.spShopNav li .i-cart::before, .c-Hnav__bar--list.spShopNav li .i-logout::before, .c-Hnav__bar--list.spShopNav li .i-login::before {
    display: inline-block;
    position: relative;
    top: 2px;
    left: 0;
    margin-right: 10px;
  }
}
.c-Hnav__bar--list .ps__rail-x {
  height: 8px;
}
.c-Hnav__bar--list .ps__rail-x:hover > .ps__thumb-x, .c-Hnav__bar--list .ps__rail-x:focus > .ps__thumb-x, .c-Hnav__bar--list .ps__rail-x.ps--clicking .ps__thumb-x {
  height: 6px;
}
.c-Hnav__bar--level2 {
  display: none;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  text-align: left;
  background-color: #e7e7e7;
}
.c-Hnav__bar--level2 li {
  display: table-cell;
}
.c-Hnav__bar--level2 li a:hover {
  opacity: 0.5;
}
.c-Hnav__bar--item {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #242424;
  white-space: nowrap;
  padding: 15px 11px;
}
@media screen and (max-width: 640px) {
  .c-Hnav__bar--item {
    padding: 15px 10px;
  }
}
.c-Hnav__bar--item:hover {
  opacity: 1;
}
.c-Hnav__bar--item.c-hide {
  color: #afafaf;
  cursor: default;
}
.c-Hnav__bar--item.c-hide::before, .c-Hnav__bar--item.c-hide::after {
  display: none !important;
}
.c-Hnav__bar--item.c-after_none::after {
  display: none !important;
}

#M_ctgList2 #M_ctg1_1 {
  display: none;
}
#M_ctgList2 li {
  background: none !important;
  padding-left: 0 !important;
}

.M_layer1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  margin-left: -12px;
}
@media screen and (max-width: 640px) {
  .M_layer1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
            flex: 0 1 100%;
    max-width: 100%;
  }
}
.M_layer1 li {
  position: relative;
}
.M_layer1 li.is-open a {
  background-color: #e3e3e3;
}
.M_layer1 li.is-open .M_layer2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.M_layer1 li a {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #242424;
  white-space: nowrap;
  padding: 15px 12px;
}

.M_layer2 {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.M_layer2 li a {
  background-color: #e3e3e3;
}

.c-title_h2 {
  position: relative;
  font-size: 1.5rem;
  line-height: 24px;
  font-weight: 500;
  text-align: left;
  margin: 0 0 50px 0;
  padding: 0 0 0 15px;
}
@media screen and (max-width: 640px) {
  .c-title_h2 {
    font-size: 1.3rem;
    line-height: 17px;
    margin: 0 0 30px 0;
    padding: 0 0 0 10px;
  }
}
.c-title_h2::before {
  content: " ";
  display: block;
  width: 4px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
}
@media screen and (max-width: 640px) {
  .c-title_h2::before {
    width: 2px;
    height: 17px;
  }
}

.c-news_block {
  display: none;
  width: 100%;
  border-bottom: 1px solid #d6d6d6;
  z-index: 10;
  background-color: white;
}
.c-news_block__article {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  font-size: 1.3rem;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.0025em;
  padding: 10px;
}
@media screen and (max-width: 640px) {
  .c-news_block__article {
    font-size: 1.1rem;
    padding: 7px;
  }
}
.c-news_block__article--date {
  display: block;
  font-weight: 300;
  color: #848484;
  margin-right: 15px;
}

.p-lookbook .c-container {
  width: 100%;
  max-width: unset;
  margin-left: auto;
  margin-right: auto;
}
.p-lookbook__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin-bottom: 25px;
}
.p-lookbook__list li {
  position: relative;
}
.p-lookbook__list li:not(:first-child) {
  margin: 0 0 0 10px;
  padding: 0 0 0 10px;
}
.p-lookbook__list li:not(:first-child)::before {
  content: " ";
  display: block;
  width: 1px;
  height: 16px;
  position: absolute;
  top: 2px;
  left: 0;
  background-color: black;
}
.p-lookbook__list--item {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
}
.p-lookbook__list--item.current {
  font-weight: 500;
}

.slide {
  width: 87%;
  max-width: unset;
  margin-left: auto;
  margin-right: auto;
}
.slide .slick-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 640px) {
  .slide .slick-slide img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.slide .slick-track {
  height: calc(100vh - 114px);
}
@media screen and (max-width: 640px) {
  .slide .slick-track {
    height: auto;
  }
}
.slide button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.slide .slide-arrow {
  position: absolute;
  top: 50%;
  border-top: 1px solid black;
  z-index: 2;
}
.slide .prev-arrow {
  left: -4%;
  width: 25px;
  height: 25px;
  border-left: 1px solid black;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 640px) {
  .slide .prev-arrow {
    width: 12px;
    height: 12px;
  }
}
.slide .next-arrow {
  right: -4%;
  width: 25px;
  height: 25px;
  border-right: 1px solid black;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 640px) {
  .slide .next-arrow {
    width: 12px;
    height: 12px;
  }
}