@charset "UTF-8";
/*@mixin font-sorts {
    font-family: 'Sorts Mill Goudy', serif;
}*/
ul, ol, dl {
  list-style: none;
  padding-left: 0;
}

figure, p {
  margin: 0;
}

/*
  font-size: calc([minimum size] + ([maximum size] - [minimum size]) * ((100vw - [minimum viewport width]) / ([maximum viewport width] - [minimum viewport width])));
*/
@media screen and (min-width: 761px) {
  html {
    /*font-size: calc( 7px + (10 - 8) * ((100vw - 835px) / ( 1334 - 835 ) ));*/
    font-size: 10px;
    overflow: auto;
  }
}
@media screen and (min-width: 1334px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 760px) {
  html {
    font-size: 3.125vw;
  }
}

body {
  font-family: "Noto Sans JP", "Abel", Helvetica, Arial, sans-serif;
  margin: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #231815;
  background-color: #fff;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 761px) {
  body {
    min-width: 560px;
  }
}

*:before,
*::after,
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 0;
  min-width: 0;
}

*::-webkit-input-placeholder {
  font-family: "Noto Sans JP", "Abel", Helvetica, Arial, sans-serif;
}

*::-moz-placeholder {
  font-family: "Noto Sans JP", "Abel", Helvetica, Arial, sans-serif;
}

*:-ms-input-placeholder {
  font-family: "Noto Sans JP", "Abel", Helvetica, Arial, sans-serif;
}

*::-ms-input-placeholder {
  font-family: "Noto Sans JP", "Abel", Helvetica, Arial, sans-serif;
}

*::placeholder {
  font-family: "Noto Sans JP", "Abel", Helvetica, Arial, sans-serif;
}

[data-whatinput=mouse] *:focus,
[data-whatinput=touch] *:focus {
  outline: none;
}

a {
  text-decoration: none;
}
@media screen and (max-width: 760px) {
  a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
}
@media screen and (min-width: 761px) {
  a:hover img {
    -webkit-transition: 0.4s opacity ease;
    transition: 0.4s opacity ease;
    opacity: 0.7;
  }
}
@media screen and (max-width: 760px) {
  a:active {
    opacity: 0.8;
  }
}
a[href^="tel:"] {
  pointer-events: none;
  cursor: inherit;
}
@media screen and (max-width: 760px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}
@media screen and (min-width: 761px) {
  a[href^="tel:"] img {
    pointer-events: none;
  }
}

