@charset "UTF-8";
/*---------------------------------------------------------------
　　　common
---------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

.forSP {
  display: block;
}
@media screen and (min-width: 768px) {
  .forSP {
    display: none;
  }
}

.forPC {
  display: none;
}
@media screen and (min-width: 768px) {
  .forPC {
    display: block;
  }
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

body {
  background: white;
  margin: 0;
  padding: 0;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #333333;
}

#container {
  width: 100%;
  margin: auto;
  text-align: center;
  overflow: hidden;
  position: relative;
}

/*---------------------------------------------------------------
　　　header
---------------------------------------------------------------*/
header {
  width: 100%;
  padding: 10px 10px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  header {
    padding: 20px;
  }
}
header h1.logo {
  text-align: left;
  font-size: 1.4rem;
  padding: 5px 0 5px;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  display: inline-block;
  border-bottom: 3px dotted #4f8730;
  position: relative;
  box-sizing: border-box;
  margin: 0 0 0 60px;
}
@media screen and (min-width: 768px) {
  header h1.logo {
    font-size: 1.8rem;
    padding: 20px 0 5px;
    height: 60px;
  }
}
header h1.logo strong {
  color: #4f8730;
}
header h1.logo strong,
header h1.logo span {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  header h1.logo strong,
  header h1.logo span {
    font-size: 2.2rem;
  }
}
header h1.logo::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -50px;
  width: 40px;
  height: 50px;
  background: url(../img/logo.png) no-repeat bottom center/contain;
}
@media screen and (min-width: 768px) {
  header h1.logo::before {
    left: -60px;
    width: 50px;
    height: 60px;
  }
}

/* Toggle Button */
#nav-toggle {
  display: block;
  position: absolute;
  right: 12px;
  top: 14px;
  width: 34px;
  height: 36px;
  cursor: pointer;
  z-index: 99999;
}
#nav-toggle div {
  position: relative;
}
#nav-toggle div span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #ed91aa;
  left: 0;
  transition: 0.35s ease-in-out;
}
#nav-toggle div span:nth-child(1) {
  top: 0;
}
.open #nav-toggle div span:nth-child(1) {
  top: 11px;
  transform: rotate(315deg);
}
#nav-toggle div span:nth-child(2) {
  top: 11px;
}
.open #nav-toggle div span:nth-child(2) {
  width: 0;
  left: 50%;
}
#nav-toggle div span:nth-child(3) {
  top: 22px;
}
.open #nav-toggle div span:nth-child(3) {
  top: 11px;
  transform: rotate(-315deg);
}

#global-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  right: -100%;
  background: rgba(79, 135, 48, 0.95);
  opacity: 0;
  transition: all 0.3s;
  z-index: 9999;
}
#global-nav ul {
  margin: 0 auto;
  padding: 0;
  width: 90%;
  max-width: 500px;
}
#global-nav ul li {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px dotted white;
}
#global-nav ul li a {
  text-decoration: none;
  text-align: center;
  color: white;
  width: 100%;
  display: block;
  line-height: 50px;
  font-size: 2rem;
}

/* #global-nav スライドアニメーション */
.open #global-nav {
  /* #global-nav top + #mobile-head height */
  right: 0;
  opacity: 1;
}

/*---------------------------------------------------------------
    footer
---------------------------------------------------------------*/
footer {
  text-align: center;
  background: #4f8730;
  color: white;
  padding: 30px 0 100px;
  position: relative;
  z-index: 0;
}
footer copyright {
  text-align: center;
}
footer ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}
footer ul li {
  font-size: 1.4rem;
  position: relative;
  width: 100%;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  footer ul li {
    width: auto;
  }
  footer ul li:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -0.4rem;
    top: 0;
    color: white;
  }
}
footer ul li a {
  color: white;
  display: inline-block;
  padding: 0 1em;
}

.footer_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 80px;
  background: #e8a08c;
  border: 3px solid white;
  text-shadow: 0 0 10px rgba(88, 30, 78, 0.6);
  border-radius: 15px 15px 0 0;
  color: white;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  position: fixed;
  bottom: -180px;
  left: 5%;
  transition: 0.5s;
  z-index: 500;
  box-sizing: border-box;
  padding-right: 50px;
}
.footer_btn.fixed {
  bottom: -10px;
}
@media screen and (min-width: 768px) {
  .footer_btn {
    font-size: 2.4rem;
    width: 800px;
    left: calc(50% - 400px);
  }
}
.footer_btn::before {
  content: "";
  display: block;
  width: 10rem;
  height: 10rem;
  background: url(../img/footer_keizo.png) no-repeat bottom center/contain;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .footer_btn::before {
    width: 14rem;
    height: 14rem;
    margin-right: 2.1428571429%;
  }
}

