@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&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;
  }
}
/* 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) {
  .tbpc {
    display: none !important;
  }
}
/* タブレット2・PC */
@media screen and (max-width: 834px) {
  .tb02pc {
    display: none !important;
  }
}
/* タブレット・SP */
@media screen and (min-width: 1025px) {
  .tbsp {
    display: none !important;
  }
}
/* タブレット02・SP */
@media screen and (min-width: 835px) {
  .tb02sp {
    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;
  }
}
/* justify-content: space-between; */
@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%;
}

/*要素のフォントサイズやマージン・パディングをリセットしています*/
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: #0785c7;
  color: #fff;
  text-decoration: none;
}

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

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

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

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

/*すべての要素の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: #0785c7;
  /* Change as appropriate */
  color: #fff;
  /* Change as appropriate */
  text-shadow: none;
}

/*body設定*/
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #444;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
  line-height: 1.7;
  font-size: 1.6rem;
  overflow-x: hidden;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.07em;
  text-rendering: optimizeSpeed;
  /*任意でフォントサイズを指定*/
}
@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: 280% auto;
  }
}

/*IE用：游ゴシックの謎余白をなくすためフォントを別指定*/
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Meiryo, sans-serif;
  }
}
@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: 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: 30px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .footer {
    margin-bottom: 62px;
  }
}
@media screen and (max-width: 599px) {
  .footer {
    padding: 15px;
  }
}

.footer-logo > img {
  max-width: 262px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .footer-logo > img {
    max-width: 202px;
  }
}

.header-logo {
  position: absolute;
  top: 0;
  left: 0;
  padding: 25px 20px;
  background-color: #fff;
  z-index: 1;
  border-bottom-right-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .header-logo {
    width: 40%;
  }
}
@media screen and (max-width: 834px) {
  .header-logo {
    width: 63%;
  }
}
@media screen and (max-width: 599px) {
  .header-logo {
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    padding: 0 17px;
    border-bottom-right-radius: 0px;
  }
}
.header-logo > img {
  max-width: 462px;
  width: 100%;
}

/*--------------------------------------------------------
lp
----------------------------------------------------------*/
.lp-main-wrapper {
  position: relative;
  padding-bottom: 100px;
  background-image: linear-gradient(-61deg, #f57510, #fb984c 19%, #f57510 37% 68%, #ffa158 93%, #f57510);
}
@media screen and (max-width: 834px) {
  .lp-main-wrapper {
    padding: 120px 0 0;
  }
}
@media screen and (max-width: 599px) {
  .lp-main-wrapper {
    margin-top: 60px;
    padding: 40px 0 0;
  }
}
.lp-main-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/lp/curve.webp);
  background-repeat: no-repeat;
  background-position: center bottom -0.5px;
  background-size: 100%;
}

