@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: "Noto Sans JP", 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 */
/* button */
/*
	Wrap
------------------------------------------------------------ */
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 .pc {
  display: none; }
.wrap .sp {
  display: none; }
.wrap .green {
  color: #1cca93; }
.wrap .orange {
  color: #ff8c34; }
.wrap .italic {
  font-style: italic; }
.wrap .number,
.wrap .eng {
  font-family: "Oswald", sans-serif;
  font-weight: 700; }
.wrap .yellow {
  color: #fffd53; }
@media screen and (max-width: 768px) {
  .wrap .sp {
    display: block; }
  .wrap .pc {
    display: none; } }

/*
	Header
------------------------------------------------------------ */
.header {
  background: white;
  width: 100%;
  color: #333333;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000; }
  .header__inner {
    padding: .5rem 1rem;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between; }
  .header__heading {
    font-weight: 900;
    letter-spacing: .2em; }
    .header__heading .italic {
      font-size: 1.7rem;
      vertical-align: sub; }
  .header__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 38rem; }
    .header__button-item {
      width: calc((100% - 1rem) / 2); }
      .header__button-item a {
        padding: 1rem 0;
        color: white;
        text-align: center;
        letter-spacing: .1em;
        font-weight: 900;
        display: block;
        position: relative;
        border-radius: 100rem; }
        .header__button-item a::before {
          position: absolute;
          content: " ";
          background-position: center;
          background-repeat: no-repeat;
          background-size: 100%;
          width: 2rem;
          height: 2rem;
          left: 1rem;
          top: 0;
          bottom: 0;
          margin: auto; }
        .header__button-item a::after {
          position: absolute;
          content: " ";
          background-position: center;
          background-repeat: no-repeat;
          background-size: 100%;
          background-image: url("../images/icon_arrow.svg");
          width: 1.5rem;
          height: 1.5rem;
          right: .5rem;
          top: 0;
          bottom: 0;
          margin: auto; }
      .header__button-item01 a {
        font-size: 1.1rem;
        background: #06c755; }
        .header__button-item01 a::before {
          background-image: url("../images/icon_line.svg"); }
      .header__button-item02 a {
        font-size: 1.3rem;
        background: #ff8c34; }
        .header__button-item02 a::before {
          background-image: url("../images/icon_tel.svg"); }
  @media screen and (max-width: 768px) {
    .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; }
  .visual__inner {
    width: 90vw;
    max-width: 1000px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 6rem 0 0; }
  .visual__heading {
    margin: 0 auto; }
  @media screen and (max-width: 768px) {
    .visual {
      background-image: url("../images/fv-sp.webp"); }
      .visual__inner {
        width: 100%;
        padding: 6rem 0 3rem; } }

/*
	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; }
  @media screen and (max-width: 768px) {
    .cv {
      padding: 8vw 0; } }
  .cv__heading {
    font-size: 2rem;
    text-align: center;
    font-weight: 900;
    letter-spacing: .1em; }
    .cv__heading .marker {
      background: linear-gradient(transparent 50%, #fffd53 50%); }
    .cv__heading .large {
      font-size: 2.5rem; }
    .cv__heading .medium {
      font-size: 2.3rem; }
  .cv__button {
    width: 90vw;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: wrap;
    margin: 2rem auto 0; }
    .cv__button-item {
      width: 48%;
      margin: 0.5rem; }
      .cv__button-item a {
        text-align: center;
        display: block;
        border-radius: 100rem;
        position: relative;
        padding: 1rem 0;
        font-weight: 700;
        color: white; }
        .cv__button-item a::before {
          position: absolute;
          content: " ";
          background-position: center;
          background-repeat: no-repeat;
          background-size: 100%;
          width: 2rem;
          height: 2rem;
          left: 1.5rem;
          top: 0;
          bottom: 0;
          margin: auto; }
        .cv__button-item a::after {
          position: absolute;
          content: " ";
          background-position: center;
          background-repeat: no-repeat;
          background-size: 100%;
          background-image: url("../images/icon_arrow.svg");
          width: 1.5rem;
          height: 1.5rem;
          right: 1rem;
          top: 0;
          bottom: 0;
          margin: auto; }
    .cv__button01-item a {
      background: #06c755; }
      .cv__button01-item a::before {
        background-image: url("../images/icon_line.svg"); }
    .cv__button02-item01 a {
      background: #ff8c34;
      font-size: 1.3rem;
      letter-spacing: .1em; }
      .cv__button02-item01 a .small {
        font-size: .8rem; }
      .cv__button02-item01 a::before {
        background-image: url("../images/icon_tel.svg"); }
    .cv__button02-item02 a {
      background: #1cca93; }
      .cv__button02-item02 a::before {
        background-image: url("../images/icon_mail.svg"); }
  @media screen and (max-width: 768px) {
    .cv__heading {
      font-size: 7vw;
      line-height: 1.3em; }
      .cv__heading .large {
        font-size: 8vw; }
      .cv__heading .medium {
        font-size: 7.5vw; }
    .cv__button {
      display: block;
      margin: 2rem auto 0; }
      .cv__button-item {
        width: 100%;
        margin: .75rem auto; }
        .cv__button-item a::before {
          width: 7vw;
          height: 7vw;
          left: 1rem; }
        .cv__button-item a::after {
          width: 5vw;
          height: 5vw;
          right: 1rem; }
      .cv__button02-item01 a {
        font-size: 4.5vw; }
        .cv__button02-item01 a .small {
          font-size: 3.5vw; } }

/* 全ブロック共通 */
.intro,
.answer,
.reason,
.voice,
.info,
.flow,
.guide,
.area,
.faq,
.contact {
  padding: 4rem 0; }
  @media screen and (max-width: 768px) {
    .intro,
    .answer,
    .reason,
    .voice,
    .info,
    .flow,
    .guide,
    .area,
    .faq,
    .contact {
      padding: 8vw 0; } }
  .intro__inner,
  .answer__inner,
  .reason__inner,
  .voice__inner,
  .info__inner,
  .flow__inner,
  .guide__inner,
  .area__inner,
  .faq__inner,
  .contact__inner {
    width: 90vw;
    max-width: 1000px;
    margin: 0 auto; }
  .intro__heading,
  .answer__heading,
  .reason__heading,
  .voice__heading,
  .info__heading,
  .flow__heading,
  .guide__heading,
  .area__heading,
  .faq__heading,
  .contact__heading {
    text-align: center;
    font-weight: 900;
    letter-spacing: .1em;
    font-size: 2.6rem;
    line-height: 1.3em; }
    .intro__heading .italic,
    .answer__heading .italic,
    .reason__heading .italic,
    .voice__heading .italic,
    .info__heading .italic,
    .flow__heading .italic,
    .guide__heading .italic,
    .area__heading .italic,
    .faq__heading .italic,
    .contact__heading .italic {
      font-size: 3.6rem; }
    .intro__heading .top,
    .answer__heading .top,
    .reason__heading .top,
    .voice__heading .top,
    .info__heading .top,
    .flow__heading .top,
    .guide__heading .top,
    .area__heading .top,
    .faq__heading .top,
    .contact__heading .top {
      vertical-align: top; }
    .intro__heading-sub,
    .answer__heading-sub,
    .reason__heading-sub,
    .voice__heading-sub,
    .info__heading-sub,
    .flow__heading-sub,
    .guide__heading-sub,
    .area__heading-sub,
    .faq__heading-sub,
    .contact__heading-sub {
      font-size: 1.3rem;
      font-family: "Oswald", sans-serif;
      font-weight: 700;
      letter-spacing: .2em;
      text-align: center;
      margin: 0 0 .5rem;
      color: #1cca93; }
  .intro__text,
  .answer__text,
  .reason__text,
  .voice__text,
  .info__text,
  .flow__text,
  .guide__text,
  .area__text,
  .faq__text,
  .contact__text {
    line-height: 1.8em;
    text-align: justify; }
  .intro__image,
  .answer__image,
  .reason__image,
  .voice__image,
  .info__image,
  .flow__image,
  .guide__image,
  .area__image,
  .faq__image,
  .contact__image {
    text-align: center; }
  @media screen and (max-width: 768px) {
    .intro__heading,
    .answer__heading,
    .reason__heading,
    .voice__heading,
    .info__heading,
    .flow__heading,
    .guide__heading,
    .area__heading,
    .faq__heading,
    .contact__heading {
      font-size: 7vw; }
      .intro__heading .italic,
      .answer__heading .italic,
      .reason__heading .italic,
      .voice__heading .italic,
      .info__heading .italic,
      .flow__heading .italic,
      .guide__heading .italic,
      .area__heading .italic,
      .faq__heading .italic,
      .contact__heading .italic {
        font-size: 9vw; }
      .intro__heading-sub,
      .answer__heading-sub,
      .reason__heading-sub,
      .voice__heading-sub,
      .info__heading-sub,
      .flow__heading-sub,
      .guide__heading-sub,
      .area__heading-sub,
      .faq__heading-sub,
      .contact__heading-sub {
        font-size: 5vw; } }

/* 各ブロック個別 */
.line {
  background: #06c755;
  color: white;
  margin: .75rem 0 0;
  padding: 3rem 0; }
  .line__inner {
    width: 90vw;
    max-width: 1000px;
    margin: 0 auto;
    max-width: 800px; }
  .line__button a {
    display: block;
    background: white;
    color: #06c755;
    border-radius: 100rem;
    width: 80%;
    padding: 1rem 0;
    margin: 0 auto;
    position: relative;
    font-size: 1.3rem;
    font-weight: 900;
    text-align: center;
    letter-spacing: .1em; }
    .line__button a::before {
      position: absolute;
      content: " ";
      background-position: center;
      background-repeat: no-repeat;
      background-size: 100%;
      background-image: url("../images/icon_line-gr.svg");
      width: 2.5rem;
      height: 2.5rem;
      left: 1rem;
      top: 0;
      bottom: 0;
      margin: auto; }
    .line__button a::after {
      position: absolute;
      content: " ";
      background-position: center;
      background-repeat: no-repeat;
      background-size: 100%;
      background-image: url("../images/icon_arrow-gr.svg");
      width: 3rem;
      height: 3rem;
      right: .5rem;
      top: 0;
      bottom: 0;
      margin: auto; }
  .line__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2rem 0 0; }
    .line__box-item01 {
      width: 25%; }
    .line__box-item02 {
      width: 73%; }
      .line__box-item02 .head {
        letter-spacing: .1em;
        font-size: 2rem;
        font-weight: 900;
        line-height: 1.5em; }
        .line__box-item02 .head .large {
          font-size: 3.3rem; }
        .line__box-item02 .head .marker {
          color: #06c755;
          position: relative;
          z-index: 2; }
          .line__box-item02 .head .marker::before {
            content: " ";
            position: absolute;
            background: white;
            padding: 1.2rem 11rem;
            top: .35rem;
            z-index: -1; }
      .line__box-item02 .list {
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        margin: 2rem 0 0; }
        .line__box-item02 .list-item {
          width: calc((100% - 2rem) / 3);
          background: #0ea64c;
          border-radius: 10px;
          text-align: center;
          padding: 1rem 0;
          filter: drop-shadow(6px 6px 0 #fffd53); }
          .line__box-item02 .list-item .number {
            font-size: .9rem;
            letter-spacing: .1em; }
          .line__box-item02 .list-item .icon {
            width: 30%;
            margin: .5rem auto .75rem; }
          .line__box-item02 .list-item .text {
            font-weight: 900; }
  @media screen and (max-width: 768px) {
    .line {
      margin: .4rem 0 0;
      padding: 2rem 0; }
      .line__button a {
        width: 100%;
        font-size: 4.5vw; }
        .line__button a::before {
          width: 9vw;
          height: 9vw; }
        .line__button a::after {
          width: 10vw;
          height: 10vw; }
      .line__box {
        margin: 1rem 0 0;
        display: block; }
        .line__box-item01 {
          margin: 0 auto;
          width: 25%; }
        .line__box-item02 {
          margin: 0 auto;
          width: 100%; }
          .line__box-item02 .head {
            text-align: center;
            font-size: 5.5vw; }
            .line__box-item02 .head .large {
              font-size: 8vw; }
            .line__box-item02 .head .marker::before {
              padding: 3vw 30.25vw;
              top: .25rem; }
          .line__box-item02 .list {
            margin: 1rem 0 0; }
            .line__box-item02 .list-item .number {
              font-size: 3.5vw; }
            .line__box-item02 .list-item .icon {
              width: 50%;
              margin: .5rem auto .75rem; }
            .line__box-item02 .list-item .text {
              line-height: 1.3em; } }

.intro {
  background-color: white;
  background-image: url("../images/intro.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative; }
  .intro__inner {
    max-width: 800px; }
  .intro__box {
    margin: 3rem 0 0; }
    .intro__box-item01 {
      position: absolute;
      z-index: 2;
      width: 14.5rem;
      bottom: 0; }
    .intro__box-item02 {
      width: 70%;
      margin: 0 0 0 auto; }
      .intro__box-item02 .list {
        font-weight: 900;
        font-size: 1.3rem;
        letter-spacing: .05em; }
        .intro__box-item02 .list-item {
          background: white;
          border-radius: 8px;
          padding: .75rem 0 .75rem 1.5rem;
          margin: 0 0 1rem;
          filter: drop-shadow(6px 6px 0 #1cca93); }
  @media screen and (max-width: 768px) {
    .intro__box {
      margin: 2rem 0 0; }
      .intro__box-item01 {
        width: 37%;
        right: 0;
        transform: scale(-1, 1); }
      .intro__box-item02 {
        width: 100%;
        margin: 0 auto; }
        .intro__box-item02 .list {
          line-height: 1.3em;
          font-size: 4vw; }
          .intro__box-item02 .list-item {
            background: white;
            border-radius: 8px;
            padding: .75rem 1rem; } }

.answer {
  background-color: white;
  background-image: url("../images/answer.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 4rem 0 2rem; }
  .answer__text {
    font-size: 1.3rem;
    text-align: center;
    padding: 2rem 0;
    font-weight: 900; }
    .answer__text02 {
      font-size: 1.8rem; }
      .answer__text02 .marker {
        background: linear-gradient(transparent 50%, #fffd53 50%); }
  .answer__image {
    width: 70%;
    margin: 0 auto; }
  @media screen and (max-width: 768px) {
    .answer {
      padding: 3rem 0 2rem; }
      .answer__text {
        font-size: 4.5vw;
        padding: 1rem 0; }
        .answer__text02 {
          font-size: 5vw; }
      .answer__image {
        width: 100%; } }

.reason {
  background: #1cca93; }
  .reason__heading {
    color: white; }
    .reason__heading-sub {
      color: white; }
    .reason__heading .large {
      font-size: 3.6rem; }
  .reason__box {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin: 2rem 0 0; }
    .reason__box02 {
      flex-flow: row-reverse; }
    .reason__box-item {
      margin: 0 0 .25rem;
      filter: drop-shadow(6px 6px 0 #78e4c2); }
      .reason__box-item01 {
        width: 36%; }
      .reason__box-item02 {
        width: 64%;
        background: white;
        padding: 2rem 3rem; }
        .reason__box-item02 .number {
          letter-spacing: .1em; }
        .reason__box-item02 .head {
          margin: 1rem 0;
          font-size: 1.5rem;
          font-weight: 900;
          letter-spacing: .1em;
          line-height: 1.5em; }
        .reason__box-item02 .marker {
          background: linear-gradient(transparent 50%, #fffd53 50%); }
        .reason__box-item02 .text {
          text-align: justify;
          line-height: 1.8em; }
  @media screen and (max-width: 768px) {
    .reason__heading .large {
      font-size: 9vw; }
    .reason__box {
      display: block; }
      .reason__box-item {
        margin: 0; }
        .reason__box-item01 {
          width: 100%; }
        .reason__box-item02 {
          width: 100%;
          padding: 2rem 1.5rem; }
          .reason__box-item02 .head {
            font-size: 5vw; } }

.voice {
  background-color: white;
  background-image: url("../images/voice.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  .voice__heading {
    line-height: 1em; }
    .voice__heading-sub {
      margin: 0; }
    .voice__heading .small {
      font-size: 1.3rem;
      font-weight: 900; }
  .voice__box {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-flow: wrap;
    margin: 3rem 0 0; }
    .voice__box-item {
      background: white;
      filter: drop-shadow(6px 6px 0 #1cca93);
      width: 46%;
      margin: 1rem 1rem 2rem;
      position: relative;
      padding: 2.5rem; }
      .voice__box-item .image {
        position: absolute;
        width: 6rem;
        height: 6rem;
        top: -2rem;
        right: -1rem; }
      .voice__box-item .head {
        margin: 0 0 1rem;
        font-size: 1.5rem;
        font-weight: 900;
        line-height: 1.5em; }
      .voice__box-item .text {
        text-align: justify;
        line-height: 1.8em; }
      .voice__box-item .prof {
        margin: 1rem 0 0;
        text-align: end;
        font-size: .8rem; }
  @media screen and (max-width: 768px) {
    .voice__heading .small {
      font-size: 4.5vw; }
    .voice__box {
      display: block;
      margin: 2rem 0 0; }
      .voice__box-item {
        width: 100%;
        margin: 0 auto 2rem;
        padding: 2rem 1.5rem; }
        .voice__box-item .image {
          width: 22vw;
          height: 22vw;
          top: -1rem;
          right: -.5rem; }
        .voice__box-item .head {
          font-size: 5vw; }
        .voice__box-item .prof {
          margin: .5rem 0 0;
          font-size: 3.5vw; } }

.info {
  background: #f4f4f4; }
  .info__text {
    font-size: 1.3rem;
    text-align: center;
    font-weight: 900;
    margin: 2rem 0; }
  .info__box {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-flow: wrap;
    max-width: 800px;
    margin: 0 auto; }
    .info__box-item {
      margin: 0 0 1rem;
      filter: drop-shadow(6px 6px 0 #1cca93); }
      .info__box-item01 {
        width: 53%; }
      .info__box-item02 {
        width: 47%;
        position: relative;
        background: white;
        padding: 2.5rem 0 0 3rem;
        letter-spacing: .1em;
        z-index: 2; }
        .info__box-item02::before {
          z-index: -1;
          position: absolute;
          content: " ";
          background-position: center;
          background-repeat: no-repeat;
          background-size: 100%;
          background-image: url("../images/info_bg.webp");
          width: 10rem;
          height: 8rem;
          right: 0;
          top: 0; }
        .info__box-item02 .head {
          font-size: 1.3rem;
          font-weight: 900; }
        .info__box-item02 .small {
          font-size: 1rem;
          font-weight: 700; }
        .info__box-item02 .number {
          font-size: 1.5rem; }
        .info__box-item02 .text {
          margin: .5rem 0 1rem;
          font-size: .8rem; }
        .info__box-item02 .list-item {
          display: flex;
          align-items: center;
          justify-content: flex-start;
          margin: .5rem 0 0; }
          .info__box-item02 .list-item .head {
            width: 5rem;
            background: #1cca93;
            border-radius: 100rem;
            color: white;
            text-align: center;
            font-weight: 700;
            letter-spacing: .2em;
            padding: .25rem 0;
            font-size: .8rem;
            margin: 0 .8rem 0 0; }
          .info__box-item02 .list-item .text {
            font-size: 1rem;
            margin: 0; }
  @media screen and (max-width: 768px) {
    .info__text {
      font-size: 4.5vw;
      margin: 2rem 0; }
    .info__box {
      display: block; }
      .info__box-item {
        margin: 0; }
        .info__box-item01 {
          width: 100%; }
        .info__box-item02 {
          width: 100%;
          padding: 2rem 0 2rem 2rem;
          margin: 0 0 1rem; }
          .info__box-item02::before {
            width: 34vw;
            height: 30vw; }
          .info__box-item02 .head {
            font-size: 5vw; }
          .info__box-item02 .small {
            font-size: 3.85vw; }
          .info__box-item02 .number {
            font-size: 5.3vw; }
          .info__box-item02 .text {
            font-size: 3.5vw; }
          .info__box-item02 .list-item .head {
            font-size: 3.5vw; }
          .info__box-item02 .list-item .text {
            font-size: 3.85vw; } }

.flow {
  background: #e5fff7; }
  .flow__box {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin: 2rem 0 0; }
    .flow__box-item {
      width: calc((100% - 4rem) /4);
      background: white;
      filter: drop-shadow(6px 6px 0 #1cca93);
      padding: 2rem 1rem; }
      .flow__box-item .number {
        text-align: center; }
      .flow__box-item .image {
        margin: 1rem auto;
        width: 50%; }
      .flow__box-item .head {
        text-align: center;
        font-size: 1.3rem;
        font-weight: 900;
        line-height: 1.3em; }
        .flow__box-item .head01 {
          margin: 1rem 0; }
        .flow__box-item .head02 {
          margin: 1.8rem 0; }
      .flow__box-item .text {
        text-align: justify;
        line-height: 1.5em;
        font-weight: 500; }
  @media screen and (max-width: 768px) {
    .flow__box {
      display: block;
      margin: 2rem 0 0; }
      .flow__box-item {
        margin: 0 0 1rem;
        width: 100%;
        padding: 1.5rem; }
        .flow__box-item .image {
          margin: 1rem auto;
          width: 30%; }
        .flow__box-item .head {
          font-size: 5vw; }
          .flow__box-item .head br {
            display: none; }
          .flow__box-item .head02 {
            margin: 1rem 0; } }

.guide__shop {
  text-align: center;
  font-weight: 700;
  border: 2px solid #333333;
  padding: .8rem 0;
  margin: 2rem 0 0;
  position: relative; }
  .guide__shop .pop {
    color: white;
    position: absolute;
    top: -1rem;
    text-align: center;
    background: #1cca93;
    border-radius: 100rem;
    padding: .25rem 1rem; }
.guide__box {
  margin: 2rem 0 1rem;
  display: flex;
  align-items: stretch;
  justify-content: space-between; }
  .guide__box-item {
    font-weight: 600; }
    .guide__box-item01 {
      width: 50%; }
    .guide__box-item02 {
      width: 45%; }
    .guide__box-item .text {
      margin: 0 0 1rem;
      line-height: 1.5em; }
    .guide__box-item .button a {
      text-align: center;
      display: block;
      border-radius: 100rem;
      position: relative;
      padding: 1rem 0;
      font-weight: 700;
      color: white;
      background: #06c755; }
      .guide__box-item .button a::before {
        position: absolute;
        content: " ";
        background-position: center;
        background-repeat: no-repeat;
        background-image: url("../images/icon_line.svg");
        background-size: 100%;
        width: 2rem;
        height: 2rem;
        left: 1.5rem;
        top: 0;
        bottom: 0;
        margin: auto; }
      .guide__box-item .button a::after {
        position: absolute;
        content: " ";
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100%;
        background-image: url("../images/icon_arrow.svg");
        width: 1.5rem;
        height: 1.5rem;
        right: 1rem;
        top: 0;
        bottom: 0;
        margin: auto; }
.guide__map {
  overflow: hidden; }
  .guide__map iframe {
    width: 100%; }
@media screen and (max-width: 768px) {
  .guide__box {
    margin: 1rem 0;
    display: block; }
    .guide__box-item01 {
      width: 100%; }
    .guide__box-item02 {
      width: 100%; }
    .guide__box-item .text {
      margin: 0 0 .5rem; }
    .guide__box-item .button {
      margin: 0 0 1rem; }
      .guide__box-item .button a::before {
        width: 8vw;
        height: 8vw;
        left: 1rem; }
      .guide__box-item .button a::after {
        width: 6vw;
        height: 6vw; } }

.area {
  background-color: white;
  background-image: url("../images/area.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0; }
  .area__inner {
    position: relative;
    padding: 4rem 0; }
  .area__heading {
    text-align: left; }
    .area__heading-sub {
      text-align: left; }
  .area__text {
    font-size: 1.1rem;
    line-height: 1.8em;
    padding: 2rem 0;
    font-weight: 600;
    width: 60%; }
  .area__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%; }
  @media screen and (max-width: 768px) {
    .area__inner {
      padding: 3.5rem 0 2rem; }
    .area__text {
      font-size: 4.2vw;
      width: 100%;
      padding: 5rem 0 0; }
      .area__text br {
        display: none; }
    .area__image {
      width: 66%; } }

.faq {
  background: #e5fff7; }
  .faq__heading {
    margin: 0 0 2rem; }
  .faq .accordion {
    max-width: 800px;
    background: white;
    margin: .5rem auto; }
  .faq .accordion:not([open]) {
    margin-bottom: .5rem; }
  .faq .accordion summary {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding: 1rem;
    background: #1cca93;
    color: white;
    font-weight: 700;
    cursor: pointer; }
  .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: 2rem;
    rotate: 90deg; }
  .faq .accordion summary::after {
    transition: rotate .3s;
    position: absolute;
    right: 2rem; }
  .faq .accordion[open] summary::after {
    rotate: 90deg; }
  .faq .accordion div {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 1rem 2rem 1rem 1rem;
    color: #333333;
    transition: transform .5s, opacity .5s; }
  .faq .accordion[open] div {
    transform: none;
    opacity: 1; }
  .faq .title {
    letter-spacing: .1em; }
  .faq .icon {
    font-size: 1.5rem;
    margin: 0 .3rem 0 0; }
  .faq .answer {
    display: flex;
    line-height: 1.3em;
    justify-content: flex-start;
    background: white;
    align-items: flex-start;
    font-weight: 500;
    text-align: justify; }
    .faq .answer .icon {
      font-weight: 700;
      color: #1cca93; }
  @media screen and (max-width: 768px) {
    .faq .icon {
      font-size: 6vw; }
    .faq .accordion summary {
      padding: 1rem 3rem 1rem 1rem;
      line-height: 1.3em; } }

.contact {
  background: #1cca93;
  padding: 6rem 0 4rem; }
  .contact__heading {
    color: white; }
    .contact__heading-sub {
      color: white; }
  .contact__text {
    padding: 2rem 0 0;
    color: white;
    line-height: 1.8em;
    text-align: center;
    font-weight: 500; }

/*
	Footer
------------------------------------------------------------ */
.copyright {
  background: #333333;
  padding: 1rem 0; }
  .copyright__text {
    width: 90vw;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8em;
    text-align: center;
    color: white; }
  @media screen and (max-width: 768px) {
    .copyright {
      padding: 1rem 0 5rem; } }

/* Floating area */
.floating {
  display: none;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000; }
  .floating__button {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .floating__button-item {
      width: 50%; }
      .floating__button-item a {
        padding: 1.5rem 0 1.5rem 1.5rem;
        color: white;
        text-align: center;
        letter-spacing: .1em;
        font-weight: 900;
        display: block;
        position: relative; }
        .floating__button-item a::before {
          position: absolute;
          content: " ";
          background-position: center;
          background-repeat: no-repeat;
          background-size: 100%;
          width: 6vw;
          height: 6vw;
          left: .75rem;
          top: 0;
          bottom: 0;
          margin: auto; }
      .floating__button-item01 a {
        font-size: 4.2vw;
        background: #06c755; }
        .floating__button-item01 a::before {
          width: 7vw;
          height: 7vw;
          background-image: url("../images/icon_line.svg"); }
      .floating__button-item02 a {
        font-size: 4.2vw;
        background: #ff8c34; }
        .floating__button-item02 a::before {
          background-image: url("../images/icon_tel.svg"); }
  @media screen and (max-width: 768px) {
    .floating {
      display: block; } }
