@charset "UTF-8";
/*--------------------------------------------------------------
# mixin
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# variables-site
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# normalize
--------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  height: 100%;
  min-height: 100%;
  width: 100%;
  word-break: break-all;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  background-color: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 3.8vw;
  font-weight: 400;
  text-align: left;
}
@media (min-width: 641px) and (max-width: 768px) {
  body {
    font-size: 2.8vw;
  }
}
@media (min-width: 769px) {
  body {
    font-size: 18px;
  }
}

p, li, dt, dd {
  line-height: 200%;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p, ol, ul,
dl, dt, dd,
blockquote {
  margin: 0;
}

dt {
  font-weight: 700;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

a {
  color: #000;
  outline: none;
}

a:hover {
  color: #f96239;
  text-decoration: underline;
}

a:visited {
  color: #000;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

figure {
  margin: 0;
}

img {
  border-style: none;
  display: block;
  width: 100%;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

/* Forms
	 ========================================================================== */
label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

/*--------------------------------------------------------------
# common
--------------------------------------------------------------*/
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 2deg);
    transform: rotate3d(0, 0, 1, 2deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -2deg);
    transform: rotate3d(0, 0, 1, -2deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 2deg);
    transform: rotate3d(0, 0, 1, 2deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -1deg);
    transform: rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.b {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: bold;
}

.big {
  font-size: 1.4em;
}

.key {
  color: #f96239;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: bold;
}

.num {
  font-family: "Bebas Neue", cursive;
}

.point {
  -webkit-text-emphasis: filled dot #000;
  text-emphasis: filled dot #000;
}

.serif {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.sub {
  font-size: .8em;
}

.u {
  text-decoration: underline;
}

.white {
  color: #fff;
}

mark {
  background: transparent;
  background-image: linear-gradient(transparent 70%, #fff799 30%);
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: bold;
}

h1 {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: bold;
}

#container {
  flex: 1;
  width: 100%;
}
#container .in {
  margin: auto;
  width: 100%;
}
@media (min-width: 769px) {
  #container .in {
    width: 1000px;
  }
}

main {
  width: 100%;
}
@media (min-width: 769px) {
  main {
    min-width: 1000px;
  }
}

.prehead {
  background: #f96239;
  color: #fff799;
  font-size: 5.32vw;
  font-weight: bold;
  letter-spacing: .05em;
  text-align: center;
  width: 100%;
}
@media (min-width: 641px) and (max-width: 768px) {
  .prehead {
    font-size: 3.92vw;
  }
}
@media (min-width: 769px) {
  .prehead {
    font-size: 29.7px;
    padding: 10px 0;
  }
}

