@charset "UTF-8";

/*-----------------------------------------------------------
COMMON
------------------------------------------------------------*/

/* COMPASS
 * ----------------------------------------------- */
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

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

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}
span.uline {
  background: linear-gradient(transparent 60%, #fdfa03 60%);
}


/* BASE
 * ----------------------------------------------- */
/* ADDITIONAL RESET
 * ----------------------------------------------- */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
}

body img {
  max-height: none;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  font: inherit;
  line-height: 1;
}

input:focus,
button:focus,
select:focus {
  outline: 0;
}

/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Turn off scroll bars in IE unless needed */
textarea {
  overflow: auto;
  white-space: pre-line;
}

/* PRINTING
 * ----------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }

  html,
  body {
    margin: 0;
  }

  @page {
    margin: 0;
  }
  @page :left {
    margin: 0;
  }
  @page :right {
    margin: 0;
  }
  @page :first {
    margin-top: 0;
  }
  .wow {
    visibility: visible !important;
  }
}
/* GENERAL
 * ----------------------------------------------- */
body {
  color: #333;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  font-weight: 800;
  font-style: normal;
/*  font-family: source-han-sans-cjk-ja, sans-serif;*/
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}
.ft-hanserif {
  font-family: source-han-serif-japanese, serif;
  font-weight: 400;
  font-style: normal;
}


/* HELPERS
 * ----------------------------------------------- */
