@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=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Overpass:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;700");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&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;
  }
}
/* 1600以上 */
@media screen and (max-width: 1600px) {
  .only1600 {
    display: none !important;
  }
}
/* 1500以上 */
@media screen and (max-width: 1500px) {
  .only1500 {
    display: none !important;
  }
}
/* 1400以上 */
@media screen and (max-width: 1400px) {
  .only1400 {
    display: none !important;
  }
}
/* 1300以上 */
@media screen and (max-width: 1300px) {
  .only1300 {
    display: none !important;
  }
}
/* 1200以上 */
@media screen and (max-width: 1200px) {
  .only1200 {
    display: none !important;
  }
}
/* タブレット・PC */
@media screen and (max-width: 599px) {
  .pctb {
    display: none !important;
  }
}
/* タブレット・SP */
@media screen and (min-width: 1025px) {
  .tbsp {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (min-width: 599px) and (max-width: 1024px) {
  .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: #323f63;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f4fafd;
  background-image: url(../img/lp/bg.png) !important;
  background-attachment: fixed !important;
  background-repeat: repeat !important;
  line-height: 1.7;
  font-size: 1.6rem;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  /*任意でフォントサイズを指定*/
}
@media screen and (min-width: 1025px) {
  body {
    font-weight: 500;
  }
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  body {
    background-size: 100% auto !important;
    font-size: 1.4rem;
  }
}

/*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 {
  -ms-touch-action: manipulation;
  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;
}

/*クラスの指定がない場合のリンクのデフォルト色を指定*/
/*すべての要素の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 {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -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;
  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,
::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;
}

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

/*マージン*/
.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: 20px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb35 {
    margin-bottom: 15px !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;
  }
}

.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;
  }
}

.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;
  }
}

.footer {
  padding: 80px 20px;
}
@media screen and (max-width: 599px) {
  .footer {
    padding: 40px 20px 100px;
  }
}

.footer-logo {
  max-width: 350px;
  margin: 0 auto 15px;
}
@media screen and (max-width: 599px) {
  .footer-logo {
    width: 70%;
  }
}

.footer-address {
  margin-bottom: 30px;
  color: #444;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .footer-address {
    margin-bottom: 30px;
    font-size: 1.4rem;
  }
}

.footer-copyright {
  color: #007c36;
  font-size: 1rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}

.left-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  width: calc(50% - 360px);
  height: 100vh;
  padding: 0 20px;
}
@media screen and (max-width: 1500px) {
  .left-wrapper {
    width: 28%;
  }
}
@media screen and (max-width: 1024px) {
  .left-wrapper {
    display: none;
  }
}
.left-wrapper > img {
  margin-top: -20%;
}

.right-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 0;
  width: calc(50% - 360px);
  height: 100vh;
  padding: 0 20px;
}
@media screen and (max-width: 1500px) {
  .right-wrapper {
    width: 28%;
  }
}
@media screen and (max-width: 1024px) {
  .right-wrapper {
    display: none;
  }
}
.right-wrapper__title {
  margin-top: -20%;
  margin-bottom: 20px;
}
.right-wrapper__list__item {
  max-width: 350px;
}
.right-wrapper__list__item:not(:last-child) {
  margin-bottom: 5px;
}
.right-wrapper__list__link {
  display: block;
}
@media screen and (min-width: 1025px) {
  .right-wrapper__list__link:hover {
    opacity: 0.8;
  }
}

.main-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background-color: #fff;
}
@media screen and (max-width: 1500px) {
  .main-wrapper {
    width: 44%;
  }
}
@media screen and (max-width: 1024px) {
  .main-wrapper {
    width: 100%;
  }
}

/*--------------------------------------------------------
lp
----------------------------------------------------------*/
.lp-main {
  position: relative;
  padding-bottom: 40px;
  background-color: #fff;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .lp-main {
    padding-bottom: 30px;
  }
}
.lp-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 87%;
  background-color: #fff5e1;
  z-index: -1;
}
.lp-main__img {
  margin-top: -8.5%;
  padding: 0 3.4%;
}
@media screen and (max-width: 599px) {
  .lp-main__img {
    padding: 0 10px;
  }
}