header {
  background: url(../img/kv_bg.jpg) left 30% center no-repeat;
  background-size: 200%;
  height: 100vw;
  width: 100%;
}
@media (min-width: 641px) and (max-width: 768px) {
  header {
    height: auto;
  }
}
@media (min-width: 769px) {
  header {
    background: url(../img/kv_bg.jpg) left 50% center no-repeat;
    background-size: 180%;
    height: 585px;
  }
}
header .in {
  height: 100%;
}
header .kv--txt {
  background: url(../img/kv_img.png) bottom right -25vw no-repeat;
  background-size: 80%;
  color: #fff;
  height: 100%;
  padding: 5vw 2vw 0;
  position: relative;
}
@media (min-width: 769px) {
  header .kv--txt {
    background: url(../img/kv_img.png) bottom right no-repeat;
    background-size: 43%;
    padding: 80px 0 0;
  }
}
header .kv-logo {
  height: 33px;
  width: 190px;
}
header .kv-pop {
  height: 30vw;
  left: 56vw;
  position: absolute;
  top: 1vw;
  width: 40vw;
}
@media (min-width: 769px) {
  header .kv-pop {
    height: 144px;
    left: 420px;
    top: 15px;
    width: 275px;
  }
}
header h1 {
  font-size: 5.7vw;
  letter-spacing: .02em;
  line-height: 100%;
  margin: 5vw 0 0;
}
@media (min-width: 769px) {
  header h1 {
    font-size: 32.9994px;
    margin: 50px 0 0;
  }
}
@media (min-width: 769px) {
  header h1 .sub {
    font-size: .6em;
  }
}
header h1 .main {
  border-bottom: 3px solid;
  display: inline-block;
  font-size: 8.74vw;
  letter-spacing: .05em;
  padding: 7vw 0 1.5vw;
}
@media (min-width: 769px) {
  header h1 .main {
    font-size: 72px;
    padding: 40px 0 20px;
  }
}
header .kv-cap {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 3.04vw;
  font-weight: bold;
  letter-spacing: .05em;
  margin: 5vw 0 0;
}
@media (min-width: 769px) {
  header .kv-cap {
    font-size: 18px;
    margin: 18px 0 0 10px;
  }
}
header .present {
  background: url(../img/kv_movie.png) top left no-repeat;
  background-size: 100%;
  bottom: -16vw;
  height: 50vw;
  left: 0;
  position: absolute;
  width: 65vw;
}
@media (min-width: 769px) {
  header .present {
    bottom: -180px;
    height: 392px;
    width: 403px;
  }
}
header .present div {
  align-content: center;
  background: linear-gradient(90deg, #ff2368, #ff855d);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: 20vw;
  position: absolute;
  right: -35vw;
  top: 5vw;
  width: 33vw;
}
@media (min-width: 769px) {
  header .present div {
    background: linear-gradient(90deg, #ef5c8a, #f8c3b2);
    border-radius: 50%;
    height: 170px;
    right: -140px;
    top: -30px;
    width: 170px;
  }
}
header .present div > span {
  color: #fff;
  display: block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 3.04vw;
  font-weight: bold;
  line-height: 150%;
  text-align: center;
  width: 100%;
}
@media (min-width: 769px) {
  header .present div > span {
    font-size: 14.9994px;
    line-height: 180%;
  }
}
header .present div > span .num {
  font-size: 9.5vw;
  font-weight: normal;
  margin-right: .05em;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.7);
}
@media (min-width: 769px) {
  header .present div > span .num {
    font-size: 72px;
  }
}

section {
  padding: 6vw 0 10vw;
}
@media (min-width: 769px) {
  section {
    padding: 60px 0;
  }
}
section h2 {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 7.6vw;
  line-height: 130%;
  text-align: center;
}
@media (min-width: 769px) {
  section h2 {
    font-size: 47.7px;
  }
}
section .balloon {
  background: #f96239;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 130%;
  padding: 5vw 0;
  position: relative;
}
@media (min-width: 769px) {
  section .balloon {
    padding: 0;
  }
}
section .balloon::after {
  border: 1rem solid #f96239;
  bottom: -1rem;
  content: '';
  display: block;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) rotate(45deg);
  width: 0;
  z-index: -1;
}
@media (min-width: 769px) {
  section .balloon::after {
    border: 2rem solid #f96239;
    bottom: -1.5rem;
  }
}
section .balloon .in {
  position: relative;
}
@media (min-width: 769px) {
  section .balloon .in {
    padding: 30px 0;
  }
}
section .balloon strong {
  color: #fff799;
}
section .balloon .word {
  background: #fff;
  border: 3px solid #f96239;
  color: #f96239;
  font-size: 4.56vw;
  left: 0;
  line-height: 100%;
  padding: 2vw;
  position: absolute;
  top: -12vw;
}
@media (min-width: 769px) {
  section .balloon .word {
    font-size: 23.994px;
    padding: 10px 20px;
    top: -30px;
  }
}
section h3 {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  line-height: 150%;
  text-align: center;
}
@media (min-width: 769px) {
  section h3 {
    font-size: 29.988px;
  }
}
section .cap,
section .cap-em,
section .cap-slash {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 4.18vw;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 769px) {
  section .cap,
  section .cap-em,
  section .cap-slash {
    font-size: 36px;
  }
}
section .cap-slash {
  padding: 0 0 1vw;
}
@media (min-width: 769px) {
  section .cap-slash {
    padding: 0 0 10px;
  }
}
section .cap-slash > span {
  position: relative;
}
section .cap-slash > span::before, section .cap-slash > span::after {
  background: #f96239;
  content: '';
  display: block;
  height: 1.5em;
  position: absolute;
  top: 50%;
  transform-origin: center;
  width: 3px;
}
section .cap-slash > span::before {
  left: -1em;
  transform: translateY(-50%) rotate(-30deg);
}
section .cap-slash > span::after {
  right: -1em;
  transform: translateY(-50%) rotate(30deg);
}
section .cap-em {
  background: url(../img/double_angle.svg) bottom 2em center no-repeat;
  background-size: 5vw;
  font-size: 6.08vw;
  padding: 0 0 4em;
}
@media (min-width: 769px) {
  section .cap-em {
    background: url(../img/double_angle.svg) bottom 2em center no-repeat;
    background-size: 30px;
    font-size: 36px;
  }
}
section .cap-em > span {
  display: inline-block;
  padding-left: 2em;
  position: relative;
  text-align: left;
}
section .cap-em > span::before {
  background: url(../img/point.svg) no-repeat;
  background-size: contain;
  content: '';
  display: block;
  height: 1.5em;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5em;
}
@media (max-width: 768px) {
  section .cap-em .sub {
    display: inline-block;
    margin-bottom: .5em;
  }
}
section .txt {
  margin: auto;
  padding: 5vw 0 0;
  width: 96%;
}
@media (min-width: 769px) {
  section .txt {
    padding: 60px 0 0;
    width: 80%;
  }
}
section .txt p:not(:last-child) {
  margin-bottom: 1.5em;
}
section .txt-img {
  margin: auto;
  padding: 5vw 0 0;
  width: 96%;
}
@media (min-width: 769px) {
  section .txt-img {
    padding: 60px 0 0;
    width: 80%;
  }
}
section .txt-img::after {
  content: '';
  display: block;
  clear: both;
}
section .txt-img picture {
  display: block;
  float: right;
  margin: 0 0 1em;
  width: 100%;
}
@media (min-width: 769px) {
  section .txt-img picture {
    margin: 0 0 1em 1.5em;
    width: 40%;
  }
}
section .txt-img p:not(:last-child) {
  margin-bottom: 1.5em;
}
section .img-txt {
  margin: auto;
  padding: 5vw 0 0;
  width: 96%;
}
@media (min-width: 769px) {
  section .img-txt {
    padding: 60px 0 0;
    width: 80%;
  }
}
section .img-txt::after {
  content: '';
  display: block;
  clear: both;
}
section .img-txt picture {
  display: block;
  float: left;
  margin: 0 0 1em;
  width: 100%;
}
@media (min-width: 769px) {
  section .img-txt picture {
    margin: 0 1.5em 1em 0;
    width: 40%;
  }
}
section .img-txt p:not(:last-child) {
  margin-bottom: 1.5em;
}

