@charset "UTF-8";
/*===============================================================
	変数
===============================================================*/
/*　画面左右のマージン　*/
/*　幅　*/
/*	グリッド幅  */
/*	セクション、コンテンツ間のマージン　*/
/*===============================================================
	読み込み
===============================================================*/
/*===============================================================
	_mixin.scss
===============================================================*/
/*===============================================================
	ボタン
	@include btn_base(#c00,#000,#fff,#fff,auto);
===============================================================*/
/*===============================================================
	矢印
	@include mx_arw();	
===============================================================*/
/*===============================================================
	三角
	@include mx_sankaku(幅,高さ,色,色hover,向き);	
===============================================================*/
/*===============================================================
	センタリング
	@include mx_margin_center();	
===============================================================*/
/*===============================================================
	斜線の背景
	@include mx_slash($color1,$color2,$width);	
===============================================================*/
/*===============================================================
	グラデーション
	@include mx_grade(色1,色2,向き（横:h / 縦:v）)
===============================================================*/
/*===============================================================
	_grid.scss
===============================================================*/
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;700;800&display=swap");
.grid_wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.grid_wrp .grid {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 40px;
}
.grid_wrp .grid .grid_wrp {
  margin-top: -20px;
}
.grid_wrp .grid .grid {
  margin-top: 20px;
}
.grid_wrp .grid_1_1 {
  width: 100%;
}
.grid_wrp .grid_2_1 {
  width: calc((100% - 40px) / 2);
}
.grid_wrp .grid_3_1 {
  width: calc((100% - 40px * 2) / 3); /* 40px * 2 = 80px */
}
.grid_wrp .grid_3_2 {
  width: calc(100% - (100% - 40px * 2) / 3 - 40px);
}
.grid_wrp .grid_4_1 {
  width: calc((100% - 40px * 3) / 4); /* 40px * 3 = 120px */
}
.grid_wrp .grid_5_1 {
  width: calc((100% - 40px * 2) / 5); /* 20px * 4 = 80px */
}
.grid_wrp .grid_6_1 {
  width: calc((100% - 40px * 5) / 6); /* 50px * 5 = 100px */
}
.grid_wrp.grid_wrp3:after, .grid_wrp.grid_wrp4:after, .grid_wrp.grid_wrp4:before, .grid_wrp.grid_wrp5:after, .grid_wrp.grid_wrp5:before {
  content: "";
  display: block;
  height: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.grid_wrp.grid_wrp3:after {
  width: calc((100% - 40px * 2) / 3);
}
.grid_wrp.grid_wrp4:after, .grid_wrp.grid_wrp4:before {
  width: calc((100% - 40px * 3) / 4);
}
.grid_wrp.grid_wrp5:after, .grid_wrp.grid_wrp5:before {
  width: calc((100% - 40px * 2) / 5);
}
@media screen and (max-width: 800px) {
  .grid_wrp {
    margin-top: -5vw;
  }
  .grid_wrp .grid {
    margin-top: 5vw;
  }
  .grid_wrp .grid .grid_wrp {
    margin-top: -3vw;
  }
  .grid_wrp .grid .grid {
    margin-top: 3vw;
  }
  .grid_wrp .grid_1_1 {
    width: 100%;
  }
  .grid_wrp .grid_2_1 {
    width: 100%;
  }
  .grid_wrp .grid_3_1 {
    width: calc((100% - 5vw) / 2);
  }
  .grid_wrp .grid_3_2 {
    width: 100%;
  }
  .grid_wrp .grid_4_1 {
    width: calc((100% - 5vw) / 2);
  }
  .grid_wrp .grid_5_1 {
    width: calc((100% - 5vw) / 2);
  }
  .grid_wrp .grid_6_1 {
    width: calc((100% - 10vw) / 3);
  }
  .grid_wrp.grid_wrp3:after {
    width: calc((100% - 80px) / 3);
  }
  .grid_wrp.grid_wrp4:after, .grid_wrp.grid_wrp4:before {
    width: calc((100% - 120px) / 4);
  }
  .grid_wrp.grid_wrp5:after, .grid_wrp.grid_wrp5:before {
    width: calc((100% - 80px) / 5);
  }
  .grid_wrp .sp_grid_1 {
    width: 100% !important;
  }
}

/*===============================================================

	thema_header.scss 2022/9/22

===============================================================*/
/*frame調整--------------------------*/
.frame_width {
  width: min(100%, 1120px);
}

.frame_width {
  padding: 0 16px;
}

.frame_footer {
  display: none;
}

/*===============================================================

	thema_header

===============================================================*/
.thema_header {
  top: 0;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 102;
  /*.thema_header_inner {
  	box-sizing: border-box;
  	padding: 0 30px;
  	width: min(100%, 1180px);
  	margin: 0 auto;
  	display: grid;
  	grid-template-columns: auto 1fr;
  	align-items: center;
  }*/
  /* for TABLET */
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.thema_header a {
  font-weight: bold;
  color: #03748a;
  text-decoration: none;
}
.thema_header a:hover {
  opacity: 0.8;
  color: #333;
}
.thema_header .title {
  line-height: 1.2;
  padding: 1rem 0;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: -1.5px;
  -webkit-perspective: 1000;
          perspective: 1000;
  will-change: transform;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.thema_header .title span {
  font-size: 20px;
  margin-left: 5px;
}
@media screen and (max-width: 1220px) {
  .thema_header .wide_width {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1120px) {
  .thema_header .wide_width {
    padding: 0 15px;
  }
}
@media screen and (max-width: 800px) {
  .thema_header .wide_width {
    padding: 0 5vw;
  }
  .thema_header .title {
    padding: 1.1rem 0 0.6rem 0;
    font-size: 6vw;
    width: 100%;
    text-align: center;
  }
  .thema_header .title span {
    font-size: 4.8vw;
    margin-left: 0;
  }
}

/*===============================================================

	thema_header 

===============================================================*/
.thema_header {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.thema_header .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 2rem;
}
.thema_header .nav li {
  position: relative;
}
.thema_header .nav li.active::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22px;
  display: inline-block;
  width: 2rem;
  height: 3px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  background-color: #e93817;
}
.thema_header .nav li a {
  display: block;
  padding: 2.4rem 0;
  font-size: 16px;
}
.thema_header .nav li.remo a {
  font-weight: normal !important;
}
.thema_header .nav li.deactive a {
  color: #ddd;
  pointer-events: none;
  cursor: default;
}
@media screen and (max-width: 800px) {
  .thema_header .nav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
  .thema_header .nav li {
    height: 100%;
    width: 33.3%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    display: block;
  }
  .thema_header .nav li.active::before {
    bottom: 0;
    height: 4px;
  }
  .thema_header .nav li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0.6rem 0;
    line-height: 1.2;
    tap-highlight-color: rgba(0, 0, 0, 0);
    font-size: 4vw;
  }
  .thema_header .nav li.remo a {
    font-size: 3.8vw;
  }
  .thema_header .nav li.deactive a {
    color: #ddd;
    pointer-events: none;
    cursor: default;
  }
}

/*===============================================================

	header

===============================================================*/
.header {
  background: #fff;
  /* for tablet max-width: 1120px */
  /* タブレット以下 */
  /* for tablet max-width: 1120px */
  /* タブレット */
  /* for TABLET */
  /* for SP */
}
.header .inner {
  padding: 28px 0;
}
.header .logo {
  width: 160px;
}
.header .logo a {
  display: block;
}
.header .logo img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width: 1280px) {
  .header .inner {
    padding: 30px;
  }
}
@media screen and (max-width: 1120px) {
  .header .inner {
    padding: 30px;
  }
  .header .logo {
    width: 116px;
  }
}
@media screen and (max-width: 800px) {
  .header .inner {
    padding: 15px;
  }
  .header .logo {
    width: 90px;
  }
}

/* ==========================================================================

	2022/9/22

   ========================================================================== */
/*@import url("/extra/library/common/css/smart_phone.css") only screen and (max-width: $width_content);*/
/* font
----------------------------------------------------------------*/
.m-plus-1p-regular {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.m-plus-1p-semibold {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.m-plus-1p-extrabold {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-style: normal;
}

/* Base
   ========================================================================== */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

#page {
  overflow: visible;
}

#footer {
  width: 100vw;
  overflow: hidden;
}

/*font調整--------------------------*/
/*.thiscontents * {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif !important;
	box-sizing: border-box;
}

/* Contents
========================================================================== */
.container {
  /*font-family: "Meiryo", "メイリオ", sans-serif !important;*/
}

.thiscontents {
  width: 100%;
}

.rankb_v2 .thiscontents {
  font-family: "Meiryo", "メイリオ", sans-serif !important;
}

a {
  -webkit-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  color: #0066CC;
}

a:hover {
  color: #0099CC;
}

.clearText {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/* 基本
----------------------------------------------------------------*/
.thiscontents .clear {
  width: 100%;
  overflow: hidden;
}

.thiscontents .cf {
  display: flow-root;
}

.thiscontents .clearboth {
  clear: both;
}

.thiscontents .flol {
  display: inline;
  float: left;
}

.thiscontents .flor {
  display: inline;
  float: right;
}

.thiscontents .tablet {
  display: none;
}

.thiscontents .sp {
  display: none;
}

.thiscontents .sp_tablet {
  display: none;
}

.thiscontents img {
  vertical-align: bottom;
  padding: 0;
  margin: 0;
}

.thiscontents .fitimg,
.thiscontents .fitimg img,
.thiscontents .thumb img {
  width: 100%;
  height: auto;
}

.thiscontents p {
  margin: 0;
  padding: 0;
}

.thiscontents h1,
.thiscontents h2,
.thiscontents h3,
.thiscontents h4,
.thiscontents h5,
.thiscontents h6 {
  font-weight: bold;
}

.thiscontents p {
  margin: 0;
  padding: 0;
}

.thiscontents sup {
  margin: 0;
  padding: 0;
  font-size: 11px;
  line-height: 15px;
}

.thiscontents .photo img {
  width: 100%;
  height: auto;
}

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

@media screen and (max-width: 1120px) {
  .thiscontents .pc {
    display: none;
  }
  .thiscontents .tablet,
  .thiscontents .pc_tablet,
  .thiscontents .sp_tablet {
    display: block;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents {
    margin-bottom: 10px;
  }
  .thiscontents .sp {
    display: block;
  }
  .thiscontents .pc_tablet,
  .thiscontents .tablet {
    display: none;
  }
}
/*===============================================================

	girid

===============================================================*/
.gridconatiner .grid {
  float: left;
}

/*	gridSize :460 gutterSize :40 column :2 */
.gridwrp_2 {
  width: 104.167%;
}

.gridwrp_2 .grid_2 {
  width: 96%;
  margin-right: 4%;
}

.gridwrp_2 .grid_1 {
  width: 46%;
  margin-right: 4%;
}

.gridwrp_1 .grid_2 {
  width: 192%;
  margin-right: 8%;
}

/*	gridSize :290 gutterSize :40 column :3 */
.gridwrp_3 {
  width: 104.211%;
}

.gridwrp_3 .grid_3 {
  width: 95.96%;
  margin-right: 4.04%;
}

.gridwrp_3 .grid_2 {
  width: 62.626%;
  margin-right: 4.04%;
}

.gridwrp_3 .grid_1 {
  width: 29.293%;
  margin-right: 4.04%;
}

/*	gridSize :210 gutterSize :40 column :4 */
.gridwrp_4 {
  width: 104.167%;
}

.gridwrp_4 .grid_4 {
  width: 96%;
  margin-right: 4%;
}

.gridwrp_4 .grid_3 {
  width: 71%;
  margin-right: 4%;
}

.gridwrp_4 .grid_2 {
  width: 46%;
  margin-right: 4%;
}

.gridwrp_4 .grid_1 {
  width: 21%;
  margin-right: 4%;
}

/* PCのみ */
@media screen and (min-width: 961px) {
  .gridwrp_2 .grid:nth-child(2n+1) {
    clear: both;
  }
  .gridwrp_3 .grid:nth-child(3n+1) {
    clear: both;
  }
  .gridwrp_4 .grid:nth-child(4n+1) {
    clear: both;
  }
} /* for PC min-width: 961px


/* タブレット以下 */
/* for tablet max-width: $width_content */
/* SP向けレイアウトの指定：～$width_sp */
@media only screen and (max-width: 800px) {
  .gridwrp_3,
  .gridwrp_3 .grid_1,
  .gridwrp_3 .grid_2,
  .gridwrp_2,
  .gridwrp_2 .grid_1 {
    width: 100%;
    margin-right: 0;
  }
  .gridwrp_4 {
    width: 105%;
  }
  .gridwrp_4 .grid_1,
  .gridwrp_4 .grid_3 {
    width: 45.238%;
    margin-right: 4.762%;
  }
  .grid {
    margin-top: 20px;
  }
  .grid:first-child {
    margin-top: 0px;
  }
  .gridwrp_4 .grid:nth-child(2) {
    margin-top: 0;
  }
} /* for SP max-width: $width_sp */
/*===============================================================

	fixed

===============================================================*/
.fixed {
  position: fixed;
  top: 0;
}

/* タブレット以下 */
@media screen and (max-width: 1120px) {
  .fixed {
    position: fixed;
    top: 0;
  }
} /* for tablet max-width: $width_content */
/* SP向けレイアウトの指定：～$width_sp */
/* for SP max-width: $width_sp */
/*===============================================================

	txtlink 2016/11/16

===============================================================*/
.txtlink a {
  padding-left: 15px;
  color: #000;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.txtlink a:hover {
  color: #c00;
}

.txtlink a:after {
  position: absolute;
  content: " ";
  width: 6px;
  height: 6px;
  top: 7px;
  bottom: auto;
  left: 0;
  right: auto;
  margin: auto;
  border-top: solid 2px #c00;
  border-left: solid 2px #c00;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.txtlink.arw_prev a:after {
  top: 7px;
  bottom: auto;
  left: 3px;
  right: auto;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.txtlink.arw_after a {
  padding-left: 0;
  padding-right: 10px;
}

.txtlink.arw_after a:after {
  left: auto;
  right: 0;
}

.txtlink.arw_down a:after {
  top: 7px;
  bottom: auto;
  left: 2px;
  right: auto;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.txtlink.arw_after_down a {
  padding-left: 0;
  padding-right: 10px;
}

.txtlink.arw_after_down a:after {
  top: 7px;
  bottom: auto;
  left: auto;
  right: 0;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

/*	arw_box */
.txtlink.arw_box a {
  padding-left: 25px;
}

.txtlink.arw_box a:before {
  content: " ";
  width: 20px;
  height: 20px;
  background: #000;
  position: absolute;
  top: 2px;
  bottom: auto;
  left: 0;
  right: auto;
  margin: auto;
}

.txtlink.arw_box a:after {
  border-top: solid 1px #fff;
  border-left: solid 1px #fff;
  top: 8px;
  bottom: auto;
  left: 5px;
  right: auto;
}

/*===============================================================

	PAGETOP

===============================================================*/
#btn_pagetop {
  width: 100%;
  overflow: hidden;
}

#btn_pagetop a {
  display: block;
  position: absolute;
  right: -300px;
  top: 0;
  width: 50px;
  height: 50px;
  color: #fff;
  background-color: #d2191a;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  z-index: 101;
  position: fixed;
  border-radius: 30px;
}

#btn_pagetop a:hover {
  background-color: #c00;
}

#btn_pagetop a:after {
  position: absolute;
  content: " ";
  width: 14px;
  height: 14px;
  top: 20px;
  left: 0;
  right: 0;
  bottom: auto;
  margin: auto;
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 2px;
}

/* SP向けレイアウトの指定：～$width_sp */
@media only screen and (max-width: 800px) {
  #btn_pagetop a {
    width: 40px;
    height: 40px;
    background-size: 40px 40px;
  }
  #btn_pagetop a:after {
    width: 12px;
    height: 12px;
    top: 17px;
    left: 0;
    right: 0;
    bottom: auto;
  }
} /* for SP max-width: $width_sp */
/*===============================================================

	bg 背景

===============================================================*/
/* タブレット以下 */
/* for tablet max-width: $width_content */
/* SP向けレイアウトの指定：～$width_sp */
/* for SP max-width: $width_sp */
/*===============================================================

	section
	複数のcontent、headlineなど格納するブロック

===============================================================*/
.section_wrp {
  background: #fff;
}

