@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@100;200;300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Overpass:wght@100;200;300;400;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost: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;
  }
}
/* 1600以上 */
@media screen and (max-width: 1600px) {
  .only1600 {
    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;
  }
}
/* 1100以上 */
@media screen and (max-width: 1100px) {
  .only1100 {
    display: none !important;
  }
}
/* タブレット・PC */
@media screen and (max-width: 599px) {
  .tbpc {
    display: none !important;
  }
}
/* タブレット02・PC */
@media screen and (max-width: 834px) {
  .tb02pc {
    display: none !important;
  }
}
/* タブレット・SP */
@media screen and (min-width: 1025px) {
  .tbsp {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (max-width: 599px), (min-width: 1025px) {
  .tb {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (min-width: 835px) {
  .tb02sp {
    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: 1140px;
    -webkit-print-color-adjust: exact;
  }
  /*　------- ↓その他参考例　---------
  .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%;
  scroll-behavior: smooth;
}

/*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;
}

/*キーボード操作フォーカス*/
a:focus-visible,
audio:focus-visible,
button:focus-visible,
details:focus-visible,
embed:focus-visible,
iframe:focus-visible,
img:focus-visible,
input:focus-visible,
label:focus-visible,
object:focus-visible,
select:focus-visible,
textarea:focus-visible,
video:focus-visible {
  outline: 1px solid #000 !important;
}

/*テーブル指定*/
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: #a38941;
  /* Change as appropriate */
  color: #fff;
  /* 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;
  }
}
/*--------------------------------------------------------
	body設定
----------------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #222;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ececee;
  line-height: 1.7;
  font-size: 1.6rem;
  overflow-x: hidden;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.03em;
  word-break: keep-all;
  overflow-wrap: break-word;
  /*任意でフォントサイズを指定*/
}
@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 {
    font-size: 1.4rem;
  }
}

/*クリアフィックス*/
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

/*Visually Hidden*/
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.noscroll {
  overflow: 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;
}

.tel {
  color: inherit;
}

/*マージン*/
.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;
  }
}

.mb90 {
  margin-bottom: 90px !important;
}
@media screen and (max-width: 1024px) {
  .mb90 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb90 {
    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;
  }
}

.header-wrapper {
  position: relative;
  width: 100%;
  height: 115px;
  padding-top: 20px;
  z-index: 7;
}
@media screen and (max-width: 1024px) {
  .header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    padding-top: 10px;
    z-index: 99;
    transition: 0.3s;
  }
}
@media screen and (max-width: 599px) {
  .header-wrapper {
    height: 60px;
    padding-top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .header-wrapper.fixed {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
  }
  .header-wrapper.fixed ~ .hamburger-menu .menu-btn__bar {
    background-color: #26272c;
  }
  .header-wrapper.fixed ~ .hamburger-menu .menu-btn__bar::before, .header-wrapper.fixed ~ .hamburger-menu .menu-btn__bar::after {
    background-color: #26272c;
  }
  .header-wrapper.fixed ~ .fixed-cv {
    top: 54px;
    opacity: 1;
  }
}
@media screen and (max-width: 599px) {
  .header-wrapper.fixed {
    height: 54px;
    background-color: rgba(255, 255, 255, 0.95);
  }
}
.header-wrapper__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin: 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 1024px) {
  .header-wrapper__inner {
    margin: 0 30px;
  }
}
@media screen and (max-width: 599px) {
  .header-wrapper__inner {
    margin: 0 15px;
  }
}
.fixed .header-wrapper__inner {
  border-bottom: none;
}
.header-wrapper__logo {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .header-wrapper__logo {
    margin-top: 8px;
  }
}
.header-wrapper__logo__link {
  display: block;
  width: 160px;
}
@media screen and (max-width: 1024px) {
  .header-wrapper__logo__link {
    width: 130px;
  }
}
@media screen and (max-width: 599px) {
  .header-wrapper__logo__link {
    width: 110px;
  }
}
.header-wrapper__logo__link img {
  width: 100%;
}
.header-wrapper__logo__link:hover {
  opacity: 0.85;
}
.header-wrapper__logo__lead {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  color: #fff;
  font-size: 1.5rem;
  margin-left: 25px;
  margin-top: 5px;
}
@media screen and (max-width: 1024px) {
  .header-wrapper__logo__lead {
    margin-top: 0;
    font-size: 1.3rem;
    margin-left: 15px;
  }
}
.header-wrapper__logo__lead span {
  font-size: 1.6rem;
  margin-left: 8px;
}
@media screen and (max-width: 599px) {
  .header-wrapper__logo__lead span {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .header-wrapper__logo__lead {
    display: none;
  }
}
.header-wrapper__right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-wrapper__lang {
  display: flex;
  margin-right: 30px;
}
@media screen and (max-width: 1024px) {
  .header-wrapper__lang {
    margin-right: 80px;
  }
}
@media screen and (max-width: 599px) {
  .header-wrapper__lang {
    margin-right: 64px;
  }
}
.header-wrapper__lang__item:first-child {
  position: relative;
  margin-right: 20px;
}
@media screen and (max-width: 599px) {
  .header-wrapper__lang__item:first-child {
    margin-right: 16px;
  }
}
.header-wrapper__lang__item:first-child::after {
  content: "/";
  position: absolute;
  top: 0;
  right: -12px;
  color: #fff;
  font-size: 1.7rem;
  opacity: 0.2;
}
.header-wrapper__lang__link {
  display: block;
  color: #fff;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif !important;
  opacity: 0.4;
}
@media screen and (max-width: 599px) {
  .header-wrapper__lang__link {
    font-size: 1.5rem;
  }
}
.header-wrapper__lang__link.active {
  opacity: 1;
}
.header-wrapper__btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 260px;
  width: 100%;
  height: 46px;
  border: 2px solid #fff;
  border-radius: 30px;
  color: #fff;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  /*準備中
  &::before {
      content: '準備中';
      left: 0;
      right: 0;
      background-color: #fff;
      color: #7b93c4;
      margin: auto;
      width: 68px;
      border-radius: 50px;
      position: absolute;
      top: -12px;
      text-align: center;
      font-size: 1.3rem;
      font-weight: 400;
      line-height: 1.5;
  }*/
}
@media screen and (max-width: 1024px) {
  .header-wrapper__btn {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .header-wrapper__btn:hover {
    background-color: #fff;
    color: #222;
  }
}

#fixed-header {
  position: fixed;
  top: -85px;
  transition: 0.5s;
  z-index: 100;
}
@media screen and (max-width: 599px) {
  #fixed-header {
    top: -50px;
  }
}
#fixed-header.is-show {
  top: 0;
}

.global-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 2vw;
  width: 100%;
  height: 85px;
  padding: 0 20px;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 1024px) {
  .global-nav {
    display: none;
  }
}
.global-nav__logo {
  width: 159px;
}
@media screen and (max-width: 1200px) {
  .global-nav__logo {
    width: 13vw;
  }
}
.global-nav__menu {
  display: flex;
  justify-content: space-between;
  gap: 0 2vw;
  margin: 0 0.5vw;
}
@media screen and (max-width: 1400px) {
  .global-nav__menu {
    gap: 0 1vw;
  }
}
.global-nav__menu__item {
  display: flex;
  align-items: center;
  text-align: center;
  line-height: 1.2;
}
.global-nav__menu__link {
  color: #222;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .global-nav__menu__link {
    font-size: 1.2vw;
  }
}
@media screen and (min-width: 1025px) {
  .global-nav__menu__link:hover {
    color: #ed6c00;
  }
}
.global-nav__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 350px;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .global-nav__right {
    max-width: none;
    width: auto;
  }
}
.global-nav__lang {
  display: flex;
  margin-right: 20px;
}
@media screen and (max-width: 1400px) {
  .global-nav__lang {
    margin-right: 10px;
  }
}
.global-nav__lang__item:first-child {
  position: relative;
  margin-right: 20px;
}
.global-nav__lang__item:first-child::after {
  content: "/";
  position: absolute;
  top: 0;
  right: -12px;
  color: #222;
  font-size: 1.7rem;
}
.global-nav__lang__link {
  display: block;
  color: #222;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif !important;
}
@media screen and (max-width: 1400px) {
  .global-nav__lang__link {
    font-size: 1.5rem;
  }
}
.global-nav__lang__link.active {
  color: #978066;
}
.global-nav__btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 260px;
  width: 100%;
  height: 46px;
  border: 2px solid #343331;
  border-radius: 30px;
  color: #343331;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
}
@media screen and (max-width: 1400px) {
  .global-nav__btn {
    font-size: 1.1vw;
    width: 18.5vw;
  }
}
.global-nav__btn:hover {
  background-color: #343331;
  color: #fff;
}