.pagetop {
  position: fixed;
  bottom: -200px;
  right: 10px;
  display: block;
  width: 6rem;
  height: 6rem;
  z-index: 10;
  transform: rotate(-90deg);
}
.pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(100, 100, 100, 0.4) url(../img/icon_arrow_w.svg) no-repeat center center/30px;
  transition: all 0.3s;
}
.pagetop a:hover {
  background: rgba(100, 100, 100, 0.6) url(../img/icon_arrow_w.svg) no-repeat center center/30px;
}
.pagetop.fixed {
  bottom: 80px;
}

/*---------------------------------------------------------------
    common
---------------------------------------------------------------*/
.inner {
  width: 90%;
  max-width: 1130px;
  margin: auto;
}

p {
  text-align: left;
}

.box {
  display: flex;
  justify-content: center;
}

h2.ttl {
  font-size: 2.6rem;
  padding-bottom: 3rem;
  margin-bottom: 6rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  position: relative;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  h2.ttl {
    font-size: 4rem;
  }
}
h2.ttl::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background: #4f8730;
  position: absolute;
  bottom: 0;
  left: calc(50% - 40px);
}

.bold {
  font-weight: bold;
}

.red {
  color: #d40000;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.pdB10 {
  padding-bottom: 10px;
}

a.btn {
  display: block;
  background: #e8a08c;
  color: #fff;
  border-radius: 5rem;
  width: 80%;
  max-width: 450px;
  padding: 1em;
  text-align: center;
  margin: 2rem auto 0;
  font-size: 1.2em;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(88, 30, 78, 0.6);
  border: 3px solid white;
  transition: all 0.3s;
  position: relative;
}
a.btn:hover {
  background: #8e9136;
}
a.btn:hover::after {
  transition: all 0.3s;
  transform: translateX(1rem);
}
a.btn::after {
  content: "";
  display: block;
  width: 1rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 3rem;
  background: url(../img/btn_arrow.svg) no-repeat center center/contain;
}

/*---------------------------------------------------------------
    contents
---------------------------------------------------------------*/
#mainImage {
  width: 100%;
  margin: 0 auto;
  background: #000;
}
#mainImage video {
  width: 100%;
  display: block;
}

