@charset "UTF-8";
/* CSS Document */
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);

/* Body Html Fonts
------------------------------------------------------------*/
html {
  font-family: 'Noto Sans Japanese', "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  background-color: #FFF;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 13px;
  }
}

body {
  width: 100%;
  overflow-x: hidden;
  height: 100%;
  position: relative;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  color: #333;
  line-height: 1.5;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.04em;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

body a {
  color: #ffa73a;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

body a:hover {
  text-decoration: underline;
}

body a img {
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  backface-visibility: hidden;
}

body a img:hover {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=70);
  opacity: 0.7;
}

body img {
  max-width: 100%;
  height: auto;
}

body img.sp {
  display: none;
}

body br.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  body img.pc {
    display: none;
  }

  body img.sp {
    display: inline;
  }

  body br.sp {
    display: inline;
  }
}

body .wrap {
  width: 980px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

body ::selection {
  background: rgba(0, 200, 225, 0.2);
  /* Safari */
}

body ::-moz-selection {
  background: rgba(0, 200, 225, 0.2);
  /* Firefox */
}

/* header
------------------------------------------------------------*/
header {
  background-color: #FFF;
  position: absolute;
  width: 100%;
  padding-bottom: 18px;
  z-index: 500;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: auto;
  width: 100%;
  height: 20px;
  bottom: -20px;
  background: url(../img/bg-circle.png) repeat-x center bottom;
}

header .inner {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 1070px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

header .h-top {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

header .h-top__logo {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 20px 0 25px;
  line-height: 0;
  text-align: center;
}

header .h-top__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

header .h-top__sns li {
  line-height: 0;
}

header .h-top__sns li:not(:last-child) {
  margin-right: 10px;
}

header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

header nav ul li {
  line-height: 0;
}

header .menu {
  display: none;
}

header.fixed {
  position: fixed;
}

header.fixed .h-top__logo {
  /* margin:0 auto;
        padding-bottom: 25px; */
}

.sp-menu {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 980px) {
  header {
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }

  header .h-top__logo {
    padding: 15px 0 20px;
  }

  header .h-top__logo img {
    height: 65px;
    width: auto;
  }

  header nav ul li {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media screen and (max-width: 767px) {
  header {
    min-width: 0;
    padding-bottom: 0;
  }

  header:after {
    background-size: 19px auto;
    bottom: -10px;
  }

  header .h-top__logo {
    padding: 10px 20px 13px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    text-align: left;
    width: 220px;
  }

  header .h-top__sns {
    display: none;
  }

  header .inner {
    padding-top: 0;
  }

  header.fixed .inner {
    padding-top: 0px;
  }

  header.fixed .h-top__logo {
    padding-bottom: 13px;
  }

  header nav {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .sp-bg.active {
    z-index: 1000;
    position: fixed;
    height: 100%;
    width: 100%;
  }

  .menu {
    top: 6px;
    left: -40px;
    z-index: 2000;
    position: absolute;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: block;
    background: transparent;
    background-color: transparent;
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -ms-border-radius: 5px 0 0 5px;
    -o-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px;
    background-color: #82503c;
  }

  .menu.opened .middle {
    background: transparent;
  }

  .menu.opened span.top {
    transform: rotate(-45deg) translateY(0px);
    -ms-transform: rotate(-45deg) translateY(0px);
    -webkit-transform: rotate(-45deg) translateY(0px);
    -moz-transform: rotate(-45deg) translateY(0px);
    -o-transform: rotate(-45deg) translateY(0px);
  }

  .menu.opened span.bottom {
    transform: rotate(45deg) translateY(0px);
    -ms-transform: rotate(45deg) translateY(0px);
    -webkit-transform: rotate(45deg) translateY(0px);
    -moz-transform: rotate(45deg) translateY(0px);
    -o-transform: rotate(45deg) translateY(0px);
  }

  .menu span {
    width: 20px;
    height: 3px;
    display: block;
    background: #FFF;
    position: absolute;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    left: 50%;
    top: 50%;
    margin-left: -10px;
    margin-top: -2px;
    transition: all 0.3s;
    transform: rotate(0deg);
  }

  .menu span.top {
    transform: translateY(-7px);
    -ms-transform: translateY(-7px);
    -webkit-transform: translateY(-7px);
    -moz-transform: translateY(-7px);
    -o-transform: translateY(-7px);
  }

  .menu span.bottom {
    transform: translateY(7px);
    -ms-transform: translateY(7px);
    -webkit-transform: translateY(7px);
    -moz-transform: translateY(7px);
    -o-transform: translateY(7px);
  }

  .sp-menu {
    width: 224px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px 30px;
    height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    display: block;
    z-index: 9999;
    right: 0;
    top: 0;
    background-color: #82503c;
    right: -224px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .sp-menu.active {
    right: 0px;
  }

  .sp-menu .h-top__sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding-bottom: 10px;
  }

  .sp-menu .h-top__sns li {
    width: 32px;
    margin-right: 15px;
  }

  .sp-menu nav .title {
    font-weight: bold;
    font-size: 13px;
    font-size: 0.9285714286rem;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    color: #FFF;
    padding: 12px 0;
  }

  .sp-menu nav ul li:not(:last-child) {
    border-bottom: dashed 1px #FFF;
  }

  .sp-menu nav ul li a {
    font-weight: bold;
    font-size: 13px;
    font-size: 0.9285714286rem;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    color: #FFF;
    display: block;
    padding: 12px 0;
  }
}

/* footer
------------------------------------------------------------*/
footer {
  background-color: #00c8e1;
  position: relative;
}

footer:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -20px;
  width: 100%;
  height: 20px;
  background: url(../img/bg-circle2.png) repeat-x center top;
}

footer .footer-top .inner {
  width: 980px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 36px 0 28px;
}

footer .footer-top__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

footer .footer-top__left ul:not(:last-child) {
  margin-right: 50px;
}

footer .footer-top__left ul li:not(:last-child) {
  margin-bottom: 12px;
}

footer .footer-top__left ul li a {
  font-size: 16px;
  font-size: 1.1428571429rem;
  padding-left: 20px;
  color: #FFF;
  position: relative;
}

footer .footer-top__left ul li a:after {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 11px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/arrow_r.svg) no-repeat left center;
}

footer .footer-top__left ul li a:hover:after {
  left: 5px;
}

footer .footer-top__right {
  margin-left: -90px;
  text-align: right;
  margin-top: -10px;
}

footer .footer-top__right .shou {
  padding-bottom: 28px;
  line-height: 0;
}

footer .footer-top__right .sns-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 20px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  background-color: #FFF;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

footer .footer-top__right .sns-box .txt {
  margin-right: 30px;
  line-height: 0;
}

footer .footer-top__right .sns-box .txt1,
footer .footer-top__right .sns-box .txt2 {
  display: none;
}

footer .footer-top__right .sns-box .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  line-height: 0;
}

footer .footer-top__right .sns-box .sns li:not(:last-child) {
  margin-right: 14px;
}

footer .footer-bottom {
  padding: 15px 0 10px;
  background-color: #FFF;
}

footer .footer-bottom .inner {
  width: 980px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

footer .footer-bottom .inner .footer-bottom__logo .copyright {
  font-size: 12px;
  font-size: 0.8571428571rem;
  color: #adadad;
  font-family: 'Noto Sans Japanese', "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.2;
}

footer .footer-bottom .inner .footer-bottom__nav {
  font-family: 'Noto Sans Japanese', "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

footer .footer-bottom .inner .footer-bottom__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

footer .footer-bottom .inner .footer-bottom__nav ul li {
  padding: 0 15px;
  line-height: 1;
  border-right: solid 1px #adadad;
}

footer .footer-bottom .inner .footer-bottom__nav ul li a {
  color: #333;
  font-size: 12px;
  font-size: 0.8571428571rem;
}

footer .footer-bottom .inner .footer-bottom__nav ul li:last-child {
  border-right: none;
  padding-right: 0;
}

footer .page-top-box {
  position: absolute;
  right: 87px;
  top: -132px;
}

footer .sp-sns {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 980px) {
  footer .page-top {
    position: absolute;
    right: 20px;
  }

  footer .footer-top .inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  footer .footer-top__left {
    width: 500px;
  }

  footer .footer-top__left ul:not(:last-child) {
    margin-right: 16px;
  }

  footer .footer-top__left ul li {
    white-space: nowrap;
  }

  footer .footer-top__left ul li:not(:last-child) {
    margin-bottom: 12px;
  }

  footer .footer-bottom {
    padding-left: 20px;
    padding-right: 20px;
  }

  footer .footer-bottom .inner .footer-bottom__logo .copyright {
    font-size: 11px;
    font-size: 0.7857142857rem;
  }

  footer .footer-bottom .inner .footer-bottom__nav ul li {
    padding: 0 10px;
  }

  footer .footer-bottom .inner .footer-bottom__nav ul li a {
    font-size: 11px;
    font-size: 0.7857142857rem;
  }
}

@media screen and (max-width: 767px) {
  footer .page-top-box {
    position: relative;
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=0);
    opacity: 0;
    visibility: hidden;
    position: fixed;
    bottom: 10px;
    right: 10px;
    top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.7);
  }

  footer .page-top-box.active {
    z-index: 1000;
    visibility: visible;
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  footer .page-top-box .page-top {
    bottom: 10px;
    top: auto;
    width: 50px;
    line-height: 0;
  }

  footer .page-top-box .sp-sns {
    margin-right: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    line-height: 0;
  }

  footer .page-top-box .sp-sns li {
    line-height: 0;
  }

  footer .page-top-box .sp-sns li:not(:last-child) {
    margin-right: 10px;
  }

  footer:after {
    background-size: 19px auto;
    top: -10px;
  }

  footer .footer-top .inner {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px 20px 28px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }

  footer .footer-top__left {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }

  footer .footer-top__left ul {
    width: 100%;
    margin-bottom: 8px;
  }

  footer .footer-top__left ul:not(:last-child) {
    margin-right: 0px;
  }

  footer .footer-top__left ul li:not(:last-child) {
    margin-bottom: 8px;
  }

  footer .footer-top__left ul li a {
    font-size: 15px;
    font-size: 1.0714285714rem;
  }

  footer .footer-top__right {
    margin-left: 0px;
    margin-top: 0px;
    width: 100%;
  }

  footer .footer-top__right .shou {
    padding-bottom: 23px;
    line-height: 0;
    width: 100%;
    text-align: center;
  }

  footer .footer-top__right .shou img {
    height: 85px;
    width: auto;
  }

  footer .footer-top__right .sns-box {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }

  footer .footer-top__right .sns-box .txt {
    display: none;
    margin-right: 0px;
    padding-bottom: 15px;
    text-align: center;
    width: 100%;
  }

  footer .footer-top__right .sns-box .txt1,
  footer .footer-top__right .sns-box .txt2 {
    display: block;
  }

  footer .footer-top__right .sns-box .txt1 {
    padding-bottom: 6px;
    width: 100%;
    text-align: center;
  }

  footer .footer-top__right .sns-box .txt2 {
    margin-right: 20px;
    line-height: 0;
  }

  footer .footer-top__right .sns-box .sns li:not(:last-child) {
    margin-right: 10px;
  }
}

@media screen and (max-width: 767px) and (max-width: 370px) {
  footer .footer-top__right .sns-box {
    padding: 13px;
  }

  footer .footer-top__right .sns-box .txt2 {
    margin-right: 14px;
    line-height: 0;
  }

  footer .footer-top__right .sns-box .sns li:not(:last-child) {
    margin-right: 8px;
  }
}

@media screen and (max-width: 767px) {
  footer .footer-bottom {
    padding: 0px;
  }

  footer .footer-bottom .inner {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  footer .footer-bottom .inner .footer-bottom__logo {
    -webkit-box-original-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    padding: 20px 20px 70px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }

  footer .footer-bottom .inner .footer-bottom__logo .logo {
    text-align: center;
    padding-bottom: 10px;
  }

  footer .footer-bottom .inner .footer-bottom__logo .copyright {
    text-align: center;
  }

  footer .footer-bottom .inner .footer-bottom__nav {
    width: 100%;
  }

  footer .footer-bottom .inner .footer-bottom__nav ul {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  footer .footer-bottom .inner .footer-bottom__nav ul li {
    width: 50%;
    padding: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: solid 1px #adadad;
  }

  footer .footer-bottom .inner .footer-bottom__nav ul li a {
    text-align: center;
    display: block;
    padding: 15px;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }

  footer .footer-bottom .inner .footer-bottom__nav ul li:nth-child(even) {
    border-right: none;
  }
}

/* mainimg
------------------------------------------------------------*/
#mainimg.top {
  padding-top: 150px;
}

#mainimg.top .sl-slider-wrapper {
  width: 100%;
  height: 590px;
}

#mainimg.top .sl-slider-wrapper .nav-dots span {
  width: 12px;
  height: 12px;
  background-color: #FFF;
  box-shadow: 0 0px 0px rgba(255, 255, 255, 0), inset 0 0px 0px transparent;
}

#mainimg.top .sl-slider-wrapper .nav-dots span:after {
  display: none;
}

#mainimg.top .sl-slider-wrapper .nav-dots {
  z-index: 100;
}

#mainimg.top .sl-slider-wrapper .nav-dots span.nav-dot-current {
  background-color: #ffa73a;
}

