@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=MuseoModerno:wght@100;200;300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* ブレイクポイント参考

PC:インナーコンテンツサイズ以上
Laptop-HiDPI:1440
Laptop-MDPI :1280
iPad Pro(10.5inch):834
iPad Pro(12.9inch):1024
iPad:601
SP:600

*/
/* レスポンシブサイト非表示 */
/* PCのみ */
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 1500px) {
  .w1500 {
    display: none !important;
  }
}
@media screen and (max-width: 837px), (min-width: 1300px) {
  .w1300 {
    display: none !important;
  }
}
/* タブレット・PC */
@media screen and (max-width: 599px) {
  .pctb {
    display: none !important;
  }
}
@media screen and (max-width: 837px) {
  .pctb02 {
    display: none !important;
  }
}
/* タブレット・SP */
@media screen and (min-width: 1025px) {
  .tbsp {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (max-width: 837px), (min-width: 1025px) {
  .tb03 {
    display: none !important;
  }
}
@media screen and (max-width: 599px), (min-width: 837px) {
  .tb02 {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (max-width: 599px), (min-width: 1025px) {
  .tb {
    display: none !important;
  }
}
/* SPのみ */
@media screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
@media print {
  .sp {
    display: none !important;
  }
  body {
    width: 1600px;
    -webkit-print-color-adjust: exact;
    transform: scale(0.6);
    -moz-transform: scale(0.6);
    -webkit-transform: scale(0.6);
    transform-origin: 0 0;
  }
  /*　------- ↓その他参考例　---------
  .header {
      position: relative !important; //ヘッダー固定fixedを解除
  }
  .header .header-inner {
      width: 100% !important; //サイト幅を解除
  }
  .page-title {
      margin-top: 0px !important; //固定ヘッダー時のマージンTOP分を解除
      width: 100% !important; //サイト幅を解除
  }
  .breadcrumbs-list {
      width: 100% !important; //サイト幅を解除
  }
  .global-nav {
      width: 100%; //サイト幅を解除
  }
  ------- ↑その他参考　---------*/
}
/*--------------------------------------------------------

	リセット : html5reset-1.6.1.css

参考
https://coliss.com/articles/build-websites/operation/css/my-css-reset-by-ire.html
----------------------------------------------------------*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html {
  font-size: 62.5%;
}

/*body設定*/
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #000;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  line-height: 1.7;
  font-size: 1.5rem;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
  /*任意でフォントサイズを指定*/
}
@media screen and (min-width: 1025px) {
  body {
    font-weight: 500;
  }
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.5rem;
  }
}

/*IE用：游ゴシックの謎余白をなくすためフォントを別指定*/
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Meiryo, sans-serif;
  }
}
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
caption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

/*テーブル指定*/
table,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

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

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています marginを指定したら地獄*/
ul[class],
ol[class] {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote,
q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています。また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています。また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input,
select {
  vertical-align: middle;
}

/*画像を縦に並べたときに余白が出てしまわないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  -webkit-backface-visibility: hidden;
  width: auto;
  max-width: 100%;
  height: auto;
}

/* タッチデバイスでのリンクやボタンの反応を向上 */
a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

@page {
  size: A4;
  margin: 0;
}
/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  transition: 0.1s;
  text-decoration: none;
}

/*クラスの指定がない場合のリンクのデフォルト色を指定*/
a:not([class]) {
  color: #f0813c;
}

a:not([class]):active {
  color: #f0813c;
}

a:not([class]):visited {
  color: #f0813c;
}

/*すべての要素のfont-family, font-size, line-heightをその親から継承するようにリセット*/
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/*属性と状態のCSSリセット*/
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/*box-sizing*/
*,
*::before,
*::after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*clearfix*/
/* For modern browsers */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* For IE 6/7 only */
.clearfix {
  *zoom: 1;
}

/*禁則処理の追加*/
p,
li,
dt,
dd,
th,
td,
pre {
  -ms-line-break: strict;
  line-break: strict;
  -ms-word-break: break-strict;
  word-break: break-strict;
}

/*iOSでのsubmit, buttonのデザインをリセットするCSS*/
button,
input[type=submit],
input[type=button],
input[type=search] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
button::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
  display: none;
}
button::focus,
input[type=submit]::focus,
input[type=button]::focus,
input[type=search]::focus {
  outline-offset: -2px;
}

/* Form */
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  margin: 0;
  padding: 0;
  background-color: transparent;
  color: inherit;
  font-size: 100%;
  border: none;
  border-radius: 0;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
}

button,
input[type=submit],
input[type=button],
input[type=radio],
input[type=checkbox],
label,
select {
  cursor: pointer;
}

/** Form Select IE 11 */
select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

/** Selection */
::-moz-selection {
  background-color: #b3d4fc;
  /* Change as appropriate */
  color: #000;
  /* Change as appropriate */
  text-shadow: none;
}
::-moz-selection,
::selection {
  background-color: #b3d4fc;
  /* Change as appropriate */
  color: #000;
  /* Change as appropriate */
  text-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
  }
}
/*クリアフィックス*/
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

a {
  text-decoration: none;
  transition: 0.5s;
}

p, h1, h2, h3, h4, h5, dt, dd, a {
  font-display: swap;
}

/*マージン*/
.mb00 {
  margin-bottom: 0px !important;
}
@media screen and (max-width: 599px) {
  .mb00 {
    margin-bottom: 0px !important;
  }
}

.mb05 {
  margin-bottom: 5px !important;
}
@media screen and (max-width: 599px) {
  .mb05 {
    margin-bottom: 5px !important;
  }
}

.mb10 {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 599px) {
  .mb10 {
    margin-bottom: 5px !important;
  }
}

.mb15 {
  margin-bottom: 15px !important;
}
@media screen and (max-width: 599px) {
  .mb15 {
    margin-bottom: 10px !important;
  }
}

.mb20 {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 599px) {
  .mb20 {
    margin-bottom: 10px !important;
  }
}

.mb25 {
  margin-bottom: 25px !important;
}
@media screen and (max-width: 599px) {
  .mb25 {
    margin-bottom: 20px !important;
  }
}

.mb30 {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 1024px) {
  .mb30 {
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb30 {
    margin-bottom: 15px !important;
  }
}

.mb35 {
  margin-bottom: 35px !important;
}
@media screen and (max-width: 1024px) {
  .mb35 {
    margin-bottom: 27px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb35 {
    margin-bottom: 20px !important;
  }
}

.mb40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 1024px) {
  .mb40 {
    margin-bottom: 30px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb40 {
    margin-bottom: 20px !important;
  }
}

.mb45 {
  margin-bottom: 45px !important;
}
@media screen and (max-width: 1024px) {
  .mb45 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb45 {
    margin-bottom: 25px !important;
  }
}

.mb50 {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 599px) {
  .mb50 {
    margin-bottom: 25px !important;
  }
}

.mb60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 1024px) {
  .mb60 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb60 {
    margin-bottom: 30px !important;
  }
}

.mb70 {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 1024px) {
  .mb70 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb70 {
    margin-bottom: 30px !important;
  }
}

.mb80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 1024px) {
  .mb80 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb80 {
    margin-bottom: 30px !important;
  }
}

