@charset "UTF-8";
/* --------------------------------
[コーディングルール]
・SMACSSでCSS設計
・基本classのみ使用し、idはアンカーやJSで使用
・class名、フォルダ名、ファイル名はハイフン(-）区切り
・メディアクエリーはPCファーストで、 @include max {} または @include min {} を使用
-------------------------------- */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

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

main {
  display: block;
}

html {
  font-size: 10px;
}

body {
  line-height: 1.5;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 1.3rem;
  color: #4d4d4d;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
}

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

@media screen and (min-width: 768px) {
  a:hover {
    color: #000;
  }
}

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

.l-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}

.l-footer-inner {
  background-color: #e9e6d9;
  text-align: center;
  padding: 50px 15px 35px;
}

@media screen and (max-width: 767px) {
  .l-footer-inner {
    padding: 25px 15px 22px;
  }
}

.l-footer-inner2 {
  background-color: #20b77b;
  padding: 52px 15px;
}

@media screen and (max-width: 767px) {
  .l-footer-inner2 {
    padding: 15px 15px;
  }
}

.u-over {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

@media screen and (min-width: 768px) {
  .u-over:hover {
    opacity: 0.8;
  }
}

.u-inline {
  display: inline;
}

.u-inline-block {
  display: inline-block;
}

.u-block {
  display: block;
}

.u-table {
  display: table;
}

.u-table-cell {
  display: table-cell;
}

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

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

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

.u-img-cover {
  display: block;
  height: 0;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

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

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

body .remodal-overlay {
  background-color: #fff;
}

body .remodal-wrapper {
  padding: 0;
}

body .remodal {
  max-width: none;
  margin: 0;
  padding: 110px 0 0;
  -webkit-transform: none;
          transform: none;
}

@media screen and (max-width: 767px) {
  body .remodal {
    padding-top: 45px;
  }
}

body .remodal-close {
  position: fixed;
  display: block;
  width: 60px;
  height: 60px;
  left: auto;
  right: 90px;
  top: 50px;
  z-index: 99;
}

@media screen and (max-width: 767px) {
  body .remodal-close {
    width: 30px;
    height: 30px;
    right: 20px;
    top: 20px;
  }
}

body .remodal-close:before {
  content: '';
  width: 60px;
  height: 60px;
  background: url(../img/remodal/close.svg);
  background-size: contain;
  border: #fff 1px solid;
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  body .remodal-close:before {
    width: 30px;
    height: 30px;
  }
}

.is-fade {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.is-fade.is-fade-end {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.is-fade.lazy {
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}

.is-fade-next {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.is-fade-next.is-fade-end {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.is-fade-next.lazy {
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}

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

.btn-day a {
  display: inline-block;
  color: #fff;
  font-size: 2rem;
  background-color: #20b77b;
  padding: 20px 25px 20px 15px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 767px) {
  .btn-day a {
    font-size: 1.3rem;
    padding: 12px 15px 12px 7px;
  }
}

.btn-day a:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 25px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: translate(0, -25%) rotate(-135deg);
          transform: translate(0, -25%) rotate(-135deg);
}

@media screen and (max-width: 767px) {
  .btn-day a:before {
    width: 7px;
    height: 7px;
    margin-right: 10px;
  }
}

.btn-buy {
  display: inline-block;
}

.btn-buy a {
  display: inline-block;
  border: 1px solid #20b77b;
  border-radius: 30px;
  color: #20b77b;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: "Raleway", sans-serif;
  padding: 0px 16px;
}

@media screen and (max-width: 767px) {
  .btn-buy a {
    font-size: 1.2rem;
    padding: 2px 15px;
  }
}

.hLogo {
  position: absolute;
  right: 75px;
  top: 85px;
}

@media screen and (max-width: 991px) {
  .hLogo {
    right: 30px;
    top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .hLogo {
    right: 18px;
    top: 18px;
  }
}

.hLogo img {
  width: 128px;
}

@media screen and (max-width: 991px) {
  .hLogo img {
    width: 100px;
  }
}

@media screen and (max-width: 767px) {
  .hLogo img {
    width: 57px;
  }
}

.fInfo-gotop {
  position: fixed;
  right: 88px;
  bottom: 88px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

@media screen and (max-width: 767px) {
  .fInfo-gotop {
    right: 10px;
    bottom: 35px;
  }
}

.fInfo-gotop.is-show {
  opacity: 1;
  pointer-events: auto;
}

.fInfo-gotop img {
  width: 60px;
  border: 1px solid #e9e6d9;
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  .fInfo-gotop img {
    width: 35px;
  }
}

.fInfo-txt1 {
  font-family: 'Open Sans Condensed';
  font-size: 1.5rem;
  margin-bottom: 2em;
}

@media screen and (max-width: 767px) {
  .fInfo-txt1 {
    font-size: 1rem;
  }
}

.fInfo-txt2 {
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  .fInfo-txt2 {
    font-size: .8rem;
  }
}

.fInfo-copy img {
  width: 353px;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .fInfo-copy img {
    width: 246px;
  }
}

.home-kv {
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .home-kv {
    margin-bottom: -454px;
  }
}

@media screen and (max-width: 767px) {
  .home-kv {
    margin-bottom: 0;
  }
}

.home-kvInner {
  padding-bottom: 400px;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: center;
  background-color: #beb898;
  background-image: url(../img/home/kv-img1.jpg), url(../img/home/kv-img2.jpg);
  background-repeat: no-repeat;
  background-position: center top, center bottom;
  background-size: 1712px auto;
}

@media screen and (max-width: 991px) {
  .home-kvInner {
    margin: 0 -13%;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: center top;
            transform-origin: center top;
  }
}

@media screen and (max-width: 767px) {
  .home-kvInner {
    padding-bottom: 125px;
    background-color: #c8c2a2;
    background-image: url(../img/home/kv-img1-sp.jpg), url(../img/home/kv-img2-sp.jpg);
    background-size: 420px auto;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.home-kvWe {
  margin-bottom: -22px;
  padding: 200px 0 0;
}

@media screen and (max-width: 767px) {
  .home-kvWe {
    margin-bottom: 5px;
    padding-top: 70px;
  }
}

.home-kvWe img {
  width: 737px;
}

@media screen and (max-width: 767px) {
  .home-kvWe img {
    width: 221px;
  }
}

.home-kvTtl {
  font-size: 9.4rem;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 90px;
}

@media screen and (max-width: 767px) {
  .home-kvTtl {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
  }
}

.home-kvLead {
  font-size: 2.5rem;
  color: #fff;
  line-height: 1.77;
  letter-spacing: .2em;
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .home-kvLead {
    font-size: 1.2rem;
    line-height: 1.67;
    margin-bottom: 10px;
  }
}

.home-kvLead2 {
  font-size: 2.8rem;
  color: #fff;
  line-height: 1.77;
  letter-spacing: .2em;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .home-kvLead2 {
    font-size: 1.2rem;
    line-height: 1.67;
    margin-bottom: 10px;
  }
}

.home-kvLeadEn {
  position: relative;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  padding-bottom: 115px;
}

@media screen and (max-width: 767px) {
  .home-kvLeadEn {
    font-size: 1.4rem;
    padding-bottom: 45px;
  }
}

.home-kvLeadEn:after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  bottom: 55px;
  background-color: #fff;
  height: 1px;
  width: 140px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .home-kvLeadEn:after {
    width: 45px;
    bottom: 15px;
  }
}

.home-kvLeadEn img {
  width: 407px;
}

@media screen and (max-width: 767px) {
  .home-kvLeadEn img {
    width: 155px;
  }
}

.home-kvTtl2 {
  font-size: 1rem;
  color: #20b77b;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .home-kvTtl2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}

.home-kvTtl2 img {
  width: 553px;
}

@media screen and (max-width: 767px) {
  .home-kvTtl2 img {
    width: 216px;
  }
}

.home-kvDate {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .home-kvDate {
    margin-bottom: 18px;
  }
}

.home-kvDate img {
  width: 557px;
}

@media screen and (max-width: 767px) {
  .home-kvDate img {
    width: 214px;
  }
}

.home-kvDes {
  font-size: 2.2rem;
  line-height: 1.75;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .home-kvDes {
    font-size: 1.2rem;
  }
}

.home-day {
  margin-top: -820px;
  margin-bottom: -950px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .home-day {
    margin: 0;
  }
}

.home-dayInner {
  padding-top: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

@media screen and (max-width: 767px) {
  .home-dayInner {
    padding-top: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.home-dayBlock {
  padding: 50px 0 135px;
}

@media screen and (max-width: 767px) {
  .home-dayBlock {
    padding: 40px 0 40px;
  }
}

.home-dayTtl2 {
  font-size: 4.6rem;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  color: #c4bd9d;
  line-height: 1.1;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .home-dayTtl2 {
    font-size: 1.6rem;
  }
}

.home-dayTtl2 img {
  height: 33px;
}

@media screen and (max-width: 767px) {
  .home-dayTtl2 img {
    height: 13px;
  }
}

.home-dayTtl {
  font-size: 7.2rem;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  color: #20b77b;
  line-height: 1.1;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .home-dayTtl {
    font-size: 3rem;
  }
}

.home-daySpec {
  margin-top: 5px;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .home-daySpec {
    font-size: 1.1rem;
  }
}

.home-dayIllusts {
  position: relative;
  width: 0;
  margin-left: 50%;
}

.home-dayIllusts-1 {
  height: 1486px;
}

.home-dayIllusts-2 {
  height: 1092px;
}

.home-dayIllusts-3 {
  height: 1412px;
}

.home-dayIllusts-4 {
  height: 1008px;
}

.home-dayIllusts-5 {
  height: 968px;
}

.home-dayIllusts-6 {
  height: 1440px;
}

@media screen and (max-width: 767px) {
  .home-dayIllusts-1 {
    height: 916px;
  }
  .home-dayIllusts-2 {
    height: 760px;
  }
  .home-dayIllusts-3 {
    height: 710px;
  }
  .home-dayIllusts-4 {
    height: 435px;
  }
  .home-dayIllusts-5 {
    height: 930px;
  }
  .home-dayIllusts-6 {
    height: 608px;
  }
}

.home-dayIllust {
  position: absolute;
}

.home-dayIllust-1-1 {
  left: -760px;
  top: 40px;
}

.home-dayIllust-1-2 {
  left: 30px;
  top: 150px;
}

.home-dayIllust-1-3 {
  left: -330px;
  top: 440px;
}

.home-dayIllust-1-s {
  left: -500px;
  top: 960px;
}

.home-dayIllust-2-1 {
  left: -690px;
  top: -10px;
}

.home-dayIllust-2-2 {
  left: -530px;
  top: -20px;
}

.home-dayIllust-2-3 {
  left: 300px;
  top: 450px;
}

.home-dayIllust-2-s {
  left: 348px;
  top: 4px;
}

.home-dayIllust-3-1 {
  left: 10px;
  top: -20px;
}

.home-dayIllust-3-2 {
  left: -830px;
  top: 240px;
}

.home-dayIllust-3-3 {
  left: 70px;
  top: 665px;
}

.home-dayIllust-3-s {
  left: 223px;
  top: 580px;
}

.home-dayIllust-4-1 {
  left: -640px;
  top: 20px;
}

.home-dayIllust-4-2 {
  left: -710px;
  top: 130px;
}

.home-dayIllust-5-1 {
  left: -760px;
  top: 290px;
}

.home-dayIllust-5-2 {
  left: -290px;
  top: 50px;
}

.home-dayIllust-5-3 {
  left: 325px;
  top: 80px;
}

.home-dayIllust-6-1 {
  left: -500px;
  top: 135px;
}

.home-dayIllust-6-2 {
  left: -260px;
  top: 155px;
}

.home-dayIllust-6-3 {
  left: -620px;
  top: 875px;
}

.home-dayIllust-6-s {
  left: -222px;
  top: 107px;
}

.home-dayIllust-1-1 {
  width: calc(1162px / 2);
}

.home-dayIllust-1-2 {
  width: calc(1404px / 2);
}

.home-dayIllust-1-3 {
  width: calc(1260px / 2);
}

.home-dayIllust-1-s {
  width: calc(560px / 2);
}

.home-dayIllust-2-1 {
  width: calc(540px / 2);
}

.home-dayIllust-2-2 {
  width: calc(2350px / 2);
}

.home-dayIllust-2-3 {
  width: calc(858px / 2);
}

.home-dayIllust-2-s {
  width: calc(382px / 2);
}

.home-dayIllust-3-1 {
  width: calc(658px / 2);
}

.home-dayIllust-3-2 {
  width: calc(3102px / 2);
}

.home-dayIllust-3-3 {
  width: calc(1606px / 2);
}

.home-dayIllust-3-s {
  width: calc(674px / 2);
}

.home-dayIllust-4-1 {
  width: calc(1180px / 2);
}

.home-dayIllust-4-2 {
  width: calc(3016px / 2);
}

.home-dayIllust-5-1 {
  width: calc(1160px / 2);
}

.home-dayIllust-5-2 {
  width: calc(2244px / 2);
}

.home-dayIllust-5-3 {
  width: calc(902px / 2);
}

.home-dayIllust-6-1 {
  width: calc(878px / 2);
}

.home-dayIllust-6-2 {
  width: calc(2070px / 2);
}

.home-dayIllust-6-3 {
  width: calc(1044px / 2);
}

.home-dayIllust-6-s {
  width: calc(440px / 2);
}

@media screen and (max-width: 767px) {
  .home-dayIllust-1-1 {
    left: -189px;
    top: 40px;
  }
  .home-dayIllust-1-2 {
    left: -75px;
    top: 346px;
  }
  .home-dayIllust-1-3 {
    left: -83px;
    top: 560px;
  }
  .home-dayIllust-1-s {
    left: -122px;
    top: 787px;
  }
  .home-dayIllust-2-1 {
    left: -126px;
    top: 7px;
  }
  .home-dayIllust-2-2 {
    left: -186px;
    top: 300px;
  }
  .home-dayIllust-2-3 {
    left: -10px;
    top: 540px;
  }
  .home-dayIllust-2-s {
    left: 100px;
    top: 306px;
  }
  .home-dayIllust-3-1 {
    left: -40px;
    top: 40px;
  }
  .home-dayIllust-3-2 {
    left: -50vw;
    top: 289px;
  }
  .home-dayIllust-3-3 {
    left: -95px;
    top: 426px;
  }
  .home-dayIllust-3-s {
    left: 30px;
    top: 360px;
  }
  .home-dayIllust-4-1 {
    left: -130px;
    top: 33px;
  }
  .home-dayIllust-4-2 {
    left: -164px;
    top: 222px;
  }
  .home-dayIllust-5-1 {
    left: -149px;
    top: 28px;
  }
  .home-dayIllust-5-2 {
    left: -99px;
    top: 290px;
  }
  .home-dayIllust-5-3 {
    left: -137px;
    top: 557px;
  }
  .home-dayIllust-6-1 {
    left: -143px;
    top: 48px;
  }
  .home-dayIllust-6-2 {
    left: -132px;
    top: 100px;
  }
  .home-dayIllust-6-3 {
    left: -120px;
    top: 400px;
  }
  .home-dayIllust-6-s {
    left: -40px;
    top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .home-dayIllust-1-1 {
    width: calc(1162px / 4);
  }
  .home-dayIllust-1-2 {
    width: calc(1404px / 6.2);
  }
  .home-dayIllust-1-3 {
    width: calc(1260px / 6.2);
  }
  .home-dayIllust-1-s {
    width: calc(560px / 6.5);
  }
  .home-dayIllust-2-1 {
    width: calc(540px / 3.5);
  }
  .home-dayIllust-2-2 {
    width: calc(2350px / 6);
  }
  .home-dayIllust-2-3 {
    width: calc(858px / 5.4);
  }
  .home-dayIllust-2-s {
    width: calc(382px / 6);
  }
  .home-dayIllust-3-1 {
    width: calc(658px / 4.8);
  }
  .home-dayIllust-3-2 {
    width: 100vw;
  }
  .home-dayIllust-3-3 {
    width: calc(1606px / 5.5);
  }
  .home-dayIllust-3-s {
    left: 14vw;
    top: calc(360px + 4vw);
    width: 25.6vw;
  }
  .home-dayIllust-4-1 {
    width: calc(1180px / 6);
  }
  .home-dayIllust-4-2 {
    width: calc(3016px / 9);
  }
  .home-dayIllust-5-1 {
    width: calc(1160px / 4.8);
  }
  .home-dayIllust-5-2 {
    width: calc(2244px / 5.7);
  }
  .home-dayIllust-5-3 {
    width: calc(902px / 5.8);
  }
  .home-dayIllust-6-1 {
    width: calc(878px / 6);
  }
  .home-dayIllust-6-2 {
    width: calc(2070px / 7);
  }
  .home-dayIllust-6-3 {
    width: calc(1044px / 5);
  }
  .home-dayIllust-6-s {
    width: calc(440px / 6.5);
  }
}

.home-dayIllust img {
  width: 100%;
}

.home-dayModalInner {
  padding-bottom: 95px;
}

@media screen and (max-width: 767px) {
  .home-dayModalInner {
    padding-bottom: 0px;
  }
}

.home-dayModalImg {
  padding: 50px 15px 100px;
}

@media screen and (max-width: 767px) {
  .home-dayModalImg {
    padding: 10px 15px 20px;
  }
}

.home-dayModalImg-1 img {
  width: 327px;
}

.home-dayModalImg-2 img {
  width: 482px;
}

.home-dayModalImg-3 img {
  width: 568px;
}

.home-dayModalImg-4 img {
  width: 604px;
}

.home-dayModalImg-5 img {
  width: 345px;
}

.home-dayModalImg-6 img {
  width: 337px;
}

@media screen and (max-width: 767px) {
  .home-dayModalImg-1 img {
    width: calc(327px * .6);
  }
  .home-dayModalImg-2 img {
    width: calc(482px * .6);
  }
  .home-dayModalImg-3 img {
    width: calc(568px * .6);
  }
  .home-dayModalImg-4 img {
    width: calc(604px * .6);
  }
  .home-dayModalImg-5 img {
    width: calc(345px * .6);
  }
  .home-dayModalImg-6 img {
    width: calc(337px * .6);
  }
}

.home-present {
  background-color: #e9e6d9;
  padding: 110px 15px 120px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .home-present {
    padding: 55px 15px 50px;
  }
}

.home-presentTtl {
  font-size: 6.4rem;
  color: #20b77b;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .home-presentTtl {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}

.home-presentTtl img {
  width: 553px;
}

@media screen and (max-width: 767px) {
  .home-presentTtl img {
    width: 216px;
  }
}

.home-presentDate {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .home-presentDate {
    margin-bottom: 18px;
  }
}

.home-presentDate img {
  width: 557px;
}

@media screen and (max-width: 767px) {
  .home-presentDate img {
    width: 214px;
  }
}

.home-presentDes {
  font-size: 2.2rem;
  line-height: 1.75;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .home-presentDes {
    margin-bottom: 35px;
    font-size: 1.2rem;
  }
}

.home-presentImg {
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .home-presentImg {
    margin-bottom: 50px;
  }
}

.home-presentImg img {
  width: 288px;
}

@media screen and (max-width: 767px) {
  .home-presentImg img {
    width: 180px;
  }
}

.home-presentNote {
  text-align: left;
  max-width: 910px;
  margin: 0 auto;
}

.home-presentNote p {
  font-size: 1.1rem;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .home-presentNote p {
    font-size: .8rem;
  }
}

.home-product {
  overflow: hidden;
  padding-top: 100px;
  margin-top: -100px;
}

.home-productInner {
  position: relative;
  padding: 160px 0 85px;
}

@media screen and (max-width: 767px) {
  .home-productInner {
    padding: 35px 0 25px;
  }
}

.home-productImg {
  position: absolute;
  left: calc(50vw + 270px);
  top: -60px;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .home-productImg {
    top: -25px;
    left: auto;
    right: 10px;
  }
}

.home-productImg img {
  width: 253px;
  max-width: none;
}

@media screen and (max-width: 767px) {
  .home-productImg img {
    width: 95px;
  }
}

.home-productSub {
  font-size: 2rem;
  border-top: 1px solid #20b77b;
  border-bottom: 1px solid #20b77b;
  color: #20b77b;
  padding: 5px 0;
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .home-productSub {
    font-size: 1.4rem;
    margin: 0 20px;
  }
}

.home-productTtl {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 5.4rem;
  color: #20b77b;
  margin: 40px 0 30px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .home-productTtl {
    font-size: 3rem;
    margin: 15px 0 15px;
  }
}

.home-productNav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 18px;
}

.home-productNav ul li {
  margin: 0 8px;
}

@media screen and (max-width: 767px) {
  .home-productNav ul li {
    width: 33.33%;
    margin: 0;
    padding: 0 2px;
  }
}

.home-productNav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 190px;
  height: 65px;
  background-color: #20b77b;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 767px) {
  .home-productNav ul li a {
    font-size: 1.1rem;
    width: auto;
    height: auto;
    height: 40px;
  }
}

.home-productNav ul li a span {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .home-productNav ul li a span {
    position: relative;
    padding-bottom: 6px;
  }
}

.home-productNav ul li a span:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 15px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: translate(0, -50%) rotate(-45deg);
          transform: translate(0, -50%) rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .home-productNav ul li a span:before {
    width: 5px;
    height: 5px;
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-right: 0;
  }
}

.home-productTtl2 {
  color: #20b77b;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.4;
  margin: 136px 15px 76px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .home-productTtl2 {
    font-size: 2rem;
    margin: 90px 15px 45px;
  }
}

.home-productTtl2 span {
  display: inline-block;
  border-bottom: 1px solid #20b77b;
}

.home-productTtl2-first {
  margin-top: 95px;
}

@media screen and (max-width: 767px) {
  .home-productTtl2-first {
    margin-top: 90px;
  }
}

.items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 992px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .items {
    padding: 0 5%;
  }
}

.items-item {
  width: 25%;
  padding: 0 1.8% 5.5%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .items-item {
    width: 50%;
    padding: 0 1% 15%;
  }
}

.items-3 {
  max-width: 930px;
}

.items-3 .items-item {
  width: 33.33%;
}

@media screen and (max-width: 767px) {
  .items-3 .items-item {
    width: 50%;
  }
}

.items-itemImg {
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .items-itemImg {
    margin-bottom: 5px;
  }
}

.items-itemName {
  font-family: 'Open Sans Condensed';
  font-size: 1.9rem;
}

@media screen and (max-width: 767px) {
  .items-itemName {
    font-size: 1.4rem;
  }
}

.items-itemCat {
  font-family: 'Open Sans Condensed';
  margin-bottom: 10px;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .items-itemCat {
    font-size: 1rem;
  }
}

.anime-fue {
  -webkit-animation: fue 2s infinite;
          animation: fue 2s infinite;
}

@-webkit-keyframes fue {
  0% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}

@keyframes fue {
  0% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}

.anime-ball.is-fade-end {
  -webkit-animation: ball .9s linear;
          animation: ball .9s linear;
}

@media screen and (max-width: 767px) {
  .anime-ball.is-fade-end {
    -webkit-animation: ball-sp .5s linear;
            animation: ball-sp .5s linear;
  }
}

@-webkit-keyframes ball {
  0% {
    -webkit-transform: translate(500px, -100px);
            transform: translate(500px, -100px);
  }
  50% {
    -webkit-transform: translate(200px, -130px);
            transform: translate(200px, -130px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes ball {
  0% {
    -webkit-transform: translate(500px, -100px);
            transform: translate(500px, -100px);
  }
  50% {
    -webkit-transform: translate(200px, -130px);
            transform: translate(200px, -130px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@-webkit-keyframes ball-sp {
  0% {
    -webkit-transform: translate(70px, -30px);
            transform: translate(70px, -30px);
  }
  50% {
    -webkit-transform: translate(35px, -50px);
            transform: translate(35px, -50px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes ball-sp {
  0% {
    -webkit-transform: translate(70px, -30px);
            transform: translate(70px, -30px);
  }
  50% {
    -webkit-transform: translate(35px, -50px);
            transform: translate(35px, -50px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.is-fade-end .anime-ball2 {
  -webkit-animation: ball2 .3s 3 linear;
          animation: ball2 .3s 3 linear;
}

@-webkit-keyframes ball2 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes ball2 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.anime-ball3 {
  -webkit-animation: ball3 .9s infinite linear;
          animation: ball3 .9s infinite linear;
}

@-webkit-keyframes ball3 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes ball3 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.anime-ball3 {
  -webkit-animation: ball3 .9s infinite linear;
          animation: ball3 .9s infinite linear;
}

@keyframes ball3 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes kani {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  35% {
    -webkit-transform: translate(110px, -130px);
            transform: translate(110px, -130px);
  }
  47% {
    -webkit-transform: translate(100px, -160px);
            transform: translate(100px, -160px);
  }
  62% {
    -webkit-transform: translate(130px, -200px);
            transform: translate(130px, -200px);
  }
  68% {
    -webkit-transform: translate(150px, -200px);
            transform: translate(150px, -200px);
  }
  100% {
    -webkit-transform: translate(270px, -300px);
            transform: translate(270px, -300px);
  }
}

@keyframes kani {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  35% {
    -webkit-transform: translate(110px, -130px);
            transform: translate(110px, -130px);
  }
  47% {
    -webkit-transform: translate(100px, -160px);
            transform: translate(100px, -160px);
  }
  62% {
    -webkit-transform: translate(130px, -200px);
            transform: translate(130px, -200px);
  }
  68% {
    -webkit-transform: translate(150px, -200px);
            transform: translate(150px, -200px);
  }
  100% {
    -webkit-transform: translate(270px, -300px);
            transform: translate(270px, -300px);
  }
}

@-webkit-keyframes kani-sp {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  35% {
    -webkit-transform: translate(53px, -39px);
            transform: translate(53px, -39px);
  }
  47% {
    -webkit-transform: translate(50px, -48px);
            transform: translate(50px, -48px);
  }
  62% {
    -webkit-transform: translate(59px, -60px);
            transform: translate(59px, -60px);
  }
  68% {
    -webkit-transform: translate(65px, -60px);
            transform: translate(65px, -60px);
  }
  100% {
    -webkit-transform: translate(101px, -90px);
            transform: translate(101px, -90px);
  }
}

@keyframes kani-sp {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  35% {
    -webkit-transform: translate(53px, -39px);
            transform: translate(53px, -39px);
  }
  47% {
    -webkit-transform: translate(50px, -48px);
            transform: translate(50px, -48px);
  }
  62% {
    -webkit-transform: translate(59px, -60px);
            transform: translate(59px, -60px);
  }
  68% {
    -webkit-transform: translate(65px, -60px);
            transform: translate(65px, -60px);
  }
  100% {
    -webkit-transform: translate(101px, -90px);
            transform: translate(101px, -90px);
  }
}

.anime-kani2 {
  -webkit-animation: kani2 .4s infinite linear;
          animation: kani2 .4s infinite linear;
}

@-webkit-keyframes kani2 {
  0% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
}

@keyframes kani2 {
  0% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
}

.anime-tori {
  -webkit-transform: translate(20px, 0) !important;
          transform: translate(20px, 0) !important;
}

@media screen and (max-width: 767px) {
  .anime-tori {
    -webkit-transform: translate(2px, 5px);
            transform: translate(2px, 5px);
  }
}

.anime-tori.is-fade-end {
  -webkit-animation: tori3 1s ease-out;
          animation: tori3 1s ease-out;
}

@media screen and (max-width: 767px) {
  .anime-tori.is-fade-end {
    -webkit-animation: tori3-sp 1s ease-out;
            animation: tori3-sp 1s ease-out;
  }
}

@-webkit-keyframes tori3 {
  0% {
    -webkit-transform: translate(300px, -100px);
            transform: translate(300px, -100px);
  }
  100% {
    -webkit-transform: translate(20px, 0);
            transform: translate(20px, 0);
  }
}

@keyframes tori3 {
  0% {
    -webkit-transform: translate(300px, -100px);
            transform: translate(300px, -100px);
  }
  100% {
    -webkit-transform: translate(20px, 0);
            transform: translate(20px, 0);
  }
}

@-webkit-keyframes tori3-sp {
  0% {
    -webkit-transform: translate(150px, -50px);
            transform: translate(150px, -50px);
  }
  100% {
    -webkit-transform: translate(2px, 5px);
            transform: translate(2px, 5px);
  }
}

@keyframes tori3-sp {
  0% {
    -webkit-transform: translate(150px, -50px);
            transform: translate(150px, -50px);
  }
  100% {
    -webkit-transform: translate(2px, 5px);
            transform: translate(2px, 5px);
  }
}

.anime-tori.is-ani2 {
  -webkit-animation: tori 1.6s infinite alternate linear;
          animation: tori 1.6s infinite alternate linear;
}

@media screen and (max-width: 767px) {
  .anime-tori.is-ani2 {
    -webkit-animation: tori-sp 1.6s infinite alternate linear;
            animation: tori-sp 1.6s infinite alternate linear;
  }
}

@-webkit-keyframes tori {
  0% {
    -webkit-transform: translate(20px, 0);
            transform: translate(20px, 0);
  }
  100% {
    -webkit-transform: translate(-35px, 10px);
            transform: translate(-35px, 10px);
  }
}

@keyframes tori {
  0% {
    -webkit-transform: translate(20px, 0);
            transform: translate(20px, 0);
  }
  100% {
    -webkit-transform: translate(-35px, 10px);
            transform: translate(-35px, 10px);
  }
}

@-webkit-keyframes tori-sp {
  0% {
    -webkit-transform: translate(2px, 5px);
            transform: translate(2px, 5px);
  }
  100% {
    -webkit-transform: translate(-21px, 10px);
            transform: translate(-21px, 10px);
  }
}

@keyframes tori-sp {
  0% {
    -webkit-transform: translate(2px, 5px);
            transform: translate(2px, 5px);
  }
  100% {
    -webkit-transform: translate(-21px, 10px);
            transform: translate(-21px, 10px);
  }
}

.is-ani2 .anime-tori2 {
  -webkit-animation: tori2 0.2s infinite alternate cubic-bezier(0.33, 1, 0.68, 1);
          animation: tori2 0.2s infinite alternate cubic-bezier(0.33, 1, 0.68, 1);
}

@media screen and (max-width: 767px) {
  .is-ani2 .anime-tori2 {
    -webkit-animation: tori2-sp 0.2s infinite alternate cubic-bezier(0.33, 1, 0.68, 1);
            animation: tori2-sp 0.2s infinite alternate cubic-bezier(0.33, 1, 0.68, 1);
  }
}

@-webkit-keyframes tori2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, -20px);
            transform: translate(0, -20px);
  }
}

@keyframes tori2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, -20px);
            transform: translate(0, -20px);
  }
}

@-webkit-keyframes tori2-sp {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, -12px);
            transform: translate(0, -12px);
  }
}

@keyframes tori2-sp {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, -12px);
            transform: translate(0, -12px);
  }
}

/* --------------------------------
[サンプルコード]
-----------------------------------
    白文字が太いとき
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;

    画像文字を縮小してぼやけるとき
    backface-visibility;
    -webkit-backface-visibility;

    自動カーニング
    font-feature-settings : 'palt';

    両端揃え
    text-align: justify;
    text-justify: inter-ideograph;

    クリアーフィックス
    .clearfix {zoom: 1;}
    .clearfix:after {
      content: "";
      display: block;
      clear: both;
    }

    スマホ画像切り替え
    <picture>
      <source media="(max-width:767px)" srcset="image_sp.jpg">
      <img src="image.jpg" alt="">
    </picture>

    ダミー画像 GIF形式（39bytes）
    <img src="data:image/gif;base64,R0lGODlhAQABAGAAACH5BAEKAP8ALAAAAAABAAEAAAgEAP8FBAA7" alt="" height="1" width="1">

    NotoSans
    <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap" rel="stylesheet">
    <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
-------------------------------- */

/*# sourceMappingURL=styles.css.map */