#mainimg.top .sl-slide-inner {
  background: no-repeat center center/ cover;
}

#mainimg.top .sl-slide-inner.bg-img-1 {
  background-image: url(../../img/mainimg.jpg);
}

#mainimg.top .sl-slide-inner.bg-img-2 {
  background-image: url(../../img/mainimg2.jpg);
}

#mainimg.top .sl-slide-inner.bg-img-3 {
  background-image: url(../../img/mainimg3.jpg);
}

#mainimg.top .mainimg__slider li {
  height: 590px;
  background: no-repeat center center/ cover;
}

#mainimg.top .mainimg__slider li.slider1 {
  background-image: url(../../img/mainimg.jpg);
}

#mainimg.top .mainimg__slider li.slider2 {
  background-image: url(../../img/mainimg.jpg);
}

#mainimg.top .mainimg__slider li.slider3 {
  background-image: url(../../img/mainimg.jpg);
}

#mainimg.top .mainimg__slider li.slider4 {
  background-image: url(../../img/mainimg.jpg);
}

#mainimg.top .mainimg__slider li.slider5 {
  background-image: url(../../img/mainimg.jpg);
}

#mainimg.top .nav-arrow-prev,
#mainimg.top .nav-arrow-next {
  z-index: 10;
  text-indent: -999;
  width: 50px;
  height: 93px;
  background: no-repeat center center;
}

#mainimg.top .nav-arrow-prev:before,
#mainimg.top .nav-arrow-next:before {
  display: none;
}

#mainimg.top .nav-arrow-prev {
  left: 40px;
  background-image: url(../../img/slider-arrow_l.svg);
}

#mainimg.top .nav-arrow-next {
  right: 40px;
  background-image: url(../../img/slider-arrow_r.svg);
}

#mainimg.top .nav-arrows span {
  top: 50%;
  border: none;
  border: none;
  text-indent: -90000px;
  margin-top: 0px;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) and (max-width: 980px) {
  #mainimg.top {
    padding-top: 100px;
  }

  #mainimg.top .sl-slider-wrapper {
    height: 450px;
  }

  #mainimg.top .nav-arrow-prev {
    left: 20px;
    background-size: 30px auto;
    width: 30px;
  }

  #mainimg.top .nav-arrow-next {
    right: 20px;
    background-size: 30px auto;
    width: 30px;
  }
}

@media screen and (max-width: 767px) {
  #mainimg.top {
    padding-top: 60px;
  }

  #mainimg.top .sl-slider-wrapper {
    height: 210px;
  }

  #mainimg.top .mainimg__slider li {
    height: 230px;
  }

  #mainimg.top .slick-dots {
    bottom: 20px;
  }

  #mainimg.top .slick-dots li {
    height: 10px;
    width: 10px;
    margin: 0 3px;
  }

  #mainimg.top .slick-dots li.slick-active button {
    background-color: #ffa73a;
  }

  #mainimg.top .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0px;
    background-color: #FFF;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
  }

  #mainimg.top .slick-dots li button:before {
    display: none;
  }

  #mainimg.top .slick-prev,
  #mainimg.top .slick-next,
  #mainimg.top .nav-arrow-prev,
  #mainimg.top .nav-arrow-next {
    width: 20px;
    height: 93px;
  }

  #mainimg.top .slick-prev,
  #mainimg.top .nav-arrow-prev {
    left: 10px;
    background-image: url(../../img/slider-arrow_l.svg);
    background-size: 20px auto;
    background-position: center center;
  }

  #mainimg.top .slick-next,
  #mainimg.top .nav-arrow-next {
    right: 10px;
    background-image: url(../../img/slider-arrow_r.svg);
    background-size: 20px auto;
    background-position: center center;
  }

  #mainimg.top .nav-arrows span {
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

#mainimg.next {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  background: no-repeat center center;
  background-size: cover;
  margin-bottom: 38px;
  padding: 90px 0;
}

@media screen and (min-width: 768px) and (max-width: 980px) {
  #mainimg.next {
    padding: 75px 100px 75px 0;
  }
}

@media screen and (max-width: 767px) {
  #mainimg.next {
    margin-bottom: 18px;
    padding: 50px 40px 50px 0;
  }
}

#mainimg.next.history {
  background-image: url(../../history/img/bg-mainimg@2x.jpg);
}

#mainimg.next.history .title {
  position: relative;
  display: -moz-inline-box;
  display: inline-block;
}

#mainimg.next.history .title:after {
  content: "";
  display: block;
  position: absolute;
  left: auto;
  top: auto;
  width: 135px;
  height: 123px;
  background: url(../../history/img/icon-chou.png) no-repeat center center;
  right: -112px;
  bottom: -62px;
}

@media screen and (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 2dppx) {
  #mainimg.next.history .title:after {
    background-image: url(../../history/img/icon-chou@2x.png);
    background-size: 135px auto;
  }
}

@media screen and (min-width: 768px) and (max-width: 980px) {
  #mainimg.next.history .title:after {
    right: -63px;
    bottom: -60px;
    background-size: 70px auto;
  }
}

@media screen and (min-width: 768px) and (max-width: 980px) and (-webkit-min-device-pixel-ratio: 2),
screen and (min-width: 768px) and (max-width: 980px) and (min-resolution: 2dppx) {
  #mainimg.next.history .title:after {
    background-size: 70px auto;
  }
}

@media screen and (max-width: 767px) {
  #mainimg.next.history .title:after {
    width: 50px;
    right: -35px;
    bottom: -60px;
    background-size: 50px auto;
  }
}

@media screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 2),
screen and (max-width: 767px) and (min-resolution: 2dppx) {
  #mainimg.next.history .title:after {
    background-size: 50px auto;
  }
}

#mainimg.next.world {
  height: auto;
  background-image: none;
  padding: 0;
}

#mainimg.next.detail {
  background-image: url(../../detail/img/bg-mainimg.jpg);
}

#mainimg.next.eat {
  padding: 0;
  height: 320px;
  background-image: url(../../eat/img/bg-mainimg.jpg);
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  #mainimg.next.eat {
    padding: 0px;
    height: 180px;
  }
}

#mainimg.next.original {
  background-image: url(../../original/img/bg-mainimg.jpg);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  padding: 135px 45px;
}

@media screen and (min-width: 768px) and (max-width: 980px) {
  #mainimg.next.original {
    padding: 95px 20px;
  }
}

@media screen and (max-width: 767px) {
  #mainimg.next.original {
    padding: 65px 20px;
  }

  #mainimg.next.original img {
    height: 35px;
    width: auto;
  }
}

#mainimg.next.recipe {
  background-image: url(../../recipe/img/bg-mainimg.jpg);
}

#mainimg.data {
  background: url(../../article/img/bg-data.png) no-repeat center center;
  background-size: cover;
  position: relative;
  text-align: center;
  padding: 15px 47px 30px;
  margin-bottom: 30px;
}

#mainimg.data:before {
  content: "";
  display: block;
  position: absolute;
  left: 13px;
  top: auto;
  width: 185px;
  height: 103px;
  background: url(../../article/img/chara.png) no-repeat center bottom;
  bottom: 0;
}

@media screen and (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 2dppx) {
  #mainimg.data:before {
    background-image: url(../../article/img/chara@2x.png);
    background-size: 185px auto;
  }
}

#mainimg.data .title {
  width: 100%;
  display: -moz-inline-box;
  display: inline-block;
  background: no-repeat center center;
  padding: 140px 20px;
  padding-bottom: 140px !important;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 32px;
  font-size: 2.2857142857rem;
  font-weight: bold;
  color: #FFF;
  line-height: 1.2;
  border-top: none;
  border-bottom: none;
  background: url(../../article/img/bg-ballon.png) no-repeat center center;
  background-size: 100% 100%;
}