.section-gray {
  background: #eee;
}

.section-orange {
  background: linear-gradient(90deg, #f95956, #fb715a, #fc9f60);
}

.section-cta h2 {
  color: #f96239;
}
@media (min-width: 769px) {
  .section-cta h2 {
    font-size: 59.994px;
  }
}
.section-cta .in {
  padding: 10vw 2% 0;
}
@media (min-width: 769px) {
  .section-cta .in {
    padding: 60px 0 0;
  }
}
.section-cta form {
  border: 4px solid #f96239;
  margin: auto;
  padding: 17vw 3vw 2vw;
  position: relative;
  width: 100%;
}
@media (min-width: 769px) {
  .section-cta form {
    padding: 20px 50px;
    width: 90%;
  }
}
.section-cta .circle {
  display: flex;
  justify-content: space-between;
  left: 1vw;
  position: absolute;
  top: -8vw;
  width: 52vw;
}
@media (min-width: 769px) {
  .section-cta .circle {
    left: 10px;
    top: -40px;
    width: 255px;
  }
}
.section-cta .circle div {
  align-content: center;
  background: linear-gradient(90deg, #f95956, #fb715a, #fc9f60);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 3.23vw;
  font-weight: bold;
  height: 22vw;
  justify-content: center;
  padding: 2vw;
  position: relative;
  width: 22vw;
}
@media (min-width: 769px) {
  .section-cta .circle div {
    font-size: 16.2px;
    height: 110px;
    padding: 10px;
    width: 110px;
  }
}
.section-cta .circle div:first-child::after {
  color: #000;
  content: '+';
  font-size: 2em;
  position: absolute;
  right: -6.5vw;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 769px) {
  .section-cta .circle div:first-child::after {
    right: -30px;
  }
}
.section-cta .circle div > span {
  text-align: center;
  width: 100%;
}
.section-cta .circle div > span:last-child {
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.7);
}
.section-cta .circle .num {
  font-size: 10.64vw;
  font-weight: normal;
  line-height: 1;
  margin-right: .05em;
}
@media (min-width: 769px) {
  .section-cta .circle .num {
    font-size: 50.4px;
  }
}
.section-cta .tit {
  color: #f96239;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 5.7vw;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 769px) {
  .section-cta .tit {
    font-size: 23.994px;
  }
}
.section-cta .mailform {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 5vw 0;
}
@media (min-width: 769px) {
  .section-cta .mailform {
    padding: 30px 0;
  }
}
.section-cta .mailform label {
  align-items: center;
  display: flex;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 3.04vw;
  font-weight: bold;
  justify-content: center;
  width: 100%;
}
@media (min-width: 769px) {
  .section-cta .mailform label {
    font-size: 18px;
  }
}
.section-cta .mailform input {
  background: #eee;
  border: 1px solid #d2d2d2;
  border-radius: 5px;
  box-shadow: none;
  margin-left: 10px;
  padding: 2vw 2vw;
  width: 60vw;
}
@media (min-width: 769px) {
  .section-cta .mailform input {
    padding: .5em 1em;
    width: 80%;
  }
}
.section-cta .mailform button {
  /*background: linear-gradient(90deg, #f95956, #fb715a, #fc9f60);*/
	background : linear-gradient(90deg, rgb(52, 116, 224), rgb(52, 161, 224), rgb(58, 205, 232));
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 4.56vw;
  font-weight: bold;
  margin-top: 5vw;
  padding: 2vw 0;
  position: relative;
  transition: .3s;
  width: 70vw;
}
@media (min-width: 769px) {
  .section-cta .mailform button {
    font-size: 29.988px;
    margin-top: 25px;
    padding: 8px;
    width: 48%;
  }
}
.section-cta .mailform button span {
  transition: .3s;
}
.section-cta .mailform button:hover {
/*  background: linear-gradient(90deg, #ec3733, #ec5339, #fa9e39);*/
  background : linear-gradient(90deg, rgb(52, 116, 224), rgb(52, 161, 224), rgb(58, 205, 232));
}
.section-cta .mailform .btn-change::before {
  content: attr(data-hover);
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -150%);
  transition: .3s;
  width: 100%;
}
.section-cta .mailform .btn-change:hover span {
  opacity: 0;
}
.section-cta .mailform .btn-change:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.section-cta .notes {
  border-top: 1px solid #d2d2d2;
  font-size: 2.66vw;
  padding: 5vw 0 0;
  text-align: center;
  width: 100%;
}
@media (min-width: 769px) {
  .section-cta .notes {
    font-size: 11.988px;
    padding: 25px 0 0;
  }
}
.section-cta .notes ul {
  display: inline-block;
  padding-left: 1.5em;
}
.section-cta .notes li {
  line-height: 130%;
  margin: 0 0 .75em;
  text-align: left;
}