.menu-btn {
  display: flex;
  justify-content: center;
  align-self: center;
  position: fixed;
  top: 40px;
  right: 30px;
  width: 40px;
  height: 16px;
  background: none;
  border: none;
  transition: 0.5s;
  cursor: pointer;
  appearance: none;
  pointer-events: auto;
  z-index: 60;
}
@media screen and (min-width: 1025px) {
  .menu-btn {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .menu-btn {
    top: 35px;
  }
}
@media screen and (max-width: 599px) {
  .menu-btn {
    top: 20px;
    right: 20px;
  }
}
.menu-btn__bar {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  margin: auto;
  background-color: #fff;
  position: absolute;
  transition: all 0.3s ease;
}
.menu-btn__bar::before, .menu-btn__bar::after {
  content: "";
  height: 100%;
  background-color: #fff;
  position: absolute;
  transition: all 0.3s ease;
  left: 0;
  right: 0;
}
.menu-btn__bar::before {
  top: -7px;
}
@media screen and (max-width: 834px) {
  .menu-btn__bar::before {
    top: -9px;
  }
}
@media screen and (max-width: 599px) {
  .menu-btn__bar::before {
    top: -7px;
  }
}
.menu-btn__bar::after {
  bottom: -7px;
}
@media screen and (max-width: 834px) {
  .menu-btn__bar::after {
    bottom: -9px;
  }
}
@media screen and (max-width: 599px) {
  .menu-btn__bar::after {
    bottom: -7px;
  }
}
@media screen and (min-width: 1025px) {
  .menu-btn:hover .menu-btn__bar::after {
    width: 100%;
  }
}
.menu-btn.active .menu-btn__bar {
  background-color: transparent;
}
.menu-btn.active .menu-btn__bar::before {
  top: 0;
  background-color: #fff !important;
  transform: rotate(-20deg);
}
.menu-btn.active .menu-btn__bar::after {
  bottom: 0;
  width: 100%;
  background-color: #fff !important;
  transform: rotate(20deg);
}

.hamburger-menu {
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  pointer-events: none;
  z-index: 99;
}
@media screen and (min-width: 1025px) {
  .hamburger-menu {
    display: none;
  }
}
@media screen and (max-width: 834px) {
  .hamburger-menu {
    width: 60%;
  }
}
@media screen and (max-width: 599px) {
  .hamburger-menu {
    width: 100%;
  }
}
.hamburger-menu__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
  z-index: 10;
}
.hamburger-menu__inner {
  visibility: hidden;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 90px 20px 40px;
  background-color: #333;
  opacity: 0;
  pointer-events: auto;
  transition: all 0.3s ease;
  z-index: 50;
}
@media screen and (max-width: 834px) {
  .hamburger-menu__inner {
    padding: 85px 20px 60px;
  }
}
@media screen and (max-width: 599px) {
  .hamburger-menu__inner {
    padding: 40px 20px 60px;
  }
}
.hamburger-menu__inner.active {
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.4);
  visibility: visible;
  overflow-y: hidden;
  opacity: 1;
}
@media screen and (max-width: 599px) {
  .hamburger-menu__inner.active {
    overflow-y: scroll !important;
  }
}
.hamburger-menu__nav {
  margin-bottom: 25px;
}
.hamburger-menu__nav__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.hamburger-menu__nav__link {
  display: block;
  position: relative;
  padding: 20px 10px;
  color: #fff;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif !important;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .hamburger-menu__nav__link {
    padding: 17px 10px;
  }
}
.hamburger-menu__nav__link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto 0;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.hamburger-menu__btn {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hamburger-menu__btn__item {
  width: calc((100% - 6px) / 2);
}
@media screen and (max-width: 599px) {
  .hamburger-menu__btn__item {
    width: 100%;
  }
}
.hamburger-menu__btn__link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #ed6c00;
  color: #fff;
  height: 100%;
  padding: 12px;
  line-height: 1.2;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.5rem;
}
.hamburger-menu__btn__link.no-link {
  flex-direction: column;
  line-height: 1.8;
}
@media screen and (max-width: 599px) {
  .hamburger-menu__btn__link.no-link {
    flex-direction: row;
  }
}

.fixed-cv {
  position: fixed;
  top: 54px;
  left: 0;
  width: 100%;
  height: auto;
  background-color: #ed6c00;
  transition: 0.5s;
  opacity: 0;
  z-index: 98;
}
.fixed-cv__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.fixed-cv__list__item {
  position: relative;
  width: 50%;
}
.fixed-cv__list__item:nth-child(even)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  margin: auto 0;
  background-color: #fff;
}
.fixed-cv__list__item:nth-child(1)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100vh;
  height: 1px;
  background-color: #fff;
}
.fixed-cv__list__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 5px;
  color: #fff;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}
.fixed-cv__list__link.no-link {
  position: relative;
  display: block;
  padding-top: 25px;
}
.fixed-cv__list__link.no-link::before {
  content: "Coming Soon";
  position: absolute;
  top: 6px;
  right: 0;
  left: 0;
  margin: auto;
  padding: 2px 0 3px;
  width: 96px;
  line-height: 1.2;
  background-color: rgba(255, 255, 255, 0.8);
  color: #ed6c00;
  font-size: 1rem;
  border-radius: 50px;
}

.footer {
  position: relative;
  padding: 60px 30px;
  background-color: #171c28;
}
@media screen and (max-width: 834px) {
  .footer {
    padding: 50px 30px;
  }
}
@media screen and (max-width: 599px) {
  .footer {
    padding: 50px 30px 40px;
  }
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .footer-wrap {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 1024px) {
  .footer-logo {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .footer-logo {
    margin-bottom: 20px;
  }
}

.footer-right {
  flex: 1;
}

.footer-sns {
  display: flex;
  justify-content: flex-end;
  gap: 0 9px;
}
@media screen and (max-width: 1024px) {
  .footer-sns {
    justify-content: center;
  }
}
.footer-sns__item {
  max-width: 62px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .footer-sns__item {
    max-width: 50px;
  }
}
@media screen and (max-width: 599px) {
  .footer-sns__item {
    max-width: 40px;
  }
}
.footer-sns__link {
  display: block;
  opacity: 0.7;
}
@media screen and (min-width: 1025px) {
  .footer-sns__link:hover {
    opacity: 0.5;
  }
}
.footer-sns__link > img {
  width: 100%;
}

.main {
  overflow: clip;
}

.contents {
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 40px 80px;
}
@media screen and (max-width: 1024px) {
  .contents {
    padding: 40px 30px 50px;
  }
}
@media screen and (max-width: 599px) {
  .contents {
    padding: 25px 20px 35px;
  }
}

#lp01, #lp02, #lp03, #lp04, #lp05, #lp06, #lp07 {
  scroll-margin-top: 85px;
}
@media screen and (max-width: 599px) {
  #lp01, #lp02, #lp03, #lp04, #lp05, #lp06, #lp07 {
    scroll-margin-top: 102px;
  }
}

@media screen and (max-width: 599px) {
  #lp02 {
    scroll-margin-top: -120px;
  }
}

@media screen and (max-width: 599px) {
  #lp04 {
    scroll-margin-top: 135px;
  }
}

.tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.tab-btn {
  flex: 1;
  text-align: center;
}
.tab-btn > a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 68px;
  background-color: #7d7e8c;
  color: #fff;
  font-size: 2.5rem;
  font-family: "Overpass", sans-serif;
  font-weight: 600;
  line-height: 0.75;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .tab-btn > a {
    height: 60px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .tab-btn > a {
    padding-top: 2px;
    height: 50px;
    font-size: 1.6rem;
  }
}
.tab-btn > a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto 0;
  width: 11px;
  height: 11px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .tab-btn > a::after {
    right: 20px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
.tab-btn > a.is-active {
  background-color: #171c28;
}
.tab-btn > a.is-active::after {
  transform: rotate(135deg);
}

.tab-contents-item {
  display: none;
  justify-content: center;
  width: 100%;
  padding: 70px 60px;
}
@media screen and (max-width: 1024px) {
  .tab-contents-item {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 599px) {
  .tab-contents-item {
    padding: 35px 15px 17px;
  }
}
.tab-contents-item.is-active {
  display: block;
  background-color: #fff;
}
.tab-contents-item.is-active > p {
  animation: fadeinAnime 2s forwards;
}
.tab-contents-item > p {
  margin: auto;
  height: 40px;
  opacity: 0;
}

@keyframes fadeinAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.pagetitle {
  position: relative;
  width: 100%;
  height: 420px;
  margin-top: -115px;
  overflow: hidden;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .pagetitle {
    margin-top: 0px;
    height: 320px;
  }
}
@media screen and (max-width: 834px) {
  .pagetitle {
    height: 280px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle {
    height: 180px;
  }
}
.pagetitle::before {
  background: rgba(52, 51, 49, 0.2);
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  position: absolute;
  top: 0px;
  z-index: 2;
}
.pagetitle__ttl {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 3;
  width: 100%;
  height: 100%;
  padding-top: 110px;
}
@media screen and (max-width: 1024px) {
  .pagetitle__ttl {
    padding-top: 80px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__ttl {
    padding-top: 60px;
  }
}
.pagetitle__ttl__inr {
  width: 500px;
  padding: 40px 20px 40px 40px;
  background-color: #181c28;
  color: #fff;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .pagetitle__ttl__inr {
    width: 400px;
    padding: 30px 20px 30px 30px;
  }
}
@media screen and (max-width: 834px) {
  .pagetitle__ttl__inr {
    width: 350px;
    padding: 20px 20px 20px 30px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__ttl__inr {
    width: 240px;
    padding: 10px 20px;
  }
}
.pagetitle__ttl__jp {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", serif;
  font-weight: 400;
  font-size: 3.7rem;
  margin-right: 25px;
}
@media screen and (max-width: 1024px) {
  .pagetitle__ttl__jp {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle__ttl__jp {
    font-size: 3.1rem;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__ttl__jp {
    font-size: 2.2rem;
  }
}
.pagetitle__ttl__en {
  font-family: "Jost", sans-serif !important;
  font-size: 1.8rem;
  color: #eb6c01;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 834px) {
  .pagetitle__ttl__en {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__ttl__en {
    font-size: 1.5rem;
  }
}
.pagetitle__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*--------------------------------------------------------
breadcrumb
----------------------------------------------------------*/
.breadcrumb {
  display: flex;
  padding: 12px 20px;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb__list {
  display: flex;
}
.breadcrumb__list__item {
  position: relative;
  font-size: 1.5rem;
  color: #777;
  letter-spacing: 0.06em;
}
.breadcrumb__list__item:not(:last-child) {
  padding-right: 35px;
}
.breadcrumb__list__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 15px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.breadcrumb__list__link {
  color: #333;
}
@media screen and (min-width: 1025px) {
  .breadcrumb__list__link:hover {
    text-decoration: underline;
  }
}

/*--------------------------------------------------------
top
----------------------------------------------------------*/
span.junbi {
  padding: 3px 10px 4px;
  line-height: 1.2;
  background-color: rgba(255, 255, 255, 0.8);
  color: #ed6c00;
  font-size: 1.2rem;
  margin-left: 5px;
  border-radius: 50px;
}

.no-link {
  pointer-events: none;
  color: rgba(255, 255, 255, 0.5) !important;
}
.no-link span.junbi {
  opacity: 0.7;
}

.no-link-op {
  pointer-events: none;
  opacity: 0.6 !important;
}

.top-main {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-height: 900px;
  margin-top: -115px;
}
@media screen and (max-width: 1024px) {
  .top-main {
    margin-top: -90px;
    max-height: 630px;
  }
}
@media screen and (max-width: 599px) {
  .top-main {
    height: 520px;
    margin-top: 0;
  }
}
.top-main__image {
  position: relative;
  width: 100%;
  height: 100%;
}
.top-main__image::before {
  background: rgba(52, 51, 49, 0.15);
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  position: absolute;
  top: 0px;
  z-index: 1;
}
.top-main__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation-name: fadein;
  animation-duration: 3s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  opacity: 0;
}
.top-main__mov {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  animation-name: fadein;
  animation-duration: 3s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .top-main__mov {
    aspect-ratio: 16/10;
  }
}
@media screen and (max-width: 834px) {
  .top-main__mov {
    aspect-ratio: 4/3;
  }
}
@media screen and (max-width: 599px) {
  .top-main__mov {
    aspect-ratio: 9/16;
  }
}
.top-main__mov video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.top-main__catch {
  display: flex;
  align-items: center;
  position: absolute;
  top: -70px;
  bottom: 0;
  left: 85px;
  margin: auto 0;
  z-index: 6;
}
@media screen and (max-width: 1024px) {
  .top-main__catch {
    top: 140px;
    left: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__catch {
    top: 40px;
    left: 15px;
  }
}
.top-main__catch__lead {
  color: #fff;
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif !important;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .top-main__catch__lead {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main__catch__lead {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
.top-main__catch__lead span {
  position: relative;
  margin-right: 12px;
}
@media screen and (max-width: 1024px) {
  .top-main__catch__lead span {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main__catch__lead span {
    font-size: 1.6rem;
    margin-right: 6px;
  }
}
.top-main__catch__lead span::before {
  background: #fff;
  content: "";
  height: 1px;
  width: 100%;
  left: 0;
  position: absolute;
  bottom: -1px;
}
.top-main__catch__ttl {
  font-family: "EB Garamond", serif !important;
  font-size: 8.8rem;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .top-main__catch__ttl {
    font-size: 6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main__catch__ttl {
    font-size: 4.2rem;
    letter-spacing: 0.03em;
  }
}
.top-main__catch > img {
  animation-name: fadein;
  animation-duration: 3s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.floating-bnr {
  position: fixed;
  right: 0;
  bottom: 50px;
  max-width: 200px;
  width: 100%;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .floating-bnr {
    display: none;
  }
}
.floating-bnr__list__item:not(:last-child) {
  margin-bottom: 1px;
}
.floating-bnr__list__link {
  display: block;
  position: relative;
  width: 100%;
  padding: 17px 15px;
  background-color: #ed6c00;
  color: #fff;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.floating-bnr__list__link.no-link {
  line-height: 1.6;
}
.floating-bnr__list__link.no-link > span.junbi {
  margin-left: 0;
  padding: 2px 8px 3px;
  font-size: 1.1rem;
}
.floating-bnr__list__link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  margin: auto 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (min-width: 1025px) {
  .floating-bnr__list__link:hover {
    opacity: 0.8;
  }
}

.top-intro {
  position: relative;
  padding: 120px 90px 220px;
  background-color: #26272c;
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .top-intro {
    padding: 60px 40px 160px;
  }
}
@media screen and (max-width: 834px) {
  .top-intro {
    padding: 60px 40px 140px;
  }
}
@media screen and (max-width: 599px) {
  .top-intro {
    padding: 50px 20px 120px;
  }
}
.top-intro__inner {
  display: flex;
  max-width: 1480px;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .top-intro__inner {
    flex-direction: column-reverse;
  }
}
.top-intro__image {
  max-width: 587px;
  width: 40%;
  margin-right: 8%;
}
@media screen and (max-width: 1024px) {
  .top-intro__image {
    margin-right: 5%;
  }
}
@media screen and (max-width: 834px) {
  .top-intro__image {
    width: 55%;
    margin-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__image {
    width: 65%;
  }
}
.top-intro__content {
  flex: 1;
  position: relative;
  max-width: 560px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .top-intro__content {
    max-width: none;
  }
}
@media screen and (max-width: 834px) {
  .top-intro__content {
    max-width: none;
    width: 100%;
    margin-bottom: 30px;
  }
}
.top-intro__content__tag {
  margin-bottom: 20px;
  color: #fff;
  font-size: 1.9rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-intro__content__tag {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__content__tag {
    margin-bottom: 8px;
    font-size: 1.4rem;
  }
}
.top-intro__content__tag > span {
  display: inline-block;
  padding: 3px 15px;
  background-color: #616474;
}
.top-intro__content__catch {
  margin-bottom: 28px;
  color: #e7e3df;
  font-size: 2.2rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1024px) {
  .top-intro__content__catch {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__content__catch {
    margin-bottom: 15px;
    font-size: 1.6rem;
  }
}
.top-intro__content__catch > span {
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 1024px) {
  .top-intro__content__catch > span {
    padding-bottom: 8px;
  }
}
.top-intro__content__catch02 {
  margin-bottom: 50px;
  color: #ccc3ba;
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-intro__content__catch02 {
    margin-bottom: 40px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__content__catch02 {
    margin-bottom: 30px;
    font-size: 1.7rem;
    line-height: 1.8;
  }
}
.top-intro__content__catch02 > span.head {
  display: inline-block;
  margin-bottom: 5px;
  color: #f1ede8;
  font-size: 3.8rem;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-intro__content__catch02 > span.head {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__content__catch02 > span.head {
    font-size: 2.8rem;
  }
}
.top-intro__content__catch02 > span.head > span {
  margin-left: 0.2em;
  font-size: 4.2rem;
}
@media screen and (max-width: 1024px) {
  .top-intro__content__catch02 > span.head > span {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__content__catch02 > span.head > span {
    font-size: 3.2rem;
  }
}
.top-intro__content__text {
  color: #faf7f3;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-intro__content__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__content__text {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.top-intro__content__text > span {
  color: #f3882f;
}
.top-intro__image02 {
  position: absolute;
  left: calc(50% + 300px);
  bottom: -60px;
  max-width: 421px;
  z-index: 1;
}
@media screen and (max-width: 1500px) {
  .top-intro__image02 {
    left: auto;
    right: 40px;
    width: 28vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-intro__image02 {
    right: 40px;
    bottom: -55px;
  }
}
@media screen and (max-width: 834px) {
  .top-intro__image02 {
    width: 32vw;
    left: auto;
    right: 30px;
    bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__image02 {
    left: auto;
    right: 20px;
    width: 51%;
    bottom: -55px;
  }
}
.top-intro__en-txt {
  position: absolute;
  bottom: 0;
  color: #616474;
  font-family: "EB Garamond", serif !important;
  font-size: 11.5rem;
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: 0.01em;
  opacity: 0.45;
  left: calc(50% - 745px);
}
@media screen and (max-width: 1600px) {
  .top-intro__en-txt {
    font-size: 8.8vw;
    left: 70px;
  }
}
@media screen and (max-width: 1400px) {
  .top-intro__en-txt {
    left: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .top-intro__en-txt {
    bottom: 0;
    left: 35px;
  }
}
@media screen and (max-width: 834px) {
  .top-intro__en-txt {
    bottom: 82px;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__en-txt {
    font-size: 13vw;
    left: 17px;
  }
}

.top-news {
  overflow: hidden;
  position: relative;
  padding: 120px 40px 120px;
  background-color: #ececee;
}
@media screen and (max-width: 1024px) {
  .top-news {
    padding: 95px 40px;
  }
}
@media screen and (max-width: 834px) {
  .top-news {
    padding: 70px 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-news {
    padding: 95px 20px 65px;
  }
}
.top-news__inner {
  display: flex;
  max-width: 940px;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .top-news__inner {
    flex-direction: column;
  }
}
.top-news__ttl-wrapper {
  max-width: 250px;
  width: 100%;
  margin-right: 6%;
  border-right: 1px solid #adb5c4;
}
@media screen and (max-width: 834px) {
  .top-news__ttl-wrapper {
    max-width: none;
    margin-right: 0;
    margin-bottom: 40px;
    border-right: none;
  }
}
@media screen and (max-width: 599px) {
  .top-news__ttl-wrapper {
    margin-bottom: 20px;
  }
}
.top-news__ttl-wrapper__en {
  margin-bottom: 3px;
  color: #171c25;
  font-size: 4.5rem;
  font-family: "Jost", sans-serif !important;
  font-weight: 500;
  line-height: 0.75;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .top-news__ttl-wrapper__en {
    margin-bottom: 40px;
    font-size: 4rem;
  }
}
@media screen and (max-width: 834px) {
  .top-news__ttl-wrapper__en {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-news__ttl-wrapper__en {
    font-size: 3.8rem;
  }
}
.top-news .news-list {
  flex: 1;
  /*@include mq(tb02) {
      margin-bottom: 50px;
  }*/
}
.top-news .news-list__item:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .top-news .news-list__item:not(:last-child) {
    margin-bottom: 15px;
  }
}
.top-news .news-list__link {
  display: flex;
  align-items: center;
  position: relative;
  color: #222;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 599px) {
  .top-news .news-list__link {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1025px) {
  .top-news .news-list__link:hover .news-list__title {
    transform: translateX(4px);
  }
}
.top-news .news-list__date {
  width: 110px;
  color: #4c5565;
  font-size: 1.5rem;
  font-family: "Overpass", sans-serif;
  font-weight: 500;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 599px) {
  .top-news .news-list__date {
    font-size: 1.4rem;
  }
}
.top-news .news-list__title {
  flex: 1;
  color: #222;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .top-news .news-list__title {
    font-size: 1.5rem;
  }
}
.top-news .news-list .icon-new {
  margin-left: 1em;
  color: #f75656;
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 599px) {
  .top-news .news-list .icon-new {
    font-size: 1.5rem;
  }
}

.top-workflow {
  padding: 45px 40px 100px;
  background-color: #cbccd2;
}
@media screen and (max-width: 1024px) {
  .top-workflow {
    padding: 50px 40px 45px;
  }
}
@media screen and (max-width: 599px) {
  .top-workflow {
    padding: 60px 20px 55px;
  }
}
.top-workflow__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .top-workflow__inner {
    flex-direction: column;
  }
}
.top-workflow__content {
  width: 50%;
  padding: 50px 2% 0px 3%;
}
@media screen and (max-width: 1024px) {
  .top-workflow__content {
    width: 75vw;
    padding: 0px;
    margin: 0 auto 50px;
  }
}
@media screen and (max-width: 834px) {
  .top-workflow__content {
    width: 100%;
    margin-bottom: 30px;
  }
}
.top-workflow__mov {
  flex: 1;
  position: sticky;
  top: 85px;
  height: calc(100vh - 135px);
  margin-left: 4%;
  padding-top: 50px;
}
@media screen and (max-width: 1024px) {
  .top-workflow__mov {
    position: static;
    padding-top: 0;
    margin: 0 auto;
    width: 75vw;
    height: auto;
  }
}
@media screen and (max-width: 834px) {
  .top-workflow__mov {
    width: 100%;
  }
}
.top-workflow__mov video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-workflow__head {
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .top-workflow__head {
    margin-bottom: 40px;
  }
}
.top-workflow__title {
  position: relative;
  margin-bottom: 20px;
  padding-left: 18px;
  color: #ed6c00;
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-workflow__title {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-workflow__title {
    font-size: 1.6rem;
    padding-left: 15px;
  }
}
.top-workflow__title::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 9px;
  height: 9px;
  margin: auto 0;
  background-color: #ed6c00;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .top-workflow__title::before {
    width: 8px;
    height: 8px;
    top: 2px;
  }
}
.top-workflow__catch {
  margin-bottom: 35px;
  color: #26272c;
  font-size: 3.2rem;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1300px) {
  .top-workflow__catch {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-workflow__catch {
    margin-bottom: 20px;
    letter-spacing: 0.06em;
  }
}
@media screen and (max-width: 834px) {
  .top-workflow__catch {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-workflow__catch {
    font-size: 2rem;
    margin-bottom: 25px;
    letter-spacing: 0;
    line-height: 1.6;
  }
}
.top-workflow__text {
  color: #26272c;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-workflow__text {
    line-height: 2;
  }
}
@media screen and (max-width: 599px) {
  .top-workflow__text {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.top-workflow__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .top-workflow__list {
    gap: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-workflow__list {
    gap: 7px;
  }
}
.top-workflow__list__item {
  width: calc((99.9% - 32px) / 3);
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .top-workflow__list__item {
    width: calc((99.9% - 20px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .top-workflow__list__item {
    width: calc((99.9% - 7px) / 2);
  }
}
.top-workflow__list__item.anchor {
  background-color: #26272c;
}
.top-workflow__list__first {
  height: 100%;
  padding: 40px 25px;
  background-image: url(../../../assets/img/common/arrow_thin.svg);
  background-repeat: no-repeat;
  background-position: right 30px bottom 35px;
  background-size: 47px auto;
  color: #fff;
  font-size: 1.9rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.5;
}
@media screen and (max-width: 1024px) {
  .top-workflow__list__first {
    padding: 25px 20px;
    background-position: right 20px bottom 25px;
    background-size: 38px auto;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-workflow__list__first {
    padding: 18px;
    font-size: 1.7rem;
    background-image: none;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
.top-workflow__list__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 38px 25px 20px;
}
@media screen and (max-width: 1024px) {
  .top-workflow__list__content {
    padding: 25px 20px;
  }
}
@media screen and (max-width: 834px) {
  .top-workflow__list__content {
    padding: 38px 20px 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-workflow__list__content {
    padding: 25px 20px;
  }
}
.top-workflow__list__title {
  display: inline-block;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #393b45;
  color: #393b45;
  font-size: 2rem;
  font-family: "Overpass", sans-serif;
  font-weight: 600;
  text-align: center;
  line-height: 0.75;
}
@media screen and (max-width: 1024px) {
  .top-workflow__list__title {
    margin-bottom: 5px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-workflow__list__title {
    margin-bottom: 0;
    padding-bottom: 5px;
    font-size: 1.6rem;
  }
}
.top-workflow__list__image {
  width: 80%;
  margin-bottom: 18px;
}
@media screen and (max-width: 1024px) {
  .top-workflow__list__image {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-workflow__list__image {
    margin-bottom: 0;
  }
}
.top-workflow__list__text {
  color: #393b45;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .top-workflow__list__text {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 599px) {
  .top-workflow__list__text {
    line-height: 1.3;
  }
}

.top-patent {
  position: relative;
  padding: 130px 40px;
  background-color: #3f3f47;
}
@media screen and (max-width: 1024px) {
  .top-patent {
    padding: 80px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-patent {
    padding: 60px 20px 40px;
  }
}
.top-patent__inner {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}
.top-patent__head {
  text-align: center;
}
.top-patent__en-ttl {
  margin-bottom: 20px;
  color: #ed6c00;
  font-size: 2.2rem;
  font-family: "Jost", sans-serif !important;
  font-weight: 500;
  line-height: 0.75;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .top-patent__en-ttl {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-patent__en-ttl {
    margin-bottom: 14px;
    font-size: 1.6rem;
  }
}
.top-patent__ttl {
  margin-bottom: 15px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 3rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-patent__ttl {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-patent__ttl {
    font-size: 2.1rem;
    letter-spacing: 0.03em;
  }
}
.top-patent__label {
  width: 420px;
  margin: 0 auto 66px;
  padding: 4px 0 6px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.5rem;
  color: #fff;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(237, 108, 0, 0.4) 4%, rgb(237, 108, 0) 7%, rgb(237, 108, 0) 50%, rgb(237, 108, 0) 93%, rgba(237, 108, 0, 0.4) 96%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (max-width: 1024px) {
  .top-patent__label {
    width: 360px;
    margin-bottom: 55px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-patent__label {
    margin-bottom: 45px;
    width: 100%;
    max-width: 330px;
    font-size: 1.8rem;
  }
}
.top-patent__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 40px;
  margin-bottom: 28px;
  counter-reset: listnum;
}
@media screen and (max-width: 1024px) {
  .top-patent__list {
    gap: 0 30px;
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 834px) {
  .top-patent__list {
    gap: 36px 0;
  }
}
@media screen and (max-width: 599px) {
  .top-patent__list {
    gap: 28px 0;
    margin-bottom: 18px;
  }
}
.top-patent__list__item {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: calc((100% - 40px) / 2);
  padding: 60px 42px 56px;
  font-family: "Noto Sans JP", sans-serif !important;
  color: #26272c;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .top-patent__list__item {
    width: calc((100% - 30px) / 2);
    padding: 50px 35px 40px;
  }
}
@media screen and (max-width: 834px) {
  .top-patent__list__item {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-patent__list__item {
    padding: 46px 30px 30px;
  }
}
.top-patent__list__item::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 142px;
  top: -47px;
  left: 80px;
  transform: rotate(50deg);
  background-color: #ed6c00;
}
@media screen and (max-width: 1024px) {
  .top-patent__list__item::after {
    height: 116px;
    top: -37px;
    left: 70px;
  }
}
@media screen and (max-width: 599px) {
  .top-patent__list__item::after {
    height: 102px;
    top: -25px;
    left: 55px;
  }
}
.top-patent__list__item.item01 {
  transition-delay: 0.1s;
}
.top-patent__list__item.item02 {
  transition-delay: 0.3s;
}
.top-patent__list__item__num {
  position: absolute;
  top: -47px;
  left: 15px;
  font-family: "Jost", sans-serif !important;
  font-size: 5.8rem;
  color: #ed6c00;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1024px) {
  .top-patent__list__item__num {
    font-size: 5.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-patent__list__item__num {
    top: -38px;
    left: 10px;
    font-size: 4.8rem;
  }
}
.item01 .top-patent__list__item__num {
  left: 24px;
}
@media screen and (max-width: 599px) {
  .item01 .top-patent__list__item__num {
    left: 16px;
  }
}
.top-patent__list__item__box {
  margin-bottom: 24px;
}
@media screen and (max-width: 599px) {
  .top-patent__list__item__box {
    margin-bottom: 14px;
  }
}
.top-patent__list__item__ttl {
  margin-bottom: 15px;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .top-patent__list__item__ttl {
    margin-bottom: 10px;
    font-size: 2.2rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 599px) {
  .top-patent__list__item__ttl {
    margin-bottom: 8px;
    font-size: 1.9rem;
  }
}
.top-patent__list__item__txt {
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .top-patent__list__item__txt {
    line-height: 1.7;
  }
}
.top-patent__list__item__img {
  display: flex;
  justify-content: center;
}
.top-patent__ph-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 34px;
}
@media screen and (max-width: 1024px) {
  .top-patent__ph-list {
    gap: 0 26px;
  }
}
@media screen and (max-width: 834px) {
  .top-patent__ph-list {
    gap: 26px;
  }
}
@media screen and (max-width: 599px) {
  .top-patent__ph-list {
    margin: 0 auto;
    gap: 14px;
  }
}
.top-patent__ph-list__item {
  width: calc((100% - 102px) / 4);
}
@media screen and (max-width: 1024px) {
  .top-patent__ph-list__item {
    width: calc((100% - 78px) / 4);
  }
}
@media screen and (max-width: 834px) {
  .top-patent__ph-list__item {
    width: calc((100% - 26px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .top-patent__ph-list__item {
    width: calc((100% - 14px) / 2);
  }
}

.top-reason {
  position: relative;
  padding: 130px 40px 290px;
  background-color: #ececee;
}
@media screen and (max-width: 1024px) {
  .top-reason {
    padding: 130px 30px 350px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason {
    padding: 260px 20px 400px;
  }
}
.top-reason::before {
  content: "";
  width: 100%;
  height: 850px;
  position: absolute;
  bottom: -290px;
  left: 0;
  background-image: url(../../../assets/img/top/reason_bg.webp);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
}
@media screen and (max-width: 1024px) {
  .top-reason::before {
    bottom: -180px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason::before {
    bottom: -65px;
  }
}
.top-reason__inner {
  position: relative;
  z-index: 1;
}
.top-reason__en-ttl {
  margin-bottom: 30px;
  color: #ed6c00;
  font-size: 2.2rem;
  font-family: "Jost", sans-serif !important;
  font-weight: 500;
  text-align: center;
  line-height: 0.75;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .top-reason__en-ttl {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-reason__en-ttl {
    margin-bottom: 17px;
    font-size: 1.6rem;
  }
}
.top-reason__catch {
  margin-bottom: 35px;
  color: #474141;
  font-size: 2.2rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-reason__catch {
    margin-bottom: 30px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-reason__catch {
    margin-bottom: 24px;
    font-size: 1.6rem;
  }
}
.top-reason__catch > span {
  padding-bottom: 5px;
  border-bottom: 1px solid #474141;
}
@media screen and (max-width: 599px) {
  .top-reason__catch > span {
    padding-bottom: 2px;
  }
}
.top-reason__title {
  margin-bottom: 20px;
  color: #171c28;
  font-size: 3.6rem;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", serif;
  font-weight: 200;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .top-reason__title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-reason__title {
    font-size: 2.6rem;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 30px;
  }
}
.top-reason__title > span {
  background-color: rgba(236, 236, 238, 0.9);
}
@media screen and (max-width: 834px) {
  .top-reason__title > span {
    display: inline-block;
  }
}
@media screen and (max-width: 599px) {
  .top-reason__title > span {
    padding: 0 !important;
    background-color: transparent;
  }
}
.top-reason__title > span:first-child {
  margin-right: 12px;
  padding: 10px 0 10px 20px;
}
@media screen and (max-width: 834px) {
  .top-reason__title > span:first-child {
    margin-right: 0;
    padding: 5px 10px;
  }
}
.top-reason__title > span:last-child {
  padding: 10px 20px 10px 0;
}
@media screen and (max-width: 834px) {
  .top-reason__title > span:last-child {
    padding: 5px 10px;
  }
}
.top-reason__txt-wrapper {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  transition: 0.3s;
}
@media screen and (max-width: 1500px) {
  .top-reason__txt-wrapper {
    background-color: rgba(236, 236, 238, 0.85);
  }
}
@media screen and (max-width: 1024px) {
  .top-reason__txt-wrapper {
    max-width: 800px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason__txt-wrapper {
    padding: 0px;
  }
}
.top-reason__text {
  display: inline-block;
  padding: 6px 0px;
  color: #404040;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: center;
  line-height: 2.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-reason__text {
    font-size: 1.5rem;
    line-height: 2;
  }
}
@media screen and (max-width: 599px) {
  .top-reason__text {
    padding: 0;
    background-color: transparent;
    line-height: 2;
  }
}
.top-reason__text > span {
  padding-bottom: 2px;
  border-bottom: 1px solid #e06702;
  color: #e06702;
}
@media screen and (max-width: 599px) {
  .top-reason__text > span {
    padding-bottom: 1px;
  }
}
.top-reason__image {
  position: absolute;
}
.top-reason__image.ph01 {
  top: 110px;
  left: 0;
  max-width: 351px;
}
@media screen and (max-width: 1300px) {
  .top-reason__image.ph01 {
    max-width: 280.8px;
  }
}
@media screen and (max-width: 1024px) {
  .top-reason__image.ph01 {
    max-width: 245.7px;
  }
}
@media screen and (max-width: 834px) {
  .top-reason__image.ph01 {
    top: 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason__image.ph01 {
    top: 40px;
    max-width: 126.36px;
  }
}
.top-reason__image.ph02 {
  top: 675px;
  left: 40px;
  max-width: 217px;
  z-index: 1;
}
@media screen and (max-width: 1300px) {
  .top-reason__image.ph02 {
    max-width: 173.6px;
  }
}
@media screen and (max-width: 1024px) {
  .top-reason__image.ph02 {
    top: auto;
    bottom: 280px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason__image.ph02 {
    left: 0;
    bottom: 200px;
    max-width: 158.41px;
  }
}
.top-reason__image.ph03 {
  top: 790px;
  left: 94px;
  max-width: 288px;
}
@media screen and (max-width: 1300px) {
  .top-reason__image.ph03 {
    max-width: 259.2px;
  }
}
@media screen and (max-width: 1024px) {
  .top-reason__image.ph03 {
    top: auto;
    bottom: 125px;
    max-width: 288px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason__image.ph03 {
    bottom: 90px;
    right: 0;
    left: 0;
    margin: 0 auto;
    max-width: 244.8px;
  }
}
.top-reason__image.ph04 {
  top: 230px;
  right: 0;
  max-width: 239px;
}
@media screen and (max-width: 1300px) {
  .top-reason__image.ph04 {
    max-width: 191.2px;
  }
}
@media screen and (max-width: 1024px) {
  .top-reason__image.ph04 {
    max-width: 167.3px;
  }
}
@media screen and (max-width: 834px) {
  .top-reason__image.ph04 {
    top: 150px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason__image.ph04 {
    top: 80px;
    max-width: 176.86px;
  }
}
.top-reason__image.ph05 {
  top: 358px;
  right: 70px;
  max-width: 355px;
}
@media screen and (max-width: 1300px) {
  .top-reason__image.ph05 {
    max-width: 284px;
  }
}
@media screen and (max-width: 1024px) {
  .top-reason__image.ph05 {
    display: none;
    max-width: 248.5px;
  }
}
.top-reason__image.ph06 {
  top: 1020px;
  right: 40px;
  max-width: 466px;
}
@media screen and (max-width: 1300px) {
  .top-reason__image.ph06 {
    max-width: 372.8px;
  }
}
@media screen and (max-width: 1024px) {
  .top-reason__image.ph06 {
    top: auto;
    bottom: 50px;
    max-width: 326.2px;
  }
}
@media screen and (max-width: 834px) {
  .top-reason__image.ph06 {
    max-width: 279.6px;
    right: -20px;
  }
}
@media screen and (max-width: 599px) {
  .top-reason__image.ph06 {
    display: none;
  }
}
.top-reason .more-wrap {
  text-align: center;
}
.top-reason .more-wrap .more-content {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 599px) {
  .top-reason .more-wrap .more-content {
    display: none;
  }
}
.top-reason .more-wrap .more-btn {
  display: none;
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .top-reason .more-wrap .more-btn {
    display: block;
  }
}
.top-reason .more-wrap .more-btn .top-common__btn::before {
  background-image: url(../../../assets/img/common/plus_w.svg);
  background-size: 18px;
}
.top-reason .more-wrap .more-btn.on-click .top-common__btn::before {
  background-image: url(../../../assets/img/common/minus_w.svg);
}

.js-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.js-fade02 {
  opacity: 0;
  visibility: hidden;
  transform: translateY(80px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.js-fade03 {
  opacity: 0;
  visibility: hidden;
  transform: translateX(60px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.js-fade04 {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-60px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.inview {
  visibility: visible;
  transform: translate(0px, 0px);
  opacity: 1;
}

.top-point {
  padding: 90px 40px 20px;
  background-color: #26272c;
}
@media screen and (max-width: 1024px) {
  .top-point {
    padding: 80px 30px 20px;
  }
}
@media screen and (max-width: 834px) {
  .top-point {
    padding: 80px 45px 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-point {
    padding: 70px 20px;
  }
}
.top-point__inner {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}
.top-point__head {
  display: flex;
  margin-bottom: 110px;
}
@media screen and (max-width: 1024px) {
  .top-point__head {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 834px) {
  .top-point__head {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.top-point__head__left {
  width: 48%;
  margin-right: 2%;
}
@media screen and (max-width: 834px) {
  .top-point__head__left {
    width: 100%;
  }
}
.top-point__head__right {
  flex: 1;
  padding-top: 120px;
}
@media screen and (max-width: 1024px) {
  .top-point__head__right {
    padding-top: 100px;
  }
}
@media screen and (max-width: 834px) {
  .top-point__head__right {
    padding-top: 0;
  }
}
.top-point__head__en-ttl {
  margin-bottom: 18px;
  color: #ed6c00;
  font-size: 2.3rem;
  font-family: "Jost", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .top-point__head__en-ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-point__head__en-ttl {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
}
.top-point__head__catch {
  margin-bottom: 28px;
  color: #fff;
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1024px) {
  .top-point__head__catch {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-point__head__catch {
    margin-bottom: 25px;
    font-size: 1.5rem;
  }
}
.top-point__head__catch > span {
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 599px) {
  .top-point__head__catch > span {
    padding-bottom: 2px;
  }
}
.top-point__head__title {
  color: #fff;
  font-size: 3.7rem;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", serif;
  font-weight: 200;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-point__head__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 599px) {
  .top-point__head__title {
    font-size: 2.6rem;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 22px;
  }
}
.top-point__head__text {
  color: #fff;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-point__head__text {
    font-size: 1.5rem;
    line-height: 2.2;
  }
}
@media screen and (max-width: 599px) {
  .top-point__head__text {
    line-height: 2;
  }
}
.top-point__box {
  display: flex;
  justify-content: space-between;
  gap: 0 5%;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto 106px;
}
@media screen and (max-width: 1024px) {
  .top-point__box {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 834px) {
  .top-point__box {
    flex-direction: column-reverse;
    gap: 0;
    margin-bottom: 50px;
  }
}
.top-point__box.re {
  flex-direction: row-reverse;
}
@media screen and (max-width: 834px) {
  .top-point__box.re {
    flex-direction: column-reverse;
  }
}
.top-point__box__ph {
  width: 39%;
}
@media screen and (max-width: 834px) {
  .top-point__box__ph {
    width: 100%;
    margin-bottom: 35px;
  }
}
.top-point__box__content {
  padding-left: 7.5%;
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .top-point__box__content {
    padding-left: 0;
  }
}
@media screen and (max-width: 834px) {
  .top-point__box__content {
    flex-direction: row-reverse;
  }
}
.re .top-point__box__content {
  padding-right: 7%;
  padding-left: 0px;
}
@media screen and (max-width: 1024px) {
  .re .top-point__box__content {
    padding-right: 0;
  }
}
@media screen and (max-width: 834px) {
  .re .top-point__box__content {
    flex-direction: row;
  }
}
.top-point__box__content__title {
  margin-bottom: 18px;
  color: #fff;
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1024px) {
  .top-point__box__content__title {
    margin-bottom: 15px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 834px) {
  .top-point__box__content__title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-point__box__content__title {
    font-size: 1.6rem;
    letter-spacing: 0;
  }
}
.top-point__box__content__title > span {
  margin-right: 15px;
  padding-right: 10px;
  border-right: 1px solid #ed6c00;
  color: #ed6c00;
  font-size: 2.6rem;
  font-family: "Jost", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .top-point__box__content__title > span {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-point__box__content__title > span {
    font-size: 2rem;
    margin-right: 12px;
  }
}
.top-point__box__content__body {
  margin-top: -10px;
}
@media screen and (max-width: 834px) {
  .top-point__box__content__body {
    margin-top: 0;
  }
}
.top-point__box__content__catch {
  margin-bottom: 25px;
  color: #fff;
  font-size: 2.7rem;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", serif;
  font-weight: 200;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .top-point__box__content__catch {
    margin-bottom: 22px;
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 834px) {
  .top-point__box__content__catch {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-point__box__content__catch {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.6;
  }
}
.top-point__box__content__text {
  color: #cac8c8;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-point__box__content__text {
    line-height: 1.9;
  }
}

.top-mov {
  padding: 100px 40px 85px;
  background-color: #26272c;
}
@media screen and (max-width: 1024px) {
  .top-mov {
    padding: 80px 40px 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-mov {
    padding: 0px 20px 50px;
  }
}
.top-mov__ttl {
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 599px) {
  .top-mov__ttl {
    margin-bottom: 12px;
  }
}
.top-mov__ttl span {
  position: relative;
  color: #e06702;
  font-family: "Jost", sans-serif !important;
  font-weight: 500;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .top-mov__ttl span {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-mov__ttl span {
    font-size: 1.7rem;
  }
}
.top-mov__ttl span::before, .top-mov__ttl span::after {
  background: #e06702;
  content: "";
  height: 1px;
  width: 35px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 599px) {
  .top-mov__ttl span::before, .top-mov__ttl span::after {
    width: 25px;
  }
}
.top-mov__ttl span::before {
  left: -60px;
}
@media screen and (max-width: 599px) {
  .top-mov__ttl span::before {
    left: -40px;
  }
}
.top-mov__ttl span::after {
  right: -60px;
}
@media screen and (max-width: 599px) {
  .top-mov__ttl span::after {
    right: -40px;
  }
}
.top-mov__youtube {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 1024px) {
  .top-mov__youtube {
    max-width: 800px;
  }
}
.top-mov__youtube iframe {
  width: 100%;
  height: 100%;
}

.top-feature {
  padding: 120px 40px 40px;
  background-color: #26272c;
}
@media screen and (max-width: 1024px) {
  .top-feature {
    padding: 100px 30px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-feature {
    padding: 20px 20px;
  }
}
.top-feature__box {
  padding: 40px 40px 80px;
  background-color: #505055;
}
@media screen and (max-width: 1024px) {
  .top-feature__box {
    padding: 40px 30px 70px;
  }
}
@media screen and (max-width: 599px) {
  .top-feature__box {
    padding: 40px 15px 45px;
  }
}
.top-feature__box__inner {
  max-width: 1190px;
  margin: 0 auto;
}
.top-feature__box__title {
  position: relative;
  margin-top: -70px;
  margin-bottom: 80px;
  color: #93939a;
  font-size: 8.4rem;
  font-family: "EB Garamond", serif !important;
  font-weight: 400;
  text-align: center;
  line-height: 0.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-feature__box__title {
    margin-top: -60px;
    font-size: 7rem;
  }
}
@media screen and (max-width: 834px) {
  .top-feature__box__title {
    font-size: 5.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-feature__box__title {
    margin-top: -56px;
    margin-bottom: 60px;
    font-size: 3.4rem;
    letter-spacing: 0.03em;
  }
}
.top-feature__box__title::before {
  content: "";
  position: absolute;
  top: 85px;
  right: 0;
  left: 0;
  width: 1px;
  height: 46px;
  margin: 0 auto;
  background-color: #ed6c00;
}
@media screen and (max-width: 1024px) {
  .top-feature__box__title::before {
    top: 75px;
  }
}
@media screen and (max-width: 834px) {
  .top-feature__box__title::before {
    top: 65px;
  }
}
@media screen and (max-width: 599px) {
  .top-feature__box__title::before {
    top: 38px;
    height: 36px;
  }
}
.top-feature__box__catch {
  margin-bottom: 30px;
  color: #fff;
  font-size: 3rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-feature__box__catch {
    margin-bottom: 20px;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-feature__box__catch {
    margin-bottom: 25px;
    font-size: 2rem;
  }
}
.top-feature__box__text {
  margin-bottom: 60px;
  color: #fff;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  text-align: center;
  line-height: 2.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-feature__box__text {
    margin-bottom: 50px;
    font-size: 1.5rem;
    line-height: 2.2;
  }
}
@media screen and (max-width: 599px) {
  .top-feature__box__text {
    margin-bottom: 30px;
    line-height: 2;
  }
}
.top-feature__box__list {
  display: flex;
  gap: 22px;
  margin-bottom: 45px;
}
@media screen and (max-width: 1024px) {
  .top-feature__box__list {
    gap: 10px;
  }
}
@media screen and (max-width: 834px) {
  .top-feature__box__list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  .top-feature__box__list {
    gap: 8px;
    margin-bottom: 33px;
  }
}
.top-feature__box__list__item {
  flex: 1;
  float: left;
  padding: 25px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .top-feature__box__list__item {
    padding: 15px 15px 25px;
  }
}
@media screen and (max-width: 834px) {
  .top-feature__box__list__item {
    flex: auto;
    width: calc((99.9% - 10px) / 2);
    padding: 25px 25px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-feature__box__list__item {
    width: calc((99.9% - 8px) / 2);
    padding: 20px 10px;
  }
}
.top-feature__box__list__item.item01 {
  transition-delay: 0.1s;
}
.top-feature__box__list__item.item02 {
  transition-delay: 0.3s;
}
.top-feature__box__list__item.item03 {
  transition-delay: 0.5s;
}
.top-feature__box__list__item.item04 {
  transition-delay: 0.7s;
}
.top-feature__box__list__title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #171c28;
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .top-feature__box__list__title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-feature__box__list__title {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
}
.top-feature__box__list__image {
  display: flex;
  align-items: center;
  margin: 0 auto 15px;
}
@media screen and (max-width: 599px) {
  .top-feature__box__list__image {
    width: 60%;
    margin-bottom: 12px;
  }
}
.item01 .top-feature__box__list__image {
  max-width: 104px;
}
@media screen and (max-width: 1024px) {
  .item01 .top-feature__box__list__image {
    max-width: 83.2px;
  }
}
.item02 .top-feature__box__list__image {
  max-width: 115px;
}
@media screen and (max-width: 1024px) {
  .item02 .top-feature__box__list__image {
    max-width: 92px;
  }
}
.item03 .top-feature__box__list__image {
  max-width: 105px;
}
@media screen and (max-width: 1024px) {
  .item03 .top-feature__box__list__image {
    max-width: 84px;
  }
}
.item04 .top-feature__box__list__image {
  max-width: 132px;
}
@media screen and (max-width: 1024px) {
  .item04 .top-feature__box__list__image {
    max-width: 105.6px;
  }
}
.top-feature__box__list__image > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.top-feature__box__list__disc {
  padding: 20px 10px 0;
  border-top: 1px solid #84889d;
}
@media screen and (max-width: 1024px) {
  .top-feature__box__list__disc {
    padding: 15px 5px 0;
  }
}
@media screen and (max-width: 599px) {
  .top-feature__box__list__disc {
    padding: 10px 0 0;
  }
}
.top-feature__box__list__disc > li {
  position: relative;
  padding-left: 15px;
  color: #2e3036;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 599px) {
  .top-feature__box__list__disc > li {
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    padding-left: 13px;
  }
}
.top-feature__box__list__disc > li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #7d7e8c;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .top-feature__box__list__disc > li::before {
    width: 8px;
    height: 8px;
    top: 6px;
  }
}
.top-feature__box__list__disc > li:not(:last-child) {
  margin-bottom: 5px;
}
.top-feature__box__button {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  background-color: #171c28;
  background-image: url(../../../assets/img/common/arrow.svg);
  background-repeat: no-repeat;
  background-position: center right 20px;
  background-size: 24px auto;
  border-radius: 50px;
  color: #fff;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-feature__box__button {
    max-width: 320px;
    padding: 18px;
    background-size: 16px auto;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-feature__box__button {
    padding: 15px 10px;
    background-size: 16px auto;
    background-position: center right 14px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 350px) {
  .top-feature__box__button {
    font-size: 4vw;
  }
}
.top-feature__box__button:hover {
  opacity: 0.7;
}
.top-feature__box__button.no-link-op span.junbi {
  color: #171c28;
}

.top-model_house {
  padding: 120px 40px 90px;
  background-image: url(../../../assets/img/top/model-house_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .top-model_house {
    padding: 100px 30px 80px;
  }
}
@media screen and (max-width: 599px) {
  .top-model_house {
    padding: 80px 20px 60px;
  }
}
.top-model_house__inner {
  max-width: 1300px;
  margin: 0 auto;
}
.top-model_house__head__en-ttl {
  margin-bottom: 30px;
  color: #ed6c00;
  font-size: 2.2rem;
  font-family: "Jost", sans-serif !important;
  font-weight: 500;
  text-align: center;
  line-height: 0.75;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .top-model_house__head__en-ttl {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-model_house__head__en-ttl {
    margin-bottom: 18px;
    font-size: 1.6rem;
  }
}
.top-model_house__head__title {
  margin-bottom: 30px;
  color: #171c28;
  font-size: 3.2rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-model_house__head__title {
    margin-bottom: 25px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-model_house__head__title {
    margin-bottom: 20px;
    font-size: 2.5rem;
    letter-spacing: 0.03em;
  }
}
.top-model_house__head__text {
  margin-bottom: 65px;
  color: #2e3036;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .top-model_house__head__text {
    margin-bottom: 55px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-model_house__head__text {
    margin-bottom: 45px;
  }
}
.top-model_house__tab {
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .top-model_house__tab {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-model_house__tab {
    margin-bottom: 25px;
  }
}
.top-model_house__tab__head {
  display: flex;
  margin-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .top-model_house__tab__head {
    margin-bottom: 30px;
    flex-direction: column;
  }
}
.top-model_house__tab__head__image {
  width: 55%;
  margin-right: 5%;
}
@media screen and (max-width: 1024px) {
  .top-model_house__tab__head__image {
    width: 45%;
  }
}
@media screen and (max-width: 834px) {
  .top-model_house__tab__head__image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }
}
.top-model_house__tab__head__content {
  flex: 1;
}
.top-model_house__tab__head__catch {
  margin-bottom: 25px;
  color: #2e3036;
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .top-model_house__tab__head__catch {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-model_house__tab__head__catch {
    margin-bottom: 20px;
    font-size: 1.5rem;
  }
}
.top-model_house__tab__head__title {
  margin-bottom: 30px;
  color: #171c25;
  font-size: 3.5rem;
  font-family: "Overpass", sans-serif;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .top-model_house__tab__head__title {
    margin-bottom: 20px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-model_house__tab__head__title {
    margin-bottom: 15px;
    font-size: 2.3rem;
  }
}
.top-model_house__tab__head__title > span {
  font-size: 4.2rem;
}
@media screen and (max-width: 1024px) {
  .top-model_house__tab__head__title > span {
    font-size: 3rem;
  }
}
@media screen and (max-width: 599px) {
  .top-model_house__tab__head__title > span {
    font-size: 2.6rem;
  }
}
.top-model_house__tab__head__text {
  color: #2e3036;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
  .top-model_house__tab__head__text {
    line-height: 2;
  }
}
@media screen and (max-width: 599px) {
  .top-model_house__tab__head__text {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.top-model_house__tab__photos {
  display: flex;
  gap: 20px;
  margin-bottom: 45px;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .top-model_house__tab__photos {
    gap: 15px;
  }
}
@media screen and (max-width: 834px) {
  .top-model_house__tab__photos {
    gap: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-model_house__tab__photos {
    flex-direction: column;
    gap: 9px 0;
    width: 86%;
    margin: 0 auto 30px;
  }
}
.top-model_house__tab__photos__item {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 1024px) {
  .top-model_house__tab__photos__item {
    width: calc((100% - 30px) / 3);
  }
}
@media screen and (max-width: 834px) {
  .top-model_house__tab__photos__item {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .top-model_house__tab__photos__item {
    width: 100%;
  }
}
.top-model_house__tab__box {
  display: flex;
  padding: 50px 45px;
  background-color: #f0f0f3;
}
@media screen and (max-width: 1024px) {
  .top-model_house__tab__box {
    padding: 40px 35px;
  }
}
@media screen and (max-width: 834px) {
  .top-model_house__tab__box {
    flex-direction: column-reverse;
    padding: 45px 35px 35px 35px;
  }
}
@media screen and (max-width: 599px) {
  .top-model_house__tab__box {
    padding: 40px 25px 25px 25px;
  }
}
.top-model_house__tab__box__image {
  width: 45%;
  margin-right: 5%;
  padding-right: 4%;
  border-right: 1px solid #b8bac4;
}
@media screen and (max-width: 834px) {
  .top-model_house__tab__box__image {
    width: 100%;
    margin-right: 0;
    padding-right: 0;
    border-right: none;
  }
}
.top-model_house__tab__box__content {
  padding-top: 10px;
}
@media screen and (max-width: 834px) {
  .top-model_house__tab__box__content {
    margin-bottom: 30px;
    padding-top: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-model_house__tab__box__content {
    margin-bottom: 20px;
  }
}
.top-model_house__tab__box__title {
  margin-bottom: 50px;
  color: #272f3e;
  font-size: 2.8rem;
  font-family: "Overpass", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1024px) {
  .top-model_house__tab__box__title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-model_house__tab__box__title {
    margin-bottom: 20px;
    font-size: 1.9rem;
  }
}
.top-model_house__tab__box__list > div {
  display: flex;
  color: #2e3036;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .top-model_house__tab__box__list > div {
    flex-direction: column;
    font-size: 1.4rem;
  }
}
.top-model_house__tab__box__list > div:not(:last-child) {
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .top-model_house__tab__box__list > div:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-model_house__tab__box__list > div:not(:last-child) {
    margin-bottom: 12px;
  }
}
.top-model_house__tab__box__list > div > dt {
  position: relative;
  width: 180px;
  padding-left: 1em;
}
@media screen and (max-width: 599px) {
  .top-model_house__tab__box__list > div > dt {
    margin-bottom: 5px;
  }
}
.top-model_house__tab__box__list > div > dt::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #3f3f47;
}
.top-model_house__tab__box__list > div > dd {
  flex: 1;
}
.top-model_house__buttons {
  display: flex;
  justify-content: center;
  gap: 0 10px;
}
@media screen and (max-width: 599px) {
  .top-model_house__buttons {
    flex-direction: column;
    align-items: center;
    gap: 6px 0;
  }
}
.top-model_house__buttons__item {
  max-width: 360px;
  width: 100%;
  background-color: #fff;
}
.top-model_house__buttons__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  padding: 25px 30px 25px 60px;
  background-color: #ed6c00;
  background-repeat: no-repeat;
  color: #fff;
  font-size: 1.9rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .top-model_house__buttons__btn {
    padding: 20px 30px 20px 60px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .top-model_house__buttons__btn {
    padding: 15px 30px 15px 40px;
    font-size: 1.5rem;
  }
}
.top-model_house__buttons__btn:hover {
  opacity: 0.85;
}
.top-model_house__buttons__btn.no-link-op {
  flex-direction: column;
  line-height: 1.8;
}
@media screen and (max-width: 599px) {
  .top-model_house__buttons__btn.no-link-op {
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 1.5rem;
  }
}
.top-model_house__buttons__btn.catalog {
  background-image: url(../../../assets/img/top/icon_book.svg);
  background-position: center left 24px;
  background-size: 32px auto;
}
@media screen and (max-width: 1024px) {
  .top-model_house__buttons__btn.catalog {
    background-position: center left 22px;
    background-size: 25.6px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-model_house__buttons__btn.catalog {
    background-position: center left 18px;
    background-size: 22.4px auto;
  }
}
.top-model_house__buttons__btn.inquiry {
  background-image: url(../../../assets/img/top/icon_message-question.svg);
  background-position: center left 21px;
  background-size: 32px auto;
}
@media screen and (max-width: 1024px) {
  .top-model_house__buttons__btn.inquiry {
    background-position: center left 20px;
    background-size: 25.6px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-model_house__buttons__btn.inquiry {
    background-position: center left 18px;
    background-size: 22.4px auto;
  }
}
.top-model_house__buttons__btn.estimate {
  background-image: url(../../../assets/img/top/icon_calculator.svg);
  background-position: center left 28px;
  background-size: 28px auto;
}
@media screen and (max-width: 1024px) {
  .top-model_house__buttons__btn.estimate {
    background-position: center left 24px;
    background-size: 22.4px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-model_house__buttons__btn.estimate {
    background-position: center left 18px;
    background-size: 19.6px auto;
  }
}
.top-model_house__buttons__btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto 0;
  width: 13px;
  height: 13px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .top-model_house__buttons__btn::after {
    right: 15px;
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 599px) {
  .top-model_house__buttons__btn::after {
    right: 15px;
    width: 9px;
    height: 9px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.top-flow {
  padding: 95px 40px;
  background-color: #3f3f47;
}
@media screen and (max-width: 1024px) {
  .top-flow {
    padding: 80px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-flow {
    padding: 50px 20px;
  }
}
.top-flow__inner {
  display: flex;
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .top-flow__inner {
    flex-direction: column;
  }
}
.top-flow__left {
  width: 30%;
}
@media screen and (max-width: 834px) {
  .top-flow__left {
    width: 100%;
    margin-bottom: 15px;
  }
}
.top-flow__right {
  flex: 1;
}
.top-flow__right__box {
  padding: 40px 20px;
  height: 348px;
  background-color: #e9e9e9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 834px) {
  .top-flow__right__box {
    height: auto;
  }
}
.top-flow__right__txt {
  margin-bottom: 40px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 3rem;
  color: #7a7a7a;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .top-flow__right__txt {
    margin-bottom: 30px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-flow__right__txt {
    margin-bottom: 20px;
    font-size: 2.2rem;
  }
}
.top-flow__right__txt > span {
  display: block;
  margin-top: 5px;
  color: #222;
  font-size: 1.7rem;
  line-height: 1.4;
}
@media screen and (max-width: 834px) {
  .top-flow__right__txt > span {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-flow__right__txt > span {
    font-size: 1.5rem;
  }
}
.top-flow__right__btn-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 440px;
}
@media screen and (max-width: 1024px) {
  .top-flow__right__btn-wrap {
    max-width: 400px;
  }
}
@media screen and (max-width: 599px) {
  .top-flow__right__btn-wrap {
    max-width: 300px;
  }
}
.top-flow__right__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 25px 30px 25px 60px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.9rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
  background-color: #ed6c00;
  background-image: url(../../../assets/img/top/icon_message-question.svg);
  background-repeat: no-repeat;
  background-position: center left 21px;
  background-size: 32px auto;
}
@media screen and (max-width: 1024px) {
  .top-flow__right__btn {
    padding: 20px 30px 20px 60px;
    font-size: 1.7rem;
    background-position: center left 20px;
    background-size: 25.6px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-flow__right__btn {
    padding: 15px 30px 15px 40px;
    font-size: 1.5rem;
    background-position: center left 18px;
    background-size: 22.4px auto;
  }
}
.top-flow__right__btn:hover {
  opacity: 0.85;
}
.top-flow__right__btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto 0;
  width: 13px;
  height: 13px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .top-flow__right__btn::after {
    right: 15px;
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 599px) {
  .top-flow__right__btn::after {
    right: 15px;
    width: 9px;
    height: 9px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.top-faq {
  padding: 95px 40px;
  background-color: #ececee;
}
@media screen and (max-width: 1024px) {
  .top-faq {
    padding: 70px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-faq {
    padding: 50px 20px 55px;
  }
}
.top-faq__inner {
  display: flex;
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .top-faq__inner {
    flex-direction: column;
  }
}
.top-faq__left {
  width: 30%;
}
@media screen and (max-width: 834px) {
  .top-faq__left {
    width: 100%;
    margin-bottom: 25px;
  }
}
.top-faq__right {
  flex: 1;
}
.top-faq__list {
  border-top: 1px solid #d0cfca;
  color: #2e3036;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 1024px) {
  .top-faq__list {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-faq__list {
    font-size: 1.5rem;
  }
}
.top-faq__list__item {
  border-bottom: 1px solid #d0cfca;
}
.top-faq__list__item > dt {
  position: relative;
  padding: 32px 50px 32px 60px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .top-faq__list__item > dt {
    padding: 22px 50px 22px 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-faq__list__item > dt {
    padding: 18px 25px 18px 30px;
  }
}
.top-faq__list__item > dt::before {
  content: "Q";
  position: absolute;
  top: 36px;
  left: 10px;
  color: #ed6c00;
  font-size: 2.5rem;
  font-family: "Jost", sans-serif !important;
  font-weight: 500;
  line-height: 0.75;
}
@media screen and (max-width: 1024px) {
  .top-faq__list__item > dt::before {
    top: 28px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-faq__list__item > dt::before {
    top: 25px;
    left: 0;
    font-size: 2.2rem;
  }
}
.top-faq__list__item > dt::after {
  content: "";
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  width: 28px;
  height: 28px;
  margin: auto 0;
  background-image: url(../../../assets/img/common/plus.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .top-faq__list__item > dt::after {
    right: 20px;
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 599px) {
  .top-faq__list__item > dt::after {
    top: -1px;
    right: 0;
    width: 22px;
    height: 22px;
  }
}
.top-faq__list__item > dt.active::after {
  background-image: url(../../../assets/img/common/minus.svg);
  transform: rotate(180deg);
}
.top-faq__list__item > dd {
  display: none;
  position: relative;
  padding: 0 50px 32px 60px;
}
@media screen and (max-width: 599px) {
  .top-faq__list__item > dd {
    padding: 0 25px 18px 30px;
  }
}
.top-faq__list__item > dd::before {
  content: "A";
  position: absolute;
  top: 7px;
  left: 10px;
  color: #ed6c00;
  font-size: 2.5rem;
  font-family: "Jost", sans-serif !important;
  font-weight: 500;
  line-height: 0.75;
}
@media screen and (max-width: 1024px) {
  .top-faq__list__item > dd::before {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-faq__list__item > dd::before {
    top: 6px;
    left: 0;
    font-size: 2.2rem;
  }
}

.top-mars {
  padding: 90px 40px;
  background-image: url(../../../assets/img/top/mars_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .top-mars {
    padding: 90px 40px 70px;
  }
}
@media screen and (max-width: 599px) {
  .top-mars {
    padding: 45px 20px;
  }
}
.top-mars__inner {
  display: flex;
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .top-mars__inner {
    flex-direction: column;
  }
}
.top-mars__en-ttl {
  margin-bottom: 30px;
  color: #f5f5f4;
  font-size: 4.8rem;
  font-family: "EB Garamond", serif !important;
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: 0.03em;
  opacity: 0.4;
}
@media screen and (max-width: 1400px) {
  .top-mars__en-ttl {
    font-size: 3.3vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-mars__en-ttl {
    font-size: 3.8vw;
  }
}
@media screen and (max-width: 834px) {
  .top-mars__en-ttl {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-mars__en-ttl {
    margin-bottom: 5px;
    font-size: 3.3rem;
    line-height: 1.1;
  }
}
.top-mars__box {
  position: relative;
  margin-left: 65px;
  width: calc(100% - 35vw);
  padding: 45px 50px 42px 60px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .top-mars__box {
    margin-left: 35px;
    padding: 40px;
  }
}
@media screen and (max-width: 834px) {
  .top-mars__box {
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0;
    padding: 35px 35px 70px;
  }
}
@media screen and (max-width: 599px) {
  .top-mars__box {
    padding: 32px 28px 60px;
  }
}
.top-mars__box::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: calc(100% + 50px);
  height: 100%;
  background-color: #fff;
  z-index: -1;
}
@media screen and (max-width: 834px) {
  .top-mars__box::after {
    display: none;
  }
}
.top-mars__box__title {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 25px;
  color: #171c28;
  font-size: 2.8rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 599px) {
  .top-mars__box__title {
    margin-bottom: 15px;
    padding-bottom: 20px;
    font-size: 2rem;
  }
}
.top-mars__box__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: #ed6c00;
}
.top-mars__box__text {
  color: #2e3036;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .top-mars__box__text {
    line-height: 2.2;
  }
}
@media screen and (max-width: 599px) {
  .top-mars__box__text {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.top-mars__image {
  flex: 1;
  position: absolute;
  right: 0;
  max-width: 594px;
  width: 36vw;
  margin-top: 15px;
}
@media screen and (max-width: 1024px) {
  .top-mars__image {
    width: 33vw;
  }
}
@media screen and (max-width: 834px) {
  .top-mars__image {
    position: static;
    width: 70vw;
    margin: -50px auto 0px;
    z-index: 2;
  }
}
@media screen and (max-width: 599px) {
  .top-mars__image {
    width: 80vw;
  }
}

.top-partner {
  padding: 90px 40px 110px;
  background-color: #ececee;
}
@media screen and (max-width: 1024px) {
  .top-partner {
    padding: 70px 30px 90px;
  }
}
@media screen and (max-width: 599px) {
  .top-partner {
    padding: 50px 20px 60px;
  }
}
.top-partner__inner {
  max-width: 1300px;
  margin: 0 auto;
}
.top-partner__title {
  margin-bottom: 40px;
  color: #171c28;
  font-size: 2.7rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .top-partner__title {
    font-size: 2.4rem;
    margin-bottom: 35px;
  }
}
.top-partner__box {
  display: flex;
  position: relative;
  max-width: 1100px;
  margin: 0 auto 100px;
  padding: 50px;
  border: 1px solid #acb1c0;
}
@media screen and (max-width: 1024px) {
  .top-partner__box {
    margin-bottom: 60px;
    padding: 40px;
  }
}
@media screen and (max-width: 834px) {
  .top-partner__box {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 599px) {
  .top-partner__box {
    margin-bottom: 40px;
    padding: 38px 20px 30px;
  }
}
.top-partner__box::before {
  content: "";
  position: absolute;
  top: -25px;
  right: 0;
  left: 0;
  width: 1px;
  height: 51px;
  margin: 0 auto;
  background-color: #ed6c00;
}
.top-partner__box__image {
  max-width: 552px;
  width: 55%;
  margin-right: 4.5%;
}
@media screen and (max-width: 834px) {
  .top-partner__box__image {
    width: 100%;
    margin-right: 0;
  }
}
.top-partner__box__content {
  flex: 1;
}
@media screen and (max-width: 834px) {
  .top-partner__box__content {
    margin-bottom: 20px;
  }
}
.top-partner__box__logo {
  max-width: 116px;
  margin-bottom: 18px;
}
@media screen and (max-width: 1024px) {
  .top-partner__box__logo {
    max-width: 100px;
  }
}
@media screen and (max-width: 599px) {
  .top-partner__box__logo {
    max-width: 80px;
    margin-bottom: 12px;
  }
}
.top-partner__box__text {
  color: #2e3036;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 599px) {
  .top-partner__box__text {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
.top-partner__list {
  display: flex;
  gap: 4px;
}
@media screen and (max-width: 599px) {
  .top-partner__list {
    flex-direction: column;
  }
}
.top-partner__list__item {
  flex: 1;
}
.top-partner__list__btn {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  padding: 60px;
  background-color: #171c28;
  color: #fff;
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1024px) {
  .top-partner__list__btn {
    padding: 45px 25px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-partner__list__btn {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 18px;
    font-size: 1.7rem;
  }
}
.top-partner__list__btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  width: 60px;
  height: 60px;
  margin: auto 0;
  border: 1px solid #d0cfca;
  background-image: url(../../../assets/img/common/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 23px auto;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .top-partner__list__btn::after {
    right: 25px;
    width: 48px;
    height: 48px;
    background-size: 19px auto;
  }
}
@media screen and (max-width: 834px) {
  .top-partner__list__btn::after {
    right: 20px;
    width: 34px;
    height: 34px;
    background-size: 15px auto;
  }
}
.top-partner__list__btn > span.en {
  display: inline-block;
  margin-top: 3px;
  margin-left: 38px;
  color: #acb1c0;
  font-size: 1.7rem;
  font-family: "Jost", sans-serif !important;
  font-weight: 500;
  line-height: 0.75;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .top-partner__list__btn > span.en {
    margin-left: 22px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-partner__list__btn > span.en {
    margin-top: 8px;
    margin-left: 0;
    font-size: 1.3rem;
  }
}
.top-partner__list__btn.no-link > span.en {
  color: rgba(172, 177, 192, 0.2);
}
.top-partner__list__btn.no-link > span.junbi {
  color: #171c28;
  opacity: 0.4;
  margin-left: 20px;
  padding: 5px 15px;
  font-size: 1.4rem;
}
@media screen and (min-width: 1025px) {
  .top-partner__list__btn:hover {
    background-color: #ed6c00;
  }
}

.top-insta {
  position: relative;
  background-color: #ececee;
  padding: 0 0 80px 40px;
}
@media screen and (max-width: 599px) {
  .top-insta {
    padding: 0 0 60px;
  }
}
.top-insta__inner {
  padding-left: calc(50% - 650px);
}
@media screen and (max-width: 599px) {
  .top-insta__inner {
    padding-left: 0;
  }
}
.top-insta::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 320px;
  background-color: #abadb4;
}
@media screen and (max-width: 834px) {
  .top-insta::before {
    height: 180px;
  }
}
.top-insta__content {
  position: relative;
  margin-top: -15px;
  margin-left: 40px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .top-insta__content {
    margin-left: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-insta__content {
    margin-left: 20px;
  }
}
.top-insta__title {
  margin-bottom: 55px;
  color: #fff;
  font-size: 4.8rem;
  font-family: "Jost", sans-serif !important;
  font-weight: 500;
  line-height: 0.75;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
  .top-insta__title {
    margin-bottom: 40px;
    font-weight: 4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-insta__title {
    margin-bottom: 30px;
    font-size: 3.5rem;
  }
}

.top-common__btn {
  display: inline-block;
  position: relative;
  padding-left: 70px;
  color: #171c25;
  font-size: 1.8rem;
  font-family: "Jost", sans-serif !important;
  font-weight: 500;
  line-height: 0.75;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 599px) {
  .top-common__btn {
    padding-left: 60px;
    font-size: 1.6rem;
  }
}
.top-common__btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 56px;
  margin: auto 0;
  background-color: #171c25;
  background-image: url(../../../assets/img/common/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 23px auto;
  border-radius: 50%;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .top-common__btn::before {
    width: 48px;
    height: 48px;
    background-size: 20px auto;
  }
}
.top-common__btn > span {
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1px solid #171c25;
}
.top-common__btn:hover {
  opacity: 0.8;
}
.top-common__btn:hover::before {
  background-position: left 20px center;
}
.top-common__en-ttl {
  color: #ed6c00;
  font-size: 2.2rem;
  font-family: "Jost", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1024px) {
  .top-common__en-ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-common__en-ttl {
    font-size: 1.5rem;
  }
}
.top-common__title {
  color: #f9f9f9;
  font-size: 3.2rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .top-common__title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-common__title {
    font-size: 2.3rem;
    letter-spacing: 0.02em;
  }
}
.top-common__title.dark {
  color: #171c28;
}

/*--------------------------------------------------------
news
----------------------------------------------------------*/
.news-ttl {
  position: relative;
  padding-bottom: 35px;
  margin-bottom: 35px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 2.9rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #adb5c4;
}
@media screen and (max-width: 1024px) {
  .news-ttl {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 599px) {
  .news-ttl {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 2rem;
  }
}
.news-ttl::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 2px;
  left: 0;
  bottom: -1px;
  background-color: #222;
}
@media screen and (max-width: 599px) {
  .news-ttl::before {
    width: 80px;
  }
}
.news-ttl > span {
  display: block;
  margin-bottom: 18px;
  font-family: "Overpass", sans-serif;
  font-size: 1.9rem;
  color: #eb6c01;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1024px) {
  .news-ttl > span {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .news-ttl > span {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
}

.news-txt {
  margin-bottom: 35px;
  line-height: 1.9;
}
@media screen and (max-width: 1024px) {
  .news-txt {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .news-txt {
    margin-bottom: 20px;
  }
}
.news-txt .space {
  display: block;
  height: 15px;
}
@media screen and (max-width: 1024px) {
  .news-txt .space {
    height: 10px;
  }
}
@media screen and (max-width: 599px) {
  .news-txt .space {
    height: 8px;
  }
}

.news-ph-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 834px) {
  .news-ph-list {
    gap: 15px;
  }
}
@media screen and (max-width: 599px) {
  .news-ph-list {
    gap: 12px;
  }
}
.news-ph-list > li {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 834px) {
  .news-ph-list > li {
    width: calc((100% - 15px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .news-ph-list > li {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */