@charset "UTF-8";
/* -- foundation -- */
/* CSS Document */
/*----------------------------------------------------
	☆etc
----------------------------------------------------*/
/*----------------------------------------------------
    ☆component
----------------------------------------------------*/
/*----------------------------------------------------
    ☆margin
----------------------------------------------------*/
/*----------------------------------------------------
    ☆element size fix
----------------------------------------------------*/
/*----------------------------------------------------
    ☆position
----------------------------------------------------*/
/*----------------------------------------------------
    ☆border
----------------------------------------------------*/
/*----------------------------------------------------
    ☆button
----------------------------------------------------*/
/*----------------------------------------------------
    ☆animation
----------------------------------------------------*/
@keyframes arrowAnimLeft {
  0% {
    transform: translateX(0);
    opacity: 1; }
  50% {
    transform: translateX(-100%);
    opacity: 0; }
  50.1% {
    transform: translateX(100%);
    opacity: 0; }
  100% {
    transform: translateX(0%);
    opacity: 1; } }
@keyframes arrowAnimLeft {
  0% {
    transform: translateX(0);
    opacity: 1; }
  50% {
    transform: translateX(100%);
    opacity: 0; }
  50.1% {
    transform: translateX(-100%);
    opacity: 0; }
  100% {
    transform: translateX(0%);
    opacity: 1; } }
@keyframes arrowAnimTop {
  0% {
    transform: translateY(0);
    opacity: 1; }
  50% {
    transform: translateY(-100%);
    opacity: 0; }
  50.1% {
    transform: translateY(100%);
    opacity: 0; }
  100% {
    transform: translateY(0%);
    opacity: 1; } }
@keyframes arrowAnimTop {
  0% {
    transform: translateY(0);
    opacity: 1; }
  50% {
    transform: translateY(-100%);
    opacity: 0; }
  50.1% {
    transform: translateY(100%);
    opacity: 0; }
  100% {
    transform: translateY(0%);
    opacity: 1; } }
/* ------------------------------ */
/* -- FONT -- */
/* ------------------------------ */
/* -- Function -- */
.pc {
  display: block !important; }

.sp {
  display: none !important; }

.anchor {
  margin-top: 0px;
  padding-top: 0px; }

.nolink {
  pointer-events: none;
  cursor: default; }

@media only screen and (max-width: 768px) {
  .pc {
    display: none !important; }

  .sp {
    display: block !important; }

  .anchor {
    margin-top: 0px;
    padding-top: 0px; } }
/* -- layout -- */
/* -- foundation -- */
/* --------------------------- */
/* main */
.l-main {
  display: block;
  position: relative;
  width: 100%;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box; }
.l-main--fullwindow {
  position: absolute;
  height: calc( 100% - 69px - 50px );
  padding: 0; }
.l-main__content {
  position: relative;
  position: relative;
  width: 100%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto; }
@media only screen and (max-width: 768px) {
  .l-main {
    margin-top: 0px;
    margin-bottom: 0px;
    padding-left: 4.6875%;
    padding-right: 4.6875%; }
  .l-main--fullwindow {
    height: calc( 100% - 36px - 28px ); } }

.l-block {
  position: relative;
  /* ブラウザのスクロールバーの幅を考慮 */ }
.l-block:after {
  display: table;
  content: "";
  clear: both; }
.l-block--breaking-mg {
  margin-right: -webkit-calc(50% - 50vw + 9px);
  margin-left: -webkit-calc(50% - 50vw + 9px);
  margin-right: calc(50% - 50vw + 9px);
  margin-left: calc(50% - 50vw + 9px); }
.l-block--breaking-pd {
  padding-right: -webkit-calc(50vw - 50%);
  padding-left: -webkit-calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-left: calc(50vw - 50%); }
.l-block__inner {
  position: relative;
  width: 100%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto; }
.l-block__innerMin {
  position: relative;
  width: 100%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto; }
@media only screen and (max-width: 768px) {
  .l-block--breaking-mg {
    margin-right: -webkit-calc(50% - 50vw);
    margin-left: -webkit-calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw); }
  .l-block--breaking-pd {
    padding-right: -webkit-calc(50vw - 50%);
    padding-left: -webkit-calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    padding-left: calc(50vw - 50%); } }

.l-flex {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex; }
.l-flex--wrap {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
.l-flex--left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start; }
.l-flex--right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end; }
.l-flex--center {
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center; }
.l-flex--spb {
  -webkit-box-pack: justify;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between; }
.l-flex--spa {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around; }
.l-flex--v-top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start; }
.l-flex--v-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center; }
.l-flex--v-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  align-items: flex-end; }
.l-flex--reverse {
  -webkit-box-direction: reverse;
  /*--- Androidブラウザ用 ---*/
  -webkit-flex-direction: row-reverse;
  /*--- safari（PC）用 ---*/
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }
.l-flex--column {
  -webkit-box-direction: column;
  /*--- Androidブラウザ用 ---*/
  -webkit-flex-direction: column;
  /*--- safari（PC）用 ---*/
  -ms-flex-direction: column;
  flex-direction: column; }
.l-flex__elem, .l-flex__elem--blank {
  position: relative;
  /*
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  */
  -webkit-flex-basis: 0;
  -ms-flex-basis: 0;
  flex-basis: 0;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  min-width: 1px;
  max-width: 100%; }
.l-flex__elem-inline {
  position: relative;
  /*
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  */
  -webkit-flex-basis: 0;
  -ms-flex-basis: 0;
  flex-basis: 0;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  min-width: 1px;
  max-width: 100%; }
.l-flex__elem--sep {
  width: 100% !important; }
@media only screen and (max-width: 768px) {
  .l-flex__elem, .l-flex__elem--blank {
    -webkit-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; } }

.l-flexMargin {
  /* -- マージンをセットする --*/
  margin-left: 40px; }
.l-flexMargin:first-child {
  margin-left: 0; }
@media only screen and (max-width: 768px) {
  .l-flexMargin {
    margin-left: 0;
    margin-top: 40px; }
  .l-flexMargin:first-child {
    margin-top: 0; } }
.l-flexMargin--sep {
  margin-top: 40px; }
.l-flexMargin--sep + * {
  margin-left: 0; }
@media only screen and (max-width: 768px) {
  .l-flexMargin--sep {
    margin-top: 0; } }
.l-flexMargin--blank {
  margin-left: 40px; }
.l-flexMargin--blank:first-child {
  margin-left: 0; }
@media only screen and (max-width: 768px) {
  .l-flexMargin--blank {
    margin-left: 0;
    margin-top: 40px; }
  .l-flexMargin--blank:first-child {
    margin-top: 0; } }
@media only screen and (max-width: 768px) {
  .l-flexMargin--blank {
    margin-top: 0; } }
.l-flexMargin--w200 {
  /* px % どちらでも可 */
  -webkit-box-flex: 0 0 200px !important;
  -webkit-flex: 0 0 200px !important;
  -ms-flex: 0 0 200px !important;
  flex: 0 0 200px !important;
  max-width: 200px !important;
  /*
  @media only screen and (max-width: 768px) {
      -webkit-box-flex: none;
      -ms-flex: none;
      flex: none;
      width: $fxw;
      float: left;
  }
  */
  /* @include block__elem--width( ( 200 / 1000 ) * 100% ); */ }

@media only screen and (max-width: 768px) {
  .l-order1 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1; }

  .l-order2 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2; }

  .l-order3 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3; }

  .l-order4 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 4;
    -webkit-order: 4;
    order: 4; }

  .l-order5 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 5;
    -webkit-order: 5;
    order: 5; } }
.l-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  left: 0;
  top: 0; }
.l-modal__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.9); }
.l-modal__inner {
  position: relative; }

/* -- object -- */
/* -- title -- */
.c-h1-header {
  display: inline-block;
  font-size: 62px;
  /*font-size: $size * 0.1rem;*/
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.05em;
  line-height: 1.2; }
.c-h1-header + .caption {
  font-size: 26px;
  /*font-size: $size * 0.1rem;*/
  text-align: center;
  font-weight: 200;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 25px; }
.c-h1-header--detail {
  font-size: 38px;
  /*font-size: $size * 0.1rem;*/
  font-weight: 300;
  font-style: italic;
  color: #f7c000;
  line-height: 1.2;
  margin-bottom: 37px; }
.c-h1-header--detail span {
  font-size: 23px;
  /*font-size: $size * 0.1rem;*/ }
@media only screen and (max-width: 1280px) {
  .c-h1-header {
    font-size: 4.84375vw; }
  .c-h1-header + .caption {
    font-size: 2.03125vw; } }
@media only screen and (max-width: 768px) {
  .c-h1-header {
    font-size: 9.6875vw;
    text-align: center;
    width: 100%; }
  .c-h1-header + .caption {
    font-size: 4.0625vw;
    margin-bottom: 16px; }
  .c-h1-header--detail {
    font-size: 17px;
    /*font-size: $size * 0.1rem;*/
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-bottom: 18px; }
  .c-h1-header--detail span {
    font-size: 10px;
    /*font-size: $size * 0.1rem;*/ } }

.c-h2-header {
  position: relative;
  font-size: 27px;
  /*font-size: $size * 0.1rem;*/
  padding-left: 50px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 23px; }