.catch {
  position: relative;
  padding-top: 13.3333333333%;
}
@media screen and (min-width: 768px) {
  .catch {
    padding-top: 4.2857142857%;
  }
}
.catch::before, .catch::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 100%;
}
.catch::before {
  background: url(../img/bg_sizuku.png) no-repeat top left/contain;
  max-width: 243px;
  margin: 7.4850299401% 0 0 0;
}
.catch::after {
  background: url(../img/bg_sizuku02.png) no-repeat top left/contain;
  max-width: 175px;
  margin: 38.8473053892% 0 0 84.6556886228%;
}
.catch .lead {
  margin-bottom: 13.3333333333%;
}
@media screen and (min-width: 768px) {
  .catch .lead {
    margin-bottom: 4.2857142857%;
  }
}
.catch .lead p {
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  text-align: center;
  line-height: 2;
}
.catch .lead p span {
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  .catch .lead p {
    font-size: 2.4rem;
  }
  .catch .lead p span {
    font-size: 3.4rem;
  }
}
.catch .kakeizu_catch {
  margin-bottom: 13.3333333333%;
}
@media screen and (min-width: 768px) {
  .catch .kakeizu_catch {
    margin-bottom: 4.2857142857%;
  }
}
.catch .kakeizu_catch_img {
  margin: auto;
  position: relative;
}
.catch .kakeizu_catch_img > img {
  width: 90%;
  max-width: 640px;
}
.catch .kakeizu_catch_img .caution {
  border: 3px solid #d33068;
  background: rgba(247, 222, 231, 0.8);
  padding: 1rem 2rem;
  color: #d33068;
  position: absolute;
  z-index: 10;
  width: 88%;
  top: 31.3333333333%;
  left: 6%;
}
@media screen and (min-width: 768px) {
  .catch .kakeizu_catch_img .caution {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 6rem;
    width: 59.880239521%;
    top: 40.625%;
    left: 20.0598802395%;
  }
}
@media screen and (max-width: 767px) {
  .catch .kakeizu_catch_img .caution .mark {
    width: 13.3333333333%;
    margin: auto;
  }
}
.catch .kakeizu_catch_img .caution .txt {
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .catch .kakeizu_catch_img .caution .txt {
    font-size: 2.4rem;
    margin-left: 2rem;
    text-align: left;
  }
}
.catch .movies {
  position: relative;
  background: #4f8730;
  /*&::after {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      transform: skewY(5deg);
      background: $bgColor02;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
  }*/
}
.catch .movies h2 {
  width: 100%;
  font-size: 2.6rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  position: relative;
  line-height: 1;
  color: white;
  padding-bottom: 13.3333333333%;
}
@media screen and (min-width: 768px) {
  .catch .movies h2 {
    font-size: 4rem;
    padding-bottom: 4.2857142857%;
  }
}
.catch .movies .inner {
  width: 90%;
  max-width: 1500px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 13.3333333333% 0;
}
@media screen and (min-width: 768px) {
  .catch .movies .inner {
    padding: 4.2857142857% 0;
  }
}
.catch .movies .inner h2 {
  letter-spacing: 0.2em;
}
.catch .movies .inner .movies_box {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .catch .movies .inner .movies_box {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .catch .movies .inner .movies_box.marB {
    margin-bottom: 40px;
  }
}
.catch .movies .inner .movies_box p {
  color: white;
  padding: 15px 0 0;
  text-align: left;
}
.catch .movies .inner .movies_box a img {
  transition: all 0.3s;
}
.catch .movies .inner .movies_box a:hover img {
  transform: scale(1.05);
}
.catch .movies .frame-wrapper__video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.catch .movies .frame-wrapper__video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.catch .karuta {
  background: url(../img/bg_map.png) no-repeat top right/80%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .catch .karuta {
    width: 100%;
    padding: 5.3333333333% 15px 13.3333333333%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .catch .karuta {
    padding-top: 2.8571428571%;
    padding-bottom: 4.2857142857%;
    background-position: top right -20px;
    background-size: 60%;
  }
}
.catch .karuta::before {
  content: "";
  background: url(../img/bg_kamon.png) no-repeat top left/contain;
  width: 25%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  margin: 20% 0 0 2.1428571429%;
}
@media screen and (min-width: 768px) {
  .catch .karuta::before {
    width: 50%;
    margin: 2.1428571429% 0 0 2.1428571429%;
  }
}
.catch .karuta h2 {
  font-size: 3rem;
  font-weight: normal;
  font-family: "Shippori Mincho", serif;
}
@media screen and (min-width: 768px) {
  .catch .karuta h2 {
    font-size: 4rem;
  }
}
.catch .karuta h2 strong {
  font-size: 4rem;
}
@media screen and (min-width: 768px) {
  .catch .karuta h2 strong {
    font-size: 6rem;
  }
}
.catch .karuta ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 1130px;
  margin: 60px auto 0;
}
.catch .karuta ul li {
  width: 50%;
}
.catch .karuta ul li:nth-child(1) {
  transform: rotate(4deg);
  margin-top: 4rem;
  z-index: 3;
}
.catch .karuta ul li:nth-child(2) {
  transform: rotate(-7deg);
  z-index: 2;
}
.catch .karuta ul li:nth-child(3) {
  transform: rotate(4deg);
  position: relative;
  z-index: 0;
  margin-top: 4rem;
}
.catch .karuta ul li:nth-child(4) {
  transform: rotate(-5deg);
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .catch .karuta ul li {
    width: 25%;
  }
}

.yokyu {
  background: #d3e8e8;
  padding: 13.3333333333% 0;
}
@media screen and (min-width: 768px) {
  .yokyu {
    padding: 4.2857142857% 0;
  }
}
.yokyu h2 {
  font-size: 4rem;
  padding-bottom: 40px;
  font-family: "Shippori Mincho", serif;
  font-weight: bold;
}
.yokyu ul {
  display: inline-block;
}
.yokyu ul li {
  position: relative;
  padding-left: 35px;
  padding-bottom: 1rem;
  text-align: left;
  font-size: 2rem;
  line-height: 1.6;
}
.yokyu ul li::before, .yokyu ul li::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 20px;
  height: 20px;
}
.yokyu ul li::before {
  background: white;
}
.yokyu ul li::after {
  background: url(../img/icon_check.png) no-repeat top left/contain;
  width: 26px;
  height: 26px;
}
.yokyu ul li strong {
  color: #c54173;
}

.result {
  margin-top: -5rem;
}
.result .txt {
  width: 80%;
  max-width: 500px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .result .txt {
    width: 50%;
  }
}
.result .txt p {
  font-size: 1.3rem;
  text-align: right;
  padding-top: 5px;
}
.result .txt p a {
  display: block;
  background: #ed91aa;
  color: white;
  font-weight: bold;
  width: 62%;
  float: right;
  text-align: center;
  padding: 5px 0;
  border-radius: 5px;
  margin-top: 5px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .result .txt p a {
    width: 50%;
  }
}
.result p.omakase {
  clear: both;
  font-size: 4rem;
  text-align: center;
  padding-bottom: 4.2857142857%;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}
.result p.omakase strong {
  color: #ed91aa;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media screen and (min-width: 768px) {
  .result p.omakase {
    font-size: 5rem;
  }
}