@media screen and (min-width: 768px) and (max-width: 980px) {
  #mainimg.data {
    padding: 15px 25px 30px;
  }

  #mainimg.data .title {
    font-size: 25px;
    font-size: 1.7857142857rem;
    padding-top: 100px;
    padding-bottom: 100px !important;
  }
}

@media screen and (max-width: 767px) {
  #mainimg.data {
    padding: 10px 10px 10px;
    margin-bottom: 20px;
  }

  #mainimg.data .title {
    font-size: 22px;
    font-size: 1.5714285714rem;
    padding-top: 60px;
    padding-bottom: 60px !important;
  }

  #mainimg.data:before {
    left: 0;
    background-size: 120px auto;
    width: 120px;
  }
}

/* mainimg top
------------------------------------------------------------*/
/* main
------------------------------------------------------------*/
main .content {
  width: 980px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

main .content.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

main .content.column2 .container {
  width: 670px;
}

main .content .container {
  width: 100%;
}

main .content .side {
  width: 250px;
}

main .side .bnr {
  line-height: 0;
  padding-bottom: 20px;
}

main .side .bnr-list li {
  line-height: 0;
  padding-bottom: 20px;
}

main .side .bnr-list li a img {
  border-radius: 10px;
}

main .side .side-ariticle {
  background-color: #FFF;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 20px;
}

main .side .side-ariticle .title {
  line-height: 0;
  padding-bottom: 10px;
}

main .side .side-ariticle ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

main .side .side-ariticle ul li:not(:last-child) {
  padding-bottom: 10px;
}

main .side .side-ariticle ul li .img {
  width: 88px;
  margin-right: 12px;
  line-height: 0;
}

main .side .side-ariticle ul li .txt {
  width: 10px;
  -ms-flex: 1 0 auto;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}

main .side .side-ariticle ul li .txt a {
  color: #333;
}

main .article-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-left: -12.5px;
  margin-right: -12.5px;
  margin-bottom: -25px;
  padding-bottom: 30px;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

main .article-list li {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  width: 310px;
  overflow: hidden;
  background-color: #FFF;
  margin-left: 12.5px;
  margin-right: 12.5px;
  margin-bottom: 25px;
}

main .article-list li .hover-img {
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

main .article-list li .hover-img a {
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
  display: block;
}

main .article-list li .hover-img a .bg {
  width: 100%;
  height: 207px;
}

main .article-list li .hover-img a .bg a {
  overflow: hidden;
}

main .article-list li .hover-img a .bg img {
  width: 100%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

main .article-list li .hover-img a:hover .bg img {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=100);
  opacity: 1;
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}

main .article-list li .txt-block {
  background-color: #FFF;
  position: relative;
  padding: 20px 15px;
}

main .article-list li .txt-block:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: -12px;
  width: 0;
  height: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  border-style: solid;
  border-width: 0 6.5px 12px 6.5px;
  border-color: transparent transparent #fff transparent;
}

main .article-list li .txt-block .title {
  font-family: 'Noto Sans Japanese', sans-serif;
  text-align: left;
  font-size: 17.5px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  padding-bottom: 15px;
  white-space: nowrap;
}

main .article-list li .txt-block .title a {
  color: #914c3a;
}

main .article-list.recipe li {
  position: relative;
}

main .article-list.recipe li .meyasu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

main .article-list.recipe li .txt-block {
  padding-bottom: 50px;
  position: relative;
}

main .article-list.recipe li .txt-block a {
  color: #ffa73a;
}

main .article-list.recipe li .time {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  color: #ffa73a;
  font-weight: bold;
}

main .article-list.recipe li .time .item-meyasu {
  padding-left: 17px;
  position: relative;
}

main .article-list.recipe li .time .item-meyasu:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 9px;
  height: 15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/icon-meyasu.svg) no-repeat center center;
}

main .article-list.brown li {
  position: relative;
}

main .article-list.brown li .txt-block {
  padding-bottom: 45px;
}

main .article-list.brown li .txt-block a {
  color: #914c3a;
}

main .article-list.brown li .cal {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  text-align: right;
  color: #914c3a;
  font-weight: bold;
}

main .article-list.brown li .cal .item-cal {
  font-family: 'Noto Sans Japanese', sans-serif;
  display: -moz-inline-box;
  display: inline-block;
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  font-size: 1rem;
  color: #333;
  font-weight: normal;
}

main .article-list.brown li .cal .item-cal:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 13px;
  height: 13px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/icon-cal.svg) no-repeat center center;
}

main .article-list.column3 {
  margin-left: -7.5px;
  margin-right: -7.5px;
  padding-bottom: 20px;
}

main .article-list.column3 li {
  width: 200px;
  margin-left: 7.5px;
  margin-right: 7.5px;
}

main .article-list.column3 li .hover-img a .bg {
  height: 134px;
}

main .article-list.column3 li .txt-block {
  padding: 12px 15px 15px;
}

main .article-list.column3 li .txt-block .title {
  font-size: 16px;
  font-size: 1.1428571429rem;
  padding-bottom: 5px;
  line-height: 1.2;
}

main .article-list.column3 li .txt-block .title a {
  color: #ff9200;
}

main .article-list.column3 li .txt-block .txt {
  font-size: 14px;
  font-size: 1rem;
}

main .sns-block {
  text-align: right;
  padding: 10px 0;
}

main .sns-block li {
  display: -moz-inline-box;
  display: inline-block;
  vertical-align: top;
  line-height: 0;
}

main .sns-block li a {
  line-height: 0;
}

main .pager {
  font-family: 'Noto Sans Japanese', sans-serif;
}

main .pager p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

main .pager a.link_before,
main .pager a.link_next {
  font-size: 15px;
  font-size: 1.0714285714rem;
  display: block;
  font-weight: bold;
  letter-spacing: -0.01em;
  position: relative;
  width: 150px;
  line-height: 36px;
  background-color: #FFF;
  border: solid 2px #f09646;
  -webkit-border-radius: 20px 20px 20px 20px;
  -moz-border-radius: 20px 20px 20px 20px;
  -ms-border-radius: 20px 20px 20px 20px;
  -o-border-radius: 20px 20px 20px 20px;
  border-radius: 20px 20px 20px 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  color: #f09646;
}

main .pager a.link_before:before,
main .pager a.link_next:before {
  content: "";
  display: block;
  position: absolute;
  left: auto;
  top: 50%;
  width: 7px;
  height: 13px;
  background: no-repeat center center;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

main .pager a.link_before {
  margin-right: 15px;
  padding-left: 16px;
}

main .pager a.link_before:before {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 33px;
  background-image: url(../img/arrow_pager_l.svg);
}

main .pager a.link_next {
  margin-left: 15px;
  padding-right: 16px;
}

main .pager a.link_next:before {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  right: 33px;
  background-image: url(../img/arrow_pager_r.svg);
}

main .pager a.link_page {
  line-height: 36px;
  width: 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  border: solid 2px #f09646;
  background-color: #FFF;
  display: block;
  font-family: 'Noto Sans Japanese', sans-serif;
  text-align: center;
  -webkit-border-radius: 20px 20px 20px 20px;
  -moz-border-radius: 20px 20px 20px 20px;
  -ms-border-radius: 20px 20px 20px 20px;
  -o-border-radius: 20px 20px 20px 20px;
  border-radius: 20px 20px 20px 20px;
  font-size: 15px;
  font-size: 1.0714285714rem;
  font-weight: bold;
  margin: 0 5px;
}

main .pager a:hover {
  text-decoration: none;
}

main .pager a:hover.link_before:before {
  left: 28px;
}

main .pager a:hover.link_next:before {
  right: 28px;
}

main .pager .current_page {
  margin: 0 5px;
  line-height: 40px;
  width: 40px;
  display: block;
  background-color: #f09646;
  color: #FFF;
  font-size: 15px;
  font-size: 1.0714285714rem;
  font-weight: bold;
  text-align: center;
  -webkit-border-radius: 20px 20px 20px 20px;
  -moz-border-radius: 20px 20px 20px 20px;
  -ms-border-radius: 20px 20px 20px 20px;
  -o-border-radius: 20px 20px 20px 20px;
  border-radius: 20px 20px 20px 20px;
}

main .breadcrumb {
  width: 980px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Noto Sans Japanese', sans-serif;
}

main .breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  line-height: 1.2;
  padding: 10px 0;
}

main .breadcrumb ul li {
  font-size: 12px;
  font-size: 0.8571428571rem;
  color: #82503c;
}

main .breadcrumb ul li a {
  margin-right: 40px;
  display: block;
  position: relative;
  line-height: 1;
  color: #82503c;
}

main .breadcrumb ul li a:after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  background: url(../../common/img/arrow-r.svg) no-repeat left top;
  right: -30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 1px;
}

main .w-txt-block {
  background: #FFF;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}

main .w-txt-block .img.fr {
  margin-left: 50px;
  float: right;
  padding-top: 20px;
}

main .w-txt-block p {
  line-height: 1.9;
}

main .w-txt-block.p30 {
  padding: 30px;
}

main .w-txt-block.menu-block .title-block {
  text-align: center;
}

main .w-txt-block.menu-block .title-block .icon-title {
  font-size: 20px;
  font-size: 1.4285714286rem;
  line-height: 1.2;
  color: #82503c;
  padding-bottom: 18px;
}

main .w-txt-block.menu-block .title-block .icon-title.france {
  padding-left: 45px;
  display: -moz-inline-box;
  display: inline-block;
  position: relative;
}

main .w-txt-block.menu-block .title-block .icon-title.france:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 35px;
  height: 40px;
  background: url(../../world/img/icon-flag.png) no-repeat center top;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

main .w-txt-block.menu-block .menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: -20px;
}

main .w-txt-block.menu-block .menu-list li {
  width: 295px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
}

main .w-txt-block.menu-block .menu-list li .title {
  padding: 6px;
  line-height: 1.2;
  background-color: #fffac5;
  color: #82503c;
  font-weight: bold;
  text-align: center;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  font-size: 16px;
  font-size: 1.1428571429rem;
  margin-bottom: 5px;
}

main .w-txt-block.menu-block .menu-list li .txt {
  line-height: 1.5;
}

main .w-txt-block.mb0 {
  margin-bottom: 0;
}

main .w-txt-block.cream {
  border: solid 5px #ffe691;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  background-color: #fffac5;
}

main .w-txt-block.cream .menu-list li .title {
  background-color: #ffe691;
}

main .w-txt-block.orange {
  border: solid 5px #ffd373;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
  background-color: #ffe691;
}

main .w-txt-block.orange .menu-list {
  padding-bottom: 20px;
}

main .w-txt-block.orange .menu-list li .title {
  background-color: #ffd373;
}

main .w-txt-block.orange .column2-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

main .w-txt-block.orange .column2-block .title {
  padding: 6px;
  line-height: 1.2;
  background-color: #ffd373;
  color: #82503c;
  font-weight: bold;
  text-align: center;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  font-size: 16px;
  font-size: 1.1428571429rem;
  margin-bottom: 5px;
  width: 100%;
}

main .w-txt-block.orange .column2-block .img {
  width: 295px;
  margin-right: 12px;
}

main .w-txt-block.orange .column2-block .txt {
  -ms-flex: 1 0 auto;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  width: 10px;
  line-height: 1.5;
}

main .w-txt-block.manner {
  padding: 25px;
}

main .w-txt-block.manner .manner-block:not(:last-child) {
  padding-bottom: 30px;
}

main .w-txt-block.manner .manner-block .title2 {
  font-size: 16px;
  font-size: 1.1428571429rem;
  font-weight: bold;
  line-height: 1.2;
  padding-bottom: 10px;
  color: #82503c;
}

main .w-txt-block.manner .manner-block .txt {
  padding-bottom: 13px;
}

main .w-txt-block.manner .manner-block p {
  line-height: 1.5;
}

main .w-txt-block.manner .manner-block .img {
  padding-top: 10px;
  text-align: center;
  line-height: 0;
}

main .w-txt-block.manner .manner-block.block2 .img {
  margin-left: -50px;
}

main .linkset-box {
  padding: 20px;
  background: url(../../common/img/bg-linkset.jpg) no-repeat center center;
  background-size: cover;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

main .linkset-box .title {
  margin-right: 10px;
  width: 212px;
}

main .linkset-box .linkset-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -6px;
  margin-right: -6px;
  margin-bottom: -6px;
  width: 10px;
  -ms-flex: 1 0 auto;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}

main .linkset-box .linkset-list li {
  line-height: 0;
  margin-bottom: 6px;
  margin-left: 6px;
  margin-right: 6px;
  width: 128px;
}

main .txt-block {
  font-size: 16px;
  font-size: 1.1428571429rem;
  padding-bottom: 30px;
}

main .phase {
  padding-top: 175px;
  margin-top: -175px;
}

main .phase:not(:last-of-type) {
  padding-bottom: 40px;
}

main .shou-box {
  padding: 20px 30px 30px;
  background-color: #FFF;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  position: relative;
}

main .shou-box.mb40 {
  margin-bottom: 40px;
}

main .shou-box:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 89px;
  background: url(../../common/img/bg.png) no-repeat center top;
  background-size: cover;
  z-index: 1;
}

@media screen and (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 2dppx) {
  main .shou-box:before {
    background-image: url(../../common/img/bg@2x.png);
  }
}

main .shou-box .item-title {
  position: relative;
  z-index: 10;
  color: #f09646;
  font-size: 20px;
  font-size: 1.4285714286rem;
  font-weight: bold;
  text-align: center;
  padding-bottom: 50px;
  line-height: 1.2;
}

main .shou-box .item-txt p {
  font-size: 16px;
  font-size: 1.1428571429rem;
}

main .shou-box .item-txt p:not(:last-child) {
  padding-bottom: 15px;
}

main .shou-box .item-txt figure {
  text-align: center;
}

main .shou-box .item-txt figure img {
  padding-bottom: 10px;
}

main .column-box {
  padding: 30px 30px 20px 30px;
  border: solid 2px #00c8e1;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  background: url(../img/bg-noto.jpg) repeat;
  margin-top: 20px;
}

main .column-box .title {
  margin-top: -50px;
  text-align: center;
  padding-bottom: 15px;
}

main .column-box .img-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

main .column-box .img-txt .txt {
  width: 10px;
  -ms-flex: 1 0 auto;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}

main .column-box .img-txt .img {
  line-height: 0;
  width: 150px;
  margin-left: 20px;
}

.mfp-fade.mfp-bg.mfp-ready {
  background-color: #000;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=40);
  opacity: 0.4;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 980px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

#popup1 {
  position: relative;
}

#popup1 .btn-close {
  position: absolute;
  right: -50px;
  top: -30px;
}

#popup1.profile .popup .p-inner {
  position: relative;
}

#popup1.profile .popup .p-inner .left-area {
  position: absolute;
  top: 0;
  left: 0;
}

#popup1.profile .popup .p-inner .left-area .name-area {
  padding-bottom: 8px;
}

#popup1.profile .popup .p-inner .left-area .name-area .n-top {
  padding-bottom: 10px;
}

#popup1.profile .popup .p-inner .left-area .name-area .n-top .tag {
  padding: 3px 11px;
  color: #FFF;
  background-color: #DE0012;
  font-size: 21px;
  font-size: 1.5rem;
  line-height: 1.2;
  display: -moz-inline-box;
  display: inline-block;
  margin-right: 12px;
}

#popup1.profile .popup .p-inner .left-area .name-area .n-top .name {
  display: -moz-inline-box;
  display: inline-block;
  font-size: 28px;
  font-size: 2rem;
  line-height: 1.2;
  color: #005BAB;
}

#popup1.profile .popup .p-inner .left-area .name-area .sub {
  font-size: 15px;
  font-size: 1.0714285714rem;
  color: #DE0012;
}

#popup1.profile .popup .p-inner .text-area {
  min-height: 270px;
  padding-left: 230px;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
  font-size: 1.1428571429rem;
  line-height: 2;
}

@media screen and (min-width: 768px) and (max-width: 980px) {

  /* main
------------------------------------------------------------*/
  main .content {
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }

  main .content.column2 .container {
    width: 10px;
    -ms-flex: 1 0 auto;
    -webkit-flex-grow: 1;
    flex-grow: 1;
  }

  main .content .container {
    width: 100%;
  }

  main .content .side {
    margin-left: 20px;
    width: 220px;
  }

  main .content .side .side-ariticle ul li .img {
    width: 78px;
  }

  main .article-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-left: -1%;
    margin-right: -1%;
    margin-bottom: -25px;
    padding-bottom: 30px;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  main .article-list li {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    width: 31.333%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 2%;
  }

  main .article-list li .hover-img a .bg {
    height: 150px;
  }

  main .article-list.column3 {
    margin-left: -1%;
    margin-right: -1%;
  }

  main .article-list.column3 li {
    width: 31.333%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 30px;
  }

  main .article-list.column3 li .hover-img a .bg {
    height: 97px;
  }

  main .article-list.column3 li .txt-block {
    padding: 10px 10px 10px;
  }

  main .article-list.column3 li .txt-block .title {
    font-size: 15px;
    font-size: 1.0714285714rem;
    padding-bottom: 5px;
    line-height: 1.2;
  }

  main .article-list.column3 li .txt-block .txt {
    font-size: 13px;
    font-size: 0.9285714286rem;
  }

  main .linkset-box {
    background: url(../../common/img/bg-linkset.jpg) no-repeat center center;
    background-size: cover;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }

  main .linkset-box .title {
    margin-right: 10px;
    width: 170px;
  }

  main .linkset-box .linkset-list {
    margin-left: -1%;
    margin-right: -1%;
  }

  main .linkset-box .linkset-list li {
    line-height: 0;
    margin-bottom: 1%;
    margin-left: 1%;
    margin-right: 1%;
    width: 31.333%;
  }

  main .w-txt-block.menu-block .title-block {
    text-align: center;
  }

  main .w-txt-block.menu-block .menu-list {
    margin-left: -1%;
    margin-right: -1%;
  }

  main .w-txt-block.menu-block .menu-list li {
    width: 48%;
    margin-left: 1%;
    margin-right: 1%;
  }
}

