@charset "UTF-8";
/*
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: bottom;
  background: transparent;
}

body {
  line-height: 1;
}

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

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

input, button, select, textarea {
  /*	-webkit-appearance: none;*/
}

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

body {
  font-size: 1rem;
  background-color: #F3F3FF;
  background-image: url(../../../images/bg.jpg);
  background-size: 26px 26px;
  background-repeat: repeat;
}

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

img {
  max-width: 94%;
  height: auto;
}

/* clearfix */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
  font-size: 0.1em;
  line-height: 0;
}

.clearfix {
  display: inline-table;
  min-height: 1%; /* IE7 */
}

/* Hides from IE-mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End hide from IE-mac */
@media screen and (max-width: 768px) {
  img {
    max-width: 90%;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: rgba(99, 182, 243, 0.7);
}
header ul {
  width: 80%;
  padding: 5px 0;
  margin-left: 2%;
}
header li {
  width: 20%;
}
header li:not(:nth-of-type(1)) {
  text-align: center;
}
header img {
  width: 70%;
}
header a {
  color: #ffffff;
  font-weight: bold;
}
header button {
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  color: #898989;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.2% 3%;
  border-radius: 5px;
  border: 1px solid #ccc;
  background: #ffffff;
}

.footer {
  text-align: center;
  padding: 1vh 0;
}

.l-list div {
  width: 23.5%;
  margin-right: 2%;
}
.l-list div:nth-of-type(4n) {
  margin-right: 0;
}
.l-list div:nth-of-type(n + 5) {
  margin-top: 1.8vw;
}
.l-list ul {
  position: relative;
}
.l-list li:nth-of-type(2) {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #319EEE;
  font-weight: bold;
  text-align: center;
  padding-top: 10px;
  background-color: rgba(255, 255, 255, 0.7);
}
.l-list li:nth-of-type(2) span {
  display: block;
}
.l-list li .size {
  font-size: 0.85rem;
  padding-top: 5px;
  padding-bottom: 8px;
}
.l-list li .stand_by {
  color: #FFF;
  font-weight: 700;
  text-align: center;
  padding: 10px 0 8px;
  background-color: #333333;
}
.l-list .l-icon_new {
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
}
.l-list .l-icon_new img {
  width: 46%;
  margin: 4px 4px 0 0;
}
.l-list .l-icon_rank {
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
}
.l-list .l-icon_rank img {
  width: 46%;
  margin: 4px 4px 0 0;
}

/*
  カラムレイアウト
-------------------------------*/
/*--- 並列配置 ---*/
.c-flex_sb {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.c-flex_fs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.c-flex_fe {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.c-flex_sa {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.c-flex_c {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/*--- フレックスボックス内配置 ---*/
.c-flex__pos_fs {
  align-items: flex-start;
}

.c-flex__pos_fe {
  align-items: flex-end;
}

.c-flex__pos_c {
  align-items: center;
}

/*--- フレックスボックス配置 ---*/
.c-flex__cont_fs {
  align-content: flex-start;
}

.c-flex__cont_fe {
  align-content: flex-end;
}

.c-flex__cont_c {
  align-content: center;
}

.c-pagetop {
  position: fixed;
  bottom: 105px;
  z-index: 110;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .c-pagetop {
    width: 480px;
  }
}
.c-pagetop a {
  display: block;
  color: #ffffff;
  text-align: center;
  padding: 5px;
  border-radius: 10px 0 0 0;
  background-color: rgba(0, 0, 0, 0.8);
  float: right;
}

.btn_arrow1 {
  display: block;
  position: relative;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  border: 0;
  border-radius: 5px;
  background-color: #FF2424;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  transition: 0.2s;
}
.btn_arrow1::before {
  content: "";
  display: inline-block;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.btn_arrow1:hover {
  opacity: 0.8;
}

.btn_arrow2 {
  display: block;
  position: relative;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  border: 0;
  border-radius: 8px;
  background-color: #FF2424;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  transition: 0.2s;
}
.btn_arrow2::before {
  content: "";
  display: inline-block;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.btn_arrow2::after {
  content: "";
  display: inline-block;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.btn_arrow2:hover {
  opacity: 0.8;
}

.headline img {
  width: 100%;
  max-width: 100%;
}

.main_wrap {
  text-align: center;
}

.btn {
  margin: 2rem 0;
}

.group3 {
  padding: 4rem 0;
  margin: 2rem 0;
  background-image: url(../../../images/bg_group3.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.group5,
.group6 {
  margin-top: 2rem;
}

@media screen and (max-width: 768px) {
  .group1 .middle {
    margin: 1rem 0;
  }
}
@media screen and (min-width: 768px) {
  .group1 .middle {
    position: relative;
  }
  .group1 .line {
    position: absolute;
    top: 9vw;
    left: 0;
    z-index: -1;
    width: 100%;
    padding-top: 11.9791666667%;
    background-color: #ffffff;
  }
}
@media screen and (min-width: 1740px) {
  .group1 .line {
    top: 6vw;
  }
}
@media screen and (min-width: 768px) {
  .m-footer {
    min-width: 1080px;
    display: block;
    clear: both;
  }
}
.m-footer__copy {
  background-color: #1F2937;
  color: #fff;
}
.m-footer__copy-inn {
  display: flex;
  align-items: center;
  padding: 40px 20px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .m-footer__copy-inn {
    padding: 6vw 3vw;
  }
}
.m-footer__copy-logo {
  width: 130px;
  margin-right: 1em;
}
.m-footer__copy-logo a > img {
  max-width: 100%;
}
.m-footer__copy small {
  font-size: 10px;
  color: #C8C8C8;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: normal;
}

/*
  フォント
-------------------------------*/
/*--- 字体 ---*/
/*--- サイズ ---*/
/*--- 太さ ---*/
.u-font_b {
  font-weight: bold;
}

/*--- 行間 ---*/
.u-lh_1 {
  line-height: 1;
}

.u-lh_1-2 {
  line-height: 1.2;
}

.u-lh_1-4 {
  line-height: 1.4;
}

.u-lh_1-6 {
  line-height: 1.6;
}

.u-lh_1-8 {
  line-height: 1.8;
}

.u-lh_2 {
  line-height: 2;
}

/*--- 装飾 ---*/
.u-deco__u_line {
  text-decoration: underline;
}

/*
  カラー
-------------------------------*/
/*--- 文字 ---*/
.u-text_orange {
  color: #c77765;
}

.u-text_cream {
  color: #faf5ea;
}

.u-text_gray {
  color: #6e675c;
}

/*--- 背景 ---*/
/*--- グラデーション ---*/
/*
  横幅
-------------------------------*/
.u-width_10 {
  width: 10% !important;
}

.u-width_15 {
  width: 15% !important;
}

.u-width_20 {
  width: 20% !important;
}

.u-width_25 {
  width: 25% !important;
}

.u-width_30 {
  width: 30% !important;
}

.u-width_35 {
  width: 35% !important;
}

.u-width_40 {
  width: 40% !important;
}

.u-width_45 {
  width: 45% !important;
}

.u-width_50 {
  width: 50% !important;
}

.u-width_55 {
  width: 55% !important;
}

.u-width_60 {
  width: 60% !important;
}

.u-width_65 {
  width: 65% !important;
}

.u-width_70 {
  width: 70% !important;
}

.u-width_75 {
  width: 75% !important;
}

.u-width_80 {
  width: 80% !important;
}

.u-width_85 {
  width: 85% !important;
}

.u-width_90 {
  width: 90% !important;
}

.u-width_95 {
  width: 95% !important;
}

.u-width_100 {
  width: 100% !important;
}

/*
  表示位置
-------------------------------*/
/*--- テキスト ---*/
.u-text_c {
  text-align: center;
}

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

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

/*--- ブロック ---*/
.u-block_c {
  margin-left: auto;
  margin-right: auto;
}

/*--- ポジション ---*/
.u-pos_r {
  position: relative;
}

.u-pos_a {
  position: absolute;
}

.u-pos_s {
  position: static;
}

/*
  余白(margin)
-------------------------------*/
.u-mt_1 {
  margin-top: 1%;
}

.u-mb_1 {
  margin-bottom: 1%;
}

.u-mt_2 {
  margin-top: 2%;
}

.u-mb_2 {
  margin-bottom: 2%;
}

.u-mt_3 {
  margin-top: 3%;
}

.u-mb_3 {
  margin-bottom: 3%;
}

.u-mt_4 {
  margin-top: 4%;
}

.u-mb_4 {
  margin-bottom: 4%;
}

.u-mt_5 {
  margin-top: 5%;
}

.u-mb_5 {
  margin-bottom: 5%;
}

.u-mt_6 {
  margin-top: 6%;
}

.u-mb_6 {
  margin-bottom: 6%;
}

.u-mt_7 {
  margin-top: 7%;
}

.u-mb_7 {
  margin-bottom: 7%;
}

.u-mt_8 {
  margin-top: 8%;
}

.u-mb_8 {
  margin-bottom: 8%;
}

.u-mt_9 {
  margin-top: 9%;
}

.u-mb_9 {
  margin-bottom: 9%;
}

.u-mt_10 {
  margin-top: 10%;
}

.u-mb_10 {
  margin-bottom: 10%;
}

.u-mt_11 {
  margin-top: 11%;
}

.u-mb_11 {
  margin-bottom: 11%;
}

.u-mt_12 {
  margin-top: 12%;
}

.u-mb_12 {
  margin-bottom: 12%;
}

.u-mt_13 {
  margin-top: 13%;
}

.u-mb_13 {
  margin-bottom: 13%;
}

.u-mt_14 {
  margin-top: 14%;
}

.u-mb_14 {
  margin-bottom: 14%;
}

.u-mt_15 {
  margin-top: 15%;
}

.u-mb_15 {
  margin-bottom: 15%;
}

.u-mt_16 {
  margin-top: 16%;
}

.u-mb_16 {
  margin-bottom: 16%;
}

.u-mt_17 {
  margin-top: 17%;
}

.u-mb_17 {
  margin-bottom: 17%;
}

.u-mt_18 {
  margin-top: 18%;
}

.u-mb_18 {
  margin-bottom: 18%;
}

.u-mt_19 {
  margin-top: 19%;
}

.u-mb_19 {
  margin-bottom: 19%;
}

.u-mt_20 {
  margin-top: 20%;
}

.u-mb_20 {
  margin-bottom: 20%;
}

/*
  余白(padding)
-------------------------------*/
.u-pt_1 {
  padding-top: 1%;
}

.u-pb_1 {
  padding-bottom: 1%;
}

.u-pt_2 {
  padding-top: 2%;
}

.u-pb_2 {
  padding-bottom: 2%;
}

.u-pt_3 {
  padding-top: 3%;
}

.u-pb_3 {
  padding-bottom: 3%;
}

.u-pt_4 {
  padding-top: 4%;
}

.u-pb_4 {
  padding-bottom: 4%;
}

.u-pt_5 {
  padding-top: 5%;
}

.u-pb_5 {
  padding-bottom: 5%;
}

.u-pt_6 {
  padding-top: 6%;
}

.u-pb_6 {
  padding-bottom: 6%;
}

.u-pt_7 {
  padding-top: 7%;
}

.u-pb_7 {
  padding-bottom: 7%;
}

.u-pt_8 {
  padding-top: 8%;
}

.u-pb_8 {
  padding-bottom: 8%;
}

.u-pt_9 {
  padding-top: 9%;
}

.u-pb_9 {
  padding-bottom: 9%;
}

.u-pt_10 {
  padding-top: 10%;
}

.u-pb_10 {
  padding-bottom: 10%;
}

.u-pt_11 {
  padding-top: 11%;
}

.u-pb_11 {
  padding-bottom: 11%;
}

.u-pt_12 {
  padding-top: 12%;
}

.u-pb_12 {
  padding-bottom: 12%;
}

.u-pt_13 {
  padding-top: 13%;
}

.u-pb_13 {
  padding-bottom: 13%;
}

.u-pt_14 {
  padding-top: 14%;
}

.u-pb_14 {
  padding-bottom: 14%;
}

.u-pt_15 {
  padding-top: 15%;
}

.u-pb_15 {
  padding-bottom: 15%;
}

.u-pt_16 {
  padding-top: 16%;
}

.u-pb_16 {
  padding-bottom: 16%;
}

.u-pt_17 {
  padding-top: 17%;
}

.u-pb_17 {
  padding-bottom: 17%;
}

.u-pt_18 {
  padding-top: 18%;
}

.u-pb_18 {
  padding-bottom: 18%;
}

.u-pt_19 {
  padding-top: 19%;
}

.u-pb_19 {
  padding-bottom: 19%;
}

.u-pt_20 {
  padding-top: 20%;
}

.u-pb_20 {
  padding-bottom: 20%;
}

/*
  表示形式
-------------------------------*/
.u-display_inline {
  display: inline;
}

.u-display_block {
  display: block;
}

/*
  その他
-------------------------------*/

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