.lp-main {
  display: flex;
  align-items: center;
  height: 880px;
}
@media screen and (max-width: 1024px) {
  .lp-main {
    height: 620px;
  }
}
@media screen and (max-width: 834px) {
  .lp-main {
    flex-direction: column;
    height: auto;
    padding: 0 30px;
  }
}
.lp-main__content {
  display: flex;
  max-width: 660px;
  width: 100%;
  margin: 0 5%;
}
@media screen and (max-width: 1024px) {
  .lp-main__content {
    padding-top: 95px;
  }
}
@media screen and (max-width: 834px) {
  .lp-main__content {
    padding-top: 50px;
    width: 82%;
    margin: 0px auto 80px;
  }
}
@media screen and (max-width: 599px) {
  .lp-main__content {
    width: 80%;
    width: auto;
    padding-top: 0;
    margin-bottom: 40px;
    flex-direction: column;
  }
}
.lp-main__content__title {
  display: flex;
  justify-content: center;
  margin-right: 50px;
  padding: 15px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  border: 1px solid #fff;
  border-radius: 5px;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  font-feature-settings: "pkna";
}
@media screen and (max-width: 1500px) {
  .lp-main__content__title {
    padding: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .lp-main__content__title {
    margin-right: 5%;
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 834px) {
  .lp-main__content__title {
    margin-right: 6.5%;
  }
}
@media screen and (max-width: 599px) {
  .lp-main__content__title {
    width: 88%;
    margin: 0 auto 25px;
    padding: 5px 10px;
    font-size: 1.7rem;
    writing-mode: horizontal-tb;
  }
}
@media screen and (max-width: 599px) {
  .lp-main__content__group {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.lp-main__content__catch {
  margin-bottom: 40px;
  /*margin-left: -10px;
  color: #fff;
  font-size: 12.8rem;
  font-weight: 400;
  text-align: justify;
  letter-spacing: -.04em;
  line-height: 1.1;*/
  /*> span {
      color: #f9ff5e;
      font-size: 13rem;
      @include mq(w1500) {
          font-size: 8.1vw;
      }
      @include mq(tb02) {
          font-size: 16.1vw;
      }
      @include mq(sp) {
          font-size: 18.1vw;
      }
  }*/
}
@media screen and (max-width: 1024px) {
  .lp-main__content__catch {
    margin-right: 35px;
  }
}
@media screen and (max-width: 599px) {
  .lp-main__content__catch {
    width: 88%;
    margin: 0 auto 25px;
  }
}
.lp-main__content__en {
  margin-bottom: 30px;
  color: #fff;
  font-size: 2rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  letter-spacing: 0.175em;
  opacity: 0.52;
}
@media screen and (max-width: 1024px) {
  .lp-main__content__en {
    margin-bottom: 20px;
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 834px) {
  .lp-main__content__en {
    font-size: 2.6vw;
  }
}
@media screen and (max-width: 599px) {
  .lp-main__content__en {
    margin-bottom: 20px;
    font-size: 3.3vw;
    text-align: center;
    letter-spacing: 0.11em;
  }
}
.lp-main__content__text {
  color: #fff;
  font-size: 1.9rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  line-height: 2.1;
}
@media screen and (max-width: 1024px) {
  .lp-main__content__text {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .lp-main__content__text {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.lp-main__image {
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  height: 100%;
  margin-left: auto;
  border-radius: 0 0 0 200px;
}
@media screen and (max-width: 1024px) {
  .lp-main__image {
    border-radius: 0 0 0 120px;
  }
}
@media screen and (max-width: 834px) {
  .lp-main__image {
    width: 95%;
    margin-right: -30px;
    border-radius: 0 0 0 80px;
  }
}
@media screen and (max-width: 599px) {
  .lp-main__image {
    width: calc(100% + 30px);
    border-radius: 30px 0 0 5px;
  }
}
.lp-main__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-message {
  position: relative;
  padding: 120px 0 60px;
  background-image: url(../img/lp/message_logo.png);
  background-repeat: no-repeat;
  background-position: top 90px right;
  background-size: 498px auto;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .lp-message {
    padding: 80px 40px;
  }
}
@media screen and (max-width: 834px) {
  .lp-message {
    padding: 60px 35px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .lp-message {
    padding: 50px 30px;
    background-position: top right;
    background-size: 163px auto;
  }
}
.lp-message__container {
  display: flex;
  align-items: center;
  gap: 0 4%;
}
@media screen and (max-width: 1024px) {
  .lp-message__container {
    gap: 0 5%;
  }
}
@media screen and (max-width: 834px) {
  .lp-message__container {
    gap: 0 4%;
    flex-direction: column-reverse;
  }
}
.lp-message__image {
  position: relative;
  width: 52%;
  padding-bottom: 230px;
  padding-left: 300px;
}
@media screen and (max-width: 1500px) {
  .lp-message__image {
    padding-left: 20%;
  }
}
@media screen and (max-width: 1300px) {
  .lp-message__image {
    padding-bottom: 14.6%;
    padding-left: 18%;
  }
}
@media screen and (max-width: 1200px) {
  .lp-message__image {
    width: 50%;
    padding-bottom: 20%;
    padding-left: 5%;
  }
}
@media screen and (max-width: 1024px) {
  .lp-message__image {
    width: 35%;
  }
}
@media screen and (max-width: 834px) {
  .lp-message__image {
    width: 52%;
    padding: 0 0 200px;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .lp-message__image {
    width: 100%;
    padding: 0 0 180px;
  }
}
.lp-message__image > img {
  overflow: hidden;
  max-width: 470px;
  width: 100%;
  box-shadow: 0 0 34px rgba(0, 0, 0, 0.09);
  border-radius: 10px;
}
@media screen and (max-width: 599px) {
  .lp-message__image > img {
    width: 70%;
  }
}
.lp-message__image::before, .lp-message__image::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 0 34px rgba(0, 0, 0, 0.09);
}
.lp-message__image::before {
  overflow: hidden;
  bottom: 150px;
  left: 0;
  width: 230px;
  height: 230px;
  background-image: url(../img/lp/message_ph02.webp);
  border-radius: 0 15px 15px 0;
}
@media screen and (max-width: 1300px) {
  .lp-message__image::before {
    bottom: 20px;
    width: 190px;
    height: 190px;
  }
}
@media screen and (max-width: 1200px) {
  .lp-message__image::before {
    width: 160px;
    height: 160px;
  }
}
@media screen and (max-width: 1024px) {
  .lp-message__image::before {
    bottom: 0px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 599px) {
  .lp-message__image::before {
    bottom: 40px;
    width: 112px;
    height: 112px;
    border-radius: 5px;
  }
}
.lp-message__image::after {
  left: 262px;
  bottom: 0;
  width: 266px;
  height: 170px;
  background-image: url(../img/lp/message_ph03.webp);
  border-radius: 10px;
}
@media screen and (max-width: 1300px) {
  .lp-message__image::after {
    width: 226px;
    height: 144px;
  }
}
@media screen and (max-width: 1200px) {
  .lp-message__image::after {
    width: 196px;
    height: 125px;
  }
}
@media screen and (max-width: 834px) {
  .lp-message__image::after {
    right: -40px;
    left: auto;
  }
}
@media screen and (max-width: 599px) {
  .lp-message__image::after {
    right: 0;
    width: 180px;
    height: 121px;
    border-radius: 5px;
  }
}
.lp-message__content {
  max-width: 550px;
  margin-right: 5%;
}
@media screen and (max-width: 1024px) {
  .lp-message__content {
    width: 65%;
    margin-bottom: 60px;
    margin-right: 0;
  }
}
@media screen and (max-width: 834px) {
  .lp-message__content {
    width: auto;
    margin-bottom: 40px;
  }
}
.lp-message__title {
  margin-bottom: 50px;
  margin-left: -8px;
  color: #fffbbb;
  font-size: 12rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 300;
  line-height: 0.75;
}
@media screen and (max-width: 1300px) {
  .lp-message__title {
    font-size: 9.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .lp-message__title {
    margin-left: -4px;
  }
}
@media screen and (max-width: 599px) {
  .lp-message__title {
    margin-bottom: 20px;
    font-size: 5rem;
  }
}
.lp-message__title > span {
  color: #fff;
}
.lp-message__text {
  margin-bottom: 60px;
  color: #fff;
  font-size: 1.7rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  line-height: 2.3;
}
@media screen and (max-width: 599px) {
  .lp-message__text {
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: justify;
    line-height: 2.1;
  }
}
.lp-message__prof {
  color: #fff;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  text-align: right;
}
.lp-message__prof__text01 {
  margin-bottom: 12px;
  font-size: 1.8rem;
}
@media screen and (max-width: 599px) {
  .lp-message__prof__text01 {
    font-size: 1.5rem;
  }
}
.lp-message__prof__text02 {
  font-size: 2.8rem;
}
@media screen and (max-width: 599px) {
  .lp-message__prof__text02 {
    font-size: 1.9rem;
  }
}
.lp-message__prof__text02 > img {
  display: inline-block;
  max-width: 147px;
  margin-top: -10px;
  margin-left: 10px;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .lp-message__prof__text02 > img {
    max-width: 114px;
  }
}

.lp-news {
  position: relative;
  padding: 0 50px 150px;
}
@media screen and (max-width: 1024px) {
  .lp-news {
    padding: 0 40px 130px;
  }
}
@media screen and (max-width: 834px) {
  .lp-news {
    padding: 0 30px 130px;
  }
}
@media screen and (max-width: 599px) {
  .lp-news {
    padding: 0 20px 80px;
  }
}
.lp-news::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 67%;
  background-color: #f7f7f7;
  z-index: -1;
}
.lp-news__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.lp-news__head {
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .lp-news__head {
    margin-bottom: 30px;
  }
}
.lp-news__head__catch {
  position: relative;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #182d39;
  font-size: 2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 599px) {
  .lp-news__head__catch {
    padding-left: 15px;
    font-size: 1.7rem;
  }
}
.lp-news__head__catch::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #f57510;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .lp-news__head__catch::before {
    width: 8px;
    height: 8px;
  }
}
.lp-news__head__title {
  color: #f57510;
  font-size: 9rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 300;
  line-height: 0.75;
}
@media screen and (max-width: 1024px) {
  .lp-news__head__title {
    font-size: 8.8vw;
  }
}
@media screen and (max-width: 599px) {
  .lp-news__head__title {
    font-size: 4.2rem;
  }
}
.lp-news__list {
  display: flex;
  gap: 0 4%;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .lp-news__list {
    gap: 0 3%;
  }
}
@media screen and (max-width: 599px) {
  .lp-news__list {
    flex-wrap: wrap;
    gap: 20px 0;
    margin-bottom: 30px;
  }
}
.lp-news__list__item {
  width: -webkit-calc( ( 100% - 8% ) / 3 );
  width: 30.6666666667%;
}
@media screen and (max-width: 599px) {
  .lp-news__list__item {
    flex: auto;
    width: 100%;
  }
}
.lp-news__list__link {
  overflow: hidden;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.06);
  background-color: #fff;
  height: 100%;
}
@media screen and (min-width: 1025px) {
  .lp-news__list__link:hover {
    transform: translateY(-15px);
  }
}
.lp-news__list__image {
  width: 100%;
  overflow: hidden;
}
.lp-news__list__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 37/22;
  -o-object-fit: cover;
  object-fit: cover;
  backface-visibility: hidden;
}
.lp-news__list__body {
  position: relative;
  padding: 20px 9%;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  .lp-news__list__body {
    padding: 20px 20px 30px;
  }
}
.lp-news__list__body::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 10px;
  height: 10px;
  border: 5px solid transparent;
  border-right-color: #0080cb;
  border-bottom-color: #0080cb;
}
.lp-news__list__date {
  margin-bottom: 8px;
  color: #a4a4a4;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .lp-news__list__date {
    font-size: 1.5rem;
  }
}
.lp-news__list__title {
  margin-bottom: 10px;
  color: #182d39;
  font-size: 2.2rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .lp-news__list__title {
    font-size: 1.8rem;
  }
}
.lp-news__list__text {
  color: #182d39;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .lp-news__list__text {
    font-size: 1.5rem;
  }
}
.lp-news__btn {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 290px;
  margin: 0 auto;
  padding: 18px 40px;
  background-color: #0080cb;
  border-radius: 50px;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .lp-news__btn {
    padding: 15px 30px;
    font-size: 1.5rem;
  }
}
.lp-news__btn::before, .lp-news__btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.lp-news__btn::before {
  right: 16px;
  width: 36px;
  height: 36px;
  background-color: #66b3e0;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .lp-news__btn::before {
    width: 32px;
    height: 32px;
  }
}
.lp-news__btn::after {
  right: 27px;
  width: 10px;
  height: 10px;
  border: 5px solid transparent;
  border-left: 10px solid #fff;
  border-right: none;
}
@media screen and (max-width: 599px) {
  .lp-news__btn::after {
    width: 8px;
    height: 8px;
    border-width: 4px;
    border-left-width: 8px;
  }
}
@media screen and (min-width: 1025px) {
  .lp-news__btn:hover {
    opacity: 0.8;
  }
}

.lp-information {
  position: relative;
  padding: 0 0 100px;
  background-color: #f7f7f7;
}
@media screen and (max-width: 599px) {
  .lp-information {
    padding: 0 0 40px;
  }
}
.lp-information::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 95%;
  height: 80%;
  background: linear-gradient(90deg, rgb(245, 117, 16) 0%, rgb(245, 151, 77) 17%, rgb(245, 117, 16) 47%, rgb(244, 135, 49) 100%);
  border-radius: 0 60px 60px 0;
}
@media screen and (max-width: 1024px) {
  .lp-information::before {
    height: 95%;
    border-radius: 0 50px 50px 0;
  }
}
@media screen and (max-width: 834px) {
  .lp-information::before {
    border-radius: 0 40px 40px 0;
  }
}
@media screen and (max-width: 599px) {
  .lp-information::before {
    width: 100%;
    height: 98%;
    border-radius: 0;
  }
}
.lp-information__inner {
  position: relative;
  margin-left: 5%;
  padding-bottom: 100px;
  padding-left: 11%;
  background-color: #fff;
  border-radius: 60px 0 0 60px;
}
@media screen and (max-width: 1024px) {
  .lp-information__inner {
    padding: 0 40px 80px;
    border-radius: 50px 0 0 50px;
  }
}
@media screen and (max-width: 834px) {
  .lp-information__inner {
    margin-left: 30px;
    padding: 0 30px 80px;
    border-radius: 40px 0 0 40px;
  }
}
@media screen and (max-width: 599px) {
  .lp-information__inner {
    margin: 0 15px;
    padding: 0 18px 40px;
    border-radius: 10px;
  }
}
.lp-information__title {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin-bottom: 65px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .lp-information__title {
    margin-bottom: 10px;
  }
}
.lp-information__title__en {
  margin-top: -30px;
  margin-bottom: 30px;
  color: #f57510;
  font-size: 9rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 300;
  line-height: 0.75;
}
@media screen and (max-width: 1024px) {
  .lp-information__title__en {
    font-size: 8.8vw;
  }
}
@media screen and (max-width: 599px) {
  .lp-information__title__en {
    margin-top: -18px;
    margin-bottom: 15px;
    font-size: 4.3rem;
  }
}
.lp-information__title__jp {
  max-width: 190px;
  margin: 0 auto;
  padding: 5px 35px;
  border: 2px solid #f57510;
  border-radius: 50px;
  color: #f57510;
  font-size: 2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .lp-information__title__jp {
    padding: 1px 20px;
    font-size: 1.5rem;
  }
}
.lp-information__contents {
  display: flex;
  gap: 0 5%;
  position: relative;
  margin-bottom: 70px;
  padding-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .lp-information__contents {
    flex-direction: column;
    margin-bottom: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .lp-information__contents {
    padding-bottom: 0;
  }
}
.lp-information__contents::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 1200px;
  width: 100%;
  height: 1px;
  margin: 0 auto;
  background-color: #e8e0d3;
}
@media screen and (max-width: 599px) {
  .lp-information__contents::after {
    display: none;
  }
}
.lp-information__contents__inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .lp-information__contents__content {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .lp-information__contents__content {
    margin-bottom: 30px;
  }
}
.lp-information__contents__content__title {
  position: relative;
  margin-bottom: 30px;
  padding-left: 50px;
  color: #182d39;
  font-size: 3.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 599px) {
  .lp-information__contents__content__title {
    padding-left: 40px;
    font-size: 2.2rem;
  }
}
.lp-information__contents__content__title::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 33px;
  height: 30px;
  margin: auto 0;
  background-image: url(../img/lp/icon_contents.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 599px) {
  .lp-information__contents__content__title::before {
    width: 28px;
    height: 25px;
  }
}
.lp-information__contents__content__title > span {
  margin-left: 20px;
  color: #f8a113;
  font-size: 2rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  vertical-align: middle;
  line-height: 0.75;
}
@media screen and (max-width: 599px) {
  .lp-information__contents__content__title > span {
    margin-left: 10px;
    font-size: 1.4rem;
  }
}
.lp-information__contents__content__list {
  counter-reset: num;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .lp-information__contents__content__list {
    margin-bottom: 20px;
  }
}
.lp-information__contents__content__list__item:not(:last-child) {
  margin-bottom: 25px;
}
@media screen and (max-width: 599px) {
  .lp-information__contents__content__list__item:not(:last-child) {
    margin-bottom: 20px;
  }
}
.lp-information__contents__content__list__item > dt {
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  padding: 18px 15px 18px 120px;
  background-color: #fcf4e8;
  border-radius: 5px;
  color: #182d39;
  font-size: 2.1rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  /*&::before {
      content: counter(num, decimal-leading-zero);
      counter-increment: num;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 0;
      left: 0;
      width: 61px;
      height: 100%;
      background-color: #f8a113;
      color: #fff;
      font-size: 2.8rem;
      font-family: $f-roboto;
      font-weight: 500;
      letter-spacing: .05em;
      @include mq(sp) {
          width: 38px;
          font-size: 2rem;
      }
  }
  > span {
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 0;
      right: 17px;
      bottom: 0;
      width: 104px;
      height: 30px;
      margin: auto 0;
      background-color: #f6c414;
      border-radius: 50px;
      color: #fff;
      font-size: 1.5rem;
      font-family: $f-noto;
      font-weight: 500;
      letter-spacing: .05em;
      @include mq(sp) {
          right: 8px;
          width: 76px;
          height: 22px;
          font-size: 1.2rem;
          letter-spacing: 0;
      }
  }*/
}
@media screen and (max-width: 599px) {
  .lp-information__contents__content__list__item > dt {
    display: flex;
    align-items: center;
    min-height: 45px;
    padding: 10px 10px 8px 85px;
    font-size: 1.6rem;
    line-height: 1.3;
  }
}
.lp-information__contents__content__list__item > dt > span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: auto;
  margin: auto 0;
  background-color: #f8a113;
  color: #fff;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .lp-information__contents__content__list__item > dt > span {
    width: 72px;
    font-size: 1.2rem;
    letter-spacing: 0;
  }
}
.lp-information__contents__content__list__item > dd {
  color: #182d39;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .lp-information__contents__content__list__item > dd {
    font-size: 1.4rem;
  }
}
.lp-information__contents__content__text-box {
  padding: 15px 10px;
  border: 2px solid #f8a113;
  border-radius: 5px;
  color: #f8a113;
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .lp-information__contents__content__text-box {
    display: none;
  }
}
.lp-information__contents__image {
  overflow: hidden;
  max-width: 700px;
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 1024px) {
  .lp-information__contents__image {
    margin: 0 auto;
    border-radius: 10px;
  }
}
@media screen and (max-width: 599px) {
  .lp-information__contents__image {
    border-radius: 5px;
  }
}
.lp-information__thought__inner {
  max-width: 1200px;
}
.lp-information__thought__title {
  position: relative;
  margin-bottom: 30px;
  padding-left: 50px;
  color: #182d39;
  font-size: 3.6rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .lp-information__thought__title {
    padding-left: 40px;
    font-size: 2.2rem;
  }
}
.lp-information__thought__title::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 28px;
  margin: auto 0;
  background-image: url(../img/lp/icon_thought.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 599px) {
  .lp-information__thought__title::before {
    width: 28px;
    height: 24px;
  }
}
.lp-information__thought__title > span {
  margin-left: 20px;
  color: #f8a113;
  font-size: 2rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  vertical-align: middle;
  line-height: 0.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .lp-information__thought__title > span {
    margin-left: 10px;
    font-size: 1.4rem;
  }
}
.lp-information__thought__list__caption {
  position: relative;
  max-width: 162px;
  width: 100%;
  margin: -20px auto 20px;
  background-color: #f57510;
  border-radius: 50px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .lp-information__thought__list__caption {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .lp-information__thought__list__caption {
    max-width: 122px;
    padding: 3px;
    font-size: 1.5rem;
  }
}
.lp-information__thought__list__body {
  padding: 0 5%;
}
@media screen and (max-width: 599px) {
  .lp-information__thought__list__body {
    padding: 0;
  }
}
.lp-information__thought__list__title {
  margin-bottom: 15px;
  color: #182d39;
  font-size: 2.2rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  text-align: justify;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1024px) {
  .lp-information__thought__list__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .lp-information__thought__list__title {
    margin-bottom: 12px;
    font-size: 1.6rem;
  }
}
.lp-information__thought__list__text {
  color: #182d39;
  font-size: 1.6rem;
  text-align: justify;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .lp-information__thought__list__text {
    font-size: 1.4rem;
  }
}
.lp-information__thought .swiper-area {
  position: relative;
}
@media screen and (max-width: 599px) {
  .lp-information__thought .swiper-area {
    padding-bottom: 40px;
  }
}
.lp-information__thought .swiper-area .swiper {
  z-index: 11;
}
.lp-information__thought .swiper-area .swiper-pagination {
  position: absolute;
  top: -70px;
  text-align: right;
}
@media screen and (max-width: 599px) {
  .lp-information__thought .swiper-area .swiper-pagination {
    top: auto;
    bottom: 0;
    text-align: center;
  }
}
.lp-information__thought .swiper-area .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #f6e1c0;
  opacity: 1;
}
.lp-information__thought .swiper-area .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #f8a113;
}

