@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: 3.86vw; }
  @media screen and (min-width: 768px) {
    html {
      font-size: 1.8vw; } }
  @media screen and (min-width: 1000px) {
    html {
      font-size: 18px; } }

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: #000000; }
  @media screen and (max-width: 768px) {
    .wrap {
      /*a {
      	&[href^="tel:"] {
      		pointer-events: auto;
      	}
      }*/ } }

/* --------------------
	Layout
-------------------- */
/* Mixin */
/* common parts */
/* background image */
/* button */
/*
	Wrap
------------------------------------------------------------ */
body a {
  transition: all .2s ease-in-out;
  cursor: pointer; }
  @media screen and (min-width: 768px) {
    body a:hover {
      opacity: .7; } }

.wrap {
  font-weight: 500;
  overflow: hidden; }
  .wrap img {
    width: 100%;
    height: auto; }
  .wrap .pc {
    display: none; }
  .wrap .sp {
    display: block; }
  .wrap .number {
    font-family: "Jost", serif;
    font-optical-sizing: auto;
    font-style: normal; }
  .wrap .flash {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1em 0;
    background-color: #ef7a01;
    box-shadow: 3px 3px 0 0 #d36400;
    border-radius: 10px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    transition: 300ms; }
    .wrap .flash .icon {
      width: 10vw;
      margin-right: .5rem; }
    .wrap .flash::before {
      position: absolute;
      content: '';
      display: inline-block;
      top: -180px;
      left: 0;
      width: 30px;
      height: 100%;
      background-color: white;
      opacity: .2;
      transition: 300ms;
      animation: shinyshiny 2.5s ease-in-out infinite; }
    .wrap .flash:hover {
      text-decoration: none;
      color: #fff;
      box-shadow: none;
      -webkit-transform: translateY(3px); }
@-webkit-keyframes shinyshiny {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0; }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5; }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1; }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0; } }
  @media screen and (min-width: 768px) {
    .wrap .sp {
      display: none; }
    .wrap .pc {
      display: block; }
    .wrap .flash {
      padding: 1.2em 0;
      box-shadow: 6px 6px 0 0 #d36400;
      border-radius: 14px; }
      .wrap .flash .icon {
        width: 3rem;
        margin-right: .5rem; } }

