@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Overpass:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
/* ブレイクポイント参考

PC:インナーコンテンツサイズ以上
Laptop-HiDPI:1440
Laptop-MDPI :1280
iPad Pro(10.5inch):834
iPad Pro(12.9inch):1024
iPad:601
SP:600

*/
/* レスポンシブサイト非表示 */
/* PCのみ */
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
/* タブレット・PC */
@media screen and (max-width: 599px) {
  .pctb {
    display: none !important;
  }
}
/* タブレット・SP */
@media screen and (min-width: 1025px) {
  .tbsp {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (max-width: 599px), (min-width: 1025px) {
  .tb {
    display: none !important;
  }
}
/* SPのみ */
@media screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
/* 450px以下のみ */
@media screen and (min-width: 450px) {
  .w450 {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*--------------------------------------------------------

	リセット : html5reset-1.6.1.css

参考
https://coliss.com/articles/build-websites/operation/css/my-css-reset-by-ire.html
----------------------------------------------------------*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html {
  font-size: 62.5%;
}

/*body設定*/
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #000;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  line-height: 1.7;
  font-size: 1.6rem;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
}
@media screen and (min-width: 1025px) {
  body {
    font-weight: 500;
  }
}
body {
  /*任意でフォントサイズを指定*/
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.5rem;
  }
}

/*IE用：游ゴシックの謎余白をなくすためフォントを別指定*/
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Meiryo, sans-serif;
  }
}
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
caption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

/*テーブル指定*/
table,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています marginを指定したら地獄*/
ul[class],
ol[class] {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote,
q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています。また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています。また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input,
select {
  vertical-align: middle;
}

/*画像を縦に並べたときに余白が出てしまわないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  -webkit-backface-visibility: hidden;
  width: auto;
  max-width: 100%;
  height: auto;
}

/* タッチデバイスでのリンクやボタンの反応を向上 */
a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

@page {
  size: A4;
  margin: 5mm;
}
/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  transition: 0.2s;
  text-decoration: none;
}

/*クラスの指定がない場合のリンクのデフォルト色を指定*/
a:not([class]) {
  color: #29579d;
}

a:not([class]):hover {
  color: #2e467a;
}

a:not([class]):active {
  color: #2e467a;
}

/*すべての要素のfont-family, font-size, line-heightをその親から継承するようにリセット*/
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/*属性と状態のCSSリセット*/
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/*box-sizing*/
*,
*::before,
*::after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*clearfix*/
/* For modern browsers */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* For IE 6/7 only */
.clearfix {
  *zoom: 1;
}

/*禁則処理の追加*/
p,
li,
dt,
dd,
th,
td,
pre {
  -ms-line-break: strict;
  line-break: strict;
  -ms-word-break: break-strict;
  word-break: break-strict;
}

/** Selection */
::-moz-selection {
  background-color: #b3d4fc;
  /* Change as appropriate */
  color: #000;
  /* Change as appropriate */
  text-shadow: none;
}
::-moz-selection,
::selection {
  background-color: #b3d4fc;
  /* Change as appropriate */
  color: #000;
  /* Change as appropriate */
  text-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*マージン*/
.mlr-05 {
  margin-right: -0.5em;
  margin-left: -0.5em;
}

.mlr-03 {
  margin-right: -0.3em;
  margin-left: -0.3em;
}

.mlr-01 {
  margin-right: -0.1em;
  margin-left: -0.1em;
}

.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;
  }
}

.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;
  }
}

.mb40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 1024px) {
  .mb40 {
    margin-bottom: 30px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb40 {
    margin-bottom: 20px !important;
  }
}

.mb50 {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 599px) {
  .mb50 {
    margin-bottom: 25px !important;
  }
}

.mb60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 1024px) {
  .mb60 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb60 {
    margin-bottom: 30px !important;
  }
}

.mb70 {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 1024px) {
  .mb70 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb70 {
    margin-bottom: 30px !important;
  }
}

.mb80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 1024px) {
  .mb80 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb80 {
    margin-bottom: 30px !important;
  }
}

.mt00 {
  margin-top: 0px !important;
}
@media screen and (max-width: 599px) {
  .mt00 {
    margin-top: 0px !important;
  }
}

.mt10 {
  margin-top: 10px !important;
}
@media screen and (max-width: 599px) {
  .mt10 {
    margin-top: 10px !important;
  }
}

.mt15 {
  margin-top: 15px !important;
}
@media screen and (max-width: 599px) {
  .mt15 {
    margin-top: 10px !important;
  }
}

.mt20 {
  margin-top: 20px !important;
}
@media screen and (max-width: 599px) {
  .mt20 {
    margin-top: 10px !important;
  }
}

.mt30 {
  margin-top: 30px !important;
}
@media screen and (max-width: 1024px) {
  .mt30 {
    margin-top: 20px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt30 {
    margin-top: 15px !important;
  }
}

.mt40 {
  margin-top: 40px !important;
}
@media screen and (max-width: 1024px) {
  .mt40 {
    margin-top: 30px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt40 {
    margin-top: 20px !important;
  }
}

@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%; //サイト幅を解除
  }
  ------- ↑その他参考　---------*/
}
@page {
  size: A4;
  margin: 12.7mm 9.7mm;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 20px;
  height: 120px;
  transition: 0.5s;
  z-index: 99;
}
@media screen and (min-width: 1025px) {
  .header.is-animation {
    padding-top: 0px;
    height: 90px;
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 0.75);
  }
}
@media screen and (max-width: 1024px) {
  .header {
    padding-top: 0;
    height: 80px;
    background-color: #fff;
  }
}
@media screen and (max-width: 599px) {
  .header {
    height: 60px;
  }
}

.header-logo {
  max-width: 255px;
  width: 100%;
  margin-left: 35px;
  padding-top: 5px;
  transition: 0.5s;
}
@media screen and (min-width: 1025px) {
  .is-animation .header-logo {
    padding-top: 0;
    max-width: 240px;
  }
}
@media screen and (max-width: 1200px) {
  .header-logo {
    max-width: 200px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 834px) {
  .header-logo {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 599px) {
  .header-logo {
    max-width: 165px;
    margin-left: 12px;
  }
}
.header-logo__link {
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  padding-right: 30px;
}
@media screen and (max-width: 1024px) {
  .header-nav {
    display: none;
  }
}
.header-nav__list {
  display: flex;
  margin-right: 32px;
}
@media screen and (max-width: 1200px) {
  .header-nav__list {
    margin-right: 25px;
  }
}
.header-nav__list__item:not(:last-child) {
  margin-right: 33px;
}
@media screen and (max-width: 1200px) {
  .header-nav__list__item:not(:last-child) {
    margin-right: 25px;
  }
}
.header-nav__list__link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  color: #222;
}
#top .header-nav__list__link {
  color: #2e2e31;
}
.header-nav__list__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: 2px;
  background-color: #e50012;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s;
  z-index: -1;
}
.header-nav__list__link:hover::after, .header-nav__list__link.active::after {
  transform: scaleX(1);
}
@media screen and (min-width: 1025px) {
  .is-animation .header-nav__list__link {
    color: #000;
  }
}
.header-nav__contact-btn {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 48px;
  background-color: #2e343d;
  border-radius: 50px;
  padding: 3px 18px 0px 15px;
}
.header-nav__contact-btn span {
  font-family: "Overpass", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1;
}
.header-nav__contact-btn::after {
  display: block;
  content: "";
  position: absolute;
  vertical-align: middle;
  top: 0;
  bottom: 0;
  right: 18px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.header-nav__contact-btn:hover {
  opacity: 0.85;
}

.header-sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header-sp {
    display: block;
  }
}
.header-sp__contact-btn {
  position: absolute;
  top: 0;
  right: 80px;
  width: 80px;
  height: 80px;
  background-color: #e50012;
  background-image: url(../img/common/icon_mail.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px auto;
}
@media screen and (max-width: 599px) {
  .header-sp__contact-btn {
    right: 60px;
    width: 60px;
    height: 60px;
    background-size: 24px auto;
  }
}

.header-sp-nav {
  position: relative;
  height: 100%;
}
.header-sp-nav__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0 -30px;
  padding: 0 30px;
}
@media screen and (max-width: 599px) {
  .header-sp-nav__list {
    padding: 0;
  }
}
.header-sp-nav__list__item {
  position: relative;
  width: calc((99.9% - 60px) / 2);
  margin: 0 0 0 30px;
}
@media screen and (max-width: 599px) {
  .header-sp-nav__list__item {
    width: 100%;
  }
}
.header-sp-nav__list__link {
  display: block;
  position: relative;
  padding: 15px 30px 15px 0;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .header-sp-nav__list__link {
    padding: 13px 40px 13px 30px;
    font-size: 1.6rem;
  }
}
.header-sp-nav__list__link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .header-sp-nav__list__link::after {
    right: 25px;
  }
}
@media screen and (max-width: 599px) {
  .header-sp-nav__list__link.has-secondary::after {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .header-sp-nav__secondary-list {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .header-sp-nav__secondary-list {
    display: none;
    margin-left: 2em;
  }
}
.header-sp-nav__secondary-list__link {
  display: block;
  position: relative;
  padding: 5px 30px 5px 22px;
  color: #fff;
  font-size: 1.5rem;
}
@media screen and (max-width: 599px) {
  .header-sp-nav__secondary-list__link {
    font-size: 1.4rem;
  }
}
.header-sp-nav__secondary-list__link::before {
  content: "";
  position: absolute;
  transition: 0.3s;
  top: 15px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .header-sp-nav__secondary-list__link::before {
    top: 14px;
  }
}

.ac-menu {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 53px;
  background-color: #e50012;
}
@media screen and (max-width: 599px) {
  .ac-menu {
    display: block;
  }
}
.ac-menu::before, .ac-menu::after {
  content: "";
  position: absolute;
  top: 0;
  right: 19px;
  bottom: 0;
  width: 15px;
  height: 2px;
  margin: auto 0;
  background-color: #fff;
  transition: 0.3s;
}
.ac-menu::after {
  transform: rotate(90deg);
}
.ac-menu.active::before {
  opacity: 0;
}
.ac-menu.active::after {
  transform: rotate(360deg);
}

#nav-open {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background-color: #222;
  z-index: 100;
}
@media screen and (min-width: 1025px) {
  #nav-open {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  #nav-open {
    width: 60px;
    height: 60px;
  }
}
#nav-open > span {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
}
#nav-open > span > span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 10px;
  margin: auto;
  transition: all 0.3s ease;
}
#nav-open > span > span::before, #nav-open > span > span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.3s cubic-bezier(0.29, -0.25, 0.74, 1.27);
}
#nav-open > span > span::before {
  top: 0;
}
#nav-open > span > span::after {
  bottom: 0;
}
#nav-open.active > span > span::before, #nav-open.active > span > span::after {
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#nav-open.active > span > span::before {
  transform: rotate(225deg);
}
#nav-open.active > span > span::after {
  width: 100%;
  transform: rotate(-225deg);
}

#nav-content {
  overflow: scroll;
  position: fixed;
  top: 80px;
  right: 0;
  z-index: 99;
  width: 60%;
  height: 100%;
  padding-top: 40px;
  background-color: rgba(34, 34, 34, 0.9);
  transition: all 0.3s ease;
  pointer-events: none;
  opacity: 0;
}
@media screen and (min-width: 1025px) {
  #nav-content {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  #nav-content {
    top: 60px;
    width: 100%;
    padding-top: 12px;
  }
}

#nav-close-overlay {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100% - 80px);
  background-color: #000;
  opacity: 0;
  z-index: 10;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  #nav-close-overlay {
    top: 60px;
  }
}

#nav-input {
  display: none;
}
#nav-input:checked ~ #nav-content {
  pointer-events: auto;
  opacity: 1;
}
#nav-input:checked ~ #nav-close-overlay {
  display: block;
  opacity: 0.5;
}

.footer {
  padding: 205px 50px 50px;
  background-color: #e9e9e9;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 140px 25px 35px;
  }
}
@media screen and (max-width: 599px) {
  .footer {
    padding: 45px 15px 20px;
  }
}

#top .footer {
  padding-top: 110px;
}
@media screen and (max-width: 1024px) {
  #top .footer {
    padding-top: 80px;
  }
}
@media screen and (max-width: 599px) {
  #top .footer {
    padding-top: 45px;
  }
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  .footer-inner {
    margin-bottom: 25px;
  }
}

.footer-detail__logo {
  max-width: 240px;
  margin-bottom: 25px;
}
@media screen and (max-width: 599px) {
  .footer-detail__logo {
    max-width: 190px;
    margin-bottom: 15px;
  }
}
.footer-detail__address {
  color: #222;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .footer-detail__address {
    font-size: 1.4rem;
  }
}
.footer-detail__address > a {
  color: inherit;
}

.footer-nav {
  display: flex;
}
@media screen and (max-width: 599px) {
  .footer-nav {
    display: none;
  }
}
.footer-nav__item:not(:last-child) {
  margin-right: 25px;
}
.footer-nav__link {
  position: relative;
  padding-left: 18px;
  color: #222;
  font-size: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .footer-nav__link {
    font-size: 1.4rem;
  }
}
.footer-nav__link::before, .footer-nav__link::after {
  content: "";
  position: absolute;
  transition: 0.3s;
}
.footer-nav__link::before {
  top: 3px;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid #222;
  border-radius: 50%;
}
.footer-nav__link::after {
  top: 8px;
  left: 4px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  transform: rotate(45deg);
}
.footer-nav__link:hover::before {
  background-color: #222;
}
.footer-nav__link:hover::after {
  border-top-color: #fff;
  border-right-color: #fff;
}

.footer-copyright {
  font-size: 1.2rem;
}
@media screen and (max-width: 599px) {
  .footer-copyright {
    font-size: 1rem;
  }
}

.pagetop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .pagetop {
    bottom: 150px;
    right: 20px;
  }
}
@media screen and (max-width: 834px) {
  .pagetop {
    bottom: 120px;
  }
}
@media screen and (max-width: 599px) {
  .pagetop {
    right: 10px;
    bottom: 95px;
  }
}
@media screen and (min-width: 1025px) {
  .pagetop.no-fixed {
    position: absolute;
    bottom: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .pagetop.no-fixed {
    bottom: 190px;
  }
}
@media screen and (max-width: 599px) {
  .pagetop.no-fixed {
    bottom: 95px;
  }
}
.pagetop a {
  display: block;
  width: 13px;
  height: 133px;
  background-image: url(../img/common/pagetop.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1024px) {
  .pagetop a {
    width: 50px;
    height: 50px;
    background-image: url(../img/common/pagetop2.png);
  }
}
@media screen and (max-width: 599px) {
  .pagetop a {
    width: 34px;
    height: 34px;
  }
}
.pagetop a:hover {
  opacity: 0.8;
}

.container {
  position: relative;
  padding-top: 270px;
  background-color: #2c415a;
}
@media screen and (max-width: 1024px) {
  .container {
    margin-top: 80px;
    padding-top: 245px;
  }
}
@media screen and (max-width: 599px) {
  .container {
    margin-top: 60px;
    padding-top: 60px;
  }
}
.container::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100vw;
  height: 470px;
  background-color: #77dafb;
  background-image: url(../img/common/wave.webp), url(../img/common/temp_bg.webp);
  background-repeat: no-repeat;
  background-position: top right, top center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .container::before {
    height: 260px;
  }
  #company .container::before {
    background-image: url(../img/common/wave.webp), url(../img/company/temp_bg.jpg);
  }
  #insurance .container::before {
    background-image: url(../img/common/wave.webp), url(../img/insurance/temp_bg.jpg);
  }
  #real_estate .container::before {
    background-image: url(../img/common/wave.webp), url(../img/real_estate/temp_bg.jpg);
  }
  #about .container::before {
    background-image: url(../img/common/wave.webp), url(../img/about/temp_bg.jpg);
  }
  #recruit .container::before {
    background-image: url(../img/common/wave.webp), url(../img/recruit/temp_bg.jpg);
  }
}
@media screen and (max-width: 599px) {
  .container::before {
    height: 130px;
    background-size: auto 124%;
  }
  #company .container::before, #insurance .container::before, #real_estate .container::before {
    background-size: cover;
  }
}