.section {
  width: 100%;
}

.section_inner {
  margin: 0 auto;
  padding: 60px 0 60px 0;
}

/* タブレット以下 */
@media screen and (max-width: 1120px) {
  .section_inner {
    margin: 0 auto;
    padding: 30px;
  }
} /* for tablet max-width: $width_content */
/* SP向けレイアウトの指定：～$width_sp */
@media only screen and (max-width: 800px) {
  .section_inner {
    padding: 20px;
    margin: 0 auto;
  }
} /* for SP max-width: $width_sp */
/*===============================================================

	レイアウト

===============================================================*/
.wide_width {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.content_width {
  width: 1120px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.narrow_width {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.w_full {
  　margin: 0 calc(50% - 50vw);
}

.w_fit {
  　width: -moz-fit-content;
  　width: fit-content;
}

/* タブレット以下 */
@media screen and (max-width: 1200px) {
  .wide_width {
    width: 100%;
  }
} /* for tablet max-width: $width_content */
/* タブレット以下 */
@media screen and (max-width: 1120px) {
  .content_width {
    width: 100%;
  }
} /* for tablet max-width: $width_content */
/* SP向けレイアウトの指定：～$width_sp */
@media only screen and (max-width: 800px) {
  .w_full {
    　margin: 0 calc(50% - 50vw);
  }
  .narrow_width {
    width: 100%;
  }
} /* for SP max-width: $width_sp */
/*===============================================================

	content 

===============================================================*/
.content {
  margin: 0 auto;
}

.content + .content {
  padding-top: 50px;
}

/* タブレット以下 */
@media screen and (max-width: 1120px) {
  .section .content {
    margin: 0 auto;
  }
} /* for tablet max-width: $width_content */
/* SP向けレイアウトの指定：～$width_sp */
@media only screen and (max-width: 800px) {
  .section .content {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 0px;
  }
} /* for SP max-width: $width_sp */
/*===============================================================

	headline：見出し
	subhead：小見出し

===============================================================*/
.headline {
  text-align: center;
}

.headline .title {
  font-size: 30px;
  line-height: 1.2;
  font-weight: bold;
}

.headline + .content {
  margin-top: 25px;
}

.headline .title .sub {
  display: block;
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  color: #e63311;
  padding-bottom: 5px;
}

/* タブレット以下 */
/* for tablet max-width: $width_content */
/* SP向けレイアウトの指定：～$width_sp */
@media only screen and (max-width: 800px) {
  .headline .title {
    font-size: 5.5vw;
    line-height: 1.4;
  }
  .headline + .content {
    margin-top: 5vw;
  }
  .headline .title .sub {
    font-size: 4.5vw;
    padding: 0;
  }
} /* for SP max-width: $width_sp */
/*===============================================================

common関連の調整（上書き）ほか

===============================================================*/
/*===============================================================

	bg 背景

===============================================================*/
/* タブレット以下 */
/* for tablet max-width: $width_content */
/* SP向けレイアウトの指定：～$width_sp */
/* for SP max-width: $width_sp */
/*===============================================================

	canvas

===============================================================*/
.thiscontents {
  position: relative;
}

.section_wrp {
  position: relative;
  z-index: 1;
  /*background: none;
   background-image: -moz-linear-gradient( 90deg, rgb(15,71,231) 0%, rgb(15,70,229) 63%, rgb(8,56,196) 80%, rgb(0,42,163) 100%);
   background-image: -webkit-linear-gradient( 90deg, rgb(15,71,231) 0%, rgb(15,70,229) 63%, rgb(8,56,196) 80%, rgb(0,42,163) 100%);
   background-image: -ms-linear-gradient( 90deg, rgb(15,71,231) 0%, rgb(15,70,229) 63%, rgb(8,56,196) 80%, rgb(0,42,163) 100%);*/
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(10%, #14bfc2), to(#56bce0));
  background-image: linear-gradient(to top, #14bfc2 10%, #56bce0);
}

#canvas {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
}

#spfoot,
#footerArea,
#SpecialSales,
.l-footer {
  position: relative;
  z-index: 1;
}

/* タブレット以下 */
/* for tablet max-width: $width_content */
/* SP向けレイアウトの指定：～$width_sp */
@media only screen and (max-width: 800px) {
  .l-footer {
    margin: 0 auto;
  }
} /* for SP max-width: $width_sp */
/*===============================================================

	section
	複数のcontent、headlineなど格納するブロック

===============================================================*/
.section_wrp {
  background: #97d9d9;
}

.section {
  width: 100%;
}

.section_inner {
  margin: 0 auto;
  padding: 60px 0 60px 0;
}

/* タブレット以下 */
@media screen and (max-width: 1120px) {
  .section_inner {
    margin: 0 auto;
    padding: 30px;
  }
} /* for tablet max-width: $width_content */
/* SP向けレイアウトの指定：～$width_sp */
@media only screen and (max-width: 800px) {
  .section_inner {
    padding: 20px;
    margin: 0 auto;
  }
} /* for SP max-width: $width_sp */
/*===============================================================

	headline：見出し
	subhead：小見出し

===============================================================*/
.headline {
  text-align: center;
}

.headline .title {
  font-size: 30px;
  line-height: 1.2;
  font-weight: bold;
}

.headline + .content {
  margin-top: 25px;
}

.headline .title .sub {
  display: block;
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  color: #e63311;
  padding-bottom: 5px;
}

/* タブレット以下 */
/* for tablet max-width: $width_content */
/* SP向けレイアウトの指定：～$width_sp */
@media only screen and (max-width: 800px) {
  .headline .title {
    font-size: 5.5vw;
    line-height: 1.4;
  }
  .headline + .content {
    margin-top: 5vw;
  }
  .headline .title .sub {
    font-size: 4.5vw;
    padding: 0;
  }
} /* for SP max-width: $width_sp */
/*===============================================================

	sns_wrp

===============================================================*/
.sns_wrp {
  padding: 1.5rem 0;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.sns_wrp .sns ul {
  letter-spacing: -0.3em;
  margin: 0 auto;
  width: min(100%, 1120px);
  /*max-width: 1030px*/
  text-align: right;
}
.sns_wrp.wide .sns ul {
  width: min(96%, 1160px);
}
.sns_wrp .sns li {
  display: inline-block;
  letter-spacing: normal;
  margin-left: 10px;
}
.sns_wrp .sns li.line {
  display: none;
}
.sns_wrp .sns li.twitter .sns li.facebook .sns li.line {
  width: 30px;
  height: 30px;
}
.sns_wrp .sns li.twitter a,
.sns_wrp .sns li.facebook a,
.sns_wrp .sns li.line a {
  width: 30px;
  height: 30px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
}
.sns_wrp .sns li.twitter a {
  background: url(/special/common/images/asset/icon_twitter.png) no-repeat 0 0;
  background: url(https://www.myjcom.jp/common/2022/images/common/logo-sns-tw.png) no-repeat 0 0/30px 30px;
  background-size: 30px 30px;
}
.sns_wrp .sns li.facebook a {
  background: url(/special/common/images/asset/icon_facebook.png) no-repeat 0 0;
  background: url(https://www.myjcom.jp/common/2022/images/common/logo-sns-fb.png) no-repeat 0 0/30px 30px;
  background-size: 30px 30px;
}
.sns_wrp .sns li.line a {
  background: url(/special/common/images/asset/icon_line.png) no-repeat 0 0;
  background: url(https://www.myjcom.jp/common/2022/images/common/logo-sns-li.png) no-repeat 0 0/30px 30px;
  background-size: 30px 30px;
}
.sns_wrp .sns_area_read {
  line-height: 30px;
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
  font-weight: bold;
  vertical-align: top;
}
@media screen and (max-width: 1120px) {
  .sns_wrp {
    padding: 1rem;
  }
}
@media screen and (max-width: 800px) {
  .sns_wrp {
    padding-bottom: 0;
  }
  .sns_wrp .sns li.line {
    display: inline-block;
  }
}

/*===============================================================

	footer

===============================================================*/
.section_footer {
  width: 100%;
  min-height: 22vw;
  background-image: url("../images/bg/bg.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% auto;
  /* タブレット */
  /* for tablet */
  /* SP */
  /* for SPx */
}
@media screen and (max-width: 800px) {
  .section_footer {
    min-height: 55vw;
    background-image: url("../images/bg/bg_sp.png");
  }
}

/*===============================================================

	remoroku

===============================================================*/
.remoroku {
  position: relative;
  height: 100%;
  min-height: 100%;
  z-index: 100;
  background-image: radial-gradient(circle farthest-side at center top, #c00, #600 100%);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;
  background-color: #c00;
  z-index: 100;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.remoroku .section_inner {
  padding: 80px 0;
}
@media screen and (max-width: 1120px) {
  .remoroku {
    background-position: center top;
    background-attachment: inherit;
  }
}
@media screen and (max-width: 800px) {
  .remoroku .section_inner {
    padding: 5vw;
  }
}

/*===============================================================

	remoroku content

===============================================================*/
.remoroku {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.remoroku .content {
  text-align: center;
  width: 870px;
  margin: 0 auto !important;
}
.remoroku .content h2 {
  width: 640px;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 50px;
}
.remoroku .content h2 img {
  width: 100%;
  height: auto;
}
.remoroku .content .cap {
  margin-top: 40px;
  color: #fff;
  font-weight: normal;
}
.remoroku .btn_detail {
  width: 400px;
  margin: 0 auto;
  margin-top: 40px;
}
.remoroku .btn_detail a {
  position: relative;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  padding: 20px 0;
  text-decoration: none;
  -webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2);
  background-color: #000;
}
.remoroku .btn_detail a:after {
  position: absolute;
  content: " ";
  width: 10px;
  height: 10px;
  top: 0;
  left: auto;
  bottom: 0;
  right: 10px;
  margin: auto;
  border-top: solid 1px #fff;
  border-left: solid 1px #fff;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.remoroku .btn_detail a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #200;
}
@media screen and (max-width: 930px) {
  .remoroku .content {
    text-align: center;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 800px) {
  .remoroku .content {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .remoroku .content h2 {
    width: calc(100% + 10vw);
    margin-left: -5vw;
    padding-bottom: 5vw;
  }
  .remoroku .content h2 img {
    width: 100%;
    height: auto;
  }
  .remoroku .content .cap {
    margin-top: 3vw;
    text-align: left;
  }
  .remoroku .content .cap p {
    font-size: 3.3vw;
    line-height: 1.6;
  }
  .remoroku .content img {
    width: 100%;
    height: auto;
  }
  .remoroku .btn_detail {
    width: 100%;
    margin: 0 auto;
    margin-top: 5vw;
  }
  .remoroku .btn_detail a {
    font-size: 4vw;
    line-height: 1.5;
    padding: 4vw;
  }
  .remoroku .btn_detail a:after {
    width: 8px;
    height: 8px;
    top: 0;
    left: auto;
    bottom: 0;
    right: 10px;
  }
}

/*===============================================================

	remoroku bnr

===============================================================*/
.remoroku {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.remoroku .bnr {
  width: 850px;
  margin: 0 auto;
  margin-top: 40px;
}
.remoroku .bnr:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1120px) {
  .remoroku .bnr {
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  .remoroku .bnr img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 800px) {
  .remoroku .bnr {
    margin-top: 20px;
  }
}

/*===============================================================

	remoroku

===============================================================*/
.remoroku {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
/*===============================================================

	section_masonry

===============================================================*/
.section_masonry {
  padding: 60px 0 80px;
  position: relative;
  z-index: 1;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	title_area
  -------------------------------------------------------------*/
  /*===============================================================

  	masonry_container

  ===============================================================*/
}
.section_masonry .info_wrp {
  padding: 80px 0 60px;
  margin: 0 auto;
  text-align: center;
}
.section_masonry .info_wrp .info_txt {
  font-size: 80px;
  font-weight: 800;
  color: #fff;
}
@media screen and (max-width: 1120px) {
  .section_masonry {
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media screen and (max-width: 800px) {
  .section_masonry {
    padding: 5vw 4vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .section_masonry .info_wrp {
    padding: 10vw 0 0;
  }
  .section_masonry .info_wrp .info_txt {
    font-size: 20vw;
    line-height: 1;
  }
}
.section_masonry .titlearea {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_masonry .titlearea h2 {
  width: 60%;
  display: inline-block;
}
.section_masonry .titlearea .snowman {
  width: 4%;
  display: inline-block;
  vertical-align: sub;
  margin: 0 2%;
}
.section_masonry .titlearea .shake01 {
  -webkit-animation: shake_6996 5.875s ease infinite;
          animation: shake_6996 5.875s ease infinite;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}
@-webkit-keyframes shake_6996 {
  0% {
    -webkit-transform: rotate(-12deg);
            transform: rotate(-12deg);
  }
  50% {
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg);
  }
  100% {
    -webkit-transform: rotate(-12deg);
            transform: rotate(-12deg);
  }
}
@keyframes shake_6996 {
  0% {
    -webkit-transform: rotate(-12deg);
            transform: rotate(-12deg);
  }
  50% {
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg);
  }
  100% {
    -webkit-transform: rotate(-12deg);
            transform: rotate(-12deg);
  }
}
.section_masonry .titlearea .shake02 {
  -webkit-animation: shake_6996 6.5s ease-out infinite;
          animation: shake_6996 6.5s ease-out infinite;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}
@keyframes shake_6996 {
  0% {
    -webkit-transform: rotate(-12deg);
            transform: rotate(-12deg);
  }
  50% {
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg);
  }
  100% {
    -webkit-transform: rotate(-12deg);
            transform: rotate(-12deg);
  }
}
@media screen and (max-width: 1120px) {
  .section_masonry .titlearea {
    width: 95%;
  }
}
@media screen and (max-width: 800px) {
  .section_masonry .titlearea {
    width: 90%;
    padding-top: 2vw;
  }
  .section_masonry .titlearea h2 {
    width: 80%;
  }
  .section_masonry .titlearea .snowman {
    width: 8.5%;
    margin: auto;
  }
}
.section_masonry .masonry_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  margin-top: 20px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	item_main	
  -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	label
  -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	.hovertxt_wrp
  -------------------------------------------------------------*/
}
.section_masonry .masonry_container .item {
  margin-top: 40px;
  width: 300px;
  height: 300px;
  position: relative;
  border-radius: 20px;
}
.section_masonry .masonry_container .item .item_inner {
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid #111430;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.section_masonry .masonry_container .item .item_inner img {
  width: 100%;
  height: auto;
}
.section_masonry .masonry_container .item.width_l {
  width: 980px;
}
.section_masonry .masonry_container .item.width_m {
  width: 640px;
}
.section_masonry .masonry_container .item.width_s {
  width: 300px;
}
.section_masonry .masonry_container .item.height_l {
  height: 980px;
}
.section_masonry .masonry_container .item.height_m {
  height: 640px;
}
.section_masonry .masonry_container .item.height_s {
  height: 300px;
}
.section_masonry .masonry_container .item a {
  display: block;
}
@media screen and (max-width: 1120px) {
  .section_masonry .masonry_container {
    /*margin-top: -20px;*/
    padding-bottom: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .section_masonry .masonry_container .item {
    margin-top: 20px;
    border-radius: 2px;
  }
  .section_masonry .masonry_container .item .item_inner {
    border-radius: 2px;
  }
  .section_masonry .masonry_container .item.width_l {
    width: 620px;
  }
  .section_masonry .masonry_container .item.width_m {
    width: 620px;
  }
  .section_masonry .masonry_container .item, .section_masonry .masonry_container .height_l, .section_masonry .masonry_container .height_m {
    height: auto;
  }
}
@media screen and (max-width: 800px) {
  .section_masonry .masonry_container {
    margin-top: 2vw;
    padding-bottom: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .section_masonry .masonry_container .item {
    margin-top: 4.5vw;
    height: auto;
    border-radius: 2px;
  }
  .section_masonry .masonry_container .item.width_l {
    width: 100%;
  }
  .section_masonry .masonry_container .item.width_m {
    width: 100%;
  }
  .section_masonry .masonry_container .item.width_s {
    width: 48%;
  }
  .section_masonry .masonry_container .item, .section_masonry .masonry_container .height_l, .section_masonry .masonry_container .height_m, .section_masonry .masonry_container .height_s {
    height: auto;
  }
}
.section_masonry .masonry_container .item_main .snow {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translate(-40px, -40px);
          transform: translate(-40px, -40px);
}
.section_masonry .masonry_container .label {
  width: 220px;
  height: auto;
  top: -25px;
  left: -20px;
  z-index: 10;
  position: absolute;
  -webkit-transform: skew(2deg, -2deg);
          transform: skew(2deg, -2deg);
}
@media screen and (max-width: 1120px) {
  .section_masonry .masonry_container .label {
    width: 180px;
    height: auto;
    top: -15px;
    left: -13px;
  }
}
@media screen and (max-width: 800px) {
  .section_masonry .masonry_container .label {
    width: 36vw;
    top: -4vw;
    left: -3vw;
  }
}
.section_masonry .masonry_container .hovertxt_wrp {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	.hovertxt_wrp .btn_hovertxt
  -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_masonry .masonry_container .hovertxt_wrp .txt {
  position: absolute;
  overflow: hidden;
  border-radius: 0px;
  opacity: 0;
  color: #fff;
  text-align: left;
  background: rgba(4, 9, 30, 0.85);
  padding: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.2s cubic-bezier(0.2, 0.7, 0.4, 0.9);
  transition: all 0.2s cubic-bezier(0.2, 0.7, 0.4, 0.9);
}
.section_masonry .masonry_container .hovertxt_wrp .txt h3 {
  font-size: 24px;
  line-height: 1.2;
  word-break: break-all;
}
.section_masonry .masonry_container .hovertxt_wrp .txt p + p {
  font-size: 12px;
  line-height: 1.6;
}
.section_masonry .masonry_container .hovertxt_wrp .txt.txt_scale {
  transform--webkit-transform: scale(0.5);
  transform--moz-transform: scale(0.5);
  transform--ms-transform: scale(0.5);
  transform-transform: scale(0.5);
}
.section_masonry .masonry_container .hovertxt_wrp.hover .txt {
  opacity: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  transform--webkit-transform: rotate(0) rotateX(0) rotateY(0) scale(1);
  transform--moz-transform: rotate(0) rotateX(0) rotateY(0) scale(1);
  transform--ms-transform: rotate(0) rotateX(0) rotateY(0) scale(1);
  transform-transform: rotate(0) rotateX(0) rotateY(0) scale(1);
}
.section_masonry .masonry_container .hovertxt_wrp.hover a {
  color: #fff;
}
.section_masonry .masonry_container .hovertxt_wrp.hover:hover {
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 800px) {
  .section_masonry .masonry_container .hovertxt_wrp .txt {
    display: none;
    /*border-radius: 11px;
    padding:6vw 5vw;*/
  }
  .section_masonry .masonry_container .hovertxt_wrp .txt h3 {
    font-size: 3.5vw;
    line-height: 1.3;
  }
  .section_masonry .masonry_container .hovertxt_wrp .txt p {
    font-size: 2.3vw;
  }
}
.section_masonry .masonry_container .hovertxt_wrp .btn_hovertxt {
  width: 200px;
  margin: 0 auto;
  margin-top: 20px;
  position: relative;
  display: block;
  background-color: #0faee7;
  text-align: center;
  color: #fff;
  font-size: 18px;
  line-height: 20px;
  font-weight: bold;
  padding: 10px 0;
  border-radius: 20px;
  -webkit-transition: all 0.5s cubic-bezier(0.2, 0.7, 0.4, 0.9);
  transition: all 0.5s cubic-bezier(0.2, 0.7, 0.4, 0.9);
}
.section_masonry .masonry_container .hovertxt_wrp .btn_hovertxt:after {
  position: absolute;
  content: " ";
  width: 6px;
  height: 6px;
  top: 0;
  left: auto;
  bottom: 0;
  right: 10px;
  margin: auto;
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.section_masonry .masonry_container .hovertxt_wrp .btn_hovertxt:hover {
  text-decoration: none;
  background-color: #308fe8;
}
/*-------------------------------------------------------------
	topページ　snsbnr
-------------------------------------------------------------*/
.section_snsbnr .section_inner {
  padding: 60px 0 20px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_snsbnr .section_inner a {
  display: block;
}
.section_snsbnr .section_inner a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 800px) {
  .section_snsbnr .section_inner .grid_wrp .grid {
    margin-top: 0;
  }
  .section_snsbnr .section_inner .grid_wrp .grid_2_1 {
    width: calc((100% - 2vw) / 2);
  }
}

/*-------------------------------------------------------------
	topページ　coming soon
-------------------------------------------------------------*/
.section_comingsoon {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_comingsoon .section_inner {
  padding: 80px 0;
}
.section_comingsoon .section_inner .comingsoon {
  font-size: 50px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .section_comingsoon .section_inner {
    padding: 15vw 0;
  }
  .section_comingsoon .section_inner .comingsoon {
    font-size: 10vw;
    line-height: 1.5;
  }
}

/*===============================================================
	色
===============================================================*/
/*===============================================================
	mixinテスト
===============================================================*/
.under_line {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, rgba(255, 0, 0, 0.3)));
  background: linear-gradient(transparent 70%, rgba(255, 0, 0, 0.3) 0%);
  display: inline;
}

.under_marker {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, #ff0));
  background: linear-gradient(transparent 0%, #ff0 0%);
  display: inline;
}

.btn_link {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  border: solid 1px #000;
}
.btn_link a {
  display: block;
  text-align: center;
  background: #fff;
  color: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 20px;
  text-decoration: none;
}
@media screen and (max-width: 800px) {
  .btn_link a {
    padding: 3vw;
  }
}
.btn_link a:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}
.btn_link a {
  position: relative;
}
.btn_link a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  border: solid 1px #000;
  width: 6px;
  height: 6px;
  border-top: none;
  border-left: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  right: 10px;
  -webkit-transform: rotate(-45deg) translate(-1px, -1px);
          transform: rotate(-45deg) translate(-1px, -1px);
}
.btn_link a:hover::after {
  border: solid 1px #fff;
  border-top: none;
  border-left: none;
}
@media screen and (max-width: 800px) {
  .btn_link {
    width: 80%;
  }
}

.btn_sankaku {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  border: solid 1px #000;
}
.btn_sankaku a {
  display: block;
  text-align: center;
  background: #000;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 20px;
  text-decoration: none;
}
@media screen and (max-width: 800px) {
  .btn_sankaku a {
    padding: 3vw;
  }
}
.btn_sankaku a:hover {
  background: #fff;
  color: #000;
  text-decoration: none;
}
.btn_sankaku a {
  position: relative;
}
.btn_sankaku a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 0;
  height: 0;
  border-style: solid;
  left: 10px;
  border-width: 5px 8px 5px 0;
  border-color: transparent #fff transparent transparent;
}
.btn_sankaku a:hover::after {
  border-width: 5px 8px 5px 0;
  border-color: transparent #000 transparent transparent;
}
@media screen and (max-width: 800px) {
  .btn_sankaku {
    width: 80%;
  }
}

.bg_slash {
  background-image: linear-gradient(-45deg, #fff 25%, #eee 25%, #eee 50%, #fff 50%, #fff 75%, #eee 75%, #eee);
  background-size: 5px 5px;
  padding: 30px;
}

.bg_grade {
  background: #FF6EC9;
  background: -webkit-gradient(linear, left top, right top, from(#FF6EC9), to(#5DCAFC));
  background: linear-gradient(to right, #FF6EC9 0%, #5DCAFC 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FF6EC9", endColorstr=" #5DCAFC", GradientType=1);
  padding: 30px;
}
/*# sourceMappingURL=style.css.map */