@charset "UTF-8";
/**
 * Creative Net Door.
 * Basic Css Reset Formatter
 **/
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;
}

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

/*form*/
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
}

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

html, body {
  width: 100%;
  min-height: 100%;
  height: auto;
}

/*
概要: ピクセルをremに変換する関数。
引数: $pixel: 変換したいピクセル
利用法: @include pxToRem(24)
*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
/* Icons */
@font-face {
  font-family: "slick";
  src: url("../fonts/slick.eot");
  src: url("../fonts/slick.eot?#iefix") format("embedded-opentype"), url("../fonts/slick.woff") format("woff"), url("../fonts/slick.ttf") format("truetype"), url("../fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/*
html{
    font-size: $basicFontSize+px;
}
*/
/*
html, body {
    font-size: 16px;
    line-height: pxToRem(24);
}
*/
body {
  font-size: 16px;
  line-height: 2.7rem;
  color: #000;
  background: #FFF;
  -webkit-text-size-adjust: none;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  position: relative;
}
body * {
  box-sizing: border-box;
}
body .sp {
  display: none;
}
@media screen and (max-width: 47.9375em) {
  body .pc {
    display: none;
  }
  body .sp {
    display: block;
  }
}

a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s;
  webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}
a img {
  transition: opacity 0.3s;
  webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}
a:hover {
  webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}
@media screen and (min-width: 48em) {
  a:hover {
    webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    opacity: 1.0;
  }
}

/***************
pc
***************/
body img {
  display: block;
  max-width: 100%;
}
body .pc {
  display: block;
}
body .sp {
  display: none;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 47.9375em) {
  body img {
    width: 100%;
    max-width: inherit;
  }
  body .pc {
    display: none;
  }
  body .sp {
    display: block;
  }
}
body {
  position: relative;
}
body p {
  word-break: break-all;
  color: #363636;
}

/***********************************************************

 contents

***********************************************************/
/* main */
main {
  width: 100%;
  /***********************************************************

   mainvisual

  ***********************************************************/
  /***********************************************************

   block01

  ***********************************************************/
  /***********************************************************

   block02

  ***********************************************************/
  /***********************************************************

   block03

  ***********************************************************/
  /***********************************************************

   block04

  ***********************************************************/
  /***********************************************************

   block05

  ***********************************************************/
  /***********************************************************

   block06

  ***********************************************************/
  /***********************************************************

   無限スライダー

  ***********************************************************/
}
main img {
  width: 100%;
}
main .mainvisual {
  position: relative;
}
main .mainvisual h1 {
  position: absolute;
  width: 15.2%;
  max-width: 208px;
  left: 30px;
  top: 37px;
}
main .block01 {
  background: url(../img/block01_bg01.png) center top no-repeat;
  background-size: cover;
  position: relative;
}
main .block01__Text {
  width: 52.7%;
  max-width: 721px;
  margin: 0 auto;
  padding: 27px 0 30px;
}
main .block01Contents {
  position: relative;
  z-index: 5;
  text-align: center;
  background: url(../img/block01_bg02.png) center top no-repeat;
  background-size: cover;
  margin-top: -88px;
  padding: 155px 0 75px 0;
}
main .block01Contents p {
  color: #fff;
  padding-top: 30px;
  font-size: 16px;
  line-height: 32px;
}
main .block01Contents h2 {
  color: #fff;
  font-size: 36px;
  line-height: 70px;
}
main .block01Contents .first {
  padding-top: 0;
  font-size: 36px;
}
main .block01Contents .first span.pc {
  display: inline-block;
  width: 18.0%;
  max-width: 246px;
  margin-right: 20px;
}
main .block02 {
  position: relative;
  background: url(../img/block02_title_bg.png) right top no-repeat;
  background-size: 100% auto;
}
main .block02::before {
  content: "";
  display: block;
  background: url("../img/block02_parts.png") left center no-repeat;
  background-size: 100% auto;
  width: 288px;
  height: 335px;
  position: absolute;
  top: -80px;
  right: 0;
  z-index: 5;
}
main .block02__Title h2 {
  width: 57.6%;
  max-width: 788px;
  margin: 0 auto;
  padding: 86px 0 64px 0;
}
main .block02__Contents {
  width: 100%;
  max-width: 1366px;
  position: relative;
  margin: 0 auto 80px auto;
  position: relative;
  z-index: 10;
}
main .block02__Contents--Single {
  width: 54.1%;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(0%);
  -webkit-transform: translateY(-50%) translateX(0%);
}
main .block02__Contents.box02 .block02__Contents--Single {
  width: 54.1%;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateX(0%);
  -webkit-transform: translateY(-50%) translateX(0%);
}
main .block02__Contents .inner {
  width: 78.3%;
  margin: 0 auto;
  padding: 64px 0;
}
main .block02__Contents .inner h3 {
  font-size: 28px;
  line-height: 47px;
  margin-bottom: 48px;
  position: relative;
  vertical-align: middle;
  padding-left: 166px;
}
main .block02__Contents .inner h3 span {
  font-size: 11px;
}
main .block02__Contents .inner p {
  font-size: 16px;
  line-height: 27px;
}
main .block02__Contents .inner p + p {
  padding-top: 18px;
}
main .block02 .box01 .block02__Contents--Single h3 {
  padding-top: 25px;
  padding-bottom: 20px;
}
main .block02 .box01 .block02__Contents--Single h3::before {
  content: "";
  display: inline-block;
  background: url("../img/block02_logo01.png") left center no-repeat;
  background-size: 100% auto;
  width: 146px;
  height: 108px;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 0;
}
main .block02 .box02 .block02__Contents--Single h3::before {
  content: "";
  display: inline-block;
  background: url("../img/block02_logo02.png") left center no-repeat;
  background-size: 100% auto;
  width: 146px;
  height: 108px;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 0;
}
main .block02 .box03 .block02__Contents--Single h3::before {
  content: "";
  display: inline-block;
  background: url("../img/block02_logo03.png") left center no-repeat;
  background-size: 100% auto;
  width: 146px;
  height: 108px;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 0;
}
main .block03 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  /* item */
  /* textLink */
  /* category01 */
  /* category02 */
  /* category03 */
  /* category05 */
}
main .block03 h2 {
  font-size: 32px;
  line-height: 42px;
  padding: 30px 0;
  color: #64000E;
  text-align: center;
  background: url("../img/block03_title_bg.png") center top no-repeat;
  background-size: 615px 78px;
}
main .block03__Item {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: stretch;
  /*
  flex-direction: row;
  flex-wrap: wrap;
  */
  justify-content: space-between;
  align-items: stretch;
}
main .block03__Item--Single {
  width: 32.0%;
  position: relative;
}
main .block03__Item--Single .icon {
  position: absolute;
  top: -70px;
  left: -57px;
  width: 150px;
  height: 150px;
}
main .block03__Item--Single .icon02 {
  position: absolute;
  top: -48px;
  right: -10px;
  width: 74px;
  height: 74px;
}
main .block03__Item--Single .icon_free {
  display: none;
}
main .block03__Item--Single .iconCategory04 {
  position: absolute;
  top: -70px;
  left: -57px;
  width: 150px;
  height: 150px;
}
main .block03__Item--Single .iconCategoy05 {
  position: absolute;
  top: -126px;
  right: -26px;
  width: 150px;
  height: 150px;
}
main .block03__Item--Single .infoBox {
  background: url("../img/block03_textbox_bg02.png") center bottom no-repeat;
  background-size: cover;
}
main .block03__Item--Single .infoBox.category01 {
  background: url("../img/block03_textbox_bg.png") center bottom no-repeat !important;
  background-size: cover;
}
main .block03__Item--Single .infoBox .itemInner {
  padding: 20px 0;
  width: 87.5%;
  margin: 0 auto;
  position: relative;
  mix-blend-mode: normal;
}
main .block03__Item--Single .infoBox__Btn {
  position: relative;
  webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
main .block03__Item--Single .infoBox__Btn a {
  display: block;
  webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
main .block03__Item--Single .infoBox__Text {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: stretch;
  justify-content: space-between;
  align-items: stretch;
  padding: 5px 0 25px 0;
}
main .block03__Item--Single .infoBox__Text--Left {
  width: 75%;
}
main .block03__Item--Single .infoBox__Text--Left.w100 {
  width: 100%;
}
main .block03__Item--Single .infoBox__Text--Left h4 {
  line-height: 100%;
  font-size: 23px;
  line-height: 32px;
  font-weight: bold;
}
main .block03__Item--Single .infoBox__Text--Left p {
  line-height: 100%;
  font-size: 14px;
  padding-top: 6px;
}
main .block03__Item--Single .infoBox__Text--Right {
  width: 25%;
  text-align: center;
}
main .block03__Item--Single .infoBox__Text--Right p {
  font-weight: bold;
  color: #64000E;
  font-size: 50px;
  letter-spacing: -2px;
}
main .block03__Item.category02 {
  width: 65.7%;
  margin: 0 auto;
}
main .block03__Item.category02 .block03__Item--Single {
  width: 100%;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: stretch;
  justify-content: space-between;
  align-items: stretch;
}
main .block03__Item.category02 .block03__Item--Single .image {
  width: 48.4%;
}
main .block03__Item.category02 .block03__Item--Single .infoBox {
  width: 51.5%;
}
main .block03__Item.category02 .block03__Item--Single .infoBox .iconCategory02 {
  position: absolute;
  top: -42px;
  right: -95px;
  width: 150px;
  height: 150px;
}
main .block03__Item.category02 .block03__Item--Single .infoBox__Text--Left {
  width: 100%;
}
main .block03__Item.category04 {
  width: 66.3%;
  margin: 0 auto;
}
main .block03__Item.category04 .block03__Item--Single {
  width: 48.0%;
  position: relative;
}
main .block03__Item.category05 .block03__Item--Single:nth-of-type(1) h4 {
  padding-bottom: 35px;
}
main .block03 .textLink {
  width: 30.8%;
  max-width: 308px;
  margin: 50px auto 0 auto;
}
main .block03 .textLink:hover {
  opacity: 0.7;
  webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}
main .block03__Category01 {
  width: 100%;
  max-width: 1004px;
  margin: 0 auto;
  padding: 85px 0 95px 0;
  background: url("../img/block03_crab_01.png") center top no-repeat;
  background-size: 749px 270px;
}
main .block03__Category01 h3 {
  width: 63.5%;
  max-width: 635px;
  margin: 0 auto 30px auto;
}
main .block03__Category02 {
  width: 100%;
  max-width: 1004px;
  margin: 0 auto;
  padding: 85px 0 95px 0;
  background: url("../img/block03_crab_02.png") center top no-repeat;
  background-size: 375px 288px;
}
main .block03__Category02 h3 {
  width: 64.0%;
  max-width: 640px;
  margin: 0 auto 30px auto;
}
main .block03__Category03 {
  width: 100%;
  max-width: 1004px;
  margin: 0 auto;
  padding: 85px 0 95px 0;
  background: url("../img/block03_crab_03.png") center top no-repeat;
  background-size: 685px 216px;
}
main .block03__Category03 h3 {
  width: 76.6%;
  max-width: 766px;
  margin: 0 auto 30px auto;
}
main .block03__Category05 {
  width: 100%;
  max-width: 1004px;
  margin: 0 auto;
  padding: 85px 0 95px 0;
}
main .block03__Category05 h3 {
  width: 52.5%;
  max-width: 525px;
  margin: 0 auto 30px auto;
}
main .block04 .title {
  padding: 90px 0 85px 0;
  position: relative;
  z-index: 1;
}
main .block04 .title::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: url("../img/common_title_bg.png") center top no-repeat;
  background-size: 348px auto;
  width: 348px;
  height: 638px;
  z-index: 3;
}
main .block04 .title.category01 {
  background: url("../img/block04_title01_bg.png") center top no-repeat;
  background-size: cover;
}
main .block04 .title.category01 h2 {
  width: 26.6%;
  max-width: 363px;
  margin: 0 auto;
}
main .block04 .title.category02 {
  background: url("../img/block04_title02_bg.png") center top no-repeat;
  background-size: cover;
}
main .block04 .title.category02 h2 {
  width: 26%;
  max-width: 356px;
  margin: 0 auto;
}
main .block04 .title.category03 {
  background: url("../img/block04_title03_bg.png") center top no-repeat;
  background-size: cover;
}
main .block04 .title.category03 h2 {
  width: 34.7%;
  max-width: 475px;
  margin: 0 auto;
}
main .block04 .title.category04 {
  background: url("../img/block04_title04_bg.png") center top no-repeat;
  background-size: cover;
}
main .block04 .title.category04 h2 {
  width: 18.3%;
  max-width: 250px;
  margin: 0 auto;
}
main .block04 .title p {
  color: #fff;
  text-align: center;
  font-size: 19px;
}
main .block04 .inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 15;
  padding: 70px 0 0 0;
}
main .block04 h3 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 38px;
}
main .block04 h3 span {
  font-size: 24px;
}
main .block04__Contents {
  margin-bottom: 55px;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: stretch;
  justify-content: space-between;
  align-items: stretch;
}
main .block04__Contents .image {
  width: 57.4%;
}
main .block04__Contents .box {
  width: 39.5%;
}
main .block04__Contents .box p.text {
  font-size: 15px;
  line-height: 28px;
  padding-bottom: 45px;
}
main .block04__Contents .box p.text span {
  font-size: 13px;
}
main .block04__Contents--Btn {
  width: auto;
  max-width: 388px;
  margin: 18px auto 0 auto;
  position: relative;
  webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
main .block04__Contents--Btn a {
  display: block;
  webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
main .block04__Contents .itemBox {
  margin: 6px 0 0 0;
  background: url("../img/block04_box_bg.png") right top no-repeat;
  background-size: cover;
}
main .block04__Contents .itemBox .itemBoxInner {
  width: 89.6%;
  margin: 0 auto;
  padding: 20px 0;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.1em;
}
main .block04__Contents .itemBox h4 {
  background: url("../img/block04_box_text_bg.png") left top no-repeat;
  background-size: 7px 44px;
  font-weight: bold;
  font-size: 24px;
  line-height: 34px;
  padding-left: 26px;
}
main .block04__Contents .itemBox h4 span {
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
}
main .block04__Contents .itemBox p {
  padding-left: 20px;
  font-size: 12px;
  line-height: 17px;
  margin-top: 6px;
}
main .block04__Contents .itemBox p.price {
  color: #A40319;
  font-size: 38px;
  font-weight: bold;
  vertical-align: middle;
  text-align: right;
  margin-top: 20px;
}
main .block04__Contents .itemBox p.price span.en {
  font-size: 24px;
}
main .block04__Contents .itemBox p.price span.icon {
  font-size: 13px;
  line-height: 100%;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.1em;
  background: #FF0000;
  display: inline-block;
  padding: 8px 8px;
  vertical-align: middle;
  margin-right: 14px;
}
main .block05 {
  background: url("../img/block05_bg.png") center top no-repeat;
  background-size: cover;
}
main .block05 .inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 85px 0 115px 0;
}
main .block05 h2 {
  color: #fff;
  font-size: 50px;
  padding-bottom: 24px;
}
main .block05 p {
  color: #fff;
  font-size: 16px;
  line-height: 27px;
}
main .block05 p.copy {
  font-size: 36px;
  padding-bottom: 50px;
}
main .block05__Link {
  width: 30.8%;
  margin: 110px auto 0 auto;
}
main .block05__Link a {
  display: block;
  webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
  border-bottom: 2px solid #fff;
  color: #fff;
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  padding: 0 0 12px 0;
  background: url("../img/arrow.svg") 97% 7px no-repeat;
  background-size: 9px 15px;
}
main .block05__Link a:hover {
  opacity: 0.7;
  background: url("../img/arrow.svg") 98% 7px no-repeat;
  background-size: 9px 15px;
}
main .block06 {
  padding: 75px 0 0 0;
}
main .block06 .inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
main .block06 .logo {
  width: 24.6%;
  max-width: 246px;
  margin: 0 auto 35px auto;
}
main .block06 p {
  font-size: 16px;
  line-height: 27px;
}
main .sliderWrapper {
  overflow: hidden;
  width: 100%;
  z-index: 15;
  position: relative;
}
main .slider {
  display: flex;
}
main .slider__inner {
  display: flex;
}
main .slider__item {
  margin: 0 15px;
  width: 424px;
}
main .slider__inner:first-child {
  animation: loop 90s linear infinite;
}
main .slider__inner:nth-child(2) {
  animation: loop2 90s -60s linear infinite;
}
main .slider__inner:last-child {
  animation: loop3 90s -30s linear infinite;
}
@keyframes loop {
  0% {
    transform: translateX(200%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop3 {
  0% {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-300%);
  }
}
/***********************************************************

 footer

***********************************************************/
.footer {
  padding: 100px 0 40px 0;
  position: relative;
}
.footer .topLink {
  opacity: 1;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
}
.footer .topLink a {
  display: block;
}
.footer .topLink a img {
  width: 138px;
  height: 138px;
  margin: 0 auto;
}
.footer p {
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.1em;
  font-size: 13px;
  text-align: center;
}
.footer p a {
  color: #000;
}
.footer p a:hover {
  opacity: 0.7;
}
.footer__Copy small {
  display: block;
  font-size: 12px;
  text-align: center;
  color: #000;
}

_:-ms-fullscreen, :root .block03 .infoBox__Btn {
  width: 100%;
}

_:-ms-fullscreen, :root .block03 .infoBox__Btn a {
  width: 100% !important;
}

_:-ms-fullscreen, :root .block03 .infoBox__Btn img {
  width: 100%;
}

@supports (-ms-ime-align: auto) {
  .block03 .infoBox__Btn {
    width: 100% !important;
  }
}
@supports (-ms-ime-align: auto) {
  .block03 .infoBox__Btn a {
    width: 100% !important;
  }
}
@supports (-ms-ime-align: auto) {
  .block03 .infoBox__Btn a img {
    width: 100% !important;
  }
}
@media screen and (max-width: 47.9375em) {
  body p {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }

  	/***********************************************************
  
  	 contents
  
  	***********************************************************/
  /* main */
  main {
    	  /***********************************************************
    
    	   mainvisual
    
    	  ***********************************************************/
    	  /***********************************************************
    
    	   block01
    
    	  ***********************************************************/
    	  /***********************************************************
    
    	   block02
    
    	  ***********************************************************/
    	  /***********************************************************
    
    	   block03
    
    	  ***********************************************************/
    	  /***********************************************************
    
    	   block04
    
    	  ***********************************************************/
    	  /***********************************************************
    
    	   block05
    
    	  ***********************************************************/
    	  /***********************************************************
    
    	   block06
    
    	  ***********************************************************/
    	  /***********************************************************
    
    	   無限スライダー
    
    	  ***********************************************************/
  }
  main .mainvisual {
    position: relative;
  }
  main .mainvisual h1 {
    position: absolute;
    width: 40.8%;
    max-width: 152px;
    left: 13px;
    top: 18px;
  }
  main .block01 {
    background-image: none;
    background-color: #000;
    position: relative;
  }
  main .block01__Text {
    width: auto;
    max-width: initial;
    margin: 0 auto;
    padding: 0;
  }
  main .block01Contents {
    position: relative;
    z-index: 5;
    text-align: center;
    background: url(../img/block01_bg02_sp.png) center top no-repeat;
    background-size: cover;
    margin-top: -30px;
    padding: 60px 0 70px 0;
  }
  main .block01Contents .inner {
    width: 78.4%;
    margin: 0 auto;
  }
  main .block01Contents p {
    color: #fff;
    padding-top: 30px;
    font-size: 16px;
    line-height: 32px;
    text-align: left;
  }
  main .block01Contents h2 {
    color: #fff;
    font-size: 17px;
    line-height: 33px;
  }
  main .block01Contents h2 span {
    font-size: 12px;
  }
  main .block01Contents .first {
    padding-top: 0;
    font-size: 17px;
    text-align: center;
  }
  main .block01Contents .first span.pc {
    display: none;
  }
  main .block01Contents .first span.sp {
    display: inline-block;
  }
  main .block01Contents .first img {
    display: inline-block;
    width: 170px;
    max-width: initial;
    margin-right: 20px;
  }
  main .block02 {
    position: relative;
    background: none;
  }
  main .block02::before {
    display: none;
  }
  main .block02__crub {
    display: none;
  }
  main .block02__Title h2 {
    width: auto;
    max-width: initial;
    margin: 0 auto;
    padding: 0;
  }
  main .block02__Contents {
    width: 100%;
    max-width: initial;
    position: static;
    margin: 0 auto 40px auto;
  }
  main .block02__Contents--Single {
    width: auto;
    background: rgba(255, 255, 255, 0.8);
    position: static;
    transform: translateY(0%) translateX(0%);
    -webkit-transform: translateY(0%) translateX(0%);
  }
  main .block02__Contents.box02 .block02__Contents--Single {
    width: auto;
    background: rgba(255, 255, 255, 0.8);
    position: static;
    transform: translateY(0%) translateX(0%);
    -webkit-transform: translateY(0%) translateX(0%);
  }
  main .block02__Contents .inner {
    width: 84%;
    margin: 0 auto;
    padding: 35px 0;
  }
  main .block02__Contents .inner h3 {
    font-size: 6.5vw;
    line-height: 140%;
    margin-bottom: 30px;
    position: relative;
    vertical-align: middle;
    padding-left: 0;
    text-align: center;
  }
  main .block02__Contents .inner h3 span {
    font-size: 5vw;
  }
  main .block02__Contents .inner p {
    font-size: 4.7vw;
    line-height: 160%;
  }
  main .block02__Contents .inner p + p {
    padding-top: 14px;
  }
  main .block02 .box01 .block02__Contents--Single h3 {
    padding-top: 0;
    padding-bottom: 0;
  }
  main .block02 .box01 .block02__Contents--Single h3::before {
    content: "";
    display: block;
    background: url("../img/block02_logo01.png") left center no-repeat;
    background-size: 100% auto;
    width: 88px;
    height: 65px;
    vertical-align: middle;
    position: static;
    margin: 0 auto;
  }
  main .block02 .box02 .block02__Contents--Single h3::before {
    content: "";
    display: block;
    background: url("../img/block02_logo02.png") left center no-repeat;
    background-size: 100% auto;
    width: 88px;
    height: 65px;
    vertical-align: middle;
    position: static;
    margin: 0 auto;
  }
  main .block02 .box03 .block02__Contents--Single h3::before {
    content: "";
    display: block;
    background: url("../img/block02_logo03.png") left center no-repeat;
    background-size: 100% auto;
    width: 88px;
    height: 65px;
    vertical-align: middle;
    position: static;
    margin: 0 auto;
  }
  main .block03 {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    /* item */
    /* textLink */
    /* category01 */
    /* category02 */
    /* category03 */
    /* category05 */
  }
  main .block03 h2 {
    font-size: 6.5vw;
    line-height: 140%;
    padding: 9px 0;
    color: #64000E;
    text-align: center;
    background: url("../img/block03_title_bg.png") center top no-repeat;
    background-size: 100% auto;
  }
  main .block03__Item {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: stretch;
    justify-content: space-between;
    align-items: stretch;
  }
  main .block03__Item--Single {
    width: 100%;
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: stretch;
    justify-content: space-between;
    align-items: stretch;
    padding: 18px 20px;
    background: url("../img/block03_textbox_bg02.png") center bottom no-repeat;
    background-size: cover;
  }
  main .block03__Item--Single .icon {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 60px;
    height: 60px;
    z-index: 5;
  }
  main .block03__Item--Single .icon02 {
    position: absolute;
    top: -48px;
    right: -10px;
    width: 74px;
    height: 74px;
    display: none;
    z-index: 5;
  }
  main .block03__Item--Single .icon_free {
    position: absolute;
    bottom: -17px;
    right: 6px;
    width: 60px;
    height: 60px;
    z-index: 5;
    display: block;
  }
  main .block03__Item--Single .iconCategory04 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 60px;
    height: 60px;
    z-index: 5;
  }
  main .block03__Item--Single .iconCategoy05 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 60px;
    height: 60px;
    z-index: 5;
  }
  main .block03__Item--Single .image {
    width: 47.76%;
    position: relative;
    z-index: 2;
  }
  main .block03__Item--Single .infoBox {
    width: 46.2%;
    background: url("../img/block03_textbox_bg02.png") center bottom no-repeat;
    background-size: cover;
  }
  main .block03__Item--Single .infoBox.category01 {
    background: url("../img/block03_textbox_bg.png") center bottom no-repeat !important;
    background-size: cover;
  }
  main .block03__Item--Single .infoBox__Btn {
    margin-top: 18px;
  }
  main .block03__Item--Single .infoBox .itemInner {
    padding: 0;
    width: 100%;
    margin: 0 auto;
    position: relative;
    mix-blend-mode: normal;
  }
  main .block03__Item--Single .infoBox__Text {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: stretch;
    justify-content: space-between;
    align-items: stretch;
    padding: 0;
  }
  main .block03__Item--Single .infoBox__Text--Left {
    width: 75%;
  }
  main .block03__Item--Single .infoBox__Text--Left.w100 {
    width: 100%;
  }
  main .block03__Item--Single .infoBox__Text--Left h4 {
    line-height: 100%;
    font-size: 16px;
    line-height: 21px;
    font-weight: bold;
  }
  main .block03__Item--Single .infoBox__Text--Left p {
    line-height: 100%;
    font-size: 10px;
    line-height: 15px;
    padding-top: 6px;
  }
  main .block03__Item--Single .infoBox__Text--Right {
    width: 25%;
    text-align: center;
  }
  main .block03__Item--Single .infoBox__Text--Right p {
    font-weight: bold;
    color: #64000E;
    font-size: 25px;
    letter-spacing: -2px;
  }
  main .block03__Item.category02 {
    width: auto;
    margin: 0 auto;
  }
  main .block03__Item.category02 .block03__Item--Single {
    width: 100%;
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: stretch;
    justify-content: space-between;
    align-items: stretch;
  }
  main .block03__Item.category02 .block03__Item--Single .image {
    width: 47.76%;
  }
  main .block03__Item.category02 .block03__Item--Single .infoBox {
    width: 46.2%;
  }
  main .block03__Item.category02 .block03__Item--Single .infoBox .iconCategory02 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 60px;
    height: 60px;
    z-index: 5;
  }
  main .block03__Item.category02 .block03__Item--Single .infoBox__Text--Left {
    width: 100%;
  }
  main .block03__Item.category04 {
    width: auto;
    margin: 0 auto;
  }
  main .block03__Item.category04 .block03__Item--Single {
    width: auto;
    position: relative;
  }
  main .block03__Item.category05 .block03__Item--Single:nth-of-type(1) h4 {
    padding-bottom: 35px;
  }
  main .block03 .textLink {
    width: 64.8%;
    max-width: initial;
    margin: 30px auto 0 auto;
  }
  main .block03 .textLink:hover {
    opacity: 1.0;
  }
  main .block03__Category01 {
    width: 100%;
    max-width: initial;
    margin: 0 auto;
    padding: 55px 0 30px 0;
    background: url("../img/block03_crab_01_sp.png") center top no-repeat;
    background-size: 100% auto;
  }
  main .block03__Category01 h3 {
    width: 89.3%;
    max-width: initial;
    margin: 0 auto 22px auto;
  }
  main .block03__Category02 {
    width: 100%;
    max-width: initial;
    margin: 0 auto;
    padding: 45px 0 30px 0;
    background: url("../img/block03_crab_02_sp.png") center top no-repeat;
    background-size: 100% auto;
  }
  main .block03__Category02 h3 {
    width: 89.3%;
    max-width: initial;
    margin: 0 auto 22px auto;
  }
  main .block03__Category03 {
    width: 100%;
    max-width: initial;
    margin: 0 auto;
    padding: 45px 0 30px 0;
    background: url("../img/block03_crab_03_sp.png") center top no-repeat;
    background-size: 100% auto;
  }
  main .block03__Category03 h3 {
    width: 89.3%;
    max-width: initial;
    margin: 0 auto 22px auto;
  }
  main .block03__Category05 {
    width: 100%;
    max-width: 1004px;
    margin: 0 auto;
    padding: 45px 0 30px 0;
  }
  main .block03__Category05 h3 {
    width: 89.3%;
    max-width: initial;
    margin: 0 auto 22px auto;
  }
  main .block04 .title {
    padding: 55px 0 50px 0;
    position: relative;
    z-index: 1;
  }
  main .block04 .title::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../img/common_title_bg_sp.png") center top no-repeat;
    width: 113px;
    height: 180px;
    z-index: 3;
  }
  main .block04 .title.category01 {
    background: url("../img/block04_title01_bg_sp.png") center top no-repeat;
    background-size: cover;
  }
  main .block04 .title.category01 h2 {
    width: 41.0%;
    max-width: 152px;
    margin: 0 auto;
  }
  main .block04 .title.category02 {
    background: url("../img/block04_title02_bg_sp.png") center top no-repeat;
    background-size: cover;
  }
  main .block04 .title.category02 h2 {
    width: 41.0%;
    max-width: 152px;
    margin: 0 auto;
  }
  main .block04 .title.category03 {
    background: url("../img/block04_title03_bg_sp.png") center top no-repeat;
    background-size: cover;
  }
  main .block04 .title.category03 h2 {
    width: 51.2%;
    max-width: 192px;
    margin: 0 auto;
  }
  main .block04 .title.category04 {
    background: url("../img/block04_title04_bg.png") center top no-repeat;
    background-size: cover;
  }
  main .block04 .title.category04 h2 {
    width: 28%;
    max-width: 105px;
    margin: 0 auto;
  }
  main .block04 .title p {
    color: #fff;
    text-align: center;
    font-size: 14px;
  }
  main .block04 .inner {
    width: 89.3%;
    max-width: initial;
    margin: 0 auto;
    position: relative;
    z-index: 15;
    padding: 35px 0 0 0;
  }
  main .block04 h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 22px;
  }
  main .block04 h3 span {
    font-size: 15px;
  }
  main .block04__Contents {
    margin-bottom: 45px;
    position: relative;
    display: block;
  }
  main .block04__Contents .image {
    width: auto;
  }
  main .block04__Contents .box {
    width: auto;
    padding-top: 15px;
  }
  main .block04__Contents .box p.text {
    font-size: 15px;
    line-height: 28px;
    padding-bottom: 45px;
  }
  main .block04__Contents .box p.text span {
    font-size: 13px;
  }
  main .block04__Contents--Btn {
    width: auto;
    max-width: 388px;
    margin: 18px auto 0 auto;
    position: relative;
  }
  main .block04__Contents .itemBox {
    margin: 6px 0 0 0;
    background: url("../img/block04_box_bg.png") right top no-repeat;
    background-size: cover;
  }
  main .block04__Contents .itemBox .itemBoxInner {
    width: 89.6%;
    margin: 0 auto;
    padding: 20px 0;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.1em;
  }
  main .block04__Contents .itemBox h4 {
    background: url("../img/block04_box_text_bg.png") left top no-repeat;
    background-size: 7px 44px;
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
    padding-left: 22px;
    letter-spacing: 0;
  }
  main .block04__Contents .itemBox h4 span {
    display: inline-block;
    font-size: 13px;
    line-height: 18px;
  }
  main .block04__Contents .itemBox p {
    padding-left: 20px;
    font-size: 12px;
  }
  main .block04__Contents .itemBox p.price {
    color: #A40319;
    font-size: 32px;
    font-weight: bold;
    vertical-align: middle;
    text-align: right;
  }
  main .block04__Contents .itemBox p.price span.en {
    font-size: 18px;
  }
  main .block04__Contents .itemBox p.price span.icon {
    font-size: 12px;
    line-height: 100%;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.1em;
    background: #FF0000;
    display: inline-block;
    padding: 6px;
    vertical-align: middle;
    margin-right: 10px;
  }
  main .block05 {
    background: url("../img/block05_bg_sp.png") center top no-repeat;
    background-size: cover;
  }
  main .block05 .inner {
    width: 89.3%;
    max-width: initial;
    margin: 0 auto;
    text-align: center;
    padding: 55px 0 80px 0;
  }
  main .block05 h2 {
    color: #fff;
    font-size: 25px;
    padding-bottom: 12px;
  }
  main .block05 p {
    color: #fff;
    font-size: 13px;
    line-height: 23px;
  }
  main .block05 p.copy {
    font-size: 20px;
    padding-bottom: 30px;
  }
  main .block05__Link {
    width: 72.5%;
    margin: 60px auto 0 auto;
  }
  main .block05__Link a {
    display: block;
    webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    border-bottom: 2px solid #fff;
    color: #fff;
    font-size: 13px;
    text-align: center;
    font-weight: 600;
    padding: 0 0 12px 0;
    background: url("../img/arrow.svg") 97% 7px no-repeat;
    background-size: 6px 10px;
  }
  main .block05__Link a:hover {
    opacity: 0.7;
    background: url("../img/arrow.svg") 97% 7px no-repeat;
    background-size: 6px 10px;
  }
  main .block06 {
    padding: 60px 0 0 0;
  }
  main .block06 .inner {
    width: 89.3%;
    max-width: initial;
    margin: 0 auto;
    text-align: center;
  }
  main .block06 .logo {
    width: 53.7%;
    max-width: initial;
    margin: 0 auto 35px auto;
  }
  main .block06 p {
    font-size: 13px;
    line-height: 23px;
  }
  main .sliderWrapper {
    overflow: hidden;
    width: 100%;
    z-index: 15;
    position: relative;
  }
  main .slider {
    display: flex;
  }
  main .slider__inner {
    display: flex;
  }
  main .slider__item {
    margin: 0 6px;
    width: 160px;
  }
  main .slider__inner:first-child {
    animation: loop 90s linear infinite;
  }
  main .slider__inner:nth-child(2) {
    animation: loop2 90s -60s linear infinite;
  }
  main .slider__inner:last-child {
    animation: loop3 90s -30s linear infinite;
  }
  @keyframes loop {
    0% {
      transform: translateX(200%);
    }
    to {
      transform: translateX(-100%);
    }
  }
  @keyframes loop2 {
    0% {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-200%);
    }
  }
  @keyframes loop3 {
    0% {
      transform: translateX(0%);
    }
    to {
      transform: translateX(-300%);
    }
  }
  	/***********************************************************
  
  	 footer
  
  	***********************************************************/
  .footer {
    padding: 50px 0 20px 0;
    position: relative;
  }
  .footer .topLink {
    opacity: 1;
    position: fixed;
    right: 5px;
    bottom: 5px;
    z-index: 30;
    display: none;
  }
  .footer .topLink a {
    display: block;
    display: none;
  }
  .footer .topLink a img {
    width: 90px;
    height: 90px;
    margin: 0 auto;
  }
  .footer p {
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.1em;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
  }
  .footer p a {
    color: #000;
  }
  .footer p a:hover {
    opacity: 0.7;
  }
  .footer__Copy {
    padding-top: 20px;
  }
  .footer__Copy small {
    display: block;
    font-size: 10px;
    line-height: 15px;
    text-align: center;
    color: #000;
  }
}