.c-h2-header--info:before {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/common/icon-info.png") left top no-repeat; }
.c-h2-header--report:before {
  content: "";
  position: absolute;
  width: 35px;
  height: 24px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/common/icon-report.png") left top no-repeat; }
.c-h2-header--detail {
  font-size: 45px;
  /*font-size: $size * 0.1rem;*/
  color: #006ab0;
  font-weight: 300;
  font-style: italic;
  text-align: center;
  line-height: 1.2; }
.c-h2-header--detail + p {
  font-size: 18px;
  /*font-size: $size * 0.1rem;*/
  text-align: center;
  margin-top: 15px; }
@media only screen and (max-width: 768px) {
  .c-h2-header {
    font-size: 14px;
    /*font-size: $size * 0.1rem;*/
    padding-left: 25px;
    margin-bottom: 15px; }
  .c-h2-header--info:before {
    width: 17px;
    height: 17px;
    background-size: 100%; }
  .c-h2-header--report:before {
    width: 17px;
    height: 12px;
    background-size: 100%; }
  .c-h2-header--detail {
    font-size: 19px;
    /*font-size: $size * 0.1rem;*/ }
  .c-h2-header--detail + p {
    font-size: 10px;
    /*font-size: $size * 0.1rem;*/
    margin-top: 20px; } }

.c-h3-header {
  font-size: 27px;
  /*font-size: $size * 0.1rem;*/
  line-height: 1.2;
  text-align: center;
  font-weight: 500;
  margin-bottom: 20px; }
@media only screen and (max-width: 768px) {
  .c-h3-header {
    font-size: 14px;
    /*font-size: $size * 0.1rem;*/
    margin-bottom: 13px; } }

.c-h4-osusume {
  font-size: 26px;
  /*font-size: $size * 0.1rem;*/
  line-height: 1.4;
  margin-bottom: 40px;
  font-weight: 400; }

.c-h4-header {
  font-size: 15px;
  /*font-size: $size * 0.1rem;*/
  line-height: 1.4;
  margin-bottom: 5px;
  color: #626262;
  font-weight: 400; }

.c-h5-header {
  font-size: 18px;
  /*font-size: $size * 0.1rem;*/
  line-height: 1.1;
  margin-bottom: 1.5rem; }
.c-h5-header--icon {
  color: #000;
  padding-left: 1em; }
.c-h5-header--icon:before {
  content: "■";
  color: #004097;
  margin-left: -1em; }
.c-h5-header--blue {
  font-size: 16px;
  /*font-size: $size * 0.1rem;*/
  color: #004097;
  margin-bottom: 20px; }

.c-hd-label {
  font-size: 20px;
  /*font-size: $size * 0.1rem;*/
  font-weight: bold;
  margin-bottom: 5px; }

.c-hd--center {
  text-align: center; }

.c-link {
  display: inline-block; }
.c-link:before {
  content: "●"; }

/* --------------------------- */
/* text */
.c-txt {
  line-height: 1.8em; }
.c-txt--large {
  font-size: 18px;
  /*font-size: $size * 0.1rem;*/ }
.c-txt--base {
  font-size: 16px;
  /*font-size: $size * 0.1rem;*/ }
.c-txt--small {
  font-size: 14px;
  /*font-size: $size * 0.1rem;*/ }

.c-txt + .c-txt {
  margin-top: 2em; }

.copyright {
  font-size: 10px;
  /*font-size: $size * 0.1rem;*/
  text-align: center; }

.c-notice {
  font-weight: 200;
  font-size: 12px;
  /*font-size: $size * 0.1rem;*/ }

/* -- foundation -- */
/* CSS Document */
/*----------------------------------------------------
	☆etc
----------------------------------------------------*/
/*----------------------------------------------------
    ☆component
----------------------------------------------------*/
/*----------------------------------------------------
    ☆margin
----------------------------------------------------*/
/*----------------------------------------------------
    ☆element size fix
----------------------------------------------------*/
/*----------------------------------------------------
    ☆position
----------------------------------------------------*/
/*----------------------------------------------------
    ☆border
----------------------------------------------------*/
/*----------------------------------------------------
    ☆button
----------------------------------------------------*/
/*----------------------------------------------------
    ☆animation
----------------------------------------------------*/
@keyframes arrowAnimLeft {
  0% {
    transform: translateX(0);
    opacity: 1; }
  50% {
    transform: translateX(-100%);
    opacity: 0; }
  50.1% {
    transform: translateX(100%);
    opacity: 0; }
  100% {
    transform: translateX(0%);
    opacity: 1; } }
@keyframes arrowAnimLeft {
  0% {
    transform: translateX(0);
    opacity: 1; }
  50% {
    transform: translateX(100%);
    opacity: 0; }
  50.1% {
    transform: translateX(-100%);
    opacity: 0; }
  100% {
    transform: translateX(0%);
    opacity: 1; } }
@keyframes arrowAnimTop {
  0% {
    transform: translateY(0);
    opacity: 1; }
  50% {
    transform: translateY(-100%);
    opacity: 0; }
  50.1% {
    transform: translateY(100%);
    opacity: 0; }
  100% {
    transform: translateY(0%);
    opacity: 1; } }
@keyframes arrowAnimTop {
  0% {
    transform: translateY(0);
    opacity: 1; }
  50% {
    transform: translateY(-100%);
    opacity: 0; }
  50.1% {
    transform: translateY(100%);
    opacity: 0; }
  100% {
    transform: translateY(0%);
    opacity: 1; } }
/* ------------------------------ */
/* -- FONT -- */
/* ------------------------------ */
/* -- Function -- */
/* --------------------------- */
/* media */
.c-media {
  line-height: 0; }
.c-media--mw100 {
  max-width: 100%; }
.c-media__image {
  /* -- img tags -- */
  width: 100%; }
.c-media--video {
  position: relative;
  line-height: 0; }
.c-media--video:before {
  display: block;
  content: "";
  padding-top: 56.25%;
  pointer-events: none; }
.c-media--video__vid {
  /* -- video tags and Youtube iframe -- */
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0; }

/* --------------------------- */
/* alerts */
.c-badge {
  display: inline-block;
  padding: .25em .4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline; }
.c-badge--round {
  border-radius: .5rem; }
.c-badge--secondary {
  color: #fff;
  background-color: #868e96; }
.c-badge__bakudan:after {
  content: "";
  position: absolute;
  width: 98px;
  height: 97px;
  background: url("../images/common/bakudan-icon.png");
  background-size: 100%;
  left: -18px;
  top: -32px; }
.c-badge__bakudan--center:after {
  top: 12px; }
@media only screen and (max-width: 1080px) {
  .c-badge__bakudan:after {
    width: 9.07407vw;
    height: 8.98148vw; } }
@media only screen and (max-width: 768px) {
  .c-badge__bakudan:after {
    width: 55px;
    height: 55px;
    left: -9px;
    top: -13px; } }

/* --------------------------- */
/* button component */
.c-btn {
  display: inline-block;
  position: relative;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 16px;
  /*font-size: $size * 0.1rem;*/
  line-height: 1.25;
  font-weight: 400;
  /* 16px × 1.25 = 高さ20px */
  /* padding .5rem × 2 = 10px */
  /* border 1px × 2 = 2px */
  /* 合計 30px */
  padding: 0.5rem 0.75rem;
  border: 1px solid transparent;
  transition: all .15s ease-in-out;
  background-color: #fff !important; }
.c-btn:hover {
  text-decoration: none; }
.c-btn --text:hover {
  text-decoration: none; }
.c-btn--img {
  transition: filter 0.2s; }
.c-btn--img:hover {
  -webkit-filter: sepia(110%);
  -moz-filter: sepia(110%);
  -o-filter: sepia(110%);
  -ms-filter: sepia(110%);
  filter: brightness(110%); }
.c-btn--box {
  position: relative;
  padding: 21px 45px;
  border: 1px solid #006ab0;
  text-decoration: none !important;
  color: #006ab0 !important; }
.c-btn--box:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-top: 2px solid #006ab0;
  border-right: 2px solid #006ab0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 13px; }
@media only screen and (max-width: 768px) {
  .c-btn--box {
    padding: 13px 44px;
    font-size: 10px;
    /*font-size: $size * 0.1rem;*/ }
  .c-btn--box:after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    top: 0;
    bottom: 0;
    margin: auto;
    border-top: 1px solid #006ab0;
    border-right: 1px solid #006ab0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 11px; } }
.c-btn--base {
  border-style: none;
  font-size: 16px;
  /*font-size: $size * 0.1rem;*/
  position: relative;
  display: block;
  width: 202px;
  height: 42px;
  line-height: 42px;
  -webkit-border-radius: 21px;
  border-radius: 21px;
  color: #fff !important;
  font-weight: bold;
  background-color: #ec1651;
  text-align: center;
  text-decoration: none;
  box-shadow: 0px 3px 0px 0px #b2113d; }
.c-btn--base:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 15px; }
.c-btn--base:hover {
  text-decoration: none;
  transform: translateY(3px);
  box-shadow: 0px 0px 0px 0px #b2113d;
  -webkit-filter: sepia(120%);
  -moz-filter: sepia(120%);
  -o-filter: sepia(120%);
  -ms-filter: sepia(120%);
  filter: brightness(120%); }
@media only screen and (max-width: 768px) {
  .c-btn--base {
    font-size: 10px;
    /*font-size: $size * 0.1rem;*/
    width: 140px;
    height: 28px;
    line-height: 28px;
    -webkit-border-radius: 14px;
    border-radius: 14px;
    font-weight: 500; }
  .c-btn--base:after {
    right: 12px; } }
.c-btn--block {
  display: block;
  width: 100%; }
.c-btn--round {
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  border-radius: 0.5rem; }
.c-btn--arrow {
  position: relative;
  /*
  &:hover:after {
  	border-color: #fff;
  }
  */ }
.c-btn--arrow:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-top: 2px solid #006ab0;
  border-right: 2px solid #006ab0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }
.c-btn--arrow-left {
  padding-left: 16px; }
.c-btn--arrow-left:after {
  left: 0; }
.c-btn--arrow-right {
  padding-right: 16px; }
.c-btn--arrow-right:after {
  right: 0; }
.c-btn--arrow-center:before {
  left: 0;
  right: 0; }
.c-btn--arrow-next:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }
.c-btn--arrow-prev:after {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg); }
.c-btn--arrow-up:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }
.c-btn--arrow-down:after {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg); }
.c-btn--arrow:hover {
  text-decoration: none; }
.c-btn--primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff; }
.c-btn--exlink {
  border: 1px solid #004097;
  background-color: #fff !important;
  color: #004097;
  font-size: 16px;
  /*font-size: $size * 0.1rem;*/
  font-weight: normal;
  height: auto;
  line-height: 1.4 !important;
  padding-top: 7px !important;
  padding-bottom: 7px !important; }
.c-btn--exlink:after {
  border-top: 1px solid #004097 !important;
  border-right: 1px solid #004097 !important; }
@media only screen and (max-width: 768px) {
  .c-btn--exlink {
    font-size: 12px;
    /*font-size: $size * 0.1rem;*/ } }
.c-btn--card:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -20px;
  top: -20px;
  padding: 20px;
  box-shadow: 0px 0px 10px 0px #a6a6a6;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s; }
.c-btn--card:hover {
  text-decoration: none; }
.c-btn--card:hover p {
  color: #b0272d; }
.c-btn--card:hover > .p-idxCard__img img {
  transform: scale(1.1); }
.c-btn--card:hover > .c-btn--readmore {
  text-decoration: none;
  color: #fff;
  background-color: #b0272d; }
.c-btn--card:hover > .c-btn--readmore:after {
  border-color: #fff; }
.c-btn--card:hover:before {
  opacity: 1; }

.c-linkbtn {
  line-height: 2em;
  /*border-bottom: 1px solid $COL_BLUE;*/ }
.c-linkbtn--arrow {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  padding-right: 1rem;
  box-sizing: border-box;
  float: right; }
.c-linkbtn--arrow:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-top: 2px solid #006ab0;
  border-right: 2px solid #006ab0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 0; }
@media only screen and (max-width: 768px) {
  .c-linkbtn--arrow {
    padding-right: 0.7rem; }
  .c-linkbtn--arrow:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    top: 0;
    bottom: 0;
    margin: auto;
    border-top: 1px solid #006ab0;
    border-right: 1px solid #006ab0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); } }

.c-btn-hover {
  position: relative;
  display: block; }
.c-btn-hover:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.2s; }
.c-btn-hover:hover:after {
  opacity: 0.5; }

.hover-animation {
  /*
  overflow: hidden;
  */ }
.hover-animation img {
  /*transform: scale(1);*/
  transition: all 0.6s ease; }
.hover-animation:hover img {
  /*transform: scale(1.1);*/
  opacity: 0.7; }

/* --------------------------- */
/* list */
.c-list {
  position: relative;
  width: 100%; }
.c-list__elem {
  position: relative;
  width: 100%; }

/* --------------------------- */
/* block */
.col--yellow {
  color: #f7c000 !important; }

.col--blue {
  color: #00b7ee !important; }

.col--green {
  color: #90b821 !important; }

.col--pink {
  color: #f19ec2 !important; }

.col--purple {
  color: #aa89bd !important; }

.col--orange {
  color: #ec6941 !important; }

.col--red {
  color: #da3250 !important; }

.col--dark-green {
  color: #22ac38 !important; }

.col--dark-blue {
  color: #00479d !important; }

.col--dark-pink {
  color: #ea68a2 !important; }

.col--brown {
  color: #996c33 !important; }

.bg--yellow {
  background-color: #f7c000 !important; }

.bg--blue {
  background-color: #00b7ee !important; }

.bg--green {
  background-color: #90b821 !important; }

.bg--pink {
  background-color: #f19ec2 !important; }

.bg--purple {
  background-color: #aa89bd !important; }

.bg--orange {
  background-color: #ec6941 !important; }

.bg--red {
  background-color: #da3250 !important; }

.bg--dark-green {
  background-color: #22ac38 !important; }

.bg--dark-blue {
  background-color: #00479d !important; }

.bg--dark-pink {
  background-color: #ea68a2 !important; }

.bg--brown {
  background-color: #996c33 !important; }

.c-detailTitleBlock {
  padding: 30px 30px 42px 30px;
  border-bottom: 1px solid #c9c9c9; }

.c-navBtn {
  position: absolute;
  right: 0;
  top: -10px;
  color: #fff !important;
  background-color: #006ab0;
  z-index: 999;
  text-decoration: none !important;
  width: 228px;
  height: 95px;
  box-sizing: border-box;
  transition: all 0.3s;
  overflow: hidden; }
.c-navBtn .c-media__image {
  width: auto; }
.c-navBtn__hitarea {
  position: absolute;
  width: 100%;
  height: 95px;
  left: 0;
  top: 0;
  cursor: pointer;
  z-index: 999; }
.c-navBtn__txtBlock {
  position: absolute;
  left: 30px;
  top: 18px; }
.c-navBtn__catch {
  font-size: 7.5px;
  /*font-size: $size * 0.1rem;*/
  margin-bottom: 6px !important; }
.c-navBtn.open {
  width: 950px;
  height: 369px; }

.c-contentNav {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s,opacity 0.2s 0.3s; }
.c-contentNav.open {
  opacity: 1;
  visibility: visible;
  /*transition: opacity 0.2s,visibility 0s 0.2s;*/ }
.c-contentNav__elem {
  margin: 10px 0; }
.c-contentNav__elem a {
  font-size: 20px;
  /*font-size: $size * 0.1rem;*/
  font-weight: 200;
  color: #fff !important;
  padding-left: 32px;
  position: relative;
  text-decoration: none;
  letter-spacing: 0.1em; }
.c-contentNav__elem a:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 0; }
.c-contentNav__elem a:hover {
  opacity: 0.7; }

.menu-trigger, .menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box; }

.menu-trigger {
  position: absolute;
  width: 50px;
  height: 41px;
  right: 30px;
  top: 26px;
  cursor: pointer; }
.menu-trigger span {
  position: absolute;
  width: 50px;
  height: 1px;
  background-color: #fff;
  cursor: pointer; }
.menu-trigger span:nth-child(1) {
  top: 0; }
.menu-trigger span:nth-child(2) {
  top: 20px; }
.menu-trigger span:nth-child(3) {
  bottom: 0; }

.c-navBtn.open .menu-trigger {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg); }

.c-navBtn.open .menu-trigger span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(20px) rotate(-45deg); }

.c-navBtn.open .menu-trigger span:nth-of-type(2) {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg); }

.c-navBtn.open .menu-trigger span:nth-of-type(3) {
  opacity: 0; }

.c-snsblock {
  background-color: #fffdeb;
  padding: 60px 30px; }
.c-snsblock--container {
  width: auto;
  margin: -15px; }
.c-snsblock__elem {
  padding: 25px 30px;
  margin: 15px;
  background-color: #fff;
  border: 1px solid #c9c9c9;
  box-sizing: border-box;
  text-align: center; }
.c-snsblock__label {
  font-size: 20px;
  /*font-size: $size * 0.1rem;*/
  font-weight: 600;
  color: #006ab0; }
.c-snsblock__dsc {
  margin-top: 10px; }
.c-snsblock__btnarea {
  margin-top: 18px; }
.c-snsblock__fkds {
  margin-right: 24px; }

.c-sponsorBlock {
  padding: 55px 30px; }
.c-sponsorBlock__title {
  font-size: 20px;
  /*font-size: $size * 0.1rem;*/
  color: #006ab0;
  text-align: center;
  margin-bottom: 45px; }
.c-sponsorBlock__detaillink {
  position: absolute;
  right: 15px;
  top: 5px; }
.c-sponsorBlock__detaillink:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-top: 2px solid #006ab0;
  border-right: 2px solid #006ab0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 15px; }
.c-sponsorBlock--container {
  width: auto;
  margin: 0 -24px; }
.c-sponsorBlock__elem {
  margin: 0 24px; }

.c-tryItBlock {
  padding: 65px 30px 45px 30px;
  border-top: 1px solid #c9c9c9; }
.c-tryItBlock__head {
  margin-bottom: 50px; }
.c-tryItBlock__lHead {
  width: 230px;
  margin-right: 17px; }
.c-tryItBlock__hCopy {
  font-size: 18px;
  /*font-size: $size * 0.1rem;*/
  font-weight: 600;
  margin-bottom: 13px !important; }
.c-tryItBlock__tryLogo {
  max-width: 193px; }
.c-tryItBlock__sub {
  margin-bottom: 10px !important;
  font-size: 16px; }
.c-tryItBlock--container {
  width: auto;
  margin: 0 -15px; }
.c-tryItBlock__elem {
  margin: 0 15px; }
.c-tryItBlock__elem a {
  text-decoration: none !important;
  color: #535353 !important; }
.c-tryItBlock__thumb {
  margin-bottom: 13px !important; }
.c-tryItBlock__label {
  font-size: 28px;
  /*font-size: $size * 0.1rem;*/
  font-weight: 300;
  margin-bottom: 5px !important; }
.c-tryItBlock__label--yellow {
  color: #ffd92a; }
.c-tryItBlock__label--green {
  color: #15983a; }
.c-tryItBlock__label--red {
  color: #bc2a2c; }
.c-tryItBlock__dsc {
  font-size: 18px;
  /*font-size: $size * 0.1rem;*/
  font-weight: 600;
  margin-bottom: 18px !important; }
.c-tryItBlock__link {
  position: relative;
  font-weight: 300; }
.c-tryItBlock__link:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 17px; }

.c-bannerBlock {
  background-color: #f5f5f5;
  padding: 40px 30px 25px 30px; }
.c-bannerBlock--bnrlist {
  margin-bottom: 15px; }
.c-bannerBlock__elem {
  margin: 0 12px;
  max-width: 100%; }
.c-bannerBlock__txtContainer {
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center; }
.c-bannerBlock__txtlink {
  color: #006ab0 !important;
  margin: 0 35px; }
.c-bannerBlock__txtlink:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-top: 2px solid #006ab0;
  border-right: 2px solid #006ab0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 15px; }

.c-footerArea {
  padding: 65px 30px 13px;
  margin-bottom: -80px; }
.c-footerArea__linearea {
  position: absolute;
  left: -2px;
  top: 17px;
  padding: 14px 10px;
  border: 1px solid #00b900;
  background-color: #fff;
  z-index: 999; }
.c-footerArea__copy {
  font-size: 13px;
  /*font-size: $size * 0.1rem;*/
  color: #535353; }

.c-thumbBlockContainer {
  width: auto;
  margin: -15px; }

.c-thumbBlock {
  display: block;
  color: #fff !important;
  text-decoration: none !important;
  margin: 15px;
  position: relative;
  transition: opacity 0.2s; }
.c-thumbBlock:hover {
  opacity: 0.7; }
.c-thumbBlock--shokudo:after {
  content: "" !important;
  position: absolute;
  width: 77px;
  height: 76px;
  right: -21px;
  top: -30px;
  background: url("../images/common/icon-shoku-do.png");
  visibility: visible; }
.c-thumbBlock__img {
  position: relative;
  /* px % どちらでも可 */
  -webkit-box-flex: 0 0 39.78261% !important;
  -webkit-flex: 0 0 39.78261% !important;
  -ms-flex: 0 0 39.78261% !important;
  flex: 0 0 39.78261% !important;
  max-width: 39.78261% !important;
  /*
  @media only screen and (max-width: 768px) {
      -webkit-box-flex: none;
      -ms-flex: none;
      flex: none;
      width: $fxw;
      float: left;
  }
  */ }
.c-thumbBlock__new {
  position: relative; }
.c-thumbBlock__new:after {
  content: "" !important;
  position: absolute;
  width: 50px;
  height: 50px;
  left: 0;
  top: 0;
  background: url("../images/common/label-new.png");
  visibility: visible; }
.c-thumbBlock__txtarea {
  position: relative;
  /* px % どちらでも可 */
  -webkit-box-flex: 0 0 60.21739% !important;
  -webkit-flex: 0 0 60.21739% !important;
  -ms-flex: 0 0 60.21739% !important;
  flex: 0 0 60.21739% !important;
  max-width: 60.21739% !important;
  /*
  @media only screen and (max-width: 768px) {
      -webkit-box-flex: none;
      -ms-flex: none;
      flex: none;
      width: $fxw;
      float: left;
  }
  */
  padding: 12px 20px;
  box-sizing: border-box; }
.c-thumbBlock__txtarea:before {
  content: "";
  position: absolute;
  left: -29px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 19px 29px 19px 0;
  border-color: transparent #90b821 transparent transparent; }
.c-thumbBlock--yellow {
  background-color: #f7c000; }
.c-thumbBlock--yellow .c-thumbBlock__txtarea:before {
  border-color: transparent #f7c000 transparent transparent; }
.c-thumbBlock--blue {
  background-color: #00b7ee; }
.c-thumbBlock--blue .c-thumbBlock__txtarea:before {
  border-color: transparent #00b7ee transparent transparent; }
.c-thumbBlock--green {
  background-color: #90b821; }
.c-thumbBlock--green .c-thumbBlock__txtarea:before {
  border-color: transparent #90b821 transparent transparent; }
.c-thumbBlock--pink {
  background-color: #f19ec2; }
.c-thumbBlock--pink .c-thumbBlock__txtarea:before {
  border-color: transparent #f19ec2 transparent transparent; }
.c-thumbBlock--purple {
  background-color: #aa89bd; }
.c-thumbBlock--purple .c-thumbBlock__txtarea:before {
  border-color: transparent #aa89bd transparent transparent; }
.c-thumbBlock--orange {
  background-color: #ec6941; }
.c-thumbBlock--orange .c-thumbBlock__txtarea:before {
  border-color: transparent #ec6941 transparent transparent; }
.c-thumbBlock--red {
  background-color: #da3250; }
.c-thumbBlock--red .c-thumbBlock__txtarea:before {
  border-color: transparent #da3250 transparent transparent; }
.c-thumbBlock--darkgreen {
  background-color: #22ac38; }
.c-thumbBlock--darkgreen .c-thumbBlock__txtarea:before {
  border-color: transparent #22ac38 transparent transparent; }
.c-thumbBlock--darkblue {
  background-color: #00479d; }
.c-thumbBlock--darkblue .c-thumbBlock__txtarea:before {
  border-color: transparent #00479d transparent transparent; }
.c-thumbBlock--darkpink {
  background-color: #ea68a2; }
.c-thumbBlock--darkpink .c-thumbBlock__txtarea:before {
  border-color: transparent #ea68a2 transparent transparent; }
.c-thumbBlock--brown {
  background-color: #996c33; }
.c-thumbBlock--brown .c-thumbBlock__txtarea:before {
  border-color: transparent #996c33 transparent transparent; }
.c-thumbBlock__catch {
  font-size: 28px;
  /*font-size: $size * 0.1rem;*/
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin-bottom: 15px !important;
  white-space: nowrap; }
.c-thumbBlock__catch--min {
  font-size: 20px;
  /*font-size: $size * 0.1rem;*/ }
.c-thumbBlock__name {
  font-size: 25px;
  /*font-size: $size * 0.1rem;*/
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap; }
.c-thumbBlock__title {
  font-size: 12px;
  /*font-size: $size * 0.1rem;*/
  font-weight: 500; }
.c-thumbBlock__san {
  font-size: 14px;
  /*font-size: $size * 0.1rem;*/
  font-weight: 500; }
.c-thumbBlock__rp {
  font-size: 13px;
  /*font-size: $size * 0.1rem;*/
  font-weight: 300;
  position: absolute;
  bottom: 10px; }
.c-thumbBlock__rp:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 5px; }
@media only screen and (max-width: 1030px) {
  .c-thumbBlock__txtarea {
    padding: 1.16505vw 1.94175vw; }
  .c-thumbBlock__catch {
    font-size: 2.71845vw;
    margin-bottom: 1.45631vw !important; }
  .c-thumbBlock__catch--min {
    font-size: 1.94175vw; }
  .c-thumbBlock__name {
    font-size: 2.42718vw; }
  .c-thumbBlock__title {
    font-size: 1.16505vw; }
  .c-thumbBlock__san {
    font-size: 1.35922vw; }
  .c-thumbBlock__rp {
    font-size: 1.26214vw; } }

.c-rpEventArea {
  background-color: #fdf2cc;
  padding: 60px 30px; }

.c-rpEventBlock {
  background-color: #fff;
  white-space: nowrap;
  position: relative; }
.c-rpEventBlock__img {
  /* px % どちらでも可 */
  -webkit-box-flex: 0 0 15.68421% !important;
  -webkit-flex: 0 0 15.68421% !important;
  -ms-flex: 0 0 15.68421% !important;
  flex: 0 0 15.68421% !important;
  max-width: 15.68421% !important;
  /*
  @media only screen and (max-width: 768px) {
      -webkit-box-flex: none;
      -ms-flex: none;
      flex: none;
      width: $fxw;
      float: left;
  }
  */ }
.c-rpEventBlock__icon {
  /* px % どちらでも可 */
  -webkit-box-flex: 0 0 13.26316% !important;
  -webkit-flex: 0 0 13.26316% !important;
  -ms-flex: 0 0 13.26316% !important;
  flex: 0 0 13.26316% !important;
  max-width: 13.26316% !important;
  /*
  @media only screen and (max-width: 768px) {
      -webkit-box-flex: none;
      -ms-flex: none;
      flex: none;
      width: $fxw;
      float: left;
  }
  */
  margin-right: 25px; }
.c-rpEventBlock__txtarea {
  padding: 0 22px; }
.c-rpEventBlock__detailLink {
  position: relative;
  display: block;
  height: 64px;
  line-height: 64px;
  color: #fff !important;
  background-color: #006ab0;
  font-weight: 600;
  text-align: center;
  text-decoration: none !important;
  margin-right: 30px;
  transition: opacity 0.2s; }
@media only screen and (min-width: 768px) {
  .c-rpEventBlock__detailLink {
    /* px % どちらでも可 */
    -webkit-box-flex: 0 0 18.84211% !important;
    -webkit-flex: 0 0 18.84211% !important;
    -ms-flex: 0 0 18.84211% !important;
    flex: 0 0 18.84211% !important;
    max-width: 18.84211% !important;
    /*
    @media only screen and (max-width: 768px) {
        -webkit-box-flex: none;
        -ms-flex: none;
        flex: none;
        width: $fxw;
        float: left;
    }
    */ } }
.c-rpEventBlock__detailLink:hover {
  opacity: 0.7; }
.c-rpEventBlock__detailLink:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 12px; }
.c-rpEventBlock__label {
  font-size: 18px;
  /*font-size: $size * 0.1rem;*/ }
.c-rpEventBlock__h3 {
  font-size: 28px;
  /*font-size: $size * 0.1rem;*/
  color: #f7c000;
  line-height: 1.3;
  margin-bottom: 10px; }
.c-rpEventBlock__title {
  font-size: 12px;
  /*font-size: $size * 0.1rem;*/
  font-weight: 500;
  margin-right: 15px; }
.c-rpEventBlock__name {
  font-size: 25px;
  /*font-size: $size * 0.1rem;*/
  font-weight: 600; }
.c-rpEventBlock__san {
  font-size: 14px;
  /*font-size: $size * 0.1rem;*/
  font-weight: 500; }
@media only screen and (max-width: 1030px) {
  .c-rpEventBlock__label {
    font-size: 1.74757vw; }
  .c-rpEventBlock__h3 {
    font-size: 2.71845vw; }
  .c-rpEventBlock__title {
    font-size: 1.16505vw; }
  .c-rpEventBlock__name {
    font-size: 2.42718vw; }
  .c-rpEventBlock__san {
    font-size: 1.35922vw; }
  .c-rpEventBlock__detailLink {
    font-size: 1.45631vw; } }

.c-textBlock {
  margin-bottom: 50px !important; }
.c-textBlock__label {
  font-size: 23px;
  /*font-size: $size * 0.1rem;*/
  text-align: center;
  font-weight: 600;
  color: #00479d;
  margin-bottom: 35px !important; }
.c-textBlock__txt {
  color: #626262;
  line-height: 1.9;
  letter-spacing: 0.03em; }

.c-imgTextBlock {
  width: auto;
  margin: 0 -20px;
  margin-bottom: 45px; }
.c-imgTextBlock__elem {
  margin: 0 20px; }
.c-imgTextBlock__label {
  font-size: 20px;
  /*font-size: $size * 0.1rem;*/
  font-weight: 600;
  color: #00479d;
  margin-bottom: 15px !important; }
.c-imgTextBlock__txt {
  color: #626262;
  line-height: 1.9;
  letter-spacing: 0.03em; }

.c-largePhotoBlock {
  margin-bottom: 37px; }
.c-largePhotoBlock__photo {
  margin-bottom: 30px; }
.c-largePhotoBlock__caption {
  display: table;
  margin: 0 auto;
  font-size: 18px;
  /*font-size: $size * 0.1rem;*/
  font-weight: 200; }
.c-largePhotoBlock__caption span {
  font-weight: 500; }

@media only screen and (max-width: 768px) {
  .c-navBtn {
    right: 0;
    top: 0;
    width: 100%;
    height: 46px;
    overflow: hidden; }
  .c-navBtn .c-media__image {
    width: 100%; }
  .c-navBtn__hitarea {
    height: 46px; }
  .c-navBtn__txtBlock {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 46px; }
  .c-navBtn__logo {
    width: 56px;
    float: left;
    margin-top: 16px;
    margin-left: 10px; }
  .c-navBtn__catch {
    font-size: 9px;
    /*font-size: $size * 0.1rem;*/
    margin-bottom: 0 !important;
    float: left;
    line-height: 46px;
    margin-left: 6.25vw; }
  .c-navBtn.open {
    width: 100%;
    height: 178px; }

  .c-contentNav {
    margin-top: 46px; }
  .c-contentNav__elem {
    margin: 10px 0; }
  .c-contentNav__elem a {
    font-size: 10px;
    /*font-size: $size * 0.1rem;*/
    padding-left: 15px; }
  .c-contentNav__elem a:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    top: 0;
    bottom: 0;
    margin: auto;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); }

  .menu-trigger {
    width: 15px;
    height: 15px;
    right: 20px;
    top: 15px; }
  .menu-trigger span {
    width: 15px; }
  .menu-trigger span:nth-child(1) {
    top: 7px; }
  .menu-trigger span:nth-child(2) {
    top: 7px;
    transform: rotate(90deg); }
  .menu-trigger span:nth-child(3) {
    display: none; }

  .c-navBtn.open .menu-trigger span:nth-of-type(1) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg); }

  .c-detailTitleBlock {
    padding: 21px 6.25vw 21px 6.25vw; }
  .c-detailTitleBlock--noborder {
    border-bottom: 0; }

  .c-rpEventArea {
    background-color: #fdf2cc;
    padding: 6.875vw 6.25vw; }

  .c-rpEventBlock {
    padding: 14px 6.25vw 85px 6.25vw;
    box-sizing: border-box;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start; }
  .c-rpEventBlock__img {
    /* px % どちらでも可 */
    -webkit-box-flex: 0 0 36.875% !important;
    -webkit-flex: 0 0 36.875% !important;
    -ms-flex: 0 0 36.875% !important;
    flex: 0 0 36.875% !important;
    max-width: 36.875% !important;
    /*
    @media only screen and (max-width: 768px) {
        -webkit-box-flex: none;
        -ms-flex: none;
        flex: none;
        width: $fxw;
        float: left;
    }
    */
    margin-top: 27px; }
  .c-rpEventBlock__icon {
    display: none; }
  .c-rpEventBlock__txtarea {
    padding: 0;
    /* px % どちらでも可 */
    -webkit-box-flex: 0 0 63.125% !important;
    -webkit-flex: 0 0 63.125% !important;
    -ms-flex: 0 0 63.125% !important;
    flex: 0 0 63.125% !important;
    max-width: 63.125% !important;
    /*
    @media only screen and (max-width: 768px) {
        -webkit-box-flex: none;
        -ms-flex: none;
        flex: none;
        width: $fxw;
        float: left;
    }
    */ }
  .c-rpEventBlock__detailLink {
    font-size: 10px;
    /*font-size: $size * 0.1rem;*/
    width: 135px;
    display: block;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 25px;
    position: absolute;
    height: 40px;
    line-height: 40px; }
  .c-rpEventBlock__detailLink:after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    top: 0;
    bottom: 0;
    margin: auto;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 10px; }
  .c-rpEventBlock__label {
    font-size: 10px;
    /*font-size: $size * 0.1rem;*/
    margin-bottom: 10px !important;
    font-weight: 300; }
  .c-rpEventBlock__h3 {
    font-size: 15px;
    /*font-size: $size * 0.1rem;*/
    line-height: 1.5;
    margin-bottom: 15px; }
  .c-rpEventBlock__title {
    font-size: 9px;
    /*font-size: $size * 0.1rem;*/
    margin-right: 0; }
  .c-rpEventBlock__name {
    font-size: 15px;
    /*font-size: $size * 0.1rem;*/ }
  .c-rpEventBlock__san {
    font-size: 8px;
    /*font-size: $size * 0.1rem;*/ }

  .c-thumbBlockContainer {
    margin: 0; }

  .c-thumbBlock {
    margin: 0; }
  .c-thumbBlock + .c-thumbBlock {
    margin-top: 20px; }
  .c-thumbBlock--sep {
    margin-top: 20px; }
  .c-thumbBlock--shokudo:after {
    width: 43px;
    height: 43px;
    right: -10px;
    top: -15px;
    background-size: 100%; }
  .c-thumbBlock__img {
    /* px % どちらでも可 */
    -webkit-box-flex: 0 0 39.82143% !important;
    -webkit-flex: 0 0 39.82143% !important;
    -ms-flex: 0 0 39.82143% !important;
    flex: 0 0 39.82143% !important;
    max-width: 39.82143% !important;
    /*
    @media only screen and (max-width: 768px) {
        -webkit-box-flex: none;
        -ms-flex: none;
        flex: none;
        width: $fxw;
        float: left;
    }
    */ }
  .c-thumbBlock__new:after {
    width: 30px;
    height: 30px;
    background-size: 100%; }
  .c-thumbBlock__txtarea {
    /* px % どちらでも可 */
    -webkit-box-flex: 0 0 60.35714% !important;
    -webkit-flex: 0 0 60.35714% !important;
    -ms-flex: 0 0 60.35714% !important;
    flex: 0 0 60.35714% !important;
    max-width: 60.35714% !important;
    /*
    @media only screen and (max-width: 768px) {
        -webkit-box-flex: none;
        -ms-flex: none;
        flex: none;
        width: $fxw;
        float: left;
    }
    */
    padding: 2.34375vw 4.0625vw 2.34375vw 4.0625vw; }
  .c-thumbBlock__txtarea:before {
    left: -18px;
    border-width: 11.5px 18px 11.5px 0; }
  .c-thumbBlock__catch {
    font-size: 5.3125vw;
    margin-bottom: 12px !important; }
  .c-thumbBlock__catch--min {
    font-size: 3.75vw; }
  .c-thumbBlock__name {
    font-size: 4.6875vw; }
  .c-thumbBlock__title {
    font-size: 2.1875vw; }
  .c-thumbBlock__san {
    font-size: 2.8125vw; }
  .c-thumbBlock__rp {
    font-size: 2.5vw;
    bottom: 5px; }
  .c-thumbBlock__rp:after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    top: 0;
    bottom: 0;
    margin: auto;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-left: 3px; }

  .c-snsblock {
    padding: 6.25vw 5.46875vw; }
  .c-snsblock--container {
    width: 100%;
    margin: 0; }
  .c-snsblock__elem {
    padding: 20px;
    margin: 0;
    min-height: 205px;
    box-sizing: border-box; }
  .c-snsblock__elem + .c-snsblock__elem {
    margin-top: 20px; }
  .c-snsblock__label {
    font-size: 10px;
    /*font-size: $size * 0.1rem;*/ }
  .c-snsblock__dsc {
    margin-top: 12px; }
  .c-snsblock__btnarea {
    margin-top: 15px; }
  .c-snsblock__fkds {
    /* px % どちらでも可 */
    -webkit-box-flex: 0 0 45.38653% !important;
    -webkit-flex: 0 0 45.38653% !important;
    -ms-flex: 0 0 45.38653% !important;
    flex: 0 0 45.38653% !important;
    max-width: 45.38653% !important;
    /*
    @media only screen and (max-width: 768px) {
        -webkit-box-flex: none;
        -ms-flex: none;
        flex: none;
        width: $fxw;
        float: left;
    }
    */
    margin-right: 7px; }

  .c-sponsorBlock {
    padding: 6.25vw 5.46875vw; }
  .c-sponsorBlock__title {
    font-size: 11px;
    /*font-size: $size * 0.1rem;*/
    margin-bottom: 26px; }
  .c-sponsorBlock__detaillink {
    position: relative;
    right: auto;
    top: auto;
    display: table;
    margin: 0 auto;
    margin-top: 22px;
    font-size: 11px;
    /*font-size: $size * 0.1rem;*/ }
  .c-sponsorBlock__detaillink:after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    top: 0;
    bottom: 0;
    margin: auto;
    border-top: 2px solid #006ab0;
    border-right: 2px solid #006ab0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-left: 10px; }
  .c-sponsorBlock--container {
    margin: 0 -16px;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center; }
  .c-sponsorBlock__elem {
    margin: 0 16px; }
  .c-sponsorBlock__margin {
    margin-top: 31px; }

  .c-tryItBlock {
    padding: 6.25vw 5.46875vw; }
  .c-tryItBlock__head {
    margin-bottom: 20px; }
  .c-tryItBlock__lHead {
    width: auto;
    text-align: center;
    display: table;
    margin: 0 auto;
    margin-right: auto;
    margin-bottom: 15px; }
  .c-tryItBlock__hCopy {
    font-size: 11px;
    /*font-size: $size * 0.1rem;*/
    margin-bottom: 16px !important; }
  .c-tryItBlock__tryLogo {
    max-width: 114px;
    margin: 0 auto; }
  .c-tryItBlock__sub {
    margin-bottom: 0 !important;
    font-size: 12px; }
  .c-tryItBlock--container {
    width: 100%;
    margin: 0; }
  .c-tryItBlock__elem {
    margin: 0; }
  .c-tryItBlock__elem + .c-tryItBlock__elem {
    margin-top: 15px; }
  .c-tryItBlock__thumb {
    margin-bottom: 13px !important; }
  .c-tryItBlock__label {
    font-size: 20px;
    /*font-size: $size * 0.1rem;*/
    font-weight: 400;
    margin-bottom: 5px !important; }
  .c-tryItBlock__dsc {
    font-size: 13px;
    /*font-size: $size * 0.1rem;*/
    line-height: 1.8;
    margin-bottom: 10px !important; }
  .c-tryItBlock__link {
    font-size: 11px;
    /*font-size: $size * 0.1rem;*/ }
  .c-tryItBlock__link:after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    top: 0;
    bottom: 0;
    margin: auto;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-left: 8px; }

  .c-bannerBlock {
    padding: 8.28125vw 6.25vw 4.6875vw 6.25vw; }
  .c-bannerBlock--bnrlist {
    margin-bottom: 18px; }
  .c-bannerBlock__elem {
    margin: 0;
    max-width: 234px; }
  .c-bannerBlock__elem + .c-bannerBlock__elem {
    margin-top: 10px; }
  .c-bannerBlock__txtContainer {
    display: block !important; }
  .c-bannerBlock__txtContainer li {
    margin-top: 12px; }
  .c-bannerBlock__txtlink {
    position: relative;
    margin: 0;
    font-size: 11px;
    /*font-size: $size * 0.1rem;*/ }
  .c-bannerBlock__txtlink:after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    top: 0;
    bottom: 0;
    margin: auto;
    border-top: 2px solid #006ab0;
    border-right: 2px solid #006ab0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-left: 10px; }

  .c-footerArea {
    padding: 5.9375vw 6.25vw 5.625vw 6.25vw;
    margin: 0;
    margin-bottom: 0; }
  .c-footerArea__linearea {
    position: absolute;
    left: -2px;
    top: 17px;
    padding: 14px 10px;
    border: 1px solid #00b900;
    background-color: #fff;
    z-index: 999; }
  .c-footerArea__copy {
    font-size: 10px;
    /*font-size: $size * 0.1rem;*/ }

  .c-textBlock {
    margin-bottom: 25px !important; }
  .c-textBlock__label {
    font-size: 12px;
    /*font-size: $size * 0.1rem;*/
    margin-bottom: 14px !important; }

  .c-imgTextBlock {
    width: 100%;
    margin: 0;
    margin-bottom: 22px; }
  .c-imgTextBlock__elem {
    margin: 0; }
  .c-imgTextBlock__elem + .c-imgTextBlock__elem {
    margin-top: 20px; }
  .c-imgTextBlock__label {
    font-size: 12px;
    /*font-size: $size * 0.1rem;*/
    margin-bottom: 15px !important; }

  .c-largePhotoBlock {
    width: auto;
    margin: 0 -6.25vw;
    margin-bottom: 23px; }
  .c-largePhotoBlock__photo {
    margin-bottom: 13px; }
  .c-largePhotoBlock__caption {
    display: block;
    padding: 0 6.25vw !important;
    font-size: 10px;
    /*font-size: $size * 0.1rem;*/ } }
/* --------------------------- */
/* card */
.c-card {
  margin-left: 45px;
  background-color: #fff;
  border: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  line-height: 0; }
.c-card:first-child {
  margin-left: 0; }
@media only screen and (max-width: 768px) {
  .c-card {
    margin-left: 0;
    margin-top: 45px; }
  .c-card:first-child {
    margin-top: 0; } }
.c-card--frame {
  padding: 20px; }
.c-card--frame:hover {
  box-shadow: 0px 0px 10px 0px #a6a6a6; }
.c-card__thumb, .c-card__thumb-pd {
  width: 100%; }
.c-card__thumb img, .c-card__thumb-pd img {
  width: 100%; }
.c-card__thumb-pd {
  padding: 0 0 0 0;
  box-sizing: border-box; }
.c-card__body {
  padding: 20px 15px 85px 15px;
  line-height: 1.5; }
@media only screen and (max-width: 768px) {
  .c-card {
    margin-top: 25px;
    border-bottom: 1px solid #cdcdcd;
    padding-bottom: 78px; }
  .c-card:last-child {
    border-bottom: none; }
  .c-card__body {
    margin-top: 15px;
    padding-bottom: 0; }
  .c-card--empty {
    display: none; } }
.c-card--parallel {
  line-height: 0; }
.c-card--parallel + .c-card--parallel {
  margin-top: 15px;
  border-top: 1px solid #ccc;
  padding-top: 15px; }
.c-card--parallel__thumb img {
  width: 100%; }
.c-card--parallel__thumb + .c-card--parallel__body {
  margin-left: 40px; }
.c-card--parallel__body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 1.5; }
.c-card--parallel__body + .c-card--parallel__thumb {
  margin-left: 40px; }
@media only screen and (max-width: 768px) {
  .c-card--parallel__thumb {
    /*flex: 0 0 100% !important;
    max-width: 100% !important;*/
    width: 54px; }
  .c-card--parallel__thumb + .c-card--parallel__body {
    margin-left: 24px;
    margin-top: 0; }
  .c-card--parallel__body + .c-card--parallel__thumb {
    margin-left: 24px;
    margin-top: 0; } }

.c-cardW100 {
  padding: 50px 30px 55px 30px; }
.c-cardW100__flexbox {
  border: 1px solid #e1dedf;
  background-color: #fff;
  padding: 3px;
  box-sizing: border-box; }
.c-cardW100__flexbox + .c-cardW100__flexbox {
  margin-top: 27px; }
.c-cardW100__thumbElem {
  /* px % どちらでも可 */
  -webkit-box-flex: 0 0 53.22581% !important;
  -webkit-flex: 0 0 53.22581% !important;
  -ms-flex: 0 0 53.22581% !important;
  flex: 0 0 53.22581% !important;
  max-width: 53.22581% !important;
  /*
  @media only screen and (max-width: 768px) {
      -webkit-box-flex: none;
      -ms-flex: none;
      flex: none;
      width: $fxw;
      float: left;
  }
  */ }
.c-cardW100__textElem {
  /* px % どちらでも可 */
  -webkit-box-flex: 0 0 46.77419% !important;
  -webkit-flex: 0 0 46.77419% !important;
  -ms-flex: 0 0 46.77419% !important;
  flex: 0 0 46.77419% !important;
  max-width: 46.77419% !important;
  /*
  @media only screen and (max-width: 768px) {
      -webkit-box-flex: none;
      -ms-flex: none;
      flex: none;
      width: $fxw;
      float: left;
  }
  */
  background-color: #fafafa;
  padding: 35px 20px 60px 20px;
  box-sizing: border-box; }
.c-cardW100__textElem-fmy {
  padding: 18px 20px 20px 20px; }
.c-cardW100__tab {
  color: #fff;
  font-size: 15px;
  /*font-size: $size * 0.1rem;*/
  font-weight: bold;
  line-height: 25px;
  padding: 0 10px;
  white-space: nowrap;
  position: absolute;
  left: -4px;
  top: -9px; }
.c-cardW100__tab:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  right: -6px;
  top: 0;
  background: url("../images/index/idx-tab-frame.png"); }
.c-cardW100__tab--orange {
  background-color: #ff5400; }
.c-cardW100__tab--red {
  background-color: #ad0000; }
.c-cardW100__tab-min {
  left: -1px;
  top: -5px;
  font-size: 13px;
  /*font-size: $size * 0.1rem;*/ }
.c-cardW100__label {
  font-size: 22px;
  /*font-size: $size * 0.1rem;*/
  color: #da3250;
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.07em; }
.c-cardW100__label-b {
  font-size: 20px;
  /*font-size: $size * 0.1rem;*/
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.07em; }
.c-cardW100__detail {
  font-size: 14px;
  /*font-size: $size * 0.1rem;*/
  margin-bottom: 25px; }
.c-cardW100__link {
  font-size: 14px;
  /*font-size: $size * 0.1rem;*/ }
.c-cardW100__cartBtn {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 15px; }
.c-cardW100__readmore {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 23px; }
@media only screen and (max-width: 1080px) {
  .c-cardW100__tab {
    font-size: 1.38889vw;
    line-height: 2.31481vw; }
  .c-cardW100__tab-min {
    font-size: 1.2037vw; }
  .c-cardW100__textElem {
    padding: 3.24074vw 1.85185vw 6.48148vw 1.85185vw;
    box-sizing: border-box; }
  .c-cardW100__textElem-fmy {
    padding: 1.66667vw 1.85185vw 1.85185vw 1.85185vw;
    box-sizing: border-box; }
  .c-cardW100__label {
    font-size: 2.03704vw;
    margin-bottom: 0.92593vw; }
  .c-cardW100__label-b {
    font-size: 1.85185vw;
    margin-bottom: 0.92593vw; }
  .c-cardW100__detail {
    font-size: 1.2963vw;
    margin-bottom: 2.31481vw; }
  .c-cardW100__link {
    font-size: 1.2963vw; }
  .c-cardW100__readmore {
    bottom: 2.12963vw; } }
@media only screen and (max-width: 768px) {
  .c-cardW100 {
    padding: 28px 4.6875% 20px 4.6875%; }
  .c-cardW100__thumbElem {
    /* px % どちらでも可 */
    -webkit-box-flex: 0 0 100% !important;
    -webkit-flex: 0 0 100% !important;
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    /*
    @media only screen and (max-width: 768px) {
        -webkit-box-flex: none;
        -ms-flex: none;
        flex: none;
        width: $fxw;
        float: left;
    }
    */ }
  .c-cardW100__textElem {
    /* px % どちらでも可 */
    -webkit-box-flex: 0 0 100% !important;
    -webkit-flex: 0 0 100% !important;
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    /*
    @media only screen and (max-width: 768px) {
        -webkit-box-flex: none;
        -ms-flex: none;
        flex: none;
        width: $fxw;
        float: left;
    }
    */
    background-color: #fafafa;
    padding: 35px 20px 60px 20px;
    box-sizing: border-box; }
  .c-cardW100__textElem-fmy {
    padding: 10px 10px 73px 10px; }
  .c-cardW100__tab {
    font-size: 11px;
    /*font-size: $size * 0.1rem;*/
    line-height: 18px; }
  .c-cardW100__tab-min {
    font-size: 11px;
    /*font-size: $size * 0.1rem;*/ }
  .c-cardW100__label {
    font-size: 15px;
    /*font-size: $size * 0.1rem;*/
    margin-bottom: 4px; }
  .c-cardW100__label-b {
    font-size: 13px;
    /*font-size: $size * 0.1rem;*/
    margin-bottom: 4px;
    font-weight: 600; }
  .c-cardW100__detail {
    font-size: 12px;
    /*font-size: $size * 0.1rem;*/
    margin-bottom: 4px; }
  .c-cardW100__link {
    font-size: 12px;
    /*font-size: $size * 0.1rem;*/ }
  .c-cardW100__readmore {
    bottom: 27px; } }

.c-cardPickup {
  padding: 53px 0 70px 0; }
.c-cardPickup__head {
  margin-bottom: 35px; }
.c-cardPickup__h2 {
  position: relative;
  font-size: 30px;
  /*font-size: $size * 0.1rem;*/
  padding-right: 22px;
  margin-right: 20px;
  line-height: 50px; }
.c-cardPickup__h2:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 50px;
  background-color: #da3250;
  right: 0;
  top: 0; }
.c-cardPickup__h2cache {
  font-size: 17px;
  /*font-size: $size * 0.1rem;*/ }
.c-cardPickup__elem {
  border: 1px solid #e1dedf;
  background-color: #f6f6f6;
  box-shadow: 0 0 0 3px #fff inset;
  padding: 3px;
  box-sizing: border-box;
  margin: 0; }
.c-cardPickup__elem + .c-cardPickup__elem {
  margin-left: 20px; }
.c-cardPickup__elem--sep {
  margin-top: 15px; }
.c-cardPickup__elem--empty {
  visibility: hidden; }
.l-flex__elem--sep + .c-cardPickup__elem {
  margin-left: 0; }
.c-cardPickup__body {
  padding-bottom: 50px; }
.c-cardPickup__label {
  font-size: 22px;
  /*font-size: $size * 0.1rem;*/
  font-weight: 600;
  color: #da3250;
  margin-bottom: 14px;
  line-height: 1.5;
  letter-spacing: -0.06em; }
.c-cardPickup__label-m {
  font-size: 18px;
  /*font-size: $size * 0.1rem;*/
  margin-bottom: 9px; }
.c-cardPickup__cache {
  font-size: 20px;
  /*font-size: $size * 0.1rem;*/
  font-weight: 500;
  color: #000;
  margin-bottom: 13px;
  line-height: 1.5;
  letter-spacing: -0.06em; }
.c-cardPickup__cache-m {
  font-size: 16px;
  /*font-size: $size * 0.1rem;*/ }
.c-cardPickup__txt {
  font-size: 14px;
  /*font-size: $size * 0.1rem;*/
  margin-bottom: 10px;
  line-height: 1.5; }
.c-cardPickup__link {
  font-size: 14px;
  /*font-size: $size * 0.1rem;*/
  display: block;
  text-align: right; }
.c-cardPickup__linkArrow {
  font-size: 14px;
  /*font-size: $size * 0.1rem;*/
  position: absolute;
  right: 26px;
  bottom: 25px;
  padding-right: 10px;
  line-height: 1.2; }
.c-cardPickup__linkArrow:after {
  right: 0; }
.c-cardPickup__cartBtn {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 28px; }
@media only screen and (max-width: 1080px) {
  .c-cardPickup__h2 {
    font-size: 2.77778vw;
    line-height: 4.62963vw; }
  .c-cardPickup__h2:after {
    height: 4.62963vw; }
  .c-cardPickup__cache {
    font-size: 1.57407vw; }
  .c-cardPickup__label {
    font-size: 2.03704vw;
    margin-bottom: 0.92593vw; }
  .c-cardPickup__txt {
    font-size: 1.2963vw;
    margin-bottom: 0.92593vw; }
  .c-cardPickup__link {
    font-size: 1.2963vw; }
  .c-cardPickup__linkArrow {
    font-size: 1.2963vw; } }
@media only screen and (max-width: 768px) {
  .c-cardPickup {
    padding: 20px 0; }
  .c-cardPickup__head {
    margin-bottom: 15px; }
  .c-cardPickup__h2 {
    font-size: 18px;
    /*font-size: $size * 0.1rem;*/
    line-height: 4.62963vw;
    text-align: center;
    padding: 0;
    margin: 0 0 10px 0;
    width: 100%; }
  .c-cardPickup__h2:after {
    content: none; }
  .c-cardPickup__h2cache {
    font-size: 11px;
    /*font-size: $size * 0.1rem;*/
    width: 100%;
    text-align: center;
    margin-bottom: 0; }
  .c-cardPickup__elem {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex; }
  .c-cardPickup__elem + .c-cardPickup__elem {
    margin-left: 0;
    margin-top: 13px; }
  .c-cardPickup__elem--sep {
    margin-top: 13px; }
  .c-cardPickup__elem--empty {
    display: none; }
  .c-cardPickup__thumb {
    /* px % どちらでも可 */
    -webkit-box-flex: 0 0 46.55172% !important;
    -webkit-flex: 0 0 46.55172% !important;
    -ms-flex: 0 0 46.55172% !important;
    flex: 0 0 46.55172% !important;
    max-width: 46.55172% !important;
    /*
    @media only screen and (max-width: 768px) {
        -webkit-box-flex: none;
        -ms-flex: none;
        flex: none;
        width: $fxw;
        float: left;
    }
    */ }
  .c-cardPickup__body {
    /* px % どちらでも可 */
    -webkit-box-flex: 0 0 53.44828% !important;
    -webkit-flex: 0 0 53.44828% !important;
    -ms-flex: 0 0 53.44828% !important;
    flex: 0 0 53.44828% !important;
    max-width: 53.44828% !important;
    /*
    @media only screen and (max-width: 768px) {
        -webkit-box-flex: none;
        -ms-flex: none;
        flex: none;
        width: $fxw;
        float: left;
    }
    */
    padding: 14px 10px 37px 10px;
    box-sizing: border-box;
    margin-top: 0; }
  .c-cardPickup__label {
    font-size: 4.0625vw;
    margin-bottom: 6px; }
  .c-cardPickup__cache {
    display: none; }
  .c-cardPickup__txt {
    font-size: 3.125vw;
    margin-bottom: 0.92593vw; }
  .c-cardPickup__link {
    font-size: 3.125vw; }
  .c-cardPickup__linkArrow {
    font-size: 3.125vw;
    right: 19px;
    bottom: 18px;
    padding-right: 10px; } }

/* ---------------------------- */
.p-aero__mainImg {
  margin-top: 42px;
  margin-bottom: 45px; }
.p-aero__blockMargin {
  margin-bottom: 80px !important; }
.p-aero__blockMargin--mdl {
  margin-bottom: 60px !important; }
.p-aero__h1Span {
  color: #000000;
  font-size: 13px;
  /*font-size: $size * 0.1rem;*/ }
.p-aeroBox {
  padding: 45px !important; }
.p-aero__txt {
  text-align: left !important;
  font-size: 16px;
  /*font-size: $size * 0.1rem;*/ }
.p-aero__blue {
  color: #0032a1; }

.p-aeroChronology__date {
  position: relative;
  width: 17.47126%;
  font-size: 16px;
  /*font-size: $size * 0.1rem;*/
  color: #626262;
  font-weight: bold;
  padding: 12px 10px 12px 0;
  box-sizing: border-box;
  letter-spacing: -0.05em; }
.p-aeroChronology__date:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #c9c9c9;
  top: 0;
  right: 4px; }
.p-aeroChronology__date:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #0032a1;
  top: 20px;
  right: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%; }
.p-aeroChronology__date--top:before {
  height: calc( 100% - 22px );
  top: 22px; }
.p-aeroChronology__date--bottom:before {
  height: 22px; }
.p-aeroChronology__margin {
  padding-bottom: 60px; }
.p-aeroChronology__dsc {
  width: 82.52874%;
  font-size: 16px;
  /*font-size: $size * 0.1rem;*/
  color: #0032a1;
  padding: 12px 0 12px 20px;
  box-sizing: border-box; }
.p-aeroChronology__dsc a {
  color: #0032a1 !important; }

.p-aeroThumbBlock {
  margin-top: 45px;
  margin-bottom: 30px; }
.p-aeroThumbBlock--s1 {
  max-width: 531px; }
.p-aeroThumbBlock--s2 {
  max-width: 512px; }
.p-aeroThumbBlock--s3 {
  max-width: 672px; }
.p-aeroThumbBlock__elem + .p-aeroThumbBlock__elem {
  margin-left: 20px; }
.p-aeroThumbBlock__sep {
  width: 100%;
  font-size: 13px;
  /*font-size: $size * 0.1rem;*/
  color: #626262;
  margin-top: 12px;
  text-align: left !important; }
.p-aeroThumbBlock__caption {
  font-size: 13px;
  /*font-size: $size * 0.1rem;*/
  color: #626262;
  margin-top: 12px;
  text-align: left !important; }
.p-aeroThumbBlock__cap-right {
  font-size: 13px;
  /*font-size: $size * 0.1rem;*/
  color: #626262;
  margin-top: 12px; }

.p-aeroComment__thumb {
  width: 180px; }
.p-aeroComment__txt {
  margin-left: 28px; }
.p-aeroComment__name {
  font-size: 15px;
  /*font-size: $size * 0.1rem;*/
  color: #626262;
  text-align: left !important; }
.p-aeroComment__name span {
  font-size: 13px;
  /*font-size: $size * 0.1rem;*/ }

.p-aeroTable {
  text-align: left !important;
  border: none; }
.p-aeroTable__label {
  font-size: 18px;
  /*font-size: $size * 0.1rem;*/
  color: #0032a1;
  margin-bottom: 15px; }
.p-aeroTable__margin {
  margin-bottom: 35px; }
.p-aeroTable tr {
  padding: 0; }
.p-aeroTable th, .p-aeroTable td {
  padding: 6px 0; }
.p-aeroTable__date {
  color: #626262;
  border: none;
  width: 14.71264%; }
.p-aeroTable__media {
  color: #0032a1;
  border: none;
  width: 17.70115%; }
.p-aeroTable__dsc {
  color: #0032a1 !important;
  border: none; }
.p-aeroTable__dsc a {
  color: #0032a1 !important;
  text-decoration: underline; }

.p-aeroFtBanner {
  margin-bottom: 45px; }
.p-aeroFtBanner__large {
  max-width: 733px;
  margin-bottom: 22px; }
.p-aeroFtBanner__elem--margin {
  margin-left: 21px; }

.p-aeroFixBanner {
  display: block;
  position: fixed;
  right: 0;
  bottom: 20px;
  width: 194px;
  transition: opacity 0.2s,visibility 0.2s 0s; }
.p-aeroFixBanner.static {
  opacity: 0;
  visibility: hidden; }

@media only screen and (max-width: 768px) {
  .p-aero__mainImg {
    margin-top: 20px;
    margin-bottom: 22px; }
  .p-aero__blockMargin {
    margin-bottom: 35px !important; }
  .p-aero__blockMargin--mdl {
    margin-bottom: 26px !important; }
  .p-aero__h1Span {
    font-size: 9px;
    /*font-size: $size * 0.1rem;*/ }
  .p-aeroBox {
    padding: 15px !important; }
  .p-aero__txt {
    font-size: 9px;
    /*font-size: $size * 0.1rem;*/ }

  .p-aeroChronology__date {
    width: 32.69231%;
    font-size: 9px;
    /*font-size: $size * 0.1rem;*/
    padding: 6px 10px 6px 0;
    line-height: 1.8; }
  .p-aeroChronology__date:before {
    width: 1px;
    right: 2px; }
  .p-aeroChronology__date:after {
    width: 5px;
    height: 5px;
    top: 11px; }
  .p-aeroChronology__date--top:before {
    height: calc( 100% - 13px );
    top: 13px; }
  .p-aeroChronology__date--bottom:before {
    height: 13px; }
  .p-aeroChronology__margin {
    padding-bottom: 50px; }
  .p-aeroChronology__dsc {
    width: 67.30769%;
    font-size: 9px;
    /*font-size: $size * 0.1rem;*/
    padding: 6px 0 6px 11px;
    line-height: 1.8; }

  .p-aeroThumbBlock {
    margin-top: 16px;
    margin-bottom: 18px; }
  .p-aeroThumbBlock__elem + .p-aeroThumbBlock__elem {
    margin-left: 0;
    margin-top: 10px; }
  .p-aeroThumbBlock__sep {
    font-size: 9px;
    /*font-size: $size * 0.1rem;*/
    margin-top: 8px; }
  .p-aeroThumbBlock__caption {
    font-size: 9px;
    /*font-size: $size * 0.1rem;*/
    margin-top: 8px; }
  .p-aeroThumbBlock__cap-right {
    font-size: 9px;
    /*font-size: $size * 0.1rem;*/
    margin-top: 8px; }

  .p-aeroComment__thumb {
    width: 100%;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex; }
  .p-aeroComment__txt {
    margin-left: 0;
    margin-bottom: 12px; }
  .p-aeroComment__img {
    width: 90px; }
  .p-aeroComment__name {
    margin-left: 15px;
    font-size: 10px;
    /*font-size: $size * 0.1rem;*/ }
  .p-aeroComment__name span {
    font-size: 9px;
    /*font-size: $size * 0.1rem;*/ }

  .p-aeroTable__label {
    font-size: 10px;
    /*font-size: $size * 0.1rem;*/
    margin-bottom: 5px; }
  .p-aeroTable__margin {
    margin-bottom: 20px; }
  .p-aeroTable th, .p-aeroTable td {
    padding: 4px 0;
    font-size: 9px;
    /*font-size: $size * 0.1rem;*/
    vertical-align: top; }
  .p-aeroTable__date {
    width: 26.92308%; }
  .p-aeroTable__media {
    width: 23.07692%; }

  .p-aeroFtBanner {
    margin-bottom: 26px; }
  .p-aeroFtBanner__large {
    max-width: 100%;
    margin-bottom: 15px; }
  .p-aeroFtBanner__elem + .p-aeroFtBanner__elem {
    margin-left: 0; }
  .p-aeroFtBanner__elem--margin {
    margin-left: 0;
    margin-top: 14px; }
  .p-aeroFtBanner__small {
    max-width: 48.44828%;
    margin: 0 auto;
    margin-top: 10px; }

  .p-aeroFixBanner {
    bottom: 0;
    width: 100%; } }
/* ---------------------------- */
/* --------------------------- */
/* text */
.u-txt-lh0 {
  line-height: 0; }

.u-txt-indent {
  text-indent: 1em; }

.u-txt-indent-left {
  text-indent: -0.5em; }

.u-txt-strong {
  font-weight: bold; }

.u-txt-italic {
  font-face: italic; }

.u-txt-center {
  text-align: center; }

.u-txt-right {
  text-align: right; }

.u-txt-ls {
  letter-spacing: -0.05em; }

.u-txt-ls2 {
  letter-spacing: -0.08em; }

.u-txt-min {
  font-size: 60%; }

.u-txt-nolink {
  pointer-events: none; }

.u-txt-green {
  color: #1aa150; }

/* --------------------------- */
/* position */
.u-ab {
  position: absolute; }

.u-rel {
  position: relative; }

.u-fix {
  position: fixed; }

/* -- foundation -- */
/* --------------------------- */
/* margin */
.u-mb--ex-small3 {
  margin-bottom: 20px; }
.u-mb--ex-small2 {
  margin-bottom: 25px; }
.u-mb--ex-small1 {
  margin-bottom: 30px; }
.u-mb--ex-small {
  margin-bottom: 40px; }
.u-mb--small {
  margin-bottom: 60px; }
.u-mb--default {
  margin-bottom: 80px; }
.u-mb--large {
  margin-bottom: 100px; }
.u-mb--ex-large {
  margin-bottom: 120px; }
@media only screen and (max-width: 768px) {
  .u-mb--ex-small3 {
    margin-bottom: 10px; }
  .u-mb--ex-small2 {
    margin-bottom: 13px; }
  .u-mb--ex-small1 {
    margin-bottom: 16px; }
  .u-mb--ex-small {
    margin-bottom: 20px; }
  .u-mb--small {
    margin-bottom: 30px; }
  .u-mb--default {
    margin-bottom: 40px; }
  .u-mb--large {
    margin-bottom: 50px; }
  .u-mb--ex-large {
    margin-bottom: 60px; } }

.u-mt--ex-small {
  margin-top: 40px; }
.u-mt--small {
  margin-top: 60px; }
.u-mt--default {
  margin-top: 80px; }
.u-mt--large {
  margin-top: 100px; }
.u-mt--ex-large {
  margin-top: 120px; }
.u-mt--minus {
  margin-top: -20px; }
@media only screen and (max-width: 768px) {
  .u-mt--ex-small {
    margin-top: 20px; }
  .u-mt--small {
    margin-top: 30px; }
  .u-mt--default {
    margin-top: 40px; }
  .u-mt--large {
    margin-top: 50px; }
  .u-mt--ex-large {
    margin-top: 60px; } }

.u-ml--ex-small {
  margin-left: 10px; }
.u-ml--small {
  margin-left: 20px; }
.u-ml--default {
  margin-left: 30px; }
.u-ml--large {
  margin-left: 40px; }
.u-ml--ex-large {
  margin-left: 60px; }
@media only screen and (max-width: 768px) {
  .u-ml--ex-small {
    margin-left: 5px; }
  .u-ml--small {
    margin-left: 10px; }
  .u-ml--default {
    margin-left: 15px; }
  .u-ml--large {
    margin-left: 20px; }
  .u-ml--ex-large {
    margin-left: 30px; } }

.u-pb--zero {
  padding-bottom: 0 !important; }

.u-fltR {
  float: right;
  margin-left: 15px;
  width: 40%; }