.contents {
  position: relative;
  padding-bottom: 80px;
  padding: 0 140px;
  transition: 0.3s;
}
@media screen and (max-width: 1600px) {
  .contents {
    padding: 0 140px 0 45px;
  }
}
@media screen and (max-width: 1024px) {
  .contents {
    padding: 0 70px 0 40px;
  }
}
@media screen and (max-width: 599px) {
  .contents {
    padding: 0 20px;
  }
}
.contents::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 0;
  width: calc(100% - 80px);
  height: calc(100% + 40px);
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .contents::before {
    top: -40px;
    width: calc(100% - 30px);
    height: calc(100% + 90px);
  }
}
@media screen and (max-width: 599px) {
  .contents::before {
    top: 50px;
    width: 100%;
    height: calc(100% - 85px);
  }
}
.contents__inner {
  position: relative;
  display: flex;
  justify-content: flex-start;
  max-width: 1566px;
  margin: 0 auto;
  padding: 0px 0px 150px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .contents__inner {
    display: block;
    padding: 0px 0px 120px;
  }
}
@media screen and (max-width: 834px) {
  .contents__inner {
    padding: 0px 0px 60px;
  }
}
@media screen and (max-width: 599px) {
  .contents__inner {
    padding: 0px 0px 100px;
  }
}
.contents__side {
  width: 167px;
  margin-right: 110px;
}
@media screen and (max-width: 1200px) {
  .contents__side {
    margin-right: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .contents__side {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .contents__side {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .contents__side:has(.side-nav) {
    margin-bottom: 65px;
  }
}
@media screen and (max-width: 599px) {
  .contents__side:has(.side-nav) {
    margin-bottom: 35px;
  }
}
.contents__main {
  max-width: 1024px;
  width: calc(100% - 167px - 110px);
  padding-top: 175px;
}
@media screen and (max-width: 1200px) {
  .contents__main {
    width: calc(100% - 167px - 50px);
  }
}
@media screen and (max-width: 1024px) {
  .contents__main {
    width: 100%;
    padding-top: 0;
  }
}
.contents__photo {
  position: absolute;
  top: 10px;
  right: 50px;
  width: 420px;
  transition: 0.3s;
}
@media screen and (max-width: 1800px) {
  .contents__photo {
    width: 380px;
  }
}
@media screen and (max-width: 1600px) {
  .contents__photo {
    width: 350px;
  }
}
@media screen and (max-width: 1500px) {
  .contents__photo {
    right: 0;
    width: 320px;
  }
}
@media screen and (max-width: 1200px) {
  .contents__photo {
    right: -20px;
    width: 280px;
  }
}
@media screen and (max-width: 1024px) {
  .contents__photo {
    display: none;
  }
}

.sec-wrap {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .sec-wrap {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 599px) {
  .sec-wrap {
    margin-bottom: 50px;
  }
}

.list-number {
  counter-reset: num;
}
.list-number > li {
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1024px) {
  .list-number > li {
    padding-left: 20px;
  }
}
.list-number > li:not(:last-child) {
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .list-number > li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.list-number > li::before {
  content: counter(num);
  counter-increment: num;
  position: absolute;
  left: 0;
  border-radius: 3px;
  color: #e50012;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .list-number > li::before {
    font-size: 1.4rem;
  }
}

.list-number02 {
  counter-reset: num;
}
.list-number02 > li {
  position: relative;
  padding-left: 35px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1024px) {
  .list-number02 > li {
    padding-left: 30px;
  }
}
.list-number02 > li:not(:last-child) {
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .list-number02 > li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.list-number02 > li::before {
  content: "(" counter(num) ")";
  counter-increment: num;
  position: absolute;
  left: 0;
  border-radius: 3px;
  color: #e50012;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .list-number02 > li::before {
    font-size: 1.4rem;
  }
}

.side {
  position: sticky;
  top: 175px;
}
@media screen and (max-width: 1024px) {
  .side {
    position: initial;
  }
}

@media screen and (max-width: 1024px) {
  .side-wrapper {
    display: flex;
    align-items: flex-end;
    position: relative;
  }
}
@media screen and (max-width: 599px) {
  .side-wrapper {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 1024px) {
  .side-wrapper virtual {
    width: 100%;
  }
}

.side-title {
  position: relative;
  margin-bottom: 55px;
  padding: 0px 10px;
  color: #222;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .side-title {
    position: absolute;
    bottom: 0;
    left: 0;
    margin-right: 60px;
    margin-bottom: 0;
    padding-left: 25px;
    font-size: 3rem;
    text-shadow: 0 0 10px #fff;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 599px) {
  .side-title {
    position: relative;
    padding-left: 4px;
    font-size: 2.3rem;
    font-weight: 500;
    margin: 0 auto;
    text-shadow: none;
    text-align: center;
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .side-title.tbsp-fs-small {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .side-title.tbsp-fs-small {
    font-size: 2.1rem;
  }
}
.side-title::before, .side-title::after {
  content: "";
  position: absolute;
  top: -75px;
  left: 0;
  width: 2px;
  height: 120px;
}
@media screen and (max-width: 1024px) {
  .side-title::before, .side-title::after {
    top: -65px;
  }
}
@media screen and (max-width: 599px) {
  .side-title::before, .side-title::after {
    top: -30px;
    width: 1.5px;
    height: 100px;
  }
}
.side-title::before {
  background: #2E343D;
  background: linear-gradient(180deg, rgba(46, 52, 61, 0) 0%, rgb(46, 52, 61) 11%, rgb(46, 52, 61) 89%, rgba(46, 52, 61, 0) 100%);
}
.side-title::after {
  top: -85px;
  height: 70px;
  background: #E60012;
  background: linear-gradient(180deg, rgba(230, 0, 18, 0) 0%, rgb(230, 0, 18) 18%, rgb(230, 0, 18) 84%, rgba(230, 0, 18, 0) 100%);
  transform: rotate(90deg);
}
@media screen and (max-width: 1024px) {
  .side-title::after {
    top: -70px;
  }
}
@media screen and (max-width: 599px) {
  .side-title::after {
    top: -28px;
    width: 1px;
    height: 50px;
  }
}
.side-title span {
  display: block;
  writing-mode: vertical-rl;
  line-height: 1.2;
}
@media screen and (max-width: 599px) {
  .side-title span {
    position: relative;
    width: 48px;
    padding-top: 15px;
    line-height: 2;
  }
  .side-title span::after {
    background: #fff;
    content: "";
    height: 100%;
    width: calc(100% + 10px);
    left: -3px;
    position: absolute;
    top: -2px;
    z-index: -1;
  }
}

@media screen and (max-width: 1024px) {
  .side-nav {
    display: flex;
    margin-left: 118px;
  }
}
@media screen and (max-width: 834px) {
  .side-nav {
    flex-wrap: wrap;
    margin-top: -25px;
    width: calc(100% - 118px);
  }
}
@media screen and (max-width: 599px) {
  .side-nav {
    display: none;
  }
  #news .side-nav {
    display: flex;
    margin-top: 35px;
    margin-bottom: -10px;
    margin-left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .side-nav.sp-none {
    display: none !important;
  }
}
.side-nav__item {
  position: relative;
}
.side-nav__item::after {
  content: "";
  height: 1px;
  width: calc(100% + 1px);
  left: 0;
  position: absolute;
  bottom: -1px;
  background-image: url(../img/common/dot.png);
  background-repeat: repeat-x;
  background-position: 0 0;
}
@media screen and (max-width: 834px) {
  .side-nav__item {
    width: calc(33.3% - 20px);
    margin-top: 20px;
  }
  #news .side-nav__item {
    width: calc(25% - 20px);
  }
}
@media screen and (max-width: 599px) {
  #news .side-nav__item {
    margin-top: 0px;
  }
}
@media screen and (max-width: 1024px) {
  .side-nav__item:not(:last-child) {
    margin-right: 25px;
  }
}
@media screen and (max-width: 834px) {
  .side-nav__item:not(:last-child) {
    margin-right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .side-nav__item:not(:last-child) {
    margin-right: 20px;
  }
}
@media screen and (max-width: 834px) {
  .side-nav__item:nth-child(3n) {
    width: 33.3%;
    margin-right: 0;
  }
  #news .side-nav__item:nth-child(3n) {
    width: 25%;
    margin-right: 20px;
  }
}
@media screen and (max-width: 834px) {
  #news .side-nav__item:nth-child(4n) {
    width: calc(25% - 20px);
    margin-right: 0;
  }
}
.side-nav__item.active .side-nav__link {
  background-image: url(../img/common/arrow.png);
  background-size: 30px auto;
}
@media screen and (max-width: 599px) {
  .side-nav__item.active .side-nav__link {
    background-image: none;
  }
  .side-nav__item.active .side-nav__link::before {
    background: #e50012;
    content: "";
    height: 1px;
    width: 100%;
    left: 0;
    position: absolute;
    bottom: -1px;
    z-index: 2;
  }
}
.side-nav__link {
  display: block;
  padding: 27px 0 8px;
  background-repeat: no-repeat;
  background-position: bottom 14px right;
  background-size: 30px auto;
  color: #222;
  font-size: 1.7rem;
  line-height: 1.3;
  letter-spacing: 0.03em;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .side-nav__link {
    background-position: bottom 10px right;
    background-size: 19px auto;
    padding: 0 0 4px;
    font-size: 1.5rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 834px) {
  .side-nav__link {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .side-nav__link {
    position: relative;
  }
  #news .side-nav__link {
    padding-bottom: 10px;
    text-align: center;
  }
}
.side-nav__link:hover {
  color: #e50012;
}
.side-nav__link.active {
  padding-right: 30px;
  background-image: url(../img/common/arrow.png);
  background-size: 30px auto;
}
@media screen and (max-width: 1024px) {
  .side-nav__link.active {
    padding-right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .side-nav__link.active {
    padding-right: 0;
    background-image: none;
  }
  .side-nav__link.active::before {
    content: "";
    background: #e50012;
    height: 1px;
    width: 100%;
    left: 0;
    position: absolute;
    bottom: -1px;
    z-index: 2;
  }
}
.side-nav__link span {
  display: block;
  font-size: 1.4rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1024px) {
  .side-nav__link span {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 834px) {
  .side-nav__link span {
    font-size: 1.2rem;
  }
}

.cls-1 {
  fill: #fff;
  fill-rule: evenodd;
}

.cls-2 {
  fill: #000;
  fill-rule: evenodd;
}

.common-lead {
  position: relative;
  margin-bottom: 40px;
  margin-right: 28%;
  transition: 0.3s;
}
@media screen and (max-width: 1800px) {
  .common-lead {
    margin-right: 36%;
  }
}
@media screen and (max-width: 1700px) {
  .common-lead {
    margin-right: 40%;
  }
}
@media screen and (max-width: 1600px) {
  .common-lead {
    margin-right: 44%;
  }
}
@media screen and (max-width: 1500px) {
  .common-lead {
    margin-right: 40%;
  }
}
@media screen and (max-width: 1024px) {
  .common-lead {
    margin-bottom: 35px;
    margin-right: 0px;
  }
}
@media screen and (max-width: 599px) {
  .common-lead {
    margin-bottom: 30px;
  }
}
.common-lead__copy {
  margin-bottom: 32px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 3.8rem;
  letter-spacing: 0.5px;
  line-height: 1.9;
}
@media screen and (max-width: 1600px) {
  .common-lead__copy {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 1024px) {
  .common-lead__copy {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 834px) {
  .common-lead__copy {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 599px) {
  .common-lead__copy {
    font-size: 1.8rem;
    letter-spacing: 0px;
    margin-bottom: 25px !important;
  }
}
.common-lead__copy--s {
  font-size: 3.4rem;
}
.common-lead__copy--s span {
  letter-spacing: -2px;
}
@media screen and (max-width: 1024px) {
  .common-lead__copy--s span {
    letter-spacing: -1.5px;
  }
}
@media screen and (max-width: 1024px) {
  .common-lead__copy--s {
    font-size: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .common-lead__copy--s {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .common-lead__copy--s {
    font-size: 1.7rem;
  }
}
.common-lead__text {
  color: #222;
  font-size: 1.7rem;
  line-height: 2.3;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1024px) {
  .common-lead__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .common-lead__text {
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
}

.common-point {
  display: flex;
  margin-bottom: 75px;
}
@media screen and (max-width: 1024px) {
  .common-point {
    margin-bottom: 55px;
  }
}
@media screen and (max-width: 599px) {
  .common-point {
    margin-bottom: 35px;
    flex-direction: column;
  }
}
.common-point__title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 180px;
  background-color: #333;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 100;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1200px) {
  .common-point__title {
    width: 150px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .common-point__title {
    width: 100%;
    padding: 12px 10px 10px;
    font-size: 2.3rem;
  }
}
.common-point__title::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 1px;
  height: 60px;
  margin: 0 auto;
  background-color: #e50012;
}
@media screen and (max-width: 599px) {
  .common-point__title::before {
    right: auto;
    left: 30px;
    height: 70%;
  }
}
.common-point__content {
  width: calc(100% - 180px);
  padding: 40px 45px;
  background-color: #f3f5f7;
}
@media screen and (max-width: 1200px) {
  .common-point__content {
    width: calc(100% - 150px);
    padding: 35px 30px;
  }
}
@media screen and (max-width: 599px) {
  .common-point__content {
    width: 100%;
    padding: 25px 25px 30px;
  }
}
.common-point__list {
  counter-reset: num;
}
.common-point__list__item {
  position: relative;
  padding-left: 84px;
}
@media screen and (max-width: 1200px) {
  .common-point__list__item {
    padding-left: 70px;
  }
}
@media screen and (max-width: 599px) {
  .common-point__list__item {
    padding-left: 55px;
  }
}
.common-point__list__item::before {
  content: counter(num, decimal-leading-zero);
  counter-increment: num;
  position: absolute;
  top: 3px;
  left: 0;
  width: 54px;
  height: 100%;
  border-right: 1px dotted #222;
  color: #e50012;
  font-size: 3.2rem;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .common-point__list__item::before {
    width: 48px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .common-point__list__item::before {
    width: 38px;
    font-size: 2.3rem;
  }
}
.common-point__list__item:not(:last-child) {
  margin-bottom: 35px;
}
@media screen and (max-width: 1200px) {
  .common-point__list__item:not(:last-child) {
    margin-bottom: 25px;
  }
}
.common-point__list__title {
  margin-bottom: 5px;
  color: #222;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1200px) {
  .common-point__list__title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .common-point__list__title {
    font-size: 1.6rem;
  }
}

.common-pickup {
  margin-bottom: 40px;
  background: #e6e8ea;
}
@media screen and (max-width: 599px) {
  .common-pickup {
    background: #fff;
    margin-bottom: 30px;
  }
}
.common-pickup__link {
  display: flex;
}
@media screen and (max-width: 599px) {
  .common-pickup__link {
    display: block;
  }
}
.common-pickup__link:hover .common-pickup__image::after {
  opacity: 0.2;
}
.common-pickup__link:hover .common-pickup__image img {
  transform: scale(1.05);
}
.common-pickup__link:hover .common-pickup__title::before {
  background-image: url(../img/common/arrow_circle_red.png);
}
.common-pickup__image {
  width: 55%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .common-pickup__image {
    width: 50%;
  }
}
@media screen and (max-width: 834px) {
  .common-pickup__image {
    width: 45%;
  }
}
@media screen and (max-width: 599px) {
  .common-pickup__image {
    width: 100%;
    margin-bottom: 22px;
  }
}
.common-pickup__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #222;
  opacity: 0;
  transition: 0.3s;
}
.common-pickup__image img {
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .common-pickup__image img {
    width: 100%;
    height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 599px) {
  .common-pickup__image img {
    width: 100%;
    height: 200px;
  }
}
.common-pickup__title {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 80px;
  color: #202020;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .common-pickup__title {
    font-size: 2rem;
    padding-left: 70px;
    letter-spacing: 0.01em;
  }
}
@media screen and (max-width: 599px) {
  .common-pickup__title {
    display: block;
    margin-bottom: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    padding-left: 47px;
  }
}
.common-pickup__title::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 2px;
  margin: auto;
  left: 30px;
  width: 40px;
  height: 40px;
  background-image: url(../img/common/arrow_circle.png);
  background-repeat: no-repeat;
  background-size: 100%;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .common-pickup__title::before {
    top: -3px;
    width: 38px;
    height: 38px;
    left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .common-pickup__title::before {
    top: -5px;
    left: 0;
    width: 36px;
    height: 36px;
    bottom: 0;
  }
}

.common-nav {
  display: flex;
  flex-wrap: wrap;
  margin: -60px 0 0 -50px;
}
@media screen and (max-width: 1200px) {
  .common-nav {
    margin: -60px 0 0 -40px;
  }
}
@media screen and (max-width: 1024px) {
  .common-nav {
    margin: -50px 0 0 -35px;
  }
}
@media screen and (max-width: 599px) {
  .common-nav {
    margin: -30px 0 0 0;
  }
}
.common-nav__item {
  width: calc((99.9% - 100px) / 2);
  margin: 60px 0 0 50px;
}
@media screen and (max-width: 1200px) {
  .common-nav__item {
    width: calc((99.9% - 80px) / 2);
    margin: 60px 0 0 40px;
  }
}
@media screen and (max-width: 1024px) {
  .common-nav__item {
    width: calc((99.9% - 70px) / 2);
    margin: 50px 0 0 35px;
  }
}
@media screen and (max-width: 599px) {
  .common-nav__item {
    width: 100%;
    margin: 30px 0 0 0;
  }
}
.common-nav__link {
  display: block;
}
.common-nav__link:hover .common-nav__image::after {
  opacity: 0.2;
}
.common-nav__link:hover .common-nav__image img {
  transform: scale(1.05);
}
.common-nav__link:hover .common-nav__title::before {
  background-image: url(../img/common/arrow_circle_red.png);
}
.common-nav__image {
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .common-nav__image {
    margin-bottom: 22px;
  }
}
.common-nav__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #222;
  opacity: 0;
  transition: 0.3s;
}
.common-nav__image img {
  transition: 0.3s;
}
.common-nav__title {
  position: relative;
  margin-bottom: 20px;
  padding-left: 55px;
  color: #202020;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .common-nav__title {
    font-size: 2rem;
    padding-left: 47px;
    letter-spacing: 0.01em;
  }
}
@media screen and (max-width: 599px) {
  .common-nav__title {
    margin-bottom: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.04em;
  }
}
.common-nav__title::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 40px;
  height: 40px;
  background-image: url(../img/common/arrow_circle.png);
  background-repeat: no-repeat;
  background-size: 100%;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .common-nav__title::before {
    top: -5px;
    width: 38px;
    height: 38px;
  }
}
@media screen and (max-width: 599px) {
  .common-nav__title::before {
    width: 36px;
    height: 36px;
  }
}
.common-nav__title span {
  font-size: 2rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 834px) {
  .common-nav__title span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .common-nav__title span {
    font-size: 1.6rem;
  }
}
.common-nav__text {
  color: #222;
  transition: 0.3s;
}

.breadcrumbs {
  display: flex;
  position: absolute;
  right: 0;
  margin-top: 115px;
}
@media screen and (max-width: 1024px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs__item {
  position: relative;
  color: #6c6b6b;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
}
.breadcrumbs__item:not(:last-child) {
  margin-right: 30px;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: -22px;
  width: 10px;
  height: 10px;
}
.breadcrumbs__link {
  position: relative;
  color: inherit !important;
}
.breadcrumbs__link::after {
  content: "";
  height: 1px;
  width: calc(100% + 1px);
  left: 0;
  position: absolute;
  bottom: -5px;
  background-image: url(../img/common/dot.png);
  background-repeat: repeat-x;
  background-position: 0 0;
}
.breadcrumbs__link:hover::after {
  display: none;
}

.base-title {
  margin-bottom: 45px;
  color: #222;
  font-size: 3rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 834px) {
  .base-title {
    margin-bottom: 35px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .base-title {
    margin-bottom: 25px;
    font-size: 2rem;
    letter-spacing: 0.06em;
  }
}
.base-title__en {
  display: block;
  margin-bottom: 14px;
  color: #e50012;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 834px) {
  .base-title__en {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 599px) {
  .base-title__en {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
  }
}
.base-title__small {
  font-size: 2.6rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 834px) {
  .base-title__small {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .base-title__small {
    font-size: 1.6rem;
  }
}

.sec-title01 {
  margin-bottom: 45px;
  padding-left: 19px;
  border-left: 2px solid #e50012;
  color: #222;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .sec-title01 {
    margin-bottom: 35px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 834px) {
  .sec-title01 {
    margin-bottom: 30px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .sec-title01 {
    margin-bottom: 20px;
    padding-left: 15px;
    font-size: 2rem;
  }
}

.sec-title02 {
  position: relative;
  margin-bottom: 30px;
  padding: 13px 13px 11px 33px;
  background-color: #f1f3f4;
  color: #222;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1024px) {
  .sec-title02 {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .sec-title02 {
    margin-bottom: 15px;
    padding: 11px 11px 9px 25px;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
  }
}
.sec-title02::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #e50012;
}
@media screen and (max-width: 599px) {
  .sec-title02::before {
    top: 22px;
    width: 16px;
  }
}
.sec-title02.fs19 {
  font-size: 1.9rem;
}
@media screen and (max-width: 1024px) {
  .sec-title02.fs19 {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .sec-title02.fs19 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .sec-title02--insurance {
    margin-top: -25px;
    margin-bottom: 22px;
    padding: 0px;
    font-size: 1.2rem;
    letter-spacing: 0;
    color: #556677;
    background: none;
  }
  .sec-title02--insurance::before {
    display: none;
  }
}

.sec-title03 {
  position: relative;
  margin-bottom: 50px;
  padding: 50px 20px 45px;
  background-color: #f3f5f7;
  color: #222;
  font-size: 2.7rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1024px) {
  .sec-title03 {
    padding: 45px 20px 40px;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 834px) {
  .sec-title03 {
    margin-bottom: 40px;
    padding: 40px 20px 35px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .sec-title03 {
    margin-bottom: 30px;
    padding: 28px 20px 23px;
    font-size: 1.8rem;
  }
}
.sec-title03::before, .sec-title03::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 25px;
  height: 2px;
}
.sec-title03::before {
  right: 50%;
  background-color: #262123;
}
.sec-title03::after {
  left: 50%;
  background-color: #e50012;
}

.sec-title04 {
  position: relative;
  margin-bottom: 18px;
  padding: 0 0 10px 30px;
  border-bottom: 1px solid #dfdfdf;
  color: #222;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1024px) {
  .sec-title04 {
    padding: 0 0 8px 28px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .sec-title04 {
    margin-bottom: 12px;
    padding: 0 0 6px 24px;
    font-size: 1.6rem;
  }
}
.sec-title04::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 5px solid #e50012;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .sec-title04::before {
    top: 6px;
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 599px) {
  .sec-title04::before {
    width: 15px;
    height: 15px;
    border-width: 4px;
  }
}

.text-base {
  color: #222;
  line-height: 2;
}
.text-base span.cl-red {
  color: #e50012;
}

.link-map {
  display: inline-block;
  position: relative;
  padding-left: 17px;
  color: #e50012 !important;
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .link-map {
    padding-left: 15px;
    font-size: 1.3rem;
  }
}
.link-map::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 12px;
  height: 16px;
  background-image: url(../img/common/icon_pin.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 599px) {
  .link-map::before {
    top: -1px;
    width: 10px;
    height: 13px;
  }
}
.link-map::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted #000;
}
.link-map:hover::after {
  display: none;
}

.text-right {
  font-size: 1.6rem;
  text-align: right;
}
.text-right span {
  font-size: 1.3rem;
}

.text-center {
  text-align: center;
}

.text-bold {
  font-weight: 600;
}

.pagenav {
  display: flex;
  margin: 0 0 100px -15px;
}
@media screen and (max-width: 1024px) {
  .pagenav {
    margin: 0 0 70px -15px;
  }
}
@media screen and (max-width: 834px) {
  .pagenav {
    margin: 0 0 50px -10px;
  }
}
@media screen and (max-width: 599px) {
  .pagenav {
    flex-direction: column;
    margin: -8px 0 40px 0;
  }
}
.pagenav__item {
  flex-grow: 1;
  margin: 0 0 0 15px;
}
@media screen and (max-width: 834px) {
  .pagenav__item {
    margin: 0 0 0 10px;
  }
}
@media screen and (max-width: 599px) {
  .pagenav__item {
    width: 100%;
    margin: 8px 0 0 0;
  }
}
.pagenav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 75px;
  padding: 10px 30px 7px 40px;
  background-image: url(../img/common/arrow02.png);
  background-position: center left 25px;
  background-repeat: no-repeat;
  background-size: 12px auto;
  border: 1px dotted #222;
  color: #222;
  font-size: 1.7rem;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .pagenav__link {
    min-height: 64px;
    padding: 10px 10px 7px 30px;
    background-position: center left 15px;
    background-size: 10px auto;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 834px) {
  .pagenav__link {
    min-height: inherit;
    padding: 14px 20px 11px 35px;
    background-position: center left 15px;
    font-size: 1.6rem;
    text-align: left;
  }
}
@media screen and (max-width: 599px) {
  .pagenav__link {
    font-size: 1.5rem;
  }
}
.pagenav__link::before, .pagenav__link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 2px solid transparent;
  box-sizing: content-box;
  z-index: 2;
}
.pagenav__link::before {
  top: -2px;
  left: -2px;
}
.pagenav__link::after {
  bottom: -2px;
  right: -2px;
}
@media screen and (min-width: 1025px) {
  .pagenav__link:hover {
    background-image: url(../img/common/arrow02_red.png);
    color: #e50012;
  }
  .pagenav__link:hover::before, .pagenav__link:hover::after {
    width: 100%;
    height: 100%;
  }
  .pagenav__link:hover::before {
    border-bottom-color: #e50012;
    border-left-color: #e50012;
    transition: height 0.3s, width 0.3s 0.3s;
  }
  .pagenav__link:hover::after {
    border-top-color: #e50012;
    border-right-color: #e50012;
    transition: height 0.3s, width 0.3s 0.3s;
  }
}
.pagenav__link.privacy {
  padding: 10px 30px 7px;
  background-image: none;
}
@media screen and (max-width: 1024px) {
  .pagenav__link.privacy {
    padding: 10px 10px 7px;
  }
}
@media screen and (max-width: 834px) {
  .pagenav__link.privacy {
    padding: 14px 20px 11px;
  }
}

.btn01 {
  display: block;
  max-width: 320px;
  margin: 0 auto;
  padding: 20px 55px;
  background-color: #262123;
  background-image: url(../img/common/arrow02_white.png);
  background-repeat: no-repeat;
  background-position: center right 22px;
  background-size: 30px auto;
  border-radius: 50px;
  color: #fff;
  font-size: 1.7rem;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .btn01 {
    font-size: 1.6rem;
    padding: 15px 45px;
  }
}
@media screen and (max-width: 599px) {
  .btn01 {
    background-position: center right 18px;
    font-size: 1.5rem;
  }
}
.btn01:hover {
  background-color: #e50012;
}

/* TOPページ */
.top-more-btn {
  position: relative;
  display: inline-block;
  text-align: center;
  font-family: "Overpass", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #222;
  line-height: 1.5;
  letter-spacing: -0.02em;
  transition: 0.3s;
}
.top-more-btn::before {
  background-color: #000;
  background-image: url(../img/top/arrow_white.png);
  background-size: 14px auto;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 50px;
  content: "";
  height: 64px;
  width: 64px;
  right: -80px;
  position: absolute;
  top: -14px;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .top-more-btn::before {
    height: 52px;
    width: 52px;
    right: -65px;
  }
}
@media screen and (max-width: 834px) {
  .top-more-btn::before {
    top: -8px;
    height: 46px;
    width: 46px;
    right: -56px;
    background-size: 12px auto;
  }
}
.top-more-btn::after {
  background: #e50012;
  content: "";
  height: 1px;
  width: 100%;
  left: 0;
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 1025px) {
  .top-more-btn:hover {
    color: #e50012;
  }
  .top-more-btn:hover::after {
    background: #222;
  }
  .top-more-btn:hover::before {
    background-position: center right 20px;
  }
}

.top-cmn-ttl {
  position: relative;
  line-height: 1.3;
}
.top-cmn-ttl .en {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 7.2rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .top-cmn-ttl .en {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-cmn-ttl .en {
    font-size: 3.6rem;
  }
}
.top-cmn-ttl .jp {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  font-size: 2rem;
  color: #222;
}
@media screen and (max-width: 599px) {
  .top-cmn-ttl .jp {
    font-size: 1.5rem;
  }
}
.top-cmn-ttl .jp span {
  padding-left: 56px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .top-cmn-ttl .jp span {
    padding-left: 40px;
  }
}
.top-cmn-ttl .jp span::before, .top-cmn-ttl .jp span::after {
  background: #d8161c;
  content: "";
  height: 5px;
  width: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 599px) {
  .top-cmn-ttl .jp span::before, .top-cmn-ttl .jp span::after {
    height: 4px;
    width: 15px;
  }
}
.top-cmn-ttl .jp span::before {
  background: #d8161c;
}
.top-cmn-ttl .jp span::after {
  background: #0068b7;
  left: 20px;
}
@media screen and (max-width: 599px) {
  .top-cmn-ttl .jp span::after {
    left: 15px;
  }
}

.top-main {
  position: relative;
}
.top-main__inner {
  position: relative;
  height: 820px;
  background-color: #009cf4;
  background-image: url(../img/top/main_image.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  display: flex;
  align-items: center;
  padding-left: 145px;
  padding-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .top-main__inner {
    align-items: flex-start;
    height: 580px;
    margin-top: 80px;
    padding-left: 80px;
  }
}
@media screen and (max-width: 834px) {
  .top-main__inner {
    height: 500px;
    padding-left: 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__inner {
    height: 550px;
    margin-top: 60px;
    padding-bottom: 0;
    padding-left: 35px;
    background-image: url(../img/top/main_image_sp.jpg);
  }
}
.top-main__catch {
  margin-top: 115px;
  animation: fadein 3s forwards;
}
@media screen and (max-width: 1024px) {
  .top-main__catch {
    margin-top: 95px;
    width: 165px;
  }
}
@media screen and (max-width: 834px) {
  .top-main__catch {
    margin-top: 80px;
    width: 145px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__catch {
    width: 126px;
    margin-top: 60px;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.top-floating-bnr {
  width: 296px;
  position: fixed;
  z-index: 10;
  bottom: 15px;
  right: 45px;
  transition: 0.5s;
}
@media screen and (max-width: 1024px) {
  .top-floating-bnr {
    width: 260px;
    right: 10px;
    bottom: 10px;
  }
}
@media screen and (max-width: 834px) {
  .top-floating-bnr {
    width: 230px;
  }
}
@media screen and (max-width: 599px) {
  .top-floating-bnr {
    width: 190px;
    right: 2px;
    bottom: 2px;
  }
}
.top-floating-bnr:hover {
  opacity: 0.85;
}
#top .top-floating-bnr {
  bottom: 140px;
  right: 35px;
}
@media screen and (max-width: 1024px) {
  #top .top-floating-bnr {
    right: 10px;
    bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  #top .top-floating-bnr {
    right: 2px;
    bottom: 60px;
  }
}
#top .top-floating-bnr.is-animation {
  bottom: 15px;
}
@media screen and (max-width: 599px) {
  #top .top-floating-bnr.is-animation {
    bottom: 2px;
  }
}

.top-notice {
  position: absolute;
  bottom: -45px;
  left: 50px;
  right: 50px;
  margin: 0 auto;
  width: calc(100% - 100px);
  background-color: #fff;
  display: flex;
  min-height: 80px;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .top-notice {
    width: calc(100% - 50px);
    left: 25px;
    min-height: 76px;
  }
}
@media screen and (max-width: 599px) {
  .top-notice {
    position: relative;
    width: 100%;
    left: 0;
    flex-direction: column;
    bottom: auto;
  }
}
.top-notice__ttl {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ce1b2a;
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.7rem;
  padding: 20px 15px 20px 40px;
  min-width: 240px;
}
@media screen and (max-width: 1024px) {
  .top-notice__ttl {
    font-size: 1.6rem;
    min-width: 200px;
    padding: 20px 10px 20px 45px;
  }
}
@media screen and (max-width: 834px) {
  .top-notice__ttl {
    font-size: 1.5rem;
    padding: 15px 10px 15px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-notice__ttl {
    padding: 6px;
  }
}
.top-notice__ttl::before {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  content: "!";
  height: 28px;
  width: 28px;
  border-radius: 50px;
  left: 20px;
  position: absolute;
  font-size: 1.5rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .top-notice__ttl::before {
    height: 30px;
    width: 30px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 834px) {
  .top-notice__ttl::before {
    height: 26px;
    width: 26px;
    font-size: 1.4rem;
  }
}
.top-notice__link {
  position: relative;
  padding: 15px 45px;
  display: flex;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.8rem;
  color: #222;
  align-items: center;
  transition: 0.3s;
  letter-spacing: 0.03em;
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .top-notice__link {
    font-size: 1.6rem;
    padding: 15px 30px;
  }
}
@media screen and (max-width: 834px) {
  .top-notice__link {
    font-size: 1.5rem;
    flex-direction: column;
    align-items: start;
    padding: 15px 20px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 599px) {
  .top-notice__link {
    padding: 10px 35px 15px 15px;
    line-height: 1.4;
  }
}
.top-notice__link .day {
  margin-right: 22px;
  font-size: 1.7rem;
}
@media screen and (max-width: 1024px) {
  .top-notice__link .day {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 834px) {
  .top-notice__link .day {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-notice__link .day {
    margin-bottom: 2px;
    font-size: 1.4rem;
  }
}
.top-notice__link:hover {
  color: #d31020;
}
.top-notice__link::before, .top-notice__link::after {
  content: "";
  position: absolute;
  display: block;
}
.top-notice__link::before {
  height: 17px;
  width: 19px;
  right: 35px;
  top: 0px;
  bottom: 0;
  margin: auto;
  background-image: url(../img/top/arrow_red.png);
  background-size: 19px auto;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .top-notice__link::before {
    right: 20px;
    height: 16px;
    width: 17px;
    background-size: 17px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-notice__link::before {
    right: 14px;
  }
}

.top-contents {
  position: relative;
  padding: 175px 40px 105px;
  background-image: url(../img/top/contents_bg.webp);
  background-repeat: no-repeat;
  background-position: top center;
}
@media screen and (max-width: 1024px) {
  .top-contents {
    padding: 145px 40px 75px;
  }
}
@media screen and (max-width: 834px) {
  .top-contents {
    padding: 130px 30px 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-contents {
    padding: 75px 15px 30px;
  }
}
.top-contents::before {
  background-image: url(../img/top/contents_bg02.webp);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 470px;
  width: 650px;
  left: 0;
  position: absolute;
  top: 0px;
}
@media screen and (max-width: 1024px) {
  .top-contents::before {
    width: 360px;
    height: 320px;
  }
}
@media screen and (max-width: 834px) {
  .top-contents::before {
    width: 270px;
    height: 300px;
  }
}
@media screen and (max-width: 599px) {
  .top-contents::before {
    width: 55%;
    height: 50px;
  }
}

.top-intro {
  position: relative;
  max-width: 1640px;
  margin: 0 auto 160px;
  display: flex;
  gap: 100px;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .top-intro {
    gap: 40px;
    margin-bottom: 135px;
  }
}
@media screen and (max-width: 834px) {
  .top-intro {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 599px) {
  .top-intro {
    flex-direction: column;
  }
}
.top-intro__box {
  flex: 1;
}
.top-intro__catch {
  font-size: 3.9rem;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", serif;
  font-weight: 400;
  color: #2b2b2b;
  margin-bottom: 35px;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .top-intro__catch {
    font-size: 2.7rem;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 834px) {
  .top-intro__catch {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__catch {
    font-size: 1.9rem;
    margin-bottom: 25px;
    line-height: 1.7;
    margin-left: 130px;
  }
}
.top-intro__text {
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 2.4;
  margin-bottom: 55px;
  color: #2e343d;
}
@media screen and (max-width: 1024px) {
  .top-intro__text {
    font-size: 1.7rem;
    line-height: 2;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 834px) {
  .top-intro__text {
    font-size: 1.6rem;
    line-height: 1.9;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__text {
    font-size: 1.5rem;
  }
}
.top-intro__ph {
  position: relative;
  width: 690px;
}
@media screen and (max-width: 1024px) {
  .top-intro__ph {
    width: 350px;
  }
}
@media screen and (max-width: 834px) {
  .top-intro__ph {
    width: 230px;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__ph {
    position: static;
    width: 100%;
    height: auto;
  }
}
.top-intro__ph .ph-list {
  position: absolute;
  height: auto;
}
.top-intro__ph .ph01 {
  top: -50px;
  left: 0;
  width: 340px;
}
@media screen and (max-width: 1024px) {
  .top-intro__ph .ph01 {
    width: 270px;
    left: -15px;
  }
}
@media screen and (max-width: 834px) {
  .top-intro__ph .ph01 {
    width: 230px;
    top: -40px;
    left: -30px;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__ph .ph01 {
    width: 125px;
    top: -45px;
    left: -20px;
  }
}
.top-intro__ph .ph02 {
  width: 272px;
  top: 235px;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .top-intro__ph .ph02 {
    top: 230px;
    width: 220px;
  }
}
@media screen and (max-width: 834px) {
  .top-intro__ph .ph02 {
    width: 170px;
    top: 195px;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__ph .ph02 {
    width: 140px;
    bottom: -15px;
    top: auto;
  }
}
.top-intro__ph .ph03 {
  width: 158px;
  left: 120px;
  bottom: -90px;
}
@media screen and (max-width: 1024px) {
  .top-intro__ph .ph03 {
    width: 115px;
    bottom: -50px;
    left: 0px;
  }
}
@media screen and (max-width: 834px) {
  .top-intro__ph .ph03 {
    width: 100px;
    bottom: -25px;
  }
}
@media screen and (max-width: 599px) {
  .top-intro__ph .ph03 {
    width: 75px;
    left: auto;
    bottom: -55px;
    right: 110px;
  }
}

.top-news {
  position: relative;
  max-width: 1512px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 834px) {
  .top-news {
    flex-direction: column;
    padding-bottom: 60px;
  }
}
.top-news .top-cmn-ttl {
  position: static;
  margin-top: -10px;
  width: 330px;
  margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .top-news .top-cmn-ttl {
    width: 210px;
  }
}
@media screen and (max-width: 834px) {
  .top-news .top-cmn-ttl {
    width: 100%;
    margin-top: 0;
    margin-bottom: 15px;
  }
}
.top-news .top-cmn-ttl .jp {
  margin-bottom: 12px;
}
.top-news .top-cmn-ttl .top-more-btn {
  margin-top: 70px;
}
@media screen and (max-width: 834px) {
  .top-news .top-cmn-ttl .top-more-btn {
    position: absolute;
    right: 56px;
    bottom: 0;
    margin-top: 0;
  }
}
.top-news__list {
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .top-news__list .news-list__link {
    padding: 20px 0;
  }
}
@media screen and (max-width: 599px) {
  .top-news__list .news-list__link {
    padding: 18px 20px 18px 0px;
  }
}

.top-service {
  position: relative;
  padding: 140px 40px 20px;
}
@media screen and (max-width: 1024px) {
  .top-service {
    padding: 110px 40px 20px;
  }
}
@media screen and (max-width: 834px) {
  .top-service {
    padding: 80px 30px 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-service {
    padding: 65px 15px 20px;
  }
}
.top-service::before {
  background: #000;
  background-image: url(../img/top/service.webp);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
  content: "";
  height: 740px;
  width: 100%;
  left: 0;
  position: absolute;
  top: 0px;
  z-index: -1;
}
@media screen and (max-width: 834px) {
  .top-service::before {
    height: 450px;
  }
}
@media screen and (max-width: 599px) {
  .top-service::before {
    height: 520px;
  }
}
.top-service__inner {
  position: relative;
  max-width: 1512px;
  margin: 0 auto;
}
.top-service__ttl {
  position: relative;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 8rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .top-service__ttl {
    font-size: 6.1rem;
  }
}
@media screen and (max-width: 834px) {
  .top-service__ttl {
    font-size: 5.1rem;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-service__ttl {
    font-size: 3.9rem;
    line-height: 1.1;
  }
}
.top-service__ttl::before, .top-service__ttl::after {
  background: #d8161c;
  content: "";
  height: 5px;
  width: 25px;
  left: 0;
  margin: auto;
  position: absolute;
  top: -25px;
}
@media screen and (max-width: 1024px) {
  .top-service__ttl::before, .top-service__ttl::after {
    height: 4px;
    width: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-service__ttl::before, .top-service__ttl::after {
    height: 3px;
  }
}
.top-service__ttl::before {
  background: #d8161c;
}
.top-service__ttl::after {
  background: #0068b7;
  left: 25px;
}
@media screen and (max-width: 1024px) {
  .top-service__ttl::after {
    left: 20px;
  }
}
.top-service__text {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.2;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .top-service__text {
    font-size: 1.7rem;
    line-height: 1.9;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 834px) {
  .top-service__text {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 30px;
  }
}
.top-service__list {
  display: flex;
  gap: 27px;
}
@media screen and (max-width: 1024px) {
  .top-service__list {
    gap: 18px;
  }
}
@media screen and (max-width: 834px) {
  .top-service__list {
    gap: 5px;
    margin-left: -30px;
    margin-right: -30px;
  }
}
@media screen and (max-width: 599px) {
  .top-service__list {
    gap: 22px;
    margin-left: 35px;
    margin-right: 35px;
    flex-direction: column;
  }
}
.top-service__list__box {
  flex: 1;
}
.top-service__list__link {
  display: block;
  position: relative;
  background-color: #2d343e;
}
@media screen and (max-width: 599px) {
  .top-service__list__link {
    height: 325px;
    overflow: hidden;
  }
}
.top-service__list__link img {
  transition: 0.3s;
}
.top-service__list__link::before {
  background-color: #e50012;
  background-image: url(../img/top/arrow_white.png);
  background-size: 16px auto;
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
  height: 60px;
  width: 60px;
  right: 7px;
  bottom: 7px;
  position: absolute;
  z-index: 3;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .top-service__list__link::before {
    height: 45px;
    width: 45px;
    background-size: 14px auto;
    right: 5px;
    bottom: 5px;
  }
}
@media screen and (max-width: 834px) {
  .top-service__list__link::before {
    height: 40px;
    width: 40px;
  }
}
.top-service__list__link:hover img {
  opacity: 0.75;
}
@media screen and (min-width: 1025px) {
  .top-service__list__link:hover::before {
    background-position: center right 17px;
  }
}
.top-service__list__ttl {
  top: 50px;
  left: 40px;
  position: absolute;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .top-service__list__ttl {
    top: 28px;
    left: 20px;
  }
}
@media screen and (max-width: 834px) {
  .top-service__list__ttl {
    top: 28px;
    left: 15px;
  }
}
.top-service__list__ttl .jp {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 3.2rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .top-service__list__ttl .jp {
    font-size: 2.6rem;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 834px) {
  .top-service__list__ttl .jp {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 599px) {
  .top-service__list__ttl .jp {
    font-size: 2.1rem;
    letter-spacing: 0.03em;
  }
}
.top-service__list__ttl .en {
  color: #e50012;
  font-size: 2.2rem;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .top-service__list__ttl .en {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 834px) {
  .top-service__list__ttl .en {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-service__list__ttl .en {
    font-size: 1.4rem;
  }
}
.top-service__list__catch {
  position: relative;
  padding: 32px 0px 40px;
  font-size: 2.5rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #0c0c0c;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .top-service__list__catch {
    font-size: 1.9rem;
    letter-spacing: -0.03em;
  }
}
@media screen and (max-width: 834px) {
  .top-service__list__catch {
    font-size: 1.7rem;
    padding: 20px 8px 20px;
    line-height: 1.6;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-service__list__catch {
    padding: 16px 0px 20px;
  }
}
.top-service__list__catch::before, .top-service__list__catch::after {
  border-bottom: 1px solid #c8c8c8;
  content: "";
  height: 1px;
  width: 100%;
  left: 0;
  position: absolute;
  bottom: 0;
}
.top-service__list__catch::after {
  width: 50px;
  border-color: #e50012;
}

.top-company {
  position: relative;
  padding: 120px 50px 100px;
  background-image: url(../img/top/company_bg.webp);
  background-size: cover;
  background-position: center bottom;
}
@media screen and (max-width: 1024px) {
  .top-company {
    padding: 80px 40px 100px;
  }
}
@media screen and (max-width: 834px) {
  .top-company {
    padding: 60px 30px 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-company {
    padding: 35px 15px 40px;
  }
}
.top-company__inner {
  position: relative;
  max-width: 1512px;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 834px) {
  .top-company__inner {
    flex-direction: column;
  }
}
.top-company__inner::before {
  opacity: 0.75;
  background: #ECF2F7;
  background: linear-gradient(129deg, rgb(236, 242, 247) 0%, rgb(216, 230, 240) 44%, rgb(255, 255, 255) 100%);
  content: "";
  height: 100%;
  width: calc(100% - 135px);
  right: 135px;
  position: absolute;
  top: 0px;
}
@media screen and (max-width: 834px) {
  .top-company__inner::before {
    top: 35px;
    width: 100%;
    height: calc(100% - 35px);
    right: 0;
  }
}
.top-company__inner::after {
  background-image: url(../img/top/logo_mark.webp);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  width: 596px;
  height: 387px;
  right: 135px;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 834px) {
  .top-company__inner::after {
    width: 471px;
    height: 305px;
    right: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-company__inner::after {
    width: 300px;
    height: 195px;
  }
}
.top-company__right {
  padding-top: 60px;
  width: 400px;
  margin-left: 30px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .top-company__right {
    width: 240px;
    margin-left: 0px;
  }
}
@media screen and (max-width: 834px) {
  .top-company__right {
    padding-top: 0;
    width: 100%;
    padding: 0px 30px;
  }
}
.top-company__left {
  position: relative;
  max-width: 1030px;
  flex: 1;
  padding: 95px 100px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .top-company__left {
    padding: 55px;
  }
}
@media screen and (max-width: 834px) {
  .top-company__left {
    padding: 45px 45px 70px;
  }
}
@media screen and (max-width: 599px) {
  .top-company__left {
    padding: 25px 35px 45px;
  }
}
.top-company .top-cmn-ttl {
  text-align: right;
  margin-bottom: 35px;
}
@media screen and (max-width: 834px) {
  .top-company .top-cmn-ttl {
    text-align: left;
  }
}
.top-company .top-cmn-ttl .en {
  margin-bottom: 12px;
}
@media screen and (max-width: 599px) {
  .top-company .top-cmn-ttl .en {
    margin-bottom: 7px;
  }
}
.top-company__catch {
  position: absolute;
  right: -20px;
  font-family: "Shippori Mincho", serif;
  font-size: 3.1rem;
  line-height: 1.9;
}
@media screen and (max-width: 1024px) {
  .top-company__catch {
    font-size: 2.4rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 834px) {
  .top-company__catch {
    font-size: 2.2rem;
    position: relative;
    right: auto;
  }
}
@media screen and (max-width: 599px) {
  .top-company__catch {
    font-size: 1.8rem;
  }
}
.top-company__list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 60px;
}
@media screen and (max-width: 1024px) {
  .top-company__list {
    gap: 20px 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-company__list {
    gap: 20px;
    flex-direction: column;
  }
}
.top-company__list__box {
  position: relative;
  width: calc((100% - 60px) / 2);
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .top-company__list__box {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .top-company__list__box {
    width: 100%;
  }
}
.top-company__list__link {
  display: block;
  position: relative;
}
.top-company__list__link img {
  transition: 0.3s;
}
@media screen and (min-width: 1025px) {
  .top-company__list__link:hover img {
    opacity: 0.85;
  }
  .top-company__list__link:hover .top-company__list__st::before {
    background-position: center right 14px;
  }
}
.top-company__list__ph {
  background: #2d343e;
}
.top-company__list__st {
  position: relative;
  line-height: 1.4;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
@media screen and (max-width: 599px) {
  .top-company__list__st {
    margin-top: 12px;
  }
}
.top-company__list__st::before {
  transition: 0.3s;
  background-color: #000;
  background-image: url(../img/top/arrow_white.png);
  background-size: 14px auto;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 50px;
  content: "";
  height: 50px;
  width: 50px;
  right: 0;
  position: absolute;
  top: -9px;
}
@media screen and (max-width: 1024px) {
  .top-company__list__st::before {
    height: 40px;
    width: 40px;
    background-size: 12px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-company__list__st::before {
    top: -6px;
    height: 32px;
    width: 32px;
  }
}
.top-company__list__st .jp {
  font-size: 2.7rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #222;
  transition: 0.3s;
  margin-right: 15px;
}
@media screen and (max-width: 1024px) {
  .top-company__list__st .jp {
    font-size: 2.2rem;
    margin-right: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-company__list__st .jp {
    font-size: 1.8rem;
    letter-spacing: 0.04em;
  }
}
.top-company__list__st .en {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: 0.3s;
  color: #0068b7;
}
@media screen and (max-width: 1024px) {
  .top-company__list__st .en {
    font-size: 1.2rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-company__list__st .en {
    font-size: 1rem;
  }
}

.top-group {
  padding: 20px 50px 0px;
  margin-bottom: -90px;
}
@media screen and (max-width: 1024px) {
  .top-group {
    padding: 20px 25px 0px;
    margin-bottom: -50px;
  }
}
@media screen and (max-width: 834px) {
  .top-group {
    padding: 20px 30px 0px;
  }
}
@media screen and (max-width: 599px) {
  .top-group {
    padding: 20px 15px 15px;
    margin-bottom: 0px;
  }
}
.top-group .top-cmn-ttl {
  text-align: center;
  margin-bottom: 55px;
}
@media screen and (max-width: 599px) {
  .top-group .top-cmn-ttl {
    margin-bottom: 40px;
  }
}
.top-group .top-cmn-ttl .en {
  font-size: 8rem;
}
@media screen and (max-width: 1024px) {
  .top-group .top-cmn-ttl .en {
    font-size: 6.2rem;
  }
}
@media screen and (max-width: 834px) {
  .top-group .top-cmn-ttl .en {
    font-size: 5.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-group .top-cmn-ttl .en {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-group .top-cmn-ttl .jp {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-group .top-cmn-ttl .jp {
    font-size: 1.5rem;
  }
}
.top-group .top-cmn-ttl .jp span {
  padding-left: 0;
  padding-bottom: 25px;
}
@media screen and (max-width: 599px) {
  .top-group .top-cmn-ttl .jp span {
    padding-bottom: 15px;
  }
}
.top-group .top-cmn-ttl .jp span::before, .top-group .top-cmn-ttl .jp span::after {
  left: 0;
  right: 0;
  margin: auto;
  top: auto;
  width: 25px;
}
.top-group .top-cmn-ttl .jp span::before {
  left: -25px;
}
@media screen and (max-width: 1024px) {
  .top-group .top-cmn-ttl .jp span::before {
    left: -20px;
  }
}
.top-group .top-cmn-ttl .jp span::after {
  left: 25px;
}
@media screen and (max-width: 1024px) {
  .top-group .top-cmn-ttl .jp span::after {
    left: 20px;
  }
}
.top-group__text {
  text-align: center;
  font-weight: 500;
  margin-bottom: 45px;
  font-size: 1.7rem;
  letter-spacing: 1px;
  line-height: 1.9;
}
@media screen and (max-width: 834px) {
  .top-group__text {
    font-size: 1.6rem;
    margin-bottom: 30px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-group__text {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 25px;
  }
}
.top-group__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .top-group__inner {
    gap: 15px;
  }
}
@media screen and (max-width: 834px) {
  .top-group__inner {
    flex-direction: column;
    margin: 0px 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-group__inner {
    gap: 10px;
  }
}
.top-group__box {
  position: relative;
  background: #202124;
  display: flex;
  width: calc((100% - 30px) / 2);
  max-height: 350px;
  overflow: hidden;
}
.top-group__box.group03, .top-group__box.group04 {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .top-group__box {
    width: calc((100% - 15px) / 2);
  }
}
@media screen and (max-width: 834px) {
  .top-group__box {
    width: 100%;
    max-height: 260px;
  }
  .top-group__box.group03 {
    flex-direction: row;
  }
  .top-group__box.group02, .top-group__box.group04 {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 599px) {
  .top-group__box {
    display: flex;
    width: 100%;
  }
}
.top-group__image {
  flex: 1;
}
@media screen and (max-width: 599px) {
  .top-group__image {
    width: 50%;
  }
}
@media screen and (max-width: 599px) {
  .top-group__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
}
.top-group__cont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42%;
  padding: 25px;
  text-align: center;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .top-group__cont {
    padding: 10px;
  }
}
@media screen and (max-width: 834px) {
  .top-group__cont {
    padding: 20px;
    width: 40%;
  }
}
@media screen and (max-width: 599px) {
  .top-group__cont {
    padding: 0;
  }
}
.top-group__cont__link {
  display: block;
  transition: 0.3s;
}
.top-group__cont__link:hover {
  opacity: 0.75;
}
@media screen and (max-width: 1024px) {
  .top-group__cont__logo {
    padding: 0 5px;
  }
}
@media screen and (max-width: 599px) {
  .top-group__cont__logo {
    padding: 0;
    width: 85%;
    margin: 0 auto;
  }
}
.top-group__cont__logo img {
  width: 267px;
}

/*.top-contact{
    background-color: #556677;
    height: 600px;
    @include display-flex;
    @include justify-content-space-between;
    @include mq(tb02) {
        @include flex-direction-column;
        height: auto;
    }
    &__box{
        width : calc(100% / 3);
        padding: 100px 60px 145px;
        @include display-flex;
        @include justify-content-center;
        text-align: center;
        @include mq(tb02) {
            width: 100%;
            padding: 35px 20px 50px;
        }
        &__inner {
            @include display-flex;
            @include flex-direction-column;
            @include align-items-center;
        }
    }
    &__ttl{
        position: relative;
        font-size: 2rem;
        font-weight: 400;
        color: #fff;
        padding-bottom: 10px;
        margin-bottom: 30px;
        letter-spacing: 0.02em;
        @include mq(tb) {
            margin-bottom: 25px;
        }
        @include mq(sp) {
            margin-bottom: 18px;
            font-size: 1.6rem;
        }
        &::before {
            background:$cl-red;
            content: '';
            height: 1px;
            width: 20px;
            left: 0;
            right: 0;
            margin: auto;
            position: absolute;
            bottom: 0;
            @include mq(sp) {
                width: 15px;
            }
        }
    }
    &__text{
        text-align: left;
        font-size: 2.2rem;
        line-height: 2.45;
        letter-spacing: 0.09em;
        color: #fff;
        writing-mode: vertical-rl;
        margin-bottom: 65px;
        white-space: nowrap;
        @include mq(tb) {
            margin-bottom: 40px;
            font-size: 1.9rem;
        }
        @include mq(sp) {
            margin-bottom: 30px;
            font-size: 1.8rem;
        }
    }
    &__access{
        width : calc( 100% - ( 100% / 3 ) );
        @include mq(tb02) {
            width: 100%;
            height: 375px;
        }
    }
}*/
.notice-sec {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .notice-sec {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .notice-sec {
    margin-bottom: 45px;
  }
}
.notice-sec:last-child {
  margin-bottom: 0;
}

.notice__main {
  position: relative;
  margin-bottom: 44px;
  width: 100%;
  height: 400px;
  background-image: url(../img/notice/main_bg.jpg);
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .notice__main {
    margin-bottom: 40px;
    height: 320px;
  }
}
@media screen and (max-width: 599px) {
  .notice__main {
    margin-bottom: 30px;
    height: 225px;
    background-position: 25% 0;
    background-color: rgba(255, 255, 255, 0.2);
    background-blend-mode: lighten;
  }
}
@media screen and (max-width: 320px) {
  .notice__main {
    height: 210px;
  }
}
.notice__main__catch {
  position: absolute;
  top: 96px;
  left: 62px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 4.4rem;
  color: #0068b7;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1024px) {
  .notice__main__catch {
    top: 70px;
    left: 55px;
    font-size: 3.9rem;
  }
}
@media screen and (max-width: 599px) {
  .notice__main__catch {
    top: 38px;
    left: 25px;
    font-size: 2.7rem;
    line-height: 1.3;
    text-shadow: 0px 0px 6px #fff;
  }
}
@media screen and (max-width: 320px) {
  .notice__main__catch {
    top: 30px;
  }
}
.notice__main__catch .sub {
  position: relative;
  display: block;
  margin-top: 18px;
  padding-left: 50px;
  font-size: 2.3rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
  .notice__main__catch .sub {
    padding-left: 40px;
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 599px) {
  .notice__main__catch .sub {
    margin-top: 10px;
    padding-left: 30px;
    font-size: 1.6rem;
  }
}
.notice__main__catch .sub::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: #0068b7;
}
@media screen and (max-width: 1024px) {
  .notice__main__catch .sub::before {
    width: 32px;
  }
}
@media screen and (max-width: 599px) {
  .notice__main__catch .sub::before {
    width: 22px;
  }
}
.notice__catch {
  position: relative;
  margin-bottom: 47px;
  padding: 28px 10px 30px;
  font-family: "Shippori Mincho", serif;
  font-size: 3.5rem;
  color: #222;
  text-align: center;
  font-weight: 400;
  background: linear-gradient(90deg, #fbebec 0%, #fff 25%, #fff 75%, #fbebec 100%);
}
@media screen and (max-width: 1400px) {
  .notice__catch {
    font-size: 2.36vw;
  }
}
@media screen and (max-width: 1024px) {
  .notice__catch {
    margin-bottom: 40px;
    padding: 22px 10px 24px;
    font-size: 2.9rem;
  }
}
@media screen and (max-width: 834px) {
  .notice__catch {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .notice__catch {
    margin-bottom: 30px;
    padding: 16px 10px 18px;
    font-size: 2.1rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 320px) {
  .notice__catch {
    font-size: 1.9rem;
  }
}
.notice__catch::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 70px;
  height: 3px;
  background-color: #e50012;
}
@media screen and (max-width: 599px) {
  .notice__catch::before {
    width: 46px;
    height: 2px;
  }
}
.notice__lead {
  margin-bottom: 40px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 1.8rem;
  color: #222;
  text-align: center;
  line-height: 2.3;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .notice__lead {
    margin-bottom: 35px;
    font-size: 1.7rem;
    line-height: 2;
  }
}
@media screen and (max-width: 834px) {
  .notice__lead {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .notice__lead {
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: justify;
    line-height: 1.8;
  }
}
.notice__movie {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 680px;
  aspect-ratio: 16/9;
}
.notice__movie .notice_movie {
  width: 100%;
  height: 100%;
}
.notice__movie .movie_btn {
  position: absolute;
  width: 72px;
  height: 72px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  .notice__movie .movie_btn {
    width: 60px;
    height: 60px;
  }
}
.notice__company {
  position: relative;
  padding: 50px 30px 46px;
  background-color: rgba(0, 104, 183, 0.05);
}
@media screen and (max-width: 1024px) {
  .notice__company {
    padding: 48px 30px 44px;
  }
}
@media screen and (max-width: 599px) {
  .notice__company {
    padding: 34px 20px 30px;
  }
}
.notice__company::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 48px;
  top: -24px;
  left: 0;
  right: 0;
  margin: auto;
  background: linear-gradient(180deg, #0068b7 0%, #75C8EF 100%);
}
@media screen and (max-width: 1024px) {
  .notice__company::before {
    height: 44px;
    top: -22px;
  }
}
@media screen and (max-width: 599px) {
  .notice__company::before {
    height: 36px;
    top: -18px;
  }
}
.notice__company__catch {
  position: relative;
  margin-bottom: 32px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.6rem;
  color: #222;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1024px) {
  .notice__company__catch {
    margin-bottom: 20px;
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 599px) {
  .notice__company__catch {
    margin-bottom: 14px;
    font-size: 1.8rem;
  }
}
.notice__company__lead {
  margin-bottom: 46px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #222;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1024px) {
  .notice__company__lead {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 599px) {
  .notice__company__lead {
    margin-bottom: 25px;
  }
}
.notice__company__logo {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .notice__company__logo {
    width: 460px;
  }
}
@media screen and (max-width: 834px) {
  .notice__company__logo {
    width: 420px;
  }
}
@media screen and (max-width: 599px) {
  .notice__company__logo {
    width: 86%;
  }
}
.notice__ttl {
  position: relative;
  margin-bottom: 35px;
  padding: 12px 12px 12px 20px;
  font-size: 2.5rem;
  color: #222;
  background-color: #f1f3f4;
}
@media screen and (max-width: 1024px) {
  .notice__ttl {
    margin-bottom: 30px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .notice__ttl {
    margin-bottom: 25px;
    padding: 10px 10px 8px 18px;
    font-size: 1.9rem;
  }
}
.notice__ttl::before, .notice__ttl::after {
  content: "";
  position: absolute;
  width: 2px;
  left: 0;
  bottom: 0;
}
.notice__ttl::before {
  height: 100%;
  background-color: #e50012;
}
.notice__ttl::after {
  height: 50%;
  background-color: #556677;
}
.notice__policy {
  position: relative;
  padding: 30px 0 32px 78px;
  width: 100%;
  height: 540px;
  background-image: url(../img/notice/policy_bg.jpg);
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .notice__policy {
    padding: 30px 0 32px 40px;
    height: 480px;
    background-position: 80% 0;
  }
}
@media screen and (max-width: 834px) {
  .notice__policy {
    height: 440px;
  }
}
@media screen and (max-width: 599px) {
  .notice__policy {
    padding: 15px 0 12px;
    height: 280px;
  }
}
.notice__policy__figure {
  height: 100%;
}
@media screen and (max-width: 599px) {
  .notice__policy__figure {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.notice__policy__figure img {
  width: auto;
  height: 100%;
}
.notice__business-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .notice__business-list {
    gap: 22px;
  }
}
.notice__business-list__item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 1024px) {
  .notice__business-list__item {
    width: calc((100% - 44px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .notice__business-list__item {
    width: 100%;
  }
}
.notice__business-list__item__ttl {
  position: relative;
  margin-bottom: 24px;
  padding-left: 26px;
  padding-bottom: 12px;
  font-size: 2rem;
  line-height: 1.28;
  font-weight: 600;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
  border-bottom: 2px solid #dfdfdf;
}
@media screen and (max-width: 1024px) {
  .notice__business-list__item__ttl {
    margin-bottom: 16px;
    padding: 10px 0 12px 22px;
    font-size: 1.8rem;
    line-height: 1;
  }
}
@media screen and (max-width: 599px) {
  .notice__business-list__item__ttl {
    margin-bottom: 12px;
    padding: 7px 0 9px 18px;
    font-size: 1.6rem;
    line-height: 1.2;
  }
}
.notice__business-list__item__ttl .en {
  display: block;
  font-family: "Overpass", sans-serif;
  font-size: 3.8rem;
  color: #e50012;
  letter-spacing: -0.015em;
}
@media screen and (max-width: 1024px) {
  .notice__business-list__item__ttl .en {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 599px) {
  .notice__business-list__item__ttl .en {
    font-size: 2.8rem;
  }
}
.notice__business-list__item__ttl::before, .notice__business-list__item__ttl::after {
  content: "";
  position: absolute;
  width: 5px;
  left: 0;
  bottom: -2px;
}
@media screen and (max-width: 599px) {
  .notice__business-list__item__ttl::before, .notice__business-list__item__ttl::after {
    width: 3px;
  }
}
.notice__business-list__item__ttl::before {
  height: 100%;
  background-color: #e50012;
}
.notice__business-list__item__ttl::after {
  height: 50%;
  background-color: #000;
}
.notice__business-list__item__txt {
  color: #222;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
.notice__business-list__item__box {
  display: flex;
  flex-grow: 1;
  margin-top: 26px;
  padding: 12px 15px;
  border: 1px dotted #556677;
}
@media screen and (max-width: 1024px) {
  .notice__business-list__item__box {
    margin-top: 15px;
    padding: 10px 15px;
  }
}
@media screen and (max-width: 599px) {
  .notice__business-list__item__box {
    margin-top: 10px;
    padding: 8px 15px;
  }
}
.notice__business-list__item__box.column2 {
  gap: 28px;
}
@media screen and (max-width: 1500px) {
  .notice__business-list__item__box.column2 {
    flex-direction: column;
    gap: 0;
  }
}
.notice__business-list__item__list > li {
  position: relative;
  padding-left: 16px;
}
.notice__business-list__item__list > li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #556677;
  border-radius: 50%;
}
.notice__business-list__item__btn {
  position: relative;
  display: block;
  margin: 30px auto 0;
  padding: 14px 0;
  width: 100%;
  max-width: 260px;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  font-feature-settings: "palt";
  background-color: #222;
  border-radius: 100vmax;
}
@media screen and (max-width: 1024px) {
  .notice__business-list__item__btn {
    margin-top: 20px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .notice__business-list__item__btn {
    margin-top: 16px;
    padding: 12px 0;
    max-width: 230px;
    font-size: 1.6rem;
  }
}
.notice__business-list__item__btn::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .notice__business-list__item__btn::before {
    width: 8px;
    height: 8px;
    right: 16px;
  }
}
@media screen and (min-width: 1025px) {
  .notice__business-list__item__btn:hover {
    background: #e50012;
  }
}
.notice__history-catch {
  margin-bottom: 40px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.2rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1024px) {
  .notice__history-catch {
    margin-bottom: 30px;
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .notice__history-catch {
    margin-bottom: 20px;
    font-size: 1.7rem;
  }
}

.company-outline__table {
  width: 100%;
}
.company-outline__table__th {
  width: 200px;
  padding: 30px 0 30px 10px;
  border-top: 1px solid #e50012;
  color: #222;
  text-align: left;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1024px) {
  .company-outline__table__th {
    width: 180px;
    padding: 20px 0 20px 10px;
  }
}
@media screen and (max-width: 834px) {
  .company-outline__table__th {
    width: 120px;
  }
}
@media screen and (max-width: 599px) {
  .company-outline__table__th {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
}
.company-outline__table__td {
  position: relative;
  width: calc(100% - 200px);
  padding: 30px 0 30px 20px;
  border-top: 1px solid #d7d7d7;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .company-outline__table__td {
    width: calc(100% - 180px);
    padding: 20px 0 20px 10px;
  }
}
@media screen and (max-width: 834px) {
  .company-outline__table__td {
    width: calc(100% - 120px);
  }
}
@media screen and (max-width: 599px) {
  .company-outline__table__td {
    display: block;
    width: 100%;
    padding: 10px 0 20px;
  }
}
.company-outline__table__list {
  display: flex;
  margin: 0 0 0 -30px;
}
@media screen and (max-width: 1024px) {
  .company-outline__table__list {
    margin: 0 0 0 -20px;
  }
}
@media screen and (max-width: 599px) {
  .company-outline__table__list {
    display: block;
    margin: 0;
  }
}
.company-outline__table__list__item {
  width: calc((99.9% - 90px) / 3);
  margin: 0 0 0 30px;
}
@media screen and (max-width: 1024px) {
  .company-outline__table__list__item {
    width: calc((99.9% - 60px) / 3);
    margin: 0 0 0 20px;
  }
}
@media screen and (max-width: 599px) {
  .company-outline__table__list__item {
    width: 100%;
    margin: 0;
  }
}
.company-outline__table__def-list {
  margin-left: -20px;
}
@media screen and (max-width: 1024px) {
  .company-outline__table__def-list {
    margin-left: -10px;
  }
}
@media screen and (max-width: 599px) {
  .company-outline__table__def-list {
    margin-left: 0;
  }
}
.company-outline__table__def-list__item {
  display: flex;
}
.company-outline__table__def-list__item:not(:last-child) {
  border-bottom: 1px solid #d7d7d7;
}
.company-outline__table__def-list__dt {
  width: 180px;
  padding: 18px 0 18px 18px;
}
@media screen and (max-width: 1024px) {
  .company-outline__table__def-list__dt {
    padding: 15px 0 15px 15px;
  }
}
@media screen and (max-width: 599px) {
  .company-outline__table__def-list__dt {
    width: 120px;
    padding: 10px 0;
  }
}
.company-outline__table__def-list__dd {
  width: calc(100% - 180px);
  padding: 18px 0;
}
@media screen and (max-width: 1024px) {
  .company-outline__table__def-list__dd {
    padding: 15px 0;
  }
}
@media screen and (max-width: 599px) {
  .company-outline__table__def-list__dd {
    padding: 10px 0;
    line-height: 1.6;
  }
}
.company-outline__table__current-text {
  position: absolute;
  right: 0;
  bottom: 10px;
  font-size: 1.4rem;
}
@media screen and (max-width: 599px) {
  .company-outline__table__current-text {
    font-size: 1.2rem;
  }
}
.company-outline__table__def-list02 {
  margin-left: -20px;
}
@media screen and (max-width: 1024px) {
  .company-outline__table__def-list02 {
    margin-left: -10px;
  }
}
@media screen and (max-width: 599px) {
  .company-outline__table__def-list02 {
    margin-left: 0;
  }
}
.company-outline__table__def-list02__item {
  padding: 20px;
  border-top: 1px solid #d7d7d7;
}
@media screen and (max-width: 1024px) {
  .company-outline__table__def-list02__item {
    padding: 15px;
  }
}
@media screen and (max-width: 599px) {
  .company-outline__table__def-list02__item {
    padding: 10px 0;
  }
}
.company-outline__table__def-list02__item:last-child {
  padding-bottom: 0;
}
.company-outline__table__def-list02__dt {
  position: relative;
  padding-left: 18px;
  font-weight: 700;
}
.company-outline__table__def-list02__dt::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 7px;
  height: 7px;
  background-color: #e50012;
}
@media screen and (max-width: 1024px) {
  .company-outline__table__def-list02__dt::before {
    top: 11px;
  }
}
.company-outline__table__def-list02__dd {
  padding-left: 18px;
}
@media screen and (max-width: 599px) {
  .company-outline__table__def-list02__dd {
    line-height: 1.6;
  }
}
.company-outline__table__def-list02__dd a {
  color: inherit;
}
.company-outline__table__title {
  position: relative;
  margin-bottom: 20px;
  padding: 10px 10px 8px 30px;
  background-color: #f4f4f4;
  color: #222;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .company-outline__table__title {
    margin-top: 10px;
    padding: 10px 10px 8px 25px;
  }
}
@media screen and (max-width: 599px) {
  .company-outline__table__title {
    margin-bottom: 10px;
    padding: 8px 8px 6px 20px;
  }
}
.company-outline__table__title::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 14px;
  height: 2px;
  margin: auto 0;
  background-color: #e50012;
}
@media screen and (max-width: 599px) {
  .company-outline__table__title::before {
    width: 12px;
  }
}
.company-outline__table__def-list03__item:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .company-outline__table__def-list03__item:not(:last-child) {
    margin-bottom: 12px;
  }
}
.company-outline__table__def-list03__dt {
  margin-bottom: 3px;
}
.company-outline__table__def-list03__dd {
  line-height: 1.6;
}
.company-outline__table__def-list03__dd a {
  color: inherit;
}

.company-philosophy__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 45px 35px;
  background-image: url(../img/company/philosophy/philosophy_copy_bg.jpg);
  background-color: #eef5fc;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 65px;
  font-size: 2.7rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #314b64;
  letter-spacing: 1.8px;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .company-philosophy__copy {
    padding: 40px;
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 834px) {
  .company-philosophy__copy {
    padding: 25px;
    margin-bottom: 40px;
    font-size: 1.8rem;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 599px) {
  .company-philosophy__copy {
    padding: 20px;
    margin-bottom: 25px;
    font-size: 1.6rem;
    letter-spacing: 0.5px;
    line-height: 1.7;
  }
}
.company-philosophy__text {
  font-weight: 600;
  margin-bottom: 60px;
  line-height: 2;
  letter-spacing: 1px;
  font-size: 1.7rem;
  color: #282f4a;
}
@media screen and (max-width: 834px) {
  .company-philosophy__text {
    margin-bottom: 40px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .company-philosophy__text {
    margin-bottom: 30px;
    font-size: 1.4rem;
    line-height: 1.7;
  }
}
.company-philosophy__image {
  max-width: 620px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .company-philosophy__image {
    width: 60%;
  }
}
@media screen and (max-width: 834px) {
  .company-philosophy__image {
    width: 70%;
  }
}
@media screen and (max-width: 599px) {
  .company-philosophy__image {
    width: 100%;
  }
}

.company-history__list {
  padding-left: 5px;
}
.company-history__list__item {
  display: flex;
  position: relative;
  padding-left: 50px;
}
@media screen and (max-width: 599px) {
  .company-history__list__item {
    display: block;
    padding-left: 40px;
  }
}
.company-history__list__item::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: #e50012;
  border-radius: 50%;
}
@media screen and (max-width: 834px) {
  .company-history__list__item::after {
    top: 15px;
  }
}
@media screen and (max-width: 599px) {
  .company-history__list__item::after {
    top: 13px;
  }
}
.company-history__list__item:not(:last-child) {
  padding-bottom: 60px;
}
@media screen and (max-width: 834px) {
  .company-history__list__item:not(:last-child) {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .company-history__list__item:not(:last-child) {
    padding-bottom: 25px;
  }
}
.company-history__list__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 5px;
  width: 3px;
  height: 100%;
  background-color: #e9e9e9;
}
@media screen and (max-width: 599px) {
  .company-history__list__item:not(:last-child)::before {
    width: 2px;
  }
}
.company-history__list__year {
  position: relative;
  width: 190px;
  line-height: 1.5;
}
@media screen and (max-width: 834px) {
  .company-history__list__year {
    width: 170px;
  }
}
@media screen and (max-width: 599px) {
  .company-history__list__year {
    width: 100%;
    margin-bottom: 10px;
  }
}
.company-history__list__year::before {
  content: "";
  position: absolute;
  top: 21px;
  left: -50px;
  width: 35px;
  height: 2px;
  border-top: 2px dotted #e50012;
}
@media screen and (max-width: 834px) {
  .company-history__list__year::before {
    top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .company-history__list__year::before {
    top: 18px;
    left: -40px;
    width: 30px;
  }
}
.company-history__list__year__text01 {
  color: #e50012;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 834px) {
  .company-history__list__year__text01 {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .company-history__list__year__text01 {
    font-size: 1.6rem;
  }
}
.company-history__list__year__text01 span {
  font-size: 2.7rem;
}
@media screen and (max-width: 834px) {
  .company-history__list__year__text01 span {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .company-history__list__year__text01 span {
    font-size: 2.4rem;
  }
}
.company-history__list__year__text02 {
  margin-left: -8px;
  color: #222;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 599px) {
  .company-history__list__year__text02 {
    font-size: 1.4rem;
  }
}
.company-history__list__content {
  width: calc(100% - 190px);
}
@media screen and (max-width: 834px) {
  .company-history__list__content {
    width: calc(100% - 170px);
  }
}
@media screen and (max-width: 599px) {
  .company-history__list__content {
    width: 100%;
  }
}

.news-list {
  border-top: 1px solid #d5d5d5;
}
.news-list__item {
  border-bottom: 1px solid #d5d5d5;
}
.news-list__item.is-hide {
  display: none;
}
.news-list__link {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 28px 40px 28px 0;
  color: #222;
  font-size: 1.6rem;
  background-image: url(../img/top/arrow_gray.png);
  background-repeat: no-repeat;
  background-position: center right 20px;
  background-size: 18px auto;
}
@media screen and (max-width: 1024px) {
  .news-list__link {
    background-position: center right;
  }
}
@media screen and (max-width: 834px) {
  .news-list__link {
    padding: 18px 0;
  }
}
@media screen and (max-width: 599px) {
  .news-list__link {
    background-size: 15px auto;
  }
}
.news-list__date {
  width: 135px;
}
@media screen and (max-width: 1024px) {
  .news-list__date {
    width: 125px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 834px) {
  .news-list__date {
    width: 115px;
    font-size: 1.4rem;
  }
}
.news-list__category {
  width: 120px;
  margin-top: -2px;
  padding: 5px 4px 4px;
  background-color: #222;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .news-list__category {
    width: 90px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 834px) {
  .news-list__category {
    margin-top: 0;
    padding: 1px;
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 599px) {
  .news-list__category {
    width: 80px;
  }
}
.news-list__category.info {
  background-color: #155ca5;
}
.news-list__category.recruit {
  background-color: #55c7ee;
}
.news-list__category.insurance {
  background-color: #265e41;
}
.news-list__category.estate {
  background-color: #3c2f84;
}
.news-list__title {
  width: calc(100% - 135px - 120px);
  padding-left: 20px;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .news-list__title {
    width: calc(100% - 135px - 100px);
  }
}
@media screen and (max-width: 834px) {
  .news-list__title {
    width: 100%;
    margin-top: 7px;
    padding-left: 0;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .news-list__title {
    font-size: 1.4rem;
  }
}
.news-list__title:hover {
  padding-left: 27px;
}

.news-title {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 40px;
  padding: 35px 50px 45px 56px;
  background-color: #f4f4f4;
  color: #222;
}
@media screen and (max-width: 1024px) {
  .news-title {
    padding: 25px 40px 35px 50px;
  }
}
@media screen and (max-width: 599px) {
  .news-title {
    margin-bottom: 20px;
    padding: 20px 15px 20px 25px;
  }
}
.news-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 41px;
  height: 119px;
  background-image: url(../img/common/triangle.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1024px) {
  .news-title::before {
    width: 36px;
    height: 104px;
  }
}
@media screen and (max-width: 599px) {
  .news-title::before {
    width: 27px;
    height: 78px;
  }
}
.news-title__date {
  width: 130px;
}
@media screen and (max-width: 1024px) {
  .news-title__date {
    width: 120px;
  }
}
@media screen and (max-width: 599px) {
  .news-title__date {
    width: 110px;
    font-size: 1.4rem;
  }
}
.news-title__category {
  width: 100px;
  margin-top: 1px;
  padding: 2px;
  background-color: #222;
  border-left-width: 5px;
  border-left-style: solid;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .news-title__category {
    margin-top: 0;
  }
}
@media screen and (max-width: 599px) {
  .news-title__category {
    font-size: 1.1rem;
  }
}
.news-title__category.info {
  border-left-color: #eb0;
}
.news-title__category.recruit {
  border-left-color: #55c7ee;
}
.news-title__category.insurance {
  border-left-color: #3b7;
}
.news-title__title {
  width: 100%;
  margin-top: 28px;
  font-size: 2.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .news-title__title {
    margin-top: 20px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .news-title__title {
    margin-top: 8px;
    font-size: 1.7rem;
    line-height: 1.5;
  }
}

.news-content {
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .news-content {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 599px) {
  .news-content {
    margin-bottom: 50px;
  }
}
.news-content__layout01 {
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .news-content__layout01 {
    display: flex;
    flex-direction: column-reverse;
  }
}
.news-content__layout01 .photo-right {
  float: right;
  margin-left: 40px;
}
@media screen and (max-width: 599px) {
  .news-content__layout01 .photo-right {
    float: none;
    margin: 20px 0px;
    display: block;
    text-align: center;
  }
}
.news-content__text {
  line-height: 2.3;
}
@media screen and (max-width: 599px) {
  .news-content__text {
    line-height: 2;
  }
}
.news-content__contact {
  margin-top: 40px;
  color: #222;
}
@media screen and (max-width: 599px) {
  .news-content__contact {
    margin-top: 20px;
  }
}
.news-content__contact__title {
  position: relative;
  margin-bottom: 15px;
  padding-left: 20px;
  padding-bottom: 7px;
  font-size: 1.8rem;
  font-weight: 700;
  border-bottom: 1px solid #222;
}
@media screen and (max-width: 599px) {
  .news-content__contact__title {
    padding-left: 15px;
    font-size: 1.6rem;
  }
}
.news-content__contact__title::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 10px;
  height: 3px;
  background-color: #e50012;
}
@media screen and (max-width: 599px) {
  .news-content__contact__title::before {
    top: 13px;
  }
}
.news-content__contact__box {
  padding: 20px;
  background-color: #f4f4f4;
}
.news-content__contact__box__title {
  margin-bottom: 5px;
  font-weight: 700;
}
.news-content__contact__box__text {
  font-size: 1.5rem;
}
@media screen and (max-width: 599px) {
  .news-content__contact__box__text {
    font-size: 1.4rem;
  }
}
.news-content__contact__box__indent {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.5rem;
}
@media screen and (max-width: 599px) {
  .news-content__contact__box__indent {
    font-size: 1.4rem;
  }
}

.news-button {
  display: block;
  max-width: 210px;
  margin: 0 auto;
  padding: 8px;
  border-right: 1px solid #202020;
  border-left: 1px solid #202020;
  color: #222;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .news-button {
    padding: 5px;
  }
}
.news-button > span {
  position: relative;
}
.news-button > span::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 0;
  left: 0;
  width: 100%;
  height: 1px;
  margin: 0 auto;
  border-bottom: 1px dotted #222;
}
@media screen and (max-width: 599px) {
  .news-button > span::after {
    bottom: -6px;
  }
}
.news-button:hover > span::after {
  border-color: #e50012;
}

.inquiry-box {
  display: flex;
  border: 1px dotted #567;
}
@media screen and (max-width: 599px) {
  .inquiry-box {
    flex-direction: column;
  }
}
.inquiry-box__title {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 320px;
  background-color: #567;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1400px) {
  .inquiry-box__title {
    width: 280px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 834px) {
  .inquiry-box__title {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .inquiry-box__title {
    width: 100%;
    padding: 13px 10px;
  }
}
.inquiry-box__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 1px;
  height: 60px;
  background-color: #f00;
}
@media screen and (max-width: 599px) {
  .inquiry-box__title::before {
    height: 40px;
  }
}
.inquiry-box__content {
  display: flex;
  align-items: center;
  width: calc(100% - 320px);
  padding: 40px 40px;
}
@media screen and (max-width: 1400px) {
  .inquiry-box__content {
    width: calc(100% - 280px);
    padding: 25px 30px;
  }
}
@media screen and (max-width: 1200px) {
  .inquiry-box__content {
    flex-direction: column;
    padding: 25px 20px;
  }
}
@media screen and (max-width: 599px) {
  .inquiry-box__content {
    width: 100%;
    padding: 15px 20px 20px;
  }
}
.inquiry-box__content__tel {
  display: block;
  position: relative;
  padding-left: 40px;
  color: #e50012;
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .inquiry-box__content__tel {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 834px) {
  .inquiry-box__content__tel {
    padding-left: 35px;
    font-size: 2.8rem;
  }
}
.inquiry-box__content__tel::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 28px;
  height: 28px;
  background-image: url(../img/common/icon_tel.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1024px) {
  .inquiry-box__content__tel::before {
    top: 10px;
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 834px) {
  .inquiry-box__content__tel::before {
    width: 26px;
    height: 26px;
  }
}
.inquiry-box__content__text {
  margin-left: 2em;
  padding: 10px 0 10px 2em;
  border-left: 1px dotted #adacac;
  color: #222;
}
@media screen and (max-width: 1400px) {
  .inquiry-box__content__text {
    margin-left: 20px;
    padding: 10px 0 10px 20px;
  }
}
@media screen and (max-width: 1200px) {
  .inquiry-box__content__text {
    margin-left: 0;
    padding: 0;
    border: none;
  }
}
@media screen and (max-width: 599px) {
  .inquiry-box__content__text {
    font-size: 1.4rem;
  }
}

.inquiry-def-list {
  display: flex;
  flex-wrap: wrap;
  margin: -50px 0 0 -50px;
}
@media screen and (max-width: 1024px) {
  .inquiry-def-list {
    margin: -40px 0 0 -40px;
  }
}
@media screen and (max-width: 834px) {
  .inquiry-def-list {
    margin: -30px 0 0 -30px;
  }
}
@media screen and (max-width: 599px) {
  .inquiry-def-list {
    margin: -20px 0 0 0;
  }
}
.inquiry-def-list__item {
  width: calc((99.9% - 100px) / 2);
  margin: 50px 0 0 50px;
}
@media screen and (max-width: 1024px) {
  .inquiry-def-list__item {
    width: calc((99.9% - 80px) / 2);
    margin: 40px 0 0 40px;
  }
}
@media screen and (max-width: 834px) {
  .inquiry-def-list__item {
    width: calc((99.9% - 60px) / 2);
    margin: 30px 0 0 30px;
  }
}
@media screen and (max-width: 599px) {
  .inquiry-def-list__item {
    width: 100%;
    margin: 20px 0 0 0;
  }
}
.inquiry-def-list__dt {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
  padding-left: 18px;
  border-bottom: 2px solid #e2e3e4;
  color: #222;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1024px) {
  .inquiry-def-list__dt {
    margin-bottom: 18px;
    padding-bottom: 8px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 834px) {
  .inquiry-def-list__dt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .inquiry-def-list__dt {
    margin-bottom: 15px;
    padding-left: 16px;
    font-size: 1.5rem;
  }
}
.inquiry-def-list__dt::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  background-color: #e50012;
}
@media screen and (max-width: 599px) {
  .inquiry-def-list__dt::before {
    top: 8px;
  }
}
.inquiry-def-list__table__th {
  width: 80px;
  padding-bottom: 8px;
  font-weight: 500;
  text-align: left;
}
@media screen and (max-width: 834px) {
  .inquiry-def-list__table__th {
    width: 65px;
  }
}
.inquiry-def-list__table__td {
  padding-bottom: 8px;
}
@media screen and (max-width: 834px) {
  .inquiry-def-list__table__td {
    padding-bottom: 6px;
  }
}
.inquiry-def-list__table__td a {
  color: inherit;
}

.inquiry-container {
  display: flex;
  flex-wrap: wrap;
  margin: -60px 0 0 -50px;
}
@media screen and (max-width: 1024px) {
  .inquiry-container {
    margin: -50px 0 0 -40px;
  }
}
@media screen and (max-width: 834px) {
  .inquiry-container {
    margin: -40px 0 0 -30px;
  }
}
@media screen and (max-width: 599px) {
  .inquiry-container {
    margin: -20px 0 0 0;
  }
}
.inquiry-container__item {
  width: calc((99.9% - 100px) / 2);
  margin: 60px 0 0 50px;
}
@media screen and (max-width: 1024px) {
  .inquiry-container__item {
    width: calc((99.9% - 80px) / 2);
    margin: 50px 0 0 40px;
  }
}
@media screen and (max-width: 834px) {
  .inquiry-container__item {
    width: calc((99.9% - 60px) / 2);
    margin: 40px 0 0 30px;
  }
}
@media screen and (max-width: 599px) {
  .inquiry-container__item {
    width: 100%;
    margin: 20px 0 0 0;
  }
}

.insurance-fiduciary__lead {
  margin-bottom: 30px;
  padding: 25px 30px;
  text-align: justify;
  background-color: #f1f3f4;
}
@media screen and (max-width: 599px) {
  .insurance-fiduciary__lead {
    margin-bottom: 15px;
    padding: 18px 22px;
  }
}
.insurance-fiduciary__lead__title {
  position: relative;
  margin-bottom: 5px;
  padding-left: 16px;
  color: #264a80;
  font-size: 1.7rem;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .insurance-fiduciary__lead__title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .insurance-fiduciary__lead__title {
    padding-left: 14px;
  }
}
.insurance-fiduciary__lead__title::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 8px;
  height: 1px;
  background-color: #264a80;
}
@media screen and (max-width: 1024px) {
  .insurance-fiduciary__lead__title::before {
    top: 13px;
  }
}
.insurance-fiduciary__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 75px 35px;
  background-image: url(../img/company/philosophy/philosophy_copy_bg.jpg);
  background-color: #eef5fc;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 40px;
  font-size: 2.7rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #314b64;
  letter-spacing: 1px;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .insurance-fiduciary__copy {
    padding: 60px 35px;
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 834px) {
  .insurance-fiduciary__copy {
    padding: 40px 25px;
    margin-bottom: 40px;
    font-size: 1.8rem;
    letter-spacing: 0px;
  }
}
@media screen and (max-width: 599px) {
  .insurance-fiduciary__copy {
    padding: 20px;
    margin-bottom: 25px;
    font-size: 1.6rem;
    line-height: 1.7;
  }
}
.insurance-fiduciary__text {
  font-size: 1.8rem;
  line-height: 1.9;
  font-weight: 600;
  margin-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .insurance-fiduciary__text {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .insurance-fiduciary__text {
    font-size: 1.5rem;
    line-height: 1.7;
  }
}
.insurance-fiduciary__image {
  max-width: 620px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .insurance-fiduciary__image {
    width: 60%;
  }
}
@media screen and (max-width: 834px) {
  .insurance-fiduciary__image {
    width: 70%;
  }
}
@media screen and (max-width: 599px) {
  .insurance-fiduciary__image {
    width: 100%;
  }
}
.insurance-fiduciary__list-square__item {
  position: relative;
  padding-left: 22px;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .insurance-fiduciary__list-square__item {
    padding-left: 18px;
  }
}
.insurance-fiduciary__list-square__item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #e50012;
}
@media screen and (max-width: 1024px) {
  .insurance-fiduciary__list-square__item::before {
    top: 11px;
    width: 8px;
    height: 8px;
  }
}
.insurance-fiduciary__list-square__item:not(:last-child) {
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .insurance-fiduciary__list-square__item:not(:last-child) {
    margin-bottom: 10px;
  }
}
.insurance-fiduciary__list-square.box {
  padding: 55px 45px;
  border: 1px dotted #567;
}
@media screen and (max-width: 1024px) {
  .insurance-fiduciary__list-square.box {
    padding: 35px 25px;
  }
}
@media screen and (max-width: 599px) {
  .insurance-fiduciary__list-square.box {
    padding: 30px 20px;
  }
}
.insurance-fiduciary__table {
  width: 100%;
}
.insurance-fiduciary__table__thead-th {
  padding: 12px;
  background-color: #567;
  border: 1px solid #d6d6d6;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .insurance-fiduciary__table__thead-th {
    padding: 10px 5px;
  }
}
.insurance-fiduciary__table__thead-th:nth-child(1) {
  width: 350px;
}
@media screen and (max-width: 834px) {
  .insurance-fiduciary__table__thead-th:nth-child(1) {
    width: 250px;
  }
}
@media screen and (max-width: 599px) {
  .insurance-fiduciary__table__thead-th:nth-child(1) {
    width: 100px;
  }
}
.insurance-fiduciary__table__th, .insurance-fiduciary__table__td {
  padding: 18px;
  border: 1px solid #d6d6d6;
  color: #222;
}
@media screen and (max-width: 599px) {
  .insurance-fiduciary__table__th, .insurance-fiduciary__table__td {
    padding: 10px;
  }
}
.insurance-fiduciary__table__th {
  background-color: #f1f3f4;
  font-weight: 500;
}
.insurance-fiduciary__table__td {
  padding-left: 45px;
}
@media screen and (max-width: 834px) {
  .insurance-fiduciary__table__td {
    padding-left: 30px;
  }
}
@media screen and (max-width: 599px) {
  .insurance-fiduciary__table__td {
    padding-left: 10px;
  }
}
.insurance-fiduciary__table__note {
  margin-left: 1em;
  font-size: 1.4rem;
}
@media screen and (max-width: 599px) {
  .insurance-fiduciary__table__note {
    margin-left: 0.5em;
    font-size: 1.2rem;
  }
}
.insurance-fiduciary__note {
  padding-left: 1.8em;
  text-indent: -1.8em;
  line-height: 1.9;
}

.insurance-pdf__link {
  display: flex;
  position: relative;
  margin: 0 auto 12px;
  padding: 16px 0 16px 20px;
  width: 100%;
  max-width: 800px;
  font-weight: 600;
  color: #264a80;
  border: 1px solid #264a80;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .insurance-pdf__link {
    justify-content: center;
    padding: 10px 0;
    text-align: center;
    line-height: 1.5;
  }
}
@media screen and (max-width: 350px) {
  .insurance-pdf__link {
    font-size: 4.2vw;
  }
}
.insurance-pdf__link:last-child {
  margin-bottom: 0;
}
.insurance-pdf__link:hover {
  color: #fff;
  background-color: #264a80;
}
.insurance-pdf__link::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #264a80;
  border-right: 1px solid #264a80;
  transform: rotate(45deg);
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .insurance-pdf__link::after {
    width: 6px;
    height: 6px;
    top: calc(50% - 3px);
    right: 10px;
  }
}
.insurance-pdf__link:hover::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.insurance-internet__copy {
  margin-bottom: 40px;
  color: #567;
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1024px) {
  .insurance-internet__copy {
    margin-bottom: 30px;
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 599px) {
  .insurance-internet__copy {
    margin-bottom: 20px;
    font-size: 1.7rem;
  }
}
.insurance-internet__def-list {
  display: flex;
  position: relative;
  margin-bottom: 80px;
  padding: 40px;
  border: 1px solid #cacaca;
}
@media screen and (max-width: 834px) {
  .insurance-internet__def-list {
    margin-bottom: 50px;
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  .insurance-internet__def-list {
    display: block;
    margin-bottom: 30px;
    padding: 28px;
  }
}
.insurance-internet__def-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 54px;
  height: 54px;
  border: 27px solid transparent;
  border-top: 27px solid #567;
  border-left: 27px solid #567;
}
@media screen and (max-width: 834px) {
  .insurance-internet__def-list::before {
    width: 50px;
    height: 50px;
    border-width: 25px;
    border-top-width: 25px;
    border-left-width: 25px;
  }
}
@media screen and (max-width: 599px) {
  .insurance-internet__def-list::before {
    width: 40px;
    height: 40px;
    border-width: 20px;
    border-top-width: 20px;
    border-left-width: 20px;
  }
}
.insurance-internet__def-list__dt {
  width: 38%;
  padding-right: 3%;
}
@media screen and (max-width: 599px) {
  .insurance-internet__def-list__dt {
    width: 100%;
    margin-bottom: 15px;
    padding-top: 8px;
  }
}
.insurance-internet__def-list__dd {
  width: 62%;
  padding: 20px 20px 20px 4.5%;
  border-left: 1px solid #cacaca;
}
@media screen and (max-width: 834px) {
  .insurance-internet__def-list__dd {
    padding: 15px 10px 15px 4%;
  }
}
@media screen and (max-width: 599px) {
  .insurance-internet__def-list__dd {
    width: 100%;
    padding: 22px 0 0;
    border-top: 1px solid #cacaca;
    border-left: none;
  }
}
.insurance-internet__def-list__link {
  display: flex;
  align-items: center;
  height: 100%;
  padding-bottom: 30px;
  background-image: url(../img/common/icon_external.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 20px 21px;
}
@media screen and (max-width: 834px) {
  .insurance-internet__def-list__link {
    padding-right: 15px;
  }
}
@media screen and (max-width: 599px) {
  .insurance-internet__def-list__link {
    padding-bottom: 15px;
    background-size: 17px 18px;
  }
}
.insurance-internet__def-list__link img {
  max-width: 308px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .insurance-internet__def-list__link img {
    max-width: 190px;
    margin: 0 auto;
  }
}
.insurance-internet__def-list__link:hover {
  opacity: 0.8;
}
.insurance-internet__def-list__title {
  margin-bottom: 20px;
  color: #222;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 834px) {
  .insurance-internet__def-list__title {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .insurance-internet__def-list__title {
    margin-bottom: 10px;
  }
}
.insurance-internet__def-list__text {
  color: #222;
  text-align: justify;
  line-height: 1.9;
}
@media screen and (max-width: 599px) {
  .insurance-internet__def-list__text {
    font-size: 1.4rem;
  }
}
.insurance-internet__text-center {
  margin-bottom: 25px;
  color: #222;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .insurance-internet__text-center {
    margin-bottom: 20px;
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
.insurance-internet__text-center02 {
  color: #567;
  font-size: 1.5rem;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 599px) {
  .insurance-internet__text-center02 {
    font-size: 1.4rem;
  }
}
.insurance-internet__button {
  display: block;
  max-width: 320px;
  margin: 0 auto;
  padding: 20px 55px;
  background-color: #262123;
  background-image: url(../img/common/arrow02_white.png);
  background-repeat: no-repeat;
  background-position: center right 22px;
  background-size: 30px auto;
  border-radius: 50px;
  color: #fff;
  font-size: 1.7rem;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .insurance-internet__button {
    background-position: center right 18px;
    font-size: 1.5rem;
  }
}
.insurance-internet__button:hover {
  background-color: #e50012;
}
.insurance-internet__link-list {
  margin-bottom: 70px;
  width: 100%;
  border-top: 1px dotted #cacaca;
}
@media screen and (max-width: 834px) {
  .insurance-internet__link-list {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .insurance-internet__link-list {
    margin-bottom: 40px;
  }
}
.insurance-internet__link-list li {
  border-bottom: 1px dotted #cacaca;
}
.insurance-internet__link-list li a {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .insurance-internet__link-list li a:hover {
    background-color: #fef2f3;
  }
}
.insurance-internet__link-list__bnr {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  padding: 20px;
}
@media screen and (max-width: 834px) {
  .insurance-internet__link-list__bnr {
    width: 40%;
    padding: 15px;
  }
}
@media screen and (max-width: 599px) {
  .insurance-internet__link-list__bnr {
    width: 50%;
    padding: 13px 13px 13px 0;
  }
}
.insurance-internet__link-list__info {
  padding: 20px;
}
@media screen and (max-width: 834px) {
  .insurance-internet__link-list__info {
    padding: 15px;
  }
}
@media screen and (max-width: 599px) {
  .insurance-internet__link-list__info {
    padding: 13px 0;
  }
}
.insurance-internet__link-list__info__title {
  position: relative;
  margin-bottom: 8px;
  padding-left: 14px;
  font-size: 2rem;
  color: #222;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 834px) {
  .insurance-internet__link-list__info__title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .insurance-internet__link-list__info__title {
    margin-bottom: 5px;
    padding-left: 9px;
    font-size: 1.5rem;
    letter-spacing: 0;
  }
}
.insurance-internet__link-list__info__title::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 4px;
  height: 17px;
  background-color: #e50012;
}
@media screen and (max-width: 834px) {
  .insurance-internet__link-list__info__title::before {
    top: 4px;
    height: 16px;
  }
}
@media screen and (max-width: 599px) {
  .insurance-internet__link-list__info__title::before {
    width: 3px;
    height: 13px;
  }
}
.insurance-internet__link-list__info__text {
  color: #222;
}
@media screen and (max-width: 599px) {
  .insurance-internet__link-list__info__text {
    font-size: 1.4rem;
  }
}
.insurance-internet__link-list__qr {
  margin-left: 10px;
  padding: 4px;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  .insurance-internet__link-list__qr {
    display: none;
  }
}
.insurance-internet__link-list__qr img {
  width: 70px;
  height: auto;
}
.insurance-internet__link-list__note {
  margin-left: 20px;
  padding: 4px;
  font-size: 1.3rem;
  color: #222;
  line-height: 1.2;
  background-color: #eee;
  border: 1px solid #ccc;
}
@media screen and (max-width: 834px) {
  .insurance-internet__link-list__note {
    font-size: 1.2rem;
    flex: 1;
  }
}
@media screen and (max-width: 599px) {
  .insurance-internet__link-list__note {
    display: none;
  }
}
.insurance-internet__link-list__note span {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}
.insurance-internet__caution {
  padding: 25px 30px;
  border: 1px dotted #567;
  color: #222;
  text-align: justify;
  line-height: 2;
}
@media screen and (max-width: 834px) {
  .insurance-internet__caution {
    padding: 20px 25px;
  }
}
@media screen and (max-width: 599px) {
  .insurance-internet__caution {
    padding: 15px 20px;
    font-size: 1.4rem;
  }
}

.insurance-list__list {
  display: flex;
  flex-wrap: wrap;
  margin: -40px 0 0 -28px;
}
@media screen and (max-width: 1024px) {
  .insurance-list__list {
    margin: -30px 0 0 -25px;
  }
}
@media screen and (max-width: 834px) {
  .insurance-list__list {
    margin: -20px 0 0 -15px;
  }
}
@media screen and (max-width: 599px) {
  .insurance-list__list {
    margin: -15px 0 0 -10px;
  }
}
.insurance-list__list__item {
  width: calc((99.9% - 84px) / 3);
  margin: 40px 0 0 28px;
}
@media screen and (max-width: 1024px) {
  .insurance-list__list__item {
    width: calc((99.9% - 75px) / 3);
    margin: 30px 0 0 25px;
  }
}
@media screen and (max-width: 834px) {
  .insurance-list__list__item {
    width: calc((99.9% - 45px) / 3);
    margin: 20px 0 0 15px;
  }
}
@media screen and (max-width: 599px) {
  .insurance-list__list__item {
    width: calc((99.9% - 20px) / 2);
    margin: 15px 0 0 10px;
  }
}
.insurance-list__list__link {
  display: block;
  color: #567;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
}
.insurance-list__list__link:hover img {
  border-color: #222;
}
.insurance-list__list__link:hover figcaption {
  color: #222;
}
.insurance-list__list__image img {
  height: 172px;
  border: 2px solid #dfdfdf;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .insurance-list__list__image img {
    height: 140px;
  }
}
@media screen and (max-width: 599px) {
  .insurance-list__list__image img {
    height: 90px;
    border-width: 1px;
  }
}
.insurance-list__list__image figcaption {
  margin-top: 10px;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .insurance-list__list__image figcaption {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .insurance-list__list__image figcaption {
    margin-top: 8px;
    font-size: 1.2rem;
  }
}
.insurance-list__text {
  font-size: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 834px) {
  .insurance-list__text {
    font-size: 1.4rem;
  }
}
.insurance-list__list-square {
  padding: 30px 38px;
  border: 1px dotted #567;
}
@media screen and (max-width: 834px) {
  .insurance-list__list-square {
    padding: 25px 30px;
  }
}
@media screen and (max-width: 599px) {
  .insurance-list__list-square {
    padding: 20px;
  }
}
.insurance-list__list-square__item {
  position: relative;
  padding-left: 22px;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  .insurance-list__list-square__item {
    padding-left: 20px;
    font-size: 1.4rem;
  }
}
.insurance-list__list-square__item:not(:last-child) {
  margin-bottom: 7px;
}
.insurance-list__list-square__item::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 11px;
  height: 11px;
  background-color: #567;
}
@media screen and (max-width: 599px) {
  .insurance-list__list-square__item::before {
    width: 10px;
    height: 10px;
  }
}

.insurance-accident__text {
  color: #222;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .insurance-accident__text {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .insurance-accident__text {
    font-size: 1.6rem;
  }
}
.insurance-accident__box {
  display: flex;
  padding: 30px 50px;
  border: 2px solid #dfdfdf;
}
@media screen and (max-width: 1024px) {
  .insurance-accident__box {
    padding: 20px 40px;
  }
}
@media screen and (max-width: 834px) {
  .insurance-accident__box {
    padding: 20px 30px;
  }
}
@media screen and (max-width: 599px) {
  .insurance-accident__box {
    display: block;
    padding: 10px 20px;
  }
}
.insurance-accident__box__def-list {
  width: 47.45%;
}
@media screen and (max-width: 599px) {
  .insurance-accident__box__def-list {
    width: 100%;
  }
}
.insurance-accident__box__def-list:nth-child(1) {
  margin-right: 5%;
}
@media screen and (max-width: 599px) {
  .insurance-accident__box__def-list:nth-child(1) {
    margin-right: 0;
    border-bottom: 1px dotted #222;
  }
}
.insurance-accident__box__def-list > div {
  display: flex;
  justify-content: space-between;
  padding: 18px 10px 15px;
  border-bottom: 1px dotted #222;
}
@media screen and (max-width: 599px) {
  .insurance-accident__box__def-list > div {
    padding: 13px 5px 10px;
  }
}
.insurance-accident__box__def-list > div:last-child {
  border-bottom: none;
}
.insurance-accident__box__def-list > div > dt {
  position: relative;
  padding-left: 25px;
  color: #222;
  font-size: 1.7rem;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .insurance-accident__box__def-list > div > dt {
    padding-left: 20px;
    font-size: 1.6rem;
  }
}
.insurance-accident__box__def-list > div > dt::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #e50012;
}
@media screen and (max-width: 599px) {
  .insurance-accident__box__def-list > div > dt::before {
    width: 8px;
    height: 8px;
  }
}
.insurance-accident__box__def-list > div > dd > a {
  color: #e50012;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 599px) {
  .insurance-accident__box__def-list > div > dd > a {
    font-size: 1.8rem;
  }
}
.insurance-accident__list {
  display: flex;
  flex-wrap: wrap;
  margin: -29px 0 0 -37px;
}
@media screen and (max-width: 1024px) {
  .insurance-accident__list {
    margin: -25px 0 0 -25px;
  }
}
@media screen and (max-width: 599px) {
  .insurance-accident__list {
    margin: -20px 0 0 0;
  }
}
.insurance-accident__list__item {
  width: calc((99.9% - 111px) / 3);
  margin: 29px 0 0 37px;
  border: 2px solid #dfdfdf;
}
@media screen and (max-width: 1024px) {
  .insurance-accident__list__item {
    width: calc((99.9% - 75px) / 3);
    margin: 25px 0 0 25px;
  }
}
@media screen and (max-width: 834px) {
  .insurance-accident__list__item {
    width: calc((99.9% - 50px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .insurance-accident__list__item {
    width: 100%;
    margin: 20px 0 0 0;
  }
}
.insurance-accident__list__image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
}
@media screen and (max-width: 599px) {
  .insurance-accident__list__image {
    height: 120px;
  }
}
.insurance-accident__list__body {
  padding: 20px 16px;
  background-color: #f3f5f7;
}
.insurance-accident__list__title {
  margin-bottom: 16px;
  color: #567;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
.insurance-accident__list__title span {
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1px dotted #567;
}
.insurance-accident__list__title.narrow {
  letter-spacing: -0.5px;
}
.insurance-accident__list__def-list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto 15px;
  max-width: 200px;
  min-width: 200px;
}
.insurance-accident__list__def-list > div:not(:last-child) {
  margin-bottom: 4px;
}
.insurance-accident__list__def-list > div > dt {
  width: 92px;
  color: #222;
  font-size: 1.4rem;
}
.insurance-accident__list__def-list > div > dd > a {
  color: #e50012;
  font-size: 2.4rem;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 600;
  line-height: 0.75;
}
.insurance-accident__list__def-list > div > dd.al-center {
  text-align: center;
}
.insurance-accident__list__textbox {
  width: 95%;
  margin: 0 auto;
  padding: 2px;
  background-color: #567;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
}
.insurance-accident__list__text {
  color: #222;
  font-size: 1.3rem;
  text-align: center;
}

.insurance-text {
  margin-bottom: 70px;
}
@media screen and (max-width: 599px) {
  .insurance-text {
    margin-bottom: 50px;
  }
}
.insurance-text__link {
  display: inline-block;
  position: relative;
  padding: 10px 30px 10px 50px;
  color: #e50012;
  border: 1px solid #e50012;
  border-radius: 5px;
  transition: 0.3s;
}
.insurance-text__link::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 10px;
  width: 20px;
  height: 20px;
  border: 1px solid #e50012;
  border-radius: 50%;
  transition: 0.3s;
}
.insurance-text__link::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 17px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #e50012;
  border-right: 1px solid #e50012;
  transform: rotate(45deg);
  transition: 0.3s;
}
.insurance-text__link:hover {
  color: #fff;
  background-color: #e50012;
}
.insurance-text__link:hover::before {
  border: 1px solid #fff;
}
.insurance-text__link:hover::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.insurance-risk {
  padding: 20px 40px;
  margin-bottom: 70px;
}
@media screen and (max-width: 834px) {
  .insurance-risk {
    padding: 40px;
    background-color: #def3fc;
  }
}
@media screen and (max-width: 599px) {
  .insurance-risk {
    overflow: hidden;
    width: calc(100% + 40px);
    margin-bottom: 50px;
    padding: 20px 20px;
    transform: translateX(-20px);
  }
}
.insurance-risk__image {
  text-align: center;
}
@media screen and (max-width: 834px) {
  .insurance-risk__image {
    display: none;
  }
}
.insurance-risk__detail {
  display: none;
}
@media screen and (max-width: 834px) {
  .insurance-risk__detail {
    display: block;
  }
}
.insurance-risk__detail__title {
  position: relative;
  background-color: #f1f3f4;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  padding: 11px 11px 9px 34px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 599px) {
  .insurance-risk__detail__title {
    padding-left: 25px;
    padding: 9px 9px 7px 25px;
    font-size: 1.6rem;
    margin-bottom: 6px;
  }
}
.insurance-risk__detail__title--01 {
  background-color: #ee86b4;
}
.insurance-risk__detail__title--02 {
  background-color: #1eb9ee;
}
.insurance-risk__detail__title--03 {
  background-color: #01b097;
}
.insurance-risk__detail__title--04 {
  background-color: #f8b62b;
}
.insurance-risk__detail__title--05 {
  background-color: #757dbb;
}
.insurance-risk__detail__title--06 {
  background-color: #8ec555;
}
.insurance-risk__detail__title::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  .insurance-risk__detail__title::before {
    top: 23px;
    width: 16px;
  }
}
.insurance-risk__detail__list {
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .insurance-risk__detail__list {
    margin-bottom: 30px;
  }
}
.insurance-risk__detail__list__item {
  padding: 20px;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  .insurance-risk__detail__list__item {
    padding: 18px 15px;
  }
}
.insurance-risk__detail__list__item:not(:last-child) {
  margin-bottom: 10px;
}
.insurance-risk__detail__list__content {
  display: flex;
}
.insurance-risk__detail__list__image {
  align-self: center;
  width: 30%;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .insurance-risk__detail__list__image {
    width: 27%;
  }
}
.insurance-risk__detail__list__image img {
  width: 100%;
}
.item01 .insurance-risk__detail__list__image img {
  max-width: 109px;
}
.item02 .insurance-risk__detail__list__image img {
  max-width: 131px;
}
.item03 .insurance-risk__detail__list__image img {
  max-width: 133px;
}
.item04 .insurance-risk__detail__list__image img {
  max-width: 143px;
}
.item05 .insurance-risk__detail__list__image img {
  max-width: 147px;
}
.item06 .insurance-risk__detail__list__image img {
  max-width: 124px;
}
.item07 .insurance-risk__detail__list__image img {
  max-width: 131px;
}
.item08 .insurance-risk__detail__list__image img {
  max-width: 131px;
}
.item09 .insurance-risk__detail__list__image img {
  max-width: 142px;
}
.item10 .insurance-risk__detail__list__image img {
  max-width: 121px;
}
.item11 .insurance-risk__detail__list__image img {
  max-width: 109px;
}
.item12 .insurance-risk__detail__list__image img {
  max-width: 109px;
}
.item13 .insurance-risk__detail__list__image img {
  max-width: 128px;
}
.item14 .insurance-risk__detail__list__image img {
  max-width: 127px;
}
.item15 .insurance-risk__detail__list__image img {
  max-width: 93px;
}
.item16 .insurance-risk__detail__list__image img {
  max-width: 98px;
}
.item17 .insurance-risk__detail__list__image img {
  max-width: 112px;
}
.insurance-risk__detail__list__title {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 599px) {
  .insurance-risk__detail__list__title {
    font-size: 1.5rem;
  }
}
.keiri .insurance-risk__detail__list__title {
  color: #ee86b4;
}
.soumu .insurance-risk__detail__list__title {
  color: #1eb9ee;
}
.jinji .insurance-risk__detail__list__title {
  color: #01b097;
}
.jyugyouin .insurance-risk__detail__list__title {
  color: #f8b62b;
}
.kojin .insurance-risk__detail__list__title {
  color: #757dbb;
}
.kigyo .insurance-risk__detail__list__title {
  color: #8ec555;
}
.insurance-risk__detail__list__title > span {
  margin-left: 1.5em;
  font-size: 1.4rem;
}
@media screen and (max-width: 599px) {
  .insurance-risk__detail__list__title > span {
    margin-left: 1em;
    font-size: 1.3rem;
  }
}
.insurance-risk__detail__list__list {
  width: 70%;
  padding-right: 3%;
}
@media screen and (max-width: 599px) {
  .insurance-risk__detail__list__list {
    width: 73%;
    padding-right: 3%;
  }
}
.insurance-risk__detail__list__list > li {
  position: relative;
  padding-left: 24px;
  color: #222;
  font-size: 1.5rem;
}
@media screen and (max-width: 599px) {
  .insurance-risk__detail__list__list > li {
    padding-left: 22px;
    font-size: 1.3rem;
  }
}
.insurance-risk__detail__list__list > li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 15px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center top 60%;
  background-size: 9px auto;
  border: 1px solid #acacac;
}
@media screen and (max-width: 599px) {
  .insurance-risk__detail__list__list > li::before {
    width: 14px;
    height: 15px;
  }
}
.keiri .insurance-risk__detail__list__list > li::before {
  background-image: url(../img/insurance/damage/icon_check_pink.png);
}
.soumu .insurance-risk__detail__list__list > li::before {
  background-image: url(../img/insurance/damage/icon_check_blue.png);
}
.jinji .insurance-risk__detail__list__list > li::before {
  background-image: url(../img/insurance/damage/icon_check_green.png);
}
.jyugyouin .insurance-risk__detail__list__list > li::before {
  background-image: url(../img/insurance/life/icon_check_yellow.png);
}
.kojin .insurance-risk__detail__list__list > li::before {
  background-image: url(../img/insurance/life/icon_check_purple.png);
}
.kigyo .insurance-risk__detail__list__list > li::before {
  background-image: url(../img/insurance/life/icon_check_l-green.png);
}
.insurance-risk__detail__list__list > li:not(:last-child) {
  margin-bottom: 5px;
}

.realestate-common__intro {
  display: flex;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .realestate-common__intro {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-common__intro {
    display: block;
    margin-bottom: 40px;
  }
}
.realestate-common__intro__content {
  width: 59%;
  padding-right: 5.5%;
}
@media screen and (max-width: 599px) {
  .realestate-common__intro__content {
    width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
  }
}
.realestate-common__intro__copy {
  position: relative;
  margin-bottom: 40px;
  padding-top: 40px;
  font-size: 3rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .realestate-common__intro__copy {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 834px) {
  .realestate-common__intro__copy {
    margin-bottom: 20px;
    padding-top: 25px;
    font-size: 2.1rem;
    letter-spacing: -0.5px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-common__intro__copy {
    margin-bottom: 14px;
    padding-top: 18px;
    font-size: 1.8rem;
  }
}
.realestate-common__intro__copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 1px;
  background-color: #f00;
}
@media screen and (max-width: 599px) {
  .realestate-common__intro__copy::before {
    width: 40px;
  }
}
.realestate-common__intro__image {
  width: 41%;
}
@media screen and (max-width: 599px) {
  .realestate-common__intro__image {
    width: 100%;
  }
}

.realestate-brokerage__worries {
  background-image: url(../img/real_estate/brokerage/brokerage_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px;
  margin-bottom: 70px;
}
@media screen and (max-width: 834px) {
  .realestate-brokerage__worries {
    padding: 30px 25px 15px;
    margin-bottom: 55px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-brokerage__worries {
    background-position: top center;
    padding: 18px 15px 10px;
    margin-bottom: 45px;
  }
}
.realestate-brokerage__worries__copy {
  margin-bottom: 35px;
  padding: 14px;
  font-size: 2.1rem;
  line-height: 1.4;
  font-weight: bold;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 9%, rgb(0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
}
@media screen and (max-width: 834px) {
  .realestate-brokerage__worries__copy {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-brokerage__worries__copy {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}
.realestate-brokerage__worries__list {
  margin: 0 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 834px) {
  .realestate-brokerage__worries__list {
    margin: 0;
  }
}
@media screen and (max-width: 599px) {
  .realestate-brokerage__worries__list {
    display: block;
  }
}
.realestate-brokerage__worries__list li {
  position: relative;
  width: calc((100% - 20px) / 2);
  background-color: #fff;
  margin-bottom: 12px;
  font-size: 1.8rem;
  font-weight: bold;
  min-height: 74px;
  padding: 5px 0px 5px 95px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .realestate-brokerage__worries__list li {
    width: calc((100% - 10px) / 2);
    font-size: 1.6rem;
    min-height: 56px;
    padding-left: 64px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-brokerage__worries__list li {
    width: 100%;
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
}
.realestate-brokerage__worries__list li::before {
  background-color: #000;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  content: "";
  height: 100%;
  width: 74px;
  left: 0;
  position: absolute;
  top: 0px;
}
@media screen and (max-width: 834px) {
  .realestate-brokerage__worries__list li::before {
    width: 52px;
  }
}
.realestate-brokerage__worries__list li.icon01::before {
  background-image: url(../img/real_estate/brokerage/brokerage_icon01.png);
  background-size: 24px auto;
}
@media screen and (max-width: 834px) {
  .realestate-brokerage__worries__list li.icon01::before {
    background-size: 18px auto;
  }
}
.realestate-brokerage__worries__list li.icon02::before {
  background-image: url(../img/real_estate/brokerage/brokerage_icon02.png);
  background-size: 30px auto;
}
@media screen and (max-width: 834px) {
  .realestate-brokerage__worries__list li.icon02::before {
    background-size: 24px auto;
  }
}
.realestate-brokerage__worries__list li.icon03::before {
  background-image: url(../img/real_estate/brokerage/brokerage_icon03.png);
  background-size: 24px auto;
}
@media screen and (max-width: 834px) {
  .realestate-brokerage__worries__list li.icon03::before {
    background-size: 18px auto;
  }
}
.realestate-brokerage__worries__list li.icon04::before {
  background-image: url(../img/real_estate/brokerage/brokerage_icon04.png);
  background-size: 30px auto;
}
@media screen and (max-width: 834px) {
  .realestate-brokerage__worries__list li.icon04::before {
    background-size: 24px auto;
  }
}
.realestate-brokerage__worries__list li.icon05::before {
  background-image: url(../img/real_estate/brokerage/brokerage_icon05.png);
  background-size: 44px auto;
}
@media screen and (max-width: 834px) {
  .realestate-brokerage__worries__list li.icon05::before {
    background-size: 32px auto;
  }
}
.realestate-brokerage__worries__list li.icon06::before {
  background-image: url(../img/real_estate/brokerage/brokerage_icon06.png);
  background-size: 36px auto;
}
@media screen and (max-width: 834px) {
  .realestate-brokerage__worries__list li.icon06::before {
    background-size: 26px auto;
  }
}
.realestate-brokerage__contrivance {
  margin-bottom: 80px;
}
@media screen and (max-width: 834px) {
  .realestate-brokerage__contrivance {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-brokerage__contrivance {
    margin-bottom: 45px;
  }
}
.realestate-brokerage__contrivance__figure {
  margin-top: 20px;
}
@media screen and (max-width: 599px) {
  .realestate-brokerage__flow__figure {
    padding: 0px 22px 0px 10px;
  }
}
.realestate-brokerage__contact__ttl {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  padding: 30px 40px;
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .realestate-brokerage__contact__ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .realestate-brokerage__contact__ttl {
    font-size: 1.6rem;
    padding: 20px;
    margin-bottom: 0;
  }
}
.realestate-brokerage__contact__ttl:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #000;
}
.realestate-brokerage__contact__ttl span {
  display: inline-block;
  position: relative;
  padding: 0 1.5em;
  background: #fff;
}
.realestate-brokerage__contact__text {
  color: #222;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .realestate-brokerage__contact__text {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .realestate-brokerage__contact__text {
    font-size: 1.6rem;
  }
}
.realestate-brokerage__contact__box {
  display: flex;
  padding: 30px 50px;
  border: 2px solid #dfdfdf;
}
@media screen and (max-width: 1024px) {
  .realestate-brokerage__contact__box {
    padding: 20px 40px;
  }
}
@media screen and (max-width: 834px) {
  .realestate-brokerage__contact__box {
    padding: 20px 25px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-brokerage__contact__box {
    display: block;
    padding: 10px 20px;
  }
}
.realestate-brokerage__contact__box__def-list {
  width: 47.45%;
}
@media screen and (max-width: 599px) {
  .realestate-brokerage__contact__box__def-list {
    width: 100%;
  }
}
.realestate-brokerage__contact__box__def-list:nth-child(1) {
  margin-right: 5%;
}
@media screen and (max-width: 599px) {
  .realestate-brokerage__contact__box__def-list:nth-child(1) {
    margin-right: 0;
    border-bottom: 1px dotted #222;
  }
}
.realestate-brokerage__contact__box__def-list > div {
  display: flex;
  justify-content: space-between;
  padding: 18px 10px 15px;
  border-bottom: 1px dotted #222;
}
@media screen and (max-width: 834px) {
  .realestate-brokerage__contact__box__def-list > div {
    padding: 18px 0px 15px;
    align-items: center;
  }
}
@media screen and (max-width: 599px) {
  .realestate-brokerage__contact__box__def-list > div {
    padding: 13px 5px 10px;
  }
}
.realestate-brokerage__contact__box__def-list > div:last-child {
  border-bottom: none;
}
.realestate-brokerage__contact__box__def-list > div > dt {
  position: relative;
  padding-left: 25px;
  color: #222;
  font-size: 1.7rem;
  font-weight: 700;
}
@media screen and (max-width: 834px) {
  .realestate-brokerage__contact__box__def-list > div > dt {
    padding-left: 20px;
    font-size: 1.6rem;
  }
}
.realestate-brokerage__contact__box__def-list > div > dt::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #e50012;
}
@media screen and (max-width: 599px) {
  .realestate-brokerage__contact__box__def-list > div > dt::before {
    width: 8px;
    height: 8px;
  }
}
.realestate-brokerage__contact__box__def-list > div > dd > a {
  color: #e50012;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 834px) {
  .realestate-brokerage__contact__box__def-list > div > dd > a {
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 599px) {
  .realestate-brokerage__contact__box__def-list > div > dd > a {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
  }
}
.realestate-brokerage__number {
  padding: 20px 25px;
  text-align: justify;
  line-height: 1.6;
  background-color: #F1F3F4;
}
.realestate-brokerage__number__list li {
  position: relative;
  margin-top: 5px;
  padding-left: 14px;
}
@media screen and (max-width: 599px) {
  .realestate-brokerage__number__list li {
    margin-top: 3px;
  }
}
.realestate-brokerage__number__list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #e50012;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .realestate-brokerage__number__list li::before {
    top: 6px;
  }
}
.realestate-brokerage__number__link {
  margin-top: 5px;
  text-indent: -1em;
  padding-left: 1em;
}
.realestate-brokerage__number__link a {
  color: #e50012;
  text-decoration: underline;
}
.realestate-brokerage__number__link a:hover {
  color: #e50012;
  text-decoration: none;
}

.realestate-development__facility__copy {
  margin-top: 45px;
  margin-bottom: 45px;
  font-size: 2.7rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 1024px) {
  .realestate-development__facility__copy {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 834px) {
  .realestate-development__facility__copy {
    margin-top: 35px;
    margin-bottom: 35px;
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 599px) {
  .realestate-development__facility__copy {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 1.6rem;
    letter-spacing: 0px;
  }
}
.realestate-development__facility__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: -45px 0 70px -54px;
}
@media screen and (max-width: 1024px) {
  .realestate-development__facility__list {
    margin: -40px 0 50px -40px;
  }
}
@media screen and (max-width: 834px) {
  .realestate-development__facility__list {
    margin: -35px 0 35px -30px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-development__facility__list {
    margin: -20px 0 25px 0;
  }
}
.realestate-development__facility__box {
  width: calc((99.9% - 108px) / 2);
  margin: 45px 0 0 54px;
}
@media screen and (max-width: 1024px) {
  .realestate-development__facility__box {
    width: calc((99.9% - 80px) / 2);
    margin: 40px 0 0 40px;
  }
}
@media screen and (max-width: 834px) {
  .realestate-development__facility__box {
    width: calc((99.9% - 60px) / 2);
    margin: 35px 0 0 30px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-development__facility__box {
    width: 100%;
    margin: 20px 0 0 0;
  }
}
.realestate-development__facility__ph {
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .realestate-development__facility__ph {
    margin-bottom: 15px;
  }
}
.realestate-development__facility__category {
  display: inline-block;
  margin-bottom: 10px;
  padding: 2px 14px;
  background-color: #395a8b;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .realestate-development__facility__category {
    margin-bottom: 8px;
    padding: 1px 12px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-development__facility__category {
    margin-bottom: 6px;
    font-size: 1.3rem;
  }
}
.realestate-development__facility__title {
  color: #202020;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 834px) {
  .realestate-development__facility__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .realestate-development__facility__title {
    font-size: 1.7rem;
  }
}
.realestate-development__facility__build {
  background-color: #f1f3f4;
  padding: 30px 30px 23px;
}
@media screen and (max-width: 834px) {
  .realestate-development__facility__build {
    padding: 25px 20px 20px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-development__facility__build {
    padding: 20px 20px 15px;
  }
}
.realestate-development__facility__build li {
  margin-bottom: 7px;
  position: relative;
  padding-left: 20px;
}
@media screen and (max-width: 834px) {
  .realestate-development__facility__build li {
    padding-left: 15px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 599px) {
  .realestate-development__facility__build li {
    font-size: 1.4rem;
    margin-bottom: 4px;
  }
}
.realestate-development__facility__build li::before {
  background: #e50012;
  content: "";
  height: 11px;
  width: 11px;
  left: 0;
  position: absolute;
  border-radius: 50px;
  top: 7px;
}
@media screen and (max-width: 834px) {
  .realestate-development__facility__build li::before {
    top: 3px;
    width: 9px;
    height: 9px;
  }
}

.realestate-leasing__list {
  display: flex;
  margin: 20px 0 70px -25px;
}
@media screen and (max-width: 834px) {
  .realestate-leasing__list {
    margin: 20px 0 40px -15px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-leasing__list {
    flex-direction: column;
    margin: -20px 0 20px 0;
  }
}
.realestate-leasing__list__item {
  width: calc((99.9% - 75px) / 3);
  margin: 0 0 0 25px;
  padding: 0 20px 60px;
  border: 8px solid #cbd8ec;
}
@media screen and (max-width: 1024px) {
  .realestate-leasing__list__item {
    padding: 0 20px 40px;
  }
}
@media screen and (max-width: 834px) {
  .realestate-leasing__list__item {
    width: calc((99.9% - 45px) / 3);
    margin: 0 0 0 15px;
    padding: 0 10px 20px;
    border-width: 6px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-leasing__list__item {
    width: 80%;
    margin: 30px auto 0;
  }
}
.realestate-leasing__list__text01 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 120px;
  height: 105px;
  margin: -20px auto 40px;
  background-color: #395a8b;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .realestate-leasing__list__text01 {
    max-width: 100px;
    height: 90px;
    margin: -20px auto 30px;
  }
}
@media screen and (max-width: 834px) {
  .realestate-leasing__list__text01 {
    max-width: 95px;
    height: 80px;
    margin: -20px auto 20px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 599px) {
  .realestate-leasing__list__text01 {
    height: 68px;
    margin: -20px auto 15px;
  }
}
.realestate-leasing__list__text01 > span {
  display: block;
  font-size: 3.6rem;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .realestate-leasing__list__text01 > span {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 834px) {
  .realestate-leasing__list__text01 > span {
    font-size: 2.9rem;
  }
}
@media screen and (max-width: 599px) {
  .realestate-leasing__list__text01 > span {
    font-size: 2.6rem;
  }
}
.realestate-leasing__list__text02 {
  color: #305183;
  font-size: 2.7rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1024px) {
  .realestate-leasing__list__text02 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 834px) {
  .realestate-leasing__list__text02 {
    font-size: 1.9rem;
    letter-spacing: 0;
  }
}
.realestate-leasing__photos {
  display: flex;
  margin-top: 75px;
  margin-bottom: 70px;
}
@media screen and (max-width: 834px) {
  .realestate-leasing__photos {
    margin-top: 50px;
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-leasing__photos {
    flex-wrap: wrap;
    margin-top: 35px;
    margin-bottom: 40px;
  }
}
.realestate-leasing__photos > li {
  width: 50%;
}
.realestate-leasing__bnr {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/real_estate/leasing/leasing_bnr.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 930px;
  height: 230px;
  margin: 0 auto 70px;
}
@media screen and (max-width: 1024px) {
  .realestate-leasing__bnr {
    max-width: 800px;
    height: 200px;
  }
}
@media screen and (max-width: 834px) {
  .realestate-leasing__bnr {
    height: 170px;
  }
}
.realestate-leasing__bnr::before {
  opacity: 0;
  background: #000;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  position: absolute;
  top: 0px;
  transition: 0.3s;
}
.realestate-leasing__bnr__link {
  position: relative;
  display: block;
  padding: 15px 60px;
  border-radius: 50px;
  line-height: 1.4;
  background-color: #222;
  font-size: 1.9rem;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 834px) {
  .realestate-leasing__bnr__link {
    font-size: 1.7rem;
  }
}
.realestate-leasing__bnr__link::after {
  display: block;
  content: "";
  position: absolute;
  vertical-align: middle;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  width: 12px;
  height: 12px;
  border-right: 3px solid #e50012;
  border-bottom: 3px solid #e50012;
  transform: rotate(-45deg);
}
.realestate-leasing__bnr:hover::before {
  opacity: 0.3;
}
.realestate-leasing__facility__list {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 834px) {
  .realestate-leasing__facility__list {
    margin-top: 15px;
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-leasing__facility__list {
    margin-bottom: 20px;
  }
}
.realestate-leasing__facility__box {
  display: flex;
  flex-direction: column;
  width: calc((100% - 50px) / 3);
}
@media screen and (max-width: 834px) {
  .realestate-leasing__facility__box {
    width: calc((100% - 30px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .realestate-leasing__facility__box {
    width: 100%;
    margin-bottom: 30px;
  }
}
.realestate-leasing__facility__ph {
  margin-bottom: 25px;
}
@media screen and (max-width: 834px) {
  .realestate-leasing__facility__ph {
    margin-bottom: 20px;
  }
}
.realestate-leasing__facility__ttl {
  position: relative;
  margin-bottom: 18px;
  padding: 0 0 12px 24px;
  border-bottom: 1px solid #dfdfdf;
  color: #222;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  flex-grow: 1;
}
@media screen and (max-width: 1024px) {
  .realestate-leasing__facility__ttl {
    padding: 0 0 8px 22px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 834px) {
  .realestate-leasing__facility__ttl {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .realestate-leasing__facility__ttl {
    margin-bottom: 12px;
    padding: 0 0 6px 22px;
  }
}
.realestate-leasing__facility__ttl.stxt {
  letter-spacing: -1px;
}
@media screen and (max-width: 599px) {
  .realestate-leasing__facility__ttl.stxt {
    letter-spacing: 0.04em;
  }
}
.realestate-leasing__facility__ttl::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 4px solid #e50012;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .realestate-leasing__facility__ttl::before {
    top: 6px;
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-leasing__facility__ttl::before {
    width: 15px;
    height: 15px;
    border-width: 4px;
  }
}
.realestate-leasing__facility__link {
  position: relative;
  margin: 18px 20px 0px;
  display: block;
  border: 1px solid #202020;
  color: #202020;
  border-radius: 50px;
  padding: 15px;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .realestate-leasing__facility__link {
    padding: 11px;
    margin: 15px 0px 0px;
    font-size: 1.4rem;
  }
}
.realestate-leasing__facility__link::after {
  display: block;
  content: "";
  position: absolute;
  vertical-align: middle;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 9px;
  height: 9px;
  border-right: 2px solid #202020;
  border-bottom: 2px solid #202020;
  transform: rotate(-45deg);
}
.realestate-leasing__facility__link:hover {
  background-color: #222;
  color: #fff;
}
.realestate-leasing__facility__link:hover::after {
  border-color: #fff;
}
.realestate-leasing__contact-ttl {
  margin-bottom: 40px;
  color: #222;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .realestate-leasing__contact-ttl {
    margin-bottom: 30px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .realestate-leasing__contact-ttl {
    margin-bottom: 15px;
    font-size: 1.7rem;
  }
}
.realestate-leasing__contact {
  display: flex;
  margin-bottom: 80px;
  border: 1px dotted #567;
}
@media screen and (max-width: 599px) {
  .realestate-leasing__contact {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.realestate-leasing__contact__title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 320px;
  background-color: #567;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1024px) {
  .realestate-leasing__contact__title {
    width: 280px;
  }
}
@media screen and (max-width: 834px) {
  .realestate-leasing__contact__title {
    width: 170px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .realestate-leasing__contact__title {
    width: 100%;
    padding: 10px 20px 8px;
    font-size: 1.5rem;
  }
}
.realestate-leasing__contact__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  width: 1px;
  height: 65px;
  background-color: #f00;
}
@media screen and (max-width: 834px) {
  .realestate-leasing__contact__title::before {
    left: 28px;
    height: 40px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-leasing__contact__title::before {
    height: 35px;
  }
}
.realestate-leasing__contact__content {
  width: calc(100% - 320px);
  padding: 30px 45px;
}
@media screen and (max-width: 1024px) {
  .realestate-leasing__contact__content {
    width: calc(100% - 280px);
  }
}
@media screen and (max-width: 834px) {
  .realestate-leasing__contact__content {
    width: calc(100% - 170px);
    padding: 30px 20px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-leasing__contact__content {
    width: 100%;
    padding: 18px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-leasing__contact__content .text-base {
    line-height: 1.7;
  }
}
.realestate-leasing__contact__def-list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .realestate-leasing__contact__def-list {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .realestate-leasing__contact__def-list > dt {
    text-align: center;
  }
}
.realestate-leasing__contact__def-list > dd {
  margin-left: 2em;
  padding: 10px 0 10px 2em;
  border-left: 1px dotted #adacac;
  color: #222;
}
@media screen and (max-width: 834px) {
  .realestate-leasing__contact__def-list > dd {
    margin-left: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-leasing__contact__def-list > dd {
    margin-top: 5px;
    margin-left: 0;
    padding-bottom: 0;
    padding-left: 0;
    border-top: 1px dotted #adacac;
    border-left: none;
    text-align: center;
    font-size: 1.4rem;
  }
}
.realestate-leasing__contact__def-list__tel {
  position: relative;
  padding-left: 40px;
  color: #e50012;
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
@media screen and (max-width: 834px) {
  .realestate-leasing__contact__def-list__tel {
    padding-left: 30px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .realestate-leasing__contact__def-list__tel {
    padding-left: 35px;
    font-size: 2.8rem;
  }
}
.realestate-leasing__contact__def-list__tel::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 28px;
  height: 28px;
  background-image: url(../img/common/icon_tel.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 834px) {
  .realestate-leasing__contact__def-list__tel::before {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-leasing__contact__def-list__tel::before {
    top: 3px;
    width: 25px;
    height: 25px;
  }
}

.realestate-building__container {
  display: flex;
  margin-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .realestate-building__container {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-building__container {
    display: block;
    margin-bottom: 25px;
  }
}
.realestate-building__container__image {
  width: 51%;
}
@media screen and (max-width: 599px) {
  .realestate-building__container__image {
    width: 100%;
    margin-bottom: 15px;
  }
}
.realestate-building__container__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.realestate-building__container__content {
  width: calc(49% - 35px);
  margin-left: 35px;
}
@media screen and (max-width: 834px) {
  .realestate-building__container__content {
    width: calc(49% - 20px);
    margin-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-building__container__content {
    width: 100%;
    margin-left: 0;
  }
}
.realestate-building__container__title {
  border-top: 2px solid #222;
  position: relative;
  margin-bottom: 25px;
  padding: 18px 20px 18px 32px;
  background-color: #f1f3f4;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1024px) {
  .realestate-building__container__title {
    margin-bottom: 25px;
    padding: 16px 15px 16px 28px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 834px) {
  .realestate-building__container__title {
    padding: 13px 13px 13px 25px;
    font-size: 1.6rem;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-building__container__title {
    padding: 15px 13px 15px 25px;
    border-top: 1px solid #222;
    font-size: 1.5rem;
  }
}
.realestate-building__container__title::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  margin: auto 0;
  background-color: #e50012;
}
@media screen and (max-width: 834px) {
  .realestate-building__container__title::before {
    width: 15px;
  }
}
.realestate-building__container__body {
  padding: 40px 45px 55px;
}
@media screen and (max-width: 834px) {
  .realestate-building__container__body {
    padding: 30px 30px 45px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-building__container__body {
    padding: 20px 20px 30px;
  }
}
.realestate-building__container__table {
  width: 100%;
  border-top: 1px solid #d7d7d7;
}
.realestate-building__container__table th,
.realestate-building__container__table td {
  padding: 16px 5px;
  border-bottom: 1px solid #d7d7d7;
}
@media screen and (max-width: 1024px) {
  .realestate-building__container__table th,
  .realestate-building__container__table td {
    padding: 13px 5px;
  }
}
@media screen and (max-width: 834px) {
  .realestate-building__container__table th,
  .realestate-building__container__table td {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .realestate-building__container__table th,
  .realestate-building__container__table td {
    padding: 10px 5px;
    font-size: 1.3rem;
  }
}
.realestate-building__container__table th {
  width: 105px;
  background-color: #f6f6f6;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .realestate-building__container__table th {
    width: 95px;
  }
}
@media screen and (max-width: 834px) {
  .realestate-building__container__table th {
    width: 80px;
  }
}
.realestate-building__container__table td {
  padding-left: 30px;
}
@media screen and (max-width: 1024px) {
  .realestate-building__container__table td {
    padding-left: 20px;
  }
}
@media screen and (max-width: 834px) {
  .realestate-building__container__table td {
    padding-left: 15px;
  }
}
.realestate-building__list {
  display: flex;
  flex-wrap: wrap;
  margin: -60px 0 0 -50px;
}
@media screen and (max-width: 1024px) {
  .realestate-building__list {
    margin: -50px 0 0 -40px;
  }
}
@media screen and (max-width: 834px) {
  .realestate-building__list {
    margin: -40px 0 0 -30px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-building__list {
    flex-direction: column;
    margin: -20px 0 0 0;
  }
}
.realestate-building__list__item {
  width: calc((99.9% - 100px) / 2);
  margin: 60px 0 0 50px;
}
@media screen and (max-width: 1024px) {
  .realestate-building__list__item {
    width: calc((99.9% - 80px) / 2);
    margin: 50px 0 0 40px;
  }
}
@media screen and (max-width: 834px) {
  .realestate-building__list__item {
    width: calc((99.9% - 60px) / 2);
    margin: 40px 0 0 30px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-building__list__item {
    width: 100%;
    margin: 30px 0 0 0;
  }
}
.realestate-building__list__title {
  border-top: 2px solid #222;
  position: relative;
  margin-bottom: 30px;
  padding: 16px 20px 16px 32px;
  background-color: #f1f3f4;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1024px) {
  .realestate-building__list__title {
    margin-bottom: 25px;
    padding: 15px 15px 15px 28px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 834px) {
  .realestate-building__list__title {
    padding: 13px 13px 13px 25px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .realestate-building__list__title {
    border-top: 1px solid #222;
    margin-bottom: 20px;
    font-size: 1.5rem;
  }
}
.realestate-building__list__title::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  margin: auto 0;
  background-color: #e50012;
}
@media screen and (max-width: 834px) {
  .realestate-building__list__title::before {
    width: 15px;
  }
}
.realestate-building__list__image {
  max-width: 370px;
  width: 80%;
  margin: 0 auto 30px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .realestate-building__list__image {
    margin: 0 auto 25px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-building__list__image {
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 1024px) {
  .realestate-building__list__image img {
    height: 245px;
  }
}
@media screen and (max-width: 834px) {
  .realestate-building__list__image img {
    height: 176px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-building__list__image img {
    height: 188px;
  }
}
.realestate-building__list__table {
  width: 100%;
  border-top: 1px solid #d7d7d7;
}
.realestate-building__list__table th,
.realestate-building__list__table td {
  padding: 15px 5px;
  border-bottom: 1px solid #d7d7d7;
}
@media screen and (max-width: 1024px) {
  .realestate-building__list__table th,
  .realestate-building__list__table td {
    padding: 13px 5px;
  }
}
@media screen and (max-width: 834px) {
  .realestate-building__list__table th,
  .realestate-building__list__table td {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .realestate-building__list__table th,
  .realestate-building__list__table td {
    padding: 10px 5px;
    font-size: 1.3rem;
  }
}
.realestate-building__list__table th {
  width: 105px;
  background-color: #f6f6f6;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .realestate-building__list__table th {
    width: 95px;
  }
}
@media screen and (max-width: 834px) {
  .realestate-building__list__table th {
    width: 80px;
  }
}
.realestate-building__list__table td {
  padding-left: 30px;
}
@media screen and (max-width: 1024px) {
  .realestate-building__list__table td {
    padding-left: 20px;
  }
}
@media screen and (max-width: 834px) {
  .realestate-building__list__table td {
    padding-left: 15px;
  }
}

.realestate-infomation__contact {
  display: flex;
  border: 1px dotted #567;
}
@media screen and (max-width: 599px) {
  .realestate-infomation__contact {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.realestate-infomation__contact__title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 280px;
  background-color: #567;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 834px) {
  .realestate-infomation__contact__title {
    width: 170px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .realestate-infomation__contact__title {
    width: 100%;
    padding: 10px 20px 8px;
    font-size: 1.5rem;
  }
}
.realestate-infomation__contact__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  width: 1px;
  height: 65px;
  background-color: #f00;
}
@media screen and (max-width: 834px) {
  .realestate-infomation__contact__title::before {
    left: 28px;
    height: 40px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-infomation__contact__title::before {
    height: 35px;
  }
}
.realestate-infomation__contact__content {
  width: calc(100% - 280px);
  padding: 30px 40px;
}
@media screen and (max-width: 834px) {
  .realestate-infomation__contact__content {
    width: calc(100% - 170px);
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-infomation__contact__content {
    width: 100%;
    padding: 15px;
  }
}
.realestate-infomation__contact__def-list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .realestate-infomation__contact__def-list {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .realestate-infomation__contact__def-list > dt {
    text-align: center;
  }
}
.realestate-infomation__contact__def-list > dd {
  margin-left: 2em;
  padding: 10px 0 10px 2em;
  border-left: 1px dotted #adacac;
  color: #222;
  text-align: justify;
}
@media screen and (max-width: 834px) {
  .realestate-infomation__contact__def-list > dd {
    margin-left: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-infomation__contact__def-list > dd {
    margin-top: 5px;
    margin-left: 0;
    padding-bottom: 0;
    padding-left: 0;
    border-top: 1px dotted #adacac;
    border-left: none;
    text-align: center;
    font-size: 1.4rem;
  }
}
.realestate-infomation__contact__def-list__tel {
  position: relative;
  padding-left: 40px;
  color: #e50012;
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
@media screen and (max-width: 834px) {
  .realestate-infomation__contact__def-list__tel {
    padding-left: 30px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .realestate-infomation__contact__def-list__tel {
    padding-left: 35px;
    font-size: 2.8rem;
  }
}
.realestate-infomation__contact__def-list__tel::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 28px;
  height: 28px;
  background-image: url(../img/common/icon_tel.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 834px) {
  .realestate-infomation__contact__def-list__tel::before {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-infomation__contact__def-list__tel::before {
    top: 3px;
    width: 25px;
    height: 25px;
  }
}
.realestate-infomation__title {
  position: relative;
  margin-bottom: 10px;
  padding: 0 0 5px 12px;
  border-bottom: 1px dotted #dfdfdf;
  color: #222;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
  .realestate-infomation__title {
    padding-left: 10px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .realestate-infomation__title {
    padding-left: 8px;
    font-size: 1.6rem;
  }
}
.realestate-infomation__title::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 3px;
  height: 18px;
  background-color: #e50012;
}
@media screen and (max-width: 1024px) {
  .realestate-infomation__title::before {
    height: 15px;
  }
}
@media screen and (max-width: 599px) {
  .realestate-infomation__title::before {
    top: 4px;
    width: 2px;
    height: 14px;
  }
}
.realestate-infomation__table__th {
  position: relative;
  padding-left: 15px;
  width: 80px;
  font-weight: 500;
  text-align: left;
}
@media screen and (max-width: 834px) {
  .realestate-infomation__table__th {
    padding-left: 13px;
    width: 60px;
  }
}
.realestate-infomation__table__th::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 7px;
  left: 0;
  background-color: #e50012;
}
@media screen and (max-width: 834px) {
  .realestate-infomation__table__th::before {
    width: 8px;
    height: 8px;
    top: 8px;
  }
}
.realestate-infomation__table__td a {
  color: inherit;
}
.realestate-infomation__link {
  position: relative;
  padding-left: 25px;
  color: #e50012;
  text-decoration: underline;
}
.realestate-infomation__link:hover {
  text-decoration: none;
}
.realestate-infomation__link::before, .realestate-infomation__link::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.realestate-infomation__link::before {
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #e50012;
  border-radius: 50%;
}
.realestate-infomation__link::after {
  left: 7px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #e50012;
  border-right: 1px solid #e50012;
  transform: rotate(45deg);
}

.about-index__copy {
  margin-bottom: 90px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 3.8rem;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 1024px) {
  .about-index__copy {
    font-size: 3.2rem;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 834px) {
  .about-index__copy {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 599px) {
  .about-index__copy {
    font-size: 1.8rem;
    letter-spacing: 0px;
    margin-bottom: 40px;
  }
}
.about-index__copy > span {
  display: block;
  margin-bottom: 15px;
  color: #e50012;
  font-size: 1.7rem;
  font-family: "Overpass", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .about-index__copy > span {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .about-index__copy > span {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
}
.about-index__list__item {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 599px) {
  .about-index__list__item {
    flex-direction: column-reverse;
  }
}
.about-index__list__item:not(:last-child) {
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .about-index__list__item:not(:last-child) {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 834px) {
  .about-index__list__item:not(:last-child) {
    margin-bottom: 70px;
  }
}
.about-index__list__item.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 599px) {
  .about-index__list__item.reverse {
    flex-direction: column-reverse;
  }
}
.about-index__list__image {
  position: relative;
  width: 36.5%;
  margin-right: 6.5%;
}
@media screen and (max-width: 1024px) {
  .about-index__list__image {
    margin-right: 5.5%;
  }
}
@media screen and (max-width: 599px) {
  .about-index__list__image {
    width: 80%;
    margin: 0 auto;
  }
}
.reverse .about-index__list__image {
  margin-right: 0;
  margin-left: 6.5%;
}
@media screen and (max-width: 1024px) {
  .reverse .about-index__list__image {
    margin-left: 5.5%;
  }
}
@media screen and (max-width: 599px) {
  .reverse .about-index__list__image {
    margin: 0 auto;
  }
}
.about-index__list__image::before {
  content: "";
  position: absolute;
  bottom: -35px;
  left: -35px;
  width: 100%;
  height: 100%;
  background-color: #556677;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .about-index__list__image::before {
    bottom: -28px;
    left: -28px;
  }
}
@media screen and (max-width: 599px) {
  .about-index__list__image::before {
    bottom: -23px;
    left: -23px;
  }
}
.reverse .about-index__list__image::before {
  right: -35px;
  left: auto;
}
@media screen and (max-width: 1024px) {
  .reverse .about-index__list__image::before {
    right: -28px;
  }
}
@media screen and (max-width: 599px) {
  .reverse .about-index__list__image::before {
    right: -23px;
  }
}
.about-index__list__content {
  width: 57%;
}
@media screen and (max-width: 1024px) {
  .about-index__list__content {
    width: 58%;
  }
}
@media screen and (max-width: 599px) {
  .about-index__list__content {
    width: 100%;
    margin-bottom: 20px;
  }
}
.about-index__list__head {
  margin-bottom: 35px;
  padding: 0 20px 48px;
  background-color: #eff1f3;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .about-index__list__head {
    margin-bottom: 25px;
    padding: 0 20px 30px;
  }
}
@media screen and (max-width: 599px) {
  .about-index__list__head {
    margin-bottom: 20px;
    padding: 0 15px 25px;
  }
}
.about-index__list__num {
  width: 110px;
  height: 90px;
  margin: 0 auto 40px;
  padding-top: 15px;
  background-color: #222;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .about-index__list__num {
    height: 80px;
    margin-bottom: 25px;
    padding-top: 12px;
  }
}
@media screen and (max-width: 599px) {
  .about-index__list__num {
    width: 100px;
    height: 70px;
    margin-bottom: 24px;
    padding-top: 10px;
    font-size: 1.1rem;
  }
}
.about-index__list__num span {
  display: block;
  position: relative;
  margin-top: 7px;
  padding-top: 3px;
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .about-index__list__num span {
    margin-top: 5px;
    padding-top: 2px;
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 599px) {
  .about-index__list__num span {
    margin-top: 3px;
    padding-top: 1px;
    font-size: 1.9rem;
  }
}
.about-index__list__num span::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 20px;
  height: 1px;
  margin: 0 auto;
  background-color: #e50012;
}
.about-index__list__txt {
  font-family: "Shippori Mincho", serif;
  font-size: 2.9rem;
}
@media screen and (max-width: 834px) {
  .about-index__list__txt {
    font-size: 2.3rem;
    letter-spacing: -0.5px;
  }
}
@media screen and (max-width: 599px) {
  .about-index__list__txt {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .about-index__list__title {
    height: 20px;
  }
}

body#recruit .common-lead__copy--s {
  font-size: 3.3rem;
  letter-spacing: -0.5px;
}
body#recruit .common-lead__copy--s span {
  letter-spacing: -3.5px;
}
@media screen and (max-width: 1024px) {
  body#recruit .common-lead__copy--s span {
    letter-spacing: -2px;
  }
}
@media screen and (max-width: 1024px) {
  body#recruit .common-lead__copy--s {
    font-size: 3rem;
  }
}
@media screen and (max-width: 834px) {
  body#recruit .common-lead__copy--s {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  body#recruit .common-lead__copy--s {
    font-size: 1.5rem;
  }
}

.recruit-data__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 834px) {
  .recruit-data__list {
    gap: 18px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-data__list {
    justify-content: center;
  }
}
.recruit-data__list__item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 40px) / 3);
  padding: 40px 0 20px;
  background-color: #f0f2f3;
}
@media screen and (max-width: 1024px) {
  .recruit-data__list__item {
    padding: 25px 0;
  }
}
@media screen and (max-width: 834px) {
  .recruit-data__list__item {
    width: calc((100% - 36px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .recruit-data__list__item {
    width: 95%;
  }
}
.recruit-data__list__item:nth-child(4), .recruit-data__list__item:nth-child(5), .recruit-data__list__item:nth-child(6) {
  padding-bottom: 34px;
}
@media screen and (max-width: 1024px) {
  .recruit-data__list__item:nth-child(4), .recruit-data__list__item:nth-child(5), .recruit-data__list__item:nth-child(6) {
    padding-bottom: 25px;
  }
}
.recruit-data__list__item:nth-child(4) .recruit-data__list__title, .recruit-data__list__item:nth-child(5) .recruit-data__list__title, .recruit-data__list__item:nth-child(6) .recruit-data__list__title {
  margin-bottom: 12px;
}
@media screen and (max-width: 599px) {
  .recruit-data__list__item:nth-child(4) .recruit-data__list__title, .recruit-data__list__item:nth-child(5) .recruit-data__list__title, .recruit-data__list__item:nth-child(6) .recruit-data__list__title {
    margin-bottom: 20px;
  }
}
.recruit-data__list__title {
  margin-bottom: 25px;
  padding: 0 30px;
  color: #242424;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .recruit-data__list__title {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 834px) {
  .recruit-data__list__title {
    padding: 0 20px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-data__list__title {
    margin-bottom: 20px;
  }
}
.recruit-data__list__title > span {
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px dotted #222;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .recruit-data__list__title > span {
    padding-bottom: 8px;
  }
}
.recruit-data__list__image {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.recruit-data__caption {
  color: #222;
  text-align: right;
}

.recruit-list {
  display: flex;
  flex-direction: column;
  margin: -5px 0 0 -5px;
}
.recruit-list.row {
  flex-direction: row;
  flex-wrap: wrap;
}
.recruit-list.row > li {
  width: calc((99.9% - 15px) / 3);
}
@media screen and (max-width: 834px) {
  .recruit-list.row > li {
    width: calc((99.9% - 10px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .recruit-list.row > li {
    width: 100%;
  }
}
.recruit-list > li {
  position: relative;
  margin: 5px 0 0 5px;
  padding-left: 22px;
}
.recruit-list > li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 11px;
  height: 11px;
  background-color: #e50012;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .recruit-list > li::before {
    top: 7px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-list > li::before {
    top: 6px;
  }
}

.recruit-container {
  display: flex;
}
@media screen and (max-width: 599px) {
  .recruit-container {
    flex-direction: column;
  }
}
.recruit-container__content {
  width: 68%;
  padding-right: 5%;
}
@media screen and (max-width: 599px) {
  .recruit-container__content {
    width: 100%;
    margin-bottom: 12px;
    padding-right: 0;
  }
}
.recruit-container__image {
  width: 32%;
}
@media screen and (max-width: 599px) {
  .recruit-container__image {
    width: 100%;
  }
  .recruit-container__image img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 210px;
  }
}
.recruit-container__need dt {
  font-weight: 600;
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}
.recruit-container__need dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7px 0 7px;
  border-color: #e50012 transparent transparent transparent;
}
.recruit-container__need dd span {
  color: #e50012;
}

.recruit-btn {
  display: block;
  max-width: 355px;
  margin: 0 auto;
  padding: 20px 55px;
  background-color: #262123;
  border-radius: 50px;
  color: #fff;
  font-size: 1.7rem;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .recruit-btn {
    font-size: 1.6rem;
    padding: 15px 45px;
  }
}
@media screen and (max-width: 599px) {
  .recruit-btn {
    background-position: center right 18px;
    font-size: 1.5rem;
  }
}
.recruit-btn > span {
  position: relative;
  padding-right: 35px;
}
.recruit-btn > span::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 17px;
  height: 17px;
  background-image: url(../img/common/icon_external_white.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
.recruit-btn:hover {
  background-color: #e50012;
}

.privacy__list__block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.privacy__list__block .privacy__list-square {
  width: calc((100% - 20px) / 3);
}
@media screen and (max-width: 834px) {
  .privacy__list__block .privacy__list-square {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .privacy__list__block .privacy__list-square {
    width: 100%;
  }
}
.privacy__list__block.box {
  padding: 25px 30px;
  border: 1px dotted #567;
}
@media screen and (max-width: 1024px) {
  .privacy__list__block.box {
    padding: 20px 25px;
  }
}
@media screen and (max-width: 599px) {
  .privacy__list__block.box {
    padding: 15px 20px;
  }
}
.privacy__list-square__item {
  position: relative;
  padding-left: 22px;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .privacy__list-square__item {
    padding-left: 18px;
  }
}
@media screen and (max-width: 599px) {
  .privacy__list-square__item {
    line-height: 1.8;
    padding-left: 16px;
  }
}
.privacy__list-square__item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #e50012;
}
@media screen and (max-width: 1024px) {
  .privacy__list-square__item::before {
    top: 11px;
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width: 599px) {
  .privacy__list-square__item::before {
    top: 8px;
  }
}
.privacy__list-square__item:not(:last-child) {
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .privacy__list-square__item:not(:last-child) {
    margin-bottom: 10px;
  }
}
.privacy__list-square.box {
  padding: 55px 45px;
  border: 1px dotted #567;
}
@media screen and (max-width: 1024px) {
  .privacy__list-square.box {
    padding: 35px 25px;
  }
}
@media screen and (max-width: 599px) {
  .privacy__list-square.box {
    padding: 25px 15px;
  }
}
.privacy__table {
  width: 100%;
}
.privacy__table__thead-th {
  padding: 12px;
  background-color: #567;
  border: 1px solid #d6d6d6;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .privacy__table__thead-th {
    padding: 10px 5px;
  }
}
.privacy__table__thead-th:nth-child(1) {
  width: 400px;
}
@media screen and (max-width: 834px) {
  .privacy__table__thead-th:nth-child(1) {
    width: 350px;
  }
}
@media screen and (max-width: 599px) {
  .privacy__table__thead-th:nth-child(1) {
    width: 170px;
  }
}
.privacy__table__th, .privacy__table__td {
  padding: 18px;
  border: 1px solid #d6d6d6;
  color: #222;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .privacy__table__th, .privacy__table__td {
    padding: 10px;
  }
}
.privacy__table__th {
  background-color: #f1f3f4;
  font-weight: 500;
}
.privacy__table__th.text-left {
  text-align: left;
  width: 200px;
  vertical-align: middle;
}
@media screen and (max-width: 834px) {
  .privacy__table__th.text-left {
    width: 190px;
  }
}
@media screen and (max-width: 599px) {
  .privacy__table__th.text-left {
    width: 100px;
  }
}
.privacy__table__td {
  padding-left: 35px;
}
@media screen and (max-width: 834px) {
  .privacy__table__td {
    padding-left: 25px;
  }
}
@media screen and (max-width: 599px) {
  .privacy__table__td {
    padding-left: 10px;
  }
}
.privacy__table__td.text-center {
  text-align: center;
}
.privacy__table__note {
  margin-left: 1em;
  font-size: 1.4rem;
}
@media screen and (max-width: 599px) {
  .privacy__table__note {
    margin-left: 0.5em;
    font-size: 1.2rem;
  }
}
.privacy__note {
  padding-left: 1.8em;
  text-indent: -1.8em;
  line-height: 1.9;
}
.privacy__list-circle__item {
  position: relative;
  padding-left: 16px;
}
@media screen and (max-width: 1024px) {
  .privacy__list-circle__item {
    padding-left: 12px;
  }
}
.privacy__list-circle__item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #e50012;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .privacy__list-circle__item::before {
    width: 4px;
    height: 4px;
  }
}
@media screen and (max-width: 599px) {
  .privacy__list-circle__item::before {
    top: 9px;
  }
}

.hospitality__cmn-btn {
  display: block;
  max-width: 450px;
  margin: 0 auto;
  padding: 20px 25px 20px 40px;
  background-color: #262123;
  border-radius: 50px;
  color: #fff;
  font-size: 1.7rem;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .hospitality__cmn-btn {
    font-size: 1.6rem;
    padding: 15px 45px;
  }
}
@media screen and (max-width: 599px) {
  .hospitality__cmn-btn {
    background-position: center right 18px;
    font-size: 1.4rem;
    padding: 15px 10px 15px 10px;
  }
}
.hospitality__cmn-btn > span {
  position: relative;
  padding-right: 35px;
}
@media screen and (max-width: 599px) {
  .hospitality__cmn-btn > span {
    padding-right: 25px;
    letter-spacing: -0.03em;
  }
}
.hospitality__cmn-btn > span::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 17px;
  height: 17px;
  background-image: url(../img/common/icon_external_white.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
.hospitality__cmn-btn:hover {
  background-color: #e50012;
}
.hospitality__facility {
  margin-top: 60px;
  margin-bottom: 70px;
}
@media screen and (max-width: 599px) {
  .hospitality__facility {
    margin-top: 35px;
    margin-bottom: 40px;
  }
}
.hospitality__facility__list {
  padding: 0px 25px;
  margin-top: 30px;
  margin-bottom: 65px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px 74px;
}
@media screen and (max-width: 1024px) {
  .hospitality__facility__list {
    padding: 0px 25px;
  }
}
@media screen and (max-width: 834px) {
  .hospitality__facility__list {
    padding: 0;
    gap: 30px;
    margin-top: 15px;
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 599px) {
  .hospitality__facility__list {
    flex-direction: column;
    gap: 35px;
    margin-top: 0;
    margin-bottom: 50px;
  }
}
.hospitality__facility__box {
  display: flex;
  flex-direction: column;
  width: calc((100% - 74px) / 2);
}
@media screen and (max-width: 834px) {
  .hospitality__facility__box {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .hospitality__facility__box {
    width: 100%;
  }
}
.hospitality__facility__ph {
  margin-bottom: 25px;
}
@media screen and (max-width: 834px) {
  .hospitality__facility__ph {
    margin-bottom: 20px;
  }
}
.hospitality__facility__ttl {
  position: relative;
  margin-bottom: 18px;
  padding: 0 0 12px 24px;
  border-bottom: 1px solid #dfdfdf;
  color: #222;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  flex-grow: 1;
}
@media screen and (max-width: 1024px) {
  .hospitality__facility__ttl {
    padding: 0 0 8px 22px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 834px) {
  .hospitality__facility__ttl {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .hospitality__facility__ttl {
    margin-bottom: 12px;
    padding: 0 0 6px 22px;
  }
}
.hospitality__facility__ttl.stxt {
  letter-spacing: -1px;
}
@media screen and (max-width: 599px) {
  .hospitality__facility__ttl.stxt {
    letter-spacing: 0.04em;
  }
}
.hospitality__facility__ttl::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 4px solid #e50012;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .hospitality__facility__ttl::before {
    top: 6px;
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 599px) {
  .hospitality__facility__ttl::before {
    width: 15px;
    height: 15px;
    border-width: 4px;
  }
}
.hospitality__facility__link {
  position: relative;
  margin: 18px 20px 0px;
  display: block;
  border: 1px solid #202020;
  color: #202020;
  border-radius: 50px;
  padding: 15px;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .hospitality__facility__link {
    padding: 11px;
    margin: 15px 0px 0px;
    font-size: 1.4rem;
  }
}
.hospitality__facility__link::after {
  display: block;
  content: "";
  position: absolute;
  vertical-align: middle;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 9px;
  height: 9px;
  border-right: 2px solid #202020;
  border-bottom: 2px solid #202020;
  transform: rotate(-45deg);
}
.hospitality__facility__link:hover {
  background-color: #222;
  color: #fff;
}
.hospitality__facility__link:hover::after {
  border-color: #fff;
}
.hospitality__facility__text {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 35px;
}
@media screen and (max-width: 599px) {
  .hospitality__facility__text {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
.hospitality__facility__bnr {
  position: relative;
  text-align: center;
  display: block;
  max-width: 400px;
  margin: 0 auto;
  border: 1px solid #7f7f7f;
  padding: 26px 70px;
}
@media screen and (max-width: 834px) {
  .hospitality__facility__bnr {
    padding: 20px 60px;
    max-width: 350px;
  }
}
@media screen and (max-width: 599px) {
  .hospitality__facility__bnr {
    padding: 14px 55px;
    max-width: 280px;
  }
}
.hospitality__facility__bnr::before, .hospitality__facility__bnr::after {
  content: "";
  height: 12px;
  width: 15px;
  right: 10px;
  position: absolute;
  bottom: 10px;
}
@media screen and (max-width: 599px) {
  .hospitality__facility__bnr::before, .hospitality__facility__bnr::after {
    height: 9px;
    width: 12px;
  }
}
.hospitality__facility__bnr::before {
  border: 1px solid #e50012;
}
.hospitality__facility__bnr::after {
  border-right: 1px solid #e50012;
  border-bottom: 1px solid #e50012;
  right: 7px;
  bottom: 7px;
}
.hospitality__facility__bnr:hover {
  border-color: #e50012;
}
.hospitality__facility__photo {
  margin-top: 80px;
  display: flex;
}
@media screen and (max-width: 834px) {
  .hospitality__facility__photo {
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 1px;
  }
}
.hospitality__facility__photo__item {
  flex: 1;
  overflow: hidden;
  height: 195px;
}
@media screen and (max-width: 1024px) {
  .hospitality__facility__photo__item {
    height: 170px;
  }
}
@media screen and (max-width: 834px) {
  .hospitality__facility__photo__item {
    width: calc((100% - 1px) / 2);
    flex: auto;
    height: auto;
  }
}
.hospitality__facility__photo__item img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.hospitality__company {
  margin-bottom: 70px;
}
.hospitality__company__inner {
  background-color: #f1f3f4;
  padding: 50px 40px;
}
@media screen and (max-width: 599px) {
  .hospitality__company__inner {
    padding: 25px 15px 20px;
  }
}
.hospitality__company__ttl {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  gap: 35px;
}
@media screen and (max-width: 599px) {
  .hospitality__company__ttl {
    flex-direction: column;
    gap: 20px;
  }
}
.hospitality__company__logo {
  width: 342px;
  height: auto;
  padding: 10px 30px 15px 20px;
  border-right: 1px solid #e50012;
}
@media screen and (max-width: 599px) {
  .hospitality__company__logo {
    width: 85%;
    padding: 0 0 20px 0;
    border-right: none;
    border-bottom: 1px solid #e50012;
  }
}
.hospitality__company__catch {
  flex: 1;
  font-size: 1.9rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
}
@media screen and (max-width: 599px) {
  .hospitality__company__catch {
    font-size: 1.6rem;
    text-align: center;
  }
}
.hospitality__company__outline {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  background-color: #fff;
  padding: 30px 45px;
}
@media screen and (max-width: 599px) {
  .hospitality__company__outline {
    flex-direction: column;
    padding: 10px 15px 20px 15px;
  }
}
.hospitality__company__outline dt {
  width: 220px;
  padding: 25px 0px;
  text-indent: 5px;
  border-top: solid 1px #cccccc;
}
@media screen and (max-width: 599px) {
  .hospitality__company__outline dt {
    position: relative;
    width: 100%;
    padding: 15px 0px 0px 13px;
  }
  .hospitality__company__outline dt::before {
    background: #e50012;
    content: "";
    height: 3px;
    width: 10px;
    left: 0;
    position: absolute;
    top: 25px;
  }
}
.hospitality__company__outline dt:first-child {
  border-top: none;
}
.hospitality__company__outline dt:first-child + dd {
  border-top: none;
}
.hospitality__company__outline dd {
  width: calc(100% - 220px);
  padding: 25px 0;
  border-top: solid 1px #cccccc;
}
@media screen and (max-width: 599px) {
  .hospitality__company__outline dd {
    width: 100%;
    padding: 8px 0px 15px 0px;
    border-top: none;
  }
}
.hospitality__contact-ttl {
  margin-bottom: 40px;
  color: #222;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .hospitality__contact-ttl {
    margin-bottom: 30px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .hospitality__contact-ttl {
    margin-bottom: 15px;
    font-size: 1.7rem;
  }
}
.hospitality__contact {
  display: flex;
  margin-bottom: 80px;
  border: 1px dotted #567;
}
@media screen and (max-width: 599px) {
  .hospitality__contact {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.hospitality__contact__title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 320px;
  background-color: #567;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1024px) {
  .hospitality__contact__title {
    width: 280px;
  }
}
@media screen and (max-width: 834px) {
  .hospitality__contact__title {
    width: 170px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 599px) {
  .hospitality__contact__title {
    width: 100%;
    padding: 10px 20px 8px;
    font-size: 1.5rem;
  }
}
.hospitality__contact__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  width: 1px;
  height: 65px;
  background-color: #f00;
}
@media screen and (max-width: 834px) {
  .hospitality__contact__title::before {
    left: 28px;
    height: 40px;
  }
}
@media screen and (max-width: 599px) {
  .hospitality__contact__title::before {
    height: 35px;
  }
}
.hospitality__contact__content {
  width: calc(100% - 320px);
  padding: 30px 45px;
}
@media screen and (max-width: 1024px) {
  .hospitality__contact__content {
    width: calc(100% - 280px);
  }
}
@media screen and (max-width: 834px) {
  .hospitality__contact__content {
    width: calc(100% - 170px);
    padding: 30px 20px;
  }
}
@media screen and (max-width: 599px) {
  .hospitality__contact__content {
    width: 100%;
    padding: 18px;
  }
}
@media screen and (max-width: 599px) {
  .hospitality__contact__content .text-base {
    line-height: 1.7;
  }
}
.hospitality__contact__def-list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .hospitality__contact__def-list {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .hospitality__contact__def-list > dt {
    text-align: center;
  }
}
.hospitality__contact__def-list > dd {
  margin-left: 2em;
  padding: 10px 0 10px 2em;
  border-left: 1px dotted #adacac;
  color: #222;
}
@media screen and (max-width: 834px) {
  .hospitality__contact__def-list > dd {
    margin-left: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  .hospitality__contact__def-list > dd {
    margin-top: 5px;
    margin-left: 0;
    padding-bottom: 0;
    padding-left: 0;
    border-top: 1px dotted #adacac;
    border-left: none;
    text-align: center;
    font-size: 1.4rem;
  }
}
.hospitality__contact__def-list__tel {
  position: relative;
  padding-left: 40px;
  color: #e50012;
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
@media screen and (max-width: 834px) {
  .hospitality__contact__def-list__tel {
    padding-left: 30px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .hospitality__contact__def-list__tel {
    padding-left: 35px;
    font-size: 2.8rem;
  }
}
.hospitality__contact__def-list__tel::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 28px;
  height: 28px;
  background-image: url(../img/common/icon_tel.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 834px) {
  .hospitality__contact__def-list__tel::before {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 599px) {
  .hospitality__contact__def-list__tel::before {
    top: 3px;
    width: 25px;
    height: 25px;
  }
}

.sitemap-title {
  position: relative;
  margin-bottom: 17px;
  padding: 13px 8px 9px 40px;
  color: #222;
  font-size: 1.8rem;
  font-weight: 700;
  background-color: #f2f2f2;
}
@media screen and (max-width: 1024px) {
  .sitemap-title {
    font-size: 1.7rem;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-title {
    margin-bottom: 12px;
    padding: 9px 5px 7px 32px;
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
}
.sitemap-title::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 15px;
  width: 16px;
  height: 16px;
  border: 5px solid #e50012;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .sitemap-title::before {
    top: 14px;
    left: 10px;
    width: 15px;
    height: 15px;
    border-width: 4px;
  }
}
.sitemap-title a {
  color: #222;
}
.sitemap-title a:hover {
  color: #e50012;
}

.sitemap-box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .sitemap-box {
    display: block;
  }
}
.sitemap-box__inner {
  width: 47.5%;
}
@media screen and (max-width: 1024px) {
  .sitemap-box__inner {
    width: 48.5%;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-box__inner {
    width: 100%;
  }
}

.sitemap {
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .sitemap {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.sitemap__item {
  margin-bottom: 10px;
  padding-left: 20px;
}
.sitemap__link {
  position: relative;
  padding-left: 22px;
  color: #222;
  font-size: 1.6rem;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .sitemap__link {
    font-size: 1.4rem;
  }
}
.sitemap__link::before, .sitemap__link::after {
  content: "";
  position: absolute;
  transition: 0.3s;
}
.sitemap__link::before {
  top: 6px;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid #222;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .sitemap__link::before {
    top: 4px;
  }
}
.sitemap__link::after {
  top: 11px;
  left: 4px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .sitemap__link::after {
    top: 9px;
  }
}
.sitemap__link:hover::before {
  background-color: #222;
}
.sitemap__link:hover::after {
  border-top-color: #fff;
  border-right-color: #fff;
}/*# sourceMappingURL=style.css.map */