/*
	Header
------------------------------------------------------------ */
.header {
  background: white;
  width: 100%;
  color: #000000; }
  .header__inner {
    padding: .5rem .5rem .75rem;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between; }
  .header__heading {
    width: 36%; }
  .header__button {
    width: 60%; }
    .header__button .flash {
      box-shadow: 3px 3px 0 0 #b21d52;
      background-color: #ea4570;
      padding: .5em 0;
      display: flex;
      align-items: center;
      justify-content: center; }
    .header__button a {
      width: 100%; }
      .header__button a .icon {
        width: 7.5vw;
        margin-right: .5rem; }
      .header__button a .number {
        font-weight: 500;
        font-size: 6vw; }
  @media screen and (min-width: 768px) {
    .header__inner {
      padding: .5rem 4rem .5rem; }
    .header__heading {
      width: 12rem; }
    .header__button {
      width: 20rem; }
      .header__button .flash {
        padding: .75em 0; }
        .header__button .flash .icon {
          width: 2rem; }
      .header__button a .number {
        font-size: 2rem; } }

/* visual */
.visual {
  background-color: #ffe304;
  background-image: url("../images/visual.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative; }
  .visual::before {
    position: absolute;
    content: " ";
    background-image: url("../images/visual_image.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    right: 0;
    bottom: 2rem;
    width: 64.5vw;
    height: 85vw; }
  .visual__inner {
    width: calc(100vw - 2rem);
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
    z-index: 2; }
  .visual__top {
    text-align: center;
    line-height: 2em; }
    .visual__top .round {
      background: #000000;
      color: white;
      border-radius: 5px;
      padding: 0 1rem; }
  .visual__heading {
    padding: 1.25rem 0 1rem; }
  .visual__price {
    width: 70%;
    margin: 0 auto; }
  .visual__payment {
    border: 2px dashed #000000;
    background: white;
    border-radius: 6px;
    width: 50%;
    font-weight: 700;
    line-height: 1.3em;
    text-align: center;
    padding: .5rem 0;
    margin: 5rem 0 1rem; }
  .visual__button a {
    transition: all .2s ease-in-out;
    cursor: pointer; }
    @media screen and (min-width: 768px) {
      .visual__button a:hover {
        opacity: .7; } }
  .visual__bottom {
    background: linear-gradient(90deg, #ef7a01 0%, #efa501 100%);
    text-align: center;
    color: white;
    padding: .5rem 0;
    font-size: 4.2vw;
    font-weight: 700;
    letter-spacing: .04em;
    position: relative;
    z-index: 2; }
  @media screen and (min-width: 768px) {
    .visual {
      background-image: url("../images/visual-pc.webp"); }
      .visual::before {
        background-image: url("../images/visual_image-pc.webp");
        bottom: 2rem;
        width: 23.5rem;
        height: 27rem;
        transform: translateX(84%);
        left: 47%; }
      .visual__inner {
        padding: 2rem 0; }
      .visual__top {
        font-size: 1.2rem; }
      .visual__heading {
        width: 70%;
        margin: 0 auto;
        padding: 1.25rem 0 2rem; }
      .visual__price {
        width: 50%;
        margin: 0; }
      .visual__payment {
        border-radius: 10px;
        padding: .5rem 1rem;
        margin: 1rem 0;
        display: flex; }
        .visual__payment .text {
          width: 36%;
          text-align: start;
          font-size: .8rem; }
        .visual__payment .image {
          width: 62%; }
      .visual__appeal {
        position: absolute;
        right: 0;
        width: 48%;
        bottom: 10%; }
      .visual__bottom {
        font-size: 1.33rem; } }

/*
	Contents
------------------------------------------------------------ */
.contents {
  background: transparent;
  color: #000000;
  /* 埋め込み地図・動画 レスポンシブ対応用 */ }
  .contents .video,
  .contents .map {
    width: fit-content;
    margin: 0 auto; }
    .contents .video iframe,
    .contents .video video,
    .contents .map iframe,
    .contents .map video {
      width: 100%;
      max-width: 1000px;
      height: auto;
      aspect-ratio: 16 / 9; }

/*
	Contents	主な編集箇所
------------------------------------------------------------ */
/* cv */
.cv {
  padding: 2rem 0;
  background-color: #333333;
  background-image: url("../images/cv.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  letter-spacing: .04em; }
  @media screen and (min-width: 768px) {
    .cv {
      padding: 4rem 0; } }
  .cv__inner {
    width: calc(100vw - 2rem);
    max-width: 1000px;
    margin: 0 auto; }
  .cv__heading {
    padding: 0 0 2rem; }
    @media screen and (min-width: 768px) {
      .cv__heading {
        padding: 0 0 2rem; } }
  .cv__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem; }
    .cv__box .appeal {
      width: 26%; }
    .cv__box .text {
      width: 72%; }
  .cv__text {
    text-align: center;
    color: white;
    font-weight: 700;
    line-height: 1.8em;
    margin-bottom: 1rem; }
    .cv__text .number {
      font-size: 6.5vw;
      font-weight: 500; }
  .cv__payment {
    font-size: 3.5vw;
    margin-top: 1rem;
    margin-bottom: .25rem; }
  .cv__popup {
    color: #ea4570;
    position: relative;
    display: table;
    padding: .5rem 1rem;
    background-color: white;
    border: 2px solid #ea4570;
    border-radius: 100rem;
    margin: 0 auto .75rem;
    font-weight: 700;
    font-size: 4vw; }
    .cv__popup .number {
      font-size: 5.4vw; }
    .cv__popup::before, .cv__popup::after {
      position: absolute;
      content: "";
      left: 50%;
      transform: translateX(-50%);
      bottom: -.5em;
      border-top: 0.5em solid #ea4570;
      border-right: 10px solid transparent;
      border-left: 10px solid transparent; }
    .cv__popup::after {
      bottom: calc( 4px - .5em );
      border-top: solid .5em white; }
  .cv__button a {
    display: block; }
  .cv__button01 .flash {
    background-color: #ea4570;
    box-shadow: 3px 3px 0 0 #b21d52; }
    .cv__button01 .flash .number {
      font-weight: 500;
      font-size: 9vw; }
  .cv__button02 {
    width: 70%;
    margin: 1rem auto 0; }
  .cv__image {
    background: white;
    text-align: center; }
    .cv__image img {
      width: 66%; }
  .cv__campaign {
    width: 90%;
    padding: 1rem 0 0;
    margin: 0 auto; }
  @media screen and (min-width: 768px) {
    .cv {
      background-image: url("../images/cv-pc.jpg"); }
      .cv02 {
        padding: 2rem 0 4rem; }
      .cv__text {
        font-size: 1.66rem; }
        .cv__text .number {
          font-size: 2rem; }
        .cv__text02 {
          text-align: left;
          width: 44%;
          font-size: 1.11rem; }
      .cv__box02 .appeal {
        width: 16%; }
      .cv__box02 .text {
        width: 34%; }
      .cv__sub {
        display: flex;
        align-items: center;
        justify-content: space-between; }
        .cv__sub .top {
          width: 40%; }
      .cv__payment {
        font-size: 1.1rem; }
      .cv__popup {
        margin: 0 auto 1rem;
        font-size: 1.33rem; }
        .cv__popup .number {
          font-size: 2rem; }
      .cv__image02 img {
        width: 90%; }
      .cv__button01 .flash {
        width: 56%;
        margin: 0 auto;
        box-shadow: 6px 6px 0 0 #b21d52; }
        .cv__button01 .flash .number {
          font-size: 3.2rem; }
      .cv__button02 {
        width: 46%;
        font-size: 1.55rem;
        margin: 2rem auto 0; }
        .cv__button02-pc {
          width: 100%; }
      .cv__campaign {
        width: 52%;
        padding: 1.5rem 0 0; } }

/* 全ブロック共通 */
.price,
.comparison,
.reason,
.step,
.area,
.message,
.faq,
.contact {
  padding: 2rem 0; }
  @media screen and (min-width: 768px) {
    .price,
    .comparison,
    .reason,
    .step,
    .area,
    .message,
    .faq,
    .contact {
      padding: 4rem 0; } }
  .price__inner,
  .comparison__inner,
  .reason__inner,
  .step__inner,
  .area__inner,
  .message__inner,
  .faq__inner,
  .contact__inner {
    width: calc(100vw - 2rem);
    max-width: 1000px;
    margin: 0 auto; }
  .price__icon,
  .comparison__icon,
  .reason__icon,
  .step__icon,
  .area__icon,
  .message__icon,
  .faq__icon,
  .contact__icon {
    width: 10%;
    margin: 0 auto .5rem; }
  .price__sub,
  .comparison__sub,
  .reason__sub,
  .step__sub,
  .area__sub,
  .message__sub,
  .faq__sub,
  .contact__sub {
    text-align: center;
    font-weight: 700;
    font-size: 5vw;
    letter-spacing: .04em;
    margin-bottom: .25rem;
    line-height: 1.3em; }
  .price__heading,
  .comparison__heading,
  .reason__heading,
  .step__heading,
  .area__heading,
  .message__heading,
  .faq__heading,
  .contact__heading {
    text-align: center;
    font-size: 7vw;
    font-weight: 700;
    letter-spacing: .04em;
    margin-bottom: 2rem;
    line-height: 1.3em; }
    .price__heading .number,
    .comparison__heading .number,
    .reason__heading .number,
    .step__heading .number,
    .area__heading .number,
    .message__heading .number,
    .faq__heading .number,
    .contact__heading .number {
      font-size: 9vw; }
  @media screen and (min-width: 768px) {
    .price__icon,
    .comparison__icon,
    .reason__icon,
    .step__icon,
    .area__icon,
    .message__icon,
    .faq__icon,
    .contact__icon {
      width: 5%;
      margin: 0 auto .25rem; }
    .price__sub,
    .comparison__sub,
    .reason__sub,
    .step__sub,
    .area__sub,
    .message__sub,
    .faq__sub,
    .contact__sub {
      font-size: 1.44rem; }
    .price__heading,
    .comparison__heading,
    .reason__heading,
    .step__heading,
    .area__heading,
    .message__heading,
    .faq__heading,
    .contact__heading {
      font-size: 2.33rem; }
      .price__heading .number,
      .comparison__heading .number,
      .reason__heading .number,
      .step__heading .number,
      .area__heading .number,
      .message__heading .number,
      .faq__heading .number,
      .contact__heading .number {
        font-size: 2.77rem; } }

.price__list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-flow: wrap; }
  .price__list-item {
    margin-bottom: 1rem;
    width: calc((100% - 1rem )/2); }
    .price__list-item .title {
      color: #ef7a01;
      font-size: 4vw;
      text-align: center;
      font-weight: 700;
      padding-bottom: .5rem;
      margin-bottom: .5rem;
      border-bottom: 2px solid #ef7a01; }
    .price__list-item .box {
      background: white;
      box-shadow: 3px 3px 0 0 #d36400;
      font-size: 3.5vw; }
      .price__list-item .box .list {
        padding: .5rem;
        text-align: justify;
        line-height: 1.3em;
        height: 27vw; }
        .price__list-item .box .list-item {
          padding-left: 1.25rem;
          position: relative; }
          .price__list-item .box .list-item::before {
            position: absolute;
            content: "";
            background-image: url("../images/icon_check.svg");
            background-position: center;
            background-repeat: no-repeat;
            background-size: 100%;
            left: 0;
            top: .2rem;
            width: 3.8vw;
            height: 3.8vw; }
      .price__list-item .box .top {
        margin-bottom: .25rem;
        text-align: center; }
      .price__list-item .box .round {
        background: #ef7a01;
        color: white;
        text-align: center;
        border-radius: 100rem;
        letter-spacing: .1em;
        padding: 0 2rem; }
      .price__list-item .box .money {
        color: #ef7a01;
        text-align: center;
        font-weight: 700; }
        .price__list-item .box .money .number {
          font-size: 8vw; }
        .price__list-item .box .money .note {
          font-size: 5vw;
          font-weight: 900;
          position: relative; }
          .price__list-item .box .money .note::before {
            position: absolute;
            content: "（税込）";
            font-size: 1.5vw;
            left: -.5vw;
            top: -.25vw; }
      .price__list-item .box .sub {
        color: #808080;
        font-weight: 700;
        text-align: center;
        font-size: 3.5vw;
        padding-bottom: 1.5rem; }
@media screen and (min-width: 768px) {
  .price__list-item {
    margin-bottom: 2rem;
    width: calc((100% - 3rem )/3); }
    .price__list-item .title {
      font-size: 1.56rem; }
    .price__list-item .box {
      font-size: 1.11rem; }
      .price__list-item .box .list {
        height: 10rem;
        padding: 1.25rem; }
        .price__list-item .box .list-item {
          padding-left: 1.6rem;
          margin-bottom: .5rem; }
          .price__list-item .box .list-item::before {
            top: 0;
            width: 1.4rem;
            height: 1.4rem; }
      .price__list-item .box .money {
        margin-top: .5rem; }
        .price__list-item .box .money .number {
          font-size: 3.6rem; }
        .price__list-item .box .money .note {
          font-size: 2rem; }
          .price__list-item .box .money .note::before {
            font-size: .88rem;
            left: -.5vw;
            top: -.25rem; }
      .price__list-item .box .sub {
        font-size: .88rem; } }

.comparison {
  background-size: auto auto;
  background-color: #ffea77;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 4px, #ffe304 4px, #ffe304 8px); }
  @media screen and (min-width: 768px) {
    .comparison__image {
      width: 80%;
      margin: 0 auto; } }

.reason {
  background-color: #efa501;
  background-image: url("../images/reason.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  .reason__sub, .reason__heading {
    color: white; }
  .reason__list-item {
    background: white;
    border-radius: 10px;
    padding: 1rem 2rem;
    margin-bottom: 2.5rem;
    position: relative; }
    .reason__list-item .order {
      position: absolute;
      width: 25%;
      top: -1.75rem;
      left: -.5rem; }
    .reason__list-item .title {
      margin-left: 4rem;
      color: #efa501;
      font-weight: 700;
      letter-spacing: .04em;
      line-height: 1.8em;
      font-size: 4.2vw;
      padding-bottom: 1rem; }
      .reason__list-item .title .number {
        font-size: 5.6vw; }
    .reason__list-item .text {
      text-align: justify;
      line-height: 1.8em;
      margin-top: 1rem; }
    .reason__list-item .image img {
      border-radius: 10px; }
  @media screen and (min-width: 768px) {
    .reason {
      background-image: url("../images/reason-pc.webp"); }
      .reason__list-item {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-flow: wrap;
        border-radius: 20px;
        padding: 1rem 2rem 2rem 6rem;
        margin-bottom: 1.5rem; }
        .reason__list-item .order {
          width: 12%;
          top: 45%;
          transform: translateY(-50%);
          margin: auto;
          left: -2.5rem; }
        .reason__list-item .title {
          width: 100%;
          margin-left: 4rem;
          font-size: 1.55rem; }
          .reason__list-item .title .number {
            font-size: 1.77rem; }
        .reason__list-item .image {
          width: 36%; }
        .reason__list-item .text {
          width: 60%;
          margin-top: 0; } }

.step {
  background: #fffcd1; }
  .step__list-item {
    background: #ffe304;
    border-radius: 10px;
    padding: 1rem 1.25rem 1rem .75rem;
    margin-bottom: 1.5rem;
    position: relative; }
    .step__list-item .order {
      position: absolute;
      z-index: 2;
      width: 12%;
      top: -.75rem; }
    .step__list-item .box {
      display: flex;
      align-items: flex-start;
      justify-content: space-between; }
    .step__list-item .image {
      width: 28%; }
      .step__list-item .image img {
        border-radius: 50%; }
    .step__list-item .body {
      width: 70%; }
    .step__list-item .title {
      font-weight: 700;
      letter-spacing: .04em;
      line-height: 1.8em;
      font-size: 4.2vw; }
      .step__list-item .title .number {
        font-size: 5.6vw; }
    .step__list-item .text {
      text-align: justify;
      line-height: 1.5em; }
    .step__list-item::before {
      position: absolute;
      content: "";
      width: 1rem;
      aspect-ratio: 1/cos(30deg);
      clip-path: polygon(50% 60%, 100% 0, 0 0);
      background: #ffe304;
      bottom: -1.25rem;
      left: 50%;
      transform: translateX(-50%); }
    .step__list-item-last::before {
      display: none; }
    .step__list-item .payment {
      background: white;
      border-radius: 5px;
      text-align: center;
      margin-top: 1rem; }
      .step__list-item .payment img {
        width: 60%; }
  @media screen and (min-width: 768px) {
    .step__list {
      display: flex;
      align-items: stretch;
      justify-content: space-between;
      flex-flow: wrap; }
      .step__list-item {
        border-radius: 20px;
        padding: 1rem 1.5rem; }
        .step__list-item01, .step__list-item02, .step__list-item03 {
          width: 31%; }
        .step__list-item04, .step__list-item05 {
          width: 48%; }
        .step__list-item .order {
          left: 4rem;
          width: 4rem; }
        .step__list-item .box {
          display: block; }
        .step__list-item .image {
          width: 56%;
          margin: 0 auto; }
        .step__list-item .body {
          width: 100%; }
        .step__list-item .title {
          font-size: 1.33rem;
          text-align: center; }
          .step__list-item .title .number {
            font-size: 1.88rem; }
        .step__list-item::before {
          aspect-ratio: cos(30deg);
          clip-path: polygon(0 0, 60% 50%, 0 100%);
          bottom: 44%;
          left: auto;
          right: -1.7rem;
          transform: translateY(-50%); }
        .step__list-item04 .image, .step__list-item05 .image {
          width: 40%; }
        .step__list-item04 .order, .step__list-item05 .order {
          left: 8rem; }
        .step__list-item .payment img {
          width: 90%; } }

.area {
  background: linear-gradient(135deg, #ef7a01 0%, #efa501 100%);
  color: white; }
  .area__text {
    text-align: center;
    font-size: 4vw;
    line-height: 1.8em;
    font-weight: 700; }
    .area__text .marker {
      padding: 0 .5rem;
      background: white;
      color: #ef7a01; }
  .area__image {
    width: 90%;
    margin: 1rem auto 0; }
  @media screen and (min-width: 768px) {
    .area__text {
      font-size: 1.33rem; }
    .area__image {
      width: 70%; } }

.message {
  background-size: auto auto;
  background-color: #ffea77;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 4px, #ffe304 4px, #ffe304 8px); }
  .message__list-item {
    background: white;
    border-radius: 20px;
    border: 2px solid #ef7a01;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 94%;
    position: relative;
    margin-bottom: 1rem; }
    .message__list-item .image {
      position: absolute;
      width: 27%; }
      .message__list-item .image img {
        border-radius: 50%; }
    .message__list-item01, .message__list-item03 {
      margin: 0 0 1rem auto;
      padding-left: 4.5rem; }
      .message__list-item01 .image, .message__list-item03 .image {
        top: 50%;
        transform: translateY(-50%);
        left: -2rem; }
    .message__list-item02 {
      padding-right: 4.5rem; }
      .message__list-item02 .image {
        right: -2rem;
        top: 50%;
        transform: translateY(-50%); }
    .message__list-item .box {
      font-size: 3.5vw; }
      .message__list-item .box .prof {
        color: #ef7a01; }
        .message__list-item .box .prof .round {
          background: #ef7a01;
          border-radius: 100rem;
          color: white;
          width: 32vw;
          text-align: center;
          padding: .25rem 0;
          margin-right: 1rem;
          display: inline-block; }
      .message__list-item .box .text {
        text-align: justify;
        line-height: 1.5em;
        margin-top: .75rem; }
  @media screen and (min-width: 768px) {
    .message__list {
      display: flex;
      align-items: stretch;
      justify-content: space-between;
      margin-top: 4rem; }
      .message__list-item {
        width: 32%;
        margin-bottom: 0;
        padding: 6.5rem 1.5rem 1.5rem 1.5rem; }
        .message__list-item .image {
          width: 50%;
          top: -3rem; }
        .message__list-item01, .message__list-item03 {
          margin: 0;
          padding-left: none; }
          .message__list-item01 .image, .message__list-item03 .image {
            left: 50%;
            transform: translateX(-50%); }
        .message__list-item02 {
          padding-right: none; }
          .message__list-item02 .image {
            right: auto;
            left: 50%;
            transform: translateX(-50%); }
        .message__list-item .box {
          font-size: 1rem; }
          .message__list-item .box .prof {
            color: #ef7a01;
            text-align: center;
            line-height: 1.5em; }
            .message__list-item .box .prof .round {
              width: 10rem;
              display: block;
              margin-right: none;
              margin: 0 auto; }
          .message__list-item .box .text {
            text-align: justify;
            line-height: 1.8em;
            margin-top: 1rem; } }

.faq {
  background: #fffcd1; }
  .faq .accordion {
    list-style: none;
    margin: 0 auto 1rem; }
    .faq .accordion .title {
      list-style: none;
      position: relative;
      background: #efa501;
      color: white;
      border-radius: 10px;
      font-size: 1.1rem;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      cursor: pointer;
      font-weight: 700;
      padding: .8rem 1rem;
      letter-spacing: .04em;
      line-height: 1.3em; }
    .faq .accordion .text {
      transition: transform .5s, opacity .5s;
      line-height: 1.8em;
      text-align: justify;
      font-weight: 400; }
    .faq .accordion .number {
      font-size: 6vw;
      padding-right: 1rem;
      font-weight: 500; }
      .faq .accordion .number-a {
        color: #efa501;
        margin-left: .25rem; }
    .faq .accordion .answer {
      background: white;
      display: flex;
      justify-content: flex-start;
      align-items: baseline;
      border-radius: 0 0 10px 10px;
      padding: .8rem 1.5rem 1rem .8rem; }
  .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: 1.5rem;
    transform: rotate(90deg); }
  .faq .accordion summary::after {
    transition: rotate .3s;
    position: absolute;
    right: 1.5rem; }
  .faq .accordion[open] summary::after {
    transform: rotate(90deg); }
  .faq .accordion[open] .title {
    border-radius: 10px 10px 0 0; }
  .faq .accordion[open] .text {
    transform: none;
    opacity: 1; }
  .faq summary::-webkit-details-marker {
    display: none; }
  @media screen and (min-width: 768px) {
    .faq .accordion .title {
      border-radius: 10px;
      font-size: 1.1rem; }
    .faq .accordion .number {
      font-size: 2rem; } }

/* contact */
/*
	Footer
------------------------------------------------------------ */
.footer {
  background: #efa501;
  background-image: url("../images/footer.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  .footer__inner {
    width: calc(100vw - 2rem);
    max-width: 1000px;
    margin: 0 auto; }
  .footer .company__heading {
    width: 46%;
    margin: 0 auto;
    padding: 2.5rem 0 1.5rem; }
  .footer .company__list-item {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    margin-bottom: .5rem; }
    .footer .company__list-item .head {
      width: 30%;
      padding-left: .75rem;
      font-weight: 700;
      position: relative; }
      .footer .company__list-item .head::before {
        position: absolute;
        content: "";
        background-image: url("../images/icon_thunder.svg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100%;
        left: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 2vw;
        height: 4vw; }
    .footer .company__list-item .body {
      line-height: 1.5em; }
  .footer .copyright {
    padding: 1rem 0 8.5rem; }
    .footer .copyright__text {
      font-size: 2.8vw;
      text-align: center; }
  @media screen and (min-width: 768px) {
    .footer {
      background-image: url("../images/footer-pc.webp"); }
      .footer__inner {
        max-width: 29rem; }
      .footer .company__heading {
        width: 72%;
        padding: 3.5rem 0 2.5rem; }
      .footer .company__list-item .head {
        width: 24%;
        padding-left: 1rem; }
        .footer .company__list-item .head::before {
          width: .75rem;
          height: 1.25rem; }
      .footer .copyright {
        padding: 1rem 0 10rem; }
        .footer .copyright__text {
          font-size: .88rem; } }

/* Floating area */
.floating {
  background: #000000;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: .5rem 1rem .75rem; }
  .floating__text {
    color: white;
    text-align: center;
    margin-bottom: .5rem;
    font-size: 3.5vw; }
    .floating__text .number {
      font-size: 4.2vw; }
  .floating__button {
    width: 100%; }
    .floating__button a .popup {
      position: absolute;
      right: 0;
      top: 0.5rem;
      z-index: 2;
      width: 4rem; }
      .floating__button a .popup img {
        display: block; }
    .floating__button .text {
      font-size: 3vw;
      font-weight: 500;
      width: 100%; }
    .floating__button .number {
      font-weight: 500;
      font-size: 8vw;
      letter-spacing: .02em; }
    .floating__button .flash {
      padding: .5em 0;
      background-color: #ea4570;
      box-shadow: 3px 3px 0 0 #b21d52;
      flex-flow: wrap; }
  @media screen and (min-width: 768px) {
    .floating__text {
      font-size: 1.11rem; }
      .floating__text .number {
        font-size: 1.33rem; }
    .floating__button {
      width: 38rem;
      margin: 0 auto;
      text-align: center; }
      .floating__button a {
        position: relative; }
        .floating__button a .popup {
          width: 4.5rem;
          top: -1rem; }
      .floating__button .text {
        display: none; }
      .floating__button .number {
        font-weight: 500;
        font-size: 3.2rem;
        letter-spacing: .02em; }
      .floating__button .flash {
        width: 38rem;
        margin: 0 auto; } }
