@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
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, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

body {
  line-height: 1; }

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

nav ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

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

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

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

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0; }

input, select {
  vertical-align: middle; }

/* Specify the box size calculation method */
*,
*::before,
*::after {
  box-sizing: border-box; }

/* Improved responsiveness of links and buttons on touch devices */
a,
area,
button,
[role="button"],
input:not([type="range"]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation; }

/* --------------------
	Settings
	変数・mixin設定
-------------------- */
/*
	書体
-------------------- */
/*
$font_googleFont02: 'Noto Sans JP', sans-serif;
$font_googleFont03: 'Noto Sans JP', sans-serif;
*/
/*
@mixin font02() {
	font-family: $font_googleFont02;
	font-weight: $font_regular;
	font-style: normal;
}
@mixin font03() {
	font-family: $font_googleFont03;
	font-weight: $font_regular;
	font-style: normal;
}
*/
/*
	カラー
-------------------- */
/*$bg_marker01: linear-gradient(transparent 0, transparent 10%, $color02 10%, $color02 100%);*/
/*
	その他
-------------------- */
/* --------------------
	Base
	基本設定
-------------------- */
html {
  font-size: 1.8vw; }
  @media screen and (min-width: 750px) {
    html {
      font-size: 18px; } }
  @media screen and (max-width: 768px) {
    html {
      font-size: 3.86vw; } }

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal; }
  body a {
    color: inherit;
    text-decoration: none; }
  body img {
    width: 100%;
    height: auto;
    vertical-align: bottom; }
  body em {
    font-style: normal; }
  body li {
    list-style: none; }
  body h1, body h2, body h3, body h4, body h5, body h6 {
    font-weight: inherit; }