.section-profile {
  padding: 0;
}
.section-profile .in {
  background: url(../img/profile.jpg) left -25vw top -5vw no-repeat;
  background-size: 150%;
  padding: 20vw 0 5vw;
}
@media (min-width: 769px) {
  .section-profile .in {
    background: url(../img/profile.jpg) left center no-repeat;
    background-size: auto 100%;
    padding: 100px 0 40px;
  }
}
.section-profile h2 {
  font-size: 6.84vw;
  margin: 0 0 0 44%;
  text-align: left;
  width: 56%;
}
@media (min-width: 769px) {
  .section-profile h2 {
    font-size: 47.988px;
    margin: 0 5% 0 45%;
    width: 50%;
  }
}
.section-profile h2 .sub {
  display: block;
  font-size: 3.42vw;
  line-height: 180%;
  margin: 10px 0 0;
}
@media (min-width: 769px) {
  .section-profile h2 .sub {
    font-size: 18px;
    margin: 10px 0 0;
  }
}
.section-profile .txt {
  font-size: 3.04vw;
  margin: 18vw auto 0;
  padding: 3vw;
  text-align: left;
  width: 96%;
}
@media (max-width: 768px) {
  .section-profile .txt {
    background: linear-gradient(rgba(255, 255, 255, 0.85), #eee, #fff);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  }
}
@media (min-width: 769px) {
  .section-profile .txt {
    font-size: 15.984px;
    margin: 0 5% 0 45%;
    padding: 40px 0 0;
    width: 50%;
  }
}

.misunderstand {
  background: url(../img/miss_bg.jpg) right -10vw top no-repeat;
  background-size: 80%;
  color: #fff;
  display: block;
  font-size: 4.56vw;
  list-style-type: none;
  margin: 5vw 0 0;
  padding: 5vw 35% 10vw 0;
  width: 100%;
}
@media (min-width: 769px) {
  .misunderstand {
    background: url(../img/miss_bg.jpg) right top no-repeat;
    background-size: auto 100%;
    font-size: 36px;
    margin: 50px 0 0;
    padding: .5em 45% 2em 0;
  }
}
.misunderstand li {
  background: linear-gradient(90deg, #c64e2d, #f75c33);
  margin-top: 3vw;
  padding: 1vw 3vw;
}
@media (min-width: 769px) {
  .misunderstand li {
    margin-top: 20px;
    padding: 6px 1em;
  }
}
.misunderstand .b {
  color: #fff799;
}

.frame {
  background: #fff;
  border: 2px solid #f96239;
  box-shadow: 0 0 0 7px #fff;
  display: block;
  margin: 20px auto;
  padding: 5vw 3vw;
  width: 90%;
}
@media (min-width: 769px) {
  .frame {
    padding: 40px;
  }
}
.frame .check {
  padding: 8vw 0 0;
  width: 100%;
}
@media (min-width: 769px) {
  .frame .check {
    padding: 40px 0 0;
  }
}

.movie {
  list-style-type: none;
  margin: auto;
  padding: 8vw 0 0;
  width: 92%;
}
@media (min-width: 769px) {
  .movie {
    padding: 60px 0 0;
    width: 90%;
  }
}
.movie > li {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: block;
  padding: 8vw 3vw 3vw;
  position: relative;
}
@media (min-width: 769px) {
  .movie > li {
    padding: 60px 40px 40px;
  }
}
.movie > li:not(:last-child) {
  margin-bottom: 10vw;
}
@media (min-width: 769px) {
  .movie > li:not(:last-child) {
    margin-bottom: 60px;
  }
}
.movie .label {
  background: linear-gradient(90deg, #f95956, #fb715a, #fc9f60);
  color: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 3.8vw;
  font-weight: bold;
  left: -3vw;
  padding: 1vw 2vw;
  position: absolute;
  top: -4vw;
  transform: rotate(-10deg);
}
@media (min-width: 769px) {
  .movie .label {
    font-size: 29.988px;
    left: -1em;
    padding: 8px 20px;
    top: 0;
  }
}
.movie .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 5vw 0 0;
}
@media (min-width: 769px) {
  .movie .content {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 40px 0 0;
  }
}
.movie .txt {
  padding: 5vw 0;
}
@media (max-width: 768px) {
  .movie .txt {
    order: 1;
  }
}
@media (min-width: 769px) {
  .movie .txt {
    padding: 0 20px 0 0;
  }
}
.movie .img {
  height: auto;
  width: 90%;
}
@media (max-width: 768px) {
  .movie .img {
    height: 50vw;
    margin: auto;
    order: 0;
  }
}
@media (min-width: 769px) {
  .movie .img {
    height: 200px;
    width: 350px;
  }
}
.movie .img iframe {
  border: none;
  height: 100%;
  width: 100%;
}

.voice {
  list-style-type: none;
  padding: 0;
}
.voice li {
  background: #fff;
  border: 2px solid #f96239;
  box-shadow: 0 0 0 7px #fff;
  display: block;
  margin: 8vw auto 0;
  padding: 5vw 3vw 3vw;
  width: 90%;
}
@media (min-width: 769px) {
  .voice li {
    margin: 60px auto 0;
    padding: 40px;
  }
}
.voice li:not(:first-child) {
  margin-top: 10vw;
}
@media (min-width: 769px) {
  .voice li:not(:first-child) {
    margin: 60px auto 0;
  }
}
.voice .customer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 5vw auto 0;
  width: 100%;
}
@media (min-width: 769px) {
  .voice .customer {
    margin: 30px auto 0;
    width: 80%;
  }
}
.voice .customer-info {
  font-size: 3.04vw;
  line-height: 150%;
  margin-left: 1em;
}
@media (min-width: 769px) {
  .voice .customer-info {
    font-size: 13.986px;
    line-height: 200%;
  }
}
.voice .customer-name {
  display: inline-block;
  font-size: 4.18vw;
  margin: 2vw 0;
}
@media (min-width: 769px) {
  .voice .customer-name {
    font-size: 23.994px;
    margin: 0;
  }
}
.voice .comment {
  height: 40vw;
  margin: 5vw auto 0;
  overflow: hidden;
  position: relative;
  transition: .5s;
  width: 100%;
}
@media (min-width: 769px) {
  .voice .comment {
    height: 200px;
    margin: 30px auto 0;
  }
}
.voice .comment::before {
  background: linear-gradient(rgba(255, 255, 255, 0), #fff, #fff);
  bottom: 0;
  content: '';
  display: block;
  height: 15vw;
  position: absolute;
  width: 100%;
}
@media (min-width: 769px) {
  .voice .comment::before {
    height: 100px;
  }
}
.voice .comment::after {
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.3);
  bottom: 0;
  color: #000;
  content: '続きを読む';
  cursor: pointer;
  display: flex;
  justify-content: center;
  height: 10vw;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 80%;
}
@media (min-width: 769px) {
  .voice .comment::after {
    height: 50px;
    width: 60%;
  }
}
.voice .comment.open {
  height: auto;
  overflow: visible;
}
.voice .comment.open::before, .voice .comment.open::after {
  display: none;
}
.voice h4 {
  background: linear-gradient(90deg, #f95956, #fb715a, #fc9f60);
  color: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: bold;
  line-height: 150%;
  padding: 1.5vw 2vw;
}
@media (min-width: 769px) {
  .voice h4 {
    padding: 4px 15px;
  }
}
.voice h4:not(:first-child) {
  margin-top: 5vw;
}
@media (min-width: 769px) {
  .voice h4:not(:first-child) {
    margin-top: 20px;
  }
}
.voice .txt {
  padding: 3vw 0 0;
  width: 100%;
}
@media (min-width: 769px) {
  .voice .txt {
    font-size: 15.984px;
    padding: 20px 0;
  }
}

.case h2 {
  line-height: 110%;
}
.case .btn {
  display: flex;
  justify-content: center;
  padding: 5vw 0;
}
@media (min-width: 769px) {
  .case .btn {
    padding: 40px 0 20px;
  }
}
.case .btn a {
  align-items: center;
  border: 2px solid #000;
  border-radius: 5px;
  display: flex;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: bold;
  justify-content: center;
  padding: 2vw;
  text-decoration: none;
  transition: .3s;
  width: 70vw;
}
@media (min-width: 769px) {
  .case .btn a {
    padding: 10px 0;
    width: 35%;
  }
}
.case .btn:hover {
  opacity: .7;
}
.case .btn span {
  display: inline-block;
  padding-right: 1.5em;
  position: relative;
}
.case .btn span::after {
  background: url(../img/link.svg) no-repeat;
  background-size: contain;
  content: '';
  display: block;
  height: 1em;
  position: absolute;
  right: 0;
  top: 48%;
  transform: translateY(-50%);
  width: 1em;
}

.check {
  list-style-type: none;
  padding: 0;
}
.check li {
  line-height: 130%;
  padding-left: 2em;
  position: relative;
}
.check li:not(:first-child) {
  margin-top: 5vw;
}
@media (min-width: 769px) {
  .check li:not(:first-child) {
    margin-top: 30px;
  }
}
.check li::before {
  background: url(../img/check_box.svg) no-repeat;
  background-size: contain;
  content: '';
  display: block;
  height: 1.5em;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5em;
}

.check--bk li {
  padding-left: 1.5em;
}
.check--bk li::before {
  background: url(../img/check_angle.svg) no-repeat;
  background-size: contain;
  height: 1em;
  width: 1em;
}

footer {
  background: #fafafa;
  font-size: 3.04vw;
}
@media (min-width: 769px) {
  footer {
    font-size: 11.988px;
  }
}
footer .in {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: auto;
  padding: 8vw 3vw;
}
@media (min-width: 769px) {
  footer .in {
    justify-content: space-between;
    padding: 40px 4%;
  }
}
footer .info {
  align-items: center;
  display: flex;
}
@media (max-width: 768px) {
  footer .info {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}
@media (max-width: 768px) {
  footer .info p {
    margin: 3vw 0 0;
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 769px) {
  footer .info p {
    border-left: 1px solid;
    font-size: 11.988px;
    padding-left: 1em;
  }
}
footer .logo {
  width: 60vw;
}
@media (min-width: 769px) {
  footer .logo {
    margin-right: 20px;
    width: 238px;
  }
}
footer .footer-nav ul {
  list-style-type: none;
  padding: 0;
}
@media (max-width: 768px) {
  footer .footer-nav ul {
    display: flex;
    justify-content: space-around;
    margin: 5vw 0 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  footer .footer-nav li {
    margin: 0 2vw;
  }
}
footer .copy {
  background: #f96239;
  color: #fff;
  letter-spacing: .05em;
  padding: .25em 0;
  text-align: center;
}
@media (min-width: 769px) {
  footer .copy small {
    font-size: 10.98px;
  }
}

#page-top {
  bottom: 10vw;
  position: fixed;
  right: 5vw;
}
@media (min-width: 769px) {
  #page-top {
    bottom: 50px;
    right: 50px;
  }
}
#page-top a {
  align-items: center;
  background: rgba(249, 98, 57, 0.6);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  height: 15vw;
  width: 15vw;
}
@media (min-width: 641px) and (max-width: 768px) {
  #page-top a {
    height: 10vw;
    width: 10vw;
  }
}
@media (min-width: 769px) {
  #page-top a {
    height: 70px;
    width: 70px;
  }
}
#page-top span {
  background: url(img/svg/angle-top-wh.svg) no-repeat;
  background-size: contain;
  display: block;
  height: 5vw;
  width: 5vw;
}
@media (min-width: 641px) and (max-width: 768px) {
  #page-top span {
    height: 3vw;
    width: 3vw;
  }
}
@media (min-width: 769px) {
  #page-top span {
    height: 30px;
    width: 30px;
  }
}

