@charset "UTF-8";
/* ***************************************************
 PC / SP共通
*************************************************** */
/* /////////// フォント ////////// */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
/* ////////////////// タグ初期値 ////////////////// */
html,
body {
  height: 100%;
  margin: 0;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: Yu Gothic, "游ゴシック", "メイリオ", Meiryo, "Noto Sans JP",
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, Verdana,
    sans-serif;
}

*,
*::after,
*::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  color: #333333;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
  line-height: 1.25em;
}

a {
  color: #333333;
  text-decoration: none;
}

p {
  margin-top: 0;
  margin-bottom: 1.5em;
}

ul,
dl {
  padding: 0;
}

li,
dt,
dd {
  margin: 0px;
  padding: 0px;
}

table,
th,
td {
  border-collapse: collapse;
  border: 1px;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  height: 0;
}

/* テーブル */
table {
  width: 100%;
  margin: 0 auto 1.5em;
  min-height: 0.1%;
  overflow: auto;
}

td,
th {
  padding: 0.5em;
  border: 1px solid #ccc;
}

th {
  white-space: nowrap;
  background-color: #eee;
  font-weight: normal;
}

/* ////////////////// フォーム ////////////////// */
form {
  margin: 0px auto;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  font-family: Yu Gothic, "游ゴシック", "メイリオ", Meiryo, "Noto Sans JP",
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, Verdana,
    sans-serif;
  font-size: 16px;
  border: 1px solid #919191;
  background-color: #f1f1f1;
  border: none;
  border-radius: 6px;
  width: 100%;
  padding: 12px 20px;
  font-weight: bold;
}

/* ボタン */
button,
input[type="button"],
input[type="submit"] {
  font-family: Yu Gothic, "游ゴシック", "メイリオ", Meiryo, "Noto Sans JP",
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, Verdana,
    sans-serif;
  font-size: 16px;
  letter-spacing: normal;
  text-transform: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* テキストエリア */
textarea {
  resize: none;
  min-height: 150px;
}

/* セレクトボックス */
.select {
  position: relative;
  display: inline-block;
}

.select.block {
  display: block;
  margin-bottom: 0.5em;
}

.select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0.4em 50px 0.4em 0.4em;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.select select::-ms-expand {
  display: none;
}

.select select option:not(:last-child) {
  border-bottom: 1px dashed #ccc;
}

.select::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  pointer-events: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 100%;
  content: "";
  background-color: #2e4b7f;
  border-radius: 0 2px 2px 0;
}

.select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  display: inline-block;
  margin-top: -6px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  pointer-events: none;
}

/* チェックボックス */
input[type="checkbox"] {
  display: none;
  border: none;
}

input[type="checkbox"] {
  cursor: pointer;
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 0 0 0 25px;
  position: relative;
}

input[type="checkbox"]::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid #919191;
  border-radius: 2px;
  content: "";
  display: block;
  height: 1em;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
}

input[type="checkbox"]:checked::before {
  background: #f49f0a;
  border: 1px solid #f49f0a;
}

input[type="checkbox"]::after {
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  content: "";
  display: block;
  height: 8px;
  left: 0;
  margin-top: -0.2em;
  margin-left: 2px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 14px;
}

input[type="checkbox"]:checked::after {
  opacity: 1;
}