input:focus,
select:focus,
button:focus {
  outline: none;
}
@media screen and (max-width: 760px) {
  input:focus,
  select:focus,
  button:focus {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
}

/* メディア関連 */
video {
  display: block;
}

video,
video source,
picture source,
img {
  max-width: 100%;
  height: auto;
}

img {
  pointer-events: none;
}

a img {
  pointer-events: auto;
}

/* 端末依存部分 */
@media screen and (min-width: 761px) {
  .sp-only {
    display: none;
  }
}

@media screen and (max-width: 760px) {
  .pc-only {
    display: none;
  }
}

/* Layout
============================================================*/
.l-contentsWrap {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 761px) {
  .l-contentsWrap {
    width: 98%;
    max-width: 940px;
    /*padding-left: 75px;*/
    /*padding-right: 75px;*/
  }
}
@media screen and (max-width: 760px) {
  .l-contentsWrap {
    width: 96%;
  }
}

.l-maincontent {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 761px) {
  .l-maincontent {
    width: 98%;
    max-width: 780px;
  }
}
@media screen and (max-width: 760px) {
  .l-maincontent {
    width: 96%;
  }
}

.l-contentsWrap--narrow {
  position: relative;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 761px) {
  .l-contentsWrap--narrow {
    width: 98%;
    max-width: 780px;
  }
}
@media screen and (max-width: 760px) {
  .l-contentsWrap--narrow {
    width: 96%;
  }
}

/* Header
============================================================*/
.l-jumbotron {
  width: 100%;
  text-align: center;
}

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

/* Nav
============================================================*/
.l-fixednav, .l-fixednav__anim {
  width: 100%;
}
.l-fixednav.is-fixed, .is-fixed.l-fixednav__anim {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

@-webkit-keyframes return-to-zero {
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes return-to-zero {
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.l-fixednav__anim {
  -webkit-transition: top 0.6s;
  transition: top 0.6s;
}
@media screen and (min-width: 761px) {
  .l-fixednav__anim.is-fixed {
    -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
    -webkit-animation: return-to-zero 1s ease-out forwards;
            animation: return-to-zero 1s ease-out forwards;
  }
}

/* Footer
============================================================*/
.l-footer {
  width: 100%;
  text-align: center;
}

/* Shops
============================================================*/
@media screen and (min-width: 761px) {
  .l-leftside {
    margin-left: 0;
    margin-right: auto;
    width: calc((100% - 940px) / 2 + 940px);
    padding-left: calc((100% - 940px) / 2);
    padding-right: 220px;
  }
}

@media screen and (min-width: 761px) {
  .l-rightside {
    margin-left: auto;
    margin-right: 0;
    width: calc((100% - 940px) / 2 + 940px);
    padding-right: calc((100% - 940px) / 2);
    padding-left: 220px;
  }
}

/* Rows
============================================================*/
.l-row-bothside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.l-row-bothside.is-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (min-width: 761px) {
  .l-row-bothside__pconly {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.l-row-bothside__pconly.is-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 760px) {
  .l-row-bothside__sponly {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.l-row-bothside__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 761px) {
  .l-row-bothside__center__pconly {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 760px) {
  .l-row-bothside__center__sponly {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.l-row-bothside__stretch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media screen and (min-width: 761px) {
  .l-row-bothside__stretch__pconly {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

@media screen and (max-width: 760px) {
  .l-row-bothside__stretch__sponly {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

@media screen and (min-width: 761px) {
  .l-row-bothside__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media screen and (min-width: 761px) {
  .l-row-bothside__bottom__pconly {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.l-row-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 761px) {
  .l-row-center__pconly {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.l-row-center__stretch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media screen and (min-width: 761px) {
  .l-row-center__stretch__pconly {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.l-row-center__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (min-width: 761px) {
  .l-row-center__bottom__pconly {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.l-row-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 761px) {
  .l-row-left__pconly {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.l-row-left-top, .l-row-left__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media screen and (min-width: 761px) {
  .l-row-left-top__pconly, .l-row-left__top__pconly {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.l-row-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 761px) {
  .l-row-right__pconly {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.l-row-right__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (min-width: 761px) {
  .l-row-right__top__pconly {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.c-top-title {
  /*display: inline-block;*/
  margin-left: auto;
  margin-right: auto;
}

.c-icon {
  position: absolute;
}

.c-menuList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
}
.c-menuList .c-menuList__item {
  text-align: center;
}

@media screen and (min-width: 761px) {
  .c-menuList__pconly {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
  }
}
.c-menuList__pconly .c-menuList__item {
  text-align: center;
}

.c-hamburger {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  background-color: transparent;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
@media screen and (max-width: 760px) {
  .c-hamburger {
    width: 7.8125vw;
    height: 5vw;
  }
}
.c-hamburger:focus {
  outline: none;
}
.c-hamburger span {
  position: absolute;
  left: 0;
  color: #000;
  width: 100%;
  height: 0;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  border-top: 2px solid #000;
}
.c-hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, top 0.4s;
  transition: transform 0.4s, top 0.4s, -webkit-transform 0.4s;
}
.c-hamburger span:nth-child(2) {
  top: calc(50% - 1px);
  -webkit-transition: opacity 0.4s, width 0.4s;
  transition: opacity 0.4s, width 0.4s;
}
.c-hamburger span:nth-child(3) {
  bottom: 0;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, top 0.4s;
  transition: transform 0.4s, top 0.4s, -webkit-transform 0.4s;
}
@media screen and (min-width: 761px) {
  .c-hamburger:hover span:nth-child(2) {
    cursor: pointer;
    width: 80%;
  }
}
.c-hamburger.is-menuopen span {
  border-color: #000;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.c-hamburger.is-menuopen span:nth-child(1) {
  top: calc(50% - 1px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 761px) {
  .c-hamburger.is-menuopen span:nth-child(1) {
    width: 35px;
  }
}
.c-hamburger.is-menuopen span:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-menuopen span:nth-child(3) {
  top: calc(50% - 1px);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 761px) {
  .c-hamburger.is-menuopen span:nth-child(3) {
    width: 35px;
  }
}
.c-btn__round, .c-btn__round__shadow, .c-btn__round--red, .c-btn__round--green {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
@media screen and (min-width: 761px) {
  .c-btn__round, .c-btn__round__shadow, .c-btn__round--red, .c-btn__round--green {
    width: 460px;
    height: 75px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 760px) {
  .c-btn__round, .c-btn__round__shadow, .c-btn__round--red, .c-btn__round--green {
    width: 71.875vw;
    height: 11.71875vw;
    border-radius: 1.5625vw;
  }
}
@media screen and (min-width: 761px) {
  .c-btn__round:hover, .c-btn__round__shadow:hover, .c-btn__round--red:hover, .c-btn__round--green:hover {
    opacity: 0.8;
  }
}
.c-btn__round:active, .c-btn__round__shadow:active, .c-btn__round--red:active, .c-btn__round--green:active {
  opacity: 0.8;
}
.c-btn__round img, .c-btn__round__shadow img, .c-btn__round--red img, .c-btn__round--green img {
  display: block;
}
@media screen and (max-width: 760px) {
  .c-btn__round img, .c-btn__round__shadow img, .c-btn__round--red img, .c-btn__round--green img {
    max-height: 100%;
  }
}

.c-btn__round--green {
  background: -webkit-gradient(linear, left top, left bottom, from(#8FC31F), color-stop(87%, #66a741), to(#00913A));
  background: linear-gradient(to bottom, #8FC31F 0%, #66a741 87%, #00913A 100%);
}

.c-btn__round--red {
  border-color: #eb081c;
  background-color: #eb081c;
}
@media screen and (min-width: 761px) {
  .c-btn__round--red:hover {
    color: #eb081c;
  }
}
.c-btn__round--red:active {
  color: #eb081c;
}

@media screen and (min-width: 761px) {
  .c-btn__round__shadow {
    -webkit-box-shadow: 5px 5px 0 #018832;
            box-shadow: 5px 5px 0 #018832;
  }
}
@media screen and (max-width: 760px) {
  .c-btn__round__shadow {
    -webkit-box-shadow: vm(3) vm(3) 0 #018832;
            box-shadow: vm(3) vm(3) 0 #018832;
  }
}

.c-btn__borderd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #231815;
  text-decoration: none;
}
@media screen and (min-width: 761px) {
  .c-btn__borderd {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
}
@media screen and (min-width: 761px) {
  .c-btn__borderd:hover {
    background-color: #231815;
  }
}

.c-title__underbar {
  text-align: center;
}
.c-title__underbar:after {
  content: "";
  display: block;
  height: 0px;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px solid #000;
}

.c-list-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-list-horizontal > dd {
  margin-left: 0;
}

@media screen and (min-width: 761px) {
  .c-list-horizontal__pconly {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (min-width: 761px) {
  .c-list-horizontal__pconly > dd {
    margin-left: 0;
  }
}

@media screen and (min-width: 761px) {
  .c-list-article a:hover .c-list-article__texts__title {
    text-decoration: underline;
    text-underline-position: under;
  }
}

.c-list-article__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-list-article__fig img {
  border-radius: 4px;
}

.c-list-article__texts {
  overflow: hidden;
}

.c-list-article__texts__date, .c-pagetitleArea__shoulder__date {
  vertical-align: middle;
  font-family: "Roboto", sans-serif;
  color: #231815;
}
@media screen and (min-width: 761px) {
  .c-list-article__texts__date, .c-pagetitleArea__shoulder__date {
    font-size: fz16-24/10rem;
    line-height: 26/fz16-24;
  }
}
@media screen and (max-width: 760px) {
  .c-list-article__texts__date, .c-pagetitleArea__shoulder__date {
    font-size: fz17-23/2/10rem;
    line-height: 26/fz17-23;
  }
}

.c-list-article__texts__cat, .c-list-article__texts__cat-gray, .c-pagetitleArea__shoulder__cat-gray, .c-list-article__texts__cat-blue, .c-pagetitleArea__shoulder__cat-blue, .c-list-article__texts__cat-red, .c-pagetitleArea__shoulder__cat-red {
  display: inline-block;
  margin-left: 1em;
  padding: 0.2em 0.5em;
  vertical-align: middle;
  border: 1px solid #dddddd;
  border-radius: 4px;
  font-weight: bold;
}
@media screen and (min-width: 761px) {
  .c-list-article__texts__cat, .c-list-article__texts__cat-gray, .c-pagetitleArea__shoulder__cat-gray, .c-list-article__texts__cat-blue, .c-pagetitleArea__shoulder__cat-blue, .c-list-article__texts__cat-red, .c-pagetitleArea__shoulder__cat-red {
    font-size: fz11-12/10rem;
    line-height: 26/fz11-12;
  }
}
@media screen and (max-width: 760px) {
  .c-list-article__texts__cat, .c-list-article__texts__cat-gray, .c-pagetitleArea__shoulder__cat-gray, .c-list-article__texts__cat-blue, .c-pagetitleArea__shoulder__cat-blue, .c-list-article__texts__cat-red, .c-pagetitleArea__shoulder__cat-red {
    font-size: fz11-16/2/10rem;
    line-height: 26/fz11-16;
  }
}

.c-list-article__texts__cat-red, .c-pagetitleArea__shoulder__cat-red {
  color: #eb081c;
  border-color: #eb081c;
}

.c-list-article__texts__cat-blue, .c-pagetitleArea__shoulder__cat-blue {
  color: #2055ea;
  border-color: #2055ea;
}

.c-list-article__texts__cat-gray, .c-pagetitleArea__shoulder__cat-gray {
  color: #999999;
  border-color: #999999;
}

.c-list-article__texts__title {
  margin: 0;
  color: #8FC31F;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (min-width: 761px) {
  .c-list-article__texts__title {
    font-size: 1.6rem;
    line-height: 1.625;
  }
}
@media screen and (max-width: 760px) {
  .c-list-article__texts__title {
    font-size: 0.8rem;
    line-height: 1.625;
  }
}

.c-slider .c-slider__items, .c-slider__scaleup .c-slider__items {
  margin: 0;
  padding: 0;
}
.c-slider .c-slider__items .c-slide__item, .c-slider__scaleup .c-slider__items .c-slide__item {
  opacity: 0;
}

.c-slider__scaleup .c-slider__item {
  overflow: hidden;
}
.c-slider__scaleup .c-slider__item.is-active img {
  -webkit-animation: scaleup 7s ease-out forwards;
          animation: scaleup 7s ease-out forwards;
}
.c-slider__scaleup .c-slider__item img {
  width: 100%;
  height: auto;
}

@-webkit-keyframes scaleup {
  to {
    -webkit-transform: scale(1.17);
            transform: scale(1.17);
  }
}

@keyframes scaleup {
  to {
    -webkit-transform: scale(1.17);
            transform: scale(1.17);
  }
}
.c-acordion .c-acordion__title {
  position: relative;
}
.c-acordion .c-acordion__title:after {
  content: "";
  position: absolute;
  top: 0;
  right: 1em;
  display: block;
  width: 1em;
  height: 100%;
  background: url(../images/icon-arrow-down.svg) no-repeat center center;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.c-acordion .c-acordion__switch {
  cursor: pointer;
}
.c-acordion .c-acordion__contents {
  display: none;
}
.c-acordion.is-active .c-acordion__title:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.c-modal {
  position: relative;
  text-align: center;
}
.c-modal__closebtn {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 761px) {
  .c-modal__closebtn {
    bottom: 4.5rem;
  }
}
@media screen and (max-width: 760px) {
  .c-modal__closebtn {
    bottom: 7.03125vw;
  }
}
@media screen and (max-width: 760px) {
  .c-modal__closebtn img {
    width: 26.5625vw;
  }
}

#cboxOverlay {
  background-color: #595858;
}

#cboxContent,
#cboxLoadedContent {
  background: transparent;
}

#cboxClose {
  display: none;
}

.c-switch-slide-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*position: relative;*/
  overflow: hidden;
  border: 1px solid #eb081c;
}
.c-switch-slide-right > * {
  position: relative;
  display: block;
  width: 50%;
  text-align: center;
}
.c-switch-slide-right .c-switch-slide-right__notlink {
  z-index: 1;
  color: #fff;
  background-color: #eb081c;
}
.c-switch-slide-right .c-switch-slide-right__link {
  z-index: 0;
  color: #eb081c;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.c-switch-slide-right .c-switch-slide-right__link:before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #eb081c;
  -webkit-transition: left 0.4s;
  transition: left 0.4s;
}
@media screen and (min-width: 761px) {
  .c-switch-slide-right .c-switch-slide-right__link:hover {
    color: #fff;
    opacity: 1;
  }
  .c-switch-slide-right .c-switch-slide-right__link:hover:before {
    left: 0;
  }
}
@media screen and (max-width: 760px) {
  .c-switch-slide-right .c-switch-slide-right__link:active {
    color: #fff;
  }
  .c-switch-slide-right .c-switch-slide-right__link:active:before {
    left: 0%;
  }
}

.c-widgetbox {
  border: 1px solid #dddddd;
  border-radius: 4px;
}
.c-widgetbox + .c-widgetbox {
  margin-top: 2em;
}

.c-wedgetbox__upper {
  padding: 1em;
  border-bottom: 1px solid #dddddd;
}

.c-widgetbox__lower {
  padding: 1em;
}

.c-widgetbox__icon {
  text-align: center;
  padding-left: 1em;
}
@media screen and (min-width: 761px) {
  .c-widgetbox__icon {
    min-width: 30px;
  }
}
@media screen and (max-width: 760px) {
  .c-widgetbox__icon {
    min-width: calc(1em + 5vw);
  }
}
@media screen and (max-width: 760px) {
  .c-widgetbox__icon img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 5vw;
  }
}

.c-widgetbox__heading {
  position: relative;
  margin: 0 1em;
  vertical-align: middle;
}

.c-widgetbox__additional {
  border-top: 1px solid #dddddd;
  padding: 1em;
}

/* headings
==============================*/
.c-heading--borderd {
  border-bottom: 2px solid #C9BC9C;
  color: #6A3906;
}
@media screen and (min-width: 761px) {
  .c-heading--borderd {
    font-size: 2.4rem;
    line-height: 1.75;
  }
}
@media screen and (max-width: 760px) {
  .c-heading--borderd {
    font-size: 1.8rem;
    line-height: 1.1666666667;
  }
}
@media screen and (max-width: 760px) {
  .c-heading--borderd {
    padding-bottom: 1.5625vw;
  }
}

.c-heading-leftborder, .c-heading-leftborder-h2 {
  position: relative;
  padding-left: calc(1em + 6px);
}
.c-heading-leftborder:before, .c-heading-leftborder-h2:before, .c-heading-leftborder:after, .c-heading-leftborder-h2:after {
  position: absolute;
  left: 0;
  width: 0px;
  height: 42%;
  border-left: 6px solid;
}
@media screen and (max-width: 760px) {
  .c-heading-leftborder:before, .c-heading-leftborder-h2:before, .c-heading-leftborder:after, .c-heading-leftborder-h2:after {
    border-width: 2.8125vw;
  }
}
.c-heading-leftborder:before, .c-heading-leftborder-h2:before {
  content: "";
  top: 9%;
  border-color: #008832;
}
.c-heading-leftborder:after, .c-heading-leftborder-h2:after {
  content: "";
  bottom: 9%;
  border-color: #dddddd;
}

.c-heading-leftborder-h2 {
  letter-spacing: 0.1em;
}
@media screen and (min-width: 761px) {
  .c-heading-leftborder-h2 {
    font-size: fz24-36/10rem;
    line-height: 26/fz24-36;
  }
}
@media screen and (max-width: 760px) {
  .c-heading-leftborder-h2 {
    font-size: fz21-32/2/10rem;
    line-height: 26/fz21-32;
  }
}

.c-heading-leftuniborder, .c-heading-leftuniborder-h3 {
  position: relative;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 761px) {
  .c-heading-leftuniborder, .c-heading-leftuniborder-h3 {
    padding-left: calc(1em + 6px);
  }
}
@media screen and (max-width: 760px) {
  .c-heading-leftuniborder, .c-heading-leftuniborder-h3 {
    padding-left: calc(1em + 0.9375vw);
  }
}
.c-heading-leftuniborder:before, .c-heading-leftuniborder-h3:before {
  content: "";
  position: absolute;
  left: 0;
  width: 0px;
  border-left: 4px solid #008832;
}
@media screen and (min-width: 761px) {
  .c-heading-leftuniborder:before, .c-heading-leftuniborder-h3:before {
    top: 18%;
    height: 70%;
  }
}
@media screen and (max-width: 760px) {
  .c-heading-leftuniborder:before, .c-heading-leftuniborder-h3:before {
    top: 1.875vw;
    height: calc(100% - 3.75vw);
    border-width: 0.9375vw;
  }
}

.c-heading-leftuniborder-h3 {
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 761px) {
  .c-heading-leftuniborder-h3 {
    font-size: fz20-30/10rem;
    line-height: 26/fz20-30;
  }
}
@media screen and (max-width: 760px) {
  .c-heading-leftuniborder-h3 {
    font-size: fz18-29/2/10rem;
    line-height: 26/fz18-29;
  }
}

.c-heading-w_eng, .c-heading-w_eng-lease, .c-heading-w_eng-pink, .c-heading-w_eng-orange, .c-heading-w_eng-green, .c-heading-w_eng-white {
  margin: 0;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 761px) {
  .c-heading-w_eng, .c-heading-w_eng-lease, .c-heading-w_eng-pink, .c-heading-w_eng-orange, .c-heading-w_eng-green, .c-heading-w_eng-white {
    font-size: fz34-44/10rem;
    line-height: 26/fz34-44;
  }
}
@media screen and (max-width: 760px) {
  .c-heading-w_eng, .c-heading-w_eng-lease, .c-heading-w_eng-pink, .c-heading-w_eng-orange, .c-heading-w_eng-green, .c-heading-w_eng-white {
    font-size: fz25-38/2/10rem;
    line-height: 26/fz25-38;
  }
}
.c-heading-w_eng .c-heading-w_eng__eng, .c-heading-w_eng-lease .c-heading-w_eng__eng, .c-heading-w_eng-pink .c-heading-w_eng__eng, .c-heading-w_eng-orange .c-heading-w_eng__eng, .c-heading-w_eng-green .c-heading-w_eng__eng, .c-heading-w_eng-white .c-heading-w_eng__eng {
  display: block;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 761px) {
  .c-heading-w_eng .c-heading-w_eng__eng, .c-heading-w_eng-lease .c-heading-w_eng__eng, .c-heading-w_eng-pink .c-heading-w_eng__eng, .c-heading-w_eng-orange .c-heading-w_eng__eng, .c-heading-w_eng-green .c-heading-w_eng__eng, .c-heading-w_eng-white .c-heading-w_eng__eng {
    font-size: fz14-21/10rem;
    line-height: 26/fz14-21;
  }
}
@media screen and (max-width: 760px) {
  .c-heading-w_eng .c-heading-w_eng__eng, .c-heading-w_eng-lease .c-heading-w_eng__eng, .c-heading-w_eng-pink .c-heading-w_eng__eng, .c-heading-w_eng-orange .c-heading-w_eng__eng, .c-heading-w_eng-green .c-heading-w_eng__eng, .c-heading-w_eng-white .c-heading-w_eng__eng {
    font-size: fz12-18/2/10rem;
    line-height: 26/fz12-18;
  }
}
@media screen and (min-width: 761px) {
  .c-heading-w_eng .c-heading-w_eng__eng, .c-heading-w_eng-lease .c-heading-w_eng__eng, .c-heading-w_eng-pink .c-heading-w_eng__eng, .c-heading-w_eng-orange .c-heading-w_eng__eng, .c-heading-w_eng-green .c-heading-w_eng__eng, .c-heading-w_eng-white .c-heading-w_eng__eng {
    margin-top: 0.5em;
  }
}
@media screen and (max-width: 760px) {
  .c-heading-w_eng .c-heading-w_eng__eng, .c-heading-w_eng-lease .c-heading-w_eng__eng, .c-heading-w_eng-pink .c-heading-w_eng__eng, .c-heading-w_eng-orange .c-heading-w_eng__eng, .c-heading-w_eng-green .c-heading-w_eng__eng, .c-heading-w_eng-white .c-heading-w_eng__eng {
    margin-top: 0.3em;
  }
}

.c-heading-w_eng-white {
  color: #fff;
}

.c-heading-w_eng-green {
  color: #8FC31F;
}

.c-heading-w_eng-orange {
  color: #F8B62D;
}

.c-heading-w_eng-pink {
  color: #f14f82;
}

.c-heading-w_eng-lease {
  color: #55bd00;
}

.c-pagetitleArea {
  width: 100%;
  background-color: #f8f8f8;
}
@media screen and (min-width: 761px) {
  .c-pagetitleArea {
    padding: 10px 0;
  }
}
@media screen and (max-width: 760px) {
  .c-pagetitleArea {
    padding: 0.1em 0;
  }
}

.c-pagetitleArea2 {
  width: 100%;
  background-color: #f8f8f8;
}
@media screen and (min-width: 761px) {
  .c-pagetitleArea2 {
    padding: 25px 0;
  }
}
@media screen and (max-width: 760px) {
  .c-pagetitleArea2 {
    padding: 7.8125vw 0 4.6875vw;
  }
}
.c-pagetitleArea2 .c-pagetitle {
  margin: 0.4em auto;
}

.c-pagetitle {
  color: #8FC31F;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 761px) {
  .c-pagetitle {
    font-size: fz28-42/10rem;
    line-height: 26/fz28-42;
  }
}
@media screen and (max-width: 760px) {
  .c-pagetitle {
    font-size: fz25-38/2/10rem;
    line-height: 26/fz25-38;
  }
}

.c-mv-title, .c-mv-title-h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.c-mv-title__titlearea {
  text-align: center;
}

@media screen and (min-width: 761px) {
  .c-mv-title-h1 {
    height: 400px;
  }
}
@media screen and (max-width: 760px) {
  .c-mv-title-h1 {
    height: 78.125vw;
  }
}

.c-movie {
  position: relative;
}

.c-movie__overwrap {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  cursor: pointer;
}
.c-movie__overwrap.is-hidden {
  display: none;
}
@media screen and (min-width: 761px) {
  .c-movie__overwrap:hover .c-movie__overwrap__btn {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.c-movie__overwrap__btn {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.c-movie__overwrap__btn:before {
  content: "";
  display: block;
  border-radius: 50%;
  background-color: #eb081c;
}
@media screen and (min-width: 761px) {
  .c-movie__overwrap__btn:before {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 760px) {
  .c-movie__overwrap__btn:before {
    width: 15.625vw;
    height: 15.625vw;
  }
}
.c-movie__overwrap__btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 0px;
  height: 0px;
  border: 18px solid transparent;
  border-left: 35px solid #fff;
}
@media screen and (min-width: 761px) {
  .c-movie__overwrap__btn:after {
    margin-top: -18px;
    margin-left: -9px;
  }
}
@media screen and (max-width: 760px) {
  .c-movie__overwrap__btn:after {
    border-width: 2.8125vw 2.8125vw 2.8125vw 5.46875vw;
    margin-top: -2.8125vw;
    margin-left: -1.875vw;
  }
}

.c-banner_a_name .c-banner_a_name__fig {
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .c-banner_a_name .c-banner_a_name__fig img {
    width: 100%;
  }
}
.c-banner_a_name .c-banner_a_name__name {
  color: #8FC31F;
  font-weight: bold;
}
.c-banner_a_name .c-banner_a_name__subtext {
  color: #231815;
}
.c-banner_a_name a:hover {
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
@media screen and (min-width: 761px) {
  .c-banner_a_name a:hover {
    opacity: 0.7;
  }
}

.c-breadcrumb {
  color: #231815;
  overflow: hidden;
}
@media screen and (min-width: 761px) {
  .c-breadcrumb {
    font-size: fz10-20/10rem;
    line-height: 26/fz10-20;
  }
}
@media screen and (max-width: 760px) {
  .c-breadcrumb {
    font-size: fz10-15/2/10rem;
    line-height: 26/fz10-15;
  }
}
.c-breadcrumb ul {
  white-space: nowrap;
}
@media screen and (min-width: 761px) {
  .c-breadcrumb ul {
    margin-top: 0.6em;
    margin-bottom: 0.6em;
  }
}
@media screen and (max-width: 760px) {
  .c-breadcrumb ul {
    margin-top: 0.8em;
    margin-bottom: 0.8em;
  }
}
.c-breadcrumb ul li {
  display: inline-block;
}
.c-breadcrumb ul li:not(:first-child):before {
  content: " > ";
  padding-left: 0.6em;
  padding-right: 0.6em;
}
.c-breadcrumb ul li > a {
  padding-bottom: 0.1em;
  color: #231815;
  border-bottom: 1px solid #231815;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
@media screen and (min-width: 761px) {
  .c-breadcrumb ul li > a:hover {
    border-bottom: none;
  }
}

.c-link-colored, .c-link-colored__blank, .c-link-colored__blank-02 {
  display: inline-block;
  color: #8FC31F;
  background-color: #ffffff;
  border-radius: 4px;
}
@media screen and (min-width: 761px) {
  .c-link-colored, .c-link-colored__blank, .c-link-colored__blank-02 {
    padding: 0 0.5em;
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
  }
}
@media screen and (max-width: 760px) {
  .c-link-colored, .c-link-colored__blank, .c-link-colored__blank-02 {
    padding: 0.5em;
  }
}
.c-link-colored:hover, .c-link-colored__blank:hover, .c-link-colored__blank-02:hover {
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}
@media screen and (min-width: 761px) {
  .c-link-colored:hover, .c-link-colored__blank:hover, .c-link-colored__blank-02:hover {
    opacity: 0.7;
  }
}

.c-link-colored__blank:after, .c-link-colored__blank-02:after {
  content: "";
  display: inline-block;
  margin: 0 0.3em;
  vertical-align: middle;
  width: 11px;
  height: 11px;
  background: url(../images/icon-blanklink.svg) no-repeat center top/contain;
}

.c-link-colored__blank-02 {
  color: #fff;
  background-color: #8FC31F;
}
.c-link-colored__blank-02:after {
  background-image: url(../images/icon-blanklink-white.svg);
}

.c-abstract {
  color: #008832;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 761px) {
  .c-abstract {
    text-align: center;
  }
}
@media screen and (min-width: 761px) {
  .c-abstract {
    font-size: fz16-28/10rem;
    line-height: 26/fz16-28;
  }
}
@media screen and (max-width: 760px) {
  .c-abstract {
    font-size: 0.8rem;
    line-height: 1.625;
  }
}

.c-importantmsg {
  text-align: center;
  background-color: #f8f8f8;
}
@media screen and (min-width: 761px) {
  .c-importantmsg {
    margin: 40px auto;
    padding: 15px 0;
  }
}
@media screen and (max-width: 760px) {
  .c-importantmsg {
    margin: 6.25vw auto;
    padding: 3.125vw;
  }
}

.c-importantmsg__heading {
  margin-top: 0;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #eb081c;
}
@media screen and (min-width: 761px) {
  .c-importantmsg__heading {
    font-size: 1.6rem;
    line-height: 1.625;
  }
}
@media screen and (max-width: 760px) {
  .c-importantmsg__heading {
    font-size: fz14-21/2/10rem;
    line-height: 26/fz14-21;
  }
}

.c-importantmsg__text {
  margin-top: 1em;
  letter-spacing: 0.1em;
  color: #eb081c;
}
@media screen and (min-width: 761px) {
  .c-importantmsg__text {
    font-size: fz13-22/10rem;
    line-height: 26/fz13-22;
  }
}
@media screen and (max-width: 760px) {
  .c-importantmsg__text {
    font-size: fz12-18/2/10rem;
    line-height: 26/fz12-18;
  }
}
@media screen and (max-width: 760px) {
  .c-importantmsg__text {
    text-align: left;
  }
}

/* blocks
==============================*/
.c-image__borderd {
  position: relative;
  border: 4px solid #8FC31F;
}
@media screen and (max-width: 760px) {
  .c-image__borderd {
    border-width: 3px;
  }
}
.c-image__borderd img {
  width: 100%;
  display: block;
}

.c-image__borderd__no {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  text-align: center;
  border: 4px solid #8FC31F;
  border-width: 0 4px 4px 0;
  background-color: #fff;
  color: #8FC31F;
}
@media screen and (max-width: 760px) {
  .c-image__borderd__no {
    border-width: 0 3px 3px 0;
  }
}

/* tables
==============================*/
@media screen and (min-width: 761px) {
  .c-table01 tbody th, .c-table01-borderd tbody th, .c-table01 tbody td, .c-table01-borderd tbody td {
    padding: 1em 2em;
  }
}
@media screen and (max-width: 760px) {
  .c-table01 tbody th, .c-table01-borderd tbody th, .c-table01 tbody td, .c-table01-borderd tbody td {
    padding: 0.5em;
  }
}
.c-table01 .c-table01__total, .c-table01-borderd .c-table01__total {
  border: 1px solid #8FC31F;
  color: #8FC31F;
}
.c-table01 td.c-table01__total, .c-table01-borderd td.c-table01__total {
  text-align: right;
}

.c-table01-borderd {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
}
@media screen and (max-width: 760px) {
  .c-table01-borderd {
    border-bottom: 1px solid #dddddd;
    border-radius: 4px;
  }
}
@media screen and (max-width: 760px) {
  .c-table01-borderd tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.c-table01-borderd th {
  text-align: left;
}
@media screen and (min-width: 761px) {
  .c-table01-borderd th {
    width: 19%;
  }
}
@media screen and (max-width: 760px) {
  .c-table01-borderd th {
    width: 36%;
    border-left: 1px solid #dddddd;
  }
}
.c-table01-borderd tbody th {
  vertical-align: middle;
}
@media screen and (min-width: 761px) {
  .c-table01-borderd td {
    width: 30%;
  }
}
@media screen and (max-width: 760px) {
  .c-table01-borderd td {
    width: 64%;
    border-left: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
  }
}
@media screen and (min-width: 761px) {
  .c-table01-borderd td[colspan="3"] {
    width: 80%;
  }
}
.c-table01-borderd th:not(.c-table01__total), .c-table01-borderd td:not(.c-table01__total) {
  border-top: 1px solid #dddddd;
}
.c-table01-borderd tr:first-child th:first-child,
.c-table01-borderd tr:first-child th:first-child {
  border-top-left-radius: 4px;
}
@media screen and (min-width: 761px) {
  .c-table01-borderd tr:first-child td:last-child {
    border-top-right-radius: 4px;
  }
}
@media screen and (max-width: 760px) {
  .c-table01-borderd tr:first-child td:nth-child(2) {
    border-top-right-radius: 4px;
  }
}
@media screen and (min-width: 761px) {
  .c-table01-borderd tr:last-child th:not(.c-table01__total), .c-table01-borderd tr:last-child td:not(.c-table01__total) {
    border-bottom: 1px solid #dddddd;
  }
}
@media screen and (min-width: 761px) {
  .c-table01-borderd tr:last-child th:first-child,
  .c-table01-borderd tr:last-child th:first-child {
    border-bottom-left-radius: 4px;
  }
}
.c-table01-borderd tr:last-child td:last-child {
  border-bottom-right-radius: 4px;
}
@media screen and (min-width: 761px) {
  .c-table01-borderd th + td,
  .c-table01-borderd td + td,
  .c-table01-borderd td + th {
    border-left: 1px solid #dddddd;
  }
}
@media screen and (min-width: 761px) {
  .c-table01-borderd th:first-of-type {
    border-left: 1px solid #dddddd;
  }
}
@media screen and (min-width: 761px) {
  .c-table01-borderd td:last-of-type:not(.c-table01__total) {
    border-right: 1px solid #dddddd;
  }
}
@media screen and (min-width: 761px) {
  .c-table01-borderd td.u-bdr {
    border-right: 1px solid #dddddd;
  }
}

.c-table02, .c-table02-borderd {
  border-collapse: collapse;
}
@media screen and (min-width: 761px) {
  .c-table02 th, .c-table02-borderd th, .c-table02 td, .c-table02-borderd td {
    padding: 0.6em 2em;
  }
}
@media screen and (max-width: 760px) {
  .c-table02 th, .c-table02-borderd th, .c-table02 td, .c-table02-borderd td {
    padding: 0.5em;
  }
}
.c-table02 thead th, .c-table02-borderd thead th {
  text-align: center;
  background-color: #C9BC9C;
}
.c-table02 tbody th, .c-table02-borderd tbody th {
  text-align: left;
}
.c-table02 tbody td, .c-table02-borderd tbody td {
  text-align: center;
}

.c-table02-borderd th, .c-table02-borderd td {
  border: 1px solid #dddddd;
}
.c-table02-borderd thead tr:first-child th:first-child {
  border-top-left-radius: 4px;
}
.c-table02-borderd thead tr:first-child th:last-child {
  border-top-right-radius: 4px;
}
.c-table02-borderd tbody tr:last-child th:nth-child(1), .c-table02-borderd tbody tr:last-child td:nth-child(1) {
  border-bottom-left-radius: 4px;
}
.c-table02-borderd tbody tr:last-child th:nth-child(2), .c-table02-borderd tbody tr:last-child td:nth-child(2) {
  border-bottom-right-radius: 4px;
}

.c-table-simple-gray {
  border: 1px solid #dddddd;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 4px;
}
@media screen and (max-width: 760px) {
  .c-table-simple-gray {
    width: 100%;
  }
}
.c-table-simple-gray th, .c-table-simple-gray td {
  text-align: left;
  vertical-align: middle;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 761px) {
  .c-table-simple-gray th, .c-table-simple-gray td {
    padding: 0.6em 2em;
  }
}
@media screen and (max-width: 760px) {
  .c-table-simple-gray th, .c-table-simple-gray td {
    padding: 0.5em 1em;
  }
}
@media screen and (min-width: 761px) {
  .c-table-simple-gray th, .c-table-simple-gray td {
    font-size: 1.6rem;
    line-height: 1.625;
  }
}
@media screen and (max-width: 760px) {
  .c-table-simple-gray th, .c-table-simple-gray td {
    font-size: fz13-20/2/10rem;
    line-height: 26/fz13-20;
  }
}
.c-table-simple-gray th {
  white-space: nowrap;
  background-color: #C9BC9C;
}
.c-table-simple-gray thead th {
  border-bottom: 1px solid #dddddd;
}
.c-table-simple-gray thead th + th {
  border-left: 1px solid #dddddd;
}
.c-table-simple-gray tbody td {
  border-left: 1px solid #dddddd;
}
.c-table-simple-gray tbody tr:not(:last-child) th, .c-table-simple-gray tbody tr:not(:last-child) td {
  border-bottom: 1px solid #dddddd;
}

.c-table-simple-gray3 {
  border: 1px solid #dddddd;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 4px;
}
@media screen and (max-width: 760px) {
  .c-table-simple-gray3 {
    width: 100%;
  }
}
.c-table-simple-gray3 th, .c-table-simple-gray3 td {
  text-align: left;
  vertical-align: middle;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 761px) {
  .c-table-simple-gray3 th, .c-table-simple-gray3 td {
    padding: 0.6em 2em;
  }
}
@media screen and (max-width: 760px) {
  .c-table-simple-gray3 th, .c-table-simple-gray3 td {
    padding: 0.5em 1em;
  }
}
@media screen and (min-width: 761px) {
  .c-table-simple-gray3 th, .c-table-simple-gray3 td {
    font-size: 1.6rem;
    line-height: 1.625;
  }
}
@media screen and (max-width: 760px) {
  .c-table-simple-gray3 th, .c-table-simple-gray3 td {
    font-size: fz13-20/2/10rem;
    line-height: 26/fz13-20;
  }
}
.c-table-simple-gray3 th.is-fcolor, .c-table-simple-gray3 td.is-fcolor {
  background-color: #C9BC9C;
}
.c-table-simple-gray3 th.is-scolor, .c-table-simple-gray3 td.is-scolor {
  background-color: #fafafa;
}
.c-table-simple-gray3 thead th {
  text-align: center;
  white-space: nowrap;
}
.c-table-simple-gray3 thead th + th {
  border-left: 1px solid #dddddd;
}
.c-table-simple-gray3 thead + tbody tr:first-child th, .c-table-simple-gray3 thead + tbody tr:first-child td {
  border-top: 1px solid #dddddd;
}
.c-table-simple-gray3 tbody th + td, .c-table-simple-gray3 tbody td + td {
  border-left: 1px solid #dddddd;
}
.c-table-simple-gray3 tbody tr:not(:first-child) th, .c-table-simple-gray3 tbody tr:not(:first-child) td {
  border-top: 1px solid #dddddd;
}

.c-animated-headings {
  display: inline-block;
  overflow: hidden;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: translate3d(-105%, -105%, 0) scale(1.1, 1.3);
          transform: translate3d(-105%, -105%, 0) scale(1.1, 1.3);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}
.c-animated-headings.inview {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1);
}
.c-animated-headings.inview .c-animated-headings__inner {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1);
}

.c-animated-headings__inner {
  display: inline-block;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: translate3d(105%, 105%, 0) scale(1.1, 1.3);
          transform: translate3d(105%, 105%, 0) scale(1.1, 1.3);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}

.c-baloon, .c-baloon--right, .c-baloon--right--orange, .c-baloon--left, .c-baloon--left--green {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 85%;
  border-radius: 8px;
}
@media screen and (min-width: 761px) {
  .c-baloon, .c-baloon--right, .c-baloon--right--orange, .c-baloon--left, .c-baloon--left--green {
    height: 75px;
  }
}
@media screen and (max-width: 760px) {
  .c-baloon, .c-baloon--right, .c-baloon--right--orange, .c-baloon--left, .c-baloon--left--green {
    height: 16.40625vw;
  }
}
.c-baloon:after, .c-baloon--right:after, .c-baloon--right--orange:after, .c-baloon--left:after, .c-baloon--left--green:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border: 13px solid transparent;
}
@media screen and (max-width: 760px) {
  .c-baloon:after, .c-baloon--right:after, .c-baloon--right--orange:after, .c-baloon--left:after, .c-baloon--left--green:after {
    border-width: 2.8125vw;
  }
}

.c-baloon--left:after, .c-baloon--left--green:after {
  left: 0;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  border-right: 20px solid #fff;
}
@media screen and (max-width: 760px) {
  .c-baloon--left:after, .c-baloon--left--green:after {
    border-right-width: 3.4375vw;
  }
}

.c-baloon--right, .c-baloon--right--orange {
  margin-left: auto;
  margin-right: 0;
  background-color: #fff;
}
.c-baloon--right:after, .c-baloon--right--orange:after {
  left: 100%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  border-left: 20px solid #fff;
}
@media screen and (max-width: 760px) {
  .c-baloon--right:after, .c-baloon--right--orange:after {
    border-left-width: 3.4375vw;
  }
}

.c-baloon--left--green {
  background-color: #8FC31F;
}
.c-baloon--left--green:after {
  border-right-color: #8FC31F;
}

.c-baloon--right--orange {
  background-color: #F8B62D;
}
.c-baloon--right--orange:after {
  border-left-color: #F8B62D;
}

/* Header
-------------------------------------------------- */
.p-header {
  position: relative;
  z-index: 10;
  width: 100%;
  background-color: #8FC31F;
}
@media screen and (min-width: 761px) {
  .p-header {
    padding: 15px;
  }
}
@media screen and (max-width: 760px) {
  .p-header {
    padding: 2.34375vw;
  }
}
.p-header > .l-contentsWrap {
  height: 100%;
}
@media screen and (max-width: 760px) {
  .p-header > .l-contentsWrap {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-header__company {
  margin: 0;
  font-weight: bold;
  color: #6A3906;
}
@media screen and (min-width: 761px) {
  .p-header__company {
    font-size: 1.8rem;
    line-height: 1.7222222222;
  }
}
@media screen and (max-width: 760px) {
  .p-header__company {
    font-size: 1.4rem;
    line-height: 1.75;
  }
}
@media screen and (max-width: 760px) {
  .p-header__contactarea {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 51.5625vw;
            flex: 0 0 51.5625vw;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-header__contactarea__text {
  color: #000;
}
@media screen and (min-width: 761px) {
  .p-header__contactarea__text {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 760px) {
  .p-header__contactarea__text {
    font-size: 1.2rem;
    line-height: 2;
  }
}
@media screen and (max-width: 760px) {
  .p-header__contactarea__text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.p-header__contactarea__tel {
  font-weight: bold;
  color: #fff;
}
@media screen and (min-width: 761px) {
  .p-header__contactarea__tel {
    margin-left: 15px;
  }
}
@media screen and (max-width: 760px) {
  .p-header__contactarea__tel {
    width: 40.625vw;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

/* Main Visual
-------------------------------------------------- */
.p-mv {
  width: 100%;
  background: url(../images/top-bg.jpg) no-repeat center center/cover #AA63F7;
}
@media screen and (min-width: 761px) {
  .p-mv {
    height: 380px;
    padding: 20px 0;
  }
}
@media screen and (max-width: 760px) {
  .p-mv {
    padding: 3.90625vw 6.25vw;
  }
}

@media screen and (min-width: 761px) {
  .p-mv__boxarea {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 49%;
            flex: 0 0 49%;
  }
}

.p-mv__box {
  width: 100%;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.75);
}
@media screen and (min-width: 761px) {
  .p-mv__box {
    font-size: 1.8rem;
    line-height: 1.7222222222;
  }
}
@media screen and (max-width: 760px) {
  .p-mv__box {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 760px) {
  .p-mv__box {
    padding: 4.6875vw 0;
  }
}
@media screen and (min-width: 761px) {
  .p-mv__box strong {
    font-size: 2.5rem;
    line-height: 1.68;
  }
}
@media screen and (max-width: 760px) {
  .p-mv__box strong {
    font-size: 1.8rem;
    line-height: 1.75;
  }
}

@media screen and (min-width: 761px) {
  #titlebox {
    height: 340px;
  }
}
@media screen and (max-width: 760px) {
  #titlebox {
    padding: 9.375vw 0;
  }
}
#titlebox h1 {
  margin: 0;
}
#titlebox img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 760px) {
  #titlebox img {
    width: 62.8125vw;
  }
}
@media screen and (min-width: 761px) {
  #titlebox img + img {
    margin-top: 40px;
  }
}
@media screen and (max-width: 760px) {
  #titlebox img + img {
    margin-top: 7.03125vw;
    width: 56.09375vw;
  }
}

#titlebox1 {
  background-color: #00913a;
  color: #fff;
}
@media screen and (max-width: 760px) {
  #titlebox1 {
    margin-top: 4.6875vw;
    padding: 1.5625vw 0;
  }
}
#titlebox1 h2 {
  margin: 0;
}
@media screen and (min-width: 761px) {
  #titlebox1 h2 {
    font-size: 1.8rem;
    line-height: 1.6666666667;
  }
}
@media screen and (max-width: 760px) {
  #titlebox1 h2 {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 761px) {
  #titlebox2 {
    margin-top: 20px;
    height: 150px;
  }
}
@media screen and (max-width: 760px) {
  #titlebox2 {
    margin-top: 3.125vw;
  }
}
#titlebox2 p + p {
  margin-top: 1em;
}

@media screen and (min-width: 761px) {
  #titlebox3 {
    margin-top: 20px;
    height: 120px;
  }
}
@media screen and (max-width: 760px) {
  #titlebox3 {
    margin-top: 3.125vw;
  }
}
#titlebox3 em {
  font-style: normal;
}

.p-mv__box__subtitle {
  margin-top: 0.5em;
  margin-bottom: 0;
  color: #EA5514;
}
@media screen and (min-width: 761px) {
  .p-mv__box__subtitle {
    font-size: 2.5rem;
    line-height: 1.68;
  }
}
@media screen and (max-width: 760px) {
  .p-mv__box__subtitle {
    font-size: 1.8rem;
    line-height: 1.75;
  }
}

/* Introduction
-------------------------------------------------- */
.p-intro {
  width: 100%;
}
@media screen and (min-width: 761px) {
  .p-intro {
    padding: 45px 0 55px;
  }
}
@media screen and (max-width: 760px) {
  .p-intro {
    padding: 7.8125vw 0 9.375vw;
  }
}
@media screen and (min-width: 761px) {
  .p-intro .l-maincontent {
    padding-left: 30px;
  }
}

.p-intro__text, .p-intro__text--small, .p-intro__text--big {
  margin-top: 1em;
  margin-bottom: 0;
  /*
  strong {
      position: relative;
      display: inline-block;
      &:before {
          content: '';
          position: absolute;
          left: 0;
          bottom: 0;
          z-index: -1;
          display: block;
          width: 100%;
          height: 0;
          border-bottom: 0.5em solid #FFF100;

          @include mq(){
              border-width: 12px;
          }
      }
  }
  */
}
@media screen and (min-width: 761px) {
  .p-intro__text, .p-intro__text--small, .p-intro__text--big {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 760px) {
  .p-intro__text, .p-intro__text--small, .p-intro__text--big {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
@media screen and (min-width: 761px) {
  .p-intro__text, .p-intro__text--small, .p-intro__text--big {
    padding-left: 70px;
  }
}
.p-intro__text.u-mt2, .u-mt2.p-intro__text--small, .u-mt2.p-intro__text--big {
  margin-top: 2em;
}
.p-intro__text.u-mt0, .u-mt0.p-intro__text--small, .u-mt0.p-intro__text--big {
  margin-top: 0.1em;
}
.p-intro__text span, .p-intro__text--small span, .p-intro__text--big span {
  font-weight: normal;
}

@media screen and (min-width: 761px) {
  .p-intro__text--big {
    font-size: 2.8rem;
    line-height: 1.2857142857;
  }
}

@media screen and (min-width: 761px) {
  .p-intro__text--small {
    font-size: 2rem;
    line-height: 1.8;
  }
}

@media screen and (min-width: 761px) {
  .p-intro__btn {
    margin-top: 40px;
  }
}
@media screen and (max-width: 760px) {
  .p-intro__btn {
    margin-top: 8.59375vw;
  }
}
@media screen and (min-width: 761px) {
  .p-intro__btn img {
    width: 160px;
  }
}
@media screen and (max-width: 760px) {
  .p-intro__btn img {
    margin-top: 1.5625vw;
    width: 39.0625vw;
  }
}

.p-intro__column {
  background-color: #DFF2FC;
}
@media screen and (min-width: 761px) {
  .p-intro__column {
    margin-top: 35px;
    margin-bottom: 60px;
    padding: 1em 26px 3em;
  }
}
@media screen and (max-width: 760px) {
  .p-intro__column {
    margin-top: 2em;
    margin-bottom: 3em;
    padding: 1em 1.5em 2em;
  }
}
.p-intro__column .p-intro__text, .p-intro__column .p-intro__text--big, .p-intro__column .p-intro__text--small {
  padding-left: 0;
}

/* p-scene1
-------------------------------------------------- */
.p-scene1 {
  background-color: #DFF2FC;
}
@media screen and (min-width: 761px) {
  .p-scene1 {
    padding: 30px 0 50px;
  }
}
@media screen and (max-width: 760px) {
  .p-scene1 {
    padding: 4.6875vw 0 10.9375vw;
  }
}

.p-scene1__dialog {
  text-align: center;
}
@media screen and (min-width: 761px) {
  .p-scene1__dialog {
    font-size: 1.5rem;
    line-height: 1.7333333333;
  }
}
@media screen and (max-width: 760px) {
  .p-scene1__dialog {
    font-size: 1.4rem;
    line-height: 1.2857142857;
  }
}
@media screen and (min-width: 761px) {
  .p-scene1__dialog {
    margin-top: 40px;
  }
}
@media screen and (max-width: 760px) {
  .p-scene1__dialog {
    margin-top: 5.15625vw;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 760px) {
  .p-scene1__dialog__person, .p-scene1__dialog__person--employee, .p-scene1__dialog__person--presidnet {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
.p-scene1__dialog__person h3, .p-scene1__dialog__person--employee h3, .p-scene1__dialog__person--presidnet h3 {
  margin: 0.5em auto;
}

@media screen and (min-width: 761px) {
  .p-scene1__dialog__person--presidnet h3 {
    padding-left: 2em;
  }
}
@media screen and (max-width: 760px) {
  .p-scene1__dialog__person--presidnet h3 {
    padding-left: 1em;
  }
}

@media screen and (min-width: 761px) {
  .p-scene1__dialog__person--employee {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

@media screen and (min-width: 761px) {
  .p-scene1__dialog__list {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 58%;
            flex: 0 1 58%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 760px) {
  .p-scene1__dialog__list {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    padding-left: 9.375vw;
    padding-right: 9.375vw;
  }
}

@media screen and (min-width: 761px) {
  .p-scene1__dialog__list__dialog {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 760px) {
  .p-scene1__dialog__list__dialog {
    width: 65.625vw;
    margin-top: 5.46875vw;
    margin-bottom: 5.46875vw;
  }
}

/* p-scene2
-------------------------------------------------- */
@media screen and (min-width: 761px) {
  .p-scene2 {
    padding: 30px 0 50px;
  }
}
@media screen and (max-width: 760px) {
  .p-scene2 {
    padding: 4.6875vw 0 10.9375vw;
  }
}

.p-scene2__problems {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 761px) {
  .p-scene2__problems {
    margin: 0 -18px;
  }
}

.p-scene2__problems__item {
  color: #000;
}
@media screen and (min-width: 761px) {
  .p-scene2__problems__item {
    font-size: 1.5rem;
    line-height: 1.7333333333;
  }
}
@media screen and (max-width: 760px) {
  .p-scene2__problems__item {
    font-size: 1.4rem;
    line-height: 1.2857142857;
  }
}
@media screen and (max-width: 760px) {
  .p-scene2__problems__item {
    margin-left: auto;
    margin-right: auto;
  }
}
.p-scene2__problems__item:nth-child(1) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  background: url(../images/balloons-gray01.svg) no-repeat center center/contain;
}
@media screen and (min-width: 761px) {
  .p-scene2__problems__item:nth-child(1) {
    width: 315px;
    height: 125px;
  }
}
@media screen and (max-width: 760px) {
  .p-scene2__problems__item:nth-child(1) {
    width: 80vw;
    height: 31.71875vw;
  }
}
.p-scene2__problems__item:nth-child(3) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  background: url(../images/balloons-gray03.svg) no-repeat center center/contain;
}
@media screen and (min-width: 761px) {
  .p-scene2__problems__item:nth-child(3) {
    width: 312px;
    height: 153px;
  }
}
@media screen and (max-width: 760px) {
  .p-scene2__problems__item:nth-child(3) {
    margin-top: -2.34375vw;
    width: 75.9375vw;
    height: 38.75vw;
  }
}
.p-scene2__problems__item:nth-child(2) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  background: url(../images/balloons-gray02.svg) no-repeat center center/contain;
}
@media screen and (min-width: 761px) {
  .p-scene2__problems__item:nth-child(2) {
    width: 299px;
    height: 153px;
  }
}
@media screen and (max-width: 760px) {
  .p-scene2__problems__item:nth-child(2) {
    margin-top: 2.34375vw;
    width: 79.21875vw;
    height: 38.75vw;
  }
}
.p-scene2__problems__item:nth-child(4) {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  background: url(../images/balloons-gray04.svg) no-repeat center center/contain;
}
@media screen and (min-width: 761px) {
  .p-scene2__problems__item:nth-child(4) {
    width: 348px;
    height: 137px;
  }
}
@media screen and (max-width: 760px) {
  .p-scene2__problems__item:nth-child(4) {
    width: 88.28125vw;
    height: 34.6875vw;
  }
}

.p-scene2__person {
  position: relative;
  display: block;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 761px) {
  .p-scene2__person {
    top: -153px;
    -webkit-transform: translate(-10px, -50%);
            transform: translate(-10px, -50%);
  }
}
@media screen and (max-width: 760px) {
  .p-scene2__person {
    width: 19.53125vw;
    margin-top: 6.25vw;
  }
}
.p-scene2__person figcaption {
  padding-top: 1em;
  padding-left: 2em;
}
@media screen and (min-width: 761px) {
  .p-scene2__person figcaption {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
@media screen and (max-width: 760px) {
  .p-scene2__person figcaption {
    font-size: 1rem;
    line-height: 1.2;
  }
}

@media screen and (min-width: 761px) {
  .p-scene2__notions {
    margin-top: -180px;
  }
}

.p-scene2__notions__item {
  text-align: center;
}
@media screen and (min-width: 761px) {
  .p-scene2__notions__item {
    width: 368px;
    height: 139px;
    padding-top: 50px;
  }
}
@media screen and (max-width: 760px) {
  .p-scene2__notions__item {
    width: 71.875vw;
    height: 27.03125vw;
    padding-top: 10.9375vw;
  }
}
@media screen and (min-width: 761px) {
  .p-scene2__notions__item {
    font-size: 2rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 760px) {
  .p-scene2__notions__item {
    font-size: 1.4rem;
    line-height: 1.2857142857;
  }
}
.p-scene2__notions__item:nth-child(1) {
  background: url(../images/balloons-pink01.svg) no-repeat center center/contain;
}
.p-scene2__notions__item:nth-child(2) {
  background: url(../images/balloons-pink02.svg) no-repeat center center/contain;
}
@media screen and (max-width: 760px) {
  .p-scene2__notions__item:nth-child(2) {
    margin-left: auto;
  }
}

.p-scene2__arrow {
  padding-bottom: 1.3em;
  text-align: center;
  color: #fff;
  background: url(../images/arrow-down-orange.svg) no-repeat center center/contain;
  font-weight: bold;
}
@media screen and (min-width: 761px) {
  .p-scene2__arrow {
    font-size: 2.4rem;
    line-height: 1.3333333333;
  }
}
@media screen and (max-width: 760px) {
  .p-scene2__arrow {
    font-size: 1.8rem;
    line-height: 1.1666666667;
  }
}
@media screen and (min-width: 761px) {
  .p-scene2__arrow {
    width: 365px;
    height: 143px;
    margin: 30px auto;
  }
}
@media screen and (max-width: 760px) {
  .p-scene2__arrow {
    width: 72.03125vw;
    height: 28.28125vw;
    margin: 7.8125vw auto 3.90625vw;
  }
}

@media screen and (min-width: 761px) {
  .p-scene2__merit {
    margin: 45px auto 60px;
  }
}
@media screen and (max-width: 760px) {
  .p-scene2__merit {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (min-width: 761px) {
  .p-scene2__merit__list {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 760px) {
  .p-scene2__merit__list {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin: 0;
  }
}

@media screen and (min-width: 761px) {
  .p-scene2__merit__list__item {
    font-size: 2.8rem;
    line-height: 1.7142857143;
  }
}
@media screen and (max-width: 760px) {
  .p-scene2__merit__list__item {
    font-size: 1.7rem;
    line-height: 1.4117647059;
  }
}
@media screen and (max-width: 760px) {
  .p-scene2__merit__list__item {
    margin-bottom: 9.375vw;
  }
}

.p-scene2__merit__list__item__heading {
  margin: 0;
  text-align: center;
}

.p-scene2__merit__list__item__heading2 {
  margin: 0;
  text-align: center;
}
@media screen and (min-width: 761px) {
  .p-scene2__merit__list__item__heading2 {
    font-size: 2.5rem;
    line-height: 1.92;
  }
}
@media screen and (max-width: 760px) {
  .p-scene2__merit__list__item__heading2 {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

@media screen and (max-width: 760px) {
  .p-scene2__merit__person {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 37.5vw;
            flex: 0 0 37.5vw;
  }
}
@media screen and (min-width: 761px) {
  .p-scene2__merit__person:nth-of-type(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 760px) {
  .p-scene2__merit__person:nth-of-type(1) {
    text-align: right;
  }
}
@media screen and (max-width: 760px) {
  .p-scene2__merit__person:nth-of-type(1) img {
    width: 20.15625vw;
  }
}
@media screen and (min-width: 761px) {
  .p-scene2__merit__person:nth-of-type(2) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media screen and (max-width: 760px) {
  .p-scene2__merit__person:nth-of-type(2) img {
    width: 18.59375vw;
  }
}

/* 講習内容
-------------------------------------------------- */
.p-contents {
  background-color: #DFF2FC;
}
@media screen and (min-width: 761px) {
  .p-contents {
    padding: 30px 0 50px;
  }
}
@media screen and (max-width: 760px) {
  .p-contents {
    padding: 8.59375vw 0 10.9375vw;
  }
}

.p-contents__table {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (min-width: 761px) {
  .p-contents__table {
    margin: 30px auto 50px;
  }
}
@media screen and (max-width: 760px) {
  .p-contents__table {
    display: block;
    margin-top: 9.375vw;
  }
}
@media screen and (min-width: 761px) {
  .p-contents__table td, .p-contents__table th {
    font-size: 1.6rem;
    line-height: 1.625;
  }
}
@media screen and (max-width: 760px) {
  .p-contents__table td, .p-contents__table th {
    font-size: 1.4rem;
    line-height: 1.2857142857;
  }
}
@media screen and (max-width: 760px) {
  .p-contents__table td, .p-contents__table th {
    display: block;
  }
}
@media screen and (max-width: 760px) {
  .p-contents__table thead {
    display: none;
  }
}
.p-contents__table thead tr {
  border: 1px solid #898989;
  border-width: 1px 0;
  background-color: #fff;
}
@media screen and (max-width: 760px) {
  .p-contents__table thead tr {
    display: block;
  }
}
.p-contents__table thead th {
  text-align: left;
}
.p-contents__table tbody tr {
  border-bottom: 1px solid #898989;
}
@media screen and (max-width: 760px) {
  .p-contents__table tbody tr {
    display: block;
  }
}
.p-contents__table tbody th, .p-contents__table tbody td {
  text-align: left;
  vertical-align: top;
  padding: 0.3em 0.3em 1em;
}
@media screen and (max-width: 760px) {
  .p-contents__table tbody .p-contents__table__time {
    display: none;
  }
}

.p-contents__table__heading {
  margin: 0;
  font-weight: normal;
}

.p-contents__table__subheading {
  margin: 0;
}

.p-contents__table__heading__chapter {
  font-weight: bold;
}

/* カレンダー
-------------------------------------------------- */
@media screen and (min-width: 761px) {
  .p-schedule {
    padding: 30px 0 100px;
  }
}
@media screen and (max-width: 760px) {
  .p-schedule {
    padding: 10.9375vw 0 10.9375vw;
  }
}

@media screen and (min-width: 761px) {
  .p-schedule__text {
    font-size: 1.8rem;
    line-height: 1.7777777778;
  }
}
@media screen and (max-width: 760px) {
  .p-schedule__text {
    font-size: 1.2rem;
    line-height: 1.75;
  }
}

@media screen and (min-width: 761px) {
  .p-schedule__calendar {
    margin: 50px auto 70px;
  }
}
@media screen and (max-width: 760px) {
  .p-schedule__calendar {
    height: 470px;
    margin: 6.25vw 0 10.9375vw;
  }
}

/* 開催概要
-------------------------------------------------- */
.p-overview {
  background-color: #DFF2FC;
}
@media screen and (min-width: 761px) {
  .p-overview {
    padding: 30px 0 75px;
  }
}
@media screen and (max-width: 760px) {
  .p-overview {
    padding: 6.25vw 0 12.5vw;
  }
}

.p-overview__lists {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 761px) {
  .p-overview__lists {
    margin-top: 30px;
    border-top: 1px solid #898989;
  }
}
@media screen and (max-width: 760px) {
  .p-overview__lists {
    margin-top: 7.8125vw;
  }
}

.p-overview__lists__title,
.p-overview__lists__content {
  padding: 0.3em 0 0;
}
@media screen and (min-width: 761px) {
  .p-overview__lists__title,
  .p-overview__lists__content {
    font-size: 1.6rem;
    line-height: 1.625;
  }
}
@media screen and (max-width: 760px) {
  .p-overview__lists__title,
  .p-overview__lists__content {
    font-size: 1.4rem;
    line-height: 1.2857142857;
  }
}

@media screen and (min-width: 761px) {
  .p-overview__lists__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 185px;
            flex: 0 0 185px;
    width: 185px;
    border-bottom: 1px solid #898989;
    padding-bottom: 1em;
  }
}
@media screen and (max-width: 760px) {
  .p-overview__lists__title {
    font-weight: bold;
  }
}

.p-overview__lists__content {
  margin: 0;
  padding-bottom: 1em;
  border-bottom: 1px solid #898989;
}
@media screen and (min-width: 761px) {
  .p-overview__lists__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 185px);
            flex: 0 0 calc(100% - 185px);
    width: calc(100% - 185px);
  }
}
.p-overview__lists__content p {
  margin-bottom: 1em;
  padding-left: 1em;
  text-indent: -1em;
}
.p-overview__lists__content strong {
  color: #C30D23;
}
.p-overview__lists__content h3 {
  margin-bottom: 0;
  font-weight: normal;
}
.p-overview__lists__content dl {
  margin-bottom: 1em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 761px) {
  .p-overview__lists__content dl {
    width: 80%;
  }
}
@media screen and (min-width: 761px) {
  .p-overview__lists__content dl dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 18em;
            flex: 0 0 18em;
  }
}
@media screen and (max-width: 760px) {
  .p-overview__lists__content dl dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 17em;
            flex: 0 0 17em;
  }
}
.p-overview__lists__content dl dd {
  margin: 0;
}
.p-overview__lists__content a {
  color: #00A0E9;
}

.p-overview__lists__content__list {
  padding-left: 1em;
  list-style: outside;
  list-style-type: "●";
}

/* カレンダー
-------------------------------------------------- */
@media screen and (min-width: 761px) {
  .p-forms {
    padding: 30px 0;
  }
}
@media screen and (max-width: 760px) {
  .p-forms {
    padding: 9.375vw 0 10.9375vw;
  }
}

@media screen and (min-width: 761px) {
  .p-forms__text {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 760px) {
  .p-forms__text {
    font-size: 1.4rem;
    line-height: 1.2857142857;
  }
}

@media screen and (min-width: 761px) {
  .p-forms__timelimit {
    width: 591px;
    margin: 30px auto 50px;
  }
}
@media screen and (max-width: 760px) {
  .p-forms__timelimit {
    width: 71.875vw;
    margin: 4.6875vw auto 7.8125vw;
  }
}

.p-forms__timelimit__btn {
  width: 100%;
  border-radius: 8px;
  background-color: #C30D23;
  color: #FFF;
  font-weight: bold;
}
@media screen and (min-width: 761px) {
  .p-forms__timelimit__btn {
    height: 75px;
  }
}
@media screen and (max-width: 760px) {
  .p-forms__timelimit__btn {
    height: 16.875vw;
    text-align: center;
  }
}
@media screen and (min-width: 761px) {
  .p-forms__timelimit__btn {
    font-size: 2rem;
    line-height: 1;
  }
}
@media screen and (max-width: 760px) {
  .p-forms__timelimit__btn {
    font-size: 1.4rem;
    line-height: 1.2857142857;
  }
}

.p-forms__timelimit__caution {
  text-align: center;
}
@media screen and (min-width: 761px) {
  .p-forms__timelimit__caution {
    margin-top: 1em;
  }
}
@media screen and (max-width: 760px) {
  .p-forms__timelimit__caution {
    margin-top: 0.5em;
  }
}
@media screen and (min-width: 761px) {
  .p-forms__timelimit__caution {
    font-size: 2rem;
    line-height: 1;
  }
}
@media screen and (max-width: 760px) {
  .p-forms__timelimit__caution {
    font-size: 1.4rem;
    line-height: 1.2857142857;
  }
}

@media screen and (min-width: 761px) {
  .p-forms__form {
    margin: 50px auto 70px;
  }
}
@media screen and (max-width: 760px) {
  .p-forms__form {
    margin: 7.8125vw auto 10.9375vw;
  }
}

@media screen and (min-width: 761px) {
  .p-forms__form__heading {
    font-size: 2rem;
    line-height: 2.4;
  }
}
@media screen and (max-width: 760px) {
  .p-forms__form__heading {
    font-size: 1.4rem;
    line-height: 1.2857142857;
  }
}

.p-forms__form__formWrap {
  position: relative;
  width: 100%;
  height: 0;
}
.p-forms__form__formWrap iframe {
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (min-width: 761px) {
  #gform1 .p-forms__form__formWrap {
    padding-top: 187%;
  }
}
@media screen and (max-width: 760px) {
  #gform1 .p-forms__form__formWrap {
    padding-top: 1540px;
  }
}

@media screen and (min-width: 761px) {
  #gform2 .p-forms__form__formWrap {
    padding-top: 228%;
  }
}
@media screen and (max-width: 760px) {
  #gform2 .p-forms__form__formWrap {
    padding-top: 1895px;
  }
}

/* about
-------------------------------------------------- */
.p-about {
  background-color: #DFF2FC;
}
@media screen and (min-width: 761px) {
  .p-about {
    padding: 40px 0 60px;
  }
}
@media screen and (max-width: 760px) {
  .p-about {
    padding: 4.6875vw 0 10.9375vw;
  }
}

.p-about__info {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 761px) {
  .p-about__info {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 760px) {
  .p-about__info {
    font-size: 1.4rem;
    line-height: 1.2857142857;
  }
}
@media screen and (min-width: 761px) {
  .p-about__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 350px;
            flex: 0 0 350px;
  }
}
@media screen and (max-width: 760px) {
  .p-about__info {
    margin-bottom: 0;
  }
}

.p-about__info__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 5em;
          flex: 0 0 5em;
  font-weight: normal;
}

.p-about__info__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 5em);
          flex: 0 0 calc(100% - 5em);
  width: calc(100% - 5em);
  margin-left: 0;
  padding-bottom: 1em;
}
.p-about__info__content a {
  color: #000;
}

@media screen and (min-width: 761px) {
  .p-about__profile__photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 155px;
            flex: 0 0 155px;
  }
}
@media screen and (max-width: 760px) {
  .p-about__profile__photo {
    width: 24.21875vw;
  }
}

@media screen and (min-width: 761px) {
  .p-about__profile__explain {
    margin-left: 15px;
  }
}
@media screen and (max-width: 760px) {
  .p-about__profile__explain {
    margin-top: 4.6875vw;
  }
}

.p-about__profile__explain__heading {
  margin: 0 0 0.5em;
}
@media screen and (min-width: 761px) {
  .p-about__profile__explain__heading {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 760px) {
  .p-about__profile__explain__heading {
    font-size: 1.4rem;
    line-height: 1.2857142857;
  }
}

@media screen and (min-width: 761px) {
  .p-about__profile__explain__text {
    font-size: 1.3rem;
    line-height: 1.6153846154;
  }
}
@media screen and (max-width: 760px) {
  .p-about__profile__explain__text {
    font-size: 1.4rem;
    line-height: 1.2857142857;
  }
}

/* Footer
-------------------------------------------------- */
.p-footer {
  position: relative;
  width: 100%;
  background-color: #8FC31F;
}
@media screen and (min-width: 761px) {
  .p-footer {
    padding: 15px 0 65px;
  }
}
@media screen and (max-width: 760px) {
  .p-footer {
    padding: 4.6875vw 0 1.5625vw;
  }
}
.p-footer > .l-maincontent {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 761px) {
  .p-footer__nav {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 335px);
            flex: 0 0 calc(100% - 335px);
    width: calc(100% - 335px);
  }
}
@media screen and (max-width: 760px) {
  .p-footer__nav {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
}

.p-footer__nav__list {
  margin: 0;
}
@media screen and (min-width: 761px) {
  .p-footer__nav__list {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 760px) {
  .p-footer__nav__list {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
@media screen and (max-width: 760px) {
  .p-footer__nav__list {
    margin: 0 auto 25vw;
  }
}

@media screen and (min-width: 761px) {
  .p-footer__nav__list__item {
    padding: 0 1em;
  }
}
@media screen and (max-width: 760px) {
  .p-footer__nav__list__item {
    text-align: center;
  }
}
@media screen and (min-width: 761px) {
  .p-footer__nav__list__item:not(:first-child) {
    border-left: 1px solid #000;
  }
}
@media screen and (min-width: 761px) {
  .p-footer__nav__list__item:first-child {
    padding-left: 0;
  }
}
@media screen and (min-width: 761px) {
  .p-footer__nav__list__item:last-child {
    padding-right: 0;
  }
}
.p-footer__nav__list__item a {
  color: #000;
}

.p-footer__company {
  color: #6A3906;
  font-weight: bold;
}
@media screen and (min-width: 761px) {
  .p-footer__company {
    font-size: 1.8rem;
    line-height: 1.7777777778;
  }
}
@media screen and (max-width: 760px) {
  .p-footer__company {
    font-size: 1.4rem;
    line-height: 1.2857142857;
  }
}
@media screen and (min-width: 761px) {
  .p-footer__company {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 335px;
            flex: 0 0 335px;
    width: 335px;
  }
}

@media screen and (min-width: 761px) {
  .p-footer__contectarea {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 20px;
  }
}

.p-footer__contactarea__text {
  margin-top: 0.5em;
  color: #000;
}
@media screen and (min-width: 761px) {
  .p-footer__contactarea__text {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 760px) {
  .p-footer__contactarea__text {
    font-size: 1.2rem;
    line-height: 1;
  }
}

.p-footer__contectarea__tel {
  font-weight: bold;
  color: #fff;
}
@media screen and (min-width: 761px) {
  .p-footer__contectarea__tel {
    width: 150px;
  }
}
@media screen and (max-width: 760px) {
  .p-footer__contectarea__tel {
    width: 40.625vw;
  }
}

.u-full {
  width: 100%;
}

.u-centerlabel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.u-anim {
  opacity: 0;
}

.u-numberedlist {
  list-style: inside;
  list-style-type: decimal;
}

@media screen and (max-width: 760px) {
  .u-pconly {
    display: none;
  }
}

@media screen and (min-width: 761px) {
  .u-sponly {
    display: none;
  }
}

@media screen and (max-width: 760px) {
  .u-mdonly {
    display: none;
  }
}
@media screen and (min-width: 1000px) {
  .u-mdonly {
    display: none;
  }
}

@media screen and (max-width: 760px) {
  .u-lgonly {
    display: none;
  }
}
@media screen and (min-width: 761px) {
  .u-lgonly {
    display: none;
  }
}
@media screen and (min-width: 1000px) {
  .u-lgonly {
    display: block;
  }
}

@media screen and (max-width: 760px) {
  .u-lgonly--i {
    display: none;
  }
}
@media screen and (min-width: 761px) {
  .u-lgonly--i {
    display: none;
  }
}
@media screen and (min-width: 1000px) {
  .u-lgonly--i {
    display: inline;
  }
}

.u-scrollable {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.u-scrollable-x {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 760px) {
  .u-scrollable-x-sponly {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.u-scrollable-y {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.u-scrollbar-hidden {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.u-scrollbar-hidden::-webkit-scrollbar {
  display: none;
}

.u-blanklink, .u-blanklink-white {
  position: relative;
  color: #8FC31F;
}
.u-blanklink:after, .u-blanklink-white:after {
  content: "";
  position: absolute;
  display: block;
  background: url(../images/icon-blanklink.svg) no-repeat center center/contain;
}
@media screen and (min-width: 761px) {
  .u-blanklink:after, .u-blanklink-white:after {
    top: 5px;
    right: 7px;
    width: 11px;
    height: 11px;
  }
}
@media screen and (max-width: 760px) {
  .u-blanklink:after, .u-blanklink-white:after {
    top: 3px;
    right: 5px;
    width: 8px;
    height: 8px;
  }
}

.u-blanklink-white {
  color: #fff;
}
.u-blanklink-white:after {
  background-image: url(../images/icon-blanklink-white.svg);
}

.u-red {
  color: #eb081c;
}

.u-pink {
  color: #f14f82;
}

.u-lease {
  color: #55bd00;
}

.u-bold {
  font-weight: bold;
}

.u-noborder-bottom {
  border-bottom: none;
}

.u-no-padding {
  padding: 0;
}

.u-orange {
  color: #ea5514;
}

.u-bg-green {
  background-color: #8FC31F;
}

.u-bg-pink {
  background-color: rgba(235, 8, 28, 0.1);
}

@-webkit-keyframes blink {
  75% {
    opacity: 0;
  }
}

@keyframes blink {
  75% {
    opacity: 0;
  }
}
.u-blink {
  -webkit-animation: blink 1.5s step-end infinite;
          animation: blink 1.5s step-end infinite;
}

.u-underline--yellow {
  position: relative;
  display: inline-block;
}
.u-underline--yellow:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 0;
  border-bottom: 0.5em solid #FFF100;
}
@media screen and (min-width: 761px) {
  .u-underline--yellow:before {
    border-width: 12px;
  }
}/*# sourceMappingURL=style.css.map */