a {
  color: #333;
  text-decoration: none;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.flex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.align-items-center {
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.container {
  overflow: hidden;
  background: url(../img/common/pat_grid_op40.png);
}

.img {
  display: block;
  max-width: 100%;
}

@media print, (min-width: 768px) {
  body {
    position: static !important;
    top: auto !important;
  }

  .container {
    min-width: 960px;
  }

  .wrapper {
    width: 1180px;
    margin-left: auto;
    margin-right: auto;
  }
  .wrap {
    width: 880px;
    margin-left: auto;
    margin-right: auto;
  }

  .trans {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    -moz-transition: opacity 0.26s ease;
    -o-transition: opacity 0.26s ease;
    -webkit-transition: opacity 0.26s ease;
    transition: opacity 0.26s ease;
  }
  .trans:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
  }

  .flex-md {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .flex-md-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .flex-md-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .align-items-center-md {
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .order1 {
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }

  .order2 {
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}
/* RESPONSIVE
 * ----------------------------------------------- */
.sm {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  .md {
    display: none !important;
  }

  .sm {
    display: block !important;
  }

  body {
    font-size: 12px;
    line-height: 1.67;
  }

  .container {
    min-width: 320px;
    padding-top: 45px;
  }

  .wrapper {
    width: 100%;
    padding-left: 3%;
    padding-right: 3%;
  }

  .wrap {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .img {
    width: 100%;
  }
}
@media only screen and (max-width: 374px) {
  body {
    font-size: 11px;
  }
}
/* PARTS
 * ----------------------------------------------- */
/* COMMON HEADER
 * ----------------------------------------------- */
.header-site {
  background: #fff;
  z-index: 9999;
}
.header-site .header-logo {
  display: block;
}
.header-site .header-logo img {
  width: 103px;
  margin-top: -1px;
}
.header-site .wrapper {
  position: relative;
  padding-top: 14px;
}
.header-site .ul-sns {
  position: absolute;
}
.header-site .ul-sns a {
  position: relative;
  background: #000;
  color: #fff;
  font-size: 14px;
  border-radius: 80px;
  padding: 14px 46px 14px 37px;
}
.header-site .ul-sns a::after {
  content: '';
  background: url(../img/common/icn_cart.png) no-repeat 0 0;
  position: absolute;
  top: 15px;
  right: 20px;
  width: 21px;
  height: 16px;
}
.header-site .ul-menu {
  color: #000;
}
.header-site .ul-menu .txt-link {
  position: relative;
  display: block;
  font-weight: bold;
}
.header-site .ul-menu .txt-link:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -5px;
  border-left: 7px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

@media only screen and (max-width: 1500px) {
  .header-site .ul-menu > li:last-child .mega-menu {
    left: 0;
    right: 0;
  }
}
@media print, (min-width: 768px) {
  .navigation {
    display: block !important;
  }

  .overlay-menu {
    display: none !important;
  }

  .header-site {
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    position: fixed;
    width: 100%;
    height: 80px;
  }
  .header-site .wrapper {
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .header-site .ul-sns {
    right: 0;
    top: 26px;
  }
  .header-site .ul-sns > li {
    margin-left: 33px;
  }
  .header-site .ul-sns > li:first-child {
    margin-left: 0;
  }
  .header-site .ul-sns img {
    width: 33px;
  }
  .header-site .navigation {
    margin-right: 40px;
    padding-top: 12px;
  }
  .header-site .ul-menu {
    margin-right: 170px;
  }
  .header-site .ul-menu > li {
    margin-left: 30px;
    height: 30px;
    position: relative;
  }
  .header-site .ul-menu > li:hover {
    height: 57px;
  }
  .header-site .ul-menu > li:hover .mega-menu {
    display: block;
  }
  .header-site .ul-menu > li > a,
  .header-site .ul-menu > li .txt {
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
  }
  .header-site .ul-menu .txt-link {
    letter-spacing: 0.05em;
    padding: 17px 20px 18px 42px;
    font-size: 16px;
  }
  .header-site .ul-menu .txt-link:before {
    left: 30px;
  }
  .header-site .ul-menu .mega-menu {
    position: absolute;
    top: 95%;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    min-width: 320px;
    z-index: 150;
    display: none;
    font-size: 14px;
  }
  .header-site .ul-menu .mega-menu ul {
    border-bottom: 1px solid #bbbbbc;
    border-top: 1px solid #bbbbbc;
  }
  .header-site .ul-menu .mega-menu ul > li {
    border-bottom: 1px solid #bbbbbc;
    padding: 17px 20px 20px 30px;
  }
  .header-site .ul-menu .mega-menu ul > li:last-child {
    border-bottom: none;
  }
  .header-site .ul-menu .mega-menu ul a {
    -moz-transition: all 0.26s;
    -o-transition: all 0.26s;
    -webkit-transition: all 0.26s;
    transition: all 0.26s;
    white-space: nowrap;
    color: #fff;
  }
  .header-site .ul-menu .mega-menu ul a:hover {
    color: #fefb01;
  }
}

.navigation .ul-menu li.topic::before {
  content: "";
  position: absolute;
}

@media only screen and (max-width: 767px) {
  .header-site {
    -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    min-width: 320px;
  }
  .header-site .header-inner {
    background: #fff;
    position: relative;
    z-index: 1000;
    padding: 9px 15px 0;
    height: 70px;
  }
  .header-site .header-logo {
    width: 19%;
    margin-top: 6px;
  }
  .header-site .wrapper {
    padding: 0;
  }
  .header-site .ul-sns {
    right: 64px;
    top: 20px;
  }
  .header-site .ul-sns > li {
    margin-left: 22px;
  }
  .header-site .ul-sns > li:first-child {
    margin-left: 0;
  }
	.header-site .ul-sns a {
	  padding: 12px 35px 12px 20px;
	}
	.header-site .ul-sns a::after {
	  right: 10px;
	  width: 21px;
	  height: 16px;
	}

  .navigation {
    position: fixed;
    left: 0;
    right: 0;
    min-width: 320px;
    height: 100%;
    z-index: 990;
    padding-top: 59px;
    top: 0;
    font-weight: 300;
    display: none;
  }
  .navigation .navigation-inner {
    height: 100% !important;
    overflow-y: auto;
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 5;
  }
  .navigation .ul-menu {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
    z-index: 10;
    margin-top: 11px;
  }
  .navigation .ul-menu li {
    border-bottom: 1px solid #bbbbbc;
  }
  .navigation .ul-menu li.topic::before {
    margin-top: 25px;
    left: 15px;
    border-left: 6px solid #ddd;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
  }
  .navigation .ul-menu li > a,
  .navigation .ul-menu li .txt {
    color: #fff;
    font-size: 15px;
    padding: 15px 45px 13px 30px;
    font-weight: bold;
  }
  .navigation .ul-menu li .txt {
    position: relative;
    color: #fff;
  }
  .navigation .ul-menu li .txt:after {
    content: "";
    width: 9px;
    height: 13px;
    background: url(../img/common/icn_bullet01.png) no-repeat 0 0;
    background-size: 100% 100%;
    position: absolute;
    right: 27px;
    top: 50%;
    margin-top: -6px;
  }
  .navigation .ul-menu li ul li a {
    color: #ea5414;
    padding: 9px 45px 18px 40px;
  }
  .navigation .ul-menu a {
    display: block;
    position: relative;
  }
  .navigation .ul-menu a:after {
    content: "";
    width: 9px;
    height: 13px;
    background: url(../img/common/icn_bullet01.png) no-repeat 0 0;
    background-size: 100% 100%;
    position: absolute;
    right: 27px;
    top: 50%;
    margin-top: -6px;
  }
  .navigation .ul-menu .txt-link {
    font-size: 13px;
    padding: 9px 40px 9px 33px;
    font-weight: 700;
    position: relative;
    display: block;
    border-top: 1px solid #bbbbbc;
    border-bottom: 1px solid #bbbbbc;
  }
  .navigation .ul-menu .txt-link:before {
    top: 50%;
    margin-top: -4px;
    left: 25px;
    border-left: 5px solid #fff;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
  }
  .navigation .ul-menu .ul-sub > li:last-child {
    border-bottom: none;
  }

  .overlay-menu {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: none;
  }

  .btn-menu {
    width: 50px;
    height: 45px;
    position: absolute;
    right: 5px;
    top: 10px;
    cursor: pointer;
  }
  .btn-menu > span {
    width: 24px;
    height: 3px;
    background: #000;
    position: absolute;
    left: 40%;
    margin-left: -7px;
    display: block;
    -moz-transition: ease-in-out 0.5s;
    -o-transition: ease-in-out 0.5s;
    -webkit-transition: ease-in-out 0.5s;
    transition: ease-in-out 0.5s;
  }
  .btn-menu > span:nth-child(1) {
    top: 15px;
  }
  .btn-menu > span:nth-child(2) {
    top: 22px;
  }
  .btn-menu > span:nth-child(3) {
    top: 29px;
  }
  .btn-menu.js-active > span:nth-child(1) {
    top: 21px;
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .btn-menu.js-active > span:nth-child(2) {
    width: 0;
    margin-left: 0;
  }
  .btn-menu.js-active > span:nth-child(3) {
    top: 21px;
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
}


/* COMMON FOOTER
 * ----------------------------------------------- */
.footer-site {
  background: #000;
  color: #fff;
  padding: 56px 0 26px;
}
.footer-site a:link,
.footer-site a:visited,
.footer-site a:active {
  color: #fff;
}
.footer-site a {
  font-family: "M PLUS 1", sans-serif;
}
.footer-site .footer-nav {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.footer-site .footer-logo img {
    margin: 0 auto;
    width: 240px;
}
.footer-site .copyright img {
    margin: 0 auto;
}
.footer-site p.copyright {
  font-size: 14px;
  text-align: center;
  border-top: solid 1px #666;
  padding-top: 23px;
}
.footer-anchor {
    background: #ee6022;
    margin-top: 60px;
}
.footer-anchor a {
    color: #fff;
}
@media print, (min-width: 768px) {
  .footer-site {
      padding: 56px 0 26px;
  }
  .footer-site .footer-nav {
      margin-bottom: 35px;
      font-size: 14px;
  }
  .footer-site .footer-nav > li {
      font-family: source-han-sans-cjk-ja, sans-serif;
      font-style: normal;
      padding: 0 30px;
  }
  .footer-site .footer-nav > li:first-child {
      padding-left: 0;
  }
  .footer-site .footer-nav > li:last-child {
      padding-right: 0;
  }
  .footer-site .footer-logo {
      margin-bottom: 65px;
  }
  .footer-anchor {
      margin-top: 100px;
      padding: 28px 0;
  }
  .footer-anchor .ul-anchor {
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -ms-flex-wrap: wrap;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: center;
      letter-spacing: 0.05em;
      font-size: 16px;
      font-weight: normal;
  }
  .footer-anchor .ul-anchor li {
      margin: 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-site {
      padding: 22px 0 90px;
  }
  .footer-site .footer-nav {
      margin: 0 0 17px;
      font-size: 14px;
  }
  .footer-site .footer-nav > li {
      font-family: source-han-sans-cjk-ja, sans-serif;
      font-style: normal;
      padding: 0 10px;
  }
  .footer-site .footer-nav > li:first-child {
      padding-left: 0;
  }
  .footer-site .footer-nav > li:last-child {
      padding-right: 0;
  }
  .footer-site .footer-logo {
      width: 200px;
      margin: 0 auto 34px;
  }
  .footer-site .copyright img {
      height: auto;
      width: 20%;
  }
  .footer-anchor .wrapper {
      padding: 0;
  }
  .footer-anchor .ul-anchor li {
      font-size: 16px;
  }
  .footer-anchor .ul-anchor > li {
      border-bottom: 1px solid #fff;
  }
  .footer-anchor .ul-anchor a {
      display: block;
      position: relative;
      padding: 10px 40px 10px 30px;
  }
  .footer-anchor .ul-anchor a:after {
      background: url(../img/icn_bullet01.png) no-repeat 0 0;
      background-size: 100% 100%;
      content: "";
      width: 9px;
      height: 13px;
      margin-top: -6px;
      position: absolute;
      top: 50%;
      right: 27px;
  }
}


/* COMMON TITLES
 * ----------------------------------------------- */
h2.ttl {
  font-size: 60px;
  letter-spacing: -0.05em;
  padding-bottom: 50px;
}

@media only screen and (max-width: 767px) {
	h2.ttl {
	  font-size: 50px;
	  line-height: 1;
	}
}


/* ----------------------------------------------- */
/* SECTION SNS
 * ----------------------------------------------- */

.section-sns {
  background: #eeeded;
  text-align: center;
  padding: 80px 0;
}
.section-sns h2 {
  letter-spacing: 0.05em;
}
.section-sns .wrapper {
  width: 1180px;
  margin: 0 auto;
}
.section-sns .btnBox {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}
.section-sns .btnBox .btn-sns {
  display: block;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 35px 0;
  width: 380px;
  height: 100px;
}
.section-sns .btnBox .btn-sns {
  transition: 0.6s;
}
.section-sns .btnBox .btn-sns:hover {
  opacity: 0.7;
  transition: 0.6s;
}
.section-sns .btnBox .btn-sns.insta {
  position: relative;
  background: linear-gradient(135deg, #e7002a 0%, #bb00ae 70%) no-repeat;
  color: #fff;
  margin-right: 50px;
}
.section-sns .btnBox .btn-sns.insta::after {
  content: '';
  background: url(../img/common/sns_ico_instagram.png) no-repeat 0 0;
  position: absolute;
  top: 37%;
  right: 25%;
  width: 27px;
  height: 27px;
}
.section-sns .btnBox .btn-sns.x {
  background: #000;
}
.section-sns .btnBox .btn-sns.x figure {
  width: 8%;
  margin: 0 auto;
}
.section-sns .btnBox .btn-sns.x img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
	.section-sns .wrapper {
	  width: 100%;
	}
	.section-sns .btnBox {
	  display: unset;
	}
	.section-sns .btnBox .btn-sns {
	  width: 100%;
	}
	.section-sns .btnBox .btn-sns.insta {
	  margin-right: 0;
	  margin-bottom: 20px;
	}*/
}

/* ----------------------------------------------- */
/* SECTION CAUTION
 * ----------------------------------------------- */

.section-caution {
  padding: 60px 0 40px;
}
.section-caution .wrapper {
  width: 960px;
}
.section-caution ul {
  padding: 30px;
  margin: 0 auto;
  line-height: 1.6;
  list-style-type: disc;
}
.section-caution li {
  font-size: 22px;
  text-align: left;
  line-height: 1.2;
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
	.section-caution .wrapper {
	  width: 100%;
	  padding-left: 20px;
	  padding-right: 20px;
	}
	.section-caution ul {
	  padding: 20px 6px 20px 30px;
	}
	.section-caution li {
	  font-size: 20px;
	  margin-bottom: 15px;
	}
}

.lightbox-content {
    max-height: 300vh; /* 画面の高さの90% */
    overflow-y: auto;  /* 縦スクロールを有効に */
}