/* ***************************************************
 SP
*************************************************** */
@media screen and (max-width: 999px) {
  .pc {
    display: none !important;
  }
  html.scroll-prevent {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-width: 320px;
    min-height: 100vh;
    line-height: 1.75em;
    font-size: 1rem;
  }
  header {
    position: relative;
  }
  header .logo {
    position: absolute;
    left: 4vw;
    top: 20px;
    width: 130px;
    margin: 0 auto;
    line-height: 1;
    z-index: 20;
  }
  header .logo img {
    width: 130px;
    height: auto;
  }
  header .mainimage {
    position: relative;
    width: 100%;
    max-width: 1300px;
    z-index: 10;
    margin: 0 auto;
    padding: 40vw 0 0 0;
  }
  header .mainimage .text {
    position: absolute;
    left: 4vw;
    top: 55%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: calc(100% - 8vw);
  }
  header .mainimage .text .title {
    width: 100%;
    margin-bottom: 10px;
    color: #f19ec2;
    font-size: 32px;
  }
  header .mainimage .text .explanation {
    width: 100%;
    margin: 0;
    font-size: 18px;
    font-weight: bold;
  }
  header .mainimage .text .authority {
    width: 120px;
    height: auto;
    margin: 10px 0;
  }
  header .mainimage .text ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 380px;
    max-width: 100%;
    margin: 0px 0 0px 0;
    list-style: none;
  }
  header .mainimage .text ul li {
    width: 115px;
    height: 115px;
    padding: 18px 0px;
    border-radius: 50%;
    background-color: #fff;
    font-weight: bold;
    text-align: center;
    -webkit-box-shadow: 0px 0px 16px rgba(241, 158, 194, 0.3);
    box-shadow: 0px 0px 16px rgba(241, 158, 194, 0.3);
    line-height: 1.2;
  }
  header .mainimage .text ul li:first-child {
    padding: 29px 0px;
  }
  header .mainimage .text ul li:last-child {
    padding: 35px 0px;
  }
  header .mainimage .text ul li .font-pink {
    color: #f19ec2;
    font-size: 24px;
    line-height: 1.1;
  }
  header .mainimage .text ul li .font-small {
    font-size: 13px;
  }
  header .mainimage .text ul li .font-middle {
    font-size: 15px;
  }
  header .mainimage .text ul li .font-large {
    font-size: 17px;
  }
  header .mainimage .text ul li .num-small {
    font-size: 25px;
  }
  header .mainimage .text ul li .num-large {
    font-size: 36px;
  }
  header .mainimage .text ul li .num-large:last-child {
    font-size: 30px;
  }
  header .mainimage .text ul li .unit {
    font-size: 16px;
  }
  header .mainimage .button {
    position: absolute;
    right: 4vw;
    top: 20px;
    width: 200px;
    margin: 0;
  }
  header .mainimage .button a {
    width: 200px;
    max-width: none;
    margin: 0;
    padding: 13px 0;
    border-radius: 20px;
    font-size: 14px;
  }
  header .mainimage .button a::after {
    border-left: 11px solid #fff;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
  }
  header .mainimage .button a:hover::after {
    border-left: 11px solid #f49f0a;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
  }
  /* ////////////////// フッター ////////////////// */
  footer {
    margin: 0;
    padding: 20px 15px;
    background-color: #333333;
    text-align: center;
    color: #fff;
  }
  footer ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    list-style: none;
  }
  footer ul li {
    padding: 0 20px;
    border-right: 1px solid #fff;
  }
  footer ul li:last-child {
    border: none;
  }
  footer ul li a {
    color: #fff;
    font-size: 14px;
  }
  footer p {
    margin: 0;
  }
  footer p small {
    font-size: 12px;
  }
  /* ////////////////// 共通 ////////////////// */
  body {
    position: relative;
  }
  main > div {
    position: relative;
    padding: 60px 4vw;
  }
  section,
  aside,
  form {
    max-width: 960px;
    margin: 0 auto;
  }
  .flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .read-text {
    text-align: left;
    font-weight: bold;
    font-size: 15px;
    line-height: 1.6;
  }
  /* 見出し */
  .title-normal {
    position: relative;
    margin-bottom: 40px;
    padding: 0 0 10px 0;
    font-size: 27px;
    line-height: 1.4;
    text-align: center;
  }
  .title-normal .en {
    margin: 0 0 10px 0;
    font-family: "Roboto", Yu Gothic, "游ゴシック", "メイリオ", Meiryo,
      "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka,
      Verdana, sans-serif;
    font-weight: 700;
    color: #f49f0a;
    font-size: 15px;
  }
  .title-normal::after {
    content: "";
    display: inline-block;
    position: absolute;
    left: 50%;
    bottom: -4px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background-color: #f49f0a;
  }
  .title-about {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: bold;
  }
  .title-center {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: left;
  }
  /* ボタン */
  .button a {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 560px;
    max-width: calc(100% - 8vw);
    margin: 0 auto;
    padding: 15px 0;
    border-radius: 40px;
    background-color: #f49f0a;
    text-align: center;
    font-size: 18px;
    color: #fff;
    font-weight: 900;
    line-height: 1.2;
  }
  .button a::after {
    content: "";
    display: inline-block;
    margin-left: 15px;
    border-left: 13px solid #fff;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    z-index: 100;
  }
  .button a:hover {
    background-color: #fff;
    color: #f49f0a;
  }
  .button a:hover::after {
    border-left: 13px solid #f49f0a;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
  }
  .button a .bubble {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: -40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 80%;
    padding: 10px 0;
    background-color: #fff;
    border: 2px solid #f49f0a;
    color: #f49f0a;
    z-index: 5;
    line-height: 1;
  }
  .button a .bubble::before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    display: block;
    border-top: 15px solid #fff;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
  }
  .floating-button {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: #fff;
    z-index: 100;
  }
  .floating-button.active {
    display: block;
  }
  .floating-button .button {
    margin: 0;
  }
  .floating-button a {
    position: relative;
    display: block;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 15px 20px 15px 0;
    border-radius: 10px;
    background-color: #f49f0a;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    border: 2px solid #f49f0a;
    text-align: center;
  }
  .floating-button a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    z-index: 90;
  }
  .floating-button a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: inline-block;
    border-left: 10px solid #f49f0a;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    z-index: 100;
  }
  .floating-button a:hover {
    background-color: #fff;
    color: #f49f0a;
  }
  .floating-button a:hover::before {
    background-color: #f49f0a;
  }
  .floating-button a:hover::after {
    border-left: 10px solid #fff;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
  }
  /* CVエリア */
  .cv {
    padding: 40px 4vw;
    background-color: #f49f0a;
  }
  .cv aside {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .cv aside .bubble {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 7px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
  }
  .cv aside .bubble::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 30px;
    margin: 0 10px;
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
    background-color: #fff;
  }
  .cv aside .bubble::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 30px;
    margin: 0 10px;
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
    background-color: #fff;
  }
  .cv aside .tel {
    width: 100%;
    max-width: 430px;
    text-align: center;
    margin-bottom: 20px;
  }
  .cv aside .tel a {
    color: #fff;
  }
  .cv aside .tel .link {
    margin: 0 0 7px 0;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 36px;
  }
  .cv aside .tel .link::before {
    content: "";
    display: inline-block;
    width: 31px;
    height: 31px;
    margin-right: 10px;
    background: url(../images/icon_tel.png) no-repeat center center;
    background-size: cover;
  }
  .cv aside .tel .note {
    color: #fff;
    font-size: 15px;
  }
  .cv aside .contact {
    width: 100%;
    max-width: 430px;
  }
  .cv aside .contact .button {
    margin: 0;
  }
  .cv aside .contact .button a {
    width: 100%;
    border: 2px solid #fff;
    background-color: #fff;
    color: #f49f0a;
  }
  .cv aside .contact .button a::before {
    content: "";
    display: inline-block;
    width: 27px;
    height: 21px;
    margin-right: 15px;
    background: url(../images/icon_mail.png) no-repeat center center;
    background-size: cover;
  }
  .cv aside .contact .button a::after {
    border-left: 13px solid #f49f0a;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
  }
  .cv aside .contact .button a:hover {
    background-color: #f49f0a;
    color: #fff;
  }
  .cv aside .contact .button a:hover::before {
    -webkit-filter: invert(0%) sepia(96%) saturate(0%) hue-rotate(229deg)
      brightness(130%) contrast(101%);
    filter: invert(0%) sepia(96%) saturate(0%) hue-rotate(229deg)
      brightness(130%) contrast(101%);
  }
  .cv aside .contact .button a:hover::after {
    border-left: 13px solid #fff;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
  }
  /* 詳細ページリンク */
  .cv .detail {
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    max-width: calc(100% - 8vw);
    margin: 0 auto;
    padding: 18px 30px;
    border: 2px solid #f49f0a;
    border-radius: 30px;
    background-color: #fff;
    color: #f49f0a;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
  }

  .cv .detail::after {
    content: "";
    display: inline-block;
    margin-left: 15px;
    border-left: 13px solid #fff;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    transition: all 0.3s ease;
    border-left: 13px solid #f49f0a;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
  }
  .note {
    margin: 0;
    font-size: 12px;
    line-height: 1.8;
  }
  /* ////////////////// コンテンツ ////////////////// */
  /* WITH福祉とは */
  #about section {
    max-width: 800px;
  }
  #about .about-flex {
    margin-bottom: 40px;
  }
  #about .about-flex p {
    width: 100%;
    margin-bottom: 0;
    font-weight: bold;
  }
  #about img {
    width: 90%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
  }
  /* 対応障害福祉サービス */
  #services {
    padding: 0 4vw 80px 4vw;
  }
  #services .services-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  #services .services-list .services-item {
    width: 100%;
    margin-bottom: 30px;
  }
  #services .services-list .services-item:last-child {
    margin-bottom: 0;
  }
  #services .services-list .services-item h3 {
    padding: 10px;
    border-radius: 10px 10px 0 0;
    background-color: #f19ec2;
    color: #fff;
    font-size: 21px;
    font-weight: bold;
    text-align: center;
  }
  #services .services-list .services-item-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 20px;
    border: 2px solid #f19ec2;
    border-radius: 0 0 10px 10px;
  }
  #services .services-list .services-item-inner ul {
    margin: 0;
    list-style: none;
  }
  #services .services-list .services-item-inner ul:last-child {
    margin-top: -15px;
  }
  #services .services-list .services-item-inner ul.flex-03:first-child {
    width: 49%;
  }
  #services .services-list .services-item-inner ul.flex-03:nth-child(2) {
    width: 49%;
  }
  #services .services-list .services-item-inner ul.flex-03:last-child {
    width: 100%;
  }
  #services .services-list .services-item-inner ul .flex-02 {
    width: 100%;
  }
  #services .services-list .services-item-inner ul li {
    margin: 14px 0;
    padding: 0 0 0 5px;
    border-left: 4px solid #f19ec2;
    font-size: 14px;
    line-height: 1.4;
  }
  /* こんなお悩みありませんか？ */
  #problem {
    position: relative;
    margin-bottom: 60px;
    padding: 60px 4vw 40px 4vw;
    background-color: #fff9fb;
  }
  #problem::before {
    content: "";
    position: absolute;
    bottom: -80px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    width: 0;
    height: 0;
    border-top: 80px solid #fff9fb;
    border-left: 48vw solid transparent;
    border-right: 48vw solid transparent;
  }
  #problem .problem-pattern {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  #problem .problem-pattern .problem-pattern-item {
    width: 100%;
    margin-bottom: 30px;
  }
  #problem .problem-pattern .problem-pattern-item:last-child {
    margin: 0;
  }
  #problem .problem-pattern .problem-pattern-item h3 {
    padding: 10px;
    border-radius: 10px 10px 0 0;
    background-color: #f19ec2;
    color: #fff;
    font-size: 21px;
    font-weight: bold;
    text-align: center;
  }
  #problem .problem-pattern .problem-pattern-item .image {
    margin-bottom: 20px;
    border-radius: 0 0 10px 10px;
    padding: 0 0 20px 0;
    background-color: #fff;
  }
  #problem .problem-pattern .problem-pattern-item .image img {
    width: 260px;
    height: auto;
    margin: 0 auto;
  }
  #problem .problem-pattern ul {
    margin-bottom: 0;
    list-style: none;
  }
  #problem .problem-pattern ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: bold;
    background-color: #fff;
    line-height: 1.4;
  }
  #problem .problem-pattern ul li::before {
    content: "?";
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    padding: 0;
    background-color: #f19ec2;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-align: center;
  }
  #problem .problem-pattern ul li:last-child {
    margin: 0;
  }
  #problem .problem-pattern ul li span {
    width: calc(100% - 40px);
  }
  /* WITH福祉が解決します！ */
  #solution .solution-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  #solution .solution-list .solution-item {
    width: 100%;
    margin-bottom: 30px;
    padding: 30px;
    background-color: #fff9fb;
  }
  #solution .solution-list .solution-item:last-child {
    margin: 0;
  }
  #solution .solution-list .solution-item .image {
    width: 240px;
    height: 240px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: #fff;
  }
  #solution .solution-list .solution-item .image img {
    width: 100%;
    height: auto;
  }
  #solution .solution-list .solution-item h3 {
    margin: 15px 0;
    text-align: center;
    font-size: 20px;
  }
  #solution .solution-list .solution-item p {
    margin: 0;
  }
  /* WITH福祉が解決します！ */
  #strengths .strengths-item {
    margin-bottom: 40px;
    padding: 30px 4vw 40px 4vw;
    border-radius: 10px;
    background-color: #fff9fb;
  }
  #strengths .strengths-item:last-child {
    margin: 0;
  }
  #strengths .strengths-item > p {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
  }
  #strengths .strengths-item h3 {
    margin-bottom: 20px;
    font-size: 24px;
  }
  #strengths .strengths-item h3 .num {
    margin-right: 5px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 60px;
    line-height: 1;
    color: #f49f0a;
  }
  #strengths .strengths-item h3 .font-large {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 40px;
    line-height: 1;
  }
  #strengths .strengths-item .strengths-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  #strengths .strengths-item .strengths-flex .strengths-flex-item {
    width: 100%;
    margin-bottom: 30px;
  }
  #strengths .strengths-item .strengths-flex .strengths-flex-item:last-child {
    margin-bottom: 0;
  }
  #strengths .strengths-item .strengths-flex .strengths-flex-item p {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
  }
  #strengths .strengths-item .strengths-flex .strengths-flex-item p .font-pink {
    display: inline-block;
    margin: 0 5px;
    color: #f19ec2;
    font-size: 46px;
    font-family: "Roboto", sans-serif;
    line-height: 1;
  }
  #strengths
    .strengths-item
    .strengths-flex
    .strengths-flex-item
    p
    .font-small {
    font-size: 15px;
  }
  #strengths
    .strengths-item
    .strengths-flex
    .strengths-flex-item
    p
    .font-medium {
    font-size: 20px;
  }
  #strengths .strengths-item .strengths-flex .image {
    max-width: 870px;
    margin: 0 auto;
    padding: 0;
    background-color: #fff;
  }
  #strengths .strengths-item .strengths-flex .image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
  }
  #strengths .strengths-item .image {
    max-width: 870px;
    margin: 0 auto;
    padding: 4vw;
    background-color: #fff;
  }
  #strengths .strengths-item .image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
  }
  #strengths .strengths-item .strengths-table {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0 0 0;
    overflow-x: scroll;
  }
  #strengths .strengths-item .strengths-table::before,
  #strengths .strengths-item .strengths-table::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 2px;
    height: 95%;
    background-color: #f19ec2;
  }
  #strengths .strengths-item .strengths-table::before {
    left: 181px;
  }
  #strengths .strengths-item .strengths-table::after {
    left: 384px;
  }
  #strengths .strengths-item .strengths-table table {
    width: 800px;
    margin: 0;
  }
  #strengths .strengths-item .strengths-table table tr:nth-child(odd) {
    background-color: #f5f5f5;
  }
  #strengths .strengths-item .strengths-table table tr:nth-child(even) {
    background-color: #fff;
  }
  #strengths .strengths-item .strengths-table table tr:first-child {
    background-color: transparent;
  }
  #strengths
    .strengths-item
    .strengths-table
    table
    tr:first-child
    th:first-child {
    background-color: transparent;
  }
  #strengths
    .strengths-item
    .strengths-table
    table
    tr:first-child
    th:nth-child(2) {
    position: relative;
    padding: 0 0.5em 0.5em 0.5em;
    background-color: #f19ec2;
    color: #fff;
  }
  #strengths
    .strengths-item
    .strengths-table
    table
    tr:first-child
    th:nth-child(2)::before {
    content: "";
    position: absolute;
    top: -0.7em;
    left: 0;
    width: 206px;
    height: 0.7em;
    border-radius: 0.5em 0.5em 0 0;
    background-color: #f19ec2;
  }
  #strengths
    .strengths-item
    .strengths-table
    table
    tr:first-child
    th:nth-child(3),
  #strengths
    .strengths-item
    .strengths-table
    table
    tr:first-child
    th:last-child {
    background-color: #454a5c;
    color: #fff;
  }
  #strengths
    .strengths-item
    .strengths-table
    table
    tr:last-child
    td:nth-child(2) {
    border-bottom: 2px solid #f19ec2;
  }
  #strengths .strengths-item .strengths-table table tr:not(:first-child) th {
    background-color: transparent;
  }
  #strengths .strengths-item .strengths-table table th,
  #strengths .strengths-item .strengths-table table td {
    width: 206px;
    border: 1px solid #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
  }
  #strengths .strengths-item .strengths-table table th:first-child,
  #strengths .strengths-item .strengths-table table td:first-child {
    width: 180px;
  }
  #strengths .strengths-item .strengths-table table th:nth-child(2),
  #strengths .strengths-item .strengths-table table td:nth-child(2) {
    color: #f19ec2;
  }
  #strengths .strengths-item .strengths-table table th .num-small,
  #strengths .strengths-item .strengths-table table td .num-small {
    font-size: 21px;
  }
  #strengths .strengths-item .strengths-table table th .num-large,
  #strengths .strengths-item .strengths-table table td .num-large {
    font-size: 28px;
  }
  #strengths .strengths-item .strengths-table table th .unit,
  #strengths .strengths-item .strengths-table table td .unit {
    font-size: 14px;
  }
  #strengths .strengths-item .strengths-table table td {
    font-family: "Roboto", sans-serif;
  }
  /* お客様の声 */
  #voice {
    padding: 60px 0 120px 0;
  }
  #voice section {
    position: relative;
  }
  #voice .slide-content {
    position: relative;
  }
  #voice .voice-swiper {
    position: relative;
    overflow: hidden;
    padding: 20px;
  }
  #voice .swiper-slide .voice-item {
    padding: 30px 20px;
    border-radius: 24px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 16px rgba(241, 158, 194, 0.3);
    box-shadow: 0px 0px 16px rgba(241, 158, 194, 0.3);
  }
  #voice .swiper-slide .voice-item > p {
    margin: 0;
    font-size: 16px;
  }
  #voice .swiper-slide .voice-item .voice-item-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
  }
  #voice .swiper-slide .voice-item .image {
    width: 100px;
  }
  #voice .swiper-slide .voice-item .image img {
    width: 100%;
    height: auto;
  }
  #voice .swiper-slide .voice-item .text {
    width: calc(100% - 120px);
  }
  #voice .swiper-slide .voice-item .text dl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 7px 0 0 0;
  }
  #voice .swiper-slide .voice-item .text dl dt {
    width: 90px;
    margin: 0 0 7px 0;
    padding: 0 0 0 5px;
    border-left: 4px solid #f19ec2;
    font-size: 15px;
    font-weight: bold;
  }
  #voice .swiper-slide .voice-item .text dl dd {
    width: calc(100% - 110px);
    margin: 0 0 7px 0;
    font-size: 15px;
  }
  #voice .swiper-slide .voice-item .tag-list p {
    display: inline-block;
    margin: 0;
    font-size: 15px;
  }
  #voice .swiper-slide .voice-item .tag-list .tag {
    display: inline-block;
    margin: 0 3px 3px 0;
    padding: 0 3px;
    border-radius: 5px;
    background-color: #f19ec2;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
  }
  #voice .swiper-button-next {
    display: none;
  }
  #voice .swiper-button-prev {
    display: none;
  }
  #voice .swiper-pagination {
    position: absolute;
    bottom: -50px;
  }
  #voice .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #333333;
  }
  #voice .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #f19ec2;
  }
  /* ご利用料金 */
  #price {
    background-color: #fff9fb;
  }
  #price section {
    max-width: 1000px;
  }
  #price .price-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  #price .price-list .price-item {
    width: 100%;
  }
  #price .price-list .price-item h4 {
    padding: 10px;
    border-radius: 10px 10px 0 0;
    background-color: #f19ec2;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
  }
  #price .price-list .price-item .price-item-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 0;
    border-radius: 0 0 10px 10px;
    border: 2px solid #f19ec2;
    text-align: center;
    background-color: #fff;
  }
  #price .price-list .price-item .price-item-inner p {
    width: 100%;
    margin: 0;
    font-weight: bold;
  }
  #price .price-list .price-item .price-item-inner p .num {
    font-size: 30px;
  }
  #price .price-list .price-item .price-item-inner p .normal {
    font-size: 18px;
  }
  #price .price-list .plus {
    display: block;
    position: relative;
    width: 20px;
    height: 20px;
    margin: 20px auto;
  }
  #price .price-list .plus::before,
  #price .price-list .plus::after {
    content: "";
    position: absolute;
    border-radius: 2px;
    background-color: #333333;
  }
  #price .price-list .plus::before {
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px;
    height: 3px;
  }
  #price .price-list .plus::after {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 3px;
    height: 20px;
  }
  #price h3 {
    margin: 40px 0 20px 0;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
  }
  #price .price-table table {
    border-radius: 10px;
  }
  #price .price-table table tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #price .price-table table td,
  #price .price-table table th {
    width: 50%;
    font-weight: bold;
    font-size: 17px;
    text-align: left;
  }
  #price .price-table table th {
    border: 1px solid #454a5c;
    border-bottom: 1px solid #fff;
    background-color: #454a5c;
    color: #fff;
  }
  #price .price-table table td {
    border: 1px solid #454a5c;
    background-color: #fff;
  }
  /* ご利用開始までの流れ */
  #flow .flow-list {
    margin: 0 auto;
  }
  #flow .flow-list .flow-list-item {
    position: relative;
    width: 280px;
    margin: 0 auto 55px auto;
    text-align: center;
  }
  #flow .flow-list .flow-list-item:last-child {
    margin-bottom: 20px;
  }
  #flow .flow-list .flow-list-item::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -45px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 1px;
    height: 30px;
    background-color: #969696;
  }
  #flow .flow-list .flow-list-item:last-child::after {
    display: none;
  }
  #flow .flow-list .flow-list-item p {
    width: 100px;
    margin: 0 170px 5px 0;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 21px;
    color: #f19ec2;
  }
  #flow .flow-list .flow-list-item .image {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 170px 0 0;
    background-color: #f19ec2;
  }
  #flow .flow-list .flow-list-item .image img {
    width: 75%;
    height: 65%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  #flow .flow-list .flow-list-item h3 {
    position: absolute;
    top: 65%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 160px;
    margin: 0;
    font-size: 21px;
    line-height: 1.6;
    text-align: left;
  }
  #flow .bubble {
    width: 100%;
    margin: 0 auto;
    padding: 50px 10px 25px 10px;
    background: url(../images/flow_bg_bubble.png) no-repeat center center;
    background-size: contain;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #f19ec2;
    line-height: 1.3;
  }
  #flow .bubble .font-large {
    font-size: 32px;
  }
  /* よくあるご質問 */
  #faq {
    background-color: #fff9fb;
  }
  #faq .faq-list {
    margin-bottom: 30px;
    padding: 15px 20px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 16px rgba(241, 158, 194, 0.3);
    box-shadow: 0px 0px 16px rgba(241, 158, 194, 0.3);
    background-color: #fff;
  }
  #faq .question {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 25px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1.4;
  }
  #faq .question .font-large {
    margin-right: 10px;
    font-size: 32px;
    color: #f19ec2;
  }
  #faq .anser {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 15px;
    border-top: 1px solid #dedede;
    padding-top: 15px;
  }
  #faq .anser .font-large {
    font-weight: bold;
    margin-right: 10px;
    font-size: 32px;
    color: #f19ec2;
  }
  #faq .toggle_button {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 19px;
    height: 10px;
    background: url(../images/icon_arrow_pink.svg) no-repeat center center;
    background-size: contain;
  }
  #faq .toggle_button.close_icon {
    -webkit-transform: translateY(-5px) rotate(180deg);
    transform: translateY(-5px) rotate(180deg);
  }
  /* お問い合わせ */
  #contact table {
    max-width: 800px;
    margin-bottom: 20px;
  }
  #contact table tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #contact table tr:first-child th {
    margin: 0;
  }
  #contact table th,
  #contact table td {
    width: 100%;
    background-color: #fff;
    border: none;
    text-align: left;
  }
  #contact table th {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: bold;
    margin-top: 20px;
  }
  #contact .any {
    margin-right: 10px;
    padding: 2px 5px;
    border-radius: 3px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    background-color: #77cd75;
  }
  #contact .required {
    margin-right: 10px;
    padding: 2px 5px;
    border-radius: 3px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    background-color: #ef3e2e;
  }
  #contact .privacy {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 40px;
  }
  #contact .submit button {
    display: block;
    width: 360px;
    margin: 0 auto;
    padding: 10px 0;
    border-radius: 25px;
    border: 2px solid #f49f0a;
    background-color: #f49f0a;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
  }
  #contact .submit button:hover {
    background-color: #fff;
    color: #f49f0a;
  }
  #contact .contact-thanks .text {
    font-weight: bold;
  }
}

