@charset "UTF-8";
/*================================================
 *  CSSリセット
 ================================================*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: normal;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

@font-face {
  font-family: "DF-GokuButoGothic-W12";
  src: url("../font/DF-GokuButoGothic-W12.woff") format("woff");
}
/*================================================
 *  変数
 ================================================*/
/*================================================
 *  一般・共通設定
 ================================================*/
html {
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  font-size: 24px;
  font-family: "DF-GokuButoGothic-W12", sans-serif, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.6;
  background-color: #fff;
  /* コピー禁止 */
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.inner {
  margin: 0 auto;
  max-width: 1200px;
}

#contents {
  margin: 0 auto;
}

header {
  margin: 0 auto;
}

a {
  color: #3f3f3f;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

p {
  margin: 0 0 1em 0;
  font-size: 24px;
  color: #1a1a1a;
}
@media (max-width: 767px) {
  p {
    font-size: 16px;
  }
}

img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
  /* コピー禁止 */
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  /* 右クリック禁止 */
  pointer-events: none;
}

h1 {
  font-family: "DF-GokuButoGothic-W12";
  font-weight: 700;
  color: #ffffff;
  font-size: 2.4vw;
  line-height: 1.4;
  text-align: center;
  margin: 0 0;
}

/*================================================
 *  inner
 ================================================*/
.over {
  overflow: hidden;
}