.lp-sec01 {
  position: relative;
  margin-bottom: 60px;
  padding: 45px 0 45px;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .lp-sec01 {
    margin-bottom: 30px;
    padding: 20px 0 40px;
  }
}
.lp-sec01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 87%;
  height: 100%;
  background-color: #e6f6e8;
  border-radius: 0 40px 40px 0;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .lp-sec01::before {
    border-radius: 0 20px 20px 0;
  }
}
.lp-sec01__title {
  margin-bottom: 15px;
  padding: 0 8%;
}
@media screen and (max-width: 599px) {
  .lp-sec01__title {
    margin-bottom: 12px;
    padding: 0 10px;
  }
}
.lp-sec01__fukidashi01 {
  margin-bottom: 15px;
  padding: 0 8%;
}
@media screen and (max-width: 599px) {
  .lp-sec01__fukidashi01 {
    margin-bottom: 12px;
    padding: 0 10px;
  }
}
.lp-sec01__fukidashi02 {
  margin-bottom: 9px;
  padding: 0 8%;
}
@media screen and (max-width: 599px) {
  .lp-sec01__fukidashi02 {
    margin-bottom: 6px;
    padding: 0 10px;
  }
}
.lp-sec01__fukidashi03 {
  margin-bottom: 15px;
  padding: 0 8%;
}
@media screen and (max-width: 599px) {
  .lp-sec01__fukidashi03 {
    margin-bottom: 12px;
    padding: 0 10px;
  }
}
.lp-sec01__fukidashi04 {
  margin-bottom: 9px;
  padding: 0 8%;
}
@media screen and (max-width: 599px) {
  .lp-sec01__fukidashi04 {
    margin-bottom: 6px;
    padding: 0 10px;
  }
}
.lp-sec01__fukidashi05 {
  margin-bottom: 14px;
  padding: 0 8%;
}
@media screen and (max-width: 599px) {
  .lp-sec01__fukidashi05 {
    margin-bottom: 11px;
    padding: 0 10px;
  }
}
.lp-sec01__fukidashi06 {
  margin-bottom: 10px;
  padding: 0 8%;
}
@media screen and (max-width: 599px) {
  .lp-sec01__fukidashi06 {
    margin-bottom: 7px;
    padding: 0 10px;
  }
}
.lp-sec01__fukidashi07 {
  margin-bottom: 15px;
  padding: 0 8%;
}
@media screen and (max-width: 599px) {
  .lp-sec01__fukidashi07 {
    margin-bottom: 12px;
    padding: 0 10px;
  }
}
.lp-sec01__fukidashi08 {
  margin-bottom: 22px;
  padding: 0 8%;
}
@media screen and (max-width: 599px) {
  .lp-sec01__fukidashi08 {
    margin-bottom: 19px;
    padding: 0 10px;
  }
}
.lp-sec01__button {
  display: block;
  padding: 0 5px;
}
@media screen and (min-width: 1025px) {
  .lp-sec01__button:hover {
    opacity: 0.8;
  }
}

.appplus-btn {
  margin-bottom: 20px;
  margin-left: 4.1%;
  padding: 0 11px;
  display: block;
}
@media screen and (max-width: 599px) {
  .appplus-btn {
    margin-left: 0;
    margin-bottom: 10px;
    padding: 0 10px;
  }
}
@media screen and (min-width: 1025px) {
  .appplus-btn:hover {
    opacity: 0.8;
  }
}