/* ***************************************************
 PC
*************************************************** */
@media all and (min-width: 1000px) {
  .sp {
    display: none !important;
  }
  body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-width: 320px;
    min-height: 100vh;
    line-height: 1.75em;
    font-size: 16px;
  }
  header {
    position: relative;
  }
  header .logo {
    position: absolute;
    left: calc((100% - 1120px) / 2);
    top: 20px;
    width: 230px;
    margin: 0 auto;
    line-height: 1;
    z-index: 20;
  }
  header .logo img {
    width: 230px;
    height: auto;
  }
  header .mainimage {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 10;
  }
  header .mainimage .text {
    position: absolute;
    left: calc((100% - 1120px) / 2);
    top: 55%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  header .mainimage .text .title {
    margin-bottom: 10px;
    color: #f19ec2;
    font-size: 59px;
  }
  header .mainimage .text .explanation {
    font-size: 22px;
    font-weight: bold;
  }
  header .mainimage .text .authority {
    position: absolute;
    right: -20px;
    top: -65px;
    width: 120px;
    height: auto;
    margin: 10px 0;
  }
  header .mainimage .text ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 20px 0 40px 0;
    list-style: none;
  }
  header .mainimage .text ul li {
    width: 170px;
    height: 170px;
    padding: 25px 10px;
    border-radius: 50%;
    background-color: #fff;
    font-weight: bold;
    text-align: center;
    -webkit-box-shadow: 0px 0px 16px rgba(241, 158, 194, 0.3);
    box-shadow: 0px 0px 16px rgba(241, 158, 194, 0.3);
  }
  header .mainimage .text ul li:first-child {
    padding: 35px 10px;
  }
  header .mainimage .text ul li:last-child {
    padding: 50px 10px;
  }
  header .mainimage .text ul li .font-pink {
    color: #f19ec2;
    font-size: 32px;
    line-height: 1.1;
  }
  header .mainimage .text ul li .font-small {
    font-size: 16px;
  }
  header .mainimage .text ul li .font-middle {
    font-size: 18px;
  }
  header .mainimage .text ul li .font-large {
    font-size: 21px;
  }
  header .mainimage .text ul li .num-small {
    font-size: 40px;
  }
  header .mainimage .text ul li .num-large {
    font-size: 54px;
  }
  header .mainimage .text ul li .num-large:last-child {
    font-size: 49px;
  }
  header .mainimage .text ul li .unit {
    font-size: 21px;
  }
  header .mainimage .text .button {
    margin: 0;
  }
  header .mainimage .text .button a {
    margin: 0;
  }
  /* ////////////////// フッター ////////////////// */
  footer {
    margin: 0;
    padding: 30px 15px;
    background-color: #333333;
    text-align: center;
    color: #fff;
  }
  footer ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    list-style: none;
  }
  footer ul li {
    padding: 0 20px;
    border-right: 1px solid #fff;
  }
  footer ul li:last-child {
    border: none;
  }
  footer ul li a {
    color: #fff;
    font-size: 14px;
  }
  footer p {
    margin: 0;
  }
  footer p small {
    font-size: 12px;
  }
  /* ////////////////// 共通 ////////////////// */
  body {
    position: relative;
  }
  main > div {
    position: relative;
    padding: 80px 0;
  }
  section,
  aside,
  form {
    max-width: 1120px;
    margin: 0 auto;
  }
  .flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .read-text {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
  }
  /* 見出し */
  .title-normal {
    position: relative;
    margin-bottom: 60px;
    padding: 0 0 10px 0;
    font-size: 32px;
    line-height: 1.4;
    text-align: center;
  }
  .title-normal .en {
    margin: 0 0 10px 0;
    font-family: "Roboto", Yu Gothic, "游ゴシック", "メイリオ", Meiryo,
      "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka,
      Verdana, sans-serif;
    font-weight: 700;
    color: #f49f0a;
    font-size: 16px;
  }
  .title-normal::after {
    content: "";
    display: inline-block;
    position: absolute;
    left: 50%;
    bottom: -4px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background-color: #f49f0a;
  }
  .title-about {
    font-size: 32px;
    font-weight: bold;
  }
  .title-center {
    margin-bottom: 40px;
    font-size: 28px;
    text-align: center;
  }
  /* ボタン */
  .button a {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 500px;
    margin: 0 auto;
    border: 2px solid #f49f0a;
    padding: 20px 0;
    border-radius: 40px;
    background-color: #f49f0a;
    text-align: center;
    font-size: 23px;
    color: #fff;
    font-weight: 900;
    line-height: 1.2;
  }
  .button a::after {
    content: "";
    display: inline-block;
    margin-left: 15px;
    border-left: 13px solid #fff;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    z-index: 100;
  }
  .button a:hover {
    background-color: #fff;
    color: #f49f0a;
  }
  .button a:hover::after {
    border-left: 13px solid #f49f0a;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
  }
  .button a .bubble {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: -40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 80%;
    padding: 10px 0;
    background-color: #fff;
    border: 2px solid #f49f0a;
    color: #f49f0a;
    z-index: 5;
    line-height: 1;
  }
  .button a .bubble::before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    display: block;
    border-top: 15px solid #fff;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
  }
  .floating-button {
    position: fixed;
    top: 20px;
    right: calc((100% - 1120px) / 2);
    z-index: 100;
  }
  .floating-button a {
    position: relative;
    width: 340px;
    padding: 15px 20px;
    background-color: #f49f0a;
    color: #fff;
    font-size: 19px;
    font-weight: bold;
    border: 2px solid #f49f0a;
  }
  /* CVエリア */
  .cv {
    padding: 60px 0;
    background-color: #f49f0a;
  }
  .cv aside {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .cv aside .bubble {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
  }
  .cv aside .bubble::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 30px;
    margin: 0 10px;
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
    background-color: #fff;
  }
  .cv aside .bubble::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 30px;
    margin: 0 10px;
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
    background-color: #fff;
  }
  .cv aside .tel {
    width: 48%;
    text-align: center;
  }
  .cv aside .tel a {
    color: #fff;
  }
  .cv aside .tel .link {
    margin: 0 0 15px 0;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 40px;
  }
  .cv aside .tel .link::before {
    content: "";
    display: inline-block;
    width: 31px;
    height: 31px;
    margin-right: 10px;
    background: url(../images/icon_tel.png) no-repeat center center;
    background-size: cover;
  }
  .cv aside .tel .note {
    color: #fff;
    font-size: 15px;
  }
  .cv aside .contact {
    width: 48%;
  }
  .cv aside .contact .button {
    margin: 0;
  }
  .cv aside .contact .button a {
    width: 430px;
    border: 2px solid #fff;
    background-color: #fff;
    color: #f49f0a;
  }
  .cv aside .contact .button a::before {
    content: "";
    display: inline-block;
    width: 27px;
    height: 21px;
    margin-right: 15px;
    background: url(../images/icon_mail.png) no-repeat center center;
    background-size: cover;
  }
  .cv aside .contact .button a::after {
    border-left: 13px solid #f49f0a;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
  }
  .cv aside .contact .button a:hover {
    background-color: #f49f0a;
    color: #fff;
  }
  .cv aside .contact .button a:hover::before {
    -webkit-filter: invert(0%) sepia(96%) saturate(0%) hue-rotate(229deg)
      brightness(130%) contrast(101%);
    filter: invert(0%) sepia(96%) saturate(0%) hue-rotate(229deg)
      brightness(130%) contrast(101%);
  }
  .cv aside .contact .button a:hover::after {
    border-left: 13px solid #fff;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
  }
  .note {
    margin: 0;
    font-size: 12px;
    line-height: 1.8;
  }
  /* ////////////////// コンテンツ ////////////////// */
  /* WITH福祉とは */
  #about section {
    max-width: 800px;
  }
  #about .about-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 60px;
  }
  #about .about-flex p {
    width: 65%;
    margin-bottom: 0;
    font-weight: bold;
  }
  /* 対応障害福祉サービス */
  #services {
    padding: 0 0 80px 0;
  }
  #services .services-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  #services .services-list .services-item {
    width: 47%;
  }
  #services .services-list .services-item h3 {
    padding: 10px;
    border-radius: 10px 10px 0 0;
    background-color: #f19ec2;
    color: #fff;
    font-size: 21px;
    font-weight: bold;
    text-align: center;
  }
  #services .services-list .services-item-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 40px;
    border: 2px solid #f19ec2;
    border-radius: 0 0 10px 10px;
  }
  #services .services-list .services-item-inner ul {
    margin: 0;
    list-style: none;
  }
  #services .services-list .services-item-inner ul.flex-03:first-child {
    width: 25%;
  }
  #services .services-list .services-item-inner ul.flex-03:nth-child(2) {
    width: 38%;
  }
  #services .services-list .services-item-inner ul.flex-03:last-child {
    width: 32%;
  }
  #services .services-list .services-item-inner ul .flex-02 {
    width: 48%;
  }
  #services .services-list .services-item-inner ul li {
    margin: 14px 0;
    padding: 0 0 0 5px;
    border-left: 4px solid #f19ec2;
    font-size: 14px;
    line-height: 1.4;
  }
  /* こんなお悩みありませんか？ */
  #problem {
    position: relative;
    margin-bottom: 60px;
    padding: 80px 0 60px 0;
    background-color: #fff9fb;
  }
  #problem::before {
    content: "";
    position: absolute;
    bottom: -80px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    width: 0;
    height: 0;
    border-top: 80px solid #fff9fb;
    border-left: 45vw solid transparent;
    border-right: 45vw solid transparent;
  }
  #problem .problem-pattern {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  #problem .problem-pattern .problem-pattern-item {
    width: 47%;
  }
  #problem .problem-pattern .problem-pattern-item h3 {
    padding: 10px;
    border-radius: 10px 10px 0 0;
    background-color: #f19ec2;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
  }
  #problem .problem-pattern .problem-pattern-item .image {
    margin-bottom: 20px;
    border-radius: 0 0 10px 10px;
    padding: 0 0 20px 0;
    background-color: #fff;
  }
  #problem .problem-pattern .problem-pattern-item .image img {
    width: 260px;
    height: auto;
    margin: 0 auto;
  }
  #problem .problem-pattern ul {
    margin-bottom: 0;
    list-style: none;
  }
  #problem .problem-pattern ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: bold;
    background-color: #fff;
    line-height: 1.4;
  }
  #problem .problem-pattern ul li::before {
    content: "?";
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    padding: 0;
    background-color: #f19ec2;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-align: center;
  }
  #problem .problem-pattern ul li:last-child {
    margin: 0;
  }
  #problem .problem-pattern ul li span {
    width: calc(100% - 40px);
  }
  /* WITH福祉が解決します！ */
  #solution .solution-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  #solution .solution-list .solution-item {
    width: 31%;
    padding: 30px;
    background-color: #fff9fb;
  }
  #solution .solution-list .solution-item .image {
    width: 240px;
    height: 240px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: #fff;
  }
  #solution .solution-list .solution-item .image img {
    width: 100%;
    height: auto;
  }
  #solution .solution-list .solution-item h3 {
    margin: 15px 0;
    text-align: center;
    font-size: 20px;
  }
  #solution .solution-list .solution-item p {
    margin: 0;
  }
  /* WITH福祉が解決します！ */
  #strengths .strengths-item {
    margin-bottom: 40px;
    padding: 30px 50px 40px 50px;
    border-radius: 10px;
    background-color: #fff9fb;
  }
  #strengths .strengths-item:last-child {
    margin: 0;
  }
  #strengths .strengths-item > p {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
  }
  #strengths .strengths-item h3 {
    margin-bottom: 30px;
    font-size: 32px;
  }
  #strengths .strengths-item h3 .num {
    margin-right: 10px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 96px;
    line-height: 1;
    color: #f49f0a;
  }
  #strengths .strengths-item h3 .font-large {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 64px;
    line-height: 1;
  }
  #strengths .strengths-item .strengths-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  #strengths .strengths-item .strengths-flex .strengths-flex-item {
    width: 32%;
  }
  #strengths .strengths-item .strengths-flex .strengths-flex-item p {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 20px;
  }
  #strengths .strengths-item .strengths-flex .strengths-flex-item p .font-pink {
    display: inline-block;
    margin: 0 5px;
    color: #f19ec2;
    font-size: 50px;
    font-family: "Roboto", sans-serif;
    line-height: 1;
  }
  #strengths
    .strengths-item
    .strengths-flex
    .strengths-flex-item
    p
    .font-small {
    font-size: 18px;
  }
  #strengths
    .strengths-item
    .strengths-flex
    .strengths-flex-item
    p
    .font-medium {
    font-size: 24px;
  }
  #strengths .strengths-item .image {
    max-width: 870px;
    margin: 0 auto;
    padding: 40px 0;
    background-color: #fff;
  }
  #strengths .strengths-item .image img {
    width: 70%;
    height: auto;
    margin: 0 auto;
  }
  #strengths .strengths-item .strengths-table {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }
  #strengths .strengths-item .strengths-table::before,
  #strengths .strengths-item .strengths-table::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 2px;
    height: 95%;
    background-color: #f19ec2;
  }
  #strengths .strengths-item .strengths-table::before {
    left: 181px;
  }
  #strengths .strengths-item .strengths-table::after {
    left: 384px;
  }
  #strengths .strengths-item .strengths-table table tr:nth-child(odd) {
    background-color: #f5f5f5;
  }
  #strengths .strengths-item .strengths-table table tr:nth-child(even) {
    background-color: #fff;
  }
  #strengths .strengths-item .strengths-table table tr:first-child {
    background-color: transparent;
  }
  #strengths
    .strengths-item
    .strengths-table
    table
    tr:first-child
    th:first-child {
    background-color: transparent;
  }
  #strengths
    .strengths-item
    .strengths-table
    table
    tr:first-child
    th:nth-child(2) {
    position: relative;
    padding: 0 0.5em 0.5em 0.5em;
    background-color: #f19ec2;
    color: #fff;
  }
  #strengths
    .strengths-item
    .strengths-table
    table
    tr:first-child
    th:nth-child(2)::before {
    content: "";
    position: absolute;
    top: -0.7em;
    left: 0;
    width: 206px;
    height: 0.7em;
    border-radius: 0.5em 0.5em 0 0;
    background-color: #f19ec2;
  }
  #strengths
    .strengths-item
    .strengths-table
    table
    tr:first-child
    th:nth-child(3),
  #strengths
    .strengths-item
    .strengths-table
    table
    tr:first-child
    th:last-child {
    background-color: #454a5c;
    color: #fff;
  }
  #strengths
    .strengths-item
    .strengths-table
    table
    tr:last-child
    td:nth-child(2) {
    border-bottom: 2px solid #f19ec2;
  }
  #strengths .strengths-item .strengths-table table tr:not(:first-child) th {
    background-color: transparent;
  }
  #strengths .strengths-item .strengths-table table th,
  #strengths .strengths-item .strengths-table table td {
    width: 206px;
    border: 1px solid #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
  }
  #strengths .strengths-item .strengths-table table th:first-child,
  #strengths .strengths-item .strengths-table table td:first-child {
    width: 180px;
  }
  #strengths .strengths-item .strengths-table table th:nth-child(2),
  #strengths .strengths-item .strengths-table table td:nth-child(2) {
    color: #f19ec2;
  }
  #strengths .strengths-item .strengths-table table th .num-small,
  #strengths .strengths-item .strengths-table table td .num-small {
    font-size: 24px;
  }
  #strengths .strengths-item .strengths-table table th .num-large,
  #strengths .strengths-item .strengths-table table td .num-large {
    font-size: 32px;
  }
  #strengths .strengths-item .strengths-table table th .unit,
  #strengths .strengths-item .strengths-table table td .unit {
    font-size: 16px;
  }
  #strengths .strengths-item .strengths-table table td {
    font-family: "Roboto", sans-serif;
  }
  /* お客様の声 */
  #voice {
    padding: 80px 0 130px 0;
  }
  #voice section {
    position: relative;
  }
  #voice .slide-content {
    position: relative;
  }
  #voice .voice-swiper {
    position: relative;
    overflow: hidden;
    padding: 20px;
  }
  #voice .swiper-slide .voice-item {
    padding: 30px 20px;
    border-radius: 24px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 16px rgba(241, 158, 194, 0.3);
    box-shadow: 0px 0px 16px rgba(241, 158, 194, 0.3);
  }
  #voice .swiper-slide .voice-item > p {
    margin: 0;
    font-size: 16px;
  }
  #voice .swiper-slide .voice-item .voice-item-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
  }
  #voice .swiper-slide .voice-item .image {
    width: 100px;
  }
  #voice .swiper-slide .voice-item .image img {
    width: 100%;
    height: auto;
  }
  #voice .swiper-slide .voice-item .text {
    width: calc(100% - 120px);
  }
  #voice .swiper-slide .voice-item .text dl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 7px 0 0 0;
  }
  #voice .swiper-slide .voice-item .text dl dt {
    width: 100px;
    margin: 0 0 7px 0;
    padding: 0 0 0 5px;
    border-left: 4px solid #f19ec2;
    font-size: 16px;
    font-weight: bold;
  }
  #voice .swiper-slide .voice-item .text dl dd {
    width: calc(100% - 120px);
    margin: 0 0 7px 0;
    font-size: 16px;
  }
  #voice .swiper-slide .voice-item .tag-list p {
    display: inline-block;
    margin: 0;
    font-size: 15px;
  }
  #voice .swiper-slide .voice-item .tag-list .tag {
    display: inline-block;
    margin: 0 3px 3px 0;
    padding: 0 3px;
    border-radius: 5px;
    background-color: #f19ec2;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
  }
  #voice .swiper-button-next {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 70%;
    right: -50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f19ec2;
  }
  #voice .swiper-button-next::after {
    width: 12px;
    height: 20px;
    background: url(../images/icon_arrow_white.svg) no-repeat center center;
    background-size: contain;
    font-size: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  #voice .swiper-button-prev {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 70%;
    left: -50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f19ec2;
  }
  #voice .swiper-button-prev::after {
    width: 12px;
    height: 20px;
    background: url(../images/icon_arrow_white.svg) no-repeat center center;
    background-size: contain;
    font-size: 0;
  }
  #voice .swiper-pagination {
    position: absolute;
    bottom: -50px;
  }
  #voice .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #333333;
  }
  #voice .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #f19ec2;
  }
  /* ご利用料金 */
  #price {
    background-color: #fff9fb;
  }
  #price section {
    max-width: 1000px;
  }
  #price .price-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  #price .price-list .price-item {
    width: 30%;
  }
  #price .price-list .price-item h4 {
    padding: 10px;
    border-radius: 10px 10px 0 0;
    background-color: #f19ec2;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
  }
  #price .price-list .price-item .price-item-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 110px;
    padding: 20px 0;
    border-radius: 0 0 10px 10px;
    border: 2px solid #f19ec2;
    text-align: center;
    background-color: #fff;
  }
  #price .price-list .price-item .price-item-inner p {
    width: 100%;
    margin: 0;
    font-weight: bold;
  }
  #price .price-list .price-item .price-item-inner p .num {
    font-size: 32px;
  }
  #price .price-list .price-item .price-item-inner p .normal {
    font-size: 24px;
  }
  #price .price-list .plus {
    position: relative;
    width: 20px;
    height: 20px;
  }
  #price .price-list .plus::before,
  #price .price-list .plus::after {
    content: "";
    position: absolute;
    border-radius: 2px;
    background-color: #333333;
  }
  #price .price-list .plus::before {
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px;
    height: 3px;
  }
  #price .price-list .plus::after {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 3px;
    height: 20px;
  }
  #price h3 {
    margin: 40px 0 20px 0;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
  }
  #price .price-table table {
    border-radius: 10px;
  }
  #price .price-table table td,
  #price .price-table table th {
    font-weight: bold;
    font-size: 20px;
  }
  #price .price-table table th {
    width: 220px;
    border-top: 1px solid #454a5c;
    border-bottom: 1px solid #fff;
    background-color: #454a5c;
    color: #fff;
  }
  #price .price-table table td {
    width: 280px;
    border: 1px solid #454a5c;
    background-color: #fff;
  }
  /* ご利用開始までの流れ */
  #flow .flow-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  #flow .flow-list .flow-list-item {
    position: relative;
    width: 18%;
    text-align: center;
  }
  #flow .flow-list .flow-list-item::after {
    content: "";
    position: absolute;
    right: -35px;
    top: 45%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 47px;
    height: 1px;
    background-color: #969696;
  }
  #flow .flow-list .flow-list-item:last-child::after {
    display: none;
  }
  #flow .flow-list .flow-list-item p {
    margin: 0 0 10px 0;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 24px;
    color: #f19ec2;
  }
  #flow .flow-list .flow-list-item .image {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto;
    background-color: #f19ec2;
  }
  #flow .flow-list .flow-list-item .image img {
    width: 75%;
    height: 65%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  #flow .flow-list .flow-list-item h3 {
    margin: 10px 0 0 0;
    font-size: 24px;
  }
  #flow .bubble {
    width: 470px;
    margin: 0 auto;
    padding: 60px 10px 30px 10px;
    background: url(../images/flow_bg_bubble.png) no-repeat center center;
    background-size: contain;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #f19ec2;
    line-height: 1.3;
  }
  #flow .bubble .font-large {
    font-size: 45px;
  }
  /* よくあるご質問 */
  #faq {
    background-color: #fff9fb;
  }
  #faq .faq-list {
    margin-bottom: 30px;
    padding: 20px 40px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 16px rgba(241, 158, 194, 0.3);
    box-shadow: 0px 0px 16px rgba(241, 158, 194, 0.3);
    background-color: #fff;
  }
  #faq .question {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
  }
  #faq .question .font-large {
    margin-right: 10px;
    font-size: 32px;
    color: #f19ec2;
  }
  #faq .anser {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 15px;
    border-top: 1px solid #dedede;
    padding-top: 15px;
  }
  #faq .anser .font-large {
    font-weight: bold;
    margin-right: 10px;
    font-size: 32px;
    color: #f19ec2;
  }
  #faq .toggle_button {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 19px;
    height: 10px;
    background: url(../images/icon_arrow_pink.svg) no-repeat center center;
    background-size: contain;
  }
  #faq .toggle_button.close_icon {
    -webkit-transform: translateY(-5px) rotate(180deg);
    transform: translateY(-5px) rotate(180deg);
  }
  /* お問い合わせ */
  #contact table {
    max-width: 800px;
    margin-bottom: 20px;
  }
  #contact table tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #contact table tr:first-child th {
    margin: 0;
  }
  #contact table th,
  #contact table td {
    width: 100%;
    background-color: #fff;
    border: none;
    text-align: left;
  }
  #contact table th {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: bold;
    margin-top: 20px;
  }
  #contact table td {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  #contact table td > div {
    width: 45%;
  }
  #contact .any {
    margin-right: 10px;
    padding: 2px 5px;
    border-radius: 3px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    background-color: #77cd75;
  }
  #contact .required {
    margin-right: 10px;
    padding: 2px 5px;
    border-radius: 3px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    background-color: #ef3e2e;
  }
  #contact .privacy {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 40px;
  }
  #contact .submit button {
    display: block;
    width: 360px;
    margin: 0 auto;
    padding: 10px 0;
    border-radius: 25px;
    border: 2px solid #f49f0a;
    background-color: #f49f0a;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
  }
  #contact .submit button:hover {
    background-color: #fff;
    color: #f49f0a;
  }
  #contact.confirm .title-normal,
  #contact.thanks .title-normal {
    margin-bottom: 40px;
  }
  #contact .contact-thanks .text {
    font-weight: bold;
    text-align: center;
  }
  /* 詳細ページリンク */
  .cv .detail {
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    max-width: calc(100% - 8vw);
    margin: 0 auto;
    padding: 18px 30px;
    border: 2px solid #f49f0a;
    border-radius: 30px;
    background-color: #fff;
    color: #f49f0a;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
  }

  .cv .detail::after {
    content: "";
    display: inline-block;
    margin-left: 15px;
    border-left: 13px solid #fff;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    transition: all 0.3s ease;
    border-left: 13px solid #f49f0a;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
  }
}
/*# sourceMappingURL=style.css.map */