/*sp*/
@media screen and (max-width: 767px) {

  /* main
------------------------------------------------------------*/
  .iv {
    opacity: 1 !important;
    animation-delay: 0s !important;
    -webkit-transition: 0 0.3s ease;
    -moz-transition: 0 0.3s ease;
    -ms-transition: 0 0.3s ease;
    -o-transition: 0 0.3s ease;
    transition: 0 0.3s ease;
    -webkit-animation-duration: 0s !important;
    animation-duration: 0s !important;
    -webkit-animation-name: none !important;
    animation-name: none !important;
  }

  main {
    width: 100%;
  }

  main .content {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }

  main .content.column2 .container {
    width: 100%;
  }

  main .content .container {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    padding-bottom: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }

  main .content .side {
    width: 100%;
    text-align: center;
  }

  main .side {
    width: 100%;
    background-color: #ffe6bc;
    padding-top: 30px;
    padding-bottom: 60px;
  }

  main .side .bnr {
    line-height: 0;
    padding-bottom: 20px;
  }

  main .side .bnr-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }

  main .side .bnr-list li {
    min-width: 250px;
    line-height: 0;
    padding-bottom: 20px;
    padding: 0 10px 20px;
  }

  main .side .side-ariticle {
    padding: 10px;
    width: 250px;
    margin: 0 auto 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }

  main .side .side-ariticle .title {
    line-height: 0;
    padding-bottom: 10px;
  }

  main .side .side-ariticle ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }

  main .side .side-ariticle ul li:not(:last-child) {
    padding-bottom: 10px;
  }

  main .side .side-ariticle ul li .img {
    width: 88px;
    margin-right: 12px;
    line-height: 0;
  }

  main .side .side-ariticle ul li .txt {
    text-align: left;
    width: 10px;
    -ms-flex: 1 0 auto;
    -webkit-flex-grow: 1;
    flex-grow: 1;
  }

  main .article-list {
    margin-left: -1%;
    margin-right: -1%;
    margin-bottom: -2%;
    max-width: 630px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  main .article-list li {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    width: 48%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 2%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }

  main .article-list li .hover-img a .bg {
    height: 180px;
  }

  main .article-list li .txt-block {
    padding: 10px;
  }

  main .article-list li .txt-block .title {
    white-space: normal;
    font-size: 16px;
    font-size: 1.1428571429rem;
    line-height: 1.5;
    padding-bottom: 10px;
  }

  main .article-list li.slick-slide {
    margin: 0 5px;
  }

  main .article-list li.slick-slide .txt-block {
    -webkit-border-radius: 0 0 8px 8px;
    -moz-border-radius: 0 0 8px 8px;
    -ms-border-radius: 0 0 8px 8px;
    -o-border-radius: 0 0 8px 8px;
    border-radius: 0 0 8px 8px;
  }

  main .article-list.sp-slides {
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 30px;
    width: calc(100% + 40px);
  }

  main .article-list.sp-slides .slick-dots {
    bottom: -15px;
    left: 0;
    width: 100vw;
  }

  main .article-list.sp-slides .slick-dots li {
    height: 10px;
    width: 10px;
    margin: 0 3px;
  }

  main .article-list.sp-slides .slick-dots li.slick-active button {
    background-color: #ffa73a;
  }

  main .article-list.sp-slides .slick-dots li button {
    width: 10px;
    height: 10px;
  }

  main .article-list.sp-slides .slick-prev,
  main .article-list.sp-slides .slick-next {
    width: 40px;
    height: 30px;
    z-index: 10;
    margin-top: 24px;
  }

  main .article-list.sp-slides .slick-prev:before,
  main .article-list.sp-slides .slick-next:before {
    display: block;
    content: "";
    background: url(../img/arrow.svg) no-repeat center/contain;
    width: 40px;
    height: 30px;
  }

  main .article-list.sp-slides .slick-prev {
    left: 0;
  }

  main .article-list.sp-slides .slick-prev:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
  }

  main .article-list.sp-slides .slick-next {
    right: 0;
  }

  main .article-list.recipe li {
    position: relative;
  }

  main .article-list.recipe li .meyasu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }

  main .article-list.recipe li .txt-block {
    padding-bottom: 50px;
    position: relative;
  }

  main .article-list.recipe li .txt-block a {
    color: #ffa73a;
  }

  main .article-list.recipe li .time {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    color: #ffa73a;
    font-weight: bold;
  }

  main .article-list.recipe li .time .item-meyasu {
    padding-left: 17px;
    position: relative;
  }

  main .article-list.recipe li .time .item-meyasu:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 9px;
    height: 15px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/icon-meyasu.svg) no-repeat center center;
  }

  main .article-list.brown {
    max-width: none;
  }

  main .article-list.brown li {
    margin-bottom: 2%;
  }

  main .article-list.brown li .hover-img a .bg {
    height: 100px;
  }

  main .article-list.column3 {
    margin-left: -1%;
    margin-right: -1%;
    padding-bottom: 12px;
  }

  main .article-list.column3 li {
    width: 31.333%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 30px;
  }

  main .article-list.column3 li .hover-img a .bg {
    height: 97px;
  }

  main .article-list.column3 li .txt-block {
    padding: 10px 10px 10px;
  }

  main .article-list.column3 li .txt-block .title {
    font-size: 15px;
    font-size: 1.0714285714rem;
    padding-bottom: 5px;
    line-height: 1.2;
  }

  main .article-list.column3 li .txt-block .txt {
    font-size: 13px;
    font-size: 0.9285714286rem;
  }
}

@media screen and (max-width: 767px) and (max-width: 500px) {
  main .article-list.column3 li {
    width: 100%;
    margin-bottom: 20px;
  }

  main .article-list.column3 li .hover-img a .bg {
    height: 120px;
  }

  main .article-list.column3 li .hover-img a .bg img {
    margin-top: -10px;
    height: auto;
  }

  main .article-list.column3 li .txt-block {
    padding: 10px 10px 10px;
  }

  main .article-list.column3 li .txt-block .title {
    font-size: 15px;
    font-size: 1.0714285714rem;
    padding-bottom: 5px;
    line-height: 1.2;
  }

  main .article-list.column3 li .txt-block .txt {
    font-size: 13px;
    font-size: 0.9285714286rem;
  }
}

@media screen and (max-width: 767px) {

  main .pager a.link_before,
  main .pager a.link_next {
    font-size: 13px;
    font-size: 0.9285714286rem;
    position: relative;
    width: 90px;
    line-height: 30px;
  }

  main .pager a.link_before:before,
  main .pager a.link_next:before {
    content: "";
    display: block;
    position: absolute;
    left: auto;
    top: 50%;
    width: 8px;
    height: 13px;
  }

  main .pager a.link_before {
    margin-right: 2.5px;
    padding-left: 2.5px;
  }

  main .pager a.link_before:before {
    left: 10px;
  }

  main .pager a.link_next {
    margin-left: 5px;
    padding-right: 5px;
  }

  main .pager a.link_next:before {
    right: 10px;
  }

  main .pager a.link_page {
    line-height: 30px;
    width: 34px;
    -webkit-border-radius: 50% 50% 50% 50%;
    -moz-border-radius: 50% 50% 50% 50%;
    -ms-border-radius: 50% 50% 50% 50%;
    -o-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
    font-size: 13px;
    font-size: 0.9285714286rem;
    font-weight: bold;
    margin: 0 5px;
  }

  main .pager a:hover {
    text-decoration: none;
  }

  main .pager a:hover.link_before:before {
    left: 28px;
  }

  main .pager a:hover.link_next:before {
    right: 28px;
  }

  main .pager .current_page {
    margin: 0 2.5px;
    line-height: 34px;
    width: 34px;
    font-size: 13px;
    font-size: 0.9285714286rem;
  }
}

@media screen and (max-width: 767px) and (max-width: 360px) {

  main .pager a.link_before,
  main .pager a.link_next {
    font-size: 12px;
    font-size: 0.8571428571rem;
    width: 80px;
    line-height: 28px;
  }

  main .pager a.link_before {
    margin-right: 2px;
    padding-left: 2px;
  }

  main .pager a.link_before:before {
    left: 5px;
  }

  main .pager a.link_next {
    margin-left: 2px;
    padding-right: 5px;
  }

  main .pager a.link_next:before {
    right: 5px;
  }

  main .pager a.link_page {
    margin: 0 2px;
    line-height: 28px;
    width: 32px;
    font-size: 12px;
    font-size: 0.8571428571rem;
  }

  main .pager a:hover {
    text-decoration: none;
  }

  main .pager a:hover.link_before:before {
    left: 28px;
  }

  main .pager a:hover.link_next:before {
    right: 28px;
  }

  main .pager .current_page {
    margin: 0 2px;
    line-height: 32px;
    width: 32px;
    font-size: 13px;
    font-size: 0.9285714286rem;
  }
}

@media screen and (max-width: 767px) {
  main .breadcrumb {
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }

  main .breadcrumb ul {
    padding: 10px 0;
  }

  main .breadcrumb ul li {
    font-size: 12px;
    font-size: 0.8571428571rem;
  }

  main .w-txt-block {
    padding: 20px 20px;
    margin-bottom: 30px;
  }

  main .w-txt-block .img {
    width: 100%;
  }

  main .w-txt-block .img.fr {
    margin-left: 0px;
    float: inherit;
    padding-top: 0px;
    text-align: center;
  }

  main .w-txt-block p {
    line-height: 1.7;
  }

  main .w-txt-block.p30 {
    padding: 20px 10px;
  }

  main .w-txt-block.last {
    margin-bottom: 40px;
  }

  main .w-txt-block.menu-block .title-block .icon-title {
    font-size: 17px;
    font-size: 1.2142857143rem;
    line-height: 1.2;
    padding-bottom: 18px;
  }

  main .w-txt-block.menu-block .title-block .icon-title.france {
    padding-left: 35px;
  }

  main .w-txt-block.menu-block .title-block .icon-title.france:before {
    background-size: 28px auto;
    width: 28px;
    left: 0px;
  }

  main .w-txt-block.menu-block .menu-list {
    margin-left: -1%;
    margin-right: -1%;
    margin-bottom: -20px;
  }

  main .w-txt-block.menu-block .menu-list li {
    width: 48%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 20px;
  }

  main .w-txt-block.menu-block .menu-list li .title {
    padding: 6px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    font-size: 13px;
    font-size: 0.9285714286rem;
    margin-bottom: 5px;
  }

  main .w-txt-block.menu-block .menu-list li .title.sp-h40 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    height: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }

  main .w-txt-block.menu-block .menu-list li .img {
    text-align: center;
  }

  main .w-txt-block.orange .menu-list {
    padding-bottom: 20px;
  }

  main .w-txt-block.orange .menu-list li .title {
    background-color: #ffd373;
  }

  main .w-txt-block.orange .column2-block .title {
    font-size: 13px;
    font-size: 0.9285714286rem;
  }

  main .w-txt-block.orange .column2-block .img {
    width: 100%;
    margin-right: 0px;
    text-align: center;
  }

  main .w-txt-block.orange .column2-block .txt {
    width: 100%;
    line-height: 1.5;
  }

  main .w-txt-block.manner {
    padding: 15px;
  }

  main .w-txt-block.manner .manner-block:not(:last-child) {
    padding-bottom: 20px;
  }

  main .w-txt-block.manner .manner-block .title2 {
    font-size: 16px;
    font-size: 1.1428571429rem;
    font-weight: bold;
    line-height: 1.2;
  }

  main .w-txt-block.manner .manner-block .txt {
    padding-bottom: 13px;
  }

  main .w-txt-block.manner .manner-block p {
    line-height: 1.5;
  }

  main .w-txt-block.manner .manner-block .img {
    width: 270px;
    margin: 0 auto;
  }

  main .w-txt-block.manner .manner-block.block2 .img {
    margin-left: auto;
  }

  main .linkset-box {
    padding: 20px;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }

  main .linkset-box .title {
    margin-right: 0px;
    width: 180px;
    padding-bottom: 10px;
  }

  main .linkset-box .linkset-list {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-left: -1%;
    margin-right: -1%;
  }

  main .linkset-box .linkset-list li {
    margin-bottom: 12px;
    line-height: 0;
    max-width: 128px;
    width: 48%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 2%;
  }

  main .phase {
    padding-top: 80px;
    margin-top: -80px;
  }

  main .phase:not(:last-of-type) {
    padding-bottom: 30px;
  }

  main .shou-box {
    padding: 15px 20px 20px;
  }

  main .shou-box.mb40 {
    margin-bottom: 40px;
  }

  main .shou-box:before {
    height: 70px;
  }

  main .shou-box .item-title {
    font-size: 18px;
    font-size: 1.2857142857rem;
    font-weight: bold;
    padding-bottom: 40px;
  }

  main .column-box {
    padding-left: 20px;
    padding-right: 20px;
  }

  main .column-box .title {
    margin-top: -50px;
    padding-bottom: 20px;
  }

  main .column-box .img-txt {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  main .column-box .img-txt .txt {
    width: 100%;
    padding-bottom: 20px;
  }

  main .column-box .img-txt .img {
    line-height: 0;
    width: 150px;
    margin-left: 0px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 450px) {

  /* main
------------------------------------------------------------*/
  main .article-list {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 10px;
  }

  main .article-list li {
    margin-bottom: 20px;
  }

  main .article-list li .txt-block {
    padding: 10px;
  }

  main .article-list.recipe li {
    position: relative;
  }

  main .article-list.recipe li .meyasu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }

  main .article-list.recipe li .txt-block {
    padding-bottom: 50px;
    position: relative;
  }

  main .article-list.recipe li .txt-block a {
    color: #ffa73a;
  }

  main .article-list.recipe li .time {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    color: #ffa73a;
    font-weight: bold;
  }

  main .article-list.recipe li .time .item-meyasu {
    padding-left: 17px;
    position: relative;
  }

  main .article-list.recipe li .time .item-meyasu:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 9px;
    height: 15px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/icon-meyasu.svg) no-repeat center center;
  }
}