.display {
  background: url(../img/bg_beju.jpg) repeat top left;
  padding: 13.3333333333% 0;
}
@media screen and (min-width: 768px) {
  .display {
    padding: 4.2857142857% 0;
  }
}
.display .box {
  align-items: center;
  margin: 0 auto;
  flex-wrap: wrap;
}
.display .box .txt {
  width: 100%;
  font-size: 1.8rem;
  line-height: 1.6;
  padding: 30px 10px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .display .box .txt p {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1130px) {
  .display .box .txt {
    width: 50%;
    padding: 30px 50px;
  }
}
.display .box .txt h2 {
  font-size: 2.6rem;
  padding-bottom: 40px;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .display .box .txt h2 {
    font-size: 4rem;
  }
}
.display .box .photo {
  width: 80%;
}
@media screen and (min-width: 1130px) {
  .display .box .photo {
    width: 50%;
  }
}

.option {
  background: #d1e1e0;
  position: relative;
  margin-top: 100px;
  padding: 0 0 13.3333333333%;
}
@media screen and (min-width: 768px) {
  .option {
    padding: 0 0 4.2857142857%;
  }
}
.option::before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  left: calc(50% - 40px);
  top: -140px;
  background: url(../img/plus.png) no-repeat center center/contain;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .option::before {
    width: 120px;
    height: 120px;
    left: calc(50% - 60px);
    top: -160px;
  }
}
.option::after {
  content: "";
  display: block;
  width: 100%;
  height: 200px;
  position: absolute;
  left: 0;
  top: -100px;
  transform: skewY(-5deg);
  background: #d1e1e0;
  z-index: -1;
}
.option h2 {
  max-width: 250px;
  margin: 0 auto 40px;
}
@media screen and (min-width: 768px) {
  .option h2 {
    max-width: 350px;
  }
}
.option .box {
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  align-items: flex-start;
}
.option .box:not(:last-child) {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
.option .box:not(:last-child)::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: repeating-linear-gradient(-45deg, #333, #333 1px, #d1e1e0 0, #d1e1e0 5px);
}
@media screen and (min-width: 768px) {
  .option .box.boxR {
    flex-direction: row-reverse;
  }
}
.option .box .txt {
  width: 100%;
  font-size: 1.8rem;
  line-height: 1.6;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .option .box .txt {
    width: 55%;
  }
}
.option .box .txt h3 {
  max-width: 380px;
  font-size: 3rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  padding: 0.8em 0 30px 1em;
  text-align: left;
  background: url(../img/bg_h3.png) no-repeat center left/contain;
}
.option .box .txt p {
  font-size: 1.6rem;
}
.option .box .txt p.price {
  text-align: right;
  font-size: 2rem;
  color: red;
  font-weight: bold;
}
.option .box .txt p.price span {
  color: #333333;
  font-size: 1.6rem;
  font-weight: normal;
}
.option .box .txt a {
  display: block;
  border: 2px solid #333333;
  color: #333333;
  padding: 5px 0;
  border-radius: 30px;
  max-width: 300px;
  margin: 10px auto 0;
  font-weight: bold;
  transition: all 0.3s;
}
.option .box .txt a:hover {
  background: rgba(51, 51, 51, 0.1);
}
.option .box .photo {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .option .box .photo {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .option .btn {
    padding: 1rem 0;
    width: 100%;
  }
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

a.play {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
a.play::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/btn_play.png) no-repeat center center/60px;
  z-index: 1;
}

.setnaiyou {
  padding: 13.3333333333% 0;
}
@media screen and (min-width: 768px) {
  .setnaiyou {
    padding: 4.2857142857% 0 100px;
  }
}
.setnaiyou .set_photo {
  position: relative;
}
@media screen and (max-width: 767px) {
  .setnaiyou .set_photo ul.set_photo_name {
    display: none;
  }
}
.setnaiyou .set_photo ul.set_photo_name li {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}
.setnaiyou .set_photo ul.set_photo_name li a {
  background: #eda408;
  color: white;
  font-weight: bold;
  border-radius: 50px;
  padding: 5px 15px;
}
.setnaiyou .set_photo ul.set_photo_name li.sp a {
  background: #8e9136;
}
.setnaiyou .set_photo ul.set_photo_name li:nth-child(1) {
  margin: 49.1379310345% 0 0 66.3716814159%;
}
.setnaiyou .set_photo ul.set_photo_name li:nth-child(2) {
  margin: 8.6206896552% 0 0 17.6991150442%;
}
.setnaiyou .set_photo ul.set_photo_name li:nth-child(3) {
  margin: 21.5517241379% 0 0 84.9557522124%;
}
.setnaiyou .set_photo ul.set_photo_name li:nth-child(4) {
  margin: 12.0689655172% 0 0 75.2212389381%;
}
.setnaiyou .set_photo ul.set_photo_name li:nth-child(5) {
  margin: 5.1724137931% 0 0 66.3716814159%;
}
.setnaiyou .set_photo ul.set_photo_name li:nth-child(6) {
  margin: 58.6206896552% 0 0 56.6371681416%;
}
.setnaiyou .set_photo ul.set_photo_name li:nth-child(7) {
  margin: 18.1034482759% 0 0 1.7699115044%;
}
.setnaiyou ul.description {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 0 20px;
}
@media screen and (min-width: 1130px) {
  .setnaiyou ul.description {
    padding: 50px 0;
  }
}
.setnaiyou ul.description > li {
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #999;
  position: relative;
}
@media screen and (min-width: 1130px) {
  .setnaiyou ul.description > li {
    width: 48%;
  }
}
.setnaiyou ul.description > li h3 {
  text-align: left;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  position: relative;
  /*span {
      display: inline-block;
      text-align: center;
      line-height: 1.4;
      width: 1.4em;
      height: 1.4em;
      color: white;
      margin-right: 0.7rem;
      border-radius: 50%;
      background: $mainColor;
      font-size: 1.8rem;
      @include tab {
          line-height: 1.5;
          width: 1.5em;
          height: 1.5em;
          font-size: 2rem;
      }
  }*/
}
@media screen and (min-width: 768px) {
  .setnaiyou ul.description > li h3 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1130px) {
  .setnaiyou ul.description > li h3 {
    font-size: 2.4rem;
  }
}
.setnaiyou ul.description > li h3 sup {
  color: red;
}
.setnaiyou ul.description > li:nth-of-type(-n+6) h3::before {
  content: "●";
  color: #eda408;
  margin-right: 0.2em;
}
.setnaiyou ul.description > li:nth-of-type(n+7) h3::before {
  content: "●";
  color: #8e9136;
  margin-right: 0.2em;
}
.setnaiyou ul.description > li p {
  display: block;
  padding-left: 4rem;
  line-height: 1.6;
}
.setnaiyou ul.description > li ul li:not(:first-child) {
  display: none;
}
.setnaiyou ul.description > li ul li:first-child a {
  display: inline-block;
  border: 2px solid #333333;
  border-radius: 3rem;
  padding: 0.3rem 1rem;
  margin: auto;
  position: absolute;
  top: 2rem;
  right: 0;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .setnaiyou ul.description > li ul li:first-child a {
    font-size: 1.6rem;
    padding: 0.3rem 2rem;
  }
}

.gunreki {
  background: url(../img/bg_beju.jpg) repeat top left;
}
.gunreki .inner {
  padding: 13.3333333333% 0 13.3333333333%;
}
@media screen and (min-width: 768px) {
  .gunreki .inner {
    display: flex;
    justify-content: space-between;
    padding: 4.2857142857% 0;
  }
}
@media screen and (max-width: 767px) {
  .gunreki .inner h2.ttl {
    margin-bottom: 3rem;
  }
}
.gunreki .inner .txt {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .gunreki .inner .txt {
    width: 45%;
  }
}
.gunreki .inner p {
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .gunreki .inner p {
    font-size: 1.8rem;
    text-align: center;
  }
}
.gunreki .inner .photo {
  padding: 1rem 0 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .gunreki .inner .photo {
    padding: 0;
    width: 50%;
  }
}
.gunreki .inner .photo figcaption {
  padding-top: 1rem;
  font-size: 1.4rem;
}
.gunreki .inner .photo img {
  box-shadow: 0 0 10px rgba(51, 51, 51, 0.2);
}

.plan {
  background: #f6f6f2;
  padding: 13.3333333333% 0;
}
@media screen and (min-width: 768px) {
  .plan {
    padding: 4.2857142857% 0;
  }
}
.plan .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-wrap: wrap;
}
.plan .plan_box {
  width: 100%;
  border-radius: 30px;
  background: white;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media screen and (max-width: 767px) {
  .plan .plan_box:not(:last-child) {
    margin-bottom: 5rem;
  }
}
@media screen and (min-width: 768px) {
  .plan .plan_box {
    width: 30%;
  }
}
.plan .plan_box h3 {
  color: white;
  padding: 15px 10px;
  border-radius: 30px 30px 0 0;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2rem;
  font-weight: bold;
}
.plan .plan_box ul {
  text-align: left;
  margin: 2rem 3rem;
}
.plan .plan_box ul li {
  font-size: 1.8rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5em;
}
.plan .plan_box ul li::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  left: 0;
  top: 0.3em;
  border-radius: 50%;
  background: #eda408;
}
.plan .plan02,
.plan .plan03 {
  position: relative;
}
.plan .plan02::before,
.plan .plan03::before {
  content: "+";
  font-size: 6rem;
  display: block;
  position: absolute;
  top: -6rem;
  left: calc(50% - 2.2rem);
  color: #999;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .plan .plan02::before,
  .plan .plan03::before {
    top: calc(50% - 3rem);
    left: -4.7rem;
  }
}
.plan .plan01 h3 {
  background: #eda408;
}
.plan .plan02 ul li::after,
.plan .plan02 h3 {
  background: #8e9136;
}
.plan .plan03 ul li::after,
.plan .plan03 h3 {
  background: #8bc3c2;
}

.t_price {
  background: url(../img/bg_right.png) no-repeat top right/40%;
  position: relative;
  padding: 13.3333333333% 0;
}
@media screen and (min-width: 768px) {
  .t_price {
    padding: 4.2857142857% 0;
    background-size: contain;
  }
}
.t_price::before {
  content: "";
  width: 23.3rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/bg_left.png) no-repeat center right/contain;
  z-index: -1;
}
.t_price .inner {
  max-width: 800px;
}
.t_price .inner table {
  width: 100%;
  margin-bottom: 8rem;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .t_price .inner table {
    font-size: 1.8rem;
  }
}
.t_price .inner table tr.osusume {
  position: relative;
}
.t_price .inner table tr.osusume td:first-child {
  position: relative;
}
@media screen and (max-width: 767px) {
  .t_price .inner table tr.osusume td:first-child {
    padding-left: 1em;
  }
}
.t_price .inner table tr.osusume td:first-child::before {
  content: "";
  display: block;
  background: url(../img/icon_osusume.svg) no-repeat center center/contain;
  position: absolute;
  width: 5rem;
  height: 5rem;
  top: calc(50% - 2.5rem);
  left: -2rem;
  padding: 0 15px;
  transform: rotate(-10deg);
}
@media screen and (min-width: 768px) {
  .t_price .inner table tr.osusume td:first-child::before {
    width: 6rem;
    height: 6rem;
    top: calc(50% - 3rem);
    left: -2.5rem;
  }
}
.t_price .inner table tr.osusume th, .t_price .inner table tr.osusume td {
  position: relative;
}
.t_price .inner table tr.osusume th::after, .t_price .inner table tr.osusume td::after {
  content: "";
  display: block;
  background: rgba(255, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.t_price .inner table th {
  text-align: center;
  border-bottom: 1px solid #999;
  padding: 20px 0;
}
.t_price .inner table th.smart, .t_price .inner table th.full {
  border-radius: 15px 15px 0 0;
  color: white;
  font-weight: bold;
}
.t_price .inner table th.smart {
  background: #eda408;
}
.t_price .inner table th.full {
  background: #8e9136;
}
.t_price .inner table td {
  width: 25%;
  padding: 20px 0;
  border-bottom: 1px solid #999;
}
.t_price .inner table td.smart {
  background: #fcf0d7;
}
.t_price .inner table td.full {
  background: #ededdf;
}
.t_price dl.option_box {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.7);
}
.t_price dl.option_box dt, .t_price dl.option_box dd {
  font-size: 1.8rem;
  text-align: left;
  box-sizing: border-box;
}
.t_price dl.option_box dt {
  width: 100%;
  padding-left: 2rem;
  font-weight: bold;
  padding: 20px 15px 0;
}
.t_price dl.option_box dt.w100 {
  width: 100%;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .t_price dl.option_box dt {
    width: 14em;
    padding: 20px 0;
    border-bottom: 1px solid #999;
  }
}
.t_price dl.option_box dd {
  padding-right: 2rem;
  width: 100%;
  padding: 0 15px 20px 2em;
  border-bottom: 1px solid #999;
}
@media screen and (min-width: 768px) {
  .t_price dl.option_box dd {
    width: calc(100% - 14em);
    padding: 20px 0;
  }
}
.t_price dl.option_box dd span {
  font-size: 0.85em;
}
.t_price h3 {
  background: #8bc3c2;
  color: white;
  font-size: 2rem;
  line-height: 2;
  display: inline-block;
  padding: 0 3em;
  border-radius: 3rem;
  margin-bottom: 2rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .t_price h3 {
    font-size: 2.4rem;
  }
}
.t_price p.caution {
  line-height: 1.6;
}

.step {
  background: #f6f6f2;
  padding: 13.3333333333% 0;
}
@media screen and (min-width: 768px) {
  .step {
    padding: 4.2857142857% 0;
  }
}
.step ul {
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.step ul li {
  width: 100%;
  background: white;
  padding: 0 15px 20px;
  box-sizing: border-box;
  border-radius: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .step ul li {
    width: 23%;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .step ul li:not(:last-child) {
    margin-bottom: 6rem;
  }
}
.step ul li:not(:last-child)::after {
  content: "";
  display: block;
  background: url(../img/icon_arrow.svg) no-repeat center center/contain;
  position: absolute;
  right: calc(50% - 23px);
  width: 45px;
  height: 45px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .step ul li:not(:last-child)::after {
    transform: rotate(90deg);
  }
}
@media screen and (min-width: 768px) {
  .step ul li:not(:last-child)::after {
    top: calc(50% - 22px);
    right: -37px;
  }
}
.step ul li h3 {
  background: url(../img/ribbon.png) no-repeat top center/contain;
  padding: 8px 0 30px;
  color: white;
  font-weight: bold;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  margin-top: -2rem;
}
.step ul li h4 {
  color: #eda408;
  font-weight: bold;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2rem;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.step ul li h4::after {
  content: "";
  display: block;
  background: #ed91aa;
  position: absolute;
  bottom: 0;
  left: calc(50% - 25px);
  width: 50px;
  height: 1px;
  z-index: 1;
}
.step ul li .icon {
  width: 20%;
  margin: -1rem auto 0;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .step ul li .icon {
    width: 60%;
    display: block;
    margin: auto;
  }
}
.step ul li p {
  text-align: left;
  padding: 0 10px 10px;
}
@media screen and (min-width: 768px) {
  .step ul li p {
    padding: 10px;
  }
}

.faq {
  background: white;
  padding: 13.3333333333% 0;
}
@media screen and (min-width: 768px) {
  .faq {
    padding: 4.2857142857% 0;
  }
}
.faq dl dt, .faq dl dd {
  border-radius: 5px;
  padding: 10px;
  margin-left: 0;
  margin-bottom: 20px;
  text-align: left;
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .faq dl dt, .faq dl dd {
    font-size: 1.8rem;
  }
}
.faq dl dt {
  background: #8e9136;
  color: white;
  position: relative;
  padding-left: 50px;
  padding-right: 50px;
}
@media screen and (min-width: 768px) {
  .faq dl dt {
    padding-left: 60px;
  }
}
.faq dl dt::after {
  content: "Q.";
  font-size: 2.4rem;
  position: absolute;
  top: 0.15em;
  left: 15px;
  color: yellow;
}
@media screen and (min-width: 768px) {
  .faq dl dt::after {
    font-size: 3rem;
    top: 0px;
  }
}
.faq dl dt.open {
  position: relative;
}
.faq dl dt.open::before { /* 閉じている時 */
  content: "＋";
  position: absolute;
  right: 20px;
}
.faq dl dt.open.active::before { /* 開いている時 */
  content: "－";
}
.faq dl dd {
  display: none;
  padding: 25px 20px;
  margin-left: 70px;
  background: #f6f6f2;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .faq dl dd {
    margin-left: 90px;
  }
}
.faq dl dd::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -60px;
  background: rgba(220, 220, 220, 0.5) url(../img/img_keizo_faq.png) no-repeat bottom left/50px;
}
@media screen and (min-width: 768px) {
  .faq dl dd::before {
    width: 70px;
    height: 70px;
    background-size: 70px;
    left: -90px;
  }
}
.faq dl dd::after {
  content: "▲";
  font-size: 2rem;
  position: absolute;
  top: 20px;
  left: -15px;
  color: #f6f6f2;
  transform: rotate(-90deg);
}

.contact {
  background: #f6f6f2;
  padding: 13.3333333333% 0;
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 4.2857142857% 0;
  }
}
.contact .inner {
  max-width: 800px;
}
.contact h2.ttl {
  margin-bottom: 3rem;
}
.contact p {
  text-align: center;
  padding: 0 15px 40px;
}
.contact .btn {
  padding: 1em;
}
.contact dl {
  flex-wrap: wrap;
  margin: -20px auto 30px;
}
.contact dl dt {
  width: 100%;
  text-align: left;
  padding: 20px 0 10px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .contact dl dt {
    width: 16em;
    padding: 20px 2rem 20px 0;
    border-bottom: 1px dotted #999;
  }
}
.contact dl dd {
  width: 100%;
  text-align: left;
  border-bottom: 1px dotted #999;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .contact dl dd {
    width: calc(100% - 18em);
    padding: 20px 0;
  }
}
.contact form input {
  font-size: 1.6rem;
  width: 100%;
  padding: 10px;
  border: 1px solid #999;
  border-radius: 5px;
  text-align: left;
  background: white;
}
.contact form input.btn {
  background: #4f8730;
  color: #fff;
  border-radius: 10px;
  width: 150px;
  padding: 5px 10px;
  text-align: center;
}
.contact form input.check {
  width: 1em;
  margin-right: 0.2em;
}
.contact form textarea {
  font-size: 16px;
  width: 100%;
  padding: 10px;
  height: 10em;
  border: 1px solid #999;
  border-radius: 5px;
  background: white;
}