.wrap {
  background: white;
  width: 100%;
  color: #333333; }

/* --------------------
	Layout
-------------------- */
/* Mixin */
/* common parts */
/* background image */
/* button */
/*
	Wrap
------------------------------------------------------------ */
html, body {
  height: 100%; }

body:after {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("../images/bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1; }

body a {
  transition: all .2s ease-in-out;
  cursor: pointer; }
  body a:hover {
    opacity: .7; }
  @media screen and (max-width: 768px) {
    body a:hover {
      opacity: 1; } }

.wrap {
  max-width: 750px;
  margin: 0 auto; }
  .wrap img {
    width: 100%;
    height: auto; }

/*
	Header
------------------------------------------------------------ */
.header {
  background: #333333;
  padding: 1rem 0; }
  .header__heading {
    margin: 0 auto;
    width: 50%; }

/* visual */
.visual {
  background-color: #08151f;
  background-image: url("../images/visual.webp");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover; }
  .visual__inner {
    max-width: 750px;
    margin: 0 auto; }
  .visual__heading {
    padding: 0 1rem 1rem; }

/*
	Contents
------------------------------------------------------------ */
.contents {
  background: transparent;
  color: #333333;
  /* 埋め込み地図・動画 レスポンシブ対応用 */ }
  .contents .video,
  .contents .map {
    width: 100%;
    max-width: 750px;
    height: 0;
    margin: 0 auto;
    padding-top: 56.25%;
    position: relative;
    overflow: hidden; }
    .contents .video iframe,
    .contents .map iframe {
      width: 100% !important;
      height: 100% !important;
      position: absolute;
      top: 0;
      left: 0; }

/*
	Contents	主な編集箇所
------------------------------------------------------------ */
/* cv */
.cv {
  background-color: #ffffff;
  background-image: url("../images/cv.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  .cv__text {
    background: #00b696;
    color: white;
    text-align: center;
    font-size: 1.3rem;
    letter-spacing: .05em;
    padding: .8rem 0;
    font-weight: 700; }
  .cv__inner {
    max-width: 750px;
    margin: 0 auto;
    width: 90%;
    padding: 2rem 0; }
  .cv__tel {
    margin: 1rem 0; }
    .cv__tel a {
      display: block;
      text-align: center;
      border-radius: 50px;
      background: linear-gradient(0deg, #f2e900, #ffffff);
      border: 3px solid #333333;
      position: relative;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      padding: 1rem 0;
      font-size: 3rem; }
      .cv__tel a::before {
        content: " ";
        position: absolute;
        width: 2rem;
        height: 2rem;
        background-image: url("../images/icon_tel.svg");
        background-size: 100%;
        left: 2rem;
        top: 50%;
        transform: translateY(-50%);
        margin: auto; }
      .cv__tel a::after {
        content: " ";
        position: absolute;
        width: 1.6rem;
        height: 1.65rem;
        background-image: url("../images/icon_arrow.svg");
        background-size: 100%;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
        margin: auto;
        background-repeat: no-repeat; }
  .cv__button {
    display: flex;
    align-items: stretch;
    justify-content: space-between; }
    .cv__button-item {
      width: 49%; }
      .cv__button-item01 a {
        display: block;
        text-align: center;
        border-radius: 50px;
        background: linear-gradient(0deg, #3cedd5, #d9f1ff);
        border: 3px solid #333333;
        font-weight: 700;
        padding: 1rem 0 1.2rem;
        font-size: 1.6rem;
        position: relative; }
        .cv__button-item01 a::before {
          content: " ";
          position: absolute;
          width: 2rem;
          height: 2rem;
          background-image: url("../images/icon_mail.svg");
          background-size: 100%;
          left: 1rem;
          top: 50%;
          transform: translateY(-50%);
          margin: auto; }
        .cv__button-item01 a::after {
          content: " ";
          position: absolute;
          width: 1.6rem;
          height: 1.6rem;
          background-image: url("../images/icon_arrow.svg");
          background-size: 100%;
          right: 1rem;
          top: 50%;
          transform: translateY(-50%);
          margin: auto; }
      .cv__button-item02 a {
        display: block;
        text-align: center;
        border-radius: 50px;
        background: linear-gradient(0deg, #00ea79, #caffca);
        border: 3px solid #333333;
        font-weight: 700;
        padding: 1rem 0 1.2rem;
        font-size: 1.6rem;
        position: relative; }
        .cv__button-item02 a::before {
          content: " ";
          position: absolute;
          width: 2rem;
          height: 2rem;
          background-image: url("../images/icon_line.svg");
          background-size: 100%;
          left: 1rem;
          top: 50%;
          transform: translateY(-50%);
          margin: auto; }
        .cv__button-item02 a::after {
          content: " ";
          position: absolute;
          width: 1.6rem;
          height: 1.6rem;
          background-image: url("../images/icon_arrow.svg");
          background-size: 100%;
          right: 1rem;
          top: 50%;
          transform: translateY(-50%);
          margin: auto;
          background-repeat: no-repeat; }
  @media screen and (max-width: 768px) {
    .cv__text {
      font-size: 3.8vw; }
    .cv__tel {
      margin: 1rem 0; }
      .cv__tel a {
        padding: 1rem 0;
        font-size: 8vw; }
        .cv__tel a::before {
          width: 7vw;
          height: 7vw;
          left: 1.5rem; }
        .cv__tel a::after {
          width: 5vw;
          height: 5vw;
          right: 1.5rem; }
    .cv__button-item01 a {
      font-size: 4.5vw; }
      .cv__button-item01 a::before {
        width: 5vw;
        height: 5vw;
        left: .7rem; }
      .cv__button-item01 a::after {
        width: 4vw;
        height: 4vw;
        right: .7rem; }
    .cv__button-item02 a {
      font-size: 4.5vw; }
      .cv__button-item02 a::before {
        width: 5vw;
        height: 5vw;
        left: .7rem; }
      .cv__button-item02 a::after {
        width: 4vw;
        height: 4vw;
        right: .7rem; } }

/* 全ブロック共通 */
.intro,
.answer,
.price,
.reason,
.promise,
.voice,
.flow,
.faq,
.area,
.contact {
  padding: 2rem 0; }
  @media screen and (max-width: 768px) {
    .intro,
    .answer,
    .price,
    .reason,
    .promise,
    .voice,
    .flow,
    .faq,
    .area,
    .contact {
      padding: 8vw 0; } }
  .intro__inner,
  .answer__inner,
  .price__inner,
  .reason__inner,
  .promise__inner,
  .voice__inner,
  .flow__inner,
  .faq__inner,
  .area__inner,
  .contact__inner {
    max-width: 750px;
    margin: 0 auto;
    width: 90%;
    font-size: 1.3rem; }
  .intro__heading,
  .answer__heading,
  .price__heading,
  .reason__heading,
  .promise__heading,
  .voice__heading,
  .flow__heading,
  .faq__heading,
  .area__heading,
  .contact__heading {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    padding: .5rem 0 1rem;
    line-height: 1.5em; }
  .intro__text,
  .answer__text,
  .price__text,
  .reason__text,
  .promise__text,
  .voice__text,
  .flow__text,
  .faq__text,
  .area__text,
  .contact__text {
    line-height: 1.5em; }
  .intro__image img,
  .answer__image img,
  .price__image img,
  .reason__image img,
  .promise__image img,
  .voice__image img,
  .flow__image img,
  .faq__image img,
  .area__image img,
  .contact__image img {
    width: 100%;
    height: auto; }
  @media screen and (max-width: 768px) {
    .intro__heading,
    .answer__heading,
    .price__heading,
    .reason__heading,
    .promise__heading,
    .voice__heading,
    .flow__heading,
    .faq__heading,
    .area__heading,
    .contact__heading {
      font-size: 6.5vw; } }

/* 各ブロック個別 */
.campaign__image {
  padding: 1rem 0 0; }

.intro {
  background-color: #0083e0;
  background-image: url("../images/intro.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative; }
  .intro::before {
    position: absolute;
    background-image: url("../images/intro_image.webp");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 12rem;
    height: 12.5rem;
    bottom: 0;
    right: 0;
    content: " ";
    z-index: 1; }
  .intro__heading {
    font-size: 1.8rem;
    color: white; }
  .intro__list {
    border: white solid 3px;
    padding: 1rem 2rem;
    color: white;
    font-weight: 700; }
    .intro__list-item {
      position: relative;
      padding: 1rem 0 1rem 1.6rem; }
      .intro__list-item01, .intro__list-item02, .intro__list-item03, .intro__list-item04 {
        border-bottom: white 1px solid; }
      .intro__list-item::before {
        position: absolute;
        background-image: url("../images/intro_icon.svg");
        background-repeat: no-repeat;
        background-size: 100%;
        width: 1.3rem;
        height: 1.3rem;
        left: 0;
        content: " "; }
  @media screen and (max-width: 768px) {
    .intro::before {
      width: 30vw;
      height: 32vw; }
    .intro__heading {
      font-size: 4.5vw; }
    .intro__list {
      padding: 0.5rem 1rem; }
      .intro__list-item {
        padding: 1rem 0 1rem 4.2vw;
        font-size: 3.5vw; }
        .intro__list-item::before {
          width: 3.5vw;
          height: 3.5vw; } }

.answer {
  padding: 1rem 0 2rem;
  background-color: #cde7eb; }
  .answer__heading {
    line-height: 1.3em; }
  .answer__image {
    display: flex;
    align-items: flex-end;
    justify-content: center; }
    .answer__image .time {
      width: 40%;
      margin: 0 .5rem 0 0; }
  @media screen and (max-width: 768px) {
    .answer {
      padding: 2rem 0 1.5rem; } }

.price__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: wrap;
  margin: 0 auto;
  font-weight: 600; }
  .price__list-item {
    width: 49%;
    background: #ffef00;
    border: #333333 solid 3px;
    padding: .25rem;
    font-size: 1.2rem;
    margin: 0 0 .5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: center; }
    .price__list-item .icon {
      width: 14%;
      margin: 0 0 0 .5rem; }
    .price__list-item .title {
      margin: 0 0.5rem 0; }
    .price__list-item .number {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.4rem; }
.price__text {
  text-align: center;
  font-weight: 700;
  padding: 1rem 0 0;
  line-height: 1.8em; }
  .price__text .large {
    font-size: 1.8rem; }
  .price__text .orange {
    color: #ff6549; }
@media screen and (max-width: 768px) {
  .price__list {
    display: block; }
    .price__list-item {
      width: 100%;
      justify-content: center;
      font-size: 5vw; }
      .price__list-item .icon {
        width: 14%; }
      .price__list-item .title {
        width: 36%; }
      .price__list-item .number {
        font-family: 'Montserrat', sans-serif;
        font-size: 6vw; }
  .price__text {
    font-size: 3.7vw; }
    .price__text .large {
      font-size: 4.5vw; } }

.reason {
  background: #cde7eb; }
  .reason__heading {
    padding: 0.5rem 0 2rem; }
  .reason__box {
    background: white;
    border: #333333 solid 3px;
    padding: 2rem;
    margin: 0 0 1rem;
    position: relative; }
    .reason__box .number {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.5rem;
      font-weight: 500;
      color: #00b4cf; }
    .reason__box .head {
      font-size: 1.8rem;
      font-weight: 700;
      line-height: 1.5em;
      padding: 0 0 1rem; }
    .reason__box .orange {
      color: #ff6549; }
    .reason__box .text {
      text-align: justify;
      line-height: 1.5em; }
    .reason__box .image {
      position: absolute;
      top: -3px;
      right: -3px;
      border: #333333 solid 3px;
      width: 38%; }
  @media screen and (max-width: 768px) {
    .reason__box {
      padding: 1rem 1rem 2rem; }
      .reason__box .number {
        font-size: 6vw; }
      .reason__box .head {
        font-size: 4.5vw; }
      .reason__box .text {
        font-size: 3.65vw; }
      .reason__box .image {
        width: 40%; } }

.promise {
  background: #feffd9; }
  .promise__heading {
    line-height: 1.2em; }
    .promise__heading .sub {
      font-size: 1.4rem; }
    .promise__heading .number {
      font-family: 'Montserrat', sans-serif;
      font-size: 3rem;
      font-weight: 700; }
  .promise__list {
    margin: 2rem 0 0; }
    .promise__list-item {
      background: white;
      border: #333333 solid 3px;
      padding: 1.5rem 0 1.5rem 4rem;
      margin: 0 0 1rem;
      position: relative; }
      .promise__list-item .number {
        text-align: center;
        font-family: 'Montserrat', sans-serif;
        font-size: 2rem;
        font-weight: 500;
        background: #ffef00;
        border: #333333 solid 3px;
        line-height: 1.2em;
        position: absolute;
        top: -3px;
        left: -3px;
        width: 3rem;
        height: 3rem; }
      .promise__list-item .text {
        font-size: 1.4rem;
        font-weight: 700;
        line-height: 1.5em; }
  @media screen and (max-width: 768px) {
    .promise__heading {
      line-height: 1em; }
      .promise__heading .sub {
        font-size: 4.5vw; }
      .promise__heading .number {
        font-size: 10vw;
        line-height: 1.4em; }
    .promise__list {
      margin: 0; }
      .promise__list-item {
        padding: 1rem 0 1rem 2rem;
        margin: 0 0 .5rem; }
        .promise__list-item .number {
          font-size: 5vw;
          width: 7vw;
          height: 7vw; }
        .promise__list-item .text {
          font-size: 4.2vw;
          font-weight: 700;
          line-height: 1.5em; } }

.voice {
  background: #cde7eb; }
  .voice__heading {
    padding: 0.5rem 0 2rem; }
  .voice__box {
    background: white;
    border: #333333 solid 3px;
    padding: 2rem;
    margin: 0 0 1rem;
    position: relative; }
    .voice__box .head {
      font-size: 1.8rem;
      font-weight: 700;
      line-height: 1.5em;
      padding: 0 0 1rem;
      color: #006fb6; }
    .voice__box .text {
      text-align: justify;
      line-height: 1.5em;
      margin: 2rem 0 1rem; }
    .voice__box .prof {
      display: flex;
      align-content: center;
      justify-content: flex-start; }
      .voice__box .prof-item {
        background: #00b4cf;
        border: #333333 solid 3px;
        margin: 0 1rem 0 0;
        padding: .5rem; }
    .voice__box .image {
      position: absolute;
      top: -3px;
      right: -3px;
      border: #333333 solid 3px;
      width: 31%; }
  @media screen and (max-width: 768px) {
    .voice__heading {
      padding: 0.5rem 0 1rem; }
    .voice__box {
      padding: 1rem;
      margin: 0 0 .5rem; }
      .voice__box .head {
        font-size: 4.5vw;
        padding: 0 0 .5rem; }
      .voice__box .text {
        font-size: 3.65vw;
        line-height: 1.5em;
        margin: 1rem 0; }
      .voice__box .prof-item {
        font-size: 3.5vw;
        margin: 0 .5rem 0 0;
        padding: .25rem; }
      .voice__box .image {
        width: 30%; } }

.flow {
  padding: 2rem 0 4rem; }
  .flow__arrow {
    margin: .8rem auto;
    width: 10%; }
  .flow__note {
    background: #006fb6;
    border: #333333 solid 2px;
    color: white;
    font-weight: 500;
    font-size: 1.2rem;
    padding: .5rem;
    text-align: center; }
  .flow__box {
    margin: 1rem 0;
    border: #333333 solid 2px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f1fbfd; }
    .flow__box-item01 {
      width: 12%; }
    .flow__box-item02 {
      width: 82%; }
    .flow__box .number {
      background: #c2eaf0;
      border: #333333 solid 2px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1.2rem;
      padding: 0 .5rem;
      position: absolute;
      top: .15rem;
      left: 0; }
    .flow__box .head {
      font-size: 1.8rem;
      font-weight: 700;
      padding: 0 0 1rem 7rem;
      position: relative; }
    .flow__box .text {
      text-align: justify;
      line-height: 1.5em; }
  .flow__text {
    font-size: 1.8rem;
    text-align: center;
    font-weight: 700;
    padding: .5rem 0 1rem; }
  .flow__image {
    margin: 0 auto;
    width: 50%; }
  @media screen and (max-width: 768px) {
    .flow {
      padding: 2rem 0 3rem; }
      .flow__heading {
        font-size: 6vw; }
      .flow__arrow {
        margin: .5rem auto;
        width: 10%; }
      .flow__note {
        font-size: 3vw;
        letter-spacing: -.05em; }
      .flow__box {
        margin: .5rem 0;
        padding: 1rem; }
        .flow__box-item02 {
          width: 84%; }
        .flow__box .number {
          font-size: 3.25vw; }
        .flow__box .head {
          font-size: 4.3vw;
          padding: .1rem 0 .5rem 5rem; }
        .flow__box .text {
          font-size: 3.65vw; }
      .flow__text {
        font-size: 4.3vw;
        padding: 0.5rem 0; }
      .flow__image {
        margin: 0 auto;
        width: 50%; } }

.faq {
  background-color: #feffd9; }
  .faq__box {
    background: white;
    border: #333333 solid 3px;
    padding: 2rem;
    margin: 1rem 0; }
    .faq__box .icon-q {
      border: #333333 solid 3px;
      background: #c2eaf0;
      font-weight: 900;
      display: inline-block;
      width: 2rem;
      height: 2rem;
      text-align: center;
      line-height: 1.1em; }
    .faq__box .detail {
      display: flex;
      padding: 1rem 0 0; }
      .faq__box .detail .icon-a {
        border: #333333 solid 3px;
        background: #ff6549;
        font-weight: 900;
        display: inline-block;
        width: 2rem;
        height: 2rem;
        text-align: center;
        line-height: 1.1em; }
      .faq__box .detail .text {
        text-align: justify;
        line-height: 1.5em;
        width: 93%;
        margin: 0 0 0 .5rem; }
    .faq__box .head {
      font-weight: 700;
      line-height: 1.5em;
      padding: 0 0 1rem;
      border-bottom: 2px solid #333333; }
  @media screen and (max-width: 768px) {
    .faq__box {
      padding: 1rem;
      font-size: 3.65vw;
      margin: .5rem 0; }
      .faq__box .icon-q {
        width: 6vw;
        height: 6vw; }
      .faq__box .detail {
        padding: .5rem 0 0; }
        .faq__box .detail .icon-a {
          width: 6vw;
          height: 6vw; }
        .faq__box .detail .text {
          margin: 0 0 0 .25rem; }
      .faq__box .head {
        padding: 0 0 .5rem; } }

.area {
  background-color: #cde7eb; }
  .area__text {
    font-size: 1.4rem;
    text-align: center;
    font-weight: 900; }
    .area__text .marker {
      background: #ffef00;
      border: #333333 solid 3px;
      text-align: center;
      padding: .25rem; }
  .area__image {
    margin: 2rem auto;
    width: 70%; }
  @media screen and (max-width: 768px) {
    .area__text {
      font-size: 4.5vw; }
      .area__text .marker {
        padding: 0 .1rem; }
    .area__image {
      margin: 1rem auto 0;
      width: 76%; } }

.contact {
  padding: 0; }
  .contact__inner {
    max-width: 750px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem 0; }
  .contact__text {
    line-height: 1.8em; }
    @media screen and (max-width: 768px) {
      .contact__text {
        /*br {
        	display: none;
        }*/ } }

.sct {
  padding: 2rem 0;
  max-width: 750px;
  margin: 0 auto;
  width: 90%;
  font-size: 1.3rem; }
  @media screen and (max-width: 768px) {
    .sct {
      padding: 8vw 0; } }
  .sct__title {
    text-align: center;
    font-weight: 700;
    letter-spacing: .04em; }
  .sct__list {
    margin: 1rem 0;
    width: 100%;
    border: 1px solid #333333; }
    .sct__list-item {
      display: flex;
      justify-content: space-between; }
    .sct__list .head,
    .sct__list .body {
      font-size: 1rem;
      padding: 1rem;
      border: 1px solid #333333;
      line-height: 1.5em;
      border-collapse: collapse; }
    .sct__list .head {
      background: #cde7eb;
      width: 30%;
      font-weight: 700; }
    .sct__list .body {
      width: 70%;
      text-align: justify; }
  @media screen and (max-width: 768px) {
    .sct {
      font-size: 3.5vw; }
      .sct__list {
        width: 100% !important; }
        .sct__list .head,
        .sct__list .body {
          font-size: 3vw;
          padding: 0.4rem; }
        .sct__list .head {
          width: 28%; }
        .sct__list .body {
          width: 72%; } }

/*
	Footer
------------------------------------------------------------ */
.footer {
  background: #333333;
  color: white; }
  .footer__inner {
    max-width: 750px;
    margin: 0 auto; }
    .footer__inner .company__heading {
      width: 50%;
      margin: 0 auto;
      padding: 2rem 0 0; }
    .footer__inner .company__list {
      margin: 0 auto;
      padding: 2rem 0; }
      .footer__inner .company__list-item {
        display: flex;
        justify-content: center;
        line-height: 2em; }
        .footer__inner .company__list-item .head {
          width: 5rem; }
        .footer__inner .company__list-item .text {
          width: 15rem; }
  @media screen and (max-width: 768px) {
    .footer__inner {
      max-width: 750px;
      margin: 0 auto; }
      .footer__inner .company__heading {
        width: 60%; }
      .footer__inner .company__list {
        padding: 2rem 0; }
        .footer__inner .company__list-item {
          font-size: 3.65vw; }
          .footer__inner .company__list-item .head {
            width: 20%; }
          .footer__inner .company__list-item .text {
            width: 50%; } }

.copyright {
  background: #333333;
  padding: 2rem 0;
  color: white; }
  .copyright__text {
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8em;
    text-align: center;
    font-size: .8rem; }
  @media screen and (max-width: 768px) {
    .copyright {
      font-size: 3vw;
      padding: 0 0 8rem; } }

/* Floating area */
.floating {
  position: fixed;
  top: 50%;
  margin: auto;
  right: 2rem;
  z-index: 1000;
  transform: translateY(-50%); }
  .floating p,
  .floating span {
    display: none; }
  .floating__button-item {
    width: 4rem; }
    .floating__button-item03 {
      margin: 0 0 1rem; }
      .floating__button-item03 a {
        display: block;
        text-align: center;
        border-radius: 50px;
        background: linear-gradient(0deg, #f2e900, #ffffff);
        border: 3px solid #333333;
        position: relative;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        padding: 1.7rem 0; }
        .floating__button-item03 a::before {
          content: " ";
          position: absolute;
          width: 3rem;
          height: 3rem;
          background-image: url("../images/icon_tel.svg");
          background-size: 100%;
          background-repeat: no-repeat;
          left: .25rem;
          top: 50%;
          transform: translateY(-50%);
          margin: auto; }
    .floating__button-item01 {
      margin: 0 0 1rem; }
      .floating__button-item01 a {
        display: block;
        text-align: center;
        border-radius: 50px;
        background: linear-gradient(0deg, #3cedd5, #d9f1ff);
        border: 3px solid #333333;
        font-weight: 700;
        padding: 1.7rem 0;
        position: relative; }
        .floating__button-item01 a::before {
          content: " ";
          position: absolute;
          width: 3rem;
          height: 3rem;
          background-image: url("../images/icon_mail.svg");
          background-size: 100%;
          background-repeat: no-repeat;
          left: .25rem;
          top: 50%;
          transform: translateY(-50%);
          margin: auto; }
    .floating__button-item02 a {
      display: block;
      text-align: center;
      border-radius: 50px;
      background: linear-gradient(0deg, #00ea79, #caffca);
      border: 3px solid #333333;
      font-weight: 700;
      padding: 1.7rem 0;
      position: relative; }
      .floating__button-item02 a::before {
        content: " ";
        position: absolute;
        width: 3rem;
        height: 3rem;
        background-image: url("../images/icon_line.svg");
        background-size: 100%;
        background-repeat: no-repeat;
        left: .25rem;
        top: 50%;
        transform: translateY(-50%);
        margin: auto; }
  @media screen and (max-width: 768px) {
    .floating {
      position: fixed;
      top: auto;
      bottom: 0;
      right: auto;
      transform: none;
      width: 100%; }
      .floating p,
      .floating span {
        display: block; }
      .floating__button-item {
        width: 100%; }
        .floating__button-item01, .floating__button-item02 {
          display: none; }
        .floating__button-item03 {
          margin: 0; }
          .floating__button-item03 a {
            border-radius: 0;
            padding: 1.7rem 0;
            font-size: 9vw; }
            .floating__button-item03 a::before {
              width: 9vw;
              height: 9vw;
              left: 6vw; }
            .floating__button-item03 a::after {
              content: " ";
              position: absolute;
              width: 7vw;
              height: 7vw;
              background-image: url("../images/icon_arrow.svg");
              background-size: 100%;
              right: 6vw;
              top: 50%;
              transform: translateY(-50%);
              margin: auto;
              background-repeat: no-repeat; } }