/* padding & margin */
.pd {
  padding: 25px;
}

.mg {
  margin: 25px;
}

.nomb {
  margin-bottom: 0 !important;
}

.nomt {
  margin-top: 0 !important;
}

.nopt {
  padding-top: 0 !important;
}

.nopb {
  padding-bottom: 0 !important;
}

.pt {
  padding-top: 25px;
}

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt15 {
  padding-top: 15px;
}

.pt20 {
  padding-top: 20px;
}

.pt25 {
  padding-top: 25px;
}

.pt30 {
  padding-top: 30px;
}

.pt35 {
  padding-top: 35px;
}

.pt40 {
  padding-top: 40px;
}

.pt45 {
  padding-top: 45px;
}

.pt50 {
  padding-top: 50px;
}

.pt60 {
  padding-top: 60px;
}

.pt70 {
  padding-top: 70px;
}

.pt80 {
  padding-top: 80px;
}

.pt90 {
  padding-top: 90px;
}

.pt100 {
  padding-top: 100px;
}

.pb {
  padding-bottom: 25px;
}

.pb5 {
  padding-bottom: 5px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb15 {
  padding-bottom: 15px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb25 {
  padding-bottom: 25px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb35 {
  padding-bottom: 35px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb45 {
  padding-bottom: 45px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb70 {
  padding-bottom: 70px;
}

.pb80 {
  padding-bottom: 80px;
}

.pb90 {
  padding-bottom: 90px;
}

.pb100 {
  padding-bottom: 100px;
}

.mt {
  margin-top: 25px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mb {
  margin-bottom: 25px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb100 {
  margin-bottom: 100px;
}

.pl {
  padding-left: 25px;
}

.pl-a {
  padding-left: auto;
}

.pl5 {
  padding-left: 5px;
}

.pl10 {
  padding-left: 10px;
}

.pl15 {
  padding-left: 15px;
}

.pl20 {
  padding-left: 20px;
}

.pl25 {
  padding-left: 25px;
}

.pr {
  padding-right: 25px;
}

.pr-a {
  padding-right: auto;
}

.pr5 {
  padding-right: 5px;
}

.pr10 {
  padding-right: 10px;
}

.pr15 {
  padding-right: 15px;
}

.pr20 {
  padding-right: 20px;
}

.pr25 {
  padding-right: 25px;
}

.ml {
  margin-left: 25px;
}

.ml-a {
  margin-left: auto;
}

.ml5 {
  margin-left: 5px;
}

.ml10 {
  margin-left: 10px;
}

.ml15 {
  margin-left: 15px;
}

.ml20 {
  margin-left: 20px;
}

.ml25 {
  margin-left: 25px;
}

.mr {
  margin-right: 25px;
}

.mr-a {
  margin-right: auto;
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr15 {
  margin-right: 15px;
}

.mr20 {
  margin-right: 20px;
}

.mr25 {
  margin-right: 25px;
}

@media screen and (max-width: 767px) {
  .pd {
    padding: 16.6666666667px;
  }

  .mg {
    margin: 16.6666666667px;
  }

  .pt {
    padding-top: 16.6666666667px;
  }

  .pt5 {
    padding-top: 3px;
  }

  .pt10 {
    padding-top: 6px;
  }

  .pt15 {
    padding-top: 9px;
  }

  .pt20 {
    padding-top: 12px;
  }

  .pt25 {
    padding-top: 15px;
  }

  .pt30 {
    padding-top: 18px;
  }

  .pt35 {
    padding-top: 21px;
  }

  .pt40 {
    padding-top: 24px;
  }

  .pt45 {
    padding-top: 27px;
  }

  .pt50 {
    padding-top: 30px;
  }

  .pt60 {
    padding-top: 36px;
  }

  .pt70 {
    padding-top: 42px;
  }

  .pt80 {
    padding-top: 48px;
  }

  .pt90 {
    padding-top: 54px;
  }

  .pt100 {
    padding-top: 60px;
  }

  .pb {
    padding-bottom: 16.6666666667px;
  }

  .pb5 {
    padding-bottom: 3px;
  }

  .pb10 {
    padding-bottom: 6px;
  }

  .pb15 {
    padding-bottom: 9px;
  }

  .pb20 {
    padding-bottom: 12px;
  }

  .pb25 {
    padding-bottom: 15px;
  }

  .pb30 {
    padding-bottom: 18px;
  }

  .pb35 {
    padding-bottom: 21px;
  }

  .pb40 {
    padding-bottom: 24px;
  }

  .pb45 {
    padding-bottom: 27px;
  }

  .pb50 {
    padding-bottom: 30px;
  }

  .pb60 {
    padding-bottom: 36px;
  }

  .pb70 {
    padding-bottom: 42px;
  }

  .pb80 {
    padding-bottom: 48px;
  }

  .pb90 {
    padding-bottom: 54px;
  }

  .pb100 {
    padding-bottom: 60px;
  }

  .mt {
    margin-top: 16.6666666667px;
  }

  .mt5 {
    margin-top: 3px;
  }

  .mt10 {
    margin-top: 6px;
  }

  .mt15 {
    margin-top: 9px;
  }

  .mt20 {
    margin-top: 12px;
  }

  .mt25 {
    margin-top: 15px;
  }

  .mt30 {
    margin-top: 18px;
  }

  .mt35 {
    margin-top: 21px;
  }

  .mt40 {
    margin-top: 24px;
  }

  .mt45 {
    margin-top: 27px;
  }

  .mt50 {
    margin-top: 30px;
  }

  .mt60 {
    margin-top: 36px;
  }

  .mt70 {
    margin-top: 42px;
  }

  .mt80 {
    margin-top: 48px;
  }

  .mt90 {
    margin-top: 54px;
  }

  .mt100 {
    margin-top: 60px;
  }

  .mb {
    margin-bottom: 16.6666666667px;
  }

  .mb5 {
    margin-bottom: 3px;
  }

  .mb10 {
    margin-bottom: 6px;
  }

  .mb15 {
    margin-bottom: 9px;
  }

  .mb20 {
    margin-bottom: 12px;
  }

  .mb25 {
    margin-bottom: 15px;
  }

  .mb30 {
    margin-bottom: 18px;
  }

  .mb35 {
    margin-bottom: 21px;
  }

  .mb40 {
    margin-bottom: 24px;
  }

  .mb45 {
    margin-bottom: 27px;
  }

  .mb50 {
    margin-bottom: 30px;
  }

  .mb60 {
    margin-bottom: 36px;
  }

  .mb70 {
    margin-bottom: 42px;
  }

  .mb80 {
    margin-bottom: 48px;
  }

  .mb90 {
    margin-bottom: 54px;
  }

  .mb100 {
    margin-bottom: 60px;
  }

  .pl {
    padding-left: 16.6666666667px;
  }

  .pl5 {
    padding-left: 3px;
  }

  .pl10 {
    padding-left: 6px;
  }

  .pl15 {
    padding-left: 9px;
  }

  .pl20 {
    padding-left: 12px;
  }

  .pl25 {
    padding-left: 15px;
  }

  .pr {
    padding-right: 16.6666666667px;
  }

  .pr5 {
    padding-right: 3px;
  }

  .pr10 {
    padding-right: 6px;
  }

  .pr15 {
    padding-right: 9px;
  }

  .pr20 {
    padding-right: 12px;
  }

  .pr25 {
    padding-right: 15px;
  }

  .ml {
    margin-left: 16.6666666667px;
  }

  .ml5 {
    margin-left: 3px;
  }

  .ml10 {
    margin-left: 6px;
  }

  .ml15 {
    margin-left: 9px;
  }

  .ml20 {
    margin-left: 12px;
  }

  .ml25 {
    margin-left: 15px;
  }

  .mr {
    margin-right: 16.6666666667px;
  }

  .mr5 {
    margin-right: 3px;
  }

  .mr10 {
    margin-right: 6px;
  }

  .mr15 {
    margin-right: 9px;
  }

  .mr20 {
    margin-right: 12px;
  }

  .mr25 {
    margin-right: 15px;
  }
}

/* padding & margin */
/* etc */
.lh0 {
  line-height: 0;
}

.w10 {
  width: 10px;
}

.w20 {
  width: 20px;
}

.w30 {
  width: 30px;
}

.w40 {
  width: 40px;
}

.w50 {
  width: 50px;
}

.w60 {
  width: 60px;
}

.w70 {
  width: 70px;
}

.w80 {
  width: 80px;
}

.w90 {
  width: 90px;
}

.w100 {
  width: 100px;
}

.w150 {
  width: 150px;
}

.w200 {
  width: 200px;
}

.w250 {
  width: 250px;
}

.w300 {
  width: 300px;
}

.w350 {
  width: 350px;
}

.w400 {
  width: 400px;
}

.w450 {
  width: 450px;
}

.w500 {
  width: 500px;
}

.w10p {
  width: 10%;
}

.w20p {
  width: 20%;
}

.w30p {
  width: 30%;
}

.w40p {
  width: 40%;
}

.w50p {
  width: 50%;
}

.w60p {
  width: 60%;
}

.w70p {
  width: 70%;
}

.w80p {
  width: 80%;
}

.w90p {
  width: 90%;
}

.w100p {
  width: 100%;
}

/* etc */
/* btn */
.btn {
  text-align: center;
}

.btn a,
.btn input,
.btn span {
  display: -moz-inline-box;
  display: inline-block;
  cursor: pointer;
  outline: none;
  max-width: 100%;
  line-height: 50px;
  padding-left: 10px;
  padding-right: 10px;
  background: #91c0a9;
  font-size: 20px;
  font-size: 1.4285714286rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  width: 300px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  border: none;
  color: #FFF;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -webkit-box-shadow: 0 4px 0 0px #d9d9d9;
  -moz-box-shadow: 0 4px 0 0px #d9d9d9;
  -ms-box-shadow: 0 4px 0 0px #d9d9d9;
  -o-box-shadow: 0 4px 0 0px #d9d9d9;
  box-shadow: 0 4px 0 0px #d9d9d9;
  top: 0;
}

.btn a:hover,
.btn input:hover,
.btn span:hover {
  text-decoration: none;
  background-color: #a1c9b6;
}

.btn a:active,
.btn input:active,
.btn span:active {
  top: 2px;
  -webkit-box-shadow: 0 2px 0 0px #d9d9d9;
  -moz-box-shadow: 0 2px 0 0px #d9d9d9;
  -ms-box-shadow: 0 2px 0 0px #d9d9d9;
  -o-box-shadow: 0 2px 0 0px #d9d9d9;
  box-shadow: 0 2px 0 0px #d9d9d9;
}

.btn a.gray,
.btn input.gray,
.btn span.gray {
  background-color: #adadad;
}

.btn.tac a,
.btn.tac input,
.btn.tac span {
  margin-left: auto;
  margin-right: auto;
}

.btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0 -10px -15px;
}

.btn-area>* {
  margin: 0 10px 15px;
}

@media screen and (max-width: 767px) {
  .btn-area {
    margin-left: -5px;
    margin-right: -5px;
  }

  .btn-area>* {
    margin-left: 5px;
    margin-right: 5px;
  }
}

.btn2 {
  text-align: center;
}

.btn2 input,
.btn2 a {
  top: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

.btn2 input:active,
.btn2 a:active {
  top: 2px;
}

@media screen and (min-width: 768px) and (max-width: 980px) {
  .btn2 img {
    height: 45px;
    width: auto;
  }
}

/* btn */
/* form */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
  -webkit-appearance: none;
  height: 40px;
  line-height: 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #b3b3b3;
  font-size: 14px;
  font-size: 1rem;
  position: relative;
  padding-left: 10px;
  background: #FFF;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus {
  background-color: #FFF;
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  -ms-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  -o-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
}

input[type="text"].lg,
input[type="email"].lg,
input[type="tel"].lg,
input[type="password"].lg {
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  font-size: 1.2857142857rem;
}

textarea {
  -webkit-appearance: none;
  height: 250px;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  resize: vertical;
  border: 1px solid #b3b3b3;
  background: #FFF;
  font-size: 14px;
  font-size: 1rem;
  padding: 10px;
}

textarea:focus {
  background-color: #FFF;
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  -ms-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  -o-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
}

textarea.h100 {
  height: 100px;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:checked+.checkbox:after {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=100);
  opacity: 1;
  visibility: visible;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}

input[type="radio"] {
  display: none;
}

input[type="radio"]:checked+.radio:after {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=100);
  opacity: 1;
  visibility: visible;
}

label.checkbox {
  padding-left: 30px;
  min-height: 20px;
  cursor: pointer;
  margin: 0;
  display: -moz-inline-box;
  display: inline-block;
  font-weight: normal;
  position: relative;
}

label.checkbox.single {
  width: 20px;
  padding-left: 0;
}

label.checkbox:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -11px;
  display: -moz-inline-box;
  display: inline-block;
  width: 21px;
  height: 21px;
  background-color: #FFF;
  border: 1px solid #b3b3b3;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

label.checkbox:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 8px;
  margin-top: -7px;
  display: block;
  width: 5px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  -webkit-transform: rotate(60deg);
  -moz-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  -o-transform: rotate(60deg);
  transform: rotate(60deg);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
  z-index: 1;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

label.radio {
  padding-left: 30px;
  min-height: 24px;
  cursor: pointer;
  margin: 0;
  display: -moz-inline-box;
  display: inline-block;
  font-weight: normal;
  position: relative;
}

label.radio.single {
  width: 20px;
  padding-left: 0;
}

label.radio:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -12px;
  display: -moz-inline-box;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #b3b3b3;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #FFF;
  -webkit-border-radius: 50% 50% 50% 50%;
  -moz-border-radius: 50% 50% 50% 50%;
  -ms-border-radius: 50% 50% 50% 50%;
  -o-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
}

label.radio:after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -8px;
  left: 4px;
  display: block;
  width: 12px;
  height: 12px;
  background-color: #b3b3b3;
  -webkit-border-radius: 50% 50% 50% 50%;
  -moz-border-radius: 50% 50% 50% 50%;
  -ms-border-radius: 50% 50% 50% 50%;
  -o-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.check-radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-bottom: -5px;
}

.check-radios li {
  margin: 0 15px 5px 0;
}

label.select {
  position: relative;
  display: block;
  background-color: #FFF;
}

label.select:before {
  position: absolute;
  content: "";
  display: block;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #b3b3b3 transparent transparent transparent;
  right: 10px;
  top: 50%;
  margin-top: -3px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 40px;
  width: 100%;
  line-height: 40px;
  max-width: 100%;
  padding: 0 40px 0 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #b3b3b3;
  outline: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-size: 1rem;
  font-weight: normal;
  position: relative;
}

select option {
  padding: 8px;
  border: none;
}

select.lg {
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  font-size: 1.2857142857rem;
}

/* form */
/* table */
table {
  width: 100%;
  background-color: #FFF;
}

table th,
table td {
  padding: 15px;
  border: 1px solid #b3b3b3;
  vertical-align: middle;
}

table th {
  background-color: #f2f2f2;
  font-weight: bold;
}

table thead th {
  background-color: #b3b3b3;
  color: #FFF;
}

/* table */
/* text */
.heading {
  margin-bottom: 20px;
}

.heading-lv01 {
  text-align: center;
  padding-bottom: 22px;
  font-size: 24px;
  font-size: 1.7142857143rem;
  position: relative;
}

.heading-lv01 .flag-l {
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 767px) {
  .heading-lv01 .flag-l {
    width: 160px;
    top: -10px;
    overflow: hidden;
  }

  .heading-lv01 .flag-l img {
    width: 200px;
    height: auto;
    margin-left: -60px;
  }
}

.heading-lv01 .flag-r {
  position: absolute;
  right: 0;
  top: 0;
}

@media screen and (max-width: 767px) {
  .heading-lv01 .flag-r {
    width: 160px;
    top: -10px;
    overflow: hidden;
  }

  .heading-lv01 .flag-r img {
    width: 200px;
    height: auto;
    margin-right: -60px;
  }
}

.heading-lv01 .t-inner {
  display: -moz-inline-box;
  display: inline-block;
  position: relative;
  z-index: 10;
  padding-top: 80px;
}

.heading-lv01 .t-inner .fukidashi {
  position: absolute;
  top: 0;
  left: -150px;
}

.heading-lv01 .t-inner .chara-01 {
  position: absolute;
  right: -140px;
  bottom: -0px;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=100);
  opacity: 1;
}

.heading-lv01 .t-inner .illust-01 {
  position: absolute;
  left: -140px;
  bottom: -12px;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=100);
  opacity: 1;
}

.heading-lv01 .t-inner .illust-02 {
  position: absolute;
  right: -200px;
  top: -0px;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=100);
  opacity: 1;
}

.heading-lv01:before,
.heading-lv01:after {
  content: "";
  display: block;
  position: absolute;
  left: auto;
  top: 0;
  width: 393px;
  height: 160px;
  background: no-repeat center center;
  z-index: 1;
}

.heading-lv01:before {
  left: 0;
}

.heading-lv01:after {
  right: 0;
}

@media screen and (max-width: 767px) {
  .heading-lv01 {
    padding-bottom: 5px;
  }

  .heading-lv01 .t-inner {
    padding-top: 0px;
  }

  .heading-lv01 .t-inner img.sp {
    padding-right: 30px;
  }

  .heading-lv01:before,
  .heading-lv01:after {
    width: 150px;
    height: 70px;
  }

  .heading-lv01:before {
    display: none;
  }

  .heading-lv01:after {
    background-size: 200px auto;
    background-position: 10px -10px;
  }

  .heading-lv01.deco:before {
    display: none;
  }

  .heading-lv01.deco:after {
    background-size: 200px auto;
    background-position: 10px -10px;
  }
}

.heading-lv02 {
  text-align: center;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-size: 32px;
  font-size: 2.2857142857rem;
  line-height: 1.2;
  text-align: left;
  color: #82503c;
  background-color: #fdf8ee;
  position: relative;
}

.heading-lv02:before {
  right: 10px;
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
  left: auto;
  top: auto;
  width: 116px;
  height: 95px;
  background: url(../../common/img/bg-hd.png) no-repeat center center;
}

.heading-lv02 span {
  padding: 35px 20px;
  display: block;
  position: relative;
}

.heading-lv02 span .date {
  font-size: 16px;
  font-size: 1.1428571429rem;
  line-height: 1.2;
  font-weight: bold;
  display: block;
  line-height: 1.2;
  padding-bottom: 3px;
}

.heading-lv02 span:before,
.heading-lv02 span:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 9px;
}