.inner {
  margin: 0 auto;
  max-width: 1100px;
  height: 100%;
  position: relative;
}
@media (min-width: 1921px) {
  .inner {
    max-width: 3200px;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .inner {
    max-width: 600px;
  }
}

.inner1100 {
  margin: 0 auto;
  max-width: 1100px;
  height: auto;
  position: relative;
}
@media (min-width: 1921px) {
  .inner1100 {
    max-width: 3200px;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .inner1100 {
    max-width: 600px;
  }
}

.inner1400 {
  margin: 0 auto;
  max-width: 1300px;
  height: 100%;
  position: relative;
}
@media (min-width: 1921px) {
  .inner1400 {
    max-width: 3200px;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .inner1400 {
    max-width: 600px;
  }
}

/*================================================
 *  アニメーション
 ================================================*/
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeLeft {
  -webkit-animation-name: fadeLeft;
          animation-name: fadeLeft;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeRight {
  -webkit-animation-name: fadeRight;
          animation-name: fadeRight;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.poyopoyo {
  -webkit-animation: poyopoyo 2s ease-out infinite;
          animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}

@-webkit-keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%, 70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%, 70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time02 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.delay-time04 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay-time06 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

/* Animation */
.target {
  animation: floating-y 2.8s ease-in-out infinite alternate-reverse;
}

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

@keyframes floating-y {
  0% {
    -webkit-transform: translateY(-2%);
            transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(2%);
            transform: translateY(2%);
  }
}
.target2 {
  animation: floating-y 2s ease-in-out infinite alternate-reverse;
}

@keyframes floating-y {
  0% {
    -webkit-transform: translateY(-1.5%);
            transform: translateY(-1.5%);
  }
  100% {
    -webkit-transform: translateY(2.5%);
            transform: translateY(2.5%);
  }
}
.target3 {
  animation: floating-y 2.5s ease-in-out infinite alternate-reverse;
}

@keyframes floating-y {
  0% {
    -webkit-transform: translateY(-1.5%);
            transform: translateY(-1.5%);
  }
  100% {
    -webkit-transform: translateY(2.5%);
            transform: translateY(2.5%);
  }
}
.target4 {
  animation: floating-y 1.5s ease-in-out infinite alternate-reverse;
}

@keyframes floating-y {
  0% {
    -webkit-transform: translateY(-2%);
            transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(2%);
            transform: translateY(2%);
  }
}
/*================================================
 *  Header
 ================================================*/
header {
  font-family: "DF-GokuButoGothic-W12";
  position: fixed;
  height: 60px;
  width: 100%;
  background: url(../images/hd_bk.png);
  background-size: cover;
  background-position: center 60%;
  background-color: #10A656;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  top: 0;
  z-index: 9999;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 5% 0 5%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  /*▽▽ヘッダーリストのアンダーバー▽▽*/
  /*△△ヘッダーリストのアンダーバー△△*/
}
@media (max-width: 767px) {
  header {
    padding: 0;
    height: auto;
  }
}
header .logo {
  width: 15%;
  height: 100%;
  max-width: 220px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
header .logo img {
  width: 100%;
}
@media (max-width: 767px) {
  header .logo {
    width: 100%;
    margin: 0 auto;
    padding: 5px 0 5px 0;
    max-width: 140px;
  }
}
header .globalMenuPc {
  width: 85%;
}
@media (max-width: 767px) {
  header .globalMenuPc {
    display: none;
  }
}
header ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
}
header ul a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  display: block;
  line-height: 60px;
  padding: 0 10px;
  position: relative;
}
@media (max-width: 767px) {
  header ul a {
    padding: 0 2px;
    font-size: 14px;
    line-height: 24px;
  }
}
header li ::after {
  position: absolute; /*親要素であるaタグを基準に位置を指定*/
  bottom: 10px; /*アンダーバーが位置する、各リストの下端からの高さ*/
  left: 0; /*アンダーバーを各リストの左端に指定*/
  content: ""; /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーバーなので何も記載しない*/
  width: 100%; /*アンダーバーの幅は各リストの幅*/
  height: 2px; /*アンダーバーの高さ（太さ）*/
  background: #FFF; /*アンダーバーの色*/
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1); /*アンダーバーの縮尺比率。ホバー前はx方向に0*/
  -webkit-transform-origin: center top;
          transform-origin: center top; /*変形（アンダーバーの伸長）の原点を、liの真ん中指定*/
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s; /*変形の時間*/
}
@media (max-width: 767px) {
  header li ::after {
    bottom: 2px;
  }
}
header li :hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 2px;
  top: 2px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #fff;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(-315deg);
  transform: rotate(-315deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #000;
  text-align: center;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 100%;
  margin-left: auto;
}

nav.globalMenuSp ul {
  background: rgba(0, 0, 0, 0.6);
  margin: 0 auto;
  padding: 0;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

nav.globalMenuSp ul li:hover {
  background: #ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration: none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.slider {
  width: 100%;
  display: none;
}
@media (max-width: 767px) {
  .slider {
    display: none;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
  padding: 2%;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dots li button:before {
  font-size: 50px;
}

.slick-prev:before,
.slick-next:before {
  font-size: 50px;
  color: #10A656;
}
@media (max-width: 767px) {
  .slick-prev:before,
  .slick-next:before {
    font-size: 20px;
  }
}

.slick-next {
  right: -5%;
  top: 50%;
}
@media (max-width: 767px) {
  .slick-next {
    right: -10%;
  }
}

.slick-prev {
  left: -5%;
  top: 50%;
}
@media (max-width: 767px) {
  .slick-prev {
    left: -10%;
  }
}

/*================================================
 *  ボタンデザイン
 ================================================*/
.btn {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  outline: none;
  border: none;
  background: none;
}
.btn:hover {
  top: 3px;
  cursor: pointer;
  opacity: 0.7;
}
.btn a {
  display: inline-block;
}

.form-to-btn {
  width: 30%;
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .form-to-btn {
    width: 60%;
  }
}
.form-to-btn a {
  display: inline-block;
}

.btn-send {
  width: 30%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .btn-send {
    width: 50%;
  }
}

.btn-send-cre {
  width: 50%;
  margin: 0 auto;
}

/*================================================
 *  新フォーム
 ================================================*/
.Area_form {
  margin: 0 auto 0;
  color: #fff;
  padding: 2% 2% 2% 2%;
  background-color: #10A656;
  overflow: hidden;
}
@media (max-width: 767px) {
  .Area_form {
    margin: -2% auto 0;
  }
}
.Area_form .section_t {
  position: relative;
  width: 50%;
  margin: 0 auto;
  padding: 0 0 2% 0;
}
@media (max-width: 767px) {
  .Area_form .section_t {
    width: 70%;
    padding: 7% 0;
  }
}
.Area_form .section_t p {
  color: #fff;
}
@media (max-width: 767px) {
  .Area_form .section_t p {
    font-size: 6vw;
  }
}
.Area_form .section_t .sub_t {
  border-top: solid 1px #fff;
  font-size: 1em;
}
@media (max-width: 767px) {
  .Area_form .section_t .sub_t {
    font-size: 4vw;
  }
}
.Area_form h1 {
  background-color: none;
  font-style: normal;
  color: #1a1a1a;
}
@media (max-width: 767px) {
  .Area_form h1 {
    font-size: 24px;
  }
}
.Area_form p {
  font-size: 24px;
  color: #1a1a1a;
  text-align: center;
}
@media (max-width: 767px) {
  .Area_form p {
    font-size: 16px;
  }
}

.chice_plan {
  margin: 0 auto;
  width: 50%;
  margin: 0 auto;
  color: #FFF;
  text-align: center;
}
@media (max-width: 767px) {
  .chice_plan {
    width: 80%;
  }
}
.chice_plan .chice_box {
  position: relative;
  width: 100%;
  height: 400px;
  background: url(../images/ver_bk.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 5% 0 0 0;
}
@media (max-width: 767px) {
  .chice_plan .chice_box {
    height: 250px;
  }
}
.chice_plan .chice_box::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.chice_plan .chice_box .chice2 {
  position: relative;
  z-index: 2;
  width: 85%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  padding: 2% 0 0 0;
}
@media (max-width: 767px) {
  .chice_plan .chice_box .chice2 {
    width: 100%;
  }
}
.chice_plan .chice_box .chice2 h2 {
  margin-left: 2%;
  width: 50%;
  background-color: #FFF;
  color: #1a1a1a;
  font-size: 0.8em;
}
@media (max-width: 767px) {
  .chice_plan .chice_box .chice2 h2 {
    font-size: 3vw;
    width: 50%;
  }
}
.chice_plan .chice_box .chice2 p {
  color: #FFF;
  margin: 2% 0 2% 0;
  font-size: 1.4em;
}
@media (max-width: 767px) {
  .chice_plan .chice_box .chice2 p {
    font-size: 6vw;
  }
}
.chice_plan .chice_box .chice2 .chice1 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 2% 2% 2% 2%;
  margin: 0 auto;
}
.chice_plan h1 {
  background-color: #10A656;
  color: #fff;
}
@media (max-width: 767px) {
  .chice_plan h1 {
    font-size: 24px;
  }
}
.chice_plan h2 {
  background-color: #FFF;
  color: #1a1a1a;
}
@media (max-width: 767px) {
  .chice_plan h2 {
    font-size: 4vw;
  }
}

.Form {
  color: #FFF;
  width: 100%;
  margin: 0% auto 0;
  padding: 1% 2% 1% 2%;
  overflow: hidden;
}
.Form-Item {
  margin: 0 auto;
  padding-top: 14px;
  padding-bottom: 14px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1a1a1a;
}
@media (max-width: 767px) {
  .Form-Item {
    font-size: 16px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 16px;
    padding-bottom: 16px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

.Form-Item-long {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.Form-Item-Label {
  width: 20%;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 14px;
  color: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .Form-Item-Label {
    width: 100%;
    max-width: inherit;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 16px;
  }
}

.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  margin-right: 8px;
  padding: 2px 4px 2px 4px;
  width: 30%;
  display: inline-block;
  text-align: center;
  background: #E23C9D;
  color: #fff;
  font-size: 12px;
}
@media (max-width: 767px) {
  .Form-Item-Label-Required {
    padding-top: 4px;
    padding-bottom: 4px;
    width: 10%;
    font-size: 10px;
  }
}

.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-right: 2%;
  padding-left: 0.5em;
  padding-right: 0.5em;
  height: 1.6em;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 80%;
  background: #eaedf2;
  font-size: 1em;
}
@media (max-width: 767px) {
  .Form-Item-Input {
    width: 100%;
    margin-left: 0;
    margin-top: 5px;
    height: 40px;
    -webkit-box-flex: inherit;
    -webkit-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
    font-size: 16px;
  }
}

.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}

.agecheckbox {
  width: 80%;
}
@media (max-width: 767px) {
  .agecheckbox {
    width: 100%;
  }
}

.chui {
  color: #1a1a1a;
  text-align: center;
  font-size: 0.7em;
}
@media (max-width: 767px) {
  .chui {
    font-size: 10px;
  }
}

@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    -webkit-box-flex: inherit;
    -webkit-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
    font-size: 15px;
  }
}
.Form-Btn {
  margin: 2vw auto;
  border-radius: 2.2vw;
  padding: 1% 0 1% 0;
  width: 30%;
  display: block;
  letter-spacing: 0.05em;
  background: #E23C9D;
  color: #fff;
  font-weight: bold;
  font-size: 2.4vw;
  outline: none;
  border: none;
}
.Form-Btn:hover {
  opacity: 0.7;
}

@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}
.Form-kiyaku {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
}
.Form-kiyaku h1 {
  background-color: #E23C9D;
  color: #fff;
  width: 100%;
  font-size: 22px;
}
@media (max-width: 767px) {
  .Form-kiyaku h1 {
    font-size: 4vw;
  }
}
.Form-kiyaku p {
  color: #FFF;
  font-size: 16px;
  margin: 1% auto 0;
}
@media (max-width: 767px) {
  .Form-kiyaku p {
    font-size: 10px;
  }
}
.Form-kiyaku .qa_t {
  background-color: #bef8ff;
}

.kiyaku {
  width: 100%;
  margin: 1% auto;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #3f3f3f;
  font-size: 0.6em;
  text-align: left;
  height: 120px;
  overflow-y: scroll;
  background-color: #ffffff;
  padding: 10px;
  border: 1px solid #ddd;
}
@media (max-width: 767px) {
  .kiyaku {
    height: 60px;
  }
}
.kiyaku h1 {
  background-color: #fff;
  color: #1a1a1a;
}
@media (max-width: 767px) {
  .kiyaku h1 {
    font-size: 12px;
  }
}
.kiyaku ul {
  list-style: square;
  color: #1a1a1a;
}
.kiyaku ul li {
  list-style-type: disc; /* リストの左側に黒丸 */
  margin-left: 24px; /* リストの左側に余白 */
  text-align: left;
}

/* 承諾チェック */
.kiyaku-checkbox {
  background: rgba(226, 60, 157, 0.2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
  margin: 2% 0 0 0;
  width: 100%;
  color: #FFF;
  padding: 1% 0 1% 3%;
}
.kiyaku-checkbox label {
  padding: 0 0 0 3%;
  font-size: 0.6em;
}

.kiyaku-checkbox-all {
  background-color: #E23C9D;
}
.kiyaku-checkbox-all label {
  font-size: 1em;
  color: #fff;
}

.qa dt {
  margin: 2% 0 0 0;
}
.qa dd {
  margin: 1% 0 0 0;
  border-bottom: 1px dotted #1a1a1a;
}

/*================================================
 *  フッター
 ================================================*/
footer {
  background-color: #10A656;
  clear: both;
  padding: 2% 0 0.8%;
  margin: 0 0 0;
  font-size: 1.2vw;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  footer {
    font-size: 10px;
    padding: 40px 0 3px 0;
  }
}
footer p {
  color: #FFF;
  text-align: center;
  font-size: 12px;
}

footer a {
  color: #ffffff;
  font-size: 12px;
  padding: 0 2%;
}

.copy {
  font-size: 10px;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .copy {
    font-size: 8px;
  }
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
.top_up {
  width: 10%;
  position: fixed;
  bottom: 2%;
  right: 3%;
  z-index: 999;
}
@media (min-width: 768px) {
  .top_up {
    width: 5%;
    right: 1%;
    bottom: 2%;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .top_up {
    width: 10%;
    bottom: 2%;
  }
}
.top_up a {
  display: block;
  text-decoration: none;
}
.top_up :hover {
  opacity: 0.4;
}

.form_to {
  width: 15%;
  position: fixed;
  bottom: 0%;
  z-index: 999;
}
.form_to img {
  width: 100%;
}
@media (max-width: 767px) {
  .form_to {
    display: none;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .form_to {
    display: block;
  }
}
.form_to a {
  display: block;
  text-decoration: none;
}
@media (max-width: 767px) {
  .form_to a {
    display: none;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .form_to a {
    display: block;
  }
}
.form_to a :hover {
  opacity: 0.4;
}

.form_to_sp {
  width: 60%;
  position: fixed;
  bottom: 0%;
  z-index: 999;
}
@media (orientation: landscape) and (max-width: 767px) {
  .form_to_sp {
    display: none;
  }
}
@media (min-width: 768px) {
  .form_to_sp {
    display: none;
  }
}
.form_to_sp img {
  width: 100%;
}
.form_to_sp a {
  display: block;
  text-decoration: none;
}
@media (orientation: landscape) and (max-width: 767px) {
  .form_to_sp a {
    display: none;
  }
}
@media (min-width: 768px) {
  .form_to_sp a {
    display: none;
  }
}
.form_to_sp :hover {
  opacity: 0.4;
}

/*================================================
 *  TOPビュー
 ================================================*/
.Area_fv {
  position: relative;
  height: 80%;
  margin: 0 auto;
  background-color: #fff;
  background-image: url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='100' height='57.76' patternTransform='scale(2) rotate(0)'><rect x='0' y='0' width='100%' height='100%' fill='%23ffffffff'/><path d='M5.75 0 2.89 4.96l-.42.73-.49.84-.06.1L0 9.97v3.34l2.47-4.27 7.36 12.75-7.85 13.6H0v1.73h2.02l7.34 12.72H0v1.67h9.36l-3.61 6.26h1.93l3.13-5.43 7.1-12.3h3.46l1.72-2.99h11.26l-7.4 12.82-.48.83.02.05-4.04 7.02h1.92l3.08-5.34 3.09 5.34h2.02l-3.6-6.23h11.22l1.73 2.99h4.41l2.2-3.83-1.71-2.98 5.65-9.8 7.37 12.75-4.1 7.1h1.97l3.6-6.23h15.66l3.6 6.23h2.02l-4.1-7.1 7.83-13.55H100v-1.74H86.3l-7.34-12.72h11.21l1.73 2.99h4.42l2.2-3.82-1.72-2.99L100 13.3V9.96L95.36 18H91.9l-1.72 2.98H78.93l7.4-12.82.48-.83-.03-.05L90.98 0h-1.92l-3.24 5.6L82.58 0h-2.02l3.75 6.5H73.09l-1.72-3h-4.42l-2.2 3.83 1.72 2.99-5.66 9.8-7.38-12.8L57.66 0h-1.93l-3.75 6.5H36.31L32.56 0h-1.92l4.2 7.28-7.88 13.64h-15.7L3.9 8.2h11.31l1.73 2.98h4.42l2.2-3.82-1.72-2.99L24.37 0h-1.93L20.4 3.54h-3.45l-1.73 2.99H3.92L7.67 0Zm62.17 5.17h2.48l1.24 2.16-1.24 2.15h-2.48l-1.25-2.15Zm-50 .04h2.48l1.24 2.15-1.24 2.15h-2.48l-1.25-2.15Zm55.17 2.95h11.26l-7.4 12.82-.49.84.03.05-6.09 10.55h-3.45l-1.72 2.99H53.9l6.9-11.96 7.1-12.3h3.46zm-36.74 0h15.63l7.39 12.79H48.05l-1.72-2.99H41.9l-2.2 3.82 1.72 3-5.6 9.7-7.34-12.7zm6.53 11.47h2.48l1.24 2.15-1.24 2.16h-2.48l-1.25-2.16zm50 .03h2.48l1.25 2.16-1.25 2.15h-2.48l-1.25-2.15zm-44.83 2.96h11.32l-6.9 11.95-7.1 12.3H41.9l-1.72 3H28.93l7.4-12.83.48-.83-.02-.05 6.09-10.55h3.45zm-36.76.03h15.67l7.35 12.72H23.09l-1.72-2.99h-4.42l-2.2 3.83 1.72 2.98-5.66 9.8-7.36-12.75Zm66.17.89 7.33 12.7-7.82 13.55H61.26L53.9 37.07h11.32l1.72 2.99h4.42l2.2-3.82-1.72-2.99zM17.92 34.05h2.48l1.24 2.16-1.24 2.15h-2.48l-1.25-2.15zm50 .04h2.48l1.24 2.15-1.24 2.15h-2.48l-1.25-2.15zm24 12.75-2.21 3.82 1.72 2.99-2.37 4.1H91l1.89-3.27h3.45l1.72-2.98H100v-1.67h-1.95l-1.72-2.99zm.96 1.67h2.48l1.24 2.15-1.24 2.16h-2.48l-1.25-2.16zm-50 .03h2.48l1.24 2.16-1.24 2.15h-2.48l-1.25-2.16z'  stroke-width='1' stroke='none' fill='%2311a75733'/></pattern></defs><rect width='800%' height='800%' transform='translate(0,0)' fill='url(%23a)'/></svg>");
  overflow: hidden;
}
@media (max-width: 767px) {
  .Area_fv {
    height: auto;
  }
}
.Area_fv .fv1 {
  position: relative;
  z-index: 2;
  width: 60%;
  padding: 7% 5% 5% 5%;
}
@media (max-width: 767px) {
  .Area_fv .fv1 {
    width: 80%;
  }
}
.Area_fv .fv1 .bl {
  position: absolute;
  width: 30%;
  top: 5%;
  left: -10%;
}
@media (max-width: 767px) {
  .Area_fv .fv1 .bl {
    left: 95%;
  }
}
.Area_fv .fv2 {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 5%;
}

.xslider_wrap {
  position: absolute;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  z-index: 1;
}
@media (min-width: 768px) {
  .xslider_wrap {
    width: 150%;
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
    top: 40%;
    left: -5%;
  }
}
@media (max-width: 767px) {
  .xslider_wrap {
    position: relative;
    height: 150px;
  }
}

.xslider_wrap2 {
  position: absolute;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  z-index: 0;
}
@media (min-width: 768px) {
  .xslider_wrap2 {
    height: 250px;
    width: 150%;
    -webkit-transform: rotate(40deg);
            transform: rotate(40deg);
    top: 20%;
    left: 0%;
  }
}
@media (max-width: 767px) {
  .xslider_wrap2 {
    position: relative;
    height: 150px;
  }
}
.xslider_wrap2 .xslider1,
.xslider_wrap2 .xslider2 {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  -webkit-animation: xslider2 25s 2s linear infinite;
          animation: xslider2 25s 2s linear infinite;
}
.xslider_wrap2 .xslider1 .xsliderbox,
.xslider_wrap2 .xslider2 .xsliderbox {
  width: 350px;
}
@media (max-width: 767px) {
  .xslider_wrap2 .xslider1 .xsliderbox,
  .xslider_wrap2 .xslider2 .xsliderbox {
    width: 50vw;
  }
}
.xslider_wrap2 .xslider1 .xsliderbox img,
.xslider_wrap2 .xslider2 .xsliderbox img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.xslider1,
.xslider2 {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  -webkit-animation: xslider 10s 2s linear infinite;
          animation: xslider 10s 2s linear infinite;
}

.xslider1 div,
.xslider2 div {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  padding: 10px;
}
@media (max-width: 767px) {
  .xslider1 div,
  .xslider2 div {
    padding: 3px;
  }
}

@-webkit-keyframes xslider {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes xslider {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes xslider2 {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes xslider2 {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.xsliderbox {
  width: 650px;
}
@media (max-width: 767px) {
  .xsliderbox {
    width: 50vw;
  }
}
.xsliderbox img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/*================================================
 *  Area_how
 ================================================*/
.Area_how {
  margin: 0 auto;
  width: 100%;
  background-color: #10A656;
  padding: 2% 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .Area_how {
    padding: 5% 0;
  }
}
.Area_how .how_t {
  position: relative;
  width: 50%;
  margin: 0 auto;
  z-index: 3;
}
@media (max-width: 767px) {
  .Area_how .how_t {
    width: 70%;
  }
}
.Area_how .how_flex {
  width: 100%;
  margin: 2% auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 2%;
}
@media (max-width: 767px) {
  .Area_how .how_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
    margin: 10% auto 0;
  }
}
.Area_how .how_flexbox {
  width: 30%;
}
@media (max-width: 767px) {
  .Area_how .how_flexbox:not(:nth-child(3)) {
    border-bottom: dotted 2px #FCEE21;
    margin-bottom: 4%;
  }
}
@media (max-width: 767px) {
  .Area_how .how_flexbox {
    width: 100%;
  }
}
.Area_how .how_flexbox_t {
  width: 50%;
}
@media (max-width: 767px) {
  .Area_how .how_flexbox_t {
    width: 25%;
  }
}
.Area_how .how_flexbox .step_t {
  height: 1.4em;
}
@media (max-width: 767px) {
  .Area_how .how_flexbox .step_t {
    height: 0.2em;
  }
}
.Area_how .how_flexbox .step {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .Area_how .how_flexbox .step {
    height: 60vw;
  }
}
.Area_how .how_flexbox .step img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 30%;
     object-position: 50% 30%;
  width: 100%;
  height: 100%;
}
.Area_how .how_flexbox p {
  color: #fff;
  font-weight: 600;
  font-size: 0.8em;
  line-height: 1.2em;
}
.Area_how .how_flexbox .step_text {
  margin-top: 2%;
  font-size: 0.8em;
}
@media (max-width: 767px) {
  .Area_how .how_flexbox .step_text {
    font-size: 0.6em;
    font-weight: 600;
    font-family: sans-serif;
  }
}

span.marker {
  font-weight: 600;
  background-image: -webkit-repeating-linear-gradient(135deg, #E23C9D 0, #E23C9D 3px, transparent 3px, transparent 6px);
  background-image: repeating-linear-gradient(-45deg, #E23C9D 0, #E23C9D 3px, transparent 3px, transparent 6px);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 30%;
  background-position: center 90%;
}
@media (max-width: 767px) {
  span.marker {
    font-weight: 600;
  }
}

/*================================================
 *  Area_voice
 ================================================*/
.Area_voice {
  margin: 0 auto;
  width: 100%;
  background-color: #fff;
  background-image: url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='100' height='57.76' patternTransform='scale(2) rotate(0)'><rect x='0' y='0' width='100%' height='100%' fill='%23ffffffff'/><path d='M5.75 0 2.89 4.96l-.42.73-.49.84-.06.1L0 9.97v3.34l2.47-4.27 7.36 12.75-7.85 13.6H0v1.73h2.02l7.34 12.72H0v1.67h9.36l-3.61 6.26h1.93l3.13-5.43 7.1-12.3h3.46l1.72-2.99h11.26l-7.4 12.82-.48.83.02.05-4.04 7.02h1.92l3.08-5.34 3.09 5.34h2.02l-3.6-6.23h11.22l1.73 2.99h4.41l2.2-3.83-1.71-2.98 5.65-9.8 7.37 12.75-4.1 7.1h1.97l3.6-6.23h15.66l3.6 6.23h2.02l-4.1-7.1 7.83-13.55H100v-1.74H86.3l-7.34-12.72h11.21l1.73 2.99h4.42l2.2-3.82-1.72-2.99L100 13.3V9.96L95.36 18H91.9l-1.72 2.98H78.93l7.4-12.82.48-.83-.03-.05L90.98 0h-1.92l-3.24 5.6L82.58 0h-2.02l3.75 6.5H73.09l-1.72-3h-4.42l-2.2 3.83 1.72 2.99-5.66 9.8-7.38-12.8L57.66 0h-1.93l-3.75 6.5H36.31L32.56 0h-1.92l4.2 7.28-7.88 13.64h-15.7L3.9 8.2h11.31l1.73 2.98h4.42l2.2-3.82-1.72-2.99L24.37 0h-1.93L20.4 3.54h-3.45l-1.73 2.99H3.92L7.67 0Zm62.17 5.17h2.48l1.24 2.16-1.24 2.15h-2.48l-1.25-2.15Zm-50 .04h2.48l1.24 2.15-1.24 2.15h-2.48l-1.25-2.15Zm55.17 2.95h11.26l-7.4 12.82-.49.84.03.05-6.09 10.55h-3.45l-1.72 2.99H53.9l6.9-11.96 7.1-12.3h3.46zm-36.74 0h15.63l7.39 12.79H48.05l-1.72-2.99H41.9l-2.2 3.82 1.72 3-5.6 9.7-7.34-12.7zm6.53 11.47h2.48l1.24 2.15-1.24 2.16h-2.48l-1.25-2.16zm50 .03h2.48l1.25 2.16-1.25 2.15h-2.48l-1.25-2.15zm-44.83 2.96h11.32l-6.9 11.95-7.1 12.3H41.9l-1.72 3H28.93l7.4-12.83.48-.83-.02-.05 6.09-10.55h3.45zm-36.76.03h15.67l7.35 12.72H23.09l-1.72-2.99h-4.42l-2.2 3.83 1.72 2.98-5.66 9.8-7.36-12.75Zm66.17.89 7.33 12.7-7.82 13.55H61.26L53.9 37.07h11.32l1.72 2.99h4.42l2.2-3.82-1.72-2.99zM17.92 34.05h2.48l1.24 2.16-1.24 2.15h-2.48l-1.25-2.15zm50 .04h2.48l1.24 2.15-1.24 2.15h-2.48l-1.25-2.15zm24 12.75-2.21 3.82 1.72 2.99-2.37 4.1H91l1.89-3.27h3.45l1.72-2.98H100v-1.67h-1.95l-1.72-2.99zm.96 1.67h2.48l1.24 2.15-1.24 2.16h-2.48l-1.25-2.16zm-50 .03h2.48l1.24 2.16-1.24 2.15h-2.48l-1.25-2.16z'  stroke-width='1' stroke='none' fill='%2311a75733'/></pattern></defs><rect width='800%' height='800%' transform='translate(0,0)' fill='url(%23a)'/></svg>");
  padding: 2% 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .Area_voice {
    padding: 5% 0 10% 0;
  }
}
.Area_voice .voice_t {
  position: relative;
  z-index: 4;
  width: 50%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .Area_voice .voice_t {
    width: 70%;
  }
}
.Area_voice .voice_t .bl {
  position: absolute;
  width: 25%;
  top: 0%;
  left: -40%;
  z-index: 5;
}
@media (max-width: 767px) {
  .Area_voice .voice_t .bl {
    width: 35%;
    top: 120%;
    left: 90%;
  }
}
.Area_voice .voice_img1 {
  width: 70%;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
}
@media (max-width: 767px) {
  .Area_voice .voice_img1 {
    width: 100%;
    margin-left: -20%;
  }
}
.Area_voice .voice_img2 {
  width: 70%;
  margin-left: auto;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}
@media (max-width: 767px) {
  .Area_voice .voice_img2 {
    width: 100%;
    margin-right: -20%;
  }
}
.Area_voice .voice_box {
  position: relative;
  z-index: 3;
  margin-top: -20%;
  margin-left: auto;
  width: 70%;
  background-color: #10A656;
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
  padding: 2%;
}
@media (max-width: 767px) {
  .Area_voice .voice_box {
    width: 85%;
  }
}
.Area_voice .voice_box_t {
  font-weight: bolder;
  font-size: 1.2em;
  color: #FCEE21;
  border-bottom: 1px solid #fff;
}
@media (max-width: 767px) {
  .Area_voice .voice_box_t {
    font-size: 0.8em;
  }
}
.Area_voice .voice_box_text {
  color: #fff;
  font-size: 0.8em;
}
@media (max-width: 767px) {
  .Area_voice .voice_box_text {
    font-size: 0.6em;
    font-weight: 600;
    font-family: sans-serif;
  }
}
.Area_voice .box_left {
  margin: -15% auto 0 0;
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
}

span.marker_y {
  font-weight: lighter;
  background-color: rgba(252, 238, 33, 0.5);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #E23C9D));
  background: -webkit-linear-gradient(transparent 50%, #E23C9D 50%);
  background: linear-gradient(transparent 50%, #E23C9D 50%);
}
@media (max-width: 767px) {
  span.marker_y {
    font-weight: 600;
  }
}

/*================================================
 *  Area_bl バルーン用
 ================================================*/
.Area_bl {
  width: 100%;
  position: relative;
}
.Area_bl .bl2 {
  position: absolute;
  width: 10%;
  top: -100px;
  right: 5%;
  z-index: 4;
}
@media (max-width: 767px) {
  .Area_bl .bl2 {
    width: 15%;
    right: 84%;
    top: -70px;
  }
}
.Area_bl .bl3 {
  position: absolute;
  width: 10%;
  top: -120px;
  right: 15%;
  z-index: 4;
}
@media (max-width: 767px) {
  .Area_bl .bl3 {
    width: 15%;
    right: 82%;
    top: -60px;
  }
}

/*================================================
 *  TOP埋め込み規約
 ================================================*/
.kiyaku p {
  color: #1a1a1a;
  text-align: left;
}
.kiyaku .kiyaku_t {
  text-align: center;
  font-weight: 600;
}
.kiyaku dl {
  margin: 3% auto;
}
.kiyaku dl dt {
  font-size: 1.1em;
  font-weight: 600;
  margin: 3% auto 0;
}

/*================================================
 *  特商一覧ページ
 ================================================*/
.Area_tokusyo {
  margin: 0 auto -3%;
  color: #1a1a1a;
  font-size: 16px;
  padding: 0 0 3% 0;
}
@media (max-width: 767px) {
  .Area_tokusyo {
    font-size: 14px;
  }
}
.Area_tokusyo .inner_tokusyo {
  background-color: #fdf8ea;
  padding: 0 3% 3% 3%;
}
.Area_tokusyo h1 {
  color: #10A656;
  font-size: 24px;
}
.Area_tokusyo dt {
  color: #FCEE21;
}
.Area_tokusyo dd {
  border-bottom: 1px dotted #1a1a1a;
  margin: 0 auto 3%;
}
.Area_tokusyo p {
  font-size: 18px;
  font-weight: 600;
}

/*================================================
 *  確認画面デザイン
 ================================================*/
.Area_confirmation {
  text-align: center;
  color: #fff;
  background: #10A656;
  background-size: 72px;
  background-repeat: repeat;
  z-index: 1;
  padding: 2% 0 5% 0;
  font-size: 1.2vw;
}
@media (max-width: 767px) {
  .Area_confirmation {
    font-size: 16px;
  }
}
.Area_confirmation .inner_confirmation {
  margin: 0 auto;
  width: 65%;
}
@media (max-width: 767px) {
  .Area_confirmation .inner_confirmation {
    width: 95%;
  }
}
.Area_confirmation .inner_confirmation .confirmation_box {
  padding: 3% 15% 5% 15%;
  color: #fff;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 767px) {
  .Area_confirmation .inner_confirmation .confirmation_box {
    padding: 0 5% 1% 5%;
  }
}
.Area_confirmation .inner_confirmation .confirmation_box h1 {
  font-size: 1em;
  margin: 0 auto;
  background-color: #E23C9D;
  color: #fff;
  padding: 1% 0 1% 0;
}
@media (max-width: 767px) {
  .Area_confirmation .inner_confirmation .confirmation_box h1 {
    font-size: 22px;
  }
}
.Area_confirmation .inner_confirmation .confirmation_box h2 {
  text-align: left;
  font-size: 0.8em;
  margin: 20px auto;
  padding: 2% 0 1% 0;
  border-bottom: solid 1px #fff;
}
.Area_confirmation .inner_confirmation .confirmation_box .field_conf {
  color: #E23C9D;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  text-align: left;
  border-bottom: 2px dotted #FFF;
}
.Area_confirmation .inner_confirmation .confirmation_box .disp-value {
  color: #fff;
  text-align: left;
  line-height: 1.8em;
}

.err-msg,
.err-msg2,
.err-msg3,
.err-msg4 {
  display: none;
  color: #1a1a1a;
  background-color: #FCEE21;
  border-radius: 1vw;
  padding: 2%;
  margin: 2% 2% 5% 2%;
}

/* ボタン並び */
.btn_flex {
  margin-top: 10%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn_herf {
  margin: 2%;
  padding: 1% 0 1% 0;
  font-size: 2.4vw;
}
@media (max-width: 767px) {
  .btn_herf {
    font-size: 22px;
  }
}

/* 修正ボタン */
.syusei {
  color: #fff;
  background-color: #FCEE21;
}
.syusei:hover {
  color: #ffffff;
}

/*================================================
 *  サンクスページデザイン
 ================================================*/
.Area_complete {
  text-align: center;
  color: #fff;
  background-color: #10A656;
  z-index: 1;
  padding: 2% 0 5% 0;
  height: 93%;
}
.Area_complete .inner_complete {
  display: inline-block;
  margin: 0 auto;
  width: 65%;
  text-align: center;
}
@media (max-width: 767px) {
  .Area_complete .inner_complete {
    width: 95%;
  }
}
.Area_complete .inner_complete h1 {
  background: #E23C9D;
  color: #fff;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .Area_complete .inner_complete h1 {
    font-size: 20px;
  }
}
.Area_complete .inner_complete h2 {
  background: #FCEE21;
  width: 70%;
  color: #1a1a1a;
  margin: 20px auto;
  font-size: 1.4em;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .Area_complete .inner_complete h2 {
    width: 85%;
    font-size: 20px;
    padding: 0 0 0 0;
  }
}
.Area_complete .inner_complete p {
  display: inline-block;
  text-align: left;
  padding: 10px 0 0 0;
  width: 70%;
  color: #fff;
}
@media (max-width: 767px) {
  .Area_complete .inner_complete p {
    width: 85%;
    font-size: 16px;
  }
}

/* 振込先 */
.box_bank {
  background-color: #10A656;
  color: #ffffff;
  width: 50%;
  text-align: left;
  margin: 0 auto;
  padding: 1% 0 1% 5%;
  border-radius: 2vw;
}
@media (max-width: 767px) {
  .box_bank {
    width: 75%;
    font-size: 16px;
  }
}

.card {
  width: 40%;
}
@media (max-width: 767px) {
  .card {
    font-size: 22px;
  }
}

/*================================================
 *  ヘッダー
 ================================================*/
.header {
  margin: 0 auto;
  overflow: hidden;
  background-position: center 40%;
  padding: 1% 0 1% 0;
}
.header img {
  width: 100%;
}
.header .hd_s {
  width: 50%;
  margin: 0 auto 0%;
}

/*================================================
 *  アニメーション
 ================================================*/
/*========= particle js を描画するエリア設定 ===============*/
#particles-js3 {
  z-index: -1;
  /*描画を一番下に*/
  width: 100%;
}

#wrapper3 {
  position: relative;
  /*描画を#particles-jsよりも上にするためposition:relative;を指定*/
  z-index: 1;
  /*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
  width: 100%;
  height: 100%;
}

/*================================================
 *  背景方眼紙
 ================================================*/
.bg_pattern {
  z-index: -1;
}

.Paper_v2 {
  background: url(../images/pt02.png) repeat;
  background-size: 10%;
}
@media (max-width: 767px) {
  .Paper_v2 {
    background-size: 20%;
  }
}

/*================================================
 *  アフィリエイター用LPデザイン
 ================================================*/
.Area_affi {
  margin: 0 auto 0;
  text-align: center;
}
.Area_affi img {
  width: 10%;
}

.line {
  height: auto;
}

/* Lineボタン */
.btn-flat_line2 {
  font-family: "fot-chiaro-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  width: 60%;
  margin: 5% auto 10%;
  font-size: 4vw;
  position: relative;
  padding: 0.5em 0 0.3em 0;
  text-decoration: none;
  color: #ffffff;
  background: #00b900;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: none;
  outline: none;
  border-radius: 3.5vw;
  cursor: pointer;
}
@media (max-width: 767px) {
  .btn-flat_line2 {
    width: 90%;
    font-size: 5.5vw;
    padding: 2vw 0 1vw 0;
    margin: 5% auto 5%;
  }
}
.btn-flat_line2:hover {
  background: #fb6103;
  color: #534741;
}
.btn-flat_line2:active {
  -webkit-transform: translate(6px, 6px);
  transform: translate(0px, 6px);
}
.btn-flat_line2 p {
  font-size: 2vw;
  padding: 20px 0 0 0;
}
@media (max-width: 767px) {
  .btn-flat_line2 p {
    font-size: 3.5vw;
    padding: 4vw 0 0 0;
  }
}

.orange {
  background-color: #ff7f00;
}/*# sourceMappingURL=style.css.map */