@charset "UTF-8";
/*
=======================================
Reset CSS
=======================================
*/
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, main, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}

img {
  border: 0;
  width: 100%;
  height: auto;
}

ul, ol {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, input, select, textarea {
  vertical-align: bottom;
}

a {
  color: #101010;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
  cursor: pointer;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

/* clearfix */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  zoom: 1;
}

/*
=========================================
animation
=========================================
*/
.sa {
  opacity: 0;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.sa.show {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.sa-lr {
  -webkit-transform: translate(-100px, 0);
  -ms-transform: translate(-100px, 0);
  transform: translate(-100px, 0);
}

.sa-rl {
  -webkit-transform: translate(100px, 0);
  -ms-transform: translate(100px, 0);
  transform: translate(100px, 0);
}

.sa-up {
  -webkit-transform: translate(0, 40px);
  -ms-transform: translate(0, 40px);
  transform: translate(0, 40px);
}

.sa-down {
  -webkit-transform: translate(0, -40px);
  -ms-transform: translate(0, -40px);
  transform: translate(0, -40px);
}

/*
=========================================
Base Layout
=========================================
*/
body {
  background: #fff;
  color: #101010;
  font-family: 'Karla','游ゴシック体', 'YuGothic', '游ゴシック', 'Yu Gothic', 'メイリオ', sans-serif;
  font-weight: 500;
  line-height: 1.8;
  font-size: 1.4rem;
  background-image: url("../img/bg.png");
}

@media screen and (min-width: 769px) {
  body {
    font-size: 1.7em;
  }
}

main, article {
  width: 100%;
  margin: 0 auto;
}

/*container*/
.container {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1120px;
}

.container::after {
  content: "";
  display: block;
  clear: both;
}

::-moz-selection {
  background: #000;
  color: #fff;
}

::selection {
  background: #000;
  color: #fff;
}

.heading {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;
}

.txt-just {
  text-align: justify;
  text-justify: inter-ideograph;
}

.img-radius {
  border-radius: 10px;
}

/*
=========================================
Modules（Block）
========================================= */
.header {
  background: #fff;
  margin: 0 auto;
}

.header__title, .header__img {
  display: none;
}

.lead-grid {
  padding: 48px 0;
}

.lead-grid__head {
  letter-spacing: 0.2em;
}

.lead-grid__txt {
  text-align: left;
  padding-top: 24px;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .header__img {
    display: block;
    max-width: 1280px;
    margin: 0 auto;
  }
  .header__sp {
    display: none;
  }
  .lead-grid {
    padding: 96px 0;
  }
  .lead-grid__head {
    font-size: 2.4rem;
  }
  .lead-grid__txt {
    font-size: 1.7rem;
    padding-top: 32px;
    text-align: center;
  }
  .pc-break {
    display: none;
  }
}

/*contents-grid
--------------------*/
.contents-grid {
  font-weight: 600;
}

.contents-grid__body {
  background: #fff;
}

.contents-grid__head {
  font-family: 'Oswald', sans-serif;
  padding: 2px 0;
  background: #101010;
  color: #fff;
  font-weight: 500;
}

.contents-grid ul {
  padding: 8px;
}

.contents-grid__item {
  padding: 12px 8px;
  line-height: 1.5;
  border-bottom: 2px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contents-grid__item:last-child {
  border-bottom: 0;
}

.contents-grid__txt {
  letter-spacing: 0.1em;
  margin-right: 16px;
}

.contents-grid__btn {
  display: inline-block;
  padding: 5px 12px 3px;
  border-radius: 3px;
  background: #fff000;
  color: #101010;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

.contents-grid__btn:hover {
  color: #fff;
  background: #101010;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

@media screen and (min-width: 769px) {
  .contents-grid ul {
    padding: 8px 24px;
  }
  .contents-grid__item {
    padding: 12px 24px;
  }
  .contents-grid__head {
    padding: 6px 0;
    font-size: 2.2rem;
  }
  .contents-grid__txt {
    font-size: 1.8rem;
    padding: 8px 0;
  }
  .contents-grid__btn {
    font-size: 1.3rem;
  }
}

/*Scene-grid
--------------------*/
.square {
  display: inline-block;
  border: 2px solid #000;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
  margin-top: -4px;
}

.point-title {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #fff000));
  background: -webkit-linear-gradient(transparent 60%, #fff000 0%);
  background: -o-linear-gradient(transparent 60%, #fff000 0%);
  background: linear-gradient(transparent 60%, #fff000 0%);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.point {
  display: inline-block;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  padding: 0px 6px;
  border-radius: 2px;
  margin-bottom: 8px;
  color: #fff;
  background: #101010;
  margin-bottom: 10px;
  position: relative;
}

.point::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #101010 transparent transparent transparent;
  border-width: 6px 6px 0 6px;
}

.scene-grid__head {
  display: none;
}

.scene-grid__body01 {
  margin-top: 56px;
  border-bottom: 3px solid #101010;
}

.scene-grid__body01__head {
  margin-bottom: 32px;
  text-align: center;
}

.scene-grid__body01__category-name {
  font-size: 1.2rem;
  font-weight: 700;
}

.scene-grid__body01__category-no {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  margin-top: -8px;
  margin-bottom: 18px;
  position: relative;
}

.scene-grid__body01__category-no::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  display: inline-block;
  width: 16px;
  height: 2px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #101010;
}

.scene-grid__body01__contents {
  padding-top: 12px;
}

.scene-grid__body01__txtwrap {
  padding-top: 32px;
}

.scene-grid__body01__txt-head {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 2rem;
  border-bottom: 2px dotted #999;
  padding-bottom: 4px;
}

.scene-grid__body01__point-wrap {
  padding-bottom: 32px;
}

.scene-grid__body01__point {
  padding-top: 24px;
}

.scene-grid__body01__point-txt {
  padding-top: 10px;
}

.scene-grid__body01__item03-img {
  margin: 16px auto 32px;
}

.scene-grid__body02 {
  margin: 16px auto 0;
  border: 4px solid #101010;
  background: #fff;
}

.scene-grid__body02__head {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  padding-top: 24px;
  margin: 0 auto 32px;
  position: relative;
}

.scene-grid__body02__head::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  display: inline-block;
  width: 32px;
  height: 2px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #101010;
}

.scene-grid__body02__img {
  padding: 0 12px;
}

.scene-grid__body02__img-col {
  margin-top: 8px;
}

.scene-grid__body02__txt {
  padding: 24px 16px 32px;
}

.scene-grid__body02__txt:last-child {
  padding-bottom: 0;
}

.scene-grid__body03 {
  background: #A2C5C9;
  margin-top: 48px;
  padding-top: 32px;
  padding-bottom: 32px;
  position: relative;
}

.scene-grid__body03::before {
  content: "";
  position: absolute;
  right: 0;
  top: -16px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: transparent transparent #A2C5C9  transparent;
  border-width: 0 16px 16px 16px;
}

.scene-grid__body03__head {
  color: #fff;
  letter-spacing: 0.1em;
}

.scene-grid__body03__item {
  margin: 0 15px;
  padding-top: 24px;
}

.scene-grid__body03__img {
  border: 8px solid #fff;
}

.scene-grid__body03__txt {
  margin-top: 24px;
  line-height: 1.8;
}

.scene-grid .item03__img {
  margin-top: 16px;
}

@media screen and (min-width: 769px) {
  .point-title {
    font-size: 2rem;
  }
  .point {
    display: inline-block;
    font-size: 1.4rem;
  }
  .flex-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 24px;
  }
  .max-w {
    max-width: 880px;
    margin: 0 auto;
  }
  .max-w2 {
    max-width: 504px;
    margin: 0 auto;
  }
  .scene-grid__body01 {
    padding-top: 32px;
  }
  .scene-grid__body01__category-no {
    font-size: 3rem;
  }
  .scene-grid__body01__category-name {
    font-size: 1.6rem;
  }
  .scene-grid__body01__title {
    padding-top: 8px;
    font-size: 2.6rem;
  }
  .scene-grid__body01__img {
    width: 64%;
  }
  .scene-grid__body01__contents {
    min-width: 360px;
    margin-left: 28px;
    padding-top: 0;
    width: 36%;
  }
  .scene-grid__body01__contents-item03 {
    width: 100%;
  }
  .scene-grid__body01__txtwrap {
    padding-top: 32px;
  }
  .scene-grid__body01__txt-head {
    font-size: 2.4rem;
  }
  .scene-grid__body01__point {
    font-size: 1.6rem;
  }
  .scene-grid__body01__item03-img {
    margin-right: 32px;
    width: 55%;
  }
  .scene-grid__body01__item03-txtwrap {
    min-width: 300px;
    width: 45%;
  }
  .scene-grid__body02 {
    margin: 104px auto 0;
    border: 6px solid #101010;
  }
  .scene-grid__body02__head {
    font-size: 3.6rem;
    padding-top: 64px;
    margin-bottom: 64px;
  }
  .scene-grid__body02__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .scene-grid__body02__img-col {
    margin-right: 16px;
    width: 50%;
  }
  .scene-grid__body02__img-col:last-child {
    margin-right: 0;
  }
  .scene-grid__body02__txt {
    padding: 32px 16px 48px;
  }
  .scene-grid__body03 {
    margin-top: 88px;
    padding: 0 32px;
  }
  .scene-grid__body03__head {
    font-size: 2.6rem;
    padding-top: 80px;
    padding-bottom: 32px;
  }
  .scene-grid__body03__item {
    padding-bottom: 56px;
  }
  .scene-grid__body03__img {
    width: 70%;
    border: 12px solid #fff;
    margin-right: 32px;
  }
  .scene-grid__body03__txt {
    font-size: 1.6rem;
    width: 30%;
  }
  .mt-no {
    margin-top: auto;
  }
}

/*item-grid
--------------------*/
.item-grid {
  margin-top: 48px;
  padding-bottom: 56px;
  text-align: center;
}

.item-grid__head {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
}

.item-grid__item {
  padding-top: 24px;
}

.item-grid__btn {
  margin-top: 24px;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
}

.item-grid__btn a {
  display: block;
  background: #101010;
  border: 3px solid #101010;
  color: #fff;
  padding: 12px 40px;
  letter-spacing: 0.1em;
  border-radius: 3px;
}

.item-grid__btn a:hover {
  background: #fff;
  border: 3px solid #101010;
  color: #101010;
}

.item-grid__txt {
  padding-top: 16px;
  text-align: left;
}

.item-grid__img {
  position: relative;
  overflow: hidden;
}

.item-grid__img::before {
  content: "";
  top: 0;
  left: 0;
  border-bottom: 8rem solid transparent;
  border-left: 8rem solid #fff000;
  /* ラベルの色はここで変更 */
  position: absolute;
  z-index: 100;
}

.item-grid__img::after {
  content: "LIMITED";
  display: block;
  top: 14px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  color: #101010;
  left: 0;
  position: absolute;
  z-index: 101;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.item-grid .fas {
  margin-right: 6px;
}

@media screen and (min-width: 769px) {
  .item-grid {
    padding-bottom: 120px;
  }
  .item-grid__item {
    margin-right: 32px;
  }
  .item-grid__item:last-child {
    margin-right: 0;
  }
  .item-grid__head {
    font-size: 3.6rem;
    padding-top: 64px;
    margin-bottom: 32px;
  }
  .item-grid__btn {
    margin-top: 32px;
  }
  .item-grid__btn a {
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    padding: 12px 136px;
  }
  .item-grid__col03 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .item-grid .fas {
    margin-right: 10px;
  }
}

/*sns
--------------------*/
.sns-grid {
  max-width: 720px;
  width: 100%;
  margin: 0 auto 80px;
  text-align: center;
  font-size: 3rem;
}

.sns-grid__head {
  display: none;
}

.sns-grid__item {
  width: 136px;
  margin: 32px auto;
}

.sns-grid__item img {
  padding-top: -20px;
}

.sns-grid__ttl {
  color: #666;
  font-size: 1.6rem;
  padding-top: 20px;
}

.sns-grid__icon {
  display: inline-block;
  padding: 0 24px;
}

.fab {
  color: #727272;
}

/*footer
--------------------*/
.footer {
  padding-bottom: 24px;
}

.copyright {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 10;
}

#page_top a {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
  text-decoration: none;
  opacity: 0.7;
}

#page_top a::before {
  position: absolute;
  top: 60%;
  left: 48%;
  content: '';
  width: 36px;
  height: 36px;
  margin: -12px 0 0 -8px;
  border-top: 1px solid #101010;
  border-right: 1px solid #101010;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*
=========================================
Utilities
=========================================
*/
/* 下線
---------------------------------*/
.underline {
  text-decoration: underline;
}

/* マージン
---------------------------------*/
.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb80 {
  margin-bottom: 50px !important;
}

/* 左右行揃え
---------------------------------*/
.ta-l {
  text-align: left;
}

.ta-r {
  text-align: right;
}

.ta-c {
  text-align: center;
}

/* フロート／フロート解除
---------------------------------*/
.fl {
  float: left;
}

.fr {
  float: right;
}

.clear {
  clear: both;
}

/* clearfix */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  zoom: 1;
}