.heading-lv02 span:before {
  background: url(../../common/img/bg-line_01.png) repeat-x;
}

@media screen and (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 2dppx) {
  .heading-lv02 span:before {
    background-image: url(../../common/img/bg-line_01@2x.png);
    background-size: auto 9px;
  }
}

.heading-lv02 span:after {
  top: auto;
  bottom: 0;
  background: url(../../common/img/bg-line_02.png) repeat-x;
}

@media screen and (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 2dppx) {
  .heading-lv02 span:after {
    background-image: url(../../common/img/bg-line_02@2x.png);
    background-size: auto 9px;
  }
}

.heading-lv02.data:before {
  right: 0px;
  width: 320px;
  height: 130px;
  background-image: url(../../common/img/bg-hd-data.png);
  background-position: right top;
}

@media screen and (max-width: 767px) {
  .heading-lv02 {
    font-size: 22px;
    font-size: 1.5714285714rem;
  }

  .heading-lv02:before {
    top: 0;
    height: 74px;
    background-size: auto 64px;
    right: 0;
    background-position: right bottom;
  }

  .heading-lv02 span {
    padding: 25px;
  }

  .heading-lv02 span:before,
  .heading-lv02 span:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 9px;
  }

  .heading-lv02 span:after {
    top: auto;
    bottom: 0;
  }

  .heading-lv02.data:before {
    top: 0;
    height: 94px;
    background-size: auto 94px;
    right: 0;
    background-position: right bottom;
  }
}