.mb100 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 1024px) {
  .mb100 {
    margin-bottom: 70px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb100 {
    margin-bottom: 50px !important;
  }
}

.mt00 {
  margin-top: 0px !important;
}
@media screen and (max-width: 599px) {
  .mt00 {
    margin-top: 0px !important;
  }
}

.mt10 {
  margin-top: 10px !important;
}
@media screen and (max-width: 599px) {
  .mt10 {
    margin-top: 10px !important;
  }
}

.mt15 {
  margin-top: 15px !important;
}
@media screen and (max-width: 599px) {
  .mt15 {
    margin-top: 10px !important;
  }
}

.mt20 {
  margin-top: 20px !important;
}
@media screen and (max-width: 599px) {
  .mt20 {
    margin-top: 10px !important;
  }
}

.mt30 {
  margin-top: 30px !important;
}
@media screen and (max-width: 1024px) {
  .mt30 {
    margin-top: 20px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt30 {
    margin-top: 15px !important;
  }
}

.mt40 {
  margin-top: 40px !important;
}
@media screen and (max-width: 1024px) {
  .mt40 {
    margin-top: 30px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt40 {
    margin-top: 20px !important;
  }
}

.btn {
  display: block;
  position: relative;
  border-radius: 100px;
  background-color: #342e24;
  max-width: 265px;
  width: 100%;
  padding: 20px 30px 22px;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.7rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.1;
  background-image: url(../img/top/arrow_maru_white.svg);
  background-size: 31px auto;
  background-position: right 15px center;
  background-repeat: no-repeat;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .btn {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .btn {
    max-width: 230px;
    padding: 16px 20px 17px;
    background-size: 26px auto;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .btn:hover {
    transform: translateY(3px);
    transition: 0.3s;
  }
}
.btn--arrow {
  background-image: url(../img/top/arrow_white.svg);
  background-size: 10px auto;
  background-position: right 25px center;
}
@media screen and (max-width: 599px) {
  .btn--arrow {
    background-position: right 20px center;
  }
}
.btn--back {
  background-color: #9f9b95;
  background-image: url(../img/top/arrow_maru_back.svg);
  background-position: left 15px center;
  max-width: 200px;
  padding: 20px 30px 22px 45px;
}
@media screen and (max-width: 837px) {
  .btn--back {
    max-width: 265px;
  }
}
@media screen and (max-width: 599px) {
  .btn--back {
    max-width: 230px;
    padding: 16px 20px 17px 25px;
  }
}

.footer-top {
  padding: 80px 50px 60px;
  background-color: #4b4235;
}
@media screen and (max-width: 1024px) {
  .footer-top {
    padding: 60px 30px 40px;
  }
}
@media screen and (max-width: 599px) {
  .footer-top {
    padding: 40px 20px 25px;
  }
}
.footer-top__company-wrapper {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .footer-top__company-wrapper {
    flex-wrap: wrap;
  }
}
.footer-top__company-wrapper__logo {
  width: calc(100% - 450px);
  margin-right: 20px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .footer-top__company-wrapper__logo {
    width: 100%;
    margin-bottom: 30px;
    margin-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .footer-top__company-wrapper__logo {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.footer-top__company-wrapper__logo__inner {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 837px) {
  .footer-top__company-wrapper__logo__inner {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 599px) {
  .footer-top__company-wrapper__logo__inner {
    margin-bottom: 10px;
  }
}
.footer-top__company-wrapper__logo__inner__img {
  display: block;
  width: 249px;
}
@media screen and (max-width: 1024px) {
  .footer-top__company-wrapper__logo__inner__img {
    width: 200px;
  }
}
@media screen and (max-width: 837px) {
  .footer-top__company-wrapper__logo__inner__img {
    width: 180px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .footer-top__company-wrapper__logo__inner__img {
    width: 165px;
  }
}
.footer-top__company-wrapper__logo__inner__text01 {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 3px 0 3px 20px;
  margin: 8px 0 0 20px;
  position: relative;
}
@media screen and (max-width: 1500px) {
  .footer-top__company-wrapper__logo__inner__text01 {
    font-size: 1.5rem;
    padding: 6px 0 6px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-top__company-wrapper__logo__inner__text01 {
    font-size: 1.4rem;
    padding: 2px 0 2px 15px;
    margin: 8px 0 0 15px;
  }
}
@media screen and (max-width: 837px) {
  .footer-top__company-wrapper__logo__inner__text01 {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .footer-top__company-wrapper__logo__inner__text01 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin: 10px 0 0 0;
    padding-left: 0;
  }
}
.footer-top__company-wrapper__logo__inner__text01::before {
  position: absolute;
  content: "";
  width: 1px;
  height: calc(100% - 2px);
  background-color: #b0a99f;
  left: 0;
  bottom: 1px;
}
@media screen and (max-width: 1500px) {
  .footer-top__company-wrapper__logo__inner__text01::before {
    height: calc(100% - 4px);
    bottom: 2px;
  }
}
@media screen and (max-width: 837px) {
  .footer-top__company-wrapper__logo__inner__text01::before {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .footer-top__company-wrapper__logo__inner__text01::before {
    display: none;
  }
}
.footer-top__company-wrapper__logo__inner__text01 span {
  margin-left: -0.3em;
  margin-right: -0.3em;
}
.footer-top__company-wrapper__logo__inner__text02 {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.2rem;
  color: #74716c;
  line-height: 1.4;
  height: 100%;
  background-color: #fff;
  padding: 5px 13px 6px 4px;
  margin-left: 15px;
  margin-top: 5px;
}
@media screen and (max-width: 837px) {
  .footer-top__company-wrapper__logo__inner__text02 {
    margin-left: 0;
    margin-top: 15px;
  }
}
.footer-top__company-wrapper__logo__inner__text02 span {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.footer-top__company-wrapper__logo .text-base {
  width: 100%;
}
@media screen and (max-width: 837px) {
  .footer-top__company-wrapper__logo .text-base {
    text-align: center;
  }
}
.footer-top__company-wrapper__business {
  width: 430px;
  border: 1px solid #fff;
  padding: 22px 30px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .footer-top__company-wrapper__business {
    width: 100%;
    padding: 18px 25px;
  }
}
@media screen and (max-width: 599px) {
  .footer-top__company-wrapper__business {
    border-radius: 5px;
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}
.footer-top__company-wrapper__business .footer-business-list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .footer-top__company-wrapper__business .footer-business-list {
    display: block;
  }
}
.footer-top__company-wrapper__business .footer-business-list__item {
  width: auto;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: justify;
  position: relative;
  padding-left: 22px;
  margin-right: 20px;
}
.footer-top__company-wrapper__business .footer-business-list__item:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .footer-top__company-wrapper__business .footer-business-list__item {
    font-size: 1.5rem;
  }
  .footer-top__company-wrapper__business .footer-business-list__item:nth-child(2n) {
    margin-right: 20px;
  }
  .footer-top__company-wrapper__business .footer-business-list__item:last-child {
    margin-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .footer-top__company-wrapper__business .footer-business-list__item {
    font-size: 1.4rem;
    line-height: 1.5;
    padding-left: 17px;
    margin-right: 0;
  }
  .footer-top__company-wrapper__business .footer-business-list__item:nth-child(2n) {
    margin-right: 0;
  }
}
.footer-top__company-wrapper__business .footer-business-list__item::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  left: 0;
  top: 9px;
}
@media screen and (max-width: 1024px) {
  .footer-top__company-wrapper__business .footer-business-list__item::before {
    top: 8px;
  }
}
@media screen and (max-width: 599px) {
  .footer-top__company-wrapper__business .footer-business-list__item::before {
    top: 6px;
  }
}
.footer-top__contact-wrapper {
  padding: 2% 2% 2% 0;
  background-color: #564d41;
  border-radius: 10px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .footer-top__contact-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 20px 30px;
  }
}
@media screen and (max-width: 599px) {
  .footer-top__contact-wrapper {
    padding: 0 10px 25px;
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    border-radius: 5px;
  }
}
.footer-top__contact-wrapper__title {
  width: 30%;
  background-color: #3c3428;
  padding: 2% 2% 3%;
  margin-right: 2%;
  border-radius: 0 10px 10px 0;
}
@media screen and (max-width: 1024px) {
  .footer-top__contact-wrapper__title {
    width: 100%;
    margin-right: 0;
    padding: 20px 20px 25px;
    border-radius: 0 0 10px 10px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .footer-top__contact-wrapper__title {
    padding: 15px 15px 17px;
    border-radius: 0 0 5px 5px;
    margin-bottom: 20px;
  }
}
.footer-top__contact-wrapper__title__text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.3rem;
  color: #fff;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 12px;
}
@media screen and (max-width: 1024px) {
  .footer-top__contact-wrapper__title__text {
    font-size: 2.1rem;
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 837px) {
  .footer-top__contact-wrapper__title__text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .footer-top__contact-wrapper__title__text {
    font-size: 1.7rem;
  }
}
.footer-top__contact-wrapper__title .text-base {
  font-size: 1.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  .footer-top__contact-wrapper__title .text-base {
    font-size: 1.4rem;
  }
}
.footer-top__contact-wrapper .footer-contact-list {
  width: 68%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .footer-top__contact-wrapper .footer-contact-list {
    width: 100%;
    flex-wrap: wrap;
  }
}
.footer-top__contact-wrapper .footer-contact-list__item {
  padding: 0 3%;
}
@media screen and (max-width: 837px) {
  .footer-top__contact-wrapper .footer-contact-list__item {
    width: 100%;
    padding: 15px 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.footer-top__contact-wrapper .footer-contact-list__item:first-child {
  padding: 0 3% 0 0;
  border-right: 1px dotted #e1e1e1;
}
@media screen and (max-width: 837px) {
  .footer-top__contact-wrapper .footer-contact-list__item:first-child {
    padding: 0 10px 15px;
    border-right: none;
    border-bottom: 1px dotted #e1e1e1;
  }
}
.footer-top__contact-wrapper .footer-contact-list__item:last-child {
  padding: 0 0 0 3%;
  border-left: 1px dotted #e1e1e1;
}
@media screen and (max-width: 837px) {
  .footer-top__contact-wrapper .footer-contact-list__item:last-child {
    padding: 15px 10px 0;
    border-left: none;
    border-top: 1px dotted #e1e1e1;
  }
}
.footer-top__contact-wrapper .footer-contact-list__item__title {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.9rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #fff;
  margin-bottom: 7px;
}
@media screen and (max-width: 1024px) {
  .footer-top__contact-wrapper .footer-contact-list__item__title {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 837px) {
  .footer-top__contact-wrapper .footer-contact-list__item__title {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .footer-top__contact-wrapper .footer-contact-list__item__title {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }
}
.footer-top__contact-wrapper .footer-contact-list__item__tel {
  font-family: "Roboto", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  background-image: url(../img/top/freedial.png);
  background-size: 31px auto;
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 36px;
}
@media screen and (max-width: 1024px) {
  .footer-top__contact-wrapper .footer-contact-list__item__tel {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .footer-top__contact-wrapper .footer-contact-list__item__tel {
    font-size: 2.2rem;
    background-size: 25px auto;
    padding-left: 32px;
  }
}
.footer-top__contact-wrapper .footer-contact-list__item__tel.normal {
  position: relative;
  background-image: none;
}
.footer-top__contact-wrapper .footer-contact-list__item__tel.normal::before {
  position: absolute;
  content: "直通";
  width: 31px;
  height: 18px;
  background-color: #f0813c;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.3rem;
  line-height: 17px;
  font-weight: 600;
  text-align: center;
  left: 0;
  top: 6px;
}
@media screen and (max-width: 837px) {
  .footer-top__contact-wrapper .footer-contact-list__item__tel.normal::before {
    top: 3px;
  }
}
@media screen and (max-width: 599px) {
  .footer-top__contact-wrapper .footer-contact-list__item__tel.normal::before {
    width: 28px;
    height: 16px;
    font-size: 1.2rem;
    line-height: 14px;
    top: 2px;
  }
}
.footer-top__contact-wrapper .footer-contact-list__item__text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .footer-top__contact-wrapper .footer-contact-list__item__text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 837px) {
  .footer-top__contact-wrapper .footer-contact-list__item__text {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .footer-top__contact-wrapper .footer-contact-list__item__text {
    font-size: 1.3rem;
    line-height: 1.7;
  }
}

.footer-bottom {
  padding: 20px 50px;
  background-color: #4b4235;
  border-top: 1px solid #817b72;
}
@media screen and (max-width: 1024px) {
  .footer-bottom {
    padding: 20px 30px;
  }
}
@media screen and (max-width: 599px) {
  .footer-bottom {
    padding: 20px 20px 25px;
  }
}
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .footer-bottom__inner {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer-bottom__inner__copyright {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.2rem;
  color: #bebbb9;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .footer-bottom__inner__copyright {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 599px) {
  .footer-bottom__inner__copyright {
    text-align: center;
    line-height: 1.3;
    margin-bottom: 10px;
  }
}
.footer-bottom__inner .footer-bottom-list {
  display: flex;
}
.footer-bottom__inner .footer-bottom-list__item {
  margin-left: 25px;
}
.footer-bottom__inner .footer-bottom-list__item:first-child {
  margin-left: 0;
}
.footer-bottom__inner .footer-bottom-list__item__link {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding-right: 20px;
  position: relative;
  display: block;
}
@media screen and (max-width: 1024px) {
  .footer-bottom__inner .footer-bottom-list__item__link {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .footer-bottom__inner .footer-bottom-list__item__link {
    font-size: 1.4rem;
  }
}
.footer-bottom__inner .footer-bottom-list__item__link::before {
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  background-image: url(../img/top/gaibu.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13px auto;
  right: 0;
  top: 2px;
}
@media screen and (max-width: 1024px) {
  .footer-bottom__inner .footer-bottom-list__item__link::before {
    top: 1px;
  }
}
@media screen and (min-width: 1025px) {
  .footer-bottom__inner .footer-bottom-list__item__link:hover {
    transform: translateY(3px);
  }
}

/*ヘッダー*/
header {
  position: fixed;
  width: 100%;
  height: 100px;
  z-index: 100;
}
@media screen and (max-width: 599px) {
  header {
    height: 60px;
  }
}
header .header {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 20px;
}
@media screen and (max-width: 1024px) {
  header .header {
    padding: 0 0 0 15px;
  }
}
@media screen and (max-width: 599px) {
  header .header {
    padding: 0;
    display: block;
  }
}
header .header .header-logo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: calc(100% - 613px);
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 1500px) {
  header .header .header-logo {
    width: calc(100% - 515px);
  }
}
@media screen and (max-width: 1024px) {
  header .header .header-logo {
    width: calc(100% - 310px);
  }
}
@media screen and (max-width: 599px) {
  header .header .header-logo {
    width: 100%;
    padding: 0 0 1vw 7px;
    height: 60px;
  }
}
@media screen and (min-width: 1025px) {
  header .header .header-logo__link:hover {
    opacity: 0.8;
  }
}
header .header .header-logo__img {
  display: block;
  width: 209px;
}
@media screen and (max-width: 1500px) {
  header .header .header-logo__img {
    width: 190px;
  }
}
@media screen and (max-width: 1024px) {
  header .header .header-logo__img {
    width: 170px;
  }
}
@media screen and (max-width: 837px) {
  header .header .header-logo__img {
    width: 160px;
  }
}
@media screen and (max-width: 599px) {
  header .header .header-logo__img {
    width: 120px;
  }
}
header .header .header-logo__text01 {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #342e24;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding-left: 12px;
  margin: 8px 13px 0 12px;
  position: relative;
}
@media screen and (max-width: 1500px) {
  header .header .header-logo__text01 {
    font-size: 1.5rem;
    margin: 5px 0 0 12px;
  }
}
@media screen and (max-width: 1024px) {
  header .header .header-logo__text01 {
    font-size: 1.4rem;
    margin: 5px 0 0 12px;
  }
}
@media screen and (max-width: 837px) {
  header .header .header-logo__text01 {
    font-size: 1.3rem;
    margin: 5px 0 0 12px;
  }
}
@media screen and (max-width: 599px) {
  header .header .header-logo__text01 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin: 3px 0 0 6px;
    padding-left: 0;
  }
}
header .header .header-logo__text01::before {
  position: absolute;
  content: "";
  width: 1px;
  height: calc(100% - 2px);
  background-color: #b0a99f;
  left: 0;
  bottom: 1px;
}
@media screen and (max-width: 1500px) {
  header .header .header-logo__text01::before {
    height: calc(100% - 4px);
    bottom: 2px;
  }
}
@media screen and (max-width: 1024px) {
  header .header .header-logo__text01::before {
    bottom: 2px;
  }
}
@media screen and (max-width: 599px) {
  header .header .header-logo__text01::before {
    display: none;
  }
}
header .header .header-logo__text01 span {
  margin-left: -0.3em;
  margin-right: -0.3em;
}
header .header .header-logo__text02 {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.2rem;
  color: #74716c;
  line-height: 1.3;
  height: 100%;
  background-color: #fff;
  padding: 8px 10px 8px 4px;
}
@media screen and (max-width: 1500px) {
  header .header .header-logo__text02 {
    padding: 2px 5px 3px;
    margin-top: 7px;
  }
}
header .header .header-logo__text02 span {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
header .header .header-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 613px;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 1500px) {
  header .header .header-item {
    width: 515px;
  }
}
@media screen and (max-width: 1024px) {
  header .header .header-item {
    width: 310px;
  }
}
@media screen and (max-width: 599px) {
  header .header .header-item {
    position: fixed;
    width: 100%;
    bottom: calc(-100vh + 115px);
  }
}
header .header .header-item__inner {
  display: flex;
}
@media screen and (max-width: 1024px) {
  header .header .header-item__inner {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  header .header .header-item__inner {
    width: 50%;
  }
}
header .header .header-item__free-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #f0813c;
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
  background-color: #f7e5a9;
  padding: 11px 13px 14px;
  border-radius: 5px;
  margin-right: 24px;
  position: relative;
}
@media screen and (max-width: 1500px) {
  header .header .header-item__free-text {
    font-size: 1.7rem;
    margin-right: 18px;
    padding: 11px 10px 14px;
  }
}
@media screen and (max-width: 1024px) {
  header .header .header-item__free-text {
    width: 188px;
    font-size: 1.5rem;
    margin-right: 0;
    padding: 4px 5px 6px;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 599px) {
  header .header .header-item__free-text {
    display: none;
  }
}
header .header .header-item__free-text::before {
  position: absolute;
  content: "";
  width: 11px;
  height: 15px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: #f7e5a9;
  right: -10px;
  top: calc(50% - 7px);
}
@media screen and (max-width: 1024px) {
  header .header .header-item__free-text::before {
    display: none;
  }
}
header .header .header-item__tel-text {
  margin-bottom: 4px;
}
@media screen and (max-width: 599px) {
  header .header .header-item__tel-text {
    margin-bottom: 0;
    width: 100%;
  }
}
header .header .header-item__tel-text a, header .header .header-item__tel-text p {
  padding-left: 39px;
}
@media screen and (max-width: 599px) {
  header .header .header-item__tel-text a, header .header .header-item__tel-text p {
    padding-left: 0;
  }
}
header .header .header-item__tel-text a {
  font-family: "Roboto", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  color: #342e24;
  background-image: url(../img/top/freedial.png);
  background-size: 35px auto;
  background-position: left center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1500px) {
  header .header .header-item__tel-text a {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 1024px) {
  header .header .header-item__tel-text a {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 599px) {
  header .header .header-item__tel-text a {
    display: flex;
    justify-content: center;
    font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    color: #fff;
    line-height: 1;
    font-weight: 600;
    width: 100%;
    height: 55px;
    font-size: 1.2rem;
    padding-top: 34px;
    background-color: #f0ae3c;
    background-image: none;
    position: relative;
  }
  header .header .header-item__tel-text a::before {
    position: absolute;
    content: "";
    width: 23px;
    height: 23px;
    background-image: url(../img/top/icon_tel.svg);
    background-size: 28px auto;
    background-repeat: no-repeat;
    background-position: center;
    left: calc(50% - 14px);
    top: 22px;
  }
}
@media screen and (max-width: 599px) and (max-width: 599px) {
  header .header .header-item__tel-text a::before {
    background-size: 17px auto;
    top: 7px;
  }
}
@media screen and (max-width: 599px) {
  header .header .header-item__tel-text a::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    background-color: #fff;
    right: 5px;
    bottom: 5px;
  }
}
@media screen and (max-width: 599px) and (max-width: 599px) {
  header .header .header-item__tel-text a::after {
    width: 10px;
    height: 10px;
  }
}
header .header .header-item__tel-text p {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #342e24;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  header .header .header-item__tel-text p {
    font-size: 1.3rem;
    margin-top: -3px;
  }
}
@media screen and (max-width: 599px) {
  header .header .header-item__tel-text p {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  header .header .header-item__contact-btn {
    width: 50%;
  }
}
header .header .header-item__contact-btn .link {
  display: flex;
  justify-content: center;
  width: 150px;
  height: 100px;
  background: linear-gradient(150deg, #f0803c, #f0a23c);
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 600;
  padding-top: 56px;
  letter-spacing: normal;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1500px) {
  header .header .header-item__contact-btn .link {
    width: 115px;
    height: 100px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1024px) {
  header .header .header-item__contact-btn .link {
    width: 100px;
    height: 100px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  header .header .header-item__contact-btn .link {
    width: 100%;
    height: 55px;
    font-size: 1.2rem;
    padding-top: 34px;
  }
}
header .header .header-item__contact-btn .link::before {
  position: absolute;
  content: "";
  width: 28px;
  height: 20px;
  background-image: url(../img/top/icon_mail.svg);
  background-size: 28px auto;
  background-repeat: no-repeat;
  background-position: center;
  left: calc(50% - 14px);
  top: 22px;
}
@media screen and (max-width: 599px) {
  header .header .header-item__contact-btn .link::before {
    background-size: 19px auto;
    top: 9px;
  }
}
header .header .header-item__contact-btn .link::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background-color: #fff;
  right: 5px;
  bottom: 5px;
}
@media screen and (max-width: 599px) {
  header .header .header-item__contact-btn .link::after {
    width: 10px;
    height: 10px;
  }
}
@media screen and (min-width: 1025px) {
  header .header .header-item__contact-btn .link:hover {
    opacity: 0.8;
  }
}
header .header .header-logo,
header .header .header-item {
  position: relative;
  z-index: 100;
}
header .header .header-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #f8f4ea;
}

.common-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.common-inner02 {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
}

/*---
.ml50{
    margin-left: 50px;
    @include mq(tb){
        margin-left: 20px;
            }
    @include mq(sp){
        margin-left: 10px;
    }
}.mr50{
    margin-right: 50px;
    @include mq(tb){
        margin-right: 20px;
            }
    @include mq(sp){
        margin-right: 10px;
    }
}---*/
.anchor {
  scroll-padding-top: calc((var(--headerHeight, 95px)) + 20px);
}

.content-wrapper {
  width: 100%;
  background-color: #fff;
  padding: 390px 50px 130px;
}
@media screen and (max-width: 1024px) {
  .content-wrapper {
    padding: 310px 30px 90px;
  }
}
@media screen and (max-width: 837px) {
  .content-wrapper {
    padding: 240px 30px 70px;
  }
}
@media screen and (max-width: 599px) {
  .content-wrapper {
    padding: 170px 20px 50px;
  }
}

.title01--center {
  text-align: center;
}
.title01__en-title {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  color: #f0813c;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.07em;
  padding-bottom: 4px;
  margin-bottom: 20px;
  display: inline-block;
  border-bottom: 2px solid #f0813c;
}
@media screen and (max-width: 1024px) {
  .title01__en-title {
    font-size: 1.5rem;
    margin-bottom: 17px;
    padding-bottom: 3px;
  }
}
@media screen and (max-width: 837px) {
  .title01__en-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .title01__en-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
}
.title01__en-title--white {
  color: #fff;
  border-bottom: 2px solid #fff;
}
.title01__en-title--white::before {
  background-color: #fff;
}
.title01__en-title--no-line {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 7px;
}
.title01__ja-title {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 4rem;
  color: #342e24;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.07em;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .title01__ja-title {
    font-size: 3.5rem;
    margin-bottom: 17px;
  }
}
@media screen and (max-width: 837px) {
  .title01__ja-title {
    font-size: 2.9rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .title01__ja-title {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
}
.title01__ja-title--white {
  color: #fff;
}
.title01__ja-title .mlr-05 {
  margin-left: -0.2em;
  margin-right: -0.2em;
}

.copy-text {
  width: 100%;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.9rem;
  color: #342e24;
  line-height: 1.9;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .copy-text {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .copy-text {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-top: -5px;
  }
}
.copy-text--white {
  color: #fff;
}

.title-line {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.7rem;
  color: #342e24;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.07em;
  margin-bottom: 35px;
  padding: 0 0 14px 26px;
  border-bottom: 2px solid #eeeae1;
  position: relative;
}
.title-line::before, .title-line::after {
  position: absolute;
  content: "";
  width: 5px;
  height: calc(50% - 6px);
  border-radius: 2.5px;
  left: 0;
}
.title-line::before {
  background-color: #f0813c;
  top: 3px;
  z-index: 2;
}
.title-line::after {
  background-color: #f0ae3c;
  bottom: 13px;
}
@media screen and (max-width: 1024px) {
  .title-line {
    font-size: 2.4rem;
    padding: 0 0 11px 18px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 837px) {
  .title-line {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
  .title-line::after {
    bottom: 12px;
  }
}
@media screen and (max-width: 599px) {
  .title-line {
    font-size: 1.9rem;
    padding: 0 0 8px 14px;
    margin-bottom: 15px;
  }
  .title-line::before, .title-line::after {
    width: 4px;
  }
  .title-line::after {
    bottom: 11px;
  }
}

.title-service {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 3.7rem;
  color: #342e24;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.07em;
  padding-top: 30px;
  margin-bottom: 35px;
  position: relative;
}
.title-service::before {
  position: absolute;
  content: "";
  width: 7vw;
  height: 6px;
  background-color: #f0813c;
  border-radius: 3px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .title-service {
    font-size: 3.2rem;
    padding-top: 25px;
  }
  .title-service::before {
    width: 10vw;
  }
}
@media screen and (max-width: 837px) {
  .title-service {
    font-size: 2.6rem;
    padding-top: 22px;
  }
  .title-service::before {
    height: 5px;
  }
}
@media screen and (max-width: 599px) {
  .title-service {
    font-size: 2.2rem;
    padding-top: 18px;
    margin-bottom: 25px;
  }
  .title-service::before {
    width: 17vw;
    height: 4px;
  }
}

.title-maru {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.5rem;
  color: #342e24;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.07em;
  padding-left: 40px;
  margin-bottom: 21px;
  position: relative;
}
.title-maru::before, .title-maru::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  top: 11px;
}
.title-maru::before {
  background-color: #f0813c;
  left: 0;
}
.title-maru::after {
  background-color: #f0ae3c;
  left: 12px;
}
@media screen and (max-width: 1024px) {
  .title-maru {
    font-size: 2.3rem;
    padding-left: 33px;
    margin-bottom: 18px;
  }
  .title-maru::before, .title-maru::after {
    width: 13px;
    height: 13px;
    top: 11px;
  }
  .title-maru::after {
    left: 10px;
  }
}
@media screen and (max-width: 837px) {
  .title-maru {
    font-size: 2rem;
    padding-left: 33px;
  }
  .title-maru::before, .title-maru::after {
    top: 8px;
  }
}
@media screen and (max-width: 599px) {
  .title-maru {
    font-size: 1.7rem;
    padding-left: 28px;
    margin-bottom: 14px;
  }
  .title-maru::before, .title-maru::after {
    width: 11px;
    height: 11px;
    top: 7px;
  }
  .title-maru::after {
    left: 9px;
  }
}
.title-maru span {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin: 6px 0 27px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .title-maru span {
    margin: 6px 0 23px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .title-maru span {
    margin: 6px 0 16px;
    font-size: 1.3rem;
  }
}

.text-title-bt {
  margin-top: -14px;
  margin-left: 40px;
}
@media screen and (max-width: 1024px) {
  .text-title-bt {
    margin-left: 33px;
  }
}
@media screen and (max-width: 599px) {
  .text-title-bt {
    margin-top: -8px;
    margin-left: 0;
  }
}

.text-base {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.6rem;
  color: #342e24;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .text-base {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .text-base {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}
.text-base--white {
  color: #fff;
}
.text-base .cl-orange {
  font-weight: 600;
  color: #f0813c;
}

.text-center {
  text-align: center;
}

.text-caution {
  text-indent: -1em;
  padding-left: 1em;
}

.text-link {
  color: #f0813c;
}
@media screen and (min-width: 1025px) {
  .text-link:hover {
    opacity: 0.6;
  }
}

.error-text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.6rem;
  color: #c60000;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
  border: 2px solid #c60000;
  padding: 23px 30px 25px;
}
@media screen and (max-width: 1024px) {
  .error-text {
    font-size: 1.5rem;
    padding: 17px 25px 20px;
  }
}
@media screen and (max-width: 599px) {
  .error-text {
    font-size: 1.4rem;
    line-height: 1.6;
    padding: 12px 15px 15px;
    letter-spacing: normal;
  }
}

.bg-white {
  padding: 45px 50px;
  background-color: #fff;
  border-radius: 15px;
}
@media screen and (max-width: 1024px) {
  .bg-white {
    border-radius: 10px;
    padding: 25px 30px;
  }
}
@media screen and (max-width: 599px) {
  .bg-white {
    border-radius: 5px;
    padding: 17px 20px;
  }
}

.base-list {
  display: flex;
  flex-wrap: wrap;
}
.base-list__item {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.6rem;
  color: #342e24;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: justify;
  position: relative;
  padding-left: 22px;
}
@media screen and (max-width: 1024px) {
  .base-list__item {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .base-list__item {
    font-size: 1.4rem;
    line-height: 1.5;
    padding-left: 17px;
  }
}
.base-list__item::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #f0813c;
  left: 0;
  top: 8px;
}
@media screen and (max-width: 1024px) {
  .base-list__item::before {
    top: 7px;
  }
}
@media screen and (max-width: 599px) {
  .base-list__item::before {
    top: 6px;
  }
}
.base-list__item--w100 {
  width: 100%;
}
.base-list__item--wf {
  margin-right: 20px;
}
.base-list__item--num {
  position: relative;
  padding-left: 28px;
}
@media screen and (max-width: 599px) {
  .base-list__item--num {
    padding-left: 23px;
  }
}
.base-list__item--num::before {
  position: absolute;
  content: "1";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 18px;
  font-weight: 600;
  font-size: 1.5rem;
  background-color: #f0cc3c;
  padding-left: 1px;
  left: 0;
  top: 4px;
}
@media screen and (max-width: 1024px) {
  .base-list__item--num::before {
    top: 3px;
  }
}
@media screen and (max-width: 599px) {
  .base-list__item--num::before {
    width: 17px;
    height: 17px;
    line-height: 16px;
    font-size: 1.3rem;
    top: 2px;
  }
}
.base-list__item--num.num02::before {
  content: "2";
}
.base-list__item--num.num03::before {
  content: "3";
}

.tool-list {
  display: flex;
  flex-wrap: wrap;
}
.tool-list__item {
  width: calc((100% - 48px) / 7);
  background-color: #f0813c;
  padding: 96px 5px 15px 5px;
  border-radius: 10px;
  margin-right: 8px;
  /*----------------各アイコン---------------*/
}
@media screen and (max-width: 1024px) {
  .tool-list__item {
    padding: 85px 5px 15px;
  }
}
@media screen and (max-width: 837px) {
  .tool-list__item {
    width: calc((100% - 24px) / 4);
    padding: 75px 5px 15px;
    min-height: 127px;
    border-radius: 5px;
    margin-bottom: 8px;
  }
  .tool-list__item:nth-child(n+4) {
    margin-bottom: 0;
  }
  .tool-list__item:nth-child(4) {
    margin-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .tool-list__item {
    width: calc((100% - 6px) / 2);
    margin-right: 6px;
    margin-bottom: 6px;
  }
  .tool-list__item:nth-child(2n) {
    margin-right: 0;
  }
  .tool-list__item:nth-child(n+4) {
    margin-bottom: 6px;
  }
  .tool-list__item:nth-child(n+7) {
    margin-bottom: 0;
  }
}
.tool-list__item:last-child {
  margin-right: 0;
}
.tool-list__item--icon01 {
  background-image: url(../img/top/icon_tool01.svg);
  background-repeat: no-repeat;
  background-size: 63px auto;
  background-position: center top 23px;
}
@media screen and (max-width: 1024px) {
  .tool-list__item--icon01 {
    background-position: center top 18px;
  }
}
@media screen and (max-width: 599px) {
  .tool-list__item--icon01 {
    background-size: 55px auto;
    background-position: center top 15px;
  }
}
.tool-list__item--icon02 {
  background-color: #f0ae3c;
  background-image: url(../img/top/icon_tool02.svg);
  background-repeat: no-repeat;
  background-size: 70px auto;
  background-position: center top 33px;
}
@media screen and (max-width: 1024px) {
  .tool-list__item--icon02 {
    background-position: center top 28px;
  }
}
@media screen and (max-width: 599px) {
  .tool-list__item--icon02 {
    background-size: 59px auto;
    background-position: center top 24px;
  }
}
.tool-list__item--icon03 {
  background-image: url(../img/top/icon_tool03.svg);
  background-repeat: no-repeat;
  background-size: 49px auto;
  background-position: center top 18px;
}
@media screen and (max-width: 1024px) {
  .tool-list__item--icon03 {
    background-position: center top 15px;
  }
}
@media screen and (max-width: 599px) {
  .tool-list__item--icon03 {
    background-size: 40px auto;
    background-position: center top 19px;
    background-color: #f0ae3c;
  }
}
.tool-list__item--icon04 {
  background-color: #f0ae3c;
  background-image: url(../img/top/icon_tool04.svg);
  background-repeat: no-repeat;
  background-size: 40px auto;
  background-position: center top 18px;
}
@media screen and (max-width: 1024px) {
  .tool-list__item--icon04 {
    background-position: center top 15px;
  }
}
@media screen and (max-width: 599px) {
  .tool-list__item--icon04 {
    background-size: 32px auto;
    background-position: center top 19px;
    background-color: #f0813c;
  }
}
.tool-list__item--icon05 {
  background-image: url(../img/top/icon_tool05.svg);
  background-repeat: no-repeat;
  background-size: 69px auto;
  background-position: center top 20px;
}
@media screen and (max-width: 1024px) {
  .tool-list__item--icon05 {
    background-position: center top 15px;
  }
}
@media screen and (max-width: 837px) {
  .tool-list__item--icon05 {
    background-color: #f0ae3c;
  }
}
@media screen and (max-width: 599px) {
  .tool-list__item--icon05 {
    background-size: 56px auto;
    background-position: center top 19px;
    background-color: #f0813c;
  }
}
.tool-list__item--icon06 {
  background-color: #f0ae3c;
  background-image: url(../img/top/icon_tool06.svg);
  background-repeat: no-repeat;
  background-size: 74px auto;
  background-position: center top 43px;
}
@media screen and (max-width: 1024px) {
  .tool-list__item--icon06 {
    background-position: center top 38px;
  }
}
@media screen and (max-width: 837px) {
  .tool-list__item--icon06 {
    background-color: #f0813c;
  }
}
@media screen and (max-width: 599px) {
  .tool-list__item--icon06 {
    background-size: 62px auto;
    background-position: center top 36px;
    background-color: #f0ae3c;
  }
}
.tool-list__item--icon07 {
  background-image: url(../img/top/icon_tool07.svg);
  background-repeat: no-repeat;
  background-size: 60px auto;
  background-position: center top 22px;
}
@media screen and (max-width: 1024px) {
  .tool-list__item--icon07 {
    background-position: center top 15px;
  }
}
@media screen and (max-width: 837px) {
  .tool-list__item--icon07 {
    background-color: #f0ae3c;
  }
}
@media screen and (max-width: 599px) {
  .tool-list__item--icon07 {
    background-size: 51px auto;
    background-position: center top 20px;
  }
}
.tool-list__item__text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .tool-list__item__text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .tool-list__item__text {
    font-size: 1.3rem;
    height: 100%;
  }
}
.tool-list__item__text .mrl00 {
  margin-left: -0.5em;
  margin-right: -0.5em;
  width: 100%;
}
.flow-list {
  display: flex;
}
@media screen and (max-width: 837px) {
  .flow-list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  .flow-list__item {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .flow-list__item:last-child {
    margin-bottom: 0;
  }
}
.flow-list__item:last-child .flow-list__item__title-wrapper::before {
  display: none;
}
.flow-list__item--list-5 {
  width: 20%;
}
@media screen and (max-width: 599px) {
  .flow-list__item--list-5 {
    width: 100%;
    margin-bottom: 20px;
  }
  .flow-list__item--list-5:last-child {
    margin-bottom: 0;
  }
}
.flow-list__item--list-5 .flow-list__item__title-wrapper--01 {
  z-index: 5;
}
.flow-list__item--list-5 .flow-list__item__title-wrapper--02 {
  z-index: 4;
  margin-left: -6px;
}
@media screen and (max-width: 599px) {
  .flow-list__item--list-5 .flow-list__item__title-wrapper--02 {
    margin-left: 0;
  }
}
.flow-list__item--list-5 .flow-list__item__title-wrapper--03 {
  z-index: 3;
  margin-left: -10px;
}
@media screen and (max-width: 599px) {
  .flow-list__item--list-5 .flow-list__item__title-wrapper--03 {
    margin-left: 0;
  }
}
.flow-list__item--list-5 .flow-list__item__title-wrapper--04 {
  z-index: 2;
  margin-left: -14px;
}
@media screen and (max-width: 599px) {
  .flow-list__item--list-5 .flow-list__item__title-wrapper--04 {
    margin-left: 0;
  }
}
.flow-list__item--list-5 .flow-list__item__title-wrapper--05 {
  z-index: 1;
  margin-left: -19px;
}
@media screen and (max-width: 599px) {
  .flow-list__item--list-5 .flow-list__item__title-wrapper--05 {
    margin-left: 0;
  }
}
.flow-list__item--list-3 {
  width: 33.3333333333%;
}
@media screen and (max-width: 599px) {
  .flow-list__item--list-3 {
    width: 100%;
    margin-bottom: 20px;
  }
  .flow-list__item--list-3:last-child {
    margin-bottom: 0;
  }
}
.flow-list__item--list-3 .flow-list__item__title-wrapper--01 {
  z-index: 3;
}
.flow-list__item--list-3 .flow-list__item__title-wrapper--02 {
  z-index: 2;
  margin-left: -10px;
}
@media screen and (max-width: 599px) {
  .flow-list__item--list-3 .flow-list__item__title-wrapper--02 {
    margin-left: 0;
  }
}
.flow-list__item--list-3 .flow-list__item__title-wrapper--03 {
  z-index: 1;
  margin-left: -19px;
}
@media screen and (max-width: 599px) {
  .flow-list__item--list-3 .flow-list__item__title-wrapper--03 {
    margin-left: 0;
  }
}
.flow-list__item--list-6 {
  width: 16.6666666667%;
}
@media screen and (max-width: 837px) {
  .flow-list__item--list-6 {
    width: 33.3333333333%;
    margin-bottom: 25px;
  }
  .flow-list__item--list-6:nth-child(n+4) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 599px) {
  .flow-list__item--list-6 {
    width: 100%;
    margin-bottom: 20px;
  }
  .flow-list__item--list-6:nth-child(n+4) {
    margin-bottom: 20px;
  }
  .flow-list__item--list-6:last-child {
    margin-bottom: 0;
  }
}
.flow-list__item--list-6 .flow-list__item__title-wrapper--01 {
  z-index: 6;
}
.flow-list__item--list-6 .flow-list__item__title-wrapper--02 {
  z-index: 5;
  margin-left: -5px;
}
@media screen and (max-width: 599px) {
  .flow-list__item--list-6 .flow-list__item__title-wrapper--02 {
    margin-left: 0;
  }
}
.flow-list__item--list-6 .flow-list__item__title-wrapper--03 {
  z-index: 4;
  margin-left: -8px;
}
@media screen and (max-width: 837px) {
  .flow-list__item--list-6 .flow-list__item__title-wrapper--03::before {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .flow-list__item--list-6 .flow-list__item__title-wrapper--03 {
    margin-left: 0;
  }
}
.flow-list__item--list-6 .flow-list__item__title-wrapper--04 {
  z-index: 3;
  margin-left: -11px;
}
@media screen and (max-width: 599px) {
  .flow-list__item--list-6 .flow-list__item__title-wrapper--04 {
    margin-left: 0;
  }
}
.flow-list__item--list-6 .flow-list__item__title-wrapper--05 {
  z-index: 2;
  margin-left: -14px;
}
@media screen and (max-width: 599px) {
  .flow-list__item--list-6 .flow-list__item__title-wrapper--05 {
    margin-left: 0;
  }
}
.flow-list__item--list-6 .flow-list__item__title-wrapper--06 {
  z-index: 1;
  margin-left: -19px;
}
@media screen and (max-width: 599px) {
  .flow-list__item--list-6 .flow-list__item__title-wrapper--06 {
    margin-left: 0;
  }
}
.flow-list__item__title-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(100% + 19px);
  background-color: #fff;
  padding: 25px 20px 38px;
  margin-bottom: 20px;
  border-radius: 200px;
  position: relative;
}
@media screen and (max-width: 837px) {
  .flow-list__item__title-wrapper {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 599px) {
  .flow-list__item__title-wrapper {
    width: 100%;
    padding: 15px 20px 22px;
  }
}
.flow-list__item__title-wrapper::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 25px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: #fff;
  right: -10px;
  top: calc(50% - 13px);
}
@media screen and (max-width: 599px) {
  .flow-list__item__title-wrapper::before {
    display: none;
  }
}
.flow-list__item__title-wrapper.beige {
  background-color: #f3ead4;
}
.flow-list__item__title-wrapper.beige::before {
  background-color: #f3ead4;
}
.flow-list__item__title-wrapper.pink {
  background-color: #fbe3d3;
}
.flow-list__item__title-wrapper.pink::before {
  background-color: #fbe3d3;
}
.flow-list__item__title-wrapper__num {
  font-family: "Roboto", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #f0813c;
  line-height: 1;
  padding-bottom: 3px;
  border-bottom: 2px solid #f0813c;
  display: inline-block;
  margin-bottom: 14px;
}
@media screen and (max-width: 1024px) {
  .flow-list__item__title-wrapper__num {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 837px) {
  .flow-list__item__title-wrapper__num {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .flow-list__item__title-wrapper__num {
    font-size: 2rem;
  }
}
.flow-list__item__title-wrapper__text {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2rem;
  color: #342e24;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .flow-list__item__title-wrapper__text {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 837px) {
  .flow-list__item__title-wrapper__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .flow-list__item__title-wrapper__text {
    font-size: 1.5rem;
  }
}
.flow-list__item__text {
  padding: 0 24px 0;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.5rem;
  color: #342e24;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-left: 1px solid #dac7ba;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .flow-list__item__text {
    font-size: 1.4rem;
    padding: 0 20px 0;
  }
}
@media screen and (max-width: 599px) {
  .flow-list__item__text {
    padding: 0 0 0;
    border-left: none;
    text-align: center;
  }
}
.flow-list__item__text.last {
  border-right: 1px solid #dac7ba;
}
@media screen and (max-width: 599px) {
  .flow-list__item__text.last {
    border-right: none;
  }
}

.bold-list__item {
  display: flex;
  flex-wrap: wrap;
}
.bold-list__item__title {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.6rem;
  color: #342e24;
  line-height: 1.8;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: justify;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .bold-list__item__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .bold-list__item__title {
    font-size: 1.4rem;
  }
}
.bold-list__item__title.w250 {
  width: 250px;
}
@media screen and (max-width: 1024px) {
  .bold-list__item__title.w250 {
    width: 250px;
  }
}
@media screen and (max-width: 837px) {
  .bold-list__item__title.w250 {
    width: 100%;
  }
}
.bold-list__item__title.w150 {
  width: 160px;
}
@media screen and (max-width: 1024px) {
  .bold-list__item__title.w150 {
    width: 150px;
  }
}
@media screen and (max-width: 837px) {
  .bold-list__item__title.w150 {
    width: 100%;
  }
}
.bold-list__item__title--num {
  position: relative;
  padding-left: 28px;
}
@media screen and (max-width: 599px) {
  .bold-list__item__title--num {
    padding-left: 23px;
  }
}
.bold-list__item__title--num::before {
  position: absolute;
  content: "1";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 18px;
  font-weight: 600;
  font-size: 1.5rem;
  background-color: #f0813c;
  padding-left: 1px;
  left: 0;
  top: 5px;
}
@media screen and (max-width: 599px) {
  .bold-list__item__title--num::before {
    width: 17px;
    height: 17px;
    line-height: 16px;
    font-size: 1.3rem;
    top: 4px;
  }
}
.bold-list__item__title--num.num02::before {
  content: "2";
}
.bold-list__item__title--num.num03::before {
  content: "3";
}
.bold-list__item__title--num.num04::before {
  content: "4";
}
.bold-list__item__title--num.num05::before {
  content: "5";
}
.bold-list__item__title--dot {
  position: relative;
  padding-left: 22px;
}
@media screen and (max-width: 599px) {
  .bold-list__item__title--dot {
    padding-left: 17px;
  }
}
.bold-list__item__title--dot::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #f0813c;
  left: 0;
  top: 9px;
}
@media screen and (max-width: 1024px) {
  .bold-list__item__title--dot::before {
    top: 8px;
  }
}
@media screen and (max-width: 599px) {
  .bold-list__item__title--dot::before {
    top: 7px;
  }
}
.bold-list__item__text.w250 {
  width: calc(100% - 250px);
}
@media screen and (max-width: 1024px) {
  .bold-list__item__text.w250 {
    width: calc(100% - 250px);
  }
}
@media screen and (max-width: 837px) {
  .bold-list__item__text.w250 {
    width: 100%;
  }
}
.bold-list__item__text.w150 {
  width: calc(100% - 160px);
}
@media screen and (max-width: 1024px) {
  .bold-list__item__text.w150 {
    width: 100%;
  }
}
.bold-list__item__text span {
  letter-spacing: -0.5em;
  margin-right: 0.6em;
}
@media screen and (max-width: 1024px) {
  .bold-list__item__text span {
    display: none;
  }
}

.top-form-box {
  width: 100%;
}
.top-form-box tbody tr {
  display: flex;
}
@media screen and (max-width: 599px) {
  .top-form-box tbody tr {
    flex-wrap: wrap;
  }
}
.top-form-box tbody tr:last-child th {
  border-bottom: 1px solid #e7e7e7;
}
@media screen and (max-width: 599px) {
  .top-form-box tbody tr:last-child th {
    border-bottom: none;
  }
}
.top-form-box tbody tr:last-child td {
  border-bottom: 1px solid #e7e7e7;
}
.top-form-box tbody tr th, .top-form-box tbody tr td {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.6rem;
  color: #342e24;
  line-height: 1.4;
  letter-spacing: 0.07em;
}
.top-form-box tbody tr th {
  display: flex;
  justify-content: space-between;
  padding: 48px 0 30px;
  width: 200px;
  font-weight: 600;
  border-top: 1px solid #f0813c;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .top-form-box tbody tr th {
    font-size: 1.5rem;
    padding: 43px 0 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-form-box tbody tr th {
    justify-content: start;
    width: 100%;
    padding: 18px 0 14px 15px;
    border-top: 1px solid #e7e7e7;
    position: relative;
  }
  .top-form-box tbody tr th::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 3px;
    background-color: #f0813c;
    left: 0;
    top: 27px;
  }
}
.top-form-box tbody tr th .required {
  display: block;
  width: 50px;
  height: 23px;
  font-size: 1.5rem;
  color: #fff;
  line-height: 22px;
  text-align: center;
  background-color: #f0813c;
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .top-form-box tbody tr th .required {
    font-size: 1.4rem;
    width: 45px;
    height: 20px;
    line-height: 19px;
  }
}
@media screen and (max-width: 599px) {
  .top-form-box tbody tr th .required {
    font-size: 1.3rem;
    width: 40px;
    height: 18px;
    line-height: 17px;
    margin-left: 20px;
    margin-top: 2px;
  }
}
.top-form-box tbody tr th.mt-0 {
  padding: 32px 0 30px;
}
@media screen and (max-width: 1024px) {
  .top-form-box tbody tr th.mt-0 {
    padding: 27px 0 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-form-box tbody tr th.mt-0 {
    padding: 18px 0 14px 15px;
  }
}
.top-form-box tbody tr td {
  width: calc(100% - 200px);
  border-top: 1px solid #e7e7e7;
  padding: 30px 0 30px 30px;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .top-form-box tbody tr td {
    font-size: 1.5rem;
    padding: 25px 0 25px 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-form-box tbody tr td {
    width: 100%;
    font-size: 1.4rem;
    padding: 0 0 25px 0;
    border-top: none;
  }
}
.top-form-box tbody tr td .td-error {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.6rem;
  color: #c60000;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 15px;
}
@media screen and (max-width: 1024px) {
  .top-form-box tbody tr td .td-error {
    font-size: 1.5rem;
    margin-top: 12px;
  }
}
@media screen and (max-width: 599px) {
  .top-form-box tbody tr td .td-error {
    font-size: 1.4rem;
    margin-top: 10px;
  }
}

#form input,
#form textarea,
#form select {
  width: 100%;
  padding: 19px 20px 20px;
  height: 60px;
  background-color: #f7f7f7;
  border: 2px solid #dcdcdc;
  box-sizing: border-box;
  border-radius: 0;
}
@media screen and (max-width: 599px) {
  #form input,
  #form textarea,
  #form select {
    padding: 13px 13px 14px;
    font-size: 1.4rem;
    height: 50px;
  }
}
#form input:focus-visible,
#form textarea:focus-visible,
#form select:focus-visible {
  outline: none !important;
}
#form input::-moz-placeholder, #form textarea::-moz-placeholder, #form select::-moz-placeholder {
  color: #b8b8b8;
  line-height: 1.4;
}
#form input::placeholder,
#form textarea::placeholder,
#form select::placeholder {
  color: #b8b8b8;
  line-height: 1.4;
}
#form textarea {
  width: 100%;
  height: 360px;
}
@media screen and (max-width: 599px) {
  #form textarea {
    height: 200px;
  }
}
#form .check-box-list {
  display: flex;
}
@media screen and (max-width: 599px) {
  #form .check-box-list {
    flex-wrap: wrap;
  }
}
#form .check-box-list__item {
  margin-right: 50px;
}
#form .check-box-list__item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  #form .check-box-list__item {
    margin-right: 35px;
  }
}
@media screen and (max-width: 599px) {
  #form .check-box-list__item {
    width: 100%;
    margin-bottom: 5px;
    margin-right: 0;
  }
  #form .check-box-list__item:last-child {
    margin-bottom: 0;
  }
}
#form .check-box-list__item .checkboxItem {
  display: flex;
  line-height: 24px;
  cursor: pointer;
}
#form .check-box-list__item .checkbox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  padding: 0;
  width: 20px;
  height: 20px;
  display: block;
  box-sizing: border-box;
  border: 2px solid #dcdcdc;
  margin-right: 15px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  #form .check-box-list__item .checkbox {
    margin-right: 10px;
  }
}
#form .check-box-list__item .checkbox:checked {
  background-color: #342e24;
  border: 2px solid #342e24;
}
#form .check-box-list__item .checkbox:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 11px;
  height: 7px;
  border-bottom: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  transform: rotate(-45deg);
}
#form .top-privacy-box {
  padding: 50px;
  background-color: #f8f4ea;
}
@media screen and (max-width: 1024px) {
  #form .top-privacy-box {
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  #form .top-privacy-box {
    padding: 20px 20px 25px;
  }
}
#form .top-privacy-box__title {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2rem;
  color: #342e24;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-align: center;
  padding-bottom: 17px;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #form .top-privacy-box__title {
    font-size: 1.9rem;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  #form .top-privacy-box__title {
    font-size: 1.7rem;
    padding-bottom: 13px;
    margin-bottom: 20px;
  }
}
#form .top-privacy-box__title::before {
  position: absolute;
  content: "";
  width: 46px;
  height: 4px;
  background-color: #f0813c;
  left: calc(50% - 23px);
  bottom: 0;
}
@media screen and (max-width: 599px) {
  #form .top-privacy-box__title::before {
    width: 36px;
    height: 3px;
    left: calc(50% - 18px);
  }
}
#form .top-privacy-box__inner {
  height: 215px;
  padding: 40px;
  background-color: #fff;
  overflow-y: scroll;
}
@media screen and (max-width: 1024px) {
  #form .top-privacy-box__inner {
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  #form .top-privacy-box__inner {
    padding: 20px;
  }
}
#form .top-privacy-box__check {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  #form .top-privacy-box__check {
    align-items: center;
  }
}
#form .top-privacy-box__check .input-hide {
  width: 30px;
  height: 30px;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #dcdcdc;
  position: relative;
}
@media screen and (max-width: 599px) {
  #form .top-privacy-box__check .input-hide {
    width: 25px;
    height: 25px;
  }
}
#form .top-privacy-box__check .input-hide.error {
  border: 2px solid #c60000;
}
#form .top-privacy-box__check .input-hide:checked {
  background-color: #f0813c;
  border: 2px solid #f0813c;
}
#form .top-privacy-box__check .input-hide:checked::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 6px;
  width: 12px;
  height: 8px;
  border-bottom: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  transform: rotate(-45deg);
}
@media screen and (max-width: 599px) {
  #form .top-privacy-box__check .input-hide:checked::after {
    top: 4px;
    left: 4px;
  }
}
#form .top-privacy-box__check .agree-btn {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.6rem;
  color: #342e24;
  line-height: 31px;
  font-weight: 400;
  letter-spacing: 0.07em;
  margin-left: 15px;
}
@media screen and (max-width: 1024px) {
  #form .top-privacy-box__check .agree-btn {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  #form .top-privacy-box__check .agree-btn {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-left: 10px;
  }
}
#form .top-privacy-box .privacy-error {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.6rem;
  color: #c60000;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 15px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  #form .top-privacy-box .privacy-error {
    font-size: 1.5rem;
    margin-top: 12px;
  }
}
@media screen and (max-width: 599px) {
  #form .top-privacy-box .privacy-error {
    font-size: 1.4rem;
    margin-top: 10px;
  }
}
#form .form-btn .btn {
  margin: 0 auto;
  text-align: left;
}