button,
input.btn {
  background: #4f8730;
  color: #fff;
  border-radius: 10px;
  width: 150px;
  padding: 5px 10px;
  text-align: center;
}

.thanks {
  background: #f6f6f2;
}
.thanks #container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 91vh;
  min-height: 400px;
}
.thanks #container h1 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}
.thanks #container p {
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
}
.thanks #container p a {
  color: #4f8730;
  font-weight: bold;
}

/* motion */
.tg_cmn {
  transform: translateY(-50px) scale(2) rotate(0);
  opacity: 0;
}

.tg_cmn.active {
  transform: translateY(0) scale(1) rotate(-15deg);
  opacity: 1;
  /*-webkit-transition: transform 1s cubic-bezier(0.25, 0.25, 0, 1.5), opacity 1s cubic-bezier(0.5, 0, 0, 1);
  -moz-transition: transform 1s cubic-bezier(0.25, 0.25, 0, 1.5), opacity 1s cubic-bezier(0.5, 0, 0, 1);
  -o-transition: transform 1s cubic-bezier(0.25, 0.25, 0, 1.5), opacity 1s cubic-bezier(0.5, 0, 0, 1);*/
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.tg_cmn.active {
  transition-delay: 0.25s;
}

/* motion end */
.privacy {
  padding: 30px;
}
.privacy h1 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}
.privacy h2 {
  margin: 20px 0 5px;
}
.privacy p {
  padding-left: 1em;
}
.privacy ol {
  list-style: decimal;
  margin: 20px 0 20px 2em;
}
.privacy ol li {
  margin-bottom: 10px;
}