@media (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
}


/* --- 追加分ここから --- */

footer {
  padding-bottom: 16vw;
}

@media (min-width: 769px) {
  footer {
    padding-bottom: 150px;
  }
}

#footer-cta {
  align-items: center;
  background: #fff;
  bottom: 0;
  box-shadow: 0 -1px 0 1px rgba(0,0,0,.2);
  display: flex;
  height: 16vw;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  width: 100%;
}

@media (min-width: 769px) {
  #footer-cta {
    box-shadow: 0 -2px 0 2px rgba(0,0,0,.2);
    height: 120px;
  }
}

#footer-cta a {
  /*background: linear-gradient(90deg, #f95956, #fb715a, #fc9f60);*/
	background : linear-gradient(90deg, rgb(52, 116, 224), rgb(52, 161, 224), rgb(58, 205, 232));
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 4.56vw;
  font-weight: bold;
  padding: 2vw 1.5em;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: .3s;
}
@media (min-width: 769px) {
  #footer-cta a {
    font-size: 29.988px;
    padding: .5em 3em;
    width: auto;
  }
}
#footer-cta a span {
  transition: .3s;
}
#footer-cta a:hover {
 /* background: linear-gradient(90deg, #ec3733, #ec5339, #fa9e39);*/
	background : linear-gradient(90deg, rgb(52, 116, 224), rgb(52, 161, 224), rgb(58, 205, 232));
}
#footer-cta a .btn-change::before {
  content: attr(data-hover);
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -150%);
  transition: .3s;
  width: 100%;
}
#footer-cta a .btn-change:hover span {
  opacity: 0;
}
#footer-cta a .btn-change:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%);
}