.lp-voice {
  position: relative;
  padding: 100px 50px 140px;
}
@media screen and (max-width: 1024px) {
  .lp-voice {
    padding: 80px 40px 100px;
  }
}
@media screen and (max-width: 599px) {
  .lp-voice {
    padding: 80px 30px 100px;
  }
}
@media screen and (max-width: 599px) {
  .lp-voice {
    padding: 50px 20px;
  }
}
.lp-voice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background-color: #f3f9f9;
  z-index: -1;
}
.lp-voice__inner {
  max-width: 1600px;
  margin: 0 auto;
}
.lp-voice__head {
  margin-bottom: 50px;
  padding-right: 180px;
}
@media screen and (max-width: 1024px) {
  .lp-voice__head {
    padding-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .lp-voice__head {
    margin-bottom: 30px;
  }
}
.lp-voice__head__catch {
  position: relative;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #182d39;
  font-size: 2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 599px) {
  .lp-voice__head__catch {
    padding-left: 15px;
    font-size: 1.8rem;
  }
}
.lp-voice__head__catch::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #f57510;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .lp-voice__head__catch::before {
    width: 8px;
    height: 8px;
  }
}
.lp-voice__head__container {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .lp-voice__head__container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.lp-voice__head__title {
  margin-right: 30px;
  color: #f57510;
  font-size: 9rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 300;
  line-height: 0.75;
}
@media screen and (max-width: 1024px) {
  .lp-voice__head__title {
    font-size: 8.8vw;
  }
}
@media screen and (max-width: 834px) {
  .lp-voice__head__title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .lp-voice__head__title {
    margin-right: 0;
    font-size: 4.2rem;
  }
}
.lp-voice__head__text {
  color: #182d39;
  font-size: 1.6rem;
  line-height: 1.9;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .lp-voice__head__text {
    font-size: 1.4rem;
  }
}
.lp-voice__box {
  overflow: hidden;
  position: relative;
  padding: 60px 40px 35px 55px;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .lp-voice__box {
    padding: 60px 30px 50px;
  }
}
@media screen and (max-width: 599px) {
  .lp-voice__box {
    padding: 40px 20px 30px;
  }
}
.lp-voice__box.box01 {
  background: url(../img/lp/voice_logo.png) no-repeat top right, linear-gradient(180deg, #f6b914, #f5c951);
}
.lp-voice__box.box02 {
  background: url(../img/lp/voice_logo.png) no-repeat top right, linear-gradient(180deg, #f8a113, #faba51);
}
.lp-voice__box__title {
  position: absolute;
  top: 0;
  left: 0;
  width: 117px;
  height: 34px;
  border-radius: 0 0 10px 0;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  text-align: center;
  line-height: 34px;
}
@media screen and (max-width: 599px) {
  .lp-voice__box__title {
    width: 100px;
    height: 28px;
    font-size: 1.5rem;
    line-height: 28px;
  }
}
.box01 .lp-voice__box__title {
  background-color: #ce9600;
}
.box02 .lp-voice__box__title {
  background-color: #dc8500;
}
.lp-voice__box__container {
  display: flex;
  align-items: center;
  gap: 0 5%;
}
@media screen and (max-width: 599px) {
  .lp-voice__box__container {
    display: block;
  }
}
.lp-voice__box__image {
  width: 16.7%;
}
@media screen and (max-width: 1024px) {
  .lp-voice__box__image {
    display: none;
  }
}
.lp-voice__box__content {
  flex: 1;
}
.lp-voice__box__catch {
  margin-bottom: 20px;
  color: #fff;
  font-size: 2.8rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 1.3;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 599px) {
  .lp-voice__box__catch {
    margin-bottom: 15px;
    font-size: 2.1rem;
  }
}
.lp-voice__box__text {
  margin-bottom: 20px;
  color: #fff;
  font-size: 1.6rem;
  text-align: justify;
  line-height: 1.85;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 599px) {
  .lp-voice__box__text {
    margin-bottom: 15px;
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.lp-voice__box__detail {
  color: #fff;
  font-size: 1.6rem;
  text-align: justify;
  text-align: right;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .lp-voice__box__detail {
    font-size: 1.4rem;
  }
}
.lp-voice__box__detail > span {
  font-size: 2.6rem;
  margin-left: 15px;
}
@media screen and (max-width: 599px) {
  .lp-voice__box__detail > span {
    font-size: 2rem;
  }
}
.lp-voice .swiper-area {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .lp-voice .swiper-area {
    padding-top: 45px;
  }
}
@media screen and (max-width: 599px) {
  .lp-voice .swiper-area {
    padding-top: 30px;
  }
}
.lp-voice .swiper-area .swiper-button-prev,
.lp-voice .swiper-area .swiper-button-next {
  top: -100px;
  width: 70px;
  height: 70px;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .lp-voice .swiper-area .swiper-button-prev,
  .lp-voice .swiper-area .swiper-button-next {
    top: 0;
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 599px) {
  .lp-voice .swiper-area .swiper-button-prev,
  .lp-voice .swiper-area .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width: 1025px) {
  .lp-voice .swiper-area .swiper-button-prev:hover,
  .lp-voice .swiper-area .swiper-button-next:hover {
    opacity: 0.8;
  }
}
.lp-voice .swiper-area .swiper-button-prev {
  right: 90px;
  left: auto;
}
@media screen and (max-width: 1024px) {
  .lp-voice .swiper-area .swiper-button-prev {
    right: 60px;
  }
}
@media screen and (max-width: 599px) {
  .lp-voice .swiper-area .swiper-button-prev {
    right: 50px;
  }
}
.lp-voice .swiper-area .swiper-button-next {
  right: 0;
  transform: scale(-1);
}

.lp-entry {
  display: flex;
  align-items: center;
  padding: 90px 5% 50px;
  background: url(../img/lp/entry_logo.png) no-repeat top left, linear-gradient(90deg, #251d10, #392e1b);
}
@media screen and (max-width: 1400px) {
  .lp-entry {
    background-size: 28%, auto;
  }
}
@media screen and (max-width: 1024px) {
  .lp-entry {
    flex-direction: column;
    padding: 90px 40px 50px;
    background-size: 32%, auto;
  }
}
@media screen and (max-width: 834px) {
  .lp-entry {
    padding: 90px 30px 50px;
  }
}
@media screen and (max-width: 599px) {
  .lp-entry {
    padding: 60px 20px 40px;
    background-size: 200px, auto;
  }
}
.lp-entry__title {
  width: 25%;
  color: #fff;
  font-size: 9rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 300;
  line-height: 0.75;
}
@media screen and (max-width: 1400px) {
  .lp-entry__title {
    font-size: 6.4vw;
  }
}
@media screen and (max-width: 1024px) {
  .lp-entry__title {
    width: auto;
    margin-bottom: 40px;
    font-size: 8.8vw;
  }
}
@media screen and (max-width: 599px) {
  .lp-entry__title {
    margin-bottom: 20px;
    font-size: 4rem;
  }
}
.lp-entry__container {
  flex: 1;
  display: flex;
  gap: 0 20px;
}
@media screen and (max-width: 599px) {
  .lp-entry__container {
    gap: 0 10px;
  }
}
.lp-entry__item {
  flex: 1;
}
.lp-entry__item__link {
  overflow: hidden;
  display: block;
  position: relative;
  border-radius: 10px;
  color: #fff;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .lp-entry__item__link {
    border-radius: 5px;
  }
}
@media screen and (min-width: 1025px) {
  .lp-entry__item__link:hover {
    opacity: 0.8;
  }
}
.lp-entry__item__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  text-align: center;
}
.lp-entry__item__text01 {
  margin-bottom: 5px;
  font-size: 4.6rem;
}
@media screen and (max-width: 834px) {
  .lp-entry__item__text01 {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 599px) {
  .lp-entry__item__text01 {
    margin-bottom: 1px;
    font-size: 2.2rem;
  }
}
.lp-entry__item__text02 {
  position: relative;
  padding-right: 28px;
  font-size: 2.4rem;
}
@media screen and (max-width: 834px) {
  .lp-entry__item__text02 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .lp-entry__item__text02 {
    padding-right: 17px;
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
.lp-entry__item__text02::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 0;
  width: 17px;
  height: 17px;
  background-image: url(../img/lp/icon_external.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 834px) {
  .lp-entry__item__text02::after {
    top: 5px;
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 599px) {
  .lp-entry__item__text02::after {
    top: 2px;
    width: 12px;
    height: 12px;
  }
}
.lp-entry__note {
  margin-top: 10px;
  color: #fff;
  font-size: 1.6rem;
  text-align: right;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .lp-entry__note {
    font-size: 1.2rem;
  }
}

.lp-support {
  padding: 120px 50px 130px;
}
@media screen and (max-width: 1024px) {
  .lp-support {
    padding: 90px 40px 100px;
  }
}
@media screen and (max-width: 834px) {
  .lp-support {
    padding: 90px 30px 100px;
  }
}
@media screen and (max-width: 599px) {
  .lp-support {
    padding: 50px 20px 60px;
  }
}
.lp-support__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.lp-support__head {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .lp-support__head {
    margin-bottom: 30px;
  }
}
.lp-support__head__catch {
  margin-bottom: 25px;
  color: #182d39;
  font-size: 2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 599px) {
  .lp-support__head__catch {
    margin-bottom: 15px;
    font-size: 1.6rem;
  }
}
.lp-support__head__title {
  margin-bottom: 25px;
  color: #f57510;
  font-size: 9rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 300;
  line-height: 0.75;
}
@media screen and (max-width: 1024px) {
  .lp-support__head__title {
    font-size: 8.8vw;
  }
}
@media screen and (max-width: 599px) {
  .lp-support__head__title {
    font-size: 4.2rem;
  }
}
.lp-support__head__text {
  color: #182d39;
  letter-spacing: 0.05em;
}
.lp-support__head__text > span {
  background: linear-gradient(transparent 60%, #fcf3d2 60%);
}
.lp-support__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
  justify-content: center;
}
@media screen and (max-width: 834px) {
  .lp-support__list {
    padding: 0px 30px;
  }
}
@media screen and (max-width: 599px) {
  .lp-support__list {
    margin-bottom: 30px;
    padding: 0;
    gap: 5px;
  }
}
.lp-support__list__item {
  width: calc((99.9% - 30px) / 4);
  padding: 50px 20px 35px;
  background-color: #fbf6e7;
  min-height: 290px;
}
@media screen and (max-width: 1024px) {
  .lp-support__list__item {
    padding: 35px 20px 30px;
  }
}
@media screen and (max-width: 834px) {
  .lp-support__list__item {
    min-height: auto;
    width: calc((99.9% - 10px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .lp-support__list__item {
    width: calc((99.9% - 5px) / 2);
    padding: 18px 10px 18px;
  }
}
.lp-support__list__item:nth-child(1), .lp-support__list__item:nth-child(3), .lp-support__list__item:nth-child(6), .lp-support__list__item:nth-child(8), .lp-support__list__item:nth-child(9), .lp-support__list__item:nth-child(11) {
  background-color: #fcf4e8;
}
@media screen and (max-width: 834px) {
  .lp-support__list__item:nth-child(6), .lp-support__list__item:nth-child(8) {
    background-color: #fbf6e7;
  }
  .lp-support__list__item:nth-child(5), .lp-support__list__item:nth-child(7) {
    background-color: #fcf4e8;
  }
}
@media screen and (max-width: 599px) {
  .lp-support__list__item:nth-child(3), .lp-support__list__item:nth-child(7) {
    background-color: #fbf6e7;
  }
  .lp-support__list__item:nth-child(4), .lp-support__list__item:nth-child(8) {
    background-color: #fcf4e8;
  }
}
.lp-support__list__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  margin: 0 auto 18px;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .lp-support__list__icon {
    width: 140px;
    height: 140px;
  }
}
@media screen and (max-width: 599px) {
  .lp-support__list__icon {
    width: 90px;
    height: 90px;
    margin-bottom: 10px;
  }
}
.item01 .lp-support__list__icon > img {
  max-width: 75px;
}
@media screen and (max-width: 599px) {
  .item01 .lp-support__list__icon > img {
    max-width: 52.5px;
  }
}
.item02 .lp-support__list__icon > img {
  max-width: 67px;
}
@media screen and (max-width: 599px) {
  .item02 .lp-support__list__icon > img {
    max-width: 46.9px;
  }
}
.item03 .lp-support__list__icon > img {
  max-width: 80px;
}
@media screen and (max-width: 599px) {
  .item03 .lp-support__list__icon > img {
    max-width: 56px;
  }
}
.item04 .lp-support__list__icon > img {
  max-width: 82px;
}
@media screen and (max-width: 599px) {
  .item04 .lp-support__list__icon > img {
    max-width: 57.4px;
  }
}
.item05 .lp-support__list__icon > img {
  max-width: 53px;
}
@media screen and (max-width: 599px) {
  .item05 .lp-support__list__icon > img {
    max-width: 37.1px;
  }
}
.item06 .lp-support__list__icon > img {
  max-width: 70px;
}
@media screen and (max-width: 599px) {
  .item06 .lp-support__list__icon > img {
    max-width: 49px;
  }
}
.item07 .lp-support__list__icon > img {
  max-width: 70px;
}
@media screen and (max-width: 599px) {
  .item07 .lp-support__list__icon > img {
    max-width: 49px;
  }
}
.item08 .lp-support__list__icon > img {
  max-width: 78px;
}
@media screen and (max-width: 599px) {
  .item08 .lp-support__list__icon > img {
    max-width: 54.6px;
  }
}
.item09 .lp-support__list__icon > img {
  max-width: 82px;
}
@media screen and (max-width: 599px) {
  .item09 .lp-support__list__icon > img {
    max-width: 57.4px;
  }
}
.item10 .lp-support__list__icon > img {
  max-width: 70px;
}
@media screen and (max-width: 599px) {
  .item10 .lp-support__list__icon > img {
    max-width: 49px;
  }
}
.item11 .lp-support__list__icon > img {
  max-width: 82px;
}
@media screen and (max-width: 599px) {
  .item11 .lp-support__list__icon > img {
    max-width: 57.4px;
  }
}
.lp-support__list__text {
  color: #182d39;
  font-size: 2.3rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .lp-support__list__text {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 599px) {
  .lp-support__list__text {
    font-size: 1.7rem;
    letter-spacing: 0;
  }
}
.lp-support__buttons {
  display: flex;
  justify-content: center;
  gap: 0 30px;
}
@media screen and (max-width: 599px) {
  .lp-support__buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px 0;
  }
}
.lp-support__buttons__item {
  max-width: 290px;
  width: 100%;
}
.lp-support__buttons__btn {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 18px 40px;
  background-color: #0080cb;
  border-radius: 50px;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .lp-support__buttons__btn {
    padding: 15px 30px;
    font-size: 1.6rem;
  }
}
.lp-support__buttons__btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  width: 36px;
  height: 36px;
  margin: auto 0;
  background-color: #66b3e0;
  background-image: url(../img/lp/icon_external.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 17px auto;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .lp-support__buttons__btn::before {
    right: 10px;
    width: 32px;
    height: 32px;
    background-size: 15px auto;
  }
}
.lp-support__buttons__btn.career {
  background-color: #01be5a;
}
.lp-support__buttons__btn.career::before {
  background-color: #67d89c;
}
@media screen and (min-width: 1025px) {
  .lp-support__buttons__btn:hover {
    opacity: 0.8;
  }
}

.lp-application {
  position: relative;
  padding: 240px 50px 130px;
  background: linear-gradient(0, #f57510 0%, #f6ab6f 17%, #f57510 47%, #f78226 100%);
}
@media screen and (max-width: 1024px) {
  .lp-application {
    padding: 200px 40px 100px;
  }
}
@media screen and (max-width: 599px) {
  .lp-application {
    padding: 120px 20px 60px;
  }
}
.lp-application::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 422px;
  background-image: url(../img/lp/application_ph.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .lp-application::before {
    height: 322px;
  }
}
@media screen and (max-width: 599px) {
  .lp-application::before {
    height: 182px;
  }
}
.lp-application__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.lp-application__box {
  padding: 0 9% 100px;
  background-color: #fff;
  border-radius: 50px;
}
@media screen and (max-width: 1024px) {
  .lp-application__box {
    padding: 0 6% 80px;
    border-radius: 40px;
  }
}
@media screen and (max-width: 834px) {
  .lp-application__box {
    border-radius: 30px;
  }
}
@media screen and (max-width: 599px) {
  .lp-application__box {
    padding: 0 20px 50px;
    border-radius: 10px;
  }
}
.lp-application__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 38px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .lp-application__title {
    margin-bottom: 25px;
  }
}
.lp-application__title__en {
  margin-top: -35px;
  margin-bottom: 25px;
  color: #f57510;
  font-size: 9rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 300;
  line-height: 0.75;
}
@media screen and (max-width: 1024px) {
  .lp-application__title__en {
    font-size: 8.8vw;
  }
}
@media screen and (max-width: 599px) {
  .lp-application__title__en {
    margin-top: -17px;
    margin-bottom: 15px;
    font-size: 4.2rem;
  }
}
.lp-application__title__jp {
  color: #182d39;
  font-size: 2.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .lp-application__title__jp {
    font-size: 2rem;
  }
}
.lp-application__table {
  margin-bottom: 50px;
}
.lp-application__table tr:nth-child(odd) th {
  background-color: #f7f7f7;
}
.lp-application__table tr:nth-child(odd) td {
  background-color: #f7f7f7;
}
.lp-application__table th,
.lp-application__table td {
  padding: 25px;
  color: #182d39;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .lp-application__table th,
  .lp-application__table td {
    display: block;
    padding: 15px 20px;
  }
}
.lp-application__table th {
  position: relative;
  width: 220px;
  padding-left: 30px;
  font-size: 1.7rem;
  text-align: left;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .lp-application__table th {
    width: 100%;
    padding-bottom: 5px;
  }
}
.lp-application__table th::before, .lp-application__table th::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  margin: auto 0;
}
@media screen and (max-width: 599px) {
  .lp-application__table th::before, .lp-application__table th::after {
    top: 25px;
    bottom: auto;
    height: 3px;
  }
}
.lp-application__table th::before {
  width: 20px;
  background-color: #f4d9b0;
}
@media screen and (max-width: 599px) {
  .lp-application__table th::before {
    width: 16px;
  }
}
.lp-application__table th::after {
  width: 10px;
  background-color: #f8a113;
}
@media screen and (max-width: 599px) {
  .lp-application__table th::after {
    width: 8px;
  }
}
.lp-application__table td {
  position: relative;
}
@media screen and (max-width: 599px) {
  .lp-application__table td {
    padding-top: 0;
  }
}
.lp-application__table td::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 70%;
  margin: auto 0;
  background-color: #e0e0e0;
}
@media screen and (max-width: 599px) {
  .lp-application__table td::before {
    display: none;
  }
}
.lp-application__table td .disc {
  position: relative;
  padding-left: 18px;
  color: #182d39;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.lp-application__table td .disc::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #f8a113;
  border-radius: 50%;
}
.lp-application__table td .box {
  padding: 18px 25px;
  background-color: #fff;
  color: #182d39;
}
@media screen and (max-width: 599px) {
  .lp-application__table td .box {
    padding: 10px;
  }
}
.lp-application__image {
  text-align: center;
}

.lp-float {
  position: fixed;
  right: 0;
  bottom: 123px;
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  .lp-float {
    bottom: 0;
    width: 100%;
    height: 62px;
  }
}
.lp-float__list {
  width: 250px;
}
@media screen and (max-width: 1024px) {
  .lp-float__list {
    display: flex;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .lp-float__list__item {
    flex: 1;
  }
}
.lp-float__list__item:not(:last-child) {
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .lp-float__list__item:not(:last-child) {
    margin-bottom: 0;
  }
}
.lp-float__list__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 68px;
  padding-left: 75px;
  background-repeat: no-repeat;
  background-position: center left 20px;
  background-size: 42px auto;
  border-radius: 34px 0 0 34px;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
  .lp-float__list__link {
    height: 100%;
    padding-left: 0;
    background-position: center left 8px;
    background-size: 32px auto;
    border-radius: 0;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .lp-float__list__link {
    padding-left: 10px;
    font-size: 1.6rem;
  }
}
.lp-float__list__link.entry {
  background-color: #f57510;
  background-image: url(../img/lp/icon_entry.svg);
}
.lp-float__list__link.event {
  background-color: #f8a113;
  background-image: url(../img/lp/icon_calendar.svg);
}
.lp-float__list__link.line {
  background-color: #06c755;
  background-image: url(../img/lp/icon_line.png);
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .lp-float__list__link.line {
    background-position: center left 5px;
    background-size: 35px auto;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .lp-float__list__link.line {
    padding-left: 41px;
    font-size: 1.6rem;
  }
}
.lp-float__list__link.line .yellow {
  color: #fffc00;
  font-size: 1.8rem;
}
.lp-float__list__link::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 10px;
  height: 10px;
  border: 5px solid transparent;
  border-right-color: #fff;
  border-bottom-color: #fff;
}
@media screen and (max-width: 599px) {
  .lp-float__list__link::after {
    right: 5px;
    bottom: 5px;
  }
}
@media screen and (min-width: 1025px) {
  .lp-float__list__link:hover {
    opacity: 0.8;
  }
}/*# sourceMappingURL=style.css.map */