.tokutei {
  padding: 30px;
}
.tokutei h1 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}
.tokutei dl {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.tokutei dl dt {
  width: 10em;
  padding: 10px 0;
  border-bottom: 1px solid #999;
  font-weight: bold;
}
.tokutei dl dd {
  width: calc(100% - 10em);
  padding: 10px 0;
  border-bottom: 1px solid #999;
}

/* users voice */
.users {
  padding-top: 6rem;
  background: #f6f6f2;
}
.users h2.ttl::after {
  background: #ed91aa;
}

.shadow-effect {
  background: #fff;
  padding: 4rem 2rem 1rem;
  border-radius: 0 1.5rem 0 1.5rem;
  text-align: center;
  box-shadow: 0 19px 20px rgba(0, 0, 0, 0.1), 0 15px 12px rgba(0, 0, 0, 0.02);
  position: relative;
}

#users-voice .shadow-effect p {
  font-family: inherit;
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 17px 0;
  font-weight: 300;
}

.users-name {
  display: table;
  width: auto;
  background: #ed91aa;
  padding: 9px 35px;
  border-radius: 0 1rem 1rem 0;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 0;
  z-index: 1;
}

#users-voice .item {
  text-align: center;
  padding: 2rem 50px 4rem;
  opacity: 0.2;
  transform: scale3d(0.8, 0.8, 1);
  transition: all 0.3s ease-in-out;
}