/*ヘッダー*/
.pagetitle {
  width: 100%;
  height: 390px;
  padding: 170px 50px 0 50px;
  background-color: #f8f4ea;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .pagetitle {
    height: 340px;
    padding: 145px 30px 0 30px;
  }
}
@media screen and (max-width: 837px) {
  .pagetitle {
    height: 285px;
    padding: 125px 30px 0 30px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle {
    height: 190px;
    padding: 70px 20px 0 20px;
  }
}
.pagetitle::before {
  position: absolute;
  content: "";
  width: 560px;
  height: 560px;
  border-radius: 50%;
  box-shadow: inset 0 3px 70px rgba(241, 230, 202, 0.7);
  top: -230px;
  right: -70px;
}
@media screen and (max-width: 1024px) {
  .pagetitle::before {
    width: 500px;
    height: 500px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle::before {
    width: 57vw;
    height: 57vw;
    top: -28vw;
    right: -8vw;
  }
}
.pagetitle__text {
  height: 195px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .pagetitle__text {
    height: 170px;
  }
}
@media screen and (max-width: 837px) {
  .pagetitle__text {
    height: 155px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__text {
    height: 103px;
  }
}
.pagetitle__text__en-title {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  color: #f0813c;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.07em;
  padding-bottom: 4px;
  margin-bottom: 12px;
  display: inline-block;
  border-bottom: 2px solid #f0813c;
}
@media screen and (max-width: 1024px) {
  .pagetitle__text__en-title {
    font-size: 1.5rem;
    padding-bottom: 3px;
  }
}
@media screen and (max-width: 837px) {
  .pagetitle__text__en-title {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__text__en-title {
    font-size: 1.3rem;
  }
}
.pagetitle__text__ja-title {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 4.4rem;
  color: #342e24;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 1024px) {
  .pagetitle__text__ja-title {
    font-size: 3.7rem;
  }
}
@media screen and (max-width: 837px) {
  .pagetitle__text__ja-title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__text__ja-title {
    font-size: 2.4rem;
  }
}
.pagetitle nav .breadcrumb-wrapper {
  display: flex;
}
.pagetitle nav .breadcrumb-wrapper__item {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.5rem;
  color: #342e24;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding-left: 35px;
  position: relative;
}
.pagetitle nav .breadcrumb-wrapper__item::before {
  content: "";
  top: 4px;
  left: 13px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #342e24;
  border-right: 1px solid #342e24;
  position: absolute;
  transform: rotate(45deg);
}
.pagetitle nav .breadcrumb-wrapper__item:first-child {
  padding-left: 0;
}
.pagetitle nav .breadcrumb-wrapper__item:first-child::before {
  display: none;
}
@media screen and (max-width: 1024px) {
  .pagetitle nav .breadcrumb-wrapper__item {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle nav .breadcrumb-wrapper__item {
    font-size: 1.3rem;
  }
}
.pagetitle nav .breadcrumb-wrapper__item__link {
  color: #f0813c;
  display: block;
}
@media screen and (min-width: 1025px) {
  .pagetitle nav .breadcrumb-wrapper__item__link:hover {
    opacity: 0.7;
    transition: 0.3s;
  }
}

.table01 {
  width: 100%;
  border: 1px solid #e7e7e7;
  border-collapse: collapse;
}
.table01 tbody tr {
  border-top: 1px solid #e7e7e7;
}
@media screen and (max-width: 599px) {
  .table01 tbody tr {
    display: flex;
    flex-wrap: wrap;
  }
}
.table01 tbody tr:first-child {
  border-top: none;
}
.table01 tbody tr th, .table01 tbody tr td {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding: 28px 27px 30px;
}
@media screen and (max-width: 1024px) {
  .table01 tbody tr th, .table01 tbody tr td {
    font-size: 1.5rem;
    padding: 24px 24px 26px;
  }
}
@media screen and (max-width: 599px) {
  .table01 tbody tr th, .table01 tbody tr td {
    font-size: 1.4rem;
    padding: 11px 20px 13px;
  }
}
.table01 tbody tr th {
  width: 200px;
  background-color: #f0813c;
  color: #fff;
  text-align: center;
  font-weight: 600;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .table01 tbody tr th {
    width: 100%;
    text-align: justify;
  }
}
.table01 tbody tr td {
  width: calc(100% - 200px);
  color: #342e24;
  text-align: justify;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  .table01 tbody tr td {
    width: 100%;
  }
}

.contact-btn-wrapper {
  position: relative;
}
.contact-btn-wrapper .btn {
  margin: 0 auto;
}
@media screen and (max-width: 837px) {
  .contact-btn-wrapper .btn {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .contact-btn-wrapper .btn {
    margin-bottom: 10px;
  }
}
.contact-btn-wrapper .btn--back {
  position: absolute;
  left: 0;
  top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 837px) {
  .contact-btn-wrapper .btn--back {
    position: relative;
  }
}

.contact-complete-wrapper {
  padding: 70px 50px 50px;
  background-color: #f6f6f6;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .contact-complete-wrapper {
    padding: 50px 30px 30px;
  }
}
@media screen and (max-width: 599px) {
  .contact-complete-wrapper {
    padding: 25px 20px 20px;
    border-radius: 5px;
  }
}
.contact-complete-wrapper__title {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.6rem;
  color: #342e24;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  padding-bottom: 25px;
  margin-bottom: 30px;
  position: relative;
}
.contact-complete-wrapper__title::before, .contact-complete-wrapper__title::after {
  position: absolute;
  content: "";
  height: 3px;
  bottom: 0;
  left: calc(50% - 33px);
}
.contact-complete-wrapper__title::before {
  width: 66px;
  background-color: #f0cc3c;
}
.contact-complete-wrapper__title::after {
  width: 33px;
  background-color: #f0813c;
}
@media screen and (max-width: 1024px) {
  .contact-complete-wrapper__title {
    font-size: 2.3rem;
    padding-bottom: 22px;
    margin-bottom: 26px;
  }
}
@media screen and (max-width: 837px) {
  .contact-complete-wrapper__title {
    font-size: 2.1rem;
    padding-bottom: 22px;
    margin-bottom: 23px;
  }
  .contact-complete-wrapper__title::before, .contact-complete-wrapper__title::after {
    left: calc(50% - 25px);
  }
  .contact-complete-wrapper__title::before {
    width: 50px;
  }
  .contact-complete-wrapper__title::after {
    width: 25px;
  }
}
@media screen and (max-width: 599px) {
  .contact-complete-wrapper__title {
    font-size: 1.7rem;
    padding-bottom: 19px;
    margin-bottom: 19px;
  }
  .contact-complete-wrapper__title::before, .contact-complete-wrapper__title::after {
    left: calc(50% - 20px);
  }
  .contact-complete-wrapper__title::before {
    width: 40px;
  }
  .contact-complete-wrapper__title::after {
    width: 20px;
  }
}
.contact-complete-wrapper__title span {
  margin-right: -0.6em;
}
@media screen and (max-width: 837px) {
  .contact-complete-wrapper .text-center {
    text-align: justify;
  }
}
.contact-complete-wrapper .text-caution {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.5rem;
  color: #7d7d7d;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: justify;
  padding-top: 35px;
  margin-top: 37px;
  border-top: 1px dotted #9f9b95;
}
@media screen and (max-width: 1024px) {
  .contact-complete-wrapper .text-caution {
    font-size: 1.4rem;
    padding-top: 32px;
    margin-top: 35px;
  }
}
@media screen and (max-width: 837px) {
  .contact-complete-wrapper .text-caution {
    padding-top: 30px;
    margin-top: 33px;
  }
}
@media screen and (max-width: 599px) {
  .contact-complete-wrapper .text-caution {
    padding-top: 22px;
    margin-top: 23px;
  }
}
.contact-complete-wrapper__inner {
  padding: 50px;
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .contact-complete-wrapper__inner {
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  .contact-complete-wrapper__inner {
    border-radius: 5px;
    padding: 20px;
  }
}
.contact-complete-wrapper__inner .top-contact-list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 837px) {
  .contact-complete-wrapper__inner .top-contact-list {
    flex-wrap: wrap;
  }
}
.contact-complete-wrapper__inner .top-contact-list__item {
  padding: 0 2%;
  width: 33.3333333333%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 837px) {
  .contact-complete-wrapper__inner .top-contact-list__item {
    width: 100%;
    padding: 15px 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.contact-complete-wrapper__inner .top-contact-list__item:first-child {
  padding: 0 3% 0 0;
  border-right: 1px solid #e1e1e1;
}
@media screen and (max-width: 837px) {
  .contact-complete-wrapper__inner .top-contact-list__item:first-child {
    padding: 0 10px 15px;
    border-right: none;
    border-bottom: 1px solid #e1e1e1;
  }
}
.contact-complete-wrapper__inner .top-contact-list__item:last-child {
  padding: 0 0 0 3%;
  border-left: 1px solid #e1e1e1;
}
@media screen and (max-width: 837px) {
  .contact-complete-wrapper__inner .top-contact-list__item:last-child {
    padding: 15px 10px 0;
    border-left: none;
    border-top: 1px solid #e1e1e1;
  }
}
.contact-complete-wrapper__inner .top-contact-list__item__title {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.9rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #342e24;
  margin-bottom: 7px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .contact-complete-wrapper__inner .top-contact-list__item__title {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 837px) {
  .contact-complete-wrapper__inner .top-contact-list__item__title {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .contact-complete-wrapper__inner .top-contact-list__item__title {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }
}
.contact-complete-wrapper__inner .top-contact-list__item__tel {
  font-family: "Roboto", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  color: #f0813c;
  background-image: url(../img/top/freedial.png);
  background-size: 31px auto;
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 36px;
  margin: auto;
  margin-bottom: 5px;
}
@media screen and (max-width: 1024px) {
  .contact-complete-wrapper__inner .top-contact-list__item__tel {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 837px) {
  .contact-complete-wrapper__inner .top-contact-list__item__tel {
    margin-bottom: 3px;
  }
}
@media screen and (max-width: 599px) {
  .contact-complete-wrapper__inner .top-contact-list__item__tel {
    font-size: 2.2rem;
    background-size: 25px auto;
    padding-left: 32px;
    margin-bottom: 1px;
  }
}
.contact-complete-wrapper__inner .top-contact-list__item__tel.normal {
  position: relative;
  background-image: none;
}
.contact-complete-wrapper__inner .top-contact-list__item__tel.normal::before {
  position: absolute;
  content: "直通";
  width: 31px;
  height: 18px;
  background-color: #f0813c;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.3rem;
  line-height: 17px;
  font-weight: 600;
  text-align: center;
  left: 0;
  top: 3px;
}
@media screen and (max-width: 837px) {
  .contact-complete-wrapper__inner .top-contact-list__item__tel.normal::before {
    top: 2px;
  }
}
@media screen and (max-width: 599px) {
  .contact-complete-wrapper__inner .top-contact-list__item__tel.normal::before {
    width: 28px;
    height: 16px;
    font-size: 1.2rem;
    line-height: 14px;
    top: 2px;
  }
}
.contact-complete-wrapper__inner .top-contact-list__item__text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.5rem;
  color: #342e24;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .contact-complete-wrapper__inner .top-contact-list__item__text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 837px) {
  .contact-complete-wrapper__inner .top-contact-list__item__text {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .contact-complete-wrapper__inner .top-contact-list__item__text {
    font-size: 1.3rem;
    line-height: 1.7;
  }
}

.complete-btn-wrapper .btn {
  margin: 0 auto;
}

/*--------------------------------------------------------
top
----------------------------------------------------------*/
main {
  padding-top: 100px;
  background-color: #f8f4ea;
}
@media screen and (max-width: 599px) {
  main {
    padding-top: 60px;
  }
}

.main {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 5;
  /*--
  &::after{
      position: absolute;
      content: "";
      width: 100%;
      height: 23%;
      background-color: #fff;
      box-shadow: 0px -5px 5px rgba(#edddb6, 0.15);
      border-radius: 120px 120px 0 0;
      left: 0;
      bottom: 0;
      @include mq(tb){
          border-radius: 90px 90px 0 0;
      }
      @include mq(sp){
          height: 60%;
          border-radius: 40px 0 0 0;
      }
  }--*/
}
@media screen and (max-width: 837px) {
  .main {
    flex-wrap: wrap;
  }
}
.main .maincopy,
.main .main-bg {
  position: relative;
}
.main .maincopy {
  width: 43%;
  display: flex;
  justify-content: center;
  padding: 2.5vw 5vw 0;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .main .maincopy {
    width: 46%;
  }
}
@media screen and (max-width: 837px) {
  .main .maincopy {
    width: 100%;
    padding: 8vw 17vw 10vw;
  }
}
@media screen and (max-width: 599px) {
  .main .maincopy {
    width: 100%;
    padding: 6.5vw 11vw 10vw;
  }
}
.main .main-bg {
  width: 57%;
  border-radius: 30px 0 0 30px;
  overflow: hidden;
}
.main .main-bg img {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .main .main-bg {
    width: 54%;
    border-radius: 20px 0 0 20px;
  }
}
@media screen and (max-width: 837px) {
  .main .main-bg {
    width: 100%;
    margin-left: 50px;
    border-radius: 20px 0 0 20px;
  }
}
@media screen and (max-width: 599px) {
  .main .main-bg {
    width: 100%;
    margin-left: 20px;
    border-radius: 10px 0 0 10px;
  }
}
.main::before {
  position: absolute;
  content: "";
  width: 29vw;
  height: 29vw;
  border-radius: 50%;
  background-color: #f5eee0;
  top: -13vw;
  left: -8.3vw;
}
@media screen and (max-width: 599px) {
  .main::before {
    width: 60vw;
    height: 60vw;
    top: -33vw;
    left: -20vw;
  }
}

/*------------ご家族に快適と安心の施設選び------------*/
.top-about {
  margin-top: -9vw;
  padding: 17vw 50px 8vw;
  background-color: #fff;
  border-radius: 120px 120px 0 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-about {
    margin-top: -7vw;
    padding: 15vw 30px 9vw;
    border-radius: 90px 90px 0 0;
  }
}
@media screen and (max-width: 837px) {
  .top-about {
    margin-top: -77vw;
    padding: 87vw 30px 9vw;
    border-radius: 60px 60px 0 0;
  }
}
@media screen and (max-width: 599px) {
  .top-about {
    flex-wrap: wrap;
    margin-top: -80vw;
    padding: 135vw 20px 10vw;
    border-radius: 40px 0 0 0;
  }
}
.top-about__inner {
  display: flex;
  justify-content: flex-end;
}
.top-about__inner__ill {
  position: absolute;
  right: -60px;
  top: -100px;
  width: 85vw;
}
@media screen and (max-width: 1300px) {
  .top-about__inner__ill {
    width: 105vw;
    right: -180px;
    top: -120px;
  }
}
@media screen and (max-width: 1024px) {
  .top-about__inner__ill {
    width: 110%;
    right: -17vw;
    top: -14vw;
  }
}
@media screen and (max-width: 837px) {
  .top-about__inner__ill {
    width: 130%;
    right: -33vw;
    top: 57vw;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner__ill {
    width: 200%;
    right: -130vw;
    top: 36vw;
  }
}
.top-about__inner__text-wrapper {
  width: 50%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .top-about__inner__text-wrapper {
    width: 100%;
  }
}

/*-------------選ばれる4つの理由------------*/
.top-reason {
  padding: 0 50px 100px;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .top-reason {
    padding: 0 20px 70px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason {
    padding: 0 10px 40px;
  }
}
.top-reason__wrapper {
  background-color: #f0813c;
  background-image: url(../img/top/orange_dot.jpg);
  background-size: 30px;
  background-position: left;
  background-repeat: repeat;
  padding: 100px 50px 110px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .top-reason__wrapper {
    padding: 60px 30px 65px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason__wrapper {
    padding: 35px 20px 40px;
    border-radius: 10px;
  }
}
.top-reason__wrapper .copy-text {
  margin-bottom: 65px;
}
@media screen and (max-width: 1024px) {
  .top-reason__wrapper .copy-text {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 837px) {
  .top-reason__wrapper .copy-text {
    margin-bottom: 55px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason__wrapper .copy-text {
    margin-bottom: 40px;
  }
}
.top-reason__wrapper .top-reason-list {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 837px) {
  .top-reason__wrapper .top-reason-list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  .top-reason__wrapper .top-reason-list {
    max-width: 250px;
  }
}
.top-reason__wrapper .top-reason-list__item {
  width: calc((100% - 120px) / 4);
}
@media screen and (max-width: 1400px) {
  .top-reason__wrapper .top-reason-list__item {
    width: calc((100% - 90px) / 4);
  }
}
@media screen and (max-width: 1024px) {
  .top-reason__wrapper .top-reason-list__item {
    width: calc((100% - 75px) / 4);
  }
}
@media screen and (max-width: 837px) {
  .top-reason__wrapper .top-reason-list__item {
    width: calc((100% - 25px) / 2);
    margin-bottom: 55px;
  }
  .top-reason__wrapper .top-reason-list__item:nth-child(n+3) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-reason__wrapper .top-reason-list__item {
    width: 100%;
    margin-bottom: 45px;
  }
  .top-reason__wrapper .top-reason-list__item:nth-child(n+3) {
    margin-bottom: 45px;
  }
  .top-reason__wrapper .top-reason-list__item:last-child {
    margin-bottom: 0;
  }
}
.top-reason__wrapper .top-reason-list__item__item-inner {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  border-radius: 10px;
  padding: 2vw 1vw 2vw;
  margin-bottom: 20px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-reason__wrapper .top-reason-list__item__item-inner {
    padding: 3vw 1vw 3vw;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason__wrapper .top-reason-list__item__item-inner {
    padding: 5vw 2vw 6vw;
    border-radius: 5px;
    margin-bottom: 10px;
  }
}
.top-reason__wrapper .top-reason-list__item__item-inner img {
  max-width: 150px;
  width: 100%;
  margin-bottom: 1.3vw;
  padding: 0 10px;
}
@media screen and (max-width: 1024px) {
  .top-reason__wrapper .top-reason-list__item__item-inner img {
    margin-bottom: 1.7vw;
    max-width: 130px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason__wrapper .top-reason-list__item__item-inner img {
    margin-bottom: 3vw;
    max-width: 120px;
  }
}
.top-reason__wrapper .top-reason-list__item__item-inner__text {
  width: 100%;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2rem;
  color: #342e24;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .top-reason__wrapper .top-reason-list__item__item-inner__text {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-reason__wrapper .top-reason-list__item__item-inner__text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-reason__wrapper .top-reason-list__item__item-inner__text {
    font-size: 1.6rem;
  }
}
.top-reason__wrapper .top-reason-list__item__item-inner__number {
  position: absolute;
  left: 15px;
  top: -22px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 4.8rem;
  color: #f9c13c;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .top-reason__wrapper .top-reason-list__item__item-inner__number {
    font-size: 4.4rem;
    left: 13px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason__wrapper .top-reason-list__item__item-inner__number {
    font-size: 4rem;
    left: 10px;
    top: -20px;
  }
}
.top-reason__wrapper .top-reason-list__item__item-inner__number::before {
  position: absolute;
  content: "REASON";
  width: 100%;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  left: -1px;
  top: -10px;
}
@media screen and (max-width: 1024px) {
  .top-reason__wrapper .top-reason-list__item__item-inner__number::before {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 599px) {
  .top-reason__wrapper .top-reason-list__item__item-inner__number::before {
    font-size: 1rem;
    top: -8px;
  }
}
.top-reason .text-base {
  line-height: 1.6;
}

/*----------------ワンストップサービス--------------*/
.top-service {
  background-color: #fdebbd;
  padding: 90px 50px 210px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .top-service {
    padding: 60px 30px 150px;
  }
}
@media screen and (max-width: 599px) {
  .top-service {
    padding: 35px 20px 80px;
  }
}
.top-service::before {
  position: absolute;
  content: "";
  width: 29vw;
  height: 29vw;
  border-radius: 50%;
  background-color: #f9e4ae;
  top: -9.8vw;
  right: -3vw;
}
@media screen and (max-width: 599px) {
  .top-service::before {
    display: none;
  }
}
.top-service__inner {
  display: flex;
  background-color: #fdebbd;
}
@media screen and (max-width: 599px) {
  .top-service__inner {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.top-service__inner__catch-img {
  position: relative;
  z-index: 1;
  width: 46%;
}
@media screen and (max-width: 599px) {
  .top-service__inner__catch-img {
    max-width: 300px;
    width: 100%;
  }
}
.top-service__inner__catch-text-wrapper {
  width: 50%;
  margin-left: 4%;
  margin-top: 9%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 837px) {
  .top-service__inner__catch-text-wrapper {
    margin-top: 2%;
  }
}
@media screen and (max-width: 599px) {
  .top-service__inner__catch-text-wrapper {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
  }
}

/*-----------------老人ホームのご紹介--------------*/
.top-intro {
  padding: 100px 50px 110px;
  border-radius: 120px 120px 0 0;
  box-shadow: 0px -5px 5px rgba(237, 221, 182, 0.15);
  background-color: #fff;
  margin: 0 auto;
  margin-top: -120px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .top-intro {
    padding: 60px 30px 65px;
    border-radius: 90px 90px 0 0;
    margin-top: -90px;
  }
}
@media screen and (max-width: 599px) {
  .top-intro {
    padding: 35px 20px 40px;
    border-radius: 40px 40px 0 0;
    margin-top: -40px;
  }
}
.top-intro__detail {
  padding: 0 60px 65px;
  margin-bottom: 60px;
  background-color: #f8f4ea;
  border-radius: 15px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-intro__detail {
    padding: 0 30px 35px;
    border-radius: 10px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__detail {
    padding: 0 20px 25px;
    margin-bottom: 35px;
  }
}
.top-intro__detail:last-child {
  margin-bottom: 0;
}
.top-intro__detail:last-child::before {
  display: none;
}
.top-intro__detail::before {
  position: absolute;
  content: "";
  width: 68px;
  height: 31px;
  background-image: url(../img/top/sankaku.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  left: calc(50% - 34px);
  bottom: -46px;
}
@media screen and (max-width: 1024px) {
  .top-intro__detail::before {
    background-size: 90% auto;
    bottom: -42px;
  }
}
@media screen and (max-width: 1024px) {
  .top-intro__detail::before {
    background-size: 60% auto;
    bottom: -34px;
  }
}
.top-intro__detail__title {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}
@media screen and (max-width: 599px) {
  .top-intro__detail__title {
    margin-bottom: 15px;
  }
}
.top-intro__detail__title .number {
  padding-top: 22px;
  width: 90px;
  height: 90px;
  background-color: #f0813c;
  border-radius: 0 0 10px 10px;
  font-family: "Roboto", sans-serif;
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .top-intro__detail__title .number {
    padding-top: 16px;
    width: 75px;
    height: 75px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 837px) {
  .top-intro__detail__title .number {
    padding-top: 12px;
    width: 60px;
    height: 60px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__detail__title .number {
    padding-top: 17px;
    width: 45px;
    height: 63px;
    font-size: 2.2rem;
    border-radius: 0 0 5px 5px;
  }
}
.top-intro__detail__title .number span {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  display: block;
}
@media screen and (max-width: 1024px) {
  .top-intro__detail__title .number span {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 837px) {
  .top-intro__detail__title .number span {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__detail__title .number span {
    font-size: 1.1rem;
  }
}
.top-intro__detail__title .text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.6rem;
  color: #342e24;
  line-height: 1.3;
  font-weight: 600;
  padding: 0 0 0 25px;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .top-intro__detail__title .text {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 837px) {
  .top-intro__detail__title .text {
    font-size: 2rem;
    padding: 0 0 0 19px;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__detail__title .text {
    font-size: 1.7rem;
    padding: 0 0 0 10px;
    width: calc(100% - 40px);
  }
}
.top-intro__detail__sub-title {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.9rem;
  color: #f0813c;
  line-height: 1.3;
  font-weight: 600;
  padding: 5px 10px 6px;
  margin-bottom: 19px;
  background-color: #fff;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-intro__detail__sub-title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 837px) {
  .top-intro__detail__sub-title {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__detail__sub-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}
.top-intro__detail__sub-title::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  background-color: #fff;
  left: 30px;
  bottom: -17px;
}
@media screen and (max-width: 599px) {
  .top-intro__detail__sub-title::before {
    bottom: -14px;
  }
}

/*------------サービスの中身------------*/
.top-service-wrapper {
  padding: 0 50px 100px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .top-service-wrapper {
    padding: 0 20px 65px;
  }
}
@media screen and (max-width: 599px) {
  .top-service-wrapper {
    padding: 0 10px 40px;
  }
}
.top-service-wrapper__inner {
  background-color: #fcf0e8;
  padding: 90px 50px 95px;
  border-radius: 30px;
  box-shadow: inset 0 3px 45px rgba(245, 218, 201, 0.5);
}
@media screen and (max-width: 1024px) {
  .top-service-wrapper__inner {
    padding: 60px 30px 65px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-service-wrapper__inner {
    padding: 35px 20px 40px;
    border-radius: 10px;
  }
}
.top-service-wrapper__inner--beige {
  background-color: #f8f4ea;
  box-shadow: inset 0 3px 45px rgba(241, 230, 202, 0.5);
}
.top-service-wrapper__inner__catch {
  display: flex;
}
@media screen and (max-width: 599px) {
  .top-service-wrapper__inner__catch {
    flex-wrap: wrap;
  }
}
.top-service-wrapper__inner__catch__text-wrapper {
  width: 64%;
  margin-right: 5%;
}
@media screen and (max-width: 1024px) {
  .top-service-wrapper__inner__catch__text-wrapper {
    margin-right: 3%;
  }
}
@media screen and (max-width: 599px) {
  .top-service-wrapper__inner__catch__text-wrapper {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.top-service-wrapper__inner__catch__inner {
  display: flex;
}
@media screen and (max-width: 599px) {
  .top-service-wrapper__inner__catch__inner {
    flex-wrap: wrap;
  }
}
.top-service-wrapper__inner__catch__title {
  width: 140px;
  border-radius: 10px;
  background-color: #f0813c;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.4;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .top-service-wrapper__inner__catch__title {
    width: 130px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 837px) {
  .top-service-wrapper__inner__catch__title {
    width: 120px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-service-wrapper__inner__catch__title {
    width: 100%;
    font-size: 1.5rem;
    padding: 7px;
    margin-bottom: 15px;
    border-radius: 5px;
  }
}
.top-service-wrapper__inner__catch .text-base {
  width: calc(100% - 170px);
  margin-left: 30px;
}
@media screen and (max-width: 1024px) {
  .top-service-wrapper__inner__catch .text-base {
    width: calc(100% - 155px);
    margin-left: 25px;
  }
}
@media screen and (max-width: 837px) {
  .top-service-wrapper__inner__catch .text-base {
    width: calc(100% - 145px);
    margin-left: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-service-wrapper__inner__catch .text-base {
    width: 100%;
    margin-left: 0;
  }
}
.top-service-wrapper__inner__catch__img {
  width: 31%;
}
@media screen and (max-width: 1024px) {
  .top-service-wrapper__inner__catch__img {
    width: 33%;
  }
}
@media screen and (max-width: 599px) {
  .top-service-wrapper__inner__catch__img {
    width: 100%;
  }
}
.top-service-wrapper__inner__catch__img img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .top-service-wrapper__inner__catch__img img {
    border-radius: 5px;
  }
}
.top-service-wrapper__inner__sale {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 1300px) {
  .top-service-wrapper__inner__sale {
    flex-wrap: wrap;
  }
}
.top-service-wrapper__inner__sale__text-wrapper {
  width: 64%;
  margin-right: 3%;
}
@media screen and (max-width: 1300px) {
  .top-service-wrapper__inner__sale__text-wrapper {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .top-service-wrapper__inner__sale__text-wrapper {
    width: 100%;
    margin-right: 0;
  }
}
.top-service-wrapper__inner__sale__text-wrapper__title {
  display: inline-block;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.8rem;
  color: #f0813c;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.07em;
  padding-bottom: 5px;
  border-bottom: 1px solid #f0813c;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .top-service-wrapper__inner__sale__text-wrapper__title {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-service-wrapper__inner__sale__text-wrapper__title {
    font-size: 1.5rem;
    padding-bottom: 7px;
    margin-bottom: 15px;
  }
}
.top-service-wrapper__inner__sale__amount-wrapper {
  width: 33%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f4ea;
  border-radius: 10px;
  padding: 30px;
}
@media screen and (max-width: 1300px) {
  .top-service-wrapper__inner__sale__amount-wrapper {
    width: 100%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .top-service-wrapper__inner__sale__amount-wrapper {
    width: 100%;
    margin-top: 25px;
    padding: 25px;
  }
}
@media screen and (max-width: 837px) {
  .top-service-wrapper__inner__sale__amount-wrapper {
    border-radius: 5px;
  }
}
@media screen and (max-width: 599px) {
  .top-service-wrapper__inner__sale__amount-wrapper {
    width: 100%;
    margin-top: 15px;
    padding: 20px;
  }
}
.top-service-wrapper__inner__sale__amount-wrapper .limit-item {
  max-width: 170px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .top-service-wrapper__inner__sale__amount-wrapper .limit-item {
    max-width: 160px;
  }
}
@media screen and (max-width: 599px) {
  .top-service-wrapper__inner__sale__amount-wrapper .limit-item {
    max-width: 150px;
  }
}
.top-service-wrapper__inner__sale__amount-wrapper .limit-item .obi {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.07em;
  padding: 5px 10px 8px;
  border-radius: 20px;
  background-color: #f0813c;
  text-align: center;
  margin-bottom: 13px;
}
@media screen and (max-width: 1024px) {
  .top-service-wrapper__inner__sale__amount-wrapper .limit-item .obi {
    font-size: 1.6rem;
    padding: 3px 5px 5px;
    margin-bottom: 11px;
  }
}
.top-service-wrapper__inner__sale__amount-wrapper .limit-item .price {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 3rem;
  color: #f0813c;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  margin-bottom: 4px;
}
.top-service-wrapper__inner__sale__amount-wrapper .limit-item .price span {
  font-size: 4rem;
}
@media screen and (max-width: 1024px) {
  .top-service-wrapper__inner__sale__amount-wrapper .limit-item .price {
    font-size: 2.8rem;
  }
  .top-service-wrapper__inner__sale__amount-wrapper .limit-item .price span {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-service-wrapper__inner__sale__amount-wrapper .limit-item .price {
    font-size: 2.6rem;
  }
  .top-service-wrapper__inner__sale__amount-wrapper .limit-item .price span {
    font-size: 3.6rem;
  }
}
.top-service-wrapper__inner__sale__amount-wrapper .limit-item .text-base {
  text-align: center;
  margin-left: -0.5em;
  margin-right: -0.5em;
}
.top-service-wrapper__inner__support {
  padding: 20px;
  background-color: #fff;
  border-radius: 15px;
}
@media screen and (max-width: 1024px) {
  .top-service-wrapper__inner__support {
    border-radius: 10px;
    padding: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-service-wrapper__inner__support {
    border-radius: 5px;
  }
}
.top-service-wrapper__inner__support .support-list__item {
  display: flex;
  align-items: center;
  padding-bottom: 13px;
  margin-bottom: 13px;
  border-bottom: 1px solid #f0ded2;
}
.top-service-wrapper__inner__support .support-list__item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (max-width: 599px) {
  .top-service-wrapper__inner__support .support-list__item {
    flex-wrap: wrap;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.top-service-wrapper__inner__support .support-list__item__title {
  width: 140px;
  margin-right: 22px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.7rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.07em;
  padding: 15px 10px 18px;
  background-color: #f0813c;
  text-align: center;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .top-service-wrapper__inner__support .support-list__item__title {
    width: 120px;
    margin-right: 18px;
    font-size: 1.6rem;
    padding: 12px 10px 14px;
  }
}
@media screen and (max-width: 599px) {
  .top-service-wrapper__inner__support .support-list__item__title {
    width: 100%;
    margin-right: 0;
    font-size: 1.5rem;
    padding: 10px 10px 11px;
    margin-bottom: 7px;
  }
}
.top-service-wrapper__inner__support .support-list__item__text {
  width: calc(100% - 162px);
}
@media screen and (max-width: 1024px) {
  .top-service-wrapper__inner__support .support-list__item__text {
    width: calc(100% - 138px);
  }
}
@media screen and (max-width: 599px) {
  .top-service-wrapper__inner__support .support-list__item__text {
    width: 100%;
    text-align: center;
    line-height: 1.5;
  }
}
.top-service-wrapper__inner__support .support-list__item__text span {
  color: #f0813c;
  font-weight: 600;
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .top-service-wrapper__inner__support .support-list__item__text span {
    font-size: 1.8rem;
  }
}
.top-service-wrapper__inner__kind__ill-wrapper {
  background-color: #f3f1ec;
  padding: 50px;
  border-radius: 15px;
}
@media screen and (max-width: 1024px) {
  .top-service-wrapper__inner__kind__ill-wrapper {
    border-radius: 10px;
    padding: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-service-wrapper__inner__kind__ill-wrapper {
    border-radius: 5px;
    padding: 15px;
  }
}

/*-----------------お客様の声--------------*/
.top-voice {
  padding: 100px 50px 110px;
  background-color: #f8f4ea;
}
@media screen and (max-width: 1024px) {
  .top-voice {
    padding: 60px 30px 65px;
  }
}
@media screen and (max-width: 599px) {
  .top-voice {
    padding: 35px 20px 40px;
  }
}
.top-voice .top-voice-list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 837px) {
  .top-voice .top-voice-list {
    flex-wrap: wrap;
  }
}
.top-voice .top-voice-list__item {
  padding: 40px;
  width: calc((100% - 60px) / 3);
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .top-voice .top-voice-list__item {
    padding: 30px;
    width: calc((100% - 50px) / 3);
  }
}
@media screen and (max-width: 837px) {
  .top-voice .top-voice-list__item {
    padding: 30px;
    width: 100%;
    margin-bottom: 20px;
  }
  .top-voice .top-voice-list__item:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-voice .top-voice-list__item {
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
  }
}
.top-voice .top-voice-list__item__customer {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .top-voice .top-voice-list__item__customer {
    margin-bottom: 15px;
  }
}
.top-voice .top-voice-list__item__customer__ill-maru {
  width: 90px;
  height: 90px;
  margin-right: 25px;
  background-color: #f8f4ea;
  border-radius: 50%;
  background-position: center top 9px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .top-voice .top-voice-list__item__customer__ill-maru {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
}
.top-voice .top-voice-list__item__customer__ill-maru.ill01 {
  background-image: url(../img/top/ill_voice03.svg);
  background-size: 72px auto;
}
.top-voice .top-voice-list__item__customer__ill-maru.ill02 {
  background-image: url(../img/top/ill_voice02.svg);
  background-size: 66px auto;
}
.top-voice .top-voice-list__item__customer__ill-maru.ill03 {
  background-image: url(../img/top/ill_voice01.svg);
  background-size: 76px auto;
}
.top-voice .top-voice-list__item__customer__text-wrapper {
  width: calc(100% - 115px);
  margin-top: -10px;
}
@media screen and (max-width: 1024px) {
  .top-voice .top-voice-list__item__customer__text-wrapper {
    width: calc(100% - 100px);
    margin-top: -7px;
  }
}
.top-voice .top-voice-list__item__customer__text-wrapper .star {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.8rem;
  color: #f0cc3c;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .top-voice .top-voice-list__item__customer__text-wrapper .star {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-voice .top-voice-list__item__customer__text-wrapper .star {
    font-size: 1.6rem;
  }
}
.top-voice .top-voice-list__item__customer__text-wrapper .name {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.9rem;
  color: #342e24;
  line-height: 1;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .top-voice .top-voice-list__item__customer__text-wrapper .name {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-voice .top-voice-list__item__customer__text-wrapper .name {
    font-size: 1.6rem;
  }
}

/*-------------------よくある質問-----------------*/
.top-faq {
  padding: 0 50px 0 0;
  background-color: #f8f4ea;
}
@media screen and (max-width: 1024px) {
  .top-faq {
    padding: 0 0 0 0;
  }
}
.top-faq__inner {
  padding: 100px 50px 110px;
  border-radius: 0 30px 0 0;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .top-faq__inner {
    padding: 60px 30px 65px;
    border-radius: 0 0 0 0;
  }
}
@media screen and (max-width: 599px) {
  .top-faq__inner {
    padding: 35px 20px 40px;
  }
}
.top-faq__inner .top-faq-list__item {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .top-faq__inner .top-faq-list__item {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-faq__inner .top-faq-list__item {
    margin-bottom: 10px;
  }
}
.top-faq__inner .top-faq-list__item:last-child {
  margin-bottom: 0;
}

.faq-list-q-box {
  width: 100%;
  background-color: #f8f4ea;
  padding: 32px 80px 32px 106px;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .faq-list-q-box {
    padding: 25px 60px 25px 90px;
  }
}
@media screen and (max-width: 599px) {
  .faq-list-q-box {
    padding: 15px 50px 15px 75px;
    border-radius: 5px;
  }
}
.faq-list-q-box::before {
  content: "Q";
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: calc(100% - 50px);
  border-right: 2px solid #f0813c;
  font-family: "Roboto", sans-serif;
  font-size: 4rem;
  color: #f0813c;
  line-height: 1;
  font-weight: 600;
  z-index: 1;
  padding-bottom: 3px;
  left: 0;
  top: 25px;
}
@media screen and (max-width: 1024px) {
  .faq-list-q-box::before {
    width: 70px;
    font-size: 3.5rem;
    height: calc(100% - 30px);
    top: 15px;
  }
}
@media screen and (max-width: 599px) {
  .faq-list-q-box::before {
    width: 60px;
    font-size: 3rem;
    height: calc(100% - 30px);
    top: 15px;
  }
}
.faq-list-q-box.active {
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 599px) {
  .faq-list-q-box.active {
    border-radius: 5px 5px 0 0;
  }
}
.faq-list-q-box.active .faq-list-q-box__arrow::after {
  transform: rotate(90deg);
}
.faq-list-q-box.active .faq-list-a-box {
  margin-bottom: 100px;
}
.faq-list-q-box__text {
  font-size: 1.9rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
  transition: 0.3s;
  color: #342e24;
}
@media screen and (max-width: 1024px) {
  .faq-list-q-box__text {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .faq-list-q-box__text {
    font-size: 1.5rem;
  }
}
.faq-list-q-box span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f0813c;
  position: absolute;
  right: 20px;
  top: calc(50% - 20px);
}
.faq-list-q-box span::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 2px;
  background-color: #fff;
  right: calc(50% - 9px);
  top: calc(50% - 1px);
}
.faq-list-q-box span::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 18px;
  background-color: #fff;
  right: calc(50% - 1px);
  top: calc(50% - 9px);
}
@media screen and (max-width: 1024px) {
  .faq-list-q-box span {
    width: 32px;
    height: 32px;
    right: 15px;
    top: calc(50% - 16px);
  }
  .faq-list-q-box span::before {
    width: 14px;
    right: calc(50% - 7px);
    top: calc(50% - 1px);
  }
  .faq-list-q-box span::after {
    height: 14px;
    right: calc(50% - 1px);
    top: calc(50% - 7px);
  }
}
@media screen and (max-width: 599px) {
  .faq-list-q-box span {
    width: 26px;
    height: 26px;
    right: 15px;
    top: calc(50% - 13px);
  }
  .faq-list-q-box span::before {
    width: 12px;
    right: calc(50% - 6px);
    top: calc(50% - 1px);
  }
  .faq-list-q-box span::after {
    height: 12px;
    right: calc(50% - 1px);
    top: calc(50% - 6px);
  }
}

.faq-list-a-box {
  padding: 0 20px 20px;
  border-radius: 0 0 10px 10px;
  background-color: #f8f4ea;
  display: none;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .faq-list-a-box {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .faq-list-a-box {
    border-radius: 0 0 5px 5px;
    margin-bottom: 20px;
  }
}
.faq-list-a-box__inner {
  background-color: #fff;
  border-radius: 10px;
  padding: 45px 50px;
}
@media screen and (max-width: 1024px) {
  .faq-list-a-box__inner {
    padding: 25px 30px;
  }
}
@media screen and (max-width: 599px) {
  .faq-list-a-box__inner {
    padding: 17px 20px;
    border-radius: 5px;
  }
}

/*-------------------お問い合わせ-----------------*/
.top-contact {
  padding: 0 0 0 50px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-contact {
    padding: 0 0 0 0;
  }
}
@media screen and (max-width: 599px) {
  .top-contact {
    padding: 0 0 0 0;
  }
}
.top-contact::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  background-color: #f8f4ea;
  bottom: 0;
  left: 0;
}
.top-contact__wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 100px 50px;
}
@media screen and (max-width: 1024px) {
  .top-contact__wrapper {
    padding: 60px 30px 65px;
  }
}
@media screen and (max-width: 599px) {
  .top-contact__wrapper {
    padding: 35px 20px 40px;
  }
}
.top-contact__wrapper::before {
  position: absolute;
  content: "";
  max-width: 1700px;
  width: 100%;
  height: 100%;
  background-image: url(../img/top/orange_dot.jpg);
  background-size: 30px;
  background-position: left;
  background-repeat: repeat;
  border-radius: 30px 0 0 30px;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .top-contact__wrapper::before {
    border-radius: 0;
  }
}
.top-contact__wrapper__inner {
  max-width: 1100px;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1300px) {
  .top-contact__wrapper__inner {
    margin-left: 0;
    justify-content: center;
  }
}
@media screen and (max-width: 599px) {
  .top-contact__wrapper__inner {
    max-width: 300px;
  }
}
.top-contact__wrapper__inner__text-wrapper {
  margin-right: 4%;
  width: 270px;
}
@media screen and (max-width: 1300px) {
  .top-contact__wrapper__inner__text-wrapper {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 1300px) {
  .top-contact__wrapper__inner__text-wrapper .title01 {
    text-align: center;
  }
}
.top-contact__wrapper__inner__text-wrapper .text-base {
  margin-bottom: 30px;
}
@media screen and (max-width: 1300px) {
  .top-contact__wrapper__inner__text-wrapper .text-base {
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .top-contact__wrapper__inner__text-wrapper .text-base {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 837px) {
  .top-contact__wrapper__inner__text-wrapper .text-base {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-contact__wrapper__inner__text-wrapper .text-base {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1300px) {
  .top-contact__wrapper__inner__text-wrapper__btn {
    display: flex;
    justify-content: center;
  }
}
.top-contact__wrapper__inner__content {
  width: calc(100% - (270px + 4%));
  background-color: #fff;
  padding: 0 3% 4%;
  border-radius: 10px;
}
@media screen and (max-width: 1300px) {
  .top-contact__wrapper__inner__content {
    max-width: 800px;
    width: 100%;
    margin-top: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .top-contact__wrapper__inner__content {
    padding: 0 20px 40px;
  }
}
@media screen and (max-width: 837px) {
  .top-contact__wrapper__inner__content {
    max-width: 500px;
    padding: 0 20px 25px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-contact__wrapper__inner__content {
    border-radius: 5px;
    padding: 0 10px 25px;
  }
}
.top-contact__wrapper__inner__content__title {
  background-color: #9fca37;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.3rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-align: center;
  padding: 15px 15px 17px;
  margin-bottom: 40px;
  border-radius: 0 0 10px 10px;
  position: relative;
}
.top-contact__wrapper__inner__content__title::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 16px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #9fca37;
  left: calc(50% - 25px);
  bottom: -10px;
}
@media screen and (max-width: 599px) {
  .top-contact__wrapper__inner__content__title::before {
    width: 40px;
    height: 12px;
    left: calc(50% - 20px);
    bottom: -7px;
  }
}
@media screen and (max-width: 1024px) {
  .top-contact__wrapper__inner__content__title {
    font-size: 2.1rem;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 837px) {
  .top-contact__wrapper__inner__content__title {
    font-size: 2rem;
    padding: 12px 10px 14px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-contact__wrapper__inner__content__title {
    font-size: 1.6rem;
    padding: 8px 10px 12px;
    border-radius: 0 0 5px 5px;
    margin-bottom: 22px;
  }
}
.top-contact__wrapper__inner__content .top-contact-list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 837px) {
  .top-contact__wrapper__inner__content .top-contact-list {
    flex-wrap: wrap;
  }
}
.top-contact__wrapper__inner__content .top-contact-list__item {
  padding: 0 3%;
}
@media screen and (max-width: 837px) {
  .top-contact__wrapper__inner__content .top-contact-list__item {
    width: 100%;
    padding: 15px 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.top-contact__wrapper__inner__content .top-contact-list__item:first-child {
  padding: 0 3% 0 0;
  border-right: 1px solid #e1e1e1;
}
@media screen and (max-width: 837px) {
  .top-contact__wrapper__inner__content .top-contact-list__item:first-child {
    padding: 0 10px 15px;
    border-right: none;
    border-bottom: 1px solid #e1e1e1;
  }
}
.top-contact__wrapper__inner__content .top-contact-list__item:last-child {
  padding: 0 0 0 3%;
  border-left: 1px solid #e1e1e1;
}
@media screen and (max-width: 837px) {
  .top-contact__wrapper__inner__content .top-contact-list__item:last-child {
    padding: 15px 10px 0;
    border-left: none;
    border-top: 1px solid #e1e1e1;
  }
}
.top-contact__wrapper__inner__content .top-contact-list__item__title {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.9rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #342e24;
  margin-bottom: 7px;
}
@media screen and (max-width: 1024px) {
  .top-contact__wrapper__inner__content .top-contact-list__item__title {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 837px) {
  .top-contact__wrapper__inner__content .top-contact-list__item__title {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .top-contact__wrapper__inner__content .top-contact-list__item__title {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }
}
.top-contact__wrapper__inner__content .top-contact-list__item__tel {
  font-family: "Roboto", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  color: #f0813c;
  background-image: url(../img/top/freedial.png);
  background-size: 31px auto;
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 36px;
}
@media screen and (max-width: 1024px) {
  .top-contact__wrapper__inner__content .top-contact-list__item__tel {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-contact__wrapper__inner__content .top-contact-list__item__tel {
    font-size: 2.2rem;
    background-size: 25px auto;
    padding-left: 32px;
  }
}
.top-contact__wrapper__inner__content .top-contact-list__item__tel.normal {
  position: relative;
  background-image: none;
}
.top-contact__wrapper__inner__content .top-contact-list__item__tel.normal::before {
  position: absolute;
  content: "直通";
  width: 31px;
  height: 18px;
  background-color: #f0813c;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.3rem;
  line-height: 17px;
  font-weight: 600;
  text-align: center;
  left: 0;
  top: 6px;
}
@media screen and (max-width: 837px) {
  .top-contact__wrapper__inner__content .top-contact-list__item__tel.normal::before {
    top: 3px;
  }
}
@media screen and (max-width: 599px) {
  .top-contact__wrapper__inner__content .top-contact-list__item__tel.normal::before {
    width: 28px;
    height: 16px;
    font-size: 1.2rem;
    line-height: 14px;
    top: 2px;
  }
}
.top-contact__wrapper__inner__content .top-contact-list__item__text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.5rem;
  color: #342e24;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .top-contact__wrapper__inner__content .top-contact-list__item__text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 837px) {
  .top-contact__wrapper__inner__content .top-contact-list__item__text {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .top-contact__wrapper__inner__content .top-contact-list__item__text {
    font-size: 1.3rem;
    line-height: 1.7;
  }
}

/*-------------------noteブロック-----------------*/
.top-note {
  padding: 100px 50px 110px;
  background-color: #f8f4ea;
}
@media screen and (max-width: 1024px) {
  .top-note {
    padding: 60px 30px 65px;
  }
}
@media screen and (max-width: 599px) {
  .top-note {
    padding: 35px 20px 40px;
  }
}
.top-note__inner__title {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .top-note__inner__title {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1024px) {
  .top-note__inner__title__logo {
    width: 200px;
  }
}
@media screen and (max-width: 837px) {
  .top-note__inner__title__logo {
    width: 180px;
  }
}
@media screen and (max-width: 599px) {
  .top-note__inner__title__logo {
    width: 150px;
    margin-bottom: 15px;
  }
}
.top-note__inner__title__text {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.6rem;
  color: #342e24;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: justify;
  margin-left: 2%;
}
@media screen and (max-width: 1024px) {
  .top-note__inner__title__text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-note__inner__title__text {
    width: 100%;
    font-size: 1.4rem;
    text-align: center;
    margin-left: 0;
  }
}
.top-note__inner .top-note-list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .top-note__inner .top-note-list {
    flex-wrap: wrap;
  }
}
.top-note__inner .top-note-list__item {
  width: calc((100% - 70px) / 3);
}
@media screen and (max-width: 1024px) {
  .top-note__inner .top-note-list__item {
    width: calc((100% - 60px) / 3);
  }
}
@media screen and (max-width: 837px) {
  .top-note__inner .top-note-list__item {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .top-note__inner .top-note-list__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.top-note__inner .top-note-list__item__link {
  display: block;
}
@media screen and (min-width: 1025px) {
  .top-note__inner .top-note-list__item__link:hover {
    transform: translateY(3px);
  }
}
.top-note__inner .top-note-list__item__link img {
  border-radius: 10px;
}
@media screen and (max-width: 599px) {
  .top-note__inner .top-note-list__item__link img {
    border-radius: 5px;
  }
}
.top-note__inner__btn {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 599px) {
  .top-note__inner__btn {
    justify-content: center;
  }
}

/*-------------------フォーム-----------------*/
.top-form {
  padding: 100px 50px 110px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .top-form {
    padding: 60px 30px 65px;
  }
}
@media screen and (max-width: 599px) {
  .top-form {
    padding: 35px 20px 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-form .text-center {
    text-align: justify;
  }
}/*# sourceMappingURL=style.css.map */