.heading-lv03 {
  padding: 8px 10px 8px 62px;
  line-height: 1.2;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-weight: bold;
  color: #82503c;
  font-size: 26px;
  font-size: 1.8571428571rem;
  line-height: 1.2;
  border: dashed 1px #82503c;
  -webkit-border-radius: 27px;
  -moz-border-radius: 27px;
  -ms-border-radius: 27px;
  -o-border-radius: 27px;
  border-radius: 27px;
  position: relative;
  margin-bottom: 20px;
}

.heading-lv03:before {
  content: "";
  display: block;
  position: absolute;
  left: 15px;
  top: 50%;
  width: 42px;
  height: 29px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../../common/img/icon-hd-title_shou.png) no-repeat center center;
}

@media screen and (max-width: 767px) {
  .heading-lv03 {
    font-size: 18px;
    font-size: 1.2857142857rem;
    padding: 8px 18px 8px 58px;
  }

  .heading-lv03:before {
    background-size: 35px auto;
  }
}

.heading-lv04 {
  font-size: 30px;
  font-size: 2.1428571429rem;
  color: #82503c;
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .heading-lv04 {
    font-size: 22px;
    font-size: 1.5714285714rem;
    margin-bottom: 30px;
  }
}

.heading-lv05 {
  font-size: 20px;
  font-size: 1.4285714286rem;
  color: #82503c;
  margin-bottom: 15px;
  line-height: 1.2;
  /* @include mq(sp){
        @include rem(22);
        margin-bottom: 30px;
      } */
}

@media screen and (max-width: 767px) {
  .heading-lv05 {
    font-size: 17px;
    font-size: 1.2142857143rem;
  }
}

.heading-lv06 {
  font-size: 16px;
  font-size: 1.1428571429rem;
  font-weight: bold;
  line-height: 1.2;
  padding: 5px 10px;
  color: #82503c;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  border-radius: 18px;
  margin-bottom: 15px;
  background-color: #fdf8ee;
}

.fs11 {
  font-size: 11px;
  font-size: 0.7857142857rem;
}

.fs12 {
  font-size: 12px;
  font-size: 0.8571428571rem;
}

.fs13 {
  font-size: 13px;
  font-size: 0.9285714286rem;
}

.fs14 {
  font-size: 14px;
  font-size: 1rem;
}

.fs15 {
  font-size: 15px;
  font-size: 1.0714285714rem;
}

.fs16 {
  font-size: 16px;
  font-size: 1.1428571429rem;
}

.fs17 {
  font-size: 17px;
  font-size: 1.2142857143rem;
}

.fs18 {
  font-size: 18px;
  font-size: 1.2857142857rem;
}

.fs19 {
  font-size: 19px;
  font-size: 1.3571428571rem;
}

.fs20 {
  font-size: 20px;
  font-size: 1.4285714286rem;
}

.fs21 {
  font-size: 21px;
  font-size: 1.5rem;
}

.fs22 {
  font-size: 22px;
  font-size: 1.5714285714rem;
}

.fs23 {
  font-size: 23px;
  font-size: 1.6428571429rem;
}

.fs24 {
  font-size: 24px;
  font-size: 1.7142857143rem;
}

.fs25 {
  font-size: 25px;
  font-size: 1.7857142857rem;
}

.fs26 {
  font-size: 26px;
  font-size: 1.8571428571rem;
}

.fs27 {
  font-size: 27px;
  font-size: 1.9285714286rem;
}

.fs28 {
  font-size: 28px;
  font-size: 2rem;
}

.fs29 {
  font-size: 29px;
  font-size: 2.0714285714rem;
}

.fs30 {
  font-size: 30px;
  font-size: 2.1428571429rem;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

/* text */
.post {
  /* h1{
  @include remb(27);
  color: $black;
  line-height: 1.3;
  @include ls(0.1);
  margin-top: $margin;
  margin-bottom: $margin / 2;
  border-left: 3px solid $green;
  padding: 5px 0 5px 15px;
} */
}

.post ul {
  margin-bottom: 25px;
}

.post ul:last-child {
  margin-bottom: 0;
}

.post ul li {
  list-style-type: none;
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.post ul li:before {
  content: "\0030fb";
}

.post ul li:last-child {
  padding-bottom: 0;
}

.post ol {
  padding-bottom: 25px;
  padding-left: 1.5em;
}

.post ol:last-child {
  padding-bottom: 0;
}

.post ol li {
  list-style-type: decimal;
  padding-bottom: 5px;
}

.post ol li:last-child {
  padding-bottom: 0;
}

.post strong {
  font-weight: bold;
}

.post em {
  font-style: italic;
}

.post del {
  text-decoration: line-through;
  color: #f2f2f2;
}

.post blockquote {
  display: block;
  padding: 20px;
  -webkit-border-radius: 6px 6px 6px 6px;
  -moz-border-radius: 6px 6px 6px 6px;
  -ms-border-radius: 6px 6px 6px 6px;
  -o-border-radius: 6px 6px 6px 6px;
  border-radius: 6px 6px 6px 6px;
  border: 2px solid #b3b3b3;
  margin-bottom: 25px;
  text-align: center;
}

.post blockquote p {
  text-indent: 0;
  padding-bottom: 15px;
}

.post blockquote p:last-child {
  padding-bottom: 0;
}

.post>*:first-child {
  margin-top: 0;
}

.post>*:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.post h2 {
  font-size: 26px;
  font-size: 1.8571428571rem;
  font-weight: bold;
  color: #82503c;
  line-height: 1.3;
  margin-bottom: 20px;
  padding: 15px 0;
  padding-bottom: 15px !important;
  border-top: dashed 1px #82503c;
  border-bottom: dashed 1px #82503c;
}

.post h3 {
  font-size: 21px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  line-height: 1.3;
  letter-spacing: 0.1em;
  margin-top: 25px;
  margin-bottom: 12.5px;
  padding: 15px;
  background-color: #f2f2f2;
  -webkit-border-radius: 2px 2px 2px 2px;
  -moz-border-radius: 2px 2px 2px 2px;
  -ms-border-radius: 2px 2px 2px 2px;
  -o-border-radius: 2px 2px 2px 2px;
  border-radius: 2px 2px 2px 2px;
}

.post h4 {
  font-size: 19px;
  font-size: 1.3571428571rem;
  font-weight: bold;
  color: #333;
  line-height: 1.3;
  letter-spacing: 0.1em;
  margin-top: 25px;
  margin-bottom: 12.5px;
}

.post h5 {
  font-size: 17px;
  font-size: 1.2142857143rem;
  font-weight: bold;
  color: #333;
  line-height: 1.3;
  letter-spacing: 0.1em;
  margin-top: 25px;
  margin-bottom: 12.5px;
}

.post .aligncenter {
  text-align: center;
}

.post .alignleft {
  text-align: left;
}

.post .alignright {
  text-align: right;
}

.post iframe {
  max-width: 100%;
}

.post img.aligncenter {
  display: block;
  margin: 25px auto 0;
}

.post img.alignright {
  float: right;
  display: block;
  margin: 0 0 10px 15px;
}

.post img.alignleft {
  float: left;
  margin: 0 15px 10px 0;
}

.post p {
  font-size: 16px;
  font-size: 1.1428571429rem;
  padding-bottom: 25px;
  line-height: 1.75;
}

.post p:last-child {
  padding-bottom: 0;
}

.post p:first-child img.aligncenter {
  margin-top: 0;
}

.post table {
  margin-bottom: 25px;
}

.post table td p {
  padding-bottom: 15px;
  line-height: 1.5;
}

.post table td p:last-child {
  padding-bottom: 0;
}

.post cite {
  border: 1px solid #b3b3b3;
  margin-top: 15px;
  padding: 10px;
  display: -moz-inline-box;
  display: inline-block;
}

.post cite:before,
.post cite:after {
  content: "\00201d";
}

.post small {
  font-size: 12px;
}

.post .video-container {
  max-width: 640px;
  margin: 25px auto 0;
}

.post .video {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.post .video iframe,
.post .video object,
.post .video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 700px) {
  .post h2 {
    font-size: 20px;
    font-size: 1.4285714286rem;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 20px;
    padding: 10px 0;
  }

  .post p {
    padding-bottom: 20px;
  }
}

.iv {
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* floating */
@keyframes floating {
  0% {
    transform: translateY(0%);
  }

  50% {
    transform: translateY(30%);
  }

  100% {
    transform: translateY(0%);
  }
}

@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }

  50% {
    -webkit-transform: translateY(30%);
  }

  100% {
    -webkit-transform: translateY(0%);
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes flipIn {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(90deg);
    transform: rotateY(90deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }
}

@keyframes flipIn {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(90deg);
    -ms-transform: rotateY(90deg);
    transform: rotateY(90deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: rotateY(0);
    -ms-transform: rotateY(0);
    transform: rotateY(0);
  }
}

.flipIn {
  -webkit-animation-name: flipIn;
  animation-name: flipIn;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.puyon {
  animation: puyon 2.5s linear 0s 1;
  animation-iteration-count: infinite;
}

@keyframes puyon {
  0% {
    transform: translate(0%, 0%);
  }

  5% {
    transform: translate(10%, 0%) rotate(10deg);
  }

  25% {
    transform: translate(20%, 0%) rotate(20deg);
  }

  30% {
    transform: translate(-10%, 0%) rotate(-10deg);
  }

  35% {
    transform: translate(-15%, 0%) rotate(-15deg);
  }

  45% {
    transform: translate(10%, 0%) rotate(10deg);
  }

  50% {
    transform: translate(15%, 0%) rotate(15deg);
  }

  60% {
    transform: translate(-5%, 0%) rotate(-5deg);
  }

  65% {
    transform: translate(-7%, 0%) rotate(-7deg);
  }

  75% {
    transform: translate(0%, 0%) rotate(0deg);
  }

  100% {
    transform: translate(0%, 0%) rotate(0deg);
  }
}