#users-voice .owl-item.active.center .item {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

#users-voice.owl-carousel .owl-dots .owl-dot.active span,
#users-voice.owl-carousel .owl-dots .owl-dot:hover span {
  background: #ed91aa;
  transform: translate3d(0px, -50%, 0px) scale(0.7);
}

#users-voice.owl-carousel .owl-dots {
  display: inline-block;
  width: 100%;
  text-align: center;
}

#users-voice.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
}

#users-voice.owl-carousel .owl-dots .owl-dot span {
  background: #999;
  display: inline-block;
  height: 20px;
  margin: 0 2px 5px;
  transform: translate3d(0px, -50%, 0px) scale(0.3);
  transform-origin: 50% 50% 0;
  transition: all 250ms ease-out 0s;
  width: 20px;
}

.banner01 {
  width: 100%;
  padding: 0.5rem 0 1rem 0;
  font-family: "Yuji Syuku", serif;
  font-weight: 400;
  color: white;
  text-shadow: 0 0 10px rgb(0, 0, 0);
  overflow: hidden;
  background: url(../img/bg_banner02.jpg) no-repeat top center/cover;
}
@media screen and (min-width: 768px) {
  .banner01 {
    padding: 1rem 0;
  }
}
@media screen and (min-width: 768px) {
  .banner01 .half {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.banner01 a {
  display: block;
  width: 70%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .banner01 a {
    width: 44.2477876106%;
    max-width: 60rem;
  }
}
.banner01 .text {
  width: 60%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .banner01 .text {
    width: 44.2477876106%;
  }
}

.banner02 {
  width: 100%;
  padding: 1rem 0;
  background: url(../img/bg_banner.png) repeat top left;
}
@media screen and (min-width: 768px) {
  .banner02 {
    padding: 1rem 0;
  }
}
.banner02 a {
  display: block;
  width: 70%;
  max-width: 50rem;
  margin: auto;
}