.lp-sec02 {
  position: relative;
  margin-bottom: 60px;
  padding: 50px 0 75px;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .lp-sec02 {
    margin-bottom: 30px;
    padding: 20px 0 40px;
  }
}
.lp-sec02::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 87%;
  height: 100%;
  background-color: #feefe0;
  border-radius: 40px 0 0 40px;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .lp-sec02::before {
    border-radius: 20px 0 0 20px;
  }
}
.lp-sec02__title {
  margin-bottom: 23px;
  padding: 0 8%;
}
@media screen and (max-width: 599px) {
  .lp-sec02__title {
    margin-left: 0;
    margin-bottom: 10px;
    padding: 0 10px;
  }
}
.lp-sec02__fukidashi01 {
  margin-bottom: 8px;
  padding: 0 8%;
}
@media screen and (max-width: 599px) {
  .lp-sec02__fukidashi01 {
    margin-bottom: 5px;
    padding: 0 10px;
  }
}
.lp-sec02__fukidashi02 {
  margin-bottom: 17px;
  padding: 0 8%;
}
@media screen and (max-width: 599px) {
  .lp-sec02__fukidashi02 {
    margin-bottom: 15px;
    padding: 0 10px;
  }
}
.lp-sec02__fukidashi03 {
  margin-bottom: 15px;
  padding: 0 8%;
}
@media screen and (max-width: 599px) {
  .lp-sec02__fukidashi03 {
    margin-bottom: 12px;
    padding: 0 10px;
  }
}
.lp-sec02__fukidashi04 {
  padding: 0 8%;
}
@media screen and (max-width: 599px) {
  .lp-sec02__fukidashi04 {
    padding: 0 10px;
  }
}

