@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設定
-------------------- */
/*
	書体
-------------------- */
/*
	カラー
-------------------- */
/*
	その他
-------------------- */
/* --------------------
	Base
	基本設定
-------------------- */
html {
  font-size: 1.8vw; }
  @media screen and (min-width: 1000px) {
    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;
    /*&[href^="tel:"] {
    	pointer-events: 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; }
  @media screen and (max-width: 768px) {
    .wrap {
      /*a {
      	&[href^="tel:"] {
      		pointer-events: auto;
      	}
      }*/ } }

/* --------------------
	Layout
-------------------- */
/* Mixin */
/* common parts */
/* background image */
/* button */
/*
	Wrap
------------------------------------------------------------ */
body {
  letter-spacing: .01em; }
  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 img {
  width: 100%;
  height: auto; }
.wrap .sp {
  display: none; }
@media screen and (max-width: 768px) {
  .wrap {
    overflow: hidden; }
    .wrap .sp {
      display: block; } }

/*
	Header
------------------------------------------------------------ */
.header {
  background: white;
  width: 100%;
  color: #333333;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000; }
  .header__inner {
    padding: .5rem 2rem;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between; }
  .header__heading {
    width: 14%; }
  .header__button {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 80%; }
    .header__button-item01 a {
      background: #ff7742;
      border-radius: 50px;
      color: white;
      font-weight: 700;
      padding: .5rem 3.5rem .7rem 2rem;
      font-size: 1.3rem;
      position: relative; }
      .header__button-item01 a::after {
        position: absolute;
        transform: rotate(45deg);
        width: .5rem;
        height: .5rem;
        border-top: 3px solid #fff;
        border-right: 3px solid #fff;
        content: '';
        bottom: 0;
        top: 0;
        right: 2rem;
        margin: auto 0; }
    .header__button-item02 {
      padding: 0 0 0 4rem; }
      .header__button-item02 a {
        color: #ff7742;
        font-weight: 700;
        font-size: .92rem;
        position: relative; }
        .header__button-item02 a::before {
          position: absolute;
          background-image: url("../images/icon_tel.svg");
          background-repeat: no-repeat;
          background-size: 76%;
          width: 2.5rem;
          height: 2.76rem;
          content: '';
          left: -2.5rem;
          bottom: 0; }
        .header__button-item02 a .number {
          font-family: "Montserrat", sans-serif;
          font-size: 2rem;
          font-weight: 700; }
  @media screen and (max-width: 768px) {
    .header__heading {
      width: 40%;
      margin: 0 auto; }
    .header__button {
      display: none; } }

/* visual */
.visual {
  background-color: white;
  background-image: url("../images/fv.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden; }
  .visual__inner {
    width: 90vw;
    max-width: 1000px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 2rem 0 1rem; }
  .visual__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1; }
    .visual__box-item02 {
      position: absolute;
      z-index: -1;
      width: 52%;
      bottom: -10rem;
      right: -6rem; }
    .visual__box .rank {
      width: 25rem; }
    .visual__box .heading {
      margin: 0;
      padding: 0 0 .5rem;
      line-height: 1.5em;
      font-size: 3rem;
      font-weight: 900; }
      .visual__box .heading .orange {
        color: #ff7742;
        font-family: "Noto Serif JP", serif;
        font-size: 3.6rem; }
    .visual__box .point {
      display: flex;
      justify-content: space-between;
      width: 40rem;
      padding: 1rem 0; }
      .visual__box .point-sp {
        display: none; }
      .visual__box .point-item {
        width: calc((100% - 1rem) / 3); }
  .visual__emblem {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    position: relative;
    z-index: 1; }
    .visual__emblem .text {
      font-size: 1.1rem;
      font-weight: 900;
      text-align: center;
      margin: 0 0 .5rem; }
    .visual__emblem .green {
      color: #16b26e; }
  @media screen and (max-width: 768px) {
    .visual {
      background-image: url("../images/fv-sp.webp"); }
      .visual__inner {
        padding: 4rem 0 1rem; }
      .visual__box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 1; }
        .visual__box-item02 {
          position: absolute;
          z-index: -1;
          width: 68%;
          bottom: -4rem;
          right: -1rem; }
        .visual__box .rank {
          width: 56%;
          margin: 0 auto .5rem; }
        .visual__box .heading {
          text-align: center;
          padding: 0;
          font-size: 7vw;
          line-height: 1.2em; }
          .visual__box .heading .orange {
            font-size: 9vw; }
        .visual__box .point {
          display: none; }
          .visual__box .point-sp {
            display: block;
            width: 68%;
            margin: 3rem 0; }
          .visual__box .point-item {
            margin: 0 0 .5rem; }
      .visual__emblem {
        margin: 0; }
        .visual__emblem .text {
          font-size: 4.2vw;
          margin: 0 0 1rem; } }

/*
	Contents
------------------------------------------------------------ */
.contents {
  background: transparent;
  color: #333333;
  /* 埋め込み地図・動画 レスポンシブ対応用 */ }
  .contents .video,
  .contents .map {
    width: 100%;
    max-width: 1000px;
    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 {
  padding: 4rem 0;
  background-color: white;
  background-image: url("../images/cv.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  font-weight: 900;
  overflow: hidden; }
  @media screen and (max-width: 768px) {
    .cv {
      padding: 8vw 0; } }
  .cv__inner {
    width: 90vw;
    max-width: 1000px;
    margin: 0 auto; }
  .cv__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    text-align: center; }
    .cv__box-item02 {
      position: absolute;
      z-index: -1;
      width: 48%;
      bottom: -11rem;
      right: -1rem; }
    .cv__box .heading {
      padding: 0 0 .5rem;
      line-height: 1.3em;
      font-size: 1.8rem; }
      .cv__box .heading .small {
        font-size: 1.3rem; }
    .cv__box .text {
      font-size: 1.3rem;
      padding: 0 0 1.5rem;
      position: relative; }
      .cv__box .text::before {
        position: absolute;
        background-image: url("../images/cv_line.svg");
        background-repeat: no-repeat;
        background-size: 100%;
        width: 13.5rem;
        height: 0.7rem;
        content: '';
        left: 50%;
        bottom: .2rem;
        transform: translateX(-50%); }
  .cv__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    padding: 2rem 0 0; }
    .cv__button-item {
      width: calc((100% - 1vw) / 2); }
      .cv__button-item01 a {
        display: block;
        background: #ff7742;
        border-radius: 50px;
        color: white;
        font-weight: 700;
        padding: 1.5rem 1rem 1.75rem 0;
        text-align: center;
        font-size: 1.3rem;
        position: relative; }
        .cv__button-item01 a::after {
          position: absolute;
          transform: rotate(45deg);
          width: .5rem;
          height: .5rem;
          border-top: 3px solid #fff;
          border-right: 3px solid #fff;
          content: '';
          bottom: 0;
          top: 0;
          right: 7%;
          margin: auto 0; }
      .cv__button-item02 a {
        display: block;
        background: white;
        border: 1px solid #ff7742;
        border-radius: 50px;
        color: #ff7742;
        font-weight: 700;
        font-size: .92rem;
        padding: .75rem 0 .75rem 7rem;
        position: relative; }
        .cv__button-item02 a::before {
          position: absolute;
          background-image: url("../images/icon_tel.svg");
          background-repeat: no-repeat;
          background-size: 83%;
          width: 2.5rem;
          height: 2.76rem;
          content: '';
          left: 4.5rem;
          top: 0;
          bottom: 0;
          margin: auto; }
        .cv__button-item02 a .number {
          font-family: "Montserrat", sans-serif;
          font-size: 2rem;
          font-weight: 700; }
  @media screen and (max-width: 768px) {
    .cv {
      background-image: url("../images/cv-sp.webp"); }
      .cv__box {
        display: block; }
        .cv__box-item02 {
          width: 79%;
          bottom: -26rem;
          right: 50%;
          transform: translateX(44%); }
        .cv__box .heading {
          font-size: 5.8vw; }
          .cv__box .heading .small {
            font-size: 5vw; }
        .cv__box .text {
          font-size: 5vw; }
      .cv__button {
        display: block;
        padding: 1rem 0 10rem; }
        .cv__button-item {
          width: 100%;
          margin: .75rem 0; }
          .cv__button-item01 a {
            padding: 1.25rem 1rem 1.5rem 0;
            font-size: 4.5vw; }
          .cv__button-item02 a {
            font-size: 3.4vw;
            padding: .5rem 0 .5rem 5.75rem; }
            .cv__button-item02 a::before {
              left: 3.5rem; }
            .cv__button-item02 a .number {
              font-size: 7.5vw; } }

/* 全ブロック共通 */
.service,
.intro,
.answer,
.case,
.reason,
.flow,
.voice,
.price,
.achievement,
.tv,
.faq,
.contact {
  padding: 4rem 0;
  padding: 3rem 0; }
  @media screen and (max-width: 768px) {
    .service,
    .intro,
    .answer,
    .case,
    .reason,
    .flow,
    .voice,
    .price,
    .achievement,
    .tv,
    .faq,
    .contact {
      padding: 8vw 0; } }
  .service__inner,
  .intro__inner,
  .answer__inner,
  .case__inner,
  .reason__inner,
  .flow__inner,
  .voice__inner,
  .price__inner,
  .achievement__inner,
  .tv__inner,
  .faq__inner,
  .contact__inner {
    width: 90vw;
    max-width: 1000px;
    margin: 0 auto; }
  .service__heading,
  .intro__heading,
  .answer__heading,
  .case__heading,
  .reason__heading,
  .flow__heading,
  .voice__heading,
  .price__heading,
  .achievement__heading,
  .tv__heading,
  .faq__heading,
  .contact__heading {
    font-size: 2.3rem;
    font-weight: 900;
    text-align: center;
    line-height: 1.3em;
    letter-spacing: .05em; }
    .service__heading .icon,
    .intro__heading .icon,
    .answer__heading .icon,
    .case__heading .icon,
    .reason__heading .icon,
    .flow__heading .icon,
    .voice__heading .icon,
    .price__heading .icon,
    .achievement__heading .icon,
    .tv__heading .icon,
    .faq__heading .icon,
    .contact__heading .icon {
      margin: 0 auto .5rem;
      width: 6%; }
  .service__text,
  .intro__text,
  .answer__text,
  .case__text,
  .reason__text,
  .flow__text,
  .voice__text,
  .price__text,
  .achievement__text,
  .tv__text,
  .faq__text,
  .contact__text {
    line-height: 1.8em;
    text-align: center;
    padding: 1.5rem 0 2rem; }
    @media screen and (max-width: 768px) {
      .service__text,
      .intro__text,
      .answer__text,
      .case__text,
      .reason__text,
      .flow__text,
      .voice__text,
      .price__text,
      .achievement__text,
      .tv__text,
      .faq__text,
      .contact__text {
        /*br {
        	display: none;
        }*/ } }
  .service__image,
  .intro__image,
  .answer__image,
  .case__image,
  .reason__image,
  .flow__image,
  .voice__image,
  .price__image,
  .achievement__image,
  .tv__image,
  .faq__image,
  .contact__image {
    text-align: center; }
    .service__image img.circle,
    .intro__image img.circle,
    .answer__image img.circle,
    .case__image img.circle,
    .reason__image img.circle,
    .flow__image img.circle,
    .voice__image img.circle,
    .price__image img.circle,
    .achievement__image img.circle,
    .tv__image img.circle,
    .faq__image img.circle,
    .contact__image img.circle {
      border-radius: 100%;
      overflow: hidden; }
  @media screen and (max-width: 768px) {
    .service__heading,
    .intro__heading,
    .answer__heading,
    .case__heading,
    .reason__heading,
    .flow__heading,
    .voice__heading,
    .price__heading,
    .achievement__heading,
    .tv__heading,
    .faq__heading,
    .contact__heading {
      font-size: 6.5vw; }
      .service__heading .icon,
      .intro__heading .icon,
      .answer__heading .icon,
      .case__heading .icon,
      .reason__heading .icon,
      .flow__heading .icon,
      .voice__heading .icon,
      .price__heading .icon,
      .achievement__heading .icon,
      .tv__heading .icon,
      .faq__heading .icon,
      .contact__heading .icon {
        width: 10%; }
    .service__text,
    .intro__text,
    .answer__text,
    .case__text,
    .reason__text,
    .flow__text,
    .voice__text,
    .price__text,
    .achievement__text,
    .tv__text,
    .faq__text,
    .contact__text {
      padding: 1rem 0;
      line-height: 1.5em; } }

/* 各ブロック個別 */
.service {
  background: #259564;
  padding: .5rem 0 1rem; }
  .service__inner {
    max-width: 1200px;
    font-size: 1.1rem;
    font-weight: 700; }
  .service__text {
    text-align: center;
    color: white;
    margin: 0 0 .5rem;
    padding: 0; }
    .service__text .small {
      font-size: .8rem; }
  .service__image {
    display: flex;
    justify-content: space-between;
    align-items: stretch; }
    .service__image-item {
      width: calc((100% - 4rem) / 6);
      background: white;
      border-radius: 10px;
      padding: 1rem; }
      .service__image-item .image {
        margin: 1rem 0 0; }
  @media screen and (max-width: 768px) {
    .service__inner {
      font-size: 4vw; }
      .service__inner .small {
        font-size: 3vw; }
    .service__image {
      flex-flow: wrap; }
      .service__image-item {
        width: 49%;
        padding: .5rem;
        margin: 0 0 .5rem; }
        .service__image-item .image {
          margin: .5rem auto 0;
          width: 60%; } }

.intro {
  background: #16b26e;
  padding: 3rem 0 0; }
  .intro__heading {
    color: white;
    background-image: url("../images/bubble.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 75%; }
  .intro__list {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; }
    .intro__list-item {
      width: calc((100% - 1rem) / 3); }
      .intro__list-item01 .title {
        background-image: url("../images/bubble01.svg"); }
      .intro__list-item02 .title {
        background-image: url("../images/bubble02.svg"); }
      .intro__list-item03 .title {
        background-image: url("../images/bubble03.svg"); }
      .intro__list-item .title {
        font-size: 1.5rem;
        font-weight: 700;
        text-align: center;
        line-height: 1.5em;
        padding: 4rem 0;
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center;
        position: relative;
        top: 3rem; }
      .intro__list-item .green {
        color: #16b26e; }
      .intro__list-item .image {
        margin: 1rem 0 0;
        position: relative;
        z-index: 1;
        width: 65%;
        margin: 0 auto; }
  @media screen and (max-width: 768px) {
    .intro {
      padding: 2rem 0 0; }
      .intro__list {
        display: block;
        padding: 1rem 0; }
        .intro__list-item {
          width: 100%;
          display: flex;
          align-items: center;
          justify-content: center; }
          .intro__list-item01, .intro__list-item03 {
            flex-flow: row-reverse; }
          .intro__list-item .title {
            font-size: 4.5vw;
            padding: 2.5rem 1rem;
            top: 0; }
          .intro__list-item .image {
            width: 30%;
            margin: 0; } }

.answer {
  padding: 0; }
  .answer__inner {
    background-image: url("../images/case.svg");
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100%; }
  .answer__heading {
    padding: 3rem 0 2rem;
    line-height: 1.5em; }
    .answer__heading01 {
      position: relative; }
      .answer__heading01::before {
        position: absolute;
        background-image: url("../images/case_line.svg");
        background-repeat: no-repeat;
        background-size: 100%;
        width: 26.5rem;
        height: 0.7rem;
        content: '';
        left: 50%;
        bottom: 1rem;
        transform: translateX(-50%); }
    .answer__heading02 {
      padding: 0 0 6rem; }
    .answer__heading .number {
      font-family: "Montserrat", sans-serif;
      font-size: 3rem;
      font-weight: 700; }
    .answer__heading .orange {
      font-size: 3rem;
      color: #ff7742; }
  @media screen and (max-width: 768px) {
    .answer__inner {
      background-image: url("../images/case-sp.svg"); }
    .answer__heading {
      padding: 1.5rem 0 2rem; }
      .answer__heading01::before {
        width: 85%; }
      .answer__heading02 {
        padding: 0 0 3rem; }
      .answer__heading .number {
        font-size: 9vw; }
      .answer__heading .orange {
        font-size: 7.2vw; } }

.case {
  padding: 0 0 4rem; }
  .case__list-item {
    margin: 0 0 1rem;
    padding: 2rem;
    background: #f3f3f3;
    border-radius: 10px; }
  .case__list .detail {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .case__list .detail .image {
      width: 49%; }
    .case__list .detail .box {
      width: 49%; }
    .case__list .detail .place {
      font-size: 1.1rem;
      font-weight: 700; }
  .case__list .category {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 1rem 0; }
    .case__list .category-item {
      width: calc((100% - 1rem) / 3);
      background: #16b26e;
      border-radius: 10px;
      color: white;
      text-align: center;
      font-weight: 700;
      padding: .5rem; }
    .case__list .category .head {
      font-size: .8rem;
      border-bottom: 1px white solid;
      padding: 0 0 .3rem; }
    .case__list .category .body {
      font-size: 1.1rem;
      padding: .3rem 0 0; }
  .case__list .title {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0 0 .2rem; }
  .case__list .money {
    font-weight: 700;
    font-size: 2.2rem; }
  .case__list .orange {
    font-family: "Montserrat", sans-serif;
    font-size: 3rem;
    color: #ff7742; }
  .case__list .small {
    font-size: 1rem; }
  @media screen and (max-width: 768px) {
    .case {
      padding: 0 0 2rem; }
      .case__list-item {
        padding: 1rem; }
      .case__list .detail {
        display: block; }
        .case__list .detail .image {
          width: 100%; }
        .case__list .detail .box {
          width: 100%; }
        .case__list .detail .place {
          font-size: 4vw;
          padding: 1rem 0 0;
          text-align: center; }
      .case__list .category .head {
        font-size: 3.5vw; }
      .case__list .category .body {
        font-size: 4vw; }
      .case__list .title {
        font-size: 5vw;
        text-align: center; }
      .case__list .money {
        font-size: 6.5vw;
        text-align: center; }
      .case__list .orange {
        font-size: 10vw; }
      .case__list .small {
        font-size: 1rem; } }

.reason {
  background: #f3ffe9; }
  .reason__heading {
    padding: 0 0 3rem; }
    .reason__heading .sub {
      font-size: 1.5rem;
      line-height: 1.3em;
      padding: 0 0 .5rem; }
    .reason__heading .font {
      font-family: "Montserrat", sans-serif;
      font-size: 1.8rem;
      font-weight: 700; }
    .reason__heading .number {
      font-family: "Montserrat", sans-serif;
      font-size: 3rem;
      font-weight: 700; }
  .reason__list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-flow: wrap; }
    .reason__list-item {
      width: calc((100% - 2rem) / 2);
      margin: 0 0 2rem;
      padding: 2rem;
      background: white;
      border-radius: 10px;
      position: relative; }
      .reason__list-item .number {
        font-family: "Montserrat", sans-serif;
        font-size: 2.3rem;
        font-weight: 700;
        color: #16b26e;
        position: absolute;
        top: -1rem; }
      .reason__list-item .heading {
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.5em; }
      .reason__list-item .orange {
        color: #ff7742; }
      .reason__list-item .text {
        text-align: justify;
        line-height: 1.8em;
        padding: 1rem 0; }
      .reason__list-item img {
        border-radius: 10px; }
  @media screen and (max-width: 768px) {
    .reason__heading .sub {
      font-size: 5.5vw; }
    .reason__heading .font {
      font-size: 7vw; }
    .reason__heading .number {
      font-size: 10vw; }
    .reason__list {
      display: block; }
      .reason__list-item {
        width: 100%;
        padding: 2rem 1rem 1rem; }
        .reason__list-item .number {
          font-size: 9vw; }
        .reason__list-item .heading {
          font-size: 5.5vw; } }

.flow__list-item {
  margin: 0 0 1rem;
  padding: 2rem;
  background: #f3f3f3;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center; }
.flow__list .image {
  width: 24%; }
  .flow__list .image img {
    border-radius: 10px; }
.flow__list .box {
  width: 73%; }
.flow__list .heading {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0 0 1rem; }
.flow__list .number {
  font-family: "Montserrat", sans-serif;
  color: #16b26e; }
.flow__list .text {
  line-height: 1.8em;
  text-align: justify; }
@media screen and (max-width: 768px) {
  .flow__text {
    text-align: justify; }
    .flow__text br {
      display: none; }
  .flow__list-item {
    margin: 0 0 1rem;
    padding: 1rem;
    display: block;
    position: relative; }
  .flow__list .image {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40%; }
  .flow__list .box {
    width: 100%; }
  .flow__list .heading {
    font-size: 5.5vw;
    padding: 1.5rem 0 2rem;
    line-height: 1.3em; }
    .flow__list .heading02 {
      padding: 1.5rem 0 4rem; } }

.voice {
  background: #f3ffe9; }
  .voice__heading {
    padding: 0 0 2rem; }
    .voice__heading .small {
      font-size: 1rem; }
  .voice__text {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    padding: 1rem 0; }
  .voice__button {
    margin: 0 auto;
    width: 50%; }
    .voice__button a {
      display: block;
      background: #ff7742;
      border-radius: 50px;
      color: white;
      font-weight: 700;
      padding: 1.5rem 1rem 1.75rem 0;
      text-align: center;
      font-size: 1.3rem;
      position: relative; }
      .voice__button a::after {
        position: absolute;
        transform: rotate(45deg);
        width: .5rem;
        height: .5rem;
        border-top: 3px solid #fff;
        border-right: 3px solid #fff;
        content: '';
        bottom: 0;
        top: 0;
        right: 7%;
        margin: auto 0; }
  .voice__list-item {
    position: relative;
    margin: 0 0 1rem;
    padding: 3.5rem 2rem 2rem;
    background: white;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; }
  .voice__list .prof {
    background: #16b26e;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    padding: .5rem 1rem;
    position: absolute;
    top: 0;
    left: 0; }
  .voice__list .name {
    font-size: 1rem; }
  .voice__list .image {
    width: 16%; }
    .voice__list .image img {
      border-radius: 10px; }
  .voice__list .box {
    width: 80%; }
  .voice__list .heading {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0 0 1rem; }
  .voice__list .text {
    line-height: 1.8em;
    text-align: justify; }
  @media screen and (max-width: 768px) {
    .voice__heading {
      padding: 0 0 1rem; }
      .voice__heading .small {
        font-size: 3.8vw; }
    .voice__text {
      font-size: 4.5vw;
      padding: .5rem 0; }
    .voice__button {
      width: 100%; }
      .voice__button a {
        padding: 1rem 1rem 1.25rem 0;
        font-size: 4.5vw; }
    .voice__list-item {
      padding: 3.5rem 1rem 2rem;
      display: block; }
    .voice__list .prof {
      font-size: 4.2vw; }
    .voice__list .name {
      font-size: 3.8vw; }
    .voice__list .image {
      width: 16%;
      position: absolute;
      top: 1rem;
      right: 1rem; }
    .voice__list .box {
      width: 100%; }
    .voice__list .heading {
      font-size: 5vw;
      line-height: 1.5em; } }

.price {
  background: #f3f3f3; }
  .price__heading {
    padding: 0 0 2rem; }
  .price__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: wrap; }
    .price__list-item {
      width: 49%;
      margin: 0 0 1rem;
      background: white;
      border-radius: 10px;
      display: flex;
      justify-content: flex-start;
      align-items: center; }
    .price__list .box {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      text-align: center;
      font-weight: 700;
      background: #16b26e;
      border-radius: 10px 0 0 10px;
      color: white;
      padding: .5rem 1rem; }
      .price__list .box .place {
        font-size: 1.1rem;
        font-weight: 900;
        line-height: 1.2em; }
        .price__list .box .place .number {
          font-size: 1.3rem;
          font-family: "Montserrat", sans-serif; }
        .price__list .box .place .medium {
          font-size: 1.2rem; }
      .price__list .box .category {
        background: white;
        border-radius: 10px;
        color: #16b26e;
        font-weight: 700;
        padding: .5rem;
        margin: 0 0 0 .5rem; }
        .price__list .box .category .head {
          font-size: .8rem;
          border-bottom: 1px #16b26e solid;
          padding: 0 0 .3rem; }
        .price__list .box .category .body {
          font-size: 1.1rem;
          padding: .3rem 0 0; }
        .price__list .box .category .unit {
          font-size: .9rem; }
    .price__list .money {
      width: 58%;
      font-weight: 700;
      font-size: 1.5rem;
      margin: 0 0 0 1rem; }
    .price__list .orange {
      font-family: "Montserrat", sans-serif;
      font-size: 2.3rem;
      color: #ff7742; }
    .price__list .small {
      font-size: .8rem; }
  @media screen and (max-width: 768px) {
    .price__heading {
      padding: 0 0 1rem; }
    .price__list {
      display: block; }
      .price__list-item {
        width: 100%; }
      .price__list .box {
        display: block;
        width: 36%;
        padding: .5rem; }
        .price__list .box .place {
          font-size: 4vw;
          margin: 0 0 .25rem; }
          .price__list .box .place br {
            display: none; }
          .price__list .box .place .number {
            font-size: 4.5vw; }
          .price__list .box .place .medium {
            font-size: 4.3vw; }
        .price__list .box .category {
          margin: 0; }
          .price__list .box .category .head {
            font-size: 3.5vw; }
          .price__list .box .category .body {
            font-size: 4vw;
            padding: .2rem 0 0; }
          .price__list .box .category .unit {
            font-size: 3.5vw; }
      .price__list .money {
        width: 64%;
        font-size: 5vw;
        margin: 0 0 0 .5rem; }
      .price__list .orange {
        font-size: 9vw; }
      .price__list .small {
        font-size: 3vw; } }

.achievement {
  background-color: white;
  background-image: url("../images/achievement.svg");
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 0 8rem; }
  .achievement__heading {
    padding: 0 0 2rem; }
    .achievement__heading .number {
      font-family: "Montserrat", sans-serif;
      font-size: 3rem;
      font-weight: 600; }
  .achievement .slide {
    padding: 0 0 4rem; }
    .achievement .slide02 {
      display: none; }
    .achievement .slide-item {
      height: 100%;
      padding: 0 4rem; }
  .achievement .swiper-slide {
    height: auto;
    margin: 0 0 3rem; }
  .achievement .swiper-button-next,
  .achievement .swiper-button-prev {
    top: calc(50% - 2rem); }
  .achievement .swiper-button-next {
    right: .5rem; }
  .achievement .swiper-button-prev {
    left: .5rem; }
  .achievement .swiper-pagination {
    margin: 0 auto;
    right: 0;
    left: 0; }
  .achievement .box {
    display: flex;
    justify-content: space-between;
    align-items: stretch; }
    .achievement .box-item {
      background: white;
      padding: 2rem;
      width: 49%;
      border-radius: 10px;
      filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.1)); }
      @media screen and (max-width: 768px) {
        .achievement .box-item {
          filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.1)); } }
      .achievement .box-item .text {
        background: #16b26e;
        color: white;
        font-size: 1.3rem;
        font-weight: 700;
        padding: .5rem 1rem;
        text-align: center;
        margin: 0 auto;
        border-radius: 10px; }
      .achievement .box-item .image {
        margin: 1rem 0; }
      .achievement .box-item .category {
        font-weight: 700;
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        text-align: center; }
        .achievement .box-item .category-item {
          background: #16b26e;
          border-radius: 10px;
          color: white;
          padding: .5rem;
          width: calc((100% - 1rem) / 3); }
        .achievement .box-item .category .head {
          font-size: .8rem;
          border-bottom: 1px white solid;
          padding: 0 0 .3rem; }
        .achievement .box-item .category .body {
          font-size: .8rem;
          padding: .3rem 0 0; }
      .achievement .box-item .title {
        font-size: 1.5rem;
        font-weight: 700;
        padding: 1.5rem 0 .2rem 0; }
      .achievement .box-item .money {
        font-weight: 700;
        font-size: 2.2rem;
        padding: 0; }
      .achievement .box-item .orange {
        font-family: "Montserrat", sans-serif;
        font-size: 3rem;
        color: #ff7742; }
      .achievement .box-item .small {
        font-size: 1rem; }
  @media screen and (max-width: 768px) {
    .achievement {
      padding: 2rem 0 4rem; }
      .achievement__heading {
        padding: 0 0 1rem; }
        .achievement__heading .number {
          font-size: 9vw; }
      .achievement .slide {
        padding: 0 0 2rem; }
        .achievement .slide01 {
          display: none; }
        .achievement .slide02 {
          display: block; }
        .achievement .slide-item {
          padding: 0 2rem; }
      .achievement .swiper-slide {
        margin: 0 0 1rem; }
      .achievement .swiper-button-next,
      .achievement .swiper-button-prev {
        top: calc(55% - 2rem);
        width: 2rem;
        height: 2rem; }
      .achievement .swiper-pagination-bullet {
        padding: 0.25rem; }
      .achievement .box {
        display: block; }
        .achievement .box-item {
          padding: 1rem;
          width: 100%; }
          .achievement .box-item .text {
            font-size: 4vw;
            padding: .25rem 1rem; }
          .achievement .box-item .image {
            margin: .5rem 0; }
          .achievement .box-item .category-item {
            padding: .25rem; }
          .achievement .box-item .category .head {
            font-size: 3.2vw;
            padding: 0 0 .25rem; }
          .achievement .box-item .category .body {
            font-size: 3.2vw;
            padding: .25rem 0 0; }
          .achievement .box-item .title {
            font-size: 4.5vw;
            padding: 0.5rem 0 .2rem 0;
            text-align: center; }
          .achievement .box-item .money {
            font-size: 6vw;
            text-align: center; }
          .achievement .box-item .orange {
            font-size: 8vw; }
          .achievement .box-item .small {
            font-size: 3.5vw; } }

.tv {
  background-color: #f3ffe9; }
  .tv__inner {
    position: relative; }
  .tv__heading {
    padding: 0 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: -9rem;
    width: 80%; }
    .tv__heading .image {
      width: 64%;
      padding: 0 0 0 3rem; }
    .tv__heading .main {
      position: absolute;
      right: -7rem;
      font-size: 1.5rem;
      text-align: start; }
  .tv__list {
    background-image: url("../images/tv_bubble.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
    align-items: center;
    padding: 5rem 4rem 0; }
    .tv__list-item {
      width: 49%;
      margin: 0 0 1rem; }
  @media screen and (max-width: 768px) {
    .tv {
      padding: 8vw 0 2vw; }
      .tv__heading {
        top: -4rem;
        width: 100%; }
        .tv__heading .image {
          width: 30%;
          padding: 0; }
        .tv__heading .main {
          right: 0;
          font-size: 4vw;
          line-height: 1.3em; }
      .tv__list {
        background-image: none;
        padding: 1rem 0rem 0; } }

.faq__heading {
  padding: 0 0 2rem; }
.faq .accordion {
  border-radius: 10px;
  background: #16b26e; }
  .faq .accordion:not([open]) {
    margin-bottom: .5rem; }
  .faq .accordion summary {
    border-radius: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding: 1.5rem;
    background-color: #16b26e;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    position: relative; }
    .faq .accordion summary::-webkit-details-marker {
      display: none; }
    .faq .accordion summary::before, .faq .accordion summary::after {
      width: 3px;
      height: .9em;
      border-radius: 5px;
      background-color: #fff;
      content: ''; }
    .faq .accordion summary::before {
      position: absolute;
      right: 2em;
      rotate: 90deg; }
    .faq .accordion summary::after {
      transition: rotate .3s;
      right: 2rem;
      position: absolute; }
  .faq .accordion[open] summary::after {
    rotate: 90deg; }
  .faq .accordion .box {
    transform: translateY(-10px);
    opacity: 0;
    transition: transform .5s, opacity .5s;
    margin: 0 0 1rem;
    line-height: 1.5em;
    border-top: 1px white solid; }
  .faq .accordion[open] .box {
    transform: none;
    opacity: 1;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    color: white;
    padding: 1rem 1.5rem 1.5rem; }
  .faq .accordion .text {
    text-align: justify; }
  .faq .accordion .icon {
    font-weight: 700; }
@media screen and (max-width: 768px) {
  .faq__heading {
    padding: 0 0 1rem; }
  .faq .accordion summary {
    padding: 1rem 2.5rem 1rem .5rem;
    align-items: flex-start;
    line-height: 1.3em; }
    .faq .accordion summary::before {
      right: 1.5rem; }
    .faq .accordion summary::after {
      right: 1.5rem; }
  .faq .accordion[open] .box {
    align-items: flex-start;
    padding: 1rem 1rem 1.5rem; } }

/* contact */
.contact {
  background: #f3ffe9; }
  .contact__inner {
    width: 90vw;
    max-width: 1000px;
    margin: 0 auto; }

/*
	Footer
------------------------------------------------------------ */
.footer {
  background: #16b26e;
  color: white; }
  .footer__inner {
    width: 90vw;
    max-width: 1000px;
    margin: 0 auto; }

.company {
  width: 90vw;
  max-width: 1000px;
  margin: 0 auto; }
  .company__heading {
    width: 20%;
    margin: 0 auto;
    padding: 3rem 0 1.5rem; }
  .company__button {
    display: flex;
    flex-flow: wrap;
    justify-content: center; }
    .company__button-item {
      width: 4%;
      margin: 0 0.5rem; }
  .company__text {
    text-align: center;
    padding: 1.5rem 0;
    font-size: .8rem; }
  @media screen and (max-width: 768px) {
    .company__heading {
      width: 46%;
      padding: 2rem 0 1.5rem; }
    .company__button-item {
      width: 9%; }
    .company__text {
      font-size: 3.5vw; } }

.copyright {
  background: transparent;
  padding: 2rem 0; }
  .copyright__text {
    width: 90vw;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8em;
    text-align: center;
    font-size: .8rem; }
  @media screen and (max-width: 768px) {
    .copyright {
      padding: 0 0 6rem; } }

/* Floating area */
.floating {
  display: none;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000; }
  .floating__button {
    display: flex;
    align-items: stretch;
    justify-content: space-between; }
    .floating__button-item {
      width: 50%; }
      .floating__button-item01 a {
        display: block;
        background: #ff7742;
        color: white;
        font-weight: 700;
        padding: 1.5rem 1rem 1.75rem 0;
        text-align: center;
        font-size: 4vw;
        position: relative; }
        .floating__button-item01 a::after {
          position: absolute;
          transform: rotate(45deg);
          width: .5rem;
          height: .5rem;
          border-top: 3px solid #fff;
          border-right: 3px solid #fff;
          content: '';
          bottom: 0;
          top: 0;
          right: 7%;
          margin: auto 0; }
      .floating__button-item02 a {
        display: block;
        background: white;
        border: 1px solid #ff7742;
        color: #ff7742;
        font-weight: 700;
        font-size: 3vw;
        padding: 0.88rem 0;
        text-align: center; }
        .floating__button-item02 a .number {
          font-family: "Montserrat", sans-serif;
          font-size: 6.5vw;
          font-weight: 700; }
  @media screen and (max-width: 768px) {
    .floating {
      display: block; } }