.lp-sec03 {
  position: relative;
  margin-bottom: 40px;
  padding: 60px 0 48px;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .lp-sec03 {
    margin-bottom: 30px;
    padding: 35px 0 30px;
  }
}
.lp-sec03::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 87%;
  height: 100%;
  background-color: #fbe8eb;
  border-radius: 0 40px 40px 0;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .lp-sec03::before {
    border-radius: 0 20px 20px 0;
  }
}
.lp-sec03__box {
  max-width: 620px;
  margin: 0 7% 20px;
  padding: 35px 6% 60px;
  border-radius: 20px;
  background-color: #e5a698;
}
@media screen and (max-width: 599px) {
  .lp-sec03__box {
    margin: 0 10px 15px;
    padding: 20px 15px 30px;
    border-radius: 10px;
  }
}
.lp-sec03__point {
  margin-bottom: 25px;
}
@media screen and (max-width: 599px) {
  .lp-sec03__point {
    margin-bottom: 15px;
  }
}
.lp-sec03__point > img {
  display: block;
  margin: 0 -5px;
}
.lp-sec03__list {
  text-align: left;
}
.lp-sec03__list__item:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .lp-sec03__list__item:not(:last-child) {
    margin-bottom: 12px;
  }
}
.lp-sec03__list__link {
  display: flex;
  align-items: center;
  padding: 15px 70px 15px 20px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0px 2px 18px -8px #000000;
  color: #111;
  position: relative;
}
@media screen and (max-width: 599px) {
  .lp-sec03__list__link {
    padding: 10px 50px 10px 16px;
  }
}
.lp-sec03__list__link::before, .lp-sec03__list__link::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.lp-sec03__list__link::before {
  background-color: #e58d79;
  width: 40px;
  height: calc(100% - 20px);
  border-radius: 0 10px 10px 0;
  right: 10px;
}
@media screen and (max-width: 599px) {
  .lp-sec03__list__link::before {
    width: 30px;
    height: calc(100% - 16px);
    border-radius: 0 8px 8px 0;
  }
}
.lp-sec03__list__link::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 17px solid #ffe100;
  border-right: 0;
  right: 20px;
}
@media screen and (max-width: 599px) {
  .lp-sec03__list__link::after {
    right: 18px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #ffe100;
  }
}
.lp-sec03__list__link:hover {
  top: -1px;
  left: -1px;
  box-shadow: 6px 6px 21px -5px #000000;
  background-color: #fff3e8;
}
.lp-sec03__list__icon {
  width: 30%;
  text-align: center;
}
.lp-sec03__list__icon__copy {
  font-size: 1.2rem;
  display: block;
  text-align: right;
  margin-top: 8px;
  width: 100%;
}
.item01 .lp-sec03__list__icon > img {
  max-width: 137px;
}
@media screen and (max-width: 599px) {
  .item01 .lp-sec03__list__icon > img {
    max-width: 95.9px;
  }
}
.item02 .lp-sec03__list__icon > img {
  max-width: 140px;
}
@media screen and (max-width: 599px) {
  .item02 .lp-sec03__list__icon > img {
    max-width: 84px;
  }
}
.item03 .lp-sec03__list__icon > img {
  max-width: 120px;
}
@media screen and (max-width: 599px) {
  .item03 .lp-sec03__list__icon > img {
    max-width: 72px;
  }
}
.item04 .lp-sec03__list__icon > img {
  max-width: 120px;
}
@media screen and (max-width: 599px) {
  .item04 .lp-sec03__list__icon > img {
    max-width: 72px;
  }
}
.lp-sec03__list__content {
  flex: 1;
  padding-left: 20px;
}
.lp-sec03__list__title {
  margin-bottom: 5px;
  font-size: 2.2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 900;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .lp-sec03__list__title {
    font-size: 1.6rem;
  }
}
.item01 .lp-sec03__list__title {
  color: #1e852f;
}
.item02 .lp-sec03__list__title {
  color: #e46905;
}
.item03 .lp-sec03__list__title {
  color: #ae8908;
}
.item04 .lp-sec03__list__title {
  color: #c9119c;
}
.item05 .lp-sec03__list__title {
  color: #1670c3;
}
.lp-sec03__list__text {
  color: #333;
  font-size: 1.9rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (max-width: 599px) {
  .lp-sec03__list__text {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.lp-sec03__fukidashi01 {
  margin-bottom: 8px;
  padding: 0 8%;
}
@media screen and (max-width: 599px) {
  .lp-sec03__fukidashi01 {
    margin-bottom: 5px;
    padding: 0 8px;
  }
}
.lp-sec03__fukidashi02 {
  margin-bottom: 15px;
  padding: 0 8%;
}
@media screen and (max-width: 599px) {
  .lp-sec03__fukidashi02 {
    margin-bottom: 12px;
    padding: 0 10px;
  }
}
.lp-sec03__fukidashi03 {
  margin-bottom: 10px;
  padding: 0 8%;
}
@media screen and (max-width: 599px) {
  .lp-sec03__fukidashi03 {
    margin-bottom: 7px;
    padding: 0 10px;
  }
}
.lp-sec03__fukidashi04 {
  margin-bottom: 17px;
  padding: 0 8%;
}
@media screen and (max-width: 599px) {
  .lp-sec03__fukidashi04 {
    margin-bottom: 14px;
    padding: 0 10px;
  }
}
.lp-sec03__fukidashi05 {
  margin-bottom: 22px;
  padding: 0 8%;
}
@media screen and (max-width: 599px) {
  .lp-sec03__fukidashi05 {
    margin-bottom: 19px;
    padding: 0 5px;
  }
}
.lp-sec03__button {
  display: block;
  padding: 0 5px;
}
@media screen and (min-width: 1025px) {
  .lp-sec03__button:hover {
    opacity: 0.8;
  }
}

.lp-sec04__bnr {
  display: block;
}
@media screen and (min-width: 1025px) {
  .lp-sec04__bnr:hover {
    opacity: 0.8;
  }
}

.sp-floting {
  display: none;
}
@media screen and (max-width: 599px) {
  .sp-floting {
    display: block;
    position: fixed;
    bottom: 10px;
    left: 0;
    right: 0;
    width: 90%;
    margin: auto;
    z-index: 10;
    font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    font-weight: 600;
    color: #333;
    font-size: 1.8rem;
    background-color: #ffe100;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    -o-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
    text-align: center;
    height: 60px;
    line-height: 60px;
    box-shadow: 0px 0px 15px -5px #000;
  }
  .sp-floting::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    margin: auto;
    background-image: url(../img/lp/btn-arrow.png);
    background-size: 28px 28px;
    width: 28px;
    height: 28px;
  }
}/*# sourceMappingURL=style.css.map */