@charset "UTF-8"

/* --------------------------------------------------

  サイト全体で共通のスタイル

-------------------------------------------------- */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


/* サイト全体で共通のウェブフォント */
@charset "UTF-8";

/* サイト全体で共通のフォント */

@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700&subset=japanese");
/* 英字用 */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Oswald:wght@300;400;500;700&display=swap");

/* サイト全体で共通のアニメーション */
@charset "UTF-8";

/* サイト全体で共通のアニメーション */



/* tableのswipeアイコンの動き */

@keyframes table-swipe {
  0% {
    opacity: 0;
    transform: translate(-20px, 5px) rotate(0);
  }
  75% {
    opacity: 1;
    transform: translate(20px, -5px) rotate(15deg);
  }
  100% {
    opacity: 1;
    transform: translate(20px, -5px) rotate(15deg);
  }
}

/* リンクフェードイン */
@keyframes link-underline {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* フェードイン */
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* scroll */
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  75% {
    -webkit-transform: translateY(25px);
    transform: translateY(25px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(25px);
    transform: translateY(25px);
    opacity: 0;
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  75% {
    -webkit-transform: translateY(25px);
    transform: translateY(25px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(25px);
    transform: translateY(25px);
    opacity: 0;
  }
}

/* サイト全体で共通の HTML 要素のスタイル */
@charset "UTF-8";


/* サイト全体で共通の要素のスタイル */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  line-break: strict;
  overflow-wrap: break-word;
  word-break: break-word;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

html {
  background-color: #ffffff;
  color: #1E242F;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.78em;
  scroll-behavior: smooth;
}
/* 多言語対応 */
html:lang(ja) {
  font-family: 'Noto Sans JP', sans-serif;
}

html.is-hamburger-nav-open {
  overflow: hidden;
}

body {
  font-size: 1.4rem;
  letter-spacing: .1em;
  line-height: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover, a:focus {
  text-decoration: none;
}

button {
  color: #1E242F;
  font-size: 1.4rem;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: .1em;
  line-height: 1;
  background-color: transparent;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

sub {
  font-size: 1.1rem;
  vertical-align: sub;
}

sup {
  font-size: 1.1rem;
  vertical-align: super;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: '';
  content: none;
}

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

ol, ul {
  list-style: none;
}

::selection {
  background-color: rgba(23,42,136,.1);
}
/* === アクセシビリティ対応 */

/* キーボード操作時のみ[outline]を表示 */
:focus:not(:focus-visible) {
  outline: 0;
}

/* アクセシビリティ対応 === */
/* ==========================================================================

  utility

========================================================================== */

.block {
  display: block;
  text-decoration: none;
}

.block, .block:active, .block:visited {
  color: inherit;
}

.inline-block {
  display: inline-block;
}

.break {
  word-wrap: break-word;
}

.full {
  box-sizing: border-box;
  width: 100%;
}

.stick {
  margin: 0 !important;
}

.stick-bottom {
  margin-bottom: 0 !important;
}

.stick-left {
  margin-left: 0 !important;
}

.stick-right {
  margin-right: 0 !important;
}

.stick-top {
  margin-top: 0 !important;
}

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

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-lower {
  text-transform: lowercase;
}

.text-upper {
  text-transform: uppercase;
}

.word {
  display: inline-block;
}

.pc-only {
  display: block;
}
@media print, screen and (max-width: 760px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media print, screen and (max-width: 760px) {
  .sp-only {
    display: block;
  }
}

.hs_cos_wrapper_type_icon {
  display: none;
}

.hs_error_rollup {
  color: red;
  margin-top: 50px;
  text-align: center;
}

/* === アクセシビリティ対応用 */

/*
  視覚的に非表示にしつつ、スクリーンリーダーで読み上げ可能にする。
  UIコンポーネントであってもキーボードフォーカスは不可だが、スクリーンリーダーではフォーカス可能。
*/
.visually-hidden-element {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(0 0 99.9% 99.9%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

/* アクセシビリティ対応用 === */

/* サイト全体で共通な自然なスタイル */
/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


.natural {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}
.natural:first-child {
  margin-top: 0;
}
.natural:last-child {
  margin-bottom: 0;
}

.natural--bg {
  box-sizing: border-box;
  padding: 30px;
  background-color: #F7F9FC;
}
@media screen and (max-width:767px) {
  .natural--bg {
    padding: 20px;
  }
}
/* 背景色ありのスタイル */
.dnd-section-color--bg .natural--bg {
  background-color: #ffffff;
}

.natural h1, .natural h2, .natural h3, .natural h4, .natural h5, .natural h6 {
  display: block;
}

.natural pre, .natural h1, .natural h2, .natural h3, .natural h5, .natural h6, .natural .solid, .natural hr, .natural blockquote {
  display: block;
}

/* elements settings */
.natural pre+pre,.natural h1+pre,.natural h2+pre,.natural h3+pre,.natural h4+pre,.natural h5+pre,.natural h6+pre,.natural .solid+pre,.natural hr+pre,.natural blockquote+pre,.natural table+pre,.natural pre+h1,.natural h1+h1,.natural h2+h1,.natural h3+h1,.natural h4+h1,.natural h5+h1,.natural h6+h1,.natural .solid+h1,.natural hr+h1,.natural blockquote+h1,.natural table+h1,.natural pre+h2,.natural h1+h2,.natural h2+h2,.natural h3+h2,.natural h4+h2,.natural h5+h2,.natural h6+h2,.natural .solid+h2,.natural hr+h2,.natural blockquote+h2,.natural table+h2,.natural pre+h3,.natural h1+h3,.natural h2+h3,.natural h3+h3,.natural h4+h3,.natural h5+h3,.natural h6+h3,.natural .solid+h3,.natural hr+h3,.natural blockquote+h3,.natural table+h3,.natural pre+h4,.natural h1+h4,.natural h2+h4,.natural h3+h4,.natural h4+h4,.natural h5+h4,.natural h6+h4,.natural .solid+h4,.natural hr+h4,.natural blockquote+h4,.natural table+h4,.natural pre+h5,.natural h1+h5,.natural h2+h5,.natural h3+h5,.natural h4+h5,.natural h5+h5,.natural h6+h5,.natural .solid+h5,.natural hr+h5,.natural blockquote+h5,.natural table+h5,.natural pre+h6,.natural h1+h6,.natural h2+h6,.natural h3+h6,.natural h4+h6,.natural h5+h6,.natural h6+h6,.natural .solid+h6,.natural hr+h6,.natural blockquote+h6,.natural table+h6,.natural pre+.solid,.natural h1+.solid,.natural h2+.solid,.natural h3+.solid,.natural h4+.solid,.natural h5+.solid,.natural h6+.solid,.natural .solid+.solid,.natural hr+.solid,.natural blockquote+.solid,.natural table+.solid,.natural pre+hr,.natural h1+hr,.natural h2+hr,.natural h3+hr,.natural h4+hr,.natural h5+hr,.natural h6+hr,.natural .solid+hr,.natural hr+hr,.natural blockquote+hr,.natural table+hr,.natural pre+blockquote,.natural h1+blockquote,.natural h2+blockquote,.natural h3+blockquote,.natural h4+blockquote,.natural h5+blockquote,.natural h6+blockquote,.natural .solid+blockquote,.natural hr+blockquote,.natural blockquote+blockquote,.natural table+blockquote,.natural pre+table,.natural h1+table,.natural h2+table,.natural h3+table,.natural h4+table,.natural h5+table,.natural h6+table,.natural .solid+table,.natural hr+table,.natural blockquote+table,.natural table+table {
  margin-top: 38px;
}

.natural ol:not(:first-child),
.natural ul:not(:first-child),
.natural dl:not(:first-child),
.natural figure:not(:first-child) {
  display: block;
}
.natural p:not(:last-child),
.natural ol:not(:last-child),
.natural ul:not(:last-child),
.natural dl:not(:last-child),
.natural figure:not(:last-child) {
  display: block;
}


/* heading */
.natural h2 {
  margin-top: 60px;
  margin-bottom: 25px;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .natural h2 {
    margin-top: 80px;
    margin-bottom: 45px;
    font-size: 2.8rem;
  }
}
.natural h2:first-child {
  margin-top: 0;
}
.natural h2:last-child {
  margin-bottom: 0;
}

.natural h3 {
  margin-top: 25px;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .natural h3 {
    margin-top: 55px;
    margin-bottom: 30px;
    font-size: 2.4rem;
  }
}
.natural h3:first-child {
  margin-top: 0;
}
.natural h3:last-child {
  margin-bottom: 0;
}

.natural h4 {
  margin-top: 30px;
  margin-bottom: 20px;
  color: #3B4046;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .natural h4 {
    margin-top: 45px;
    margin-bottom: 25px;
    font-size: 2.0rem;
  }
}
.natural h4:first-child {
  margin-top: 0;
}
.natural h4:last-child {
  margin-bottom: 0;
}

.natural h5 {
  margin-top: 30px;
  margin-bottom: 20px;
  color: #3B4046;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .natural h5 {
    font-size: 1.7rem;
  }
}
.natural h5:first-child {
  margin-top: 0;
}
.natural h5:last-child {
  margin-bottom: 0;
}

/* paragraph */
.natural p {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #3B4046;
  font-size: 1.3rem;
  letter-spacing: .1em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .natural p {
    font-size: 1.6rem;
  }
}
.natural p:first-child {
  margin-top: 0;
}
.natural p:last-child {
  margin-bottom: 0;
}

.natural--white p {
  color: #ffffff;
}

/* text decoration tags */
.natural strong {
  font-weight: 500;
}

.natural em {
  font-style: italic;
}

/* figure / caption / image */
.natural figure figcaption,
.natural caption {
  margin-top: 20px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .1em;
}
@media screen and (max-width:767px) {
  .natural figure figcaption,
  .natural caption {
    font-size: 1.2rem;
    line-height: 1.9;
  }
}
.natural figure figcaption:first-child,
.natural caption:first-child {
  margin-top: 0
}

.natural figure {
  max-width: 750px;
  margin: 20px auto;
}
@media screen and (min-width:768px) {
  .natural figure {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.natural figure:first-child {
  margin-top: 0;
}
.natural figure:last-child {
  margin-bottom: 0;
}

.natural img {
  max-width: 100%;
  min-height: 10px;
  vertical-align: top;
}
@media screen and (min-width:768px) {
  .natural img {
    max-width: 650px;
  }
}

/* link */
.natural a:not(.cta_button):not(.js-no-icon) {
  display: inline;
  position: relative;
  font-weight: 500;
  border-bottom: 1px solid #172A88;
  color: #3B4046;
  text-decoration: none;
  word-break: break-all;
  transition: .5s;
}
@media screen and (min-width: 1050px) {
  .natural a:not(.cta_button):not(.js-no-icon):hover {
    color: #172A88;
  }
}

/*
  external link
  ※.js-no-iconは_natural.jsで付与している
*/
.natural a:not(.cta_button):not(.js-no-icon)[target="_blank"] {
	padding-left: 16px;
}
@media screen and (max-width: 767px) {
  .natural a:not(.cta_button):not(.js-no-icon)[target="_blank"] {
    padding-left: 14px;
  }
}
.natural a:not(.cta_button):not(.js-no-icon)[target="_blank"]::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMS45NjkiIGhlaWdodD0iMTEuOTY5IiB2aWV3Qm94PSIwIDAgMTEuOTY5IDExLjk2OSI+CiAgPHBhdGggaWQ9IuODkeOCuV82NDIxIiBkYXRhLW5hbWU9IuODkeOCuSA2NDIxIiBkPSJNLTc4OC41MjksMGgtNi4zNDJhLjUyOC41MjgsMCwwLDAtLjUyOC41MjlWMi4xNjdoLTMuODdhLjcuNywwLDAsMC0uNy43djguNGEuNy43LDAsMCwwLC43LjdoOC40YS43LjcsMCwwLDAsLjctLjdWNy40aDEuNjM4QS41MjguNTI4LDAsMCwwLTc4OCw2Ljg3MVYuNTI5QS41MjkuNTI5LDAsMCwwLTc4OC41MjksMFptLTIuNjM4LDEwLjk2OWgtNy44di03LjhoMy41N3YzLjdhLjUyNy41MjcsMCwwLDAsLjUyOC41MjhoMy43Wk0tNzg5LDYuNGgtNS40VjFoNS40WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNzk5Ljk2OSkiIGZpbGw9IiM0MTQxNDEiLz4KPC9zdmc+Cg==") no-repeat center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .natural a:not(.cta_button):not(.js-no-icon)[target="_blank"]::before {
    top: 6px;
    width: 10px;
    height: 10px;
  }
}

/* list */
.natural ul,
.natural ol {
  margin-top: 10px;
  margin-left: 1.3em;
}

.natural > ul,
.natural > ol,
.natural > .hs_cos_wrapper_type_rich_text > ul,
.natural > .hs_cos_wrapper_type_rich_text > ol {
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: 0;
  padding: 15px 20px 15px 42px;
  border: 1px solid #ABAEC1;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .natural > ul,
  .natural > ol,
  .natural > .hs_cos_wrapper_type_rich_text > ul,
  .natural > .hs_cos_wrapper_type_rich_text > ol {
    margin-top: 35px;
    margin-bottom: 35px;
    padding: 20px 35px 20px 55px;
  }
}
.natural > ul:first-child,
.natural > ol:first-child,
.natural > .hs_cos_wrapper_type_rich_text > ul:first-child,
.natural > .hs_cos_wrapper_type_rich_text > ol:first-child {
  margin-top: 0;
}
.natural > ul:last-child,
.natural > ol:last-child,
.natural > .hs_cos_wrapper_type_rich_text > ul:last-child,
.natural > .hs_cos_wrapper_type_rich_text > ol:last-child {
  margin-bottom: 0;
}

.natural > ul li,
.natural > .hs_cos_wrapper_type_rich_text > ul li {
  position: relative;
  margin-top: calc( 20px - (((1em * 2) - 1em) / 2) );
  margin-bottom: calc( 20px - (((1em * 2) - 1em) / 2) );
  color: #3B4046;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .natural > ul li,
  .natural > .hs_cos_wrapper_type_rich_text > ul li {
    font-size: 1.6rem;
  }
}
.natural > ul li:first-child,
.natural > .hs_cos_wrapper_type_rich_text > ul li:first-child {
  margin-top: 0;
}
.natural > ul li:last-child,
.natural > .hs_cos_wrapper_type_rich_text > ul li:last-child {
  margin-bottom: 0;
}

/* normal list style */
.natural > ul:not([style*="list-style-type"]),
.natural > .hs_cos_wrapper_type_rich_text > ul:not([style*="list-style-type"]) {
  padding-left: 35px;
}
@media screen and (min-width: 768px) {
  .natural > ul:not([style*="list-style-type"]),
  .natural > .hs_cos_wrapper_type_rich_text > ul:not([style*="list-style-type"]) {
    padding-left: 51px;
  }
}
.natural > ul:not([style*="list-style-type"]) li::before,
.natural > .hs_cos_wrapper_type_rich_text > ul:not([style*="list-style-type"]) li::before {
  content: "";
  display: block;
  position: absolute;
  top: .8em;
  left: -15px;
  width: 5px;
  height: 5px;
  background-color: #ABAEC1;
}

/* 番号付きリスト */
.natural ol {
  list-style-type: decimal;
}

.natural ol li {
  display: list-item;
  margin-top: calc( 20px - (((1em * 2) - 1em) / 2) );
  margin-bottom: calc( 20px - (((1em * 2) - 1em) / 2) );
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 2;
  list-style: inherit;
  color: #3B4046;
}
@media screen and (min-width: 768px) {
  .natural ol li {
    font-size: 1.6rem;
  }
}

/* pre */
.natural pre {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 20px 20px 18px;
  border: 1px solid #ABAEC1;
  border-radius: 5px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 2;
  white-space: normal;
  color: #3B4046;
}
@media screen and (min-width: 768px) {
  .natural pre {
    margin-top: 35px;
    margin-bottom: 35px;
    padding: 26px 35px 28px;
    font-size: 1.6rem;
  }
}
.natural pre:first-child {
  margin-top: 0;
}
.natural pre:last-child {
  margin-bottom: 0;
}

/* table */
.natural .js-table-scroll {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}
@media screen and (min-width: 768px) {
  .natural .js-table-scroll {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
}
.natural .js-table-scroll:first-child {
  margin-top: 0;
}
.natural .js-table-scroll:last-child {
  margin-bottom: 0;
}

.natural table {
  width: 100%;
  height: auto !important;
  border: 1px solid #ABAEC1 !important;
}
@media screen and (min-width: 768px) {
  .natural table {
    max-width: 100%;
  }
}
.natural .js-table-scroll table {
  min-width: 610px;
}

.natural table tr {
  height: auto !important;
}
.natural table tr:not(:last-child) {
  border-bottom: 1px solid #ABAEC1;
}
.natural table tr:first-of-type td {
  background-color: rgba(171, 174, 193, .5);
}

.natural table td {
  height: auto !important;
  padding-right: 20px !important;
  padding-left: 20px !important;
  color: #3B4046;
  font-size: 1.3rem;
  letter-spacing: .1em;
  line-height: 2;
  text-align: left;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .natural table td {
    padding: 15px !important;
    font-size: 1.6rem;
  }
}

.natural table td:not(:last-child) {
  border-right: 1px solid #ABAEC1;
}

/* blockquote */
.natural blockquote {
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 20px 45px;
  border-top: 1px solid #ABAEC1;
  border-bottom: 1px solid #ABAEC1;
}
@media screen and (min-width: 768px) {
  .natural blockquote {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 25px 60px;
  }
}
.natural blockquote:first-child {
  margin-top: 0;
}
.natural blockquote:last-child {
  margin-bottom: 0;
}

.natural blockquote::before,
.natural blockquote::after {
  content: "";
  position: absolute;
  width: 18.65px;
  height: 13.09px;
  background: url(//44558023.fs1.hubspotusercontent-na1.net/hubfs/44558023/raw_assets/public/daikyo-ohta/01_JP/assets/images/common/ico_blockquote.svg) no-repeat;
  background-size: contain;
}
.natural blockquote::before {
  top: 16px;
  left: 16px;
}
.natural blockquote::after {
  top: 16px;
  right: 16px;
  transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  .natural blockquote::before,
  .natural blockquote::after {
    position: absolute;
    width: 25.87px;
    height: 18.16px;
  }
  .natural blockquote::before {
    left: 20px;
  }
  .natural blockquote::after {
    right: 20px;
    transform: rotate(180deg);
  }
}

/* hr */
.natural hr {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .natural hr {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

/* サイト全体で共通のレイアウトスタイル */
@charset "UTF-8";

/* エレベーター */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


.elevator {
  padding-top: 13px;
}
.elevator--brand {
  padding-top: 11px;
}
@media screen and (min-width: 768px) {
  .elevator {
    padding-top: 21px;
  }
  .elevator--brand {
    padding-top: 13px;
  }
}
.is-no-breadcrumb .elevator__nav {
  justify-content: flex-end;
}

.elevator__nav__breadcrumb {
  overflow: auto;
  box-sizing: border-box;
  scrollbar-width: none;       /* Firefox 対応 */
}
.elevator__nav__breadcrumb::-webkit-scrollbar {  /* Chrome, Safari 対応 */
  display:none;
}

.elevator__nav__breadcrumb .hs-breadcrumb-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
  letter-spacing: .1em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .elevator__nav__breadcrumb .hs-breadcrumb-menu {
    font-size: 1.4rem;
  }
}

.elevator__nav__breadcrumb .hs-breadcrumb-menu__item,
.elevator__nav__breadcrumb .hs-breadcrumb-menu .hs-breadcrumb-menu-item {
  float: none;
  padding: 0;
  color: #ABAEC1;
  white-space: nowrap;
}

.elevator__nav__breadcrumb .hs-breadcrumb-menu__item:not(:first-child),
.elevator__nav__breadcrumb .hs-breadcrumb-menu .hs-breadcrumb-menu-item:not(:first-child) {
  position: relative;
  margin-left: 15px;
  padding-left: 16px;
}

.elevator__nav__breadcrumb .hs-breadcrumb-menu__item:not(:first-child)::before,
.elevator__nav__breadcrumb .hs-breadcrumb-menu .hs-breadcrumb-menu-item:not(:first-child)::before {
  content: '';
  display: block;
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2IiBoZWlnaHQ9IjguODUxIiB2aWV3Qm94PSIwIDAgNiA4Ljg1MSI+CiAgPHBhdGggaWQ9IuODkeOCuV83Njg1IiBkYXRhLW5hbWU9IuODkeOCuSA3Njg1IiBkPSJNNTA4LjY0NSwzNDUzLjY1NWwtLjg1My0uOTkxLDMuOTk0LTMuNDU5LTMuOTktMy40Ljg0Ni0xLDUuMTUsNC4zOTNaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTA3Ljc5MSAtMzQ0NC44MDQpIiBmaWxsPSIjMTcyYTg4Ii8+Cjwvc3ZnPg==');
  background-size: contain;
  background-repeat: no-repeat;
  width: 5px;
  height: 7px;
}
@media screen and (min-width: 768px) {
  .elevator__nav__breadcrumb .hs-breadcrumb-menu__item:not(:first-child)::before,
  .elevator__nav__breadcrumb .hs-breadcrumb-menu .hs-breadcrumb-menu-item:not(:first-child)::before {
    width: 6px;
    height: 8.85px;
  }
}
.elevator__nav__breadcrumb .hs-breadcrumb-menu__item:not(:first-child)::before,
.elevator__nav__breadcrumb .hs-breadcrumb-menu .hs-breadcrumb-menu-item:not(:first-child)::before {
  top: calc(50% - 4px);
}

.elevator__nav__breadcrumb .hs-breadcrumb-menu__item:first-child span.hs-breadcrumb-label,
.elevator__nav__breadcrumb .hs-breadcrumb-menu .hs-breadcrumb-menu-item:first-child span.hs-breadcrumb-label {
  color: #3B4046;
}

.elevator__nav__breadcrumb .hs-breadcrumb-menu__item__anchor,
.elevator__nav__breadcrumb .hs-breadcrumb-menu__item a.hs-breadcrumb-label,
.elevator__nav__breadcrumb .hs-breadcrumb-menu .hs-breadcrumb-menu-item__anchor,
.elevator__nav__breadcrumb .hs-breadcrumb-menu .hs-breadcrumb-menu-item a.hs-breadcrumb-label {
  color: #3B4046;
  transition: all .3s;
}

.elevator__nav__breadcrumb .hs-breadcrumb-menu__item__anchor__icon,
.elevator__nav__breadcrumb .hs-breadcrumb-menu__item a.hs-breadcrumb-label__icon,
.elevator__nav__breadcrumb .hs-breadcrumb-menu .hs-breadcrumb-menu-item__anchor__icon,
.elevator__nav__breadcrumb .hs-breadcrumb-menu .hs-breadcrumb-menu-item a.hs-breadcrumb-label__icon {
  display: block;
  position: absolute;
  top: calc(50% - 4px);
  left: 0;
  width: 6px;
  height: 8px;
}

.elevator__nav__breadcrumb .hs-breadcrumb-menu__item__anchor__icon__arrow,
.elevator__nav__breadcrumb .hs-breadcrumb-menu__item a.hs-breadcrumb-label__icon__arrow,
.elevator__nav__breadcrumb .hs-breadcrumb-menu .hs-breadcrumb-menu-item__anchor__icon__arrow,
.elevator__nav__breadcrumb .hs-breadcrumb-menu .hs-breadcrumb-menu-item a.hs-breadcrumb-label__icon__arrow {
  fill: #172A88;
}

.elevator__nav__breadcrumb .hs-breadcrumb-menu__item__anchor:hover,
.elevator__nav__breadcrumb .hs-breadcrumb-menu__item a.hs-breadcrumb-label:hover,
.elevator__nav__breadcrumb .hs-breadcrumb-menu .hs-breadcrumb-menu-item__anchor:hover,
.elevator__nav__breadcrumb .hs-breadcrumb-menu .hs-breadcrumb-menu-item a.hs-breadcrumb-label:hover {
  color: #172A88;
}

.elevator__nav__breadcrumb .hs-breadcrumb-menu__item .hs-breadcrumb-menu-divider,
.elevator__nav__breadcrumb .hs-breadcrumb-menu .hs-breadcrumb-menu-item .hs-breadcrumb-menu-divider {
  display: none;
}
@charset "UTF-8";

/* フッター */
.footer {
  color: #fff;
  background-color: #0C1931;
  background-image:url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjQwIiBoZWlnaHQ9IjEyNiIgdmlld0JveD0iMCAwIDI0MCAxMjYiPgogIDxkZWZzPgogICAgPGxpbmVhckdyYWRpZW50IGlkPSJsaW5lYXItZ3JhZGllbnQiIHgxPSIwLjkwNiIgeTE9IjAuNDc4IiB4Mj0iMC4wNTciIHkyPSIwLjQ3NCIgZ3JhZGllbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giPgogICAgICA8c3RvcCBvZmZzZXQ9IjAiIHN0b3AtY29sb3I9IiNmZmYiIHN0b3Atb3BhY2l0eT0iMC4xNDkiLz4KICAgICAgPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSJncmF5IiBzdG9wLW9wYWNpdHk9IjAiLz4KICAgIDwvbGluZWFyR3JhZGllbnQ+CiAgICA8Y2xpcFBhdGggaWQ9ImNsaXAtcGF0aCI+CiAgICAgIDxyZWN0IGlkPSLplbfmlrnlvaJfMTI2NTIiIGRhdGEtbmFtZT0i6ZW35pa55b2iIDEyNjUyIiB3aWR0aD0iMjQwIiBoZWlnaHQ9IjEyNiIgZmlsbD0idXJsKCNsaW5lYXItZ3JhZGllbnQpIi8+CiAgICA8L2NsaXBQYXRoPgogIDwvZGVmcz4KICA8ZyBpZD0i44Kw44Or44O844OXXzEzNjI5IiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyAxMzYyOSIgY2xpcC1wYXRoPSJ1cmwoI2NsaXAtcGF0aCkiPgogICAgPHBhdGggaWQ9IuODkeOCuV84OTM4IiBkYXRhLW5hbWU9IuODkeOCuSA4OTM4IiBkPSJNMjM5LjgwNiwzOC4yNzVsLS4wNjMtLjA2My02NSw2NC42N2MtMywyLjU3Ny03LjEsNC4yNzItMTAuNjI2LjkwNy0zLjU2NS0zLjQtMS4yMTgtNy43NDEuNzEtOS43MDgsNy43MjYtOC40MTQsMjkuMTQ0LTMwLjEyOSwzNy43NzEtMzguOTIyLDE5Ljc2Mi0yMC45OTEsMTkuMDIzLTM3LDguNDI3LTQ3LjUzOC0xMC4xNDUtMTAuMDg2LTIyLjgtNy45ODMtMjkuNTg2LTUuMDExYTI5Ljc1MSwyOS43NTEsMCwwLDAtOC44NjksNi4xODVDMTQ3LjYxNSwzMy4zMDUsOTEuMjI5LDg3Ljc3Niw3OS45MSw5OS41NDJhMzAuMiwzMC4yLDAsMCwxLTUuNzM0LDQuNzIzYy01LjA2NCwzLjE2MS05LjU2MSwzLjcyOS0xMi4yMTQuNTc3LTMuMzQtNC40MTQtMS43MDktOS4zNDEsNC42ODgtMTYuMDU2LDYuMTQ5LTYuMzA2LDM1LjA3Mi0zNy45NjEsMzkuMy00Mi4zNTYsNC40NjUtNS4yLDkuMjA3LTEyLjg4Miw4LjY4NS0xOS43LS4zMTMtOC41ODEtMy42NDktMTUuMjMxLTEwLjEzLTIwLjkwN0M5OC40MTguMTk0LDg3Ljg2OC0xLjI4Nyw3OS45MSwxLjA4OUEyNy42MzEsMjcuNjMxLDAsMCwwLDcwLjA4LDYuM0wwLDczLjIyNywxMi45LDg2LjU3MSw3Ni43MzksMjcuMzA3czExLjMzNC0xMS40MywxNi45LTUuMTRjNC43LDUuMzE0LTQuNDc2LDE0LjQyMy01Ljk4OCwxNi4xNzJDODMsNDMuNzEyLDU2Ljc3LDY3LjYwNSw0NS44NzMsODAuNzExYTI5LjQ4NywyOS40ODcsMCwwLDAtNi43NzksMTUuMzk0Yy0uNDg4LDkuNTg0LDEuNTE5LDE0Ljc0NCw3LjQsMjEuMTc0LDUuMyw1LjU0NSwxMS44NDUsOC44MDksMjEuMDg4LDguNjc3LDEwLjA2Ni0uMTQ0LDE5LjMwOS00LjgsMjYuNjc3LTEyLjI1Nyw2Ljc4OC03LjQ2Miw2NC45NS02NC4wMTgsODQuNjMyLTgzLjM2MiwwLDAsMTIuMDItMTQuNDcyLDE4LjIyLTguNTIsMi45OTMsMy4wMTYsMy41NzIsOC4xMzMtNi43MTMsMTguOS04LjEsOC4zMy0yOS41NDYsMjkuMjg3LTM3LjMzOSwzNy4xOTRhMzguODkyLDM4Ljg5MiwwLDAsMC05LjY3MywxNS41MjljLTIuMjI1LDcuMTE0LTIuNjU2LDE2LjQxNiw0LjUxNiwyNS4xNjcsMTMuODIyLDEzLjIyMywzMi4xODYsNS43NjQsMzkuNDA2LS4zNTksMTEuNzQ0LTkuOTYxLDM2LjczMS0zNS4zNTgsNTIuNS01MS42MTVaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDAuMDQpIiBmaWxsPSJ1cmwoI2xpbmVhci1ncmFkaWVudCkiLz4KICA8L2c+Cjwvc3ZnPg==');
  background-repeat: no-repeat;
  background-position: bottom 5.8rem right;
  background-size: 240px 126px;
}
@media screen and (min-width: 768px) {
  .footer {
    background-size: 384px 203px;
    background-position: bottom 4rem right;
  }
}
@media screen and (min-width: 1050px) {
  .footer {
    background-size: 480px 253.85px;
    background-position: bottom 3.8rem right;
  }
}
.footer--no-nav {
  text-align: center;
}
@media screen and (min-width: 1050px) {
  .footer--no-nav {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media screen and (min-width: 1050px) {
  .footer__above {
    padding-top: 10rem;
  }
  .footer__above.container {
    max-width: 1350px;
    padding: 10rem;
    padding-top: 10rem;
    padding-bottom: 4rem;
  }
  .footer--brand .footer__above.container {
    padding-bottom: 8rem;
  }
  .footer__above__nav__columns {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    gap: 8rem;
  }
  .footer__above__nav__columns__column {
    gap: 4.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .footer__above.container {
    padding: 5rem;
    padding-top: 10rem;
    padding-bottom: 5rem;
  }
  .footer__above__nav__columns {
    flex-direction: row;
    gap: 0;
  }
  .footer__above__nav__columns__column {
    gap: 2.4rem;
  }
}

/* ロゴ・会社情報・メインナビゲーション */
.footer__above__nav__columns__column:nth-child(1) {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8rem 0;
}
@media screen and (min-width: 768px) {
  .footer__above__nav__columns__column:nth-child(1) {
    flex-direction: row;
    padding: 10rem 0;
  }
}
@media screen and (min-width: 1050px) {
  .footer__above__nav__columns__column:nth-child(1) {
    align-items: flex-start;
    padding: 0;
  }
  .footer--brand .footer__above__nav__columns__column:nth-child(1) {
    flex-direction: row;
  }
  .footer__above__nav__columns__column:nth-child(2) {
    flex: 1;
  }
  .footer--brand .footer__above__nav__columns__column:nth-child(2) {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .footer__above__nav__columns__column:nth-child(1) {
    flex-direction: column;
  }
  .footer--brand .footer__above__nav__columns__column:nth-child(2) {
    padding-left: 5rem;
  }
}
@media screen and (min-width: 768px) {
  .footer__above__nav__info {
    width: 50%;
    margin-top: -10px;
  }
}
@media screen and (min-width: 1050px) {
  .footer__above__nav__info {
    width: 100%;
    margin-top: 0;
  }
  .footer--brand .footer__above__nav__info {
    flex: 1;
  }
}
@media screen and (min-width: 1200px) {
  .footer__above__nav__info {
    margin-top: 5px;
  }
}

/* フッターCTAボタン・コピーライト */
@media screen and (min-width: 768px) {
  .footer__below {
    margin-top: 8.5rem;
  }
}
@media screen and (min-width: 1050px) {
  .footer__below {
    margin-top: 0;
  }
}
.footer__below__columns__column:nth-child(2) {
  border-top: 1px solid #fff;
}

@media screen and (min-width: 1050px) {
  .footer__below__columns {
    display: block;
  }
  .footer__below__columns__column.container {
    max-width: 1350px;
    padding-right: 10rem;
    padding-left: 10rem;
  }
}
@media screen and (min-width: 1200px) {
  .footer__below__columns__column.container {
    padding-right: 5rem;
    padding-left: 5rem;
  }
}
.footer__above__nav__logo {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 160px;
}
@media screen and (min-width: 768px) {
  .footer__above__nav__logo {
    width: 170px;
  }
}
@media screen and (min-width: 1050px) {
  .footer__above__nav__logo {
    width: 190px;
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .footer__above__nav__logo {
    width: 160px;
  }
}
.footer__above__nav__logo a {
  display: block;
}
.footer__above__nav__logo a img {
  display: block;
  width: 100% !important;
}

/* 会社情報 */
.footer__company-info {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .footer__company-info {
    margin-top: 0;
  }
}
@media screen and (min-width: 1050px) {
  .footer__company-info {
    display: flex;
    gap: 4.3rem;
  }
}
@media screen and (min-width: 1200px) {
  .footer__company-info {
    display: block;
  }
}
.footer__company-info address {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__company-info address {
    text-align: left;
  }
}
@media screen and (min-width: 1050px) {
  .footer__company-info address {
    max-width: 215px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__company-info address {
    max-width: 100%;
  }
}
.footer__company-info address span {
  display: block;
  margin-top: .4rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .footer__company-info address span {
    margin-top: .3rem;
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 1050px) {
  .footer__company-info address span {
    margin-top: 1px;
    font-size: 1.6rem;
  }
}
.footer__company-info__tel {
  position: relative;
  display: block;
  width: fit-content;
  margin: 1.8rem auto 0;
  padding-left: 1.8rem;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: .18em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .footer__company-info__tel {
    margin: 2rem 0 0;
  }
}
@media screen and (min-width: 1050px) {
  .footer__company-info__tel {
    margin-top: 0;
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .footer__company-info__tel {
    margin-top: 2.5rem;
  }
}
.footer__company-info__tel::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: inline-block;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTMiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAxMyAyNCI+CiAgPGRlZnM+CiAgICA8Y2xpcFBhdGggaWQ9ImNsaXAtcGF0aCI+CiAgICAgIDxyZWN0IGlkPSLplbfmlrnlvaJfMTI0NDciIGRhdGEtbmFtZT0i6ZW35pa55b2iIDEyNDQ3IiB3aWR0aD0iMTMiIGhlaWdodD0iMjQiIGZpbGw9IiNmZmYiLz4KICAgIDwvY2xpcFBhdGg+CiAgPC9kZWZzPgogIDxnIGlkPSLjgrDjg6vjg7zjg5dfMTMxMTIiIGRhdGEtbmFtZT0i44Kw44Or44O844OXIDEzMTEyIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIC0xKSI+CiAgICA8ZyBpZD0i44Kw44Or44O844OXXzEzMTExIiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyAxMzExMSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAxKSIgY2xpcC1wYXRoPSJ1cmwoI2NsaXAtcGF0aCkiPgogICAgICA8cGF0aCBpZD0i44OR44K5Xzc4MTQiIGRhdGEtbmFtZT0i44OR44K5IDc4MTQiIGQ9Ik0xMS4yMiw3LjgyNGwtLjktMy41ODFBLjk4My45ODMsMCwwLDAsOS4xMzMsMy41M2wtMi43Ny42OWEzLjc2NywzLjc2NywwLDAsMC0yLjc1LDQuNTY3TDcuMywyMy41NDNhMy43NzcsMy43NzcsMCwwLDAsNC41NzgsMi43NDRsMi43Ny0uNjlhLjk4Ljk4LDAsMCwwLC43MTYtMS4xODlsLS44NzktMy41MTNBLjk4My45ODMsMCwwLDAsMTMuMywyMC4xOGwtMS44MTcuNDUyYS45ODMuOTgzLDAsMCwxLTEuMTkxLS43MTRMNy45NzIsMTAuNjU0YS45OC45OCwwLDAsMSwuNzE2LTEuMTg5TDEwLjUsOS4wMTNBLjk4Ljk4LDAsMCwwLDExLjIyLDcuODI0WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIuOTQ4IC0yLjk1KSIgZmlsbD0iI2ZmZiIvPgogICAgPC9nPgogIDwvZz4KPC9zdmc+');
  background-repeat: no-repeat;
  width: 13px;
  height: 24px;
}
@media screen and (min-width: 768px) {
  .footer__company-info__tel::before {
    left: 0;
  }
}
.footer__company-info__opening_hours {
  text-align: center;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .footer__company-info__opening_hours {
    text-align: left;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1050px) {
  .footer__company-info__opening_hours {
    font-size: 1.4rem;
  }
}

/* SNS */
.footer__company-info__share {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 4.2rem;
}
@media screen and (min-width: 768px) {
  .footer__company-info__share {
    justify-content: flex-start;
    margin-top: 3rem;
  }
}
@media screen and (min-width: 1050px) {
  .footer__company-info__share {
    margin-top: 2.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .footer__company-info__share {
    margin-top: 3rem;
  }
}
.footer__company-info__share__item__anchor {
  display: block;
  width: 4rem;
}
.footer__company-info__share__item__anchor__image {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__company-info__share__item__anchor {
    width: 3.8rem;
  }
}
@media screen and (min-width: 1050px) {
  .footer__company-info__share__item__anchor {
    width: 3.5rem;
    transition: filter .3s;
  }
  .footer__company-info__share__item__anchor:hover .footer__company-info__share__item__anchor__image {
    filter: brightness(.8);
  }
}

/* ナビゲーション */
.footer__main__nav__list {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 1050px) {
  .footer__main__nav__list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-left: 0;
    border: none;
  }
}
@media screen and (min-width: 1200px) {
  .footer__main__nav__list {
    padding-left: 10.7rem;
  }
  .footer--brand .footer__main__nav__list {
    justify-content: flex-end;
    padding-left: 0;
  }
}
.footer__main__nav__list__item:not(:first-child) {
  border-top: 1px solid #fff;
}
@media screen and (min-width: 1050px) {
  .footer__main__nav__list__item:not(:first-child) {
    border: none;
  }
}
.footer__main__nav__list__item__anchor {
  position: relative;
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.5;
  padding: 1.5rem 5.0rem 1.5rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .footer__main__nav__list__item__anchor {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1050px) {
  .footer__main__nav__list__item__anchor {
    padding: 0;
  }
}
.footer__main__nav__list__item__anchor__icon--has-menu {
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  height: 19px;
  width: 19px;
  border: 1px solid #ABAEC1;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .footer__main__nav__list__item__anchor__icon--has-menu {
    height: 20px;
    width: 20px;
  }
}
@media screen and (min-width: 1050px) {
  .footer__main__nav__list__item__anchor__icon--has-menu {
    display: none;
  }
}
.footer__main__nav__list__item__anchor__icon--has-menu::before,
.footer__main__nav__list__item__anchor__icon--has-menu::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  background-color: #fff;
  height: 1px;
  width: 8px;
  transition: transform .3s,opacity .3s;
}
.footer__main__nav__list__item__anchor__icon--has-menu::before {
  transform: rotate(90deg) translate(-50%,-.7px);
  transform-origin: 0 0;
}
.footer__main__nav__list__item.is-open .footer__main__nav__list__item__anchor__icon--has-menu::before {
  transform: rotate(0) translate(-50%);
}
.footer__main__nav__list__item__anchor__icon--has-menu::after {
  transform: translate(-50%,-1px);
}
.footer__main__nav__list__item.is-open .footer__main__nav__list__item__anchor__icon--has-menu::after {
  opacity: 0;
}
/* ナビゲーション（2階層・3階層）---------------------------------------------------------------------------------*/
.footer__main__nav__list__subnav__wrapper {
  display: none;
  padding: .3rem 3rem 1.5rem 1.5rem;
}
@media screen and (min-width: 1050px) {
  .footer__main__nav__list__subnav__wrapper {
    display: block;
    padding: 1.4rem 1.4rem 1.5rem 0;
  }
}
.footer__main__nav__list__subnav-lv3__wrapper {
  padding: 1rem 1.5rem 0;
}
@media screen and (min-width: 1050px) {
  .footer__main__nav__list__subnav-lv3__wrapper {
    padding: 1.2rem 1.5rem 0;
  }
}
.footer__main__nav__list__subnav,
.footer__main__nav__list__subnav-lv3 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 1050px) {
  .footer__main__nav__list__subnav,
  .footer__main__nav__list__subnav-lv3 {
    gap: 1.2rem;
  }
}
.footer__main__nav__list__subnav__list__item__anchor[target="_blank"] .footer__main__nav__list__subnav__list__item__anchor__inner,
.footer__main__nav__list__subnav-lv3__list__item__anchor[target="_blank"] .footer__main__nav__list__subnav-lv3__list__item__anchor__inner {
  padding-right: 15px;
}

.footer__main__nav__list__subnav__list__item__anchor__inner,
.footer__main__nav__list__subnav-lv3__list__item__anchor__inner {
  position: relative;
  padding-left: 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 1.5;
  opacity: 1;
  transition: opacity .3s;
}
@media screen and (min-width: 768px) {
  .footer__main__nav__list__subnav__list__item__anchor__inner,
  .footer__main__nav__list__subnav-lv3__list__item__anchor__inner {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1050px) {
  .footer__main__nav__list__item__anchor__inner {
    opacity: 1;
    transition: opacity .3s;
  }
  .footer__main__nav__list__item__anchor:hover .footer__main__nav__list__item__anchor__inner,
  .footer__main__nav__list__subnav__list__item__anchor:hover .footer__main__nav__list__subnav__list__item__anchor__inner,
  .footer__main__nav__list__subnav-lv3__list__item__anchor:hover .footer__main__nav__list__subnav-lv3__list__item__anchor__inner {
    opacity: .65;
  }
}
.footer__main__nav__list__subnav__list__item__anchor__inner::before,
.footer__main__nav__list__subnav-lv3__list__item__anchor__inner::before {
  content: "";
  position: absolute;
  top: .8em;
  transform: translateY(-50%);
  left: 0;
  display: block;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjEiIHZpZXdCb3g9IjAgMCA0IDEiPgogIDxwYXRoIGlkPSLjg5HjgrlfNzc5NSIgZGF0YS1uYW1lPSLjg5HjgrkgNzc5NSIgZD0iTS03NzY4LDgyNDEuOTY3aDQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDc3NjcuOTk5IC04MjQxLjQ2NykiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIxIi8+Cjwvc3ZnPg==');
  width: 4px;
  height: 1px;
}
.footer__main__nav__list__subnav__list__item__anchor[target="_blank"] .footer__main__nav__list__subnav__list__item__anchor__inner::after,
.footer__main__nav__list__subnav-lv3__list__item__anchor[target="_blank"] .footer__main__nav__list__subnav-lv3__list__item__anchor__inner::after {
  content: "";
  position: absolute;
  top: .8em;
  transform: translateY(-50%);
  right: 0;
  display: block;
  background-image:url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMi4yMDUiIGhlaWdodD0iMTIuMjA3IiB2aWV3Qm94PSIwIDAgMTIuMjA1IDEyLjIwNyI+CiAgPGcgaWQ9IuODrOOCpOODpOODvF81IiBkYXRhLW5hbWU9IuODrOOCpOODpOODvCA1IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDAuMjA3KSI+CiAgICA8cGF0aCBpZD0i44OR44K5Xzc3ODUiIGRhdGEtbmFtZT0i44OR44K5IDc3ODUiIGQ9Ik0xMS4wMjUsOC45NzN2NC4wMDZILjVWMi40NEg0LjYyOCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAtMS40NzkpIiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIxIi8+CiAgICA8bGluZSBpZD0i57eaXzE1NiIgZGF0YS1uYW1lPSLnt5ogMTU2IiB4MT0iNi42MjUiIHkyPSI2LjYxMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNC44NzMgMC41KSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMSIvPgogICAgPHBhdGggaWQ9IuODkeOCuV83Nzg2IiBkYXRhLW5hbWU9IuODkeOCuSA3Nzg2IiBkPSJNMzguODEuNWgzLjY3NlYzLjk0NSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTMwLjk4NikiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2Utd2lkdGg9IjEiLz4KICA8L2c+Cjwvc3ZnPg==');
  background-repeat: no-repeat;
  background-size: contain;
  width: 11px;
  height: 11px;
}
.footer__cta__conversion {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 6rem 2rem 8rem;
}
@media screen and (min-width: 768px) {
  .footer__cta__conversion {
    grid-template-columns: repeat(3, auto);
    margin: 6rem 0 9rem;
  }
}
@media screen and (min-width: 1050px) {
  .footer__cta__conversion {
    grid-template-columns: repeat(3, auto);
    justify-content: end;
    margin: 0 0 7rem;
  }
  .footer--brand .footer__cta__conversion {
    display: flex;
    flex-wrap: wrap;
    margin: 5rem 0 0;
  }
}
.footer__cta__conversion__item__button {
  display: block;
  width: 100%;
  padding: .5rem 0 .6rem;
  border: 1px solid #fff;
  border-radius: 2rem;
  text-align: center;
  background-color: transparent;
  transition: background-color .3s, border .3s;
}
@media screen and (min-width: 1050px) {
  .footer__cta__conversion__item__button {
    width: auto;
  }
  .footer__cta__conversion__item__button:hover {
    border: 1px solid transparent;
    background-color: #fff;
    color: #3B4046;
  }
}
.footer__cta__conversion__item__button span {
  display: block;
  padding: 0 1rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.6;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer__cta__conversion__item__button span {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1050px) {
  .footer__cta__conversion__item__button span {
    padding: 0 3.2rem;
    transition: color .3s;
  }
  .footer__cta__conversion__item__button:hover span {
    color: #3B4046;
  }
}

/* ページTOP */
.page-top {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 55px;
  height: 55px;
  background: linear-gradient(326deg, #172A88 0%, #2B69A7 100%);
  border-radius: 50%;
  z-index: 9998;
}
@media screen and (min-width: 768px) {
  .page-top {
    width: 60px;
    height: 60px;
  }
}
.page-top__anchor {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  padding-top: 18px;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .page-top__anchor {
    padding-top: 20px;
  }
}
.page-top__anchor::before {
  content: "";
  display: block;
  position: absolute;
  top: 7.5px;
  left: 50%;
  transform: translateX(-50%);
  background-image:url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5LjEzOSIgaGVpZ2h0PSI2LjUiIHZpZXdCb3g9IjAgMCA5LjEzOSA2LjUiPgogIDxnIGlkPSLjgrDjg6vjg7zjg5dfMTI4NDAiIGRhdGEtbmFtZT0i44Kw44Or44O844OXIDEyODQwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDYuNSkgcm90YXRlKC05MCkiPgogICAgPHBhdGggaWQ9IuODkeOCuV83NzE5IiBkYXRhLW5hbWU9IuODkeOCuSA3NzE5IiBkPSJNMS4wMTksOS4xMzksMCw3LjkyNWw0LjAyNS0zLjM4TDAsMS4yMiwxLjAxNCwwLDYuNSw0LjUzNloiIGZpbGw9IiNmZmYiLz4KICA8L2c+Cjwvc3ZnPg==');
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  transition: top .3s;
  z-index: 1;
}
@media screen and (min-width: 1050px) {
  .page-top__anchor::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(326deg, #2F4294, #3D69A7);
    opacity: 0;
    border-radius: 50%;
    transition: opacity .3s;
  }
  .page-top__anchor:hover::before {
    top: 6.5px;
  }
  .page-top__anchor:hover::after {
    opacity: 1;
  }
}
.page-top__anchor__inner {
  position: relative;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: .15em;
  line-height: 1.166;
  color: #ffffff;
  z-index: 1;
}

/* コピーライト */
.footer__below__copyright {
  max-width: 232px;
  margin: 0 auto;
  padding: 1rem 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__below__copyright {
    max-width: 100%;
  }
}
.footer__below__copyright__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 1.6;
}
@charset "UTF-8";

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  z-index: 9999;
}
.header.header--shadow {
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, .05);
}
.header__container.container {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  background-color: #fff;
  transition: background-color .2s;
}
.header__container.unvisible-background {
  background-color: transparent;
}

.header__columns {
  border-bottom: none;
  transition: border-bottom .3s;
}
.header__columns:has(.header__main__content__navigation__nav__list__item.is-hover) {
  border-bottom: .1rem solid #ABAEC1;
}
.unvisible-background .header__columns {
  border-bottom: none;
}
@media screen and (min-width: 1050px) {
  .header__columns {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: 5rem;
    max-height: 9rem;
  }
}
@media screen and (min-width: 1050px) {
  .header__columns__column:nth-child(1) {
    width: auto;
    margin-right: auto;
  }
}

/* ロゴ（PC） */
.header__logo {
  width: 5.6rem;
  padding: .8rem 0 .7rem 2rem;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 9rem;
    padding: 1.1rem 0 .7rem 2.9rem;
  }
}
@media screen and (min-width: 1050px) {
  .header__logo {
    width: 10rem;
    padding: 1.3rem 0 .7rem 4rem;
  }
  .header--no-nav .header__logo {
    padding-bottom: 1.2rem;
  }
}
.header__logo a {
  display: block;
}
.header__logo__image img {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.header__logo__image {
  display: block;
}
.header__logo__image--reverse {
  display: none;
}
.unvisible-background .header__logo__image {
  display: none;
}
.unvisible-background .header__logo__image--reverse {
  display: block;
}

/* ロゴ（SP・TB） */
.header__main__logo {
  width: 5.6rem;
  padding: .8rem 0 .7rem 2rem;
}
@media screen and (min-width: 768px) {
  .header__main__logo {
    width: 9rem;
    padding: 1.1rem 0 .8rem 2.7rem;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__logo {
    display: none;
  }
}
.header__main__logo a {
  display: block;
}
.header__main__logo img {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* ナビゲーション ---------------------------------------------*/
.header__main {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  pointer-events: auto;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity .2s;
}
.header__main.is-display {
  display: block;
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: auto;
  z-index: 100;
}
@media screen and (min-width: 1050px) {
  .header__main {
    display: block;
    position: static;
    background-color: transparent;
    pointer-events: auto;
    opacity: 1;
  }
}

.header__main__content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
}
.is-display .header__main__content {
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100vh;
  padding: 3rem 2rem;
  border-top: 1px solid #ABAEC1;
}
@media screen and (min-width: 768px) {
  .is-display .header__main__content {
    padding: 5rem;
    overflow: auto;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content {
    justify-content: flex-end;
    padding-top: 1.6rem;
  }
}

.header__main__content__navigation {
  width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 1050px) {
  .header__main__content__navigation {
    padding: 0 1.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .header__main__content__navigation {
    padding: 0 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .header__main__content__navigation__nav {
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content__navigation__nav {
    margin-right: auto;
    margin-left: auto;
  }
}

.header__main__content__navigation__nav__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media screen and (min-width: 1050px) {
  .header__main__content__navigation__nav__list {
    flex-direction: row;
    gap: 1.3rem;
  }
}

@media screen and (min-width: 1200px) {
  .header__main__content__navigation__nav__list {
    gap: 2.2rem;
  }
}
.header__main__content__navigation__nav__list__item {
  border-bottom: .1rem dotted #ABAEC1;
}
@media screen and (min-width: 1050px) {
  .header__main__content__navigation__nav__list__item {
    border-bottom: none;
  }
}
.header__main__content__navigation__nav__list__item:first-child {
  border-top: .1rem solid #fff;
}
@media screen and (min-width: 1050px) {
  .header__main__content__navigation__nav__list__item:first-child {
    border-top: none;
  }
}
.header__main__content__navigation__nav__list__item__anchor {
    display: block;
    position: relative;
    padding: 1.5rem 5rem 1.5rem 2rem;
    height: fit-content;
    color: #1E242F;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: .08em;
    line-height: 1.5;
    transition: color .3s;
    box-sizing: border-box;
}
@media screen and (min-width: 1050px) {
  .header__main__content__navigation__nav__list__item__anchor {
    height: 100%;
    padding: 1.5rem 0 1.1rem 0;
  }
  .header__main__content__navigation__nav__list__item__anchor:has(.header__main__content__navigation__nav__list__item__anchor__icon--has-menu) {
    padding-right: 1.1rem;
  }
}
@media screen and (min-width: 1200px) {
  .header__main__content__navigation__nav__list__item__anchor {
    padding-bottom: .9rem;
  }
  .header__main__content__navigation__nav__list__item__anchor:has(.header__main__content__navigation__nav__list__item__anchor__icon--has-menu) {
    padding-right: 1.6rem;
  }
}
.header__main__content__navigation__nav__list__item.is-open .header__main__content__navigation__nav__list__item__anchor {
  color: #172A88;
}
@media screen and (min-width: 768px) {
  .header__main__content__navigation__nav__list__item__anchor {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content__navigation__nav__list__item__anchor {
    font-size: 1.3rem;
    color: #3B4046;
  }
  .unvisible-background .header__main__content__navigation__nav__list__item__anchor {
    color: #fff;
  }
  .header__main__content__navigation__nav__list__item__anchor::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    height: .1rem;
    z-index: 1;
  }
  /* 2階層あり、または背景色あり */
  .header__main__content__navigation__nav__list__item:hover .header__main__content__navigation__nav__list__item__anchor,
  .header__main__content__navigation__nav__list__item.is-hover .header__main__content__navigation__nav__list__item__anchor {
    color: #172A88;
  }
  .header__main__content__navigation__nav__list__item:hover .header__main__content__navigation__nav__list__item__anchor::before,
  .header__main__content__navigation__nav__list__item.is-hover .header__main__content__navigation__nav__list__item__anchor::before {
    background-color: #172A88;
    animation: link-underline .3s forwards;
  }
  /* 2階層なし、かつ背景色なし */
  .unvisible-background .header__main__content__navigation__nav__list__item:hover .header__main__content__navigation__nav__list__item__anchor::before {
    background-color: #fff;
    animation: link-underline .3s forwards;
  }
  .unvisible-background .header__main__content__navigation__nav__list__item:hover .header__main__content__navigation__nav__list__item__anchor {
    color: #fff;
  }
}
@media screen and (min-width: 1200px) {
  .header__main__content__navigation__nav__list__item__anchor {
    font-size: 1.4rem;
  }
}
/* ナビゲーション（2階層）---------------------------------------------------------------------------------*/
.header__main__content__navigation__subnav__wrapper {
  display: none;
  padding: 0 1.5rem 3.0rem;
}
@media screen and (min-width: 768px) {
  .header__main__content__navigation__subnav__wrapper {
    padding: 1rem 4.0rem 3.4rem 2rem;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content__navigation__subnav__wrapper {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 4.5rem 0;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, visibility .2s;
  }
  .header__main__content__navigation__nav__list__item.is-hover > .header__main__content__navigation__subnav__wrapper {
    opacity: 1;
    visibility: visible;
  }
  .header__main__content__navigation__subnav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 6.3rem;
    row-gap: 2.2rem;
    max-width: 100rem;
    margin: 0 auto;
  }
}

/* ナビゲーション（2階層）：リンク */
.header__main__content__navigation__subnav__list__item:not(:first-child) {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .header__main__content__navigation__subnav__list__item:not(:first-child) {
    margin-top: .8rem;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content__navigation__subnav__list__item:not(:first-child) {
    margin-top: 0;
  }
}
.header__main__content__navigation__subnav__list__item__anchor {
  position: relative;
  display: block;
  cursor: pointer;
}
.header__main__content__navigation__subnav__list__item__anchor::before {
  content: "";
  position: absolute;
  top: 1.4rem;
  display: block;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjEiIHZpZXdCb3g9IjAgMCA1IDEiPgogIDxwYXRoIGlkPSLjg5HjgrlfNzc5NSIgZGF0YS1uYW1lPSLjg5HjgrkgNzc5NSIgZD0iTS03NzY4LDgyNDEuOTY3aDUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDc3NjcuOTk5IC04MjQxLjQ2NykiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2FiYWVjMSIgc3Ryb2tlLXdpZHRoPSIxIi8+Cjwvc3ZnPg==');
  width: .5rem;
  height: .1rem;
}

.header__main__content__navigation__subnav__list__item__anchor__inner {
  display: block;
  margin-left: 1.8rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 2;
  color: #1E242F;
}
@media screen and (min-width: 768px) {
  .header__main__content__navigation__subnav__list__item__anchor__inner {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content__navigation__subnav__list__item__anchor__inner {
    position: relative;
    width: fit-content;
    color: #3B4046;
  }
  .header__main__content__navigation__subnav__list__item__anchor:hover .header__main__content__navigation__subnav__list__item__anchor__inner {
    color: #172A88;
  }

  .header__main__content__navigation__subnav__list__item__anchor__inner::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1.7rem;
    transform: translateY(-50%);
    display: block;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3LjEwMyIgaGVpZ2h0PSIxMC43NjgiIHZpZXdCb3g9IjAgMCA3LjEwMyAxMC43NjgiPgogIDxnIGlkPSLjgrDjg6vjg7zjg5dfMTMwMDAiIGRhdGEtbmFtZT0i44Kw44Or44O844OXIDEzMDAwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTA5Ljc2MyAtMzQ1Ny45NzIpIj4KICAgIDxwYXRoIGlkPSLjg5HjgrlfNzcxOSIgZGF0YS1uYW1lPSLjg5HjgrkgNzcxOSIgZD0iTTUwOC40NDUsMzQ0NS41NjZsNiw0Ljk2Mi02LDUuMDM4IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxLjYzOSAxMi43OTEpIiBmaWxsPSJub25lIiBzdHJva2U9IiMzYjQwNDYiIHN0cm9rZS13aWR0aD0iMSIvPgogIDwvZz4KPC9zdmc+');    width: .6rem;
    height: 1rem;
    width: .7rem;
  }
  .header__main__content__navigation__subnav__list__item__anchor:hover .header__main__content__navigation__subnav__list__item__anchor__inner::after {
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3LjEwMiIgaGVpZ2h0PSIxMC43NjgiIHZpZXdCb3g9IjAgMCA3LjEwMiAxMC43NjgiPgogIDxnIGlkPSLjgrDjg6vjg7zjg5dfMTMwMDQiIGRhdGEtbmFtZT0i44Kw44Or44O844OXIDEzMDA0IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTA5Ljc2MyAtMzQ1Ny45NzIpIj4KICAgIDxwYXRoIGlkPSLjg5HjgrlfNzcxOSIgZGF0YS1uYW1lPSLjg5HjgrkgNzcxOSIgZD0iTTUwOC40NDUsMzQ0NS41NjZsNiw0Ljk2Mi02LDUuMDM4IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxLjYzOSAxMi43OTEpIiBmaWxsPSJub25lIiBzdHJva2U9IiMxNzJhODgiIHN0cm9rZS13aWR0aD0iMSIvPgogIDwvZz4KPC9zdmc+');
  }
}

/* ナビゲーション（2階層）：アイコン */
.header__main__content__navigation__nav__list__item__anchor__icon--has-menu {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  height: 2.1rem;
  width: 2.1rem;
  border: .1rem solid #ABAEC1;
  cursor: pointer;
}
.header__main__content__navigation__nav__list__item__anchor__icon--has-menu svg {
  display: none;
}

.header__main__content__navigation__nav__list__item__anchor__icon--has-menu::before,
.header__main__content__navigation__nav__list__item__anchor__icon--has-menu::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  background-color: #172A88;
  height: .1rem;
  width: .8rem;
  transition: transform .3s,opacity .3s;
}
@media screen and (min-width: 768px) {
  .header__main__content__navigation__nav__list__item__anchor__icon--has-menu::before,
  .header__main__content__navigation__nav__list__item__anchor__icon--has-menu::after {
    width: .9rem;
  }
}
.header__main__content__navigation__nav__list__item__anchor__icon--has-menu::before {
  transform: rotate(90deg) translate(-50%,-.7px);
  transform-origin: 0 0;
}
.header__main__content__navigation__nav__list__item.is-open .header__main__content__navigation__nav__list__item__anchor__icon--has-menu::before {
  transform: rotate(0) translate(-50%);
}
.header__main__content__navigation__nav__list__item__anchor__icon--has-menu::after {
  transform: translate(-50%,-1px);
}
.header__main__content__navigation__nav__list__item.is-open .header__main__content__navigation__nav__list__item__anchor__icon--has-menu::after {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .header__main__content__navigation__nav__list__item__anchor__icon--has-menu {
    height: 2.3rem;
    width: 2.3rem;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content__navigation__nav__list__item__anchor__icon--has-menu {
    top: 2.3rem;
    right: 0;
    border: none;
    padding: 0;
    width: .9rem;
    height: .45rem;
    transform: none;
  }
  .header__main__content__navigation__nav__list__item__anchor__icon--has-menu::before,
  .header__main__content__navigation__nav__list__item__anchor__icon--has-menu::after {
    content: none;
  }
  .header__main__content__navigation__nav__list__item__anchor__icon--has-menu svg {
    display: block;
    width: 1rem;
    height: .6rem;
    transform: scaleY(1);
  }
  .header__main__content__navigation__nav__list__item.is-hover .header__main__content__navigation__nav__list__item__anchor__icon--has-menu svg {
    transition: transform 0.3s;
    transform: scaleY(-1);
  }
  .header__main__content__navigation__nav__list__item__anchor__icon--has-menu__svg-property {
    fill: #3B4046;
    stroke: #3B4046;
  }
  .unvisible-background .header__main__content__navigation__nav__list__item__anchor__icon--has-menu__svg-property {
    fill: #fff;
    stroke: #fff;
  }
}

/* ハンバーガーナビ */
.header__hamburger {
  position: absolute;
  top: 0;
  right: 0;
  width: 5rem;
  height: 5rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: linear-gradient(315deg, #172A88 0%,#2B69A7 100%);
  appearance: none;
  cursor: pointer;
  z-index: 101;
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    width: 7.5rem;
    height: 7.5rem;
  }
}
@media screen and (min-width: 1050px) {
  .header__hamburger {
    display: none;
  }
}

.header__hamburger__inner {
  display: block;
  position: absolute;
  top: calc(50% - .5rem);
  left: calc(50% - .7rem);
}
@media screen and (min-width: 768px) {
  .header__hamburger__inner {
    top: calc(50% - .9rem);
    left: calc(50% - 1.2rem);
  }
}
.header__hamburger__inner__line {
  display: block;
  position: absolute;
  left: 0;
  height: .1rem;
  width: 1.4rem;
  background-color: #fff;
  transition: all .3s;
}
@media screen and (min-width: 768px) {
  .header__hamburger__inner__line {
    width: 2.4rem;
  }
}
.header__hamburger__inner__line:nth-child(1) {
  top: 0;
}
.header__hamburger.is-open .header__hamburger__inner__line:nth-child(1) {
  top: .5rem;
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .header__hamburger.is-open .header__hamburger__inner__line:nth-child(1) {
    top: .9rem;
  }
}

.header__hamburger__inner__line:nth-child(2) {
  top: .5rem;
}
@media screen and (min-width: 768px) {
  .header__hamburger__inner__line:nth-child(2) {
    top: .8rem;
  }
}
.header__hamburger.is-open .header__hamburger__inner__line:nth-child(2) {
  opacity: 0;
  transform: translateX(1rem);
}

.header__hamburger__inner__line:nth-child(3) {
  top: 1rem;
}
@media screen and (min-width: 768px) {
  .header__hamburger__inner__line:nth-child(3) {
    top: 1.6rem;
  }
}
.header__hamburger.is-open .header__hamburger__inner__line:nth-child(3) {
  top: .5rem;
  transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .header__hamburger.is-open .header__hamburger__inner__line:nth-child(3) {
    top: .9rem;
  }
}

/* CTAボタン */
.header__cta {
  display: none;
}
@media screen and (min-width: 1050px) {
  /* PC ヘッダーナビゲーションのCTAボタンを表示 */
  .header__cta {
    display: block;
  }
}
.header__main__content__cta {
  padding: 3.5rem 0 10rem;
}
@media screen and (min-width: 768px) {
  .header__main__content__cta {
    padding: 4rem 0 10rem;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content__cta {
    display: none;
  }
}

.header__main__content__cta__conversion--download {
  margin-bottom: 3rem;
}
.header__main__content__cta__conversion--contact {
  margin-top: 3rem;
}
.header__cta__conversion__download {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .header__cta__conversion__download {
    flex-direction: row;
    gap: 1.8rem;
  }
}
@media screen and (min-width: 1050px) {
  .header__cta__conversion__download {
    justify-content: flex-end;
  }
}
.header__cta__conversion__contact {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 1050px) {
  .header__cta__conversion__contact {
    flex-direction: row;
    gap: 0;
  }
}

@media screen and (min-width: 768px) {
  .header__cta__conversion__download__item {
    width: 50%;
  }
}
@media screen and (min-width: 1050px) {
  .header__cta__conversion__download__item {
    width: fit-content;
  }
}

/* CTAボタンのスタイル */
.header__cta__conversion__download__item__button {
  display: block;
  width: 100%;
  padding: 0.7rem 0 .8rem;
  text-align: center;
  border: 1px solid #6D758A;
  border-radius: 2rem;
}
@media screen and (min-width: 1050px) {
  .header__cta__conversion__download__item__button {
    padding: .4rem 0 .2rem;
    border-color: #6D758A;
    background-color: transparent;
    transition: background-color .3s;
  }
  .header__cta__conversion__download__item__button:hover {
    background-color: #6D758A;
  }
  .unvisible-background .header__cta__conversion__download__item__button {
    border-color: #fff;
  }
  .unvisible-background .header__cta__conversion__download__item__button:hover {
    background-color: #fff;
    border-color: #fff;
  }
}
.header__cta__conversion__download__item__button span {
  display: block;
  padding: 0 1rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.6;
  color: #6D758A;
}
@media screen and (min-width: 768px) {
  .header__cta__conversion__download__item__button span {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 1050px) {
  .header__cta__conversion__download__item__button span {
    padding: 0 2.3rem;
    font-size: 1.3rem;
    color: #6D758A;
  }
  .unvisible-background .header__cta__conversion__download__item__button span {
    color: #fff;
  }
  .header__cta__conversion__download__item__button:hover span {
    color: #fff;
  }
  .unvisible-background .header__cta__conversion__download__item__button:hover span {
    color: #3B4046;
  }
}
.header__cta__conversion__download__item__button span img {
  vertical-align: middle;
  padding-left: .5rem;
}
@media screen and (min-width: 1050px) {
  .header__cta__conversion__download__item__button span img {
    filter: none;
  }
  .header__cta__conversion__download__item__button:hover span img {
    filter: brightness(0) invert(1);
  }
  .unvisible-background .header__cta__conversion__download__item__button span img {
    filter: brightness(0) invert(1);
  }
  .unvisible-background .header__cta__conversion__download__item__button:hover span img {
    filter: brightness(0);
  }
}
.header__cta__conversion__contact__item__button {
  display: block;
  width: 100%;
  padding: 1.4rem 0;
  text-align: center;
}
@media screen and (min-width: 1050px) {
  .header__cta__conversion__contact__item__button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 9.5rem;
    height: calc(9rem - 2.8rem);
  }
}
@media screen and (min-width: 1200px) {
  .header__cta__conversion__contact__item__button {
    width: 10rem;
  }
}
.header__cta__conversion__contact__item__button--type-a {
  position: relative;
  background: linear-gradient(302deg, #172A88 0%,#2B69A7 100%);
}
.header__cta__conversion__contact__item__button--type-b {
  position: relative;
  background: linear-gradient(310deg, #7B5311 0%, #6C470A 1%, #9D701E 100%);
}
.header__cta__conversion__contact__item__button span {
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 1.6;
  color: #fff;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .header__cta__conversion__contact__item__button span {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 1050px) {
  .header__cta__conversion__contact__item__button--type-a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(312deg, #43529C 0%,#4967A6 100%);
    opacity: 0;
    transition: opacity .3s;
  }
  .header__cta__conversion__contact__item__button--type-a:hover::after {
    opacity: 1;
  }
  .header__cta__conversion__contact__item__button--type-b::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(133deg, #7B5311 0%, #A68442 0%, #846532 100%);
    opacity: 0;
    transition: opacity .3s;
  }
  .header__cta__conversion__contact__item__button--type-b:hover::after {
    opacity: 1;
  }
  .header__cta__conversion__contact__item__button span {
    display: block;
    font-size: 1.4rem;
  }
  .header__cta__conversion__contact__item__button span.subtitle {
    font-size: 1.2rem;
  }
}
@charset "UTF-8";

/* フッターCTA */
.footer-cta {
  background-color: #0C1931;
}
@media screen and (min-width: 1050px) {
  .footer-cta .container {
    padding: 10.2rem 5rem 0;
    max-width: 1350px;
  }
}
.footer-cta__list {
  display: flex;
  flex-direction: column;
  padding-top: 8rem;
  gap: .7rem;
}
@media screen and (min-width: 768px) {
  .footer-cta__list {
    flex-direction: row;
    padding-top: 10rem;
  }
}
@media screen and (min-width: 768px) {
  .footer-cta__list {
    gap: .9rem;
  }
}
.footer-cta__list__item {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: .5rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .footer-cta__list__item {
    width: 50%;
  }
}
.footer-cta__list__item::before,
.footer-cta__list__item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.footer-cta__list__item::before {
  background-color: #0C1931;
  opacity: 60%;
  transition: opacity .3s;
}
.footer-cta__list__item::after {
  top: 0;
  background: linear-gradient(116deg, #172A88 0%, #457BBA80 100%);
  opacity: 0;
  transition: opacity .3s;
}
@media screen and (min-width: 1050px) {
  .footer-cta__list__item::after {
    transition: top .5s;
  }
  .footer-cta__list__item:hover::before {
    opacity: 0;
  }
  .footer-cta__list__item:hover::after {
    opacity: 1;
  }
}

.footer-cta__list__item .cta_button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16.3rem;
}
@media screen and (min-width: 768px) {
  .footer-cta__list__item .cta_button {
    height: 16.1rem;
  }
}
@media screen and (min-width: 1050px) {
  .footer-cta__list__item .cta_button {
    height: 30rem;
  }
}

.footer-cta__list__item__inner {
  display: block;
  width: 100%;
  height: 100%;
  padding: 5.8rem 4.3rem!important;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .footer-cta__list__item__inner {
    padding: 5.7rem 4rem!important;
  }
}
@media screen and (min-width: 1050px) {
  .footer-cta__list__item__inner {
    padding: 11.6rem 7.5rem!important;
  }
}

.footer-cta__list__item__inner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.footer-cta__list__item .cta_button__inner__en {
  position: relative;
  display: block;
  margin-bottom: .5rem;
  text-align: left;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: .18em;
  line-height: 1.2;
  color: #fff;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .footer-cta__list__item .cta_button__inner__en {
    margin-bottom: 1rem;
    text-align: left;
  }
}
@media screen and (min-width: 1050px) {
  .footer-cta__list__item .cta_button__inner__en {
    font-size: 1.5rem;
  }
}

.footer-cta__list__item .cta_button__inner__jp {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: .5rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.5;
  color: #fff;
  text-align: left;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .footer-cta__list__item .cta_button__inner__jp {
    flex-direction: row;
    align-items: flex-start;
    margin-top: .5rem;
  }
}
@media screen and (min-width: 1050px) {
  .footer-cta__list__item .cta_button__inner__jp {
    font-size: 2.6rem;
  }
}

.footer-cta__list__item .cta_button__inner__jp::after {
  content: "";
  display: block;
  background-image:url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5LjM1NyIgaGVpZ2h0PSIxNi4xMzkiIHZpZXdCb3g9IjAgMCA5LjM1NyAxNi4xMzkiPgogIDxnIGlkPSLjgrDjg6vjg7zjg5dfMTI2OTUiIGRhdGEtbmFtZT0i44Kw44Or44O844OXIDEyNjk1IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtOC44MjIgMi4yMzQpIj4KICAgIDxwYXRoIGlkPSLjg5HjgrlfNzY3OSIgZGF0YS1uYW1lPSLjg5HjgrkgNzY3OSIgZD0iTTUwOC40NDUsMzQ0NS41NjVsOCw3LjI3Ny04LDcuMzg4IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDk4Ljk0NSAtMzQ0Ny4wNTkpIiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lam9pbj0iYmV2ZWwiIHN0cm9rZS13aWR0aD0iMiIvPgogIDwvZz4KPC9zdmc+');
  background-repeat: no-repeat;
  background-size: 4px 7px;
  background-position: center;
  width: 20px;
  height: 20px;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: background-position .3s;
}
@media screen and (min-width: 1050px) {
  .footer-cta__list__item .cta_button__inner__jp::after {
    background-size: 8px 14.67px;
    width: 40px;
    height: 40px;
  }
  .footer-cta__list__item:hover .cta_button__inner__jp::after {
    background-position: calc(50% + 5px) 50%;
  }
  .footer-cta__list__item--consultation:hover .footer-cta__list__item__inner__bg {
    transform: scale(1.05);
  }
  .footer-cta__list__item--contact:hover .footer-cta__list__item__inner__bg {
    transform: scale(1.05);
  }
}

/* vendors */
/* Slider */
.slick-slider {
  outline: none;
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-slide div {
  vertical-align: bottom;
}

.slick-slider:focus {
  outline: none;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* テンプレート独自のスタイル */
@charset "UTF-8";

/* blog */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


/* container */
.container.blog-container {
  max-width: calc(1130px + 20px * 2);
}
@media screen and (min-width: 768px) {
  .container.blog-container {
    max-width: calc(1130px + 30px * 2);
  }
}
@media screen and (min-width: 1050px) {
  .container.blog-container {
    max-width: calc(1130px + 100px * 2);
  }
}

/* blog contents area */
@media screen and (min-width: 1050px) {
  .blog-content {
    display: flex;
    margin-left: -35px;
    margin-right: -35px;
  }
}

.blog-content__main {
  width: 100%;
}
@media screen and (min-width: 1050px) {
  .blog-content__main {
    box-sizing: border-box;
    max-width: 820px;
    padding-left: 35px;
    padding-right: 35px;
  }
}


/* === article / 記事詳細 */

.content--blog-post {
  padding-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .section.section--blog-post {
    margin-bottom: 113px;
  }
}

.blog-article {
  position: relative;
  border-top: 1px solid #ABAEC1;
}

.blog-article::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100px;
  height: 1px;
  background-color: #172A88;
}
@media screen and (min-width: 768px) {
  .blog-article::before {
    width: 120px;
  }
}

.blog-article__head {
  padding-top: 16px;
}
@media screen and (min-width: 768px) {
  .blog-article__head {
    padding-top: 21px;
  }
}
.blog-article__head__date {
  display: block;
  color: #172A88;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .15em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .blog-article__head__date {
    font-size: 1.6rem;
  }
}

.blog-article__head__heading {
  margin-top: 10px;
  color: #1E242F;
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.5em;
}
@media screen and (min-width: 768px) {
  .blog-article__head__heading {
    font-size: 2.8rem;
  }
}

.blog-article__head__category-list {
  margin-top: 15px;
  margin-right: -5px;
  margin-left: -5px;
  margin-bottom: -5px;
}
@media screen and (min-width: 768px) {
  .blog-article__head__category-list {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1050px) {
  .blog-article__head__category-list {
    margin-top: 25px;
  }
}
.blog-article__head__category-list__item {
  display: inline-block;
  min-width: 100px;
  margin: 5px;
}

.blog-article__head__category-list__item__anchor {
  display: block;
  background-color: #F7F9FC;
  color: #3B4046;
  font-size: 1.2rem;
  letter-spacing: .05em;
  text-align: center;
  padding: 6px 15px 5px;
  border-radius: 3px;
  -webkit-transition: background-color .3s;
  transition: all .3s;
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  .blog-article__head__category-list__item__anchor {
    padding: 7px 15px 6px;
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1050px) {
  .blog-article__head__category-list__item__anchor:hover {
    color: #fff;
    background: linear-gradient(104deg, #172A88 0%, #2B69A7 100%);
  }
}

.blog-article__head__thumbnail {
  margin-top: 25px;
  margin-right: -20px;
  margin-bottom: 45px;
  margin-left: -20px;
}
@media screen and (min-width: 768px) {
  .blog-article__head__thumbnail {
    margin-top: 30px;
    margin-right: -50px;
    margin-bottom: 50px;
    margin-left: -50px;
  }
}
@media screen and (min-width: 1050px) {
  .blog-article__head__thumbnail {
    margin-right: 0;
    margin-left: 0;
  }
}

.blog-article__head__thumbnail img {
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
}

/* blog-article__body__content */
.blog-article__body__content.natural {
  padding-bottom: 0.6em; /* 最後のコンテンツが微妙に切れてしまうため対策 */
}

.blog-article__body__content h2,
.blog-article__body__summary__body h2 {
  margin-top: calc( 45px - (((1em * 2) - 1em) / 2) );
  margin-bottom: calc( 25px - (((1em * 2) - 1em) / 2) );
  padding: 13px 15px;
  border-left: 4px solid #172A88;
  background-color: #F7F9FC;
  color: #3B4046;
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .blog-article__body__content h2,
  .blog-article__body__summary__body h2 {
    margin-top: calc( 60px - (((1em * 2) - 1em) / 2) );
    margin-bottom: calc( 30px - (((1em * 2) - 1em) / 2) );
    padding: 9px 20px;
    border-left: 5px solid #172A88;
    font-size: 2.5rem;
  }
}
.blog-article__body__content h2:first-child,
.blog-article__body__summary__body h2:first-child {
  margin-top: 0;
}
.blog-article__body__content h2:last-child,
.blog-article__body__summary__body h2:last-child {
  margin-bottom: 0;
}

.blog-article__body__content h3,
.blog-article__body__summary__body h3 {
  position: relative;
  margin-top: calc( 35px - (((1em * 2) - 1em) / 2) );
  margin-bottom: calc( 25px - (((1em * 2) - 1em) / 2) );
  padding-bottom: 8px;
  color: #3B4046;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .blog-article__body__content h3,
  .blog-article__body__summary__body h3 {
    margin-top: calc( 45px - (((1em * 2) - 1em) / 2) );
    margin-bottom: calc( 30px - (((1em * 2) - 1em) / 2) );
    font-size: 2.2rem;
  }
}
.blog-article__body__content h3:first-child,
.blog-article__body__summary__body h3:first-child {
  margin-top: 0;
}
.blog-article__body__content h3:last-child,
.blog-article__body__summary__body h3:last-child {
  margin-bottom: 0;
}

.blog-article__body__content h3::before,
.blog-article__body__summary__body h3::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * .5em);;
}
.blog-article__body__content h3::after,
.blog-article__body__summary__body h3::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-top: 1px solid #172A88;
  border-bottom: 1px solid #172A88;
}

.blog-article__body__content h4,
.blog-article__body__summary__body h4 {
  margin-top: calc( 35px - (((1em * 2) - 1em) / 2) );
  margin-bottom: calc( 20px - (((1em * 2) - 1em) / 2) );
  padding-left: 12px;
  border-left: 3px solid #172A88;
  color: #3B4046;
  font-size: 1.7rem;
  font-weight: 700 !important;
  letter-spacing: .15em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .blog-article__body__content h4,
  .blog-article__body__summary__body h4 {
    margin-top: calc( 40px - (((1em * 2) - 1em) / 2) );
    margin-bottom: calc( 25px - (((1em * 2) - 1em) / 2) );
    font-size: 1.8rem;
  }
}
.blog-article__body__content h4:first-child,
.blog-article__body__summary__body h4:first-child {
  margin-top: 0;
}
.blog-article__body__content h4:last-child,
.blog-article__body__summary__body h4:last-child {
  margin-bottom: 0;
}

.blog-article__body__content h4::before,
.blog-article__body__summary__body h4::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * .5em);;
}
.blog-article__body__content h4::after,
.blog-article__body__summary__body h4::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * .5em);;
}


.blog-article__body__content p,
.blog-article__body__summary__body p {
  margin-top: calc( 35px - (((1em * 2) - 1em) / 2) );
  margin-bottom: calc( 20px - (((1em * 2) - 1em) / 2) );
  color: #3B4046;
  font-size: 1.5rem;
  letter-spacing: .1em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .blog-article__body__content p,
  .blog-article__body__summary__body p {
    margin-top: calc( 40px - (((1em * 2) - 1em) / 2) );
    margin-bottom: calc( 25px - (((1em * 2) - 1em) / 2) );
    font-size: 1.6rem;
  }
}
.blog-article__body__content p:first-child,
.blog-article__body__summary__body p:first-child {
  margin-top: 0;
}
.blog-article__body__content p:last-child,
.blog-article__body__summary__body p:last-child {
  margin-bottom: 0;
}

.blog-article__body__content p::before,
.blog-article__body__summary__body p::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * .5em);;
}
.blog-article__body__content p::after,
.blog-article__body__summary__body p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * .5em);;
}


.blog-article__body__content strong,
.blog-article__body__summary__body strong {
  font-weight: 700;
}

.blog-article__body__content em,
.blog-article__body__summary__body em {
  font-style: italic;
}

.blog-article__body__content img,
.blog-article__body__summary__body img {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 20px auto;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .blog-article__body__content img,
  .blog-article__body__summary__body img {
    max-width: 650px !important;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.blog-article__body__content img:first-child,
.blog-article__body__summary__body img:first-child {
  margin-top: 0;
}
.blog-article__body__content img:last-child,
.blog-article__body__summary__body img:last-child {
  margin-bottom: 0;
}

/* まとめ */
.blog-article__body__summary {
  margin-top: 45px;
  border: 1px solid #ABAEC1;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .blog-article__body__summary {
    margin-top: 60px;
  }
}

.blog-article__body__summary__head {
  padding: 11px 20px 10px;
  border-radius: 5px 5px 0 0;
  background-color: rgba(171,174,193,.6);
}
@media screen and (min-width: 768px) {
  .blog-article__body__summary__head {
    padding: 14px 30px;
  }
}

.blog-article__body__summary__head__heading {
  color: #3B4046;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: .1em;
}
@media screen and (min-width: 768px) {
  .blog-article__body__summary__head__heading {
    font-size: 2.0rem;
  }
}

.blog-article__body__summary__body {
  padding: 17px 20px;
}
@media screen and (min-width: 768px) {
  .blog-article__body__summary__body {
    padding: 27px 30px;
  }
}

/* cta */
.blog-article__body__cta {
  margin-top: 45px;
  margin-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .blog-article__body__cta {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
.blog-article__body__cta:first-child {
  margin-top: 0;
}
.blog-article__body__cta:last-child {
  margin-bottom: 45px;
}

.blog-article__body__cta .container {
  max-width: 100%;
  padding-right: inherit;
  padding-left: inherit;
}

.natural .blog-article__body__cta a {
  border-bottom: none;
}
.natural .blog-article__body__cta a[target="_blank"] {
  padding-left: 50px;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .natural .blog-article__body__cta a[target="_blank"] {
    padding-left: 20px;
  }
}
.natural .blog-article__body__cta a[target="_blank"]::before {
  content: none;
}

.blog-article__body__cta .cta-text-wrap {
  padding-bottom: 0;
}
.blog-article__body__cta .cta-text-wrap::before {
  content: none;
}

.blog-article__body__cta__anchor {
  display: block;
}

.blog-article__body__cta__content img {
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  vertical-align: middle;
}

/* 前の記事 / 次の記事 */
.blog-article__foot {
  margin-top: 45px;
  padding-top: 15px;
}
@media screen and (min-width: 768px) {
  .blog-article__foot {
    margin-top: 60px;
    padding-top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .blog-article__foot__nav__list {
    display: flex;
    margin-right: -30px;
    margin-left: -30px;
  }
  .blog-article__foot__nav__list__item {
    width: 50%;
    padding-left: 30px;
    padding-right: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.blog-article__foot__nav__list__item--prev {
  margin-right: auto;
}
.blog-article__foot__nav__list__item--next {
  margin-top: 20px;
  margin-left: auto;
  padding-top: 20px;
  border-top: 1px dotted #ABAEC1;
}
@media screen and (min-width: 768px) {
  .blog-article__foot__nav__list__item--next {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    border-left: 1px dotted #ABAEC1;
  }
}

.blog-article__foot__nav__list__item--prev .blog-article__foot__nav__list__item__heading {
  text-align: left;
}
.blog-article__foot__nav__list__item--next .blog-article__foot__nav__list__item__heading {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .blog-article__foot__nav__list__item--next .blog-article__foot__nav__list__item__heading {
    text-align: right;
  }
}

.blog-article__foot__nav__list__item__heading {
  color: #3B4046;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .1em;
}
@media screen and (min-width: 768px) {
  .blog-article__foot__nav__list__item__heading {
    font-size: 1.7rem;
  }
}
.blog-article__foot__nav__list__item__block {
  display: flex;
  align-items: flex-start;
  margin-top: 15px;
}

.blog-article__foot__nav__list__item__block__image {
  width: 100%;
  max-width: 110px;
  aspect-ratio: 16/9;
}
@media screen and (min-width: 768px) {
  .blog-article__foot__nav__list__item__block__image {
    max-width: 120px;
  }
}
.blog-article__foot__nav__list__item__block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-article__foot__nav__list__item__block__heading {
  width: 100%;
  margin-left: 15px;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.6;
  color: #3B4046;
  transition: color .3s;
}
@media screen and (min-width: 768px) {
  .blog-article__foot__nav__list__item__block__heading {
    max-width: 210px;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1050px) {
  a:hover .blog-article__foot__nav__list__item__block__heading {
    color: #172A88;
  }
}

.blog-article__foot__back {
  margin-top: 60px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .blog-article__foot__back {
    margin-top: 80px;
  }
}

.blog-article__foot__back__anchor {
  position: relative;
  padding-left: 38px;
  color: #3B4046;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.4;
  transition: color .3s;
}

.blog-article__foot__back__anchor__icon {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 25px;
  height: 25px;
  background: linear-gradient(116deg, #172A88 0%, #2B69A7 100%);
  border-radius: 50%;
}
.blog-article__foot__back__anchor__icon__svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 6px;
  height: 9px;
  transition: left .3s;
}
@media screen and (min-width: 1050px) {
  .blog-article__foot__back__anchor:hover {
    color: #172A88;
  }
  .blog-article__foot__back__anchor:hover .blog-article__foot__back__anchor__icon {
    background: linear-gradient(116deg, #2F4294 0%, #3D69A7 100%);
  }
  .blog-article__foot__back__anchor:hover .blog-article__foot__back__anchor__icon__svg {
    left: calc(50% - 2px);
  }
}
/* article / 記事詳細 === */


/* === article / 記事一覧 */

/* blog listing hero */
.hero--blog-listing .hero__image {
  background-image: url(//44558023.fs1.hubspotusercontent-na1.net/hubfs/44558023/raw_assets/public/daikyo-ohta/01_JP/assets/images/common/hero.jpg);
}
@media only screen and (max-width: 767px) {
  .hero--blog-listing .hero__image {
    background-position: 50% 50%;
  }
}

@media screen and (min-width: 768px) {
  .blog-content__main__article-list {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px;
    margin-left: -20px;
    margin-top: 86px;
  }
}
@media screen and (min-width: 1050px) {
  .blog-content__main__article-list {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .blog-content__main__article-list__item {
    box-sizing: border-box;
    width: 50%;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.blog-content__main__article-list__item:nth-child(n+2) {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .blog-content__main__article-list__item:nth-child(n+2) {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .blog-content__main__article-list__item:nth-child(n+3) {
    margin-top: 40px;
  }
}

.blog-content__main__article-list__item__block {
  display: block;
}

/* blog list item head */
.blog-content__main__article-list__item__block__head__image {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
}

.blog-content__main__article-list__item__block__head__image::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.blog-content__main__article-list__item__block__head__date {
  display: block;
  margin-top: 14px;
  color: #172A88;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .15em;
  transition: color .3s;
}
@media screen and (min-width: 768px) {
  .blog-content__main__article-list__item__block__head__date {
    margin-top: 22px;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1050px) {
  .blog-content__main__article-list__item__block:hover .blog-content__main__article-list__item__block__head__date {
    color: #172A88;
  }
}

/* blog list item body */
.blog-content__main__article-list__item__block__body {
  display: block;
  margin-top: 8px;
}

.blog-content__main__article-list__item__block__body__title {
  color: #3B4046;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.6;
  transition: color .3s;
}
@media screen and (min-width: 768px) {
  .blog-content__main__article-list__item__block__body__title {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1050px) {
  .blog-content__main__article-list__item__block:hover .blog-content__main__article-list__item__block__body__title {
    color: #172A88;
  }
}

.blog-content__main__article-list__item__block__category-list {
  margin: 10px -5px -5px;
}
.blog-content__main__article-list__item__block__category-list__item {
  display: inline-block;
  min-width: 100px;
  margin: 5px;
}
.blog-content__main__article-list__item__block__category-list__item__anchor {
  display: block;
  padding: 5px 15px 6px;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: .05em;
  border-radius: 3px;
  background-color: #F7F9FC;
  color: #3B4046;
  border-radius: 12px;
  transition: all .3s;
}
@media screen and (min-width: 1050px) {
  .blog-content__main__article-list__item__block__category-list__item__anchor:hover {
    background: linear-gradient(101deg, #172A88 0%, #2B69A7 100%);
    color: #fff;
    opacity: .8;
  }
}

.blog-content__main__pager {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .blog-content__main__pager {
    margin-top: 108px;
  }
}
@media screen and (min-width: 1050px) {
  .blog-content__main__pager {
    margin-top: 68px;
  }
}

.blog-content__main__pager__item:not(:first-child) {
  margin-left: 15px;
}

.blog-content__main__pager__item__anchor {
  display: block;
  font-size: 1.7rem;
  font-weight: 500;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  letter-spacing: .1em;
  color: #3B4046;
  padding-left: 5px;
  padding-right: 5px;
  -webkit-transition: color .3s;
  transition: color .3s;
}
@media screen and (min-width: 768px) {
  .blog-content__main__pager__item__anchor {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1050px) {
  .blog-content__main__pager__item__anchor:hover {
    color: #172A88;
  }
}

.blog-content__main__pager__item.is-current .blog-content__main__pager__item__anchor {
  color: #ABAEC1;
}

.blog-content__main__pager__item__anchor__icon {
  display: block;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .blog-content__main__pager__item__anchor__icon {
    width: 28px;
    height: 28px;
  }
}

.blog-content__main__pager__item__anchor--prev,
.blog-content__main__pager__item__anchor--next {
  position: relative;
}
.blog-content__main__pager__item__anchor--prev::before,
.blog-content__main__pager__item__anchor--next::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-image:url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2IiBoZWlnaHQ9IjkiIHZpZXdCb3g9IjAgMCA2IDkiPgogIDxwYXRoIGlkPSLjg5HjgrlfNzcxOSIgZGF0YS1uYW1lPSLjg5HjgrkgNzcxOSIgZD0iTTUxMi45NjMsMzQ1My44bC44MzgtMS4wNDQtMy45NjQtMy40OCwzLjk2LTMuNDI1LS44MzEtMS4wNTEtNS4xNjUsNC40NjhaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTA3LjgwMiAtMzQ0NC43OTYpIiBmaWxsPSIjZmZmIi8+Cjwvc3ZnPg==');
  background-repeat: no-repeat;
  background-size: contain;
  width: 6px;
  height: 8px;
  transition: left .3s;
}
@media screen and (min-width: 768px) {
  .blog-content__main__pager__item__anchor--prev::before,
  .blog-content__main__pager__item__anchor--next::before {
    width: 8px;
    height: 10px;
  }
}
.blog-content__main__pager__item__anchor--next::before {
  transform: translate(-50%,-50%) rotate(180deg);
}
@media screen and (min-width: 1050px) {
  .blog-content__main__pager__item__anchor--next:hover::before {
    left: calc(50% + 2px);
  }
  .blog-content__main__pager__item__anchor--prev:hover::before {
    left: calc(50% - 2px);
  }
}
/* blog list side menu */
.blog-content__aside {
  width: 100%;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .blog-content__aside {
    margin-top: 100px;
  }
}
@media screen and (min-width: 1050px) {
  .blog-content__aside {
    box-sizing: border-box;
    max-width: 380px;
    margin-top: 0;
    padding-right: 35px;
    padding-left: 35px;
  }
}

.blog-content__aside__magazine {
  position: relative;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
.blog-content__aside__magazine::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image:url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNTI2IiBoZWlnaHQ9IjI3NyIgdmlld0JveD0iMCAwIDUyNiAyNzciPgogIDxkZWZzPgogICAgPGxpbmVhckdyYWRpZW50IGlkPSJsaW5lYXItZ3JhZGllbnQiIHkxPSIwLjU2OCIgeDI9IjAuOTYzIiB5Mj0iMC41NjIiIGdyYWRpZW50VW5pdHM9Im9iamVjdEJvdW5kaW5nQm94Ij4KICAgICAgPHN0b3Agb2Zmc2V0PSIwIiBzdG9wLWNvbG9yPSIjZmZmIi8+CiAgICAgIDxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI2ZmZiIgc3RvcC1vcGFjaXR5PSIwLjA1MSIvPgogICAgPC9saW5lYXJHcmFkaWVudD4KICAgIDxjbGlwUGF0aCBpZD0iY2xpcC1wYXRoIj4KICAgICAgPHJlY3QgaWQ9IumVt+aWueW9ol8xMjY1MyIgZGF0YS1uYW1lPSLplbfmlrnlvaIgMTI2NTMiIHdpZHRoPSI1MjYiIGhlaWdodD0iMjc3IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIC0wLjEzNSkiIGZpbGw9InVybCgjbGluZWFyLWdyYWRpZW50KSIvPgogICAgPC9jbGlwUGF0aD4KICA8L2RlZnM+CiAgPGcgaWQ9IuOCsOODq+ODvOODl180MDAwMyIgZGF0YS1uYW1lPSLjgrDjg6vjg7zjg5cgNDAwMDMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTAuMDY0KSI+CiAgICA8ZyBpZD0i44Kw44Or44O844OXXzEzNjMxIiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyAxMzYzMSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAwLjE5OSkiIGNsaXAtcGF0aD0idXJsKCNjbGlwLXBhdGgpIj4KICAgICAgPHBhdGggaWQ9IuODkeOCuV84OTM5IiBkYXRhLW5hbWU9IuODkeOCuSA4OTM5IiBkPSJNNDk1LjIzMiw4NC4wNDgsMzUzLjI2NCwyMjYuMjkxYy02LjU1Myw1LjY2OS0xNS41LDkuNC0yMy4yMSwxLjk5NS03Ljc4Ny03LjQ3NC0yLjY2LTE3LjAyNiwxLjU1LTIxLjM1NCwxNi44NzYtMTguNTA3LDYzLjY1Ny02Ni4yNjcsODIuNS04NS42MSw0My4xNjMtNDYuMTY5LDQxLjU0OS04MS4zOTEsMTguNDA2LTEwNC41NjFDNDEwLjM0OC01LjQyMywzODIuNzE2LS44LDM2Ny44ODYsNS43MzhhNjQuOTksNjQuOTksMCwwLDAtMTkuMzczLDEzLjZjLTU0LjUsNTMuOTEyLTE3Ny42NTksMTczLjcyMS0yMDIuMzgyLDE5OS42YTY2LjA2Myw2Ni4wNjMsMCwwLDEtMTIuNTI1LDEwLjM4OWMtMTEuMDYxLDYuOTUzLTIwLjg4NCw4LjItMjYuNjc4LDEuMjY5LTcuMjkzLTkuNzEtMy43MzQtMjAuNTQ1LDEwLjIzOS0zNS4zMTYsMTMuNDMtMTMuODY5LDc2LjYtODMuNSw4NS44MjctOTMuMTYyLDkuNzUyLTExLjQzOSwyMC4xMTEtMjguMzMzLDE4Ljk2OS00My4zMy0uNjg0LTE4Ljg3My03Ljk3LTMzLjUtMjIuMTI2LTQ1Ljk4NUMxODYuNTU1LjQyNiwxNjMuNTE0LTIuODI5LDE0Ni4xMzEsMi4zOTVhNjAuMiw2MC4yLDAsMCwwLTIxLjQ3LDExLjQ1N0wwLDEzMy43NDRWMTkwLjJMMTM5LjIwNiw2MC4wNjNzMjQuNzU1LTI1LjEzOSwzNi45MDctMTEuM2MxMC4yNjgsMTEuNjg4LTkuNzc1LDMxLjcyMi0xMy4wNzcsMzUuNTY5LTEwLjE0NiwxMS44MTgtNjcuNDQ3LDY0LjM3My05MS4yNDcsOTMuMi0xMi4wNjEsMTQuNjA4LTEzLjcsMjcuNDkxLTE0LjgwOCwzMy44NTktMS4wNjYsMjEuMDgxLDMuMzE5LDMyLjQyOSwxNi4xNjQsNDYuNTczLDExLjU3NywxMi4yLDI1Ljg3MSwxOS4zNzQsNDYuMDU5LDE5LjA4NCwyMS45ODYtLjMxNiw0Mi4xNzQtMTAuNTU2LDU4LjI2OS0yNi45NTlDMTkyLjMsMjMzLjY3MiwzMTkuMzM0LDEwOS4yNzUsMzYyLjMyNCw2Ni43MjljMCwwLDI2LjI1NS0zMS44MzIsMzkuOC0xOC43MzksNi41MzcsNi42MzQsNy44LDE3Ljg4OS0xNC42NjMsNDEuNTYzLTE3LjcsMTguMzIyLTY0LjUzNCw2NC40MTYtODEuNTU0LDgxLjgwOS05LjQ5Miw5LjctMTcuMSwyMS4xODktMjEuMTI3LDM0LjE1Ny00Ljg1OSwxNS42NDctNS44LDM2LjEwNyw5Ljg2NCw1NS4zNTQsMzAuMTkxLDI5LjA4Myw3MC4zLDEyLjY3OCw4Ni4wNjktLjc5MSwzOS4wNTQtMzMuMzU0LDE0NS4xNDYtMTQ1LjQwNywxNDUuMTQ2LTE0NS40MDdaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIC0wLjE4NikiIGZpbGw9InVybCgjbGluZWFyLWdyYWRpZW50KSIvPgogICAgPC9nPgogIDwvZz4KPC9zdmc+');
  background-repeat: no-repeat;
  background-size: contain;
  width: 67%;
  height: calc(100% - 18px);
  z-index: 1;
}
.blog-content__aside__magazine__anchor {
  width: 100%;
  height: 100%;
  padding: 30px 30px 50px 30px;
  display: block;
  color: #172A88;;
  background-color: #F7F9FC;
  font-size: 1.5rem;
  letter-spacing: .2em;
  text-align: center;
  position: relative;
  transition: opacity .3s;
  border-radius: 5px;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .blog-content__aside__magazine__anchor {
    padding: 35px 30px 70px 30px;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1050px) {
  .blog-content__aside__magazine__anchor {
    padding: 24px 30px 47px 30px;
  }
}

.blog-content__aside__magazine__anchor__inner {
  display: block;
  position: relative;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .12em;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .blog-content__aside__magazine__anchor__inner {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1050px) {
  .blog-content__aside__magazine__anchor__inner {
    font-size: 1.5rem;
  }
}
.blog-content__aside__magazine__anchor__inner::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -25px;
  background-image:url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNTEuNzciIGhlaWdodD0iMjUuMTU0IiB2aWV3Qm94PSIwIDAgMTUxLjc3IDI1LjE1NCI+CiAgPGcgaWQ9IuOCsOODq+ODvOODl18zOTk5MCIgZGF0YS1uYW1lPSLjgrDjg6vjg7zjg5cgMzk5OTAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01MjcgLTE0MCkiPgogICAgPGcgaWQ9IuOCsOODq+ODvOODl18zOTcyNyIgZGF0YS1uYW1lPSLjgrDjg6vjg7zjg5cgMzk3MjciIHRyYW5zZm9ybT0idHJhbnNsYXRlKDY2MiAxNDApIj4KICAgICAgPHBhdGggaWQ9IuODkeOCuV83NzE5IiBkYXRhLW5hbWU9IuODkeOCuSA3NzE5IiBkPSJNNTEwLjE0NSwzNDY5Ljk1bC0yLjM0My0yLjkxOSwxMS4wNzgtOS43MjgtMTEuMDY4LTkuNTcyLDIuMzIyLTIuOTM2LDE0LjQzNywxMi40ODdaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTA3LjgwMiAtMzQ0NC43OTYpIiBmaWxsPSIjMTcyYTg4Ii8+CiAgICA8L2c+CiAgICA8cmVjdCBpZD0i6ZW35pa55b2iXzEyNzI0IiBkYXRhLW5hbWU9IumVt+aWueW9oiAxMjcyNCIgd2lkdGg9IjE0NyIgaGVpZ2h0PSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg1MjcgMTUxKSIgZmlsbD0iIzE3MmE4OCIvPgogIDwvZz4KPC9zdmc+');
  background-repeat: no-repeat;
  background-size: contain;
  width: 65px;
  height: 10px;
}
@media screen and (min-width: 768px) {
  .blog-content__aside__magazine__anchor__inner::after {
    bottom: -38px;
    height: 14px;
    width: 92px;
  }
}
@media screen and (min-width: 1050px) {
  .blog-content__aside__magazine__anchor__inner::after {
    bottom: -30px;
    height: 14px;
    width: 60px;
  }
}
.blog-content__aside__magazine__anchor__inner__icon {
  position: absolute;
  width: 24px;
  height: auto;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .blog-content__aside__magazine__anchor__inner__icon {
    width: 33px;
  }
}
@media screen and (min-width: 1050px) {
  .blog-content__aside__magazine__anchor__inner__icon {
    width: 23px;
  }
}

.blog-content__aside__magazine__anchor__inner__deco {
  display: block;
  padding-top: 21px;
  padding-bottom: 7px;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: .17em;
  color: #172A88;
  opacity: .6;
}
@media screen and (min-width: 768px) {
  .blog-content__aside__magazine__anchor__inner__deco {
    padding-top: 30px;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1050px) {
  .blog-content__aside__magazine__anchor__inner__deco {
    padding-top: 20px;
    font-size: 1rem;
  }
}
.blog-content__aside__heading {
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #ABAEC1;
  color: #3B4046;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: .1em;
  line-height: 1.5;
}

.blog-content__aside__heading:not(:first-child) {
  margin-top: 23px;
}
@media screen and (min-width: 768px) {
  .blog-content__aside__heading:not(:first-child) {
    margin-top: 35px;
  }
}
.blog-content__aside__heading::before {
  content: "";
  background-color: #172A88;
  height: 1px;
  width: 85px;
  bottom: -1px;
  left: 0;
  position: absolute;
}

.blog-content__aside__article-list {
  margin-top: 10px;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .blog-content__aside__article-list {
    margin-top: 17px;
  }
}

.blog-content__aside__article-list__item:not(:first-child) {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dotted #ABAEC1;
}

.blog-content__aside__article-list__item:last-child {
  padding-bottom: 20px;
  border-bottom: 1px dotted #ABAEC1;
}

.blog-content__aside__article-list__item__block {
  display: flex;
}

.blog-content__aside__article-list__item__block__head {
  width: 100%;
  max-width: 108px;
}
@media screen and (min-width: 768px) {
  .blog-content__aside__article-list__item__block__head {
    max-width: 117px;
  }
}
@media screen and (min-width: 1050px) {
  .blog-content__aside__article-list__item__block__head {
    max-width: 100px;
  }
}

.blog-content__aside__article-list__item__block__head__image {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
}

.blog-content__aside__article-list__item__block__head__image::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.blog-content__aside__article-list__item__block__head__date {
  display: block;
  margin-top: 10px;
  color: #172A88;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: .15em;
  transition: color .3s;
}
@media screen and (min-width: 768px) {
  .blog-content__aside__article-list__item__block__head__date {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1050px) {
  a:hover .blog-content__aside__article-list__item__block__head__date {
    color: #172A88;
  }
}

.blog-content__aside__article-list__item__block__body {
  width: 100%;
  margin-left: 15px;
}
@media screen and (min-width: 1050px) {
  .blog-content__aside__article-list__item__block__body {
    max-width: 195px;
  }
}

.blog-content__aside__article-list__item__block__body__title {
  color: #3B4046;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.6;
  transition: color .3s;
}
@media screen and (min-width: 768px) {
  .blog-content__aside__article-list__item__block__body__title {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1050px) {
  a:hover .blog-content__aside__article-list__item__block__body__title {
    color: #172A88;
  }
}
/* article / 記事一覧 === */
@charset "UTF-8";

/* lp */
.content.content--landing-page .dnd-section-color {
  padding-top: 55px;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .content.content--landing-page .dnd-section-color {
    padding-top: 78px;
  }
}
@media screen and (min-width: 1050px) {
  .content.content--landing-page .dnd-section-color {
    padding-top: 78px;
  }
}
.lp-form.section {
  margin-top: 52px !important;
  margin-bottom: 80px !important;
}
@media screen and (min-width: 768px) {
  .lp-form.section {
    margin-top: 80px !important;
    margin-bottom: 120px !important;
  }
}

.lp-form form .legal-consent-container:not(:first-child) {
  margin-top: 45px;
}

@media screen and (min-width: 768px) {
  .lp-form form .legal-consent-container:not(:first-child) {
    margin-top: 55px;
  }
}

.lp-form form fieldset {
  max-width: 100%;
}

.lp-form form fieldset:not(:first-child) {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .lp-form form fieldset:not(:first-child) {
    margin-top: 30px;
  }
}

.lp-form form .hs-form-field > .input {
  margin-right: 0;
}

.lp-form form fieldset.form-columns-2 .hs-form-field {
  width: 100%;
  float: none;
  box-sizing: border-box;
}

@media screen and (min-width: 1050px) {
  .lp-form form fieldset.form-columns-2 .hs-form-field {
    width: 100%;
    float: left;
  }
}

.lp-form form fieldset.form-columns-2 .hs-form-field > .input {
  margin-right: 0;
}

.lp-form form fieldset.form-columns-2 .hs-form-field:nth-child(2) {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .lp-form form fieldset.form-columns-2 .hs-form-field:nth-child(2) {
    margin-top: 30px;
  }
}

/* contact property : form row */
@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field:not(.hs-fieldtype-booleancheckbox) {
    display: grid;
    grid-template-columns: 200px 1fr;
    column-gap: 45px;
  }
}
.lp-form form .hs-form-field:not(:first-child) {
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field:not(:first-child) {
    margin-top: 40px;
  }
}

/* contact property : label */
.lp-form form .hs-form-field:not(.hs-fieldtype-booleancheckbox) > label {
  display: block;
  grid-row-start: 1;
  grid-row-end: 10;
  width: 200px;
  height: fit-content;
  padding: 3px 0 4px 11px;
  border-left: 3px solid #ABAEC1;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
  color: #3B4046;
}
@media screen and (max-width: 767px) {
  .lp-form form .hs-form-field:not(.hs-fieldtype-booleancheckbox) > label {
    width: 100%;
    padding: 0 0 0 8px;
    font-size: 1.3rem;
  }
}

/* contact property : input (parent div) */
.lp-form form .hs-form-field:not(.hs-fieldtype-booleancheckbox) > .input {
  display: block;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field:not(.hs-fieldtype-booleancheckbox) > .input {
    margin-top: 0;
  }
}

.lp-form form .hs-form-field:not(.hs-fieldtype-booleancheckbox) > .input ul > li.hs-form-checkbox:not(:first-child) {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field:not(.hs-fieldtype-booleancheckbox) > .input ul > li.hs-form-checkbox:not(:first-child) {
    margin-top: 20px;
  }
}

.lp-form form .hs-form-field:not(.hs-fieldtype-booleancheckbox) > .input ul > li.hs-form-checkbox span {
  font-size: 1.3rem;
  line-height: 1.5;
  padding-left: 5px;
  width: calc(100% - 25px);
  display: inline-flex;
  color: #3B4046;
}
@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field:not(.hs-fieldtype-booleancheckbox) > .input ul > li.hs-form-checkbox span {
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: .1em;
  }
}

.lp-form form .hs-fieldtype-checkbox label.hs-form-checkbox-display input[type="checkbox"] {
  width: 13px !important;
  height: 13px;
  border-radius: 3px;
  top: 4px;
}

@media screen and (min-width: 768px) {
  .lp-form form .hs-fieldtype-checkbox label.hs-form-checkbox-display input[type="checkbox"] {
    top: 10px;
  }
}

/* contact property : error message */
.lp-form form .hs-form-field:not(.hs-fieldtype-booleancheckbox) > ul.hs-error-msgs .hs-error-msg {
  color: #CB0303;
}

/* contact property : form parts */
.lp-form form .hs-form-field.hs-fieldtype-text > .input input,
.lp-form form .hs-form-field.hs-fieldtype-text > .input textarea,
.lp-form form .hs-form-field.hs-fieldtype-textarea > .input input,
.lp-form form .hs-form-field.hs-fieldtype-textarea > .input textarea,
.lp-form form .hs-form-field.hs-fieldtype-select > .input input,
.lp-form form .hs-form-field.hs-fieldtype-phonenumber > .input input,
.lp-form form .hs-form-field.hs-fieldtype-phonenumber.hs-phone > .input > .hs-fieldtype-intl-phone.hs-input > input.hs-input ,
.lp-form form .hs-form-field.hs-fieldtype-select > .input textarea,
.lp-form form .hs-form-field.hs-fieldtype-number > .input input {
  outline: 0;
  background: none transparent;
  vertical-align: middle;
  color: #3B4046;;
  appearance: none;
  border: 1px solid #ABAEC1;
  border-radius: 5px;
  width: 100% !important;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  letter-spacing: .1em;
  padding: 12px 14px 11px;
}
.lp-form form .hs-form-field.hs-fieldtype-phonenumber.hs-phone > .input > .hs-fieldtype-intl-phone.hs-input > input.hs-input {
  width: 100% !important;
}
@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field.hs-fieldtype-text > .input input,
  .lp-form form .hs-form-field.hs-fieldtype-text > .input textarea,
  .lp-form form .hs-form-field.hs-fieldtype-textarea > .input input,
  .lp-form form .hs-form-field.hs-fieldtype-textarea > .input textarea,
  .lp-form form .hs-form-field.hs-fieldtype-select > .input input,
  .lp-form form .hs-form-field.hs-fieldtype-phonenumber > .input input,
  .lp-form form .hs-form-field.hs-fieldtype-phonenumber.hs-phone > .input > .hs-fieldtype-intl-phone.hs-input > input.hs-input,
  .lp-form form .hs-form-field.hs-fieldtype-select > .input textarea,
  .lp-form form .hs-form-field.hs-fieldtype-number > .input input {
    font-size: 1.6rem;
    padding: 15px 14px 14px;
  }
}

.lp-form form .hs-form-field.hs-fieldtype-text > .input input::placeholder,
.lp-form form .hs-form-field.hs-fieldtype-text > .input textarea::placeholder,
.lp-form form .hs-form-field.hs-fieldtype-textarea > .input input::placeholder,
.lp-form form .hs-form-field.hs-fieldtype-textarea > .input textarea::placeholder,
.lp-form form .hs-form-field.hs-fieldtype-select > .input input::placeholder,
.lp-form form .hs-form-field.hs-fieldtype-phonenumber > .input input::placeholder,
.lp-form form .hs-form-field.hs-fieldtype-select > .input textarea::placeholder,
.lp-form form .hs-form-field.hs-fieldtype-number > .input input::placeholder {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .15em;
  line-height: 1.5;
  color: #3B4046;
  opacity: .6;
}
@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field.hs-fieldtype-text > .input input::placeholder,
  .lp-form form .hs-form-field.hs-fieldtype-text > .input textarea::placeholder,
  .lp-form form .hs-form-field.hs-fieldtype-textarea > .input input::placeholder,
  .lp-form form .hs-form-field.hs-fieldtype-textarea > .input textarea::placeholder,
  .lp-form form .hs-form-field.hs-fieldtype-select > .input input::placeholder,
  .lp-form form .hs-form-field.hs-fieldtype-phonenumber > .input input::placeholder,
  .lp-form form .hs-form-field.hs-fieldtype-select > .input textarea::placeholder,
  .lp-form form .hs-form-field.hs-fieldtype-number > .input input::placeholder {
    font-size: 1.6rem;
  }
}
/* contact property : form parts (on error) */
.lp-form form .hs-form-field.hs-fieldtype-text > .input input.hs-input.invalid.error,
.lp-form form .hs-form-field.hs-fieldtype-textarea > .input textarea.hs-input.invalid.error,
.lp-form form .hs-form-field.hs-fieldtype-phonenumber > .input input.hs-input.invalid.error,
.lp-form form .hs-form-field.hs-fieldtype-phonenumber > .input .hs-fieldtype-intl-phone.hs-input input.hs-input.error {
  border-color: #CB0303;
}

/* contact property : form parts (textarea) */
.lp-form form .hs-form-field.hs-fieldtype-text > .input textarea,
.lp-form form .hs-form-field.hs-fieldtype-textarea > .input textarea,
.lp-form form .hs-form-field.hs-fieldtype-select > .input textarea {
  min-height: 120px;
}
@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field.hs-fieldtype-text > .input textarea,
  .lp-form form .hs-form-field.hs-fieldtype-textarea > .input textarea,
  .lp-form form .hs-form-field.hs-fieldtype-select > .input textarea {
    min-height: 200px;
  }
}

/* contact property : form parts (number) */
.lp-form form .hs-form-field.hs-fieldtype-number > .input {
  max-width: 350px;
}

/* contact property : help text */
.lp-form form .hs-form-field .hs-field-desc {
  width: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #3B4046;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field .hs-field-desc {
    margin-top: 0;
    font-size: 1.6rem;
  }
}

/* contact property : error message */
.lp-form form .hs-form-field.hs-fieldtype-text .hs-error-msgs,
.lp-form form .hs-form-field.hs-fieldtype-number .hs-error-msgs,
.lp-form form .hs-form-field.hs-fieldtype-phonenumber .hs-error-msgs,
.lp-form form .hs-form-field.hs-fieldtype-textarea .hs-error-msgs,
.lp-form form .hs-form-field.hs-fieldtype-select .hs-error-msgs,
.lp-form form .hs-form-field.hs-fieldtype-checkbox .hs-error-msgs,
.lp-form form .hs-form-field.hs-fieldtype-radio .hs-error-msgs,
.lp-form form .hs-form-field.hs-fieldtype-file .hs-error-msgs,
.lp-form form .hs-form-field.hs-fieldtype-date .hs-error-msgs,
.lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .hs-error-msgs {
  width: 100%;
  margin-top: 3px;
  color: #CB0303;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .lp-form form .hs-form-field.hs-fieldtype-text .hs-error-msgs,
  .lp-form form .hs-form-field.hs-fieldtype-number .hs-error-msgs,
  .lp-form form .hs-form-field.hs-fieldtype-phonenumber .hs-error-msgs,
  .lp-form form .hs-form-field.hs-fieldtype-textarea .hs-error-msgs,
  .lp-form form .hs-form-field.hs-fieldtype-select .hs-error-msgs,
  .lp-form form .hs-form-field.hs-fieldtype-checkbox .hs-error-msgs,
  .lp-form form .hs-form-field.hs-fieldtype-radio .hs-error-msgs,
  .lp-form form .hs-form-field.hs-fieldtype-file .hs-error-msgs,
  .lp-form form .hs-form-field.hs-fieldtype-date .hs-error-msgs,
  .lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .hs-error-msgs {
    font-size: 1.3rem;
  }
}

/* contact property : require */
.lp-form form .hs-form-field label .hs-form-required {
  color: #CB0303;
}

/* contact property : dropdown (selectbox) */
.lp-form form .hs-form-field.hs-fieldtype-select > .input {
  position: relative;
  max-width: 350px;
}
.lp-form form .hs-form-field .hs-fieldtype-intl-phone > .select_lang_code {
  position: relative;
  max-width: 515px;
}
.lp-form form .hs-form-field.hs-fieldtype-select > .input::before,
.lp-form form .hs-form-field .hs-fieldtype-intl-phone > .select_lang_code::before {
  content: '';
  position: absolute;
  top: 18px;
  right: 21px;
  width: 10px;
  height: 6px;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSI2IiB2aWV3Qm94PSIwIDAgMTAgNiI+CiAgPHBhdGggaWQ9IuWQiOS9k18xNCIgZGF0YS1uYW1lPSLlkIjkvZMgMTQiIGQ9Ik01LDRsNS00VjJMNSw2Wk0wLDJWMEw1LDRWNloiIGZpbGw9IiMxZTI0MmYiLz4KPC9zdmc+');
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field.hs-fieldtype-select > .input::before {
    top: 23px;
    right: 20px;
  }
  .lp-form form .hs-form-field .hs-fieldtype-intl-phone > .select_lang_code::before {
    top: 19px;
    right: 15px;
  }
}
/* IE */
@media all and (-ms-high-contrast: none) {
  .lp-form form .hs-form-field.hs-fieldtype-select > .input::before,
  .lp-form form .hs-form-field .hs-fieldtype-intl-phone > .select_lang_code::before {
    display: none;
  }
}

.lp-form form .hs-form-field.hs-fieldtype-select > .input select.hs-input,
.lp-form form .hs-form-field .hs-fieldtype-intl-phone > .select_lang_code > select.hs-input {
  display: block;
  outline: none;
  text-indent: 0.01px;
  background: none transparent;
  color: inherit;
  appearance: none;
  border: 1px solid #ABAEC1;
  border-radius: 5px;
  width: 100%;
  max-height: 40px;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .1em;
  padding: 11px 30px 11px 14px;
  color: #3B4046;
}
.lp-form form .hs-form-field .hs-fieldtype-intl-phone > .select_lang_code > select.hs-input {
  width: 100% !important;
  padding: 8px 30px 11px 14px;
}
@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field.hs-fieldtype-select > .input select.hs-input {
    font-size: 1.6rem;
    font-weight: 400;
    padding: 12px 40px 14px 14px;
    max-height: 50px;
  }
  .lp-form form .hs-form-field .hs-fieldtype-intl-phone > .select_lang_code > select.hs-input {
    padding: 9px 40px 5px 15px;
    max-height: 40px;
    font-size: 1.5rem;
  }
}

.lp-form form .hs-form-field .hs-fieldtype-intl-phone {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field .hs-fieldtype-intl-phone {
    gap: 15px;
  }
}
/* IE */
@media all and (-ms-high-contrast: none) {
  .lp-form form .hs-form-field.hs-fieldtype-select > .input select.hs-input {
    padding: 15px 25px 9px 12px;
  }
}

.lp-form form .checkbox-title {
  display: inline-block;
  float: left;
  width: 100%;
  padding-top: 9px;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 2em;
  border-top: 1px solid #1E242F;
}
@media screen and (min-width: 768px) {
  .lp-form form .checkbox-title {
    font-size: 1.6rem;
    width: 200px;
  }
}

/* contact property : boolean checkbox (1つのチェックボックス、個人情報保護方針) */
.lp-form form .hs-form-field.hs-fieldtype-booleancheckbox {
  text-align: center;
}
.lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input {
  margin-top: 5px;
  text-align: center;
}
.lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input label {
  display: inline-block;
}
.lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input label > input {
  display: none;
}
.lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input label > input:checked + span::after {
  opacity: 1;
  pointer-events: auto;
}
.lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input label > span {
  display: inline-block;
  font-size: 1.7rem;
  letter-spacing: .1em;
  line-height: 2em;
  font-weight: 500;
  text-align: left;
  position: relative;
  padding-left: 40px;
  margin-left: 0;
  color: #1E242F;
}
@media screen and (max-width: 767px) {
  .lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input label > span {
    font-size: 1.5rem;
    padding-left: 30px;
  }
}
.lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input label > span::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid #ABAEC1;
  box-sizing: border-box;
  background-color: transparent;
  position: absolute;
  top: 4px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input label > span::before {
    width: 25px;
    height: 25px;
  }
}
/* IE */
@media all and (-ms-high-contrast: none) {
  .lp-form form .legal-consent-container .hs-fieldtype-booleancheckbox .input label > span::before {
    top: 5px;
  }
  .lp-form form .legal-consent-container .hs-fieldtype-booleancheckbox .input label > span::after {
    top: 11px !important;
  }
}

.lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input label > input:checked + span::before {
  background-color: #6D758A;
}
.lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input label > span::after {
  content: '';
  width: 11px;
  height: 8px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNi45NiAxMS40NCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNmZmY7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGlkPSLjg5HjgrlfOTciIGRhdGEtbmFtZT0i44OR44K5IDk3IiBjbGFzcz0iY2xzLTEiIGQ9Ik0wLDUuMWw2Ljg5LDYuMzRMMTcsMi4yMSwxNC43LDAsNi44OSw3LjMxLDIuMDcsMi43N1oiLz48L2c+PC9nPjwvc3ZnPg==");
  background-size: cover;
  position: absolute;
  top: 10px;
  left: 4px;
  transition: opacity .2s;
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input label > span::after {
    width: 17px;
    height: 11px;
    top: 11px;
  }
}
.lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input label > span .aInput {
  text-decoration: underline;
}

.lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .hs-error-msgs {
  color: #CB0303;
  text-align: center;
  margin-top: 10px;
  width: 100%;
}

.lp-form form .hs-form-field.hs-fieldtype-radio .input ul.inputs-list {
  display: flex;
  flex-wrap: wrap;
}

.lp-form form .hs-form-field.hs-fieldtype-radio .input ul.inputs-list .hs-form-radio {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .lp-form form .hs-form-field.hs-fieldtype-radio .input ul.inputs-list.multi-container,
  .lp-form form .hs-form-field.hs-fieldtype-radio .input ul.inputs-list.multi-container .hs-form-radio {
    display: block;
  }
}

.lp-form form .hs-form-field.hs-fieldtype-radio .input ul.inputs-list .hs-form-radio:not(:last-child) {
  margin-right: 25px;
}

.lp-form form .hs-form-field.hs-fieldtype-radio .input ul.inputs-list .hs-form-radio label > span {
  color: #3B4046;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: .1em;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .lp-form form .hs-form-field.hs-fieldtype-radio .input ul.inputs-list .hs-form-radio label > span {
    font-size: 13px;
  }
}

.lp-form form .hs-form-field.hs-fieldtype-date .input .hs-dateinput .fn-date-picker.pika-single {
  border-radius: 5px;
  border: 1px solid #ABAEC1;
  border-bottom-color: #ABAEC1;
}

.fn-date-picker .pika-label {
  font-size: 1.5rem !important;
  font-weight: 400 !important;
  color: #3B4046;
}

.fn-date-picker .pika-next,
.fn-date-picker .pika-prev {
  background-size: inherit !important;
  position: absolute;
  transition: .3s;
  opacity: 1 !important;
}

.fn-date-picker .pika-prev {
  background-image:url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2IiBoZWlnaHQ9IjEyIiB2aWV3Qm94PSIwIDAgNiAxMiI+CiAgPHBhdGggaWQ9IuWkmuinkuW9ol82MyIgZGF0YS1uYW1lPSLlpJrop5LlvaIgNjMiIGQ9Ik02LDBsNiw2SDBaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDEyKSByb3RhdGUoLTkwKSIgZmlsbD0iIzE3MmE4OCIvPgo8L3N2Zz4=') !important;
  left: 0;
  top: 0;
}

.fn-date-picker .pika-next {
  background-image:url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2IiBoZWlnaHQ9IjEyIiB2aWV3Qm94PSIwIDAgNiAxMiI+CiAgPHBhdGggaWQ9IuWkmuinkuW9ol82MiIgZGF0YS1uYW1lPSLlpJrop5LlvaIgNjIiIGQ9Ik02LDBsNiw2SDBaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2KSByb3RhdGUoOTApIiBmaWxsPSIjMTcyYTg4Ii8+Cjwvc3ZnPg==') !important;
  right: 0;
  top: 0;
}

.fn-date-picker .pika-table th {
  border-style: inherit !important;
  color: #414141 !important;
  font-size: 1.2rem !important;
  font-weight: 500 !important;
}

.fn-date-picker .pika-button {
  border-radius: 2px !important;
  color: #414141 !important;
  font-size: 1.3rem !important;
  font-weight: 500;
  background-color: #F7F9FC !important;
}

.fn-date-picker .is-today .pika-button {
  color: #172A88 !important;
  font-weight: 500 !important;
}

.fn-date-picker .pika-table abbr {
  cursor: inherit !important;
  text-decoration: none !important;
}

button.pika-button.pika-day:hover {
  background: #909090 !important;
}

.fn-date-picker .is-selected .pika-button {
  color: #fff !important;
  font-weight: 500 !important;
  background: #172A88 !important;
  box-shadow: none !important;
}

.lp-form form .hs-form-field .input .hs-dateinput input.hs-input {
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #ABAEC1;
  color: #3B4046;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: .1em;
  height: 50px;
  padding: 15px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .lp-form form .hs-form-field .input .hs-dateinput input.hs-input {
    font-size: 13px;
    height: 40px;
  }
}

.lp-form form .legal-consent-container .hs-fieldtype-booleancheckbox {
  justify-content: center;
  float: inherit;
  width: 100%;
}

.lp-form form .legal-consent-container .hs-fieldtype-booleancheckbox .input label>span {
  display: inline-block;
  font-size: 1.5rem;
  letter-spacing: .1em;
  line-height: 2em;
  font-weight: 500;
  position: relative;
  padding-left: 30px;
  margin-left: 0;
  color: #1E242F;
}

@media screen and (min-width: 768px) {
  .lp-form form .legal-consent-container .hs-fieldtype-booleancheckbox .input label>span {
    font-size: 1.7rem;
    padding-left: 40px;
  }
}

.legal-consent-container .hs-error-msgs label {
  color: #cb0303 !important;
}

.lp-form form .legal-consent-container .hs-richtext {
  color: #3B4046;
  font-size: 1.3rem;
  letter-spacing: .15em;
  line-height: 2em;
}

.lp-form form .legal-consent-container .hs-richtext a {
  display: inline;
  position: relative;
  border-bottom: 1px solid #E8D815;
  text-decoration: none;
  transition: .5s;
}
@media screen and (min-width: 1050px) {
  .lp-form form .legal-consent-container .hs-richtext a:hover {
    color: #172A88;
  }
}

.lp-form form .legal-consent-container .hs-richtext a[target="_blank"] {
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .lp-form form .legal-consent-container .hs-richtext a[target="_blank"] {
    padding-left: 15px;
  }
}

.lp-form form .legal-consent-container .hs-richtext a[target="_blank"]:before {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMS45NjkiIGhlaWdodD0iMTEuOTY5IiB2aWV3Qm94PSIwIDAgMTEuOTY5IDExLjk2OSI+CiAgPHBhdGggaWQ9IuODkeOCuV82NDIxIiBkYXRhLW5hbWU9IuODkeOCuSA2NDIxIiBkPSJNLTc4OC41MjksMGgtNi4zNDJhLjUyOC41MjgsMCwwLDAtLjUyOC41MjlWMi4xNjdoLTMuODdhLjcuNywwLDAsMC0uNy43djguNGEuNy43LDAsMCwwLC43LjdoOC40YS43LjcsMCwwLDAsLjctLjdWNy40aDEuNjM4QS41MjguNTI4LDAsMCwwLTc4OCw2Ljg3MVYuNTI5QS41MjkuNTI5LDAsMCwwLTc4OC41MjksMFptLTIuNjM4LDEwLjk2OWgtNy44di03LjhoMy41N3YzLjdhLjUyNy41MjcsMCwwLDAsLjUyOC41MjhoMy43Wk0tNzg5LDYuNGgtNS40VjFoNS40WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNzk5Ljk2OSkiIGZpbGw9IiM0MTQxNDEiLz4KPC9zdmc+Cg==") no-repeat center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
	content: "";
  margin-top: -6px;
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 12px;
}
@media all and (-ms-high-contrast:none){
  .lp-form form .legal-consent-container .hs-richtext a[target="_blank"]:before {
    margin-top: -6px;
  }
}

.lp-form form .legal-consent-container .hs-richtext strong {
  font-weight: 700;
}

.lp-form form .legal-consent-container .hs-richtext::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * .5em);
}

.lp-form form .legal-consent-container .hs-richtext::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * .5em);
}

.lp-form form .legal-consent-container .hs-richtext:not(:first-child) {
  margin-top: 20px;
}

.lp-form form .legal-consent-container .hs-richtext:not(:last-child) {
  margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
  .lp-form form .legal-consent-container .hs-richtext {
    font-size: 1.4rem;
  }
  .lp-form form .legal-consent-container .hs-richtext:not(:last-child) {
    margin-bottom: 35px;
  }
}

.lp-form form .legal-consent-container .input {
  text-align: center;
}

.lp-form form .legal-consent-container .input label {
  display: inline-block;
}

.lp-form form .legal-consent-container .input label > input {
  display: none;
}

.lp-form form .legal-consent-container .input label > input:checked + span::after {
  opacity: 1;
  pointer-events: auto;
}

.lp-form form .legal-consent-container .input label > span {
  display: inline-block;
  font-size: 1.5rem;
  letter-spacing: .1em;
  line-height: 2em;
  font-weight: 700;
  text-align: left;
  position: relative;
  padding-left: 30px;
}

@media screen and (min-width: 768px) {
  .lp-form form .legal-consent-container .input label > span {
    font-size: 1.7rem;
  }
}

@media screen and (min-width: 768px) {
  .lp-form form .legal-consent-container .input label > span {
    padding-left: 40px;
  }
}

.lp-form form .legal-consent-container .input label > span::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 5px;
  box-sizing: border-box;
  background-color: #ABAEC1;
  position: absolute;
  top: 4px;
  left: 0;
}

@media screen and (min-width: 768px) {
  .lp-form form .legal-consent-container .input label > span::before {
    width: 25px;
    height: 25px;
  }
}

.lp-form form .legal-consent-container .input label > span::after {
  content: '';
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNi45NiAxMS40NCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNmZmY7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGlkPSLjg5HjgrlfOTciIGRhdGEtbmFtZT0i44OR44K5IDk3IiBjbGFzcz0iY2xzLTEiIGQ9Ik0wLDUuMWw2Ljg5LDYuMzRMMTcsMi4yMSwxNC43LDAsNi44OSw3LjMxLDIuMDcsMi43N1oiLz48L2c+PC9nPjwvc3ZnPg==");
  background-size: cover;
  position: absolute;
  transition: opacity .2s;
  opacity: 0;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .lp-form form .legal-consent-container .input label > span::after {
    width: 17px;
    height: 11px;
    top: calc(50% - 5px);
  }
}

.lp-form form .legal-consent-container .hs-error-msgs {
  color: #CB0303;
  text-align: center;
  margin-top: 10px;
  width: 100%;
}

.lp-form form .hs-submit {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .lp-form form .hs-submit {
    margin-top: 37px;
  }
}

.lp-form form .hs-submit .actions {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.lp-form form .hs-submit .actions::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #172A88;
  transform: scale(0, 1);
  transform-origin: right top;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transition: -webkit-transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transition: transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transition: transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99), -webkit-transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

.lp-form form .hs-submit .actions input {
  position: relative;
  text-align: left;
  width: 100%;
  cursor: pointer;
  background: linear-gradient(90deg, #172A88 0%, #2B69A7 100%);
  appearance: none;
  border: none;
  display: block;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: .1em;
  line-height: 1.6;
  font-weight: 400;
  padding: 1.1rem 8.5rem 1.2rem 2.2rem;
  z-index: 1;
  transition: all .3s;
  border-radius: 25px;
}

@media screen and (min-width: 768px) {
  .lp-form form .hs-submit .actions input {
    padding: 1.3rem 9.5rem 1.2rem 2.2rem;
    font-size: 1.5rem;
  }
}

/* icon */
.lp-form form .hs-submit .actions::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 9.5px;
  background-image:url('data:image/svg+xml;base64,ICAgICAgPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NSA5LjUiIGNsYXNzPSJsaW5rLWJ1dHRvbl9fYW5jaG9yX19zdmciPgogICAgICAgIDxwYXRoIGQ9Ik0tMTMuNDA3LjU0bDQxLjgyMS42ODUtNDEuODIxLjcxNloiIGZpbGw9IiNmZmYiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjQwNyAzLjUxMSkiIGNsYXNzPSJsaW5rLWJ1dHRvbl9fYW5jaG9yX19zdmdfX3BhdGgiLz4KICAgICAgICA8cGF0aCBkPSJNNTA4LjcwNywzNDU0LjNsLS45MTYtMS4wNjQsNC4yODYtMy43MTMtNC4yODItMy42NTMuOTA4LTEuMDcxLDUuNTI4LDQuNzE1WiIgZmlsbD0iI2ZmZiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTQ2OS4yMzEgLTM0NDQuODA0KSIgY2xhc3M9ImxpbmstYnV0dG9uX19hbmNob3JfX3N2Z19fcGF0aCIvPgogICAgICA8L3N2Zz4=');
  background-repeat: no-repeat;
  background-size: contain;
  transition: right .3s;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .lp-form form .hs-submit .actions::after {
    right: 20px;
    width: 63px;
    height: 12px;
  }
}
@media screen and (min-width: 1050px) {
  .lp-form form .hs-submit .actions:hover input {
    background: linear-gradient(100deg, #2F4294 0%, #3D69A7 100%);
  }
  .lp-form form .hs-submit .actions:hover::after {
    right: 15px;
  }
}

.hs_error_rollup {
  color: #CB0303;
  margin-top: 30px;rgb(113, 122, 162)
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .hs_error_rollup {
    font-size: 1.5rem;
  }
}
@charset "UTF-8";

/* news */
@media screen and (min-width: 768px) {
  .content--news-listing .section {
    margin-top: 90px;
  }
}
.content--news-post {
  padding-bottom: 5px;
}
@media screen and (min-width: 1050px) {
  .content--news-post {
    margin-top: 15px;
  }
}

.section.section--news-post {
  margin-top: 49px;
}
@media screen and (min-width: 768px) {
  .section.section--news-post {
    margin-top: 66px;
  }
}
.news-article__foot__back {
  margin-top: 60px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news-article__foot__back {
    margin-top: 80px;
  }
}

.news-article__foot__back__anchor {
  position: relative;
  padding-left: 38px;
  color: #3B4046;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.4;
  transition: color .3s;
}

.news-article__foot__back__anchor__icon {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 25px;
  height: 25px;
  background: linear-gradient(116deg, #172A88 0%, #2B69A7 100%);
  border-radius: 50%;
}
.news-article__foot__back__anchor__icon__svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 6px;
  height: 9px;
  transition: left .3s;
}
@media screen and (min-width: 1050px) {
  .news-article__foot__back__anchor:hover {
    color: #172A88;
  }
  .news-article__foot__back__anchor:hover .news-article__foot__back__anchor__icon {
    background: linear-gradient(116deg, #2F4294 0%, #3D69A7 100%);
  }
  .news-article__foot__back__anchor:hover .news-article__foot__back__anchor__icon__svg {
    left: calc(50% - 2px);
  }
}
/* === article / 記事詳細 */

.news-article {
  border-top: 1px solid #ABAEC1;
  padding-top: 14px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .news-article {
    padding-top: 24px;
  }
}
@media screen and (min-width: 1050px) {
  .news-article {
    padding-top: 26px;
  }
}
.news-article:before {
  content: "";
  background-color: #172A88;
  height: 1px;
  width: 100px;
  top: -1px;
  left: 0;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .news-article:before {
    width: 120px;
  }
}

.news-article__head__date {
  display: block;
  color: #172A88;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  letter-spacing: .1em;
  line-height: 1.5em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .news-article__head__date {
    font-size: 1.6rem;
  }
}

.news-article__head__heading {
  color: #1E242F;
  font-size: 2.0rem;
  letter-spacing: .1em;
  line-height: 1.5em;
  font-weight: 700;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .news-article__head__heading {
    font-size: 3.0rem;
  }
}

.news-article__head__category-list {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .news-article__head__category-list {
    margin-top: 25px;
  }
}

.news-article__head__category-list__item {
  display: inline-block;
  min-width: 100px;
  margin-right: 6px;
}

.news-article__head__category-list__item:not(:first-child) {
  margin-top: 0;
}

.news-article__head__category-list__item__anchor {
  display: block;
  background-color: #F7F9FC;
  color: #3B4046;
  font-size: 1.2rem;
  letter-spacing: .05em;
  text-align: center;
  padding: 6px 15px 5px;
  border-radius: 12px;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

@media screen and (min-width: 768px) {
  .news-article__head__category-list__item__anchor {
    padding: 7px 15px 6px;
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1050px) {
  .news-article__head__category-list__item__anchor:hover {
    color: #fff;
    background: linear-gradient(104deg, #172A88 0%, #2B69A7 100%);
  }
}
.news-article__head__category-list__item__anchor:hover {
  background-color: #E0DED6;
}

.news-article__head__thumbnail {
  margin-top: 25px;
  margin-bottom: 50px;
  margin-right: -20px;
  margin-left: -20px;
}

@media screen and (min-width: 768px) {
  .news-article__head__thumbnail {
    margin-left: 0;
    margin-right: 0;
    margin-top: 30px;
  }
}

.news-article__head__thumbnail img {
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
}

.news-article__body {
  margin-top: 45px !important;
}

/* news-article__body__content */
.news-article__body__content.natural {
  padding-bottom: 0.6em; /* 最後のコンテンツが微妙に切れてしまうため対策 */
}

.news-article__body__content h2, .news-article__body__summary__body h2 {
  font-size: 2.0rem;
  letter-spacing: .1em;
  line-height: 1.5em;
  font-weight: 700;
  color: #3B4046;
  background-color: #F7F9FC;
  border-left: 4px solid #172A88;
  padding: 13px 15px 13px;
}

@media screen and (min-width: 768px) {
  .news-article__body__content h2, .news-article__body__summary__body h2 {
    font-size: 2.5rem;
    border-left: 5px solid #172A88;
    padding: 9px 20px 9px 20px;
  }
}

.news-article__body__content h2:not(:first-child), .news-article__body__summary__body h2:not(:first-child) {
  margin-top: 50px;
}

@media screen and (min-width: 768px) {
  .news-article__body__content h2:not(:first-child), .news-article__body__summary__body h2:not(:first-child) {
    margin-top: 60px;
  }
}

.news-article__body__content h2:not(:last-child), .news-article__body__summary__body h2:not(:last-child) {
  margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
  .news-article__body__content h2:not(:last-child), .news-article__body__summary__body h2:not(:last-child) {
    margin-bottom: 30px;
  }
}

.news-article__body__content h3, .news-article__body__summary__body h3 {
  font-size: 1.8rem;
  letter-spacing: .1em;
  line-height: 1.875em;
  line-height: 1.875em;
  font-weight: 700;
  color: #3B4046;
  position: relative;
  padding-bottom: 4px;
  margin-top: -.5em;
}

.news-article__body__content h3::after, .news-article__body__summary__body h3::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.875) * .5em);
}

@media screen and (min-width: 768px) {
  .news-article__body__content h3, .news-article__body__summary__body h3 {
    font-size: 2.0rem;
  }
}

.news-article__body__content h3::after, .news-article__body__summary__body h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #172A88;
  border-bottom: 1px solid #172A88;
  height: 2px;
}

.news-article__body__content h3:not(:first-child), .news-article__body__summary__body h3:not(:first-child) {
  margin-top: 35px;
}

@media screen and (min-width: 768px) {
  .news-article__body__content h3:not(:first-child), .news-article__body__summary__body h3:not(:first-child) {
    margin-top: 40px;
  }
}

.news-article__body__content h3:not(:last-child), .news-article__body__summary__body h3:not(:last-child) {
  margin-bottom: 26px;
}

@media screen and (min-width: 768px) {
  .news-article__body__content h3:not(:last-child), .news-article__body__summary__body h3:not(:last-child) {
    margin-bottom: 25px;
  }
}

.news-article__body__content h4, .news-article__body__summary__body h4 {
  font-size: 1.7rem;
  letter-spacing: .1em;
  line-height: 1.5em;
  font-weight: 700;
  color: #3B4046;
  padding-left: 12px;
  border-left: 3px solid #172A88;
  margin-top: -.5em;
  margin-bottom: -.5em;
}
@media screen and (min-width: 768px) {
  .news-article__body__content h4, .news-article__body__summary__body h4 {
    font-size: 1.8rem;
  }
}

.news-article__body__content h4::before, .news-article__body__summary__body h4::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * .5em);
}

.news-article__body__content h4::after, .news-article__body__summary__body h4::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * .5em);
}

.news-article__body__content h4:not(:first-child), .news-article__body__summary__body h4:not(:first-child) {
  margin-top: 35px;
}

@media screen and (min-width: 768px) {
  .news-article__body__content h4:not(:first-child), .news-article__body__summary__body h4:not(:first-child) {
    margin-top: 40px;
  }
}

.news-article__body__content h4:not(:last-child), .news-article__body__summary__body h4:not(:last-child) {
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .news-article__body__content h4:not(:last-child), .news-article__body__summary__body h4:not(:last-child) {
    margin-bottom: 25px;
  }
}

.news-article__body__content p, .news-article__body__summary__body p {
  font-size: 1.5rem;
  letter-spacing: .1em;
  line-height: 2;
  color: #3B4046;
  margin-top: -.5em;
  margin-bottom: -.5em;
}

.news-article__body__content p::before, .news-article__body__summary__body p::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * .5em);
}

.news-article__body__content p::after, .news-article__body__summary__body p::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * .5em);
}

@media screen and (min-width: 768px) {
  .news-article__body__content p, .news-article__body__summary__body p {
    font-size: 1.6rem;
  }
}

.news-article__body__content p:not(:first-child), .news-article__body__summary__body p:not(:first-child) {
  margin-top: 20px;
}

.news-article__body__content p:not(:last-child), .news-article__body__summary__body p:not(:last-child) {
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .news-article__body__content p:not(:last-child), .news-article__body__summary__body p:not(:last-child) {
    margin-bottom: 30px;
  }
}

.news-article__body__content img, .news-article__body__summary__body img {
  display: block;
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .news-article__body__content img, .news-article__body__summary__body img {
    max-width: 500px;
  }
}

.news-article__body__content img:not(:first-child), .news-article__body__summary__body img:not(:first-child) {
  margin-top: 35px;
}

@media screen and (min-width: 768px) {
  .news-article__body__content img:not(:first-child), .news-article__body__summary__body img:not(:first-child) {
    margin-top: 40px;
  }
}

.news-article__body__content img:not(:last-child), .news-article__body__summary__body img:not(:last-child) {
  margin-bottom: 35px;
}

@media screen and (min-width: 768px) {
  .news-article__body__content img:not(:last-child), .news-article__body__summary__body img:not(:last-child) {
    margin-bottom: 40px;
  }
}

.news-article__body__summary {
  margin-top: 50px;
  border: 1px solid #ABAEC1;
  border-radius: 5px;
}

@media screen and (min-width: 768px) {
  .news-article__body__summary {
    margin-top: 60px;
  }
}

.news-article__body__summary__head {
  background-color: #F1F1ED;
  border-radius: 5px 5px 0 0;
  padding: 11px 20px 10px;
}

@media screen and (min-width: 768px) {
  .news-article__body__summary__head {
    padding: 14px 30px;
  }
}

.news-article__body__summary__head__heading {
  font-size: 1.8rem;
  letter-spacing: .2em;
  font-weight: 700;
  color: #3B4046;
}

@media screen and (min-width: 768px) {
  .news-article__body__summary__head__heading {
    font-size: 2.2rem;
  }
}

.news-article__body__summary__body {
  padding: 20px;
}

@media screen and (min-width: 768px) {
  .news-article__body__summary__body {
    padding: 30px;
  }
}

.news-article__body__cta__anchor {
  display: block;
}

.news-article__body__cta__content img {
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
  margin-left: auto;
  margin-right: auto;
}

.news-article__body__cta:not(:first-child) {
  margin-top: 60px;
}

@media screen and (min-width: 768px) {
  .news-article__body__cta:not(:first-child) {
    margin-top: 80px;
  }
}

.news-article__body__cta:not(:last-child) {
  margin-bottom: 60px;
}

@media screen and (min-width: 768px) {
  .news-article__body__cta:not(:last-child) {
    margin-bottom: 80px;
  }
}

.news-article__foot {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid #ABAEC1;
}

@media screen and (min-width: 768px) {
  .news-article__foot {
    margin-top: 80px;
  }
}

@media screen and (min-width: 768px) {
  .news-article__foot__nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -30px;
    margin-right: -30px;
  }
}

@media screen and (min-width: 768px) {
  .news-article__foot__nav__list__item {
    width: 50%;
    padding-left: 30px;
    padding-right: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.news-article__foot__nav__list__item--prev {
  margin-right: auto;
}

.news-article__foot__nav__list__item--next {
  margin-left: auto;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dotted #ABAEC1;
}

@media screen and (min-width: 768px) {
  .news-article__foot__nav__list__item--next {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    border-left: 1px dotted #ABAEC1;
  }
}

.news-article__foot__nav__list__item--next .news-article__foot__nav__list__item__heading {
  text-align: right;
}

.news-article__foot__nav__list__item__heading {
  color: #3B4046;
  font-size: 1.6rem;
  letter-spacing: .2em;
  font-weight: 700;
}

.news-article__foot__nav__list__item__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
}

.news-article__foot__nav__list__item__block__image {
  width: 100%;
  max-width: 110px;
}

@media screen and (min-width: 768px) {
  .news-article__foot__nav__list__item__block__image {
    max-width: 120px;
  }
}

.news-article__foot__nav__list__item__block__image img {
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
}

.news-article__foot__nav__list__item__block__heading {
  width: 100%;
  margin-left: 15px;
  font-size: 1.4rem;
  letter-spacing: .15em;
  line-height: 1.6em;
  font-weight: 500;
  -webkit-transition: color .3s;
  transition: color .3s;
}

@media screen and (min-width: 768px) {
  .news-article__foot__nav__list__item__block__heading {
    max-width: 210px;
  }
}

a:hover .news-article__foot__nav__list__item__block__heading {
  color: #1E242F;
}

.news-article__foot__back {
  margin-top: 56px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .news-article__foot__back {
    margin-top: 80px;
  }
}

.news-article__foot__back__anchor {
  color: #3B4046;
  font-size: 1.6rem;
  letter-spacing: .15em;
  line-height: 1.4em;
  font-weight: 500;
  position: relative;
  padding-left: 38px;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.news-article__foot__back__anchor__icon {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 25px;
  height: 25px;
}

.news-article__foot__back__anchor__icon__circle {
  fill: #3B4046;
  -webkit-transition: fill .3s;
  transition: fill .3s;
}

a:hover .news-article__foot__back__anchor__icon__circle {
  fill: #1E242F;
}
/* article / 記事詳細 === */


/* === archive / 記事一覧 */

.news-archive__menu {
  margin-bottom: 15px;
}

.news-archive__menu__laptop-wider__list {
  display: none;
}

@media screen and (min-width: 768px) {
  .news-archive__menu__laptop-wider__list {
    display: flex;
  }
}

.news-archive__menu__laptop-wider__list__item:not(:first-child) .news-archive__menu__laptop-wider__list__item__anchor {
  padding: 2px 20px;
  border-left: 1px dotted #ABAEC1;
}

.news-archive__menu__laptop-wider__list__item:hover {
  color: #1E242F;
}

.news-archive__menu__laptop-wider__list__item.is-current {
  color: #172A88;
}

.news-archive__menu__laptop-wider__list__item__anchor {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 2px 20px 2px 0;
  transition: color .3s;
  color: #3B4046;
}
@media screen and (max-width: 1049px) and (min-width: 768px) {
  .news-archive__menu__laptop-wider__list__item__anchor {
    min-width: 3.2em;
  }
  .news-archive__menu__laptop-wider__list__item__anchor:not(.all) {
    text-align: center;
  }
}

.news-archive__menu__laptop-wider__list__item__anchor.is-active {
  position: relative;
  color: #172A88;
  font-weight: 500;
}
.news-archive__menu__laptop-wider__list__item__anchor.is-active::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: -16px;
  width: calc(100% - 20px * 2);
  height: 4px;
  background-color: #172A88;
  transform: translateX(-50%);
  border-radius: 2px;
}
.news-archive__menu__laptop-wider__list__item__anchor.is-active.all::before {
  width: calc(100% - 20px);
  left: 0;
  transform: translateX(0);
}

@media screen and (min-width: 768px) {
  .news-archive__menu__palmtop {
    display: none;
  }
}

.news-archive__menu__palmtop__label {
  display: block;
  position: relative;
}

.news-archive__menu__palmtop__label__icon {
  position: absolute;
  top: calc(50% - 4px);
  right: 16px;
  width: 10px;
  height: 8px;
}

.news-archive__menu__palmtop__label__icon__arrow {
  fill: #3B4046;
}

.news-archive__menu__palmtop__label__select {
  display: block;
  outline: none;
  text-indent: 0.01px;
  text-overflow: '';
  background-image: none;
  background-color: #F7F9FC;
  vertical-align: middle;
  color: #414141;
  appearance: none;
  border: none;
  border-radius: 5px;
  width: 100%;
  font-size: 1.4rem;
  letter-spacing: .1em;
  padding: 10px 10px 10px 14px;
}

.news-archive__content__list {
  border-top: 1px dotted #ABAEC1;
  border-bottom: 1px dotted #ABAEC1;
}

.news-archive__content__list__item:not(:first-child) {
  border-top: 1px dotted #ABAEC1;
}

.news-archive__content__list__item__anchor {
  display: block;
  padding-top: 20px;
  padding-bottom: 27px;
}

@media screen and (min-width: 768px) {
  .news-archive__content__list__item__anchor {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}

@media screen and (min-width: 1050px) {
  .news-archive__content__list__item__anchor .news-archive__content__list__item__content__body .paragraph {
    font-weight: 400;
    color: #3B4046;
    transition: all .2s;
  }
  .news-archive__content__list__item__anchor:hover .news-archive__content__list__item__content__body .paragraph {
    color: #172A88;
    font-weight: 500;
  }
}

@media screen and (min-width: 768px) {
  .news-archive__content__list__item__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* .news-archive__content__list__item__content__head */
@media screen and (min-width: 768px) {
  .news-archive__content__list__item__content__head {
    display: flex;
    align-items: center;
  }
}

.news-archive__content__list__item__content__head__date {
  color: #172A88;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: .15em;
}
@media screen and (min-width: 768px) {
  .news-archive__content__list__item__content__head__date {
    font-size: 1.4rem;
  }
}

.news-archive__content__list__item__content__head__category-list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .news-archive__content__list__item__content__head__category-list {
    margin: 10px -5px 0;
  }
}
@media screen and (min-width: 768px) {
  .news-archive__content__list__item__content__head__category-list {
    flex: 1;
    margin-left: 20px;
  }
}

.news-archive__content__list__item__content__head__category-list__item {
  display: inline-block;
  box-sizing: border-box;
  min-width: 100px;
  margin: 5px;
  padding: 5px 15px;
  border-radius: 3px;
  background-color: #F7F9FC;
  font-size: 1.2rem;
  letter-spacing: .05em;
  text-align: center;
  color: #3B4046;
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  .news-archive__content__list__item__content__head__category-list__item {
    font-size: 1.3rem;
  }
}

.news-archive__content__list__item__content__body {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .news-archive__content__list__item__content__body {
    margin-top: 15px;
  }
}
.news-archive__content__list__item__content__body .paragraph {
  line-height: 1.8;
}

.news-archive__pager {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .news-archive__pager {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1050px) {
  .news-archive__pager {
    margin-top: 52px;
  }
}

.news-archive__pager__item:not(:first-child) {
  margin-left: 15px;
}

.news-archive__pager__item__anchor {
  display: block;
  font-size: 1.7rem;
  font-weight: 500;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  letter-spacing: .1em;
  color: #3B4046;
  padding-left: 5px;
  padding-right: 5px;
  -webkit-transition: color .3s;
  transition: color .3s;
}
@media screen and (min-width: 768px) {
  .news-archive__pager__item__anchor {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1050px) {
  .news-archive__pager__item__anchor:hover {
    color: #172A88;
  }
}

.news-archive__pager__item.is-current .news-archive__pager__item__anchor {
  color: #ABAEC1;
}

.news-archive__pager__item__anchor__icon {
  display: block;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .news-archive__pager__item__anchor__icon {
    width: 28px;
    height: 28px;
  }
}

.news-archive__pager__item__anchor--prev,
.news-archive__pager__item__anchor--next {
  position: relative;
}
.news-archive__pager__item__anchor--prev::before,
.news-archive__pager__item__anchor--next::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-image:url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2IiBoZWlnaHQ9IjkiIHZpZXdCb3g9IjAgMCA2IDkiPgogIDxwYXRoIGlkPSLjg5HjgrlfNzcxOSIgZGF0YS1uYW1lPSLjg5HjgrkgNzcxOSIgZD0iTTUxMi45NjMsMzQ1My44bC44MzgtMS4wNDQtMy45NjQtMy40OCwzLjk2LTMuNDI1LS44MzEtMS4wNTEtNS4xNjUsNC40NjhaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTA3LjgwMiAtMzQ0NC43OTYpIiBmaWxsPSIjZmZmIi8+Cjwvc3ZnPg==');
  background-repeat: no-repeat;
  background-size: contain;
  width: 6px;
  height: 8px;
  transition: left .3s;
}
@media screen and (min-width: 768px) {
  .news-archive__pager__item__anchor--prev::before,
  .news-archive__pager__item__anchor--next::before {
    width: 8px;
    height: 10px;
  }
}
.news-archive__pager__item__anchor--next::before {
  transform: translate(-50%,-50%) rotate(180deg);
}
@media screen and (min-width: 1050px) {
  .news-archive__pager__item__anchor--next:hover::before {
    left: calc(50% + 2px);
  }
  .news-archive__pager__item__anchor--prev:hover::before {
    left: calc(50% - 2px);
  }
}
/* archive / 記事一覧 === */

/* サイト全体で共通のエレメント */
@charset "utf-8";

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


/* カラム */

@media screen and (min-width: 768px) {
  .columns {
    display: flex;
    flex-wrap: wrap;
    margin-right: -25px;
    margin-left: -25px;
  }
  .columns__column {
    box-sizing: border-box;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.columns__column:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .columns__column:not(:first-child) {
    margin-top: 0;
  }
}
.columns__column:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .columns__column:not(:last-child) {
    margin-bottom: 0;
  }
}

.columns--one > .columns__column.margin-top-heading-2:nth-child(n+2) {
  margin-top: 100px;
}
@media screen and (max-width:767px) {
  .columns--one > .columns__column.margin-top-heading-2:nth-child(n+2) {
    margin-top: 80px;
  }
}

@media screen and (min-width:768px) {
  .columns--two > .columns__column.margin-top-heading-2:nth-child(n+3) {
    margin-top: 100px;
  }
}
@media screen and (max-width:767px) {
  .columns--two > .columns__column.margin-top-heading-2:not(:first-child) {
    margin-top: 80px;
  }
}

.columns--two > .columns__column.margin-top-heading-3:nth-child(n+3) {
  margin-top: 60px;
}
@media screen and (max-width:767px) {
  .columns--two > .columns__column.margin-top-heading-3:nth-child(n+2) {
    margin-top: 50px;
  }
}


.columns__column.margin-top-heading-4 {
  margin-top: 50px;
}
@media screen and (max-width:767px) {
  .columns__column.margin-top-heading-4 {
    margin-top: 40px;
  }
}

.columns__column.margin-top-heading-5 {
  margin-top: 40px;
}
@media screen and (max-width:767px) {
  .columns__column.margin-top-heading-5 {
    margin-top: 30px
  }
}

.columns__column {
  box-sizing: border-box;
  padding-right: 25px;
  padding-left: 25px;
}

.columns .columns__column {
  padding-right: 25px;
  padding-left: 25px;
}
@media screen and (max-width:767px) {
  .columns .columns__column {
    padding-left: 0;
    padding-right: 0;
  }
}

.columns--one > .columns__column:nth-child(n+2),
.columns--one-two > .columns__column:nth-child(n+3),
.columns--two-one > .columns__column:nth-child(n+3),
.columns--four > .columns__column:nth-child(n+5) {
  margin-top: 50px;
}

.columns--one > .columns__column {
  float: none;
  width: 100%
}
@media screen and (max-width:767px) {
  .columns--one {
    margin-right: 0;
    margin-left: 0;
  }
}

.columns--two > .columns__column {
  width: 50%
}
.columns--two > .columns__column:nth-child(n+3){
  margin-top: 50px;
}
@media screen and (max-width:767px) {
  .columns--two {
    margin-right: 0;
    margin-left: 0;
  }
  .columns--two > .columns__column {
    flex: auto;
    width: 100%;
    padding: 0;
  }
  .columns--two > .columns__column:not(:first-child) {
    margin-top: 30px;
  }
  .columns--two > .columns__column:not(:last-child) {
    margin-bottom: 0;
  }
}
@media screen and (max-width:1049px) {
  .columns--two.columns--to-two {
    margin-right: -15px;
    margin-left: -15px;
  }
  .columns--two.columns--to-two > .columns__column {
    flex: none;
    width: 50%;
    padding-right: 15px;
    padding-left: 15px;
  }
  .columns--two.columns--to-two > .columns__column:not(:first-child) {
    margin-top: 0;
  }
  .columns--two.columns--to-two > .columns__column:nth-child(n+3) {
    margin-top: 30px;
  }
}

.columns--three > .columns__column:nth-child(n+4) {
  margin-top: 50px;
}


/* 1:2カラム */
.columns--one-two {
  margin-right: -25px;
  margin-left: -25px;
}
@media screen and (max-width: 1049px) {
  .columns--one-two {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media screen and (max-width:767px) {
  .columns--one-two {
    margin-left: 0;
    margin-right: 0;
  }
}

.columns--one-two > .columns__column {
  padding-right: 25px;
  padding-left: 25px;
}
@media screen and (max-width: 1049px) {
  .columns--one-two > .columns__column {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width:767px) {
  .columns--one-two > .columns__column {
    flex: auto;
    width: 100%;
    padding: 0;
  }
}

.columns--one-two > .columns__column:nth-child(odd) {
  flex: 1;
}
.columns--one-two > .columns__column:nth-child(even) {
  flex: 2;
}
@media screen and (max-width:767px) {
  .columns--one-two > .columns__column:nth-child(2) {
    margin-top: 20px;
  }
}

/* 2:1カラム */
.columns--two-one > .columns__column:nth-child(1) {
  flex: 2;
}
.columns--two-one > .columns__column:nth-child(2) {
  flex: 1;
}
@media screen and (max-width:767px) {
  .columns--two-one {
    margin-left: 0;
    margin-right: 0;
  }
  .columns--two-one > .columns__column {
    flex: auto;
    width: 100%;
    padding: 0;
  }
  .columns--two-one > .columns__column:nth-child(2) {
    margin-top: 30px;
  }
}

/* 3:1カラム */
.columns--three-one > .columns__column:nth-child(1) {
  flex: 3;
}
.columns--three-one > .columns__column:nth-child(2) {
  flex: 1;
}
@media screen and (max-width:767px) {
  .columns--three-one {
    margin-right: 0;
    margin-left: 0;
  }
  .columns--three-one > .columns__column {
    flex: auto;
    width: 100%;
    padding: 0;
  }
  .columns--three-one > .columns__column:nth-child(2) {
    margin-top: 30px;
  }
}

/* 1:3カラム */
.columns--one-three {
  margin-bottom: 0;
}
.columns--one-three > .columns__column:nth-child(odd) {
  flex: 1;
}
.columns--one-three > .columns__column:nth-child(even) {
  flex: 3;
}
@media screen and (max-width:767px) {
  .columns--one-three {
    margin-right: 0;
    margin-left: 0;
  }
  .columns--one-three > .columns__column {
    flex: auto;
    width: 100%;
    padding: 0;
  }
  .columns--one-three > .columns__column:nth-child(2) {
    margin-top: 30px;
  }
}

/* 3カラム */
.columns--three > .columns__column {
  width: 33.333%;
}
@media screen and (max-width:1049px) {
  .columns--three > .columns__column {
    width: 50%;
  }
  .columns--three > .columns__column:not(:nth-child(1)),
  .columns--three > .columns__column:not(:nth-child(2)) {
    margin-top: 0;
  }
  .columns--three > .columns__column:not(:nth-last-child(-n+2)) {
    margin-bottom: 50px;
  }
}
@media screen and (max-width:767px) {
  .columns--three > .columns__column {
    flex: auto;
    width: 100%;
  }
  .columns--three > .columns__column:not(:first-child) {
    margin-top: 30px;
  }
  .columns--three > .columns__column:not(:last-child) {
    margin-bottom: 0;
  }
  .columns--three.columns--to-two > .columns__column {
    flex: inherit;
  }
}
@media screen and (max-width:1049px) {
  .columns--three.columns--to-one > .columns__column {
    width: 50%;
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media screen and (max-width:767px) {
  .columns--three.columns--to-one > .columns__column {
    width: 100%;
  }
}
@media screen and (max-width:767px) {
  .columns--three.columns--to-two {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .columns--three.columns--to-two > .columns__column {
    width: 50%;
    padding-right: 15px;
    padding-left: 15px;
  }
  .columns--three.columns--to-two > .columns__column:not(:first-child) {
    margin-top: 0;
  }
  .columns--three.columns--to-two > .columns__column:nth-child(n+3) {
    margin-top: 30px;
  }
  .columns--three.columns--to-two > .columns__column {
    flex: inherit;
  }
}

/* 4カラム */
.columns.columns--four {
  margin-right: -15px;
  margin-left: -15px;
}
.columns--four>.columns__column {
  width: 25%;
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (max-width:1049px) {
  .columns--four.columns--to-one > .columns__column,
  .columns--four.columns--to-two > .columns__column {
    width: 50%;
  }
  .columns--four.columns--to-one > .columns__column:nth-child(n+3) {
    margin-top: 30px;
  }
  .columns--four.columns--to-two > .columns__column:nth-child(n+3) {
    margin-top: 40px;
  }
}
@media screen and (max-width:767px) {
  .columns--four.columns--to-one {
    margin-right: 0;
    margin-left: 0;
  }

  .columns--four.columns--to-one > .columns__column {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  .columns--four.columns--to-one > .columns__column:nth-child(n+2) {
    margin-top: 30px;
  }

  .columns--four.columns--to-two {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .columns--four.columns--to-two > .columns__column {
    width: 50%;
    padding-right: 15px;
    padding-left: 15px;
  }
  .columns--four.columns--to-two > .columns__column {
    width: 50%;
  }
  .columns--four.columns--to-two > .columns__column:not(:first-child) {
    margin-top: 0;
  }
  .columns--four.columns--to-two > .columns__column:not(:last-child) {
    margin-bottom: 0;
  }
  .columns--four.columns--to-two > .columns__column:nth-child(n+3) {
    margin-top: 30px;
  }
}


.columns--reverse > .columns__column:nth-child(1) {
  order: 2;
}
@media screen and (max-width:767px) {
  .columns--reverse > .columns__column:nth-child(1) {
    order: 1;
  }
}
.columns--reverse > .columns__column:nth-child(2) {
  order: 1;
}
@media screen and (max-width:767px) {
  .columns--reverse > .columns__column:nth-child(2) {
    order: 2;
  }
}
.columns--vertical-center {
  align-items: center;
}


/* img＋textbutton（heading）＋p */
.text-button-heading-columns:not(:last-child) {
  margin-bottom: 50px;
}


/* -------   2:1 1:2などのスタイル   ------- */
@media screen and (min-width: 768px) {
  .l_h2_gt_r_img .columns,
  .l_h2_r_img .columns,
  .l_h3_gt_r_img .columns,
  .l_h3_r_img .columns,
  .l_img_lt_r_h2 .columns,
  .l_img_lt_r_h3 .columns,
  .l_img_r_h2 .columns,
  .l_img_r_h3 .columns {
    flex-wrap: nowrap;
  }
}

.l_h2_gt_r_img .columns__column,
.l_h2_r_img .columns__column,
.l_h3_gt_r_img .columns__column,
.l_h3_r_img .columns__column,
.l_img_lt_r_h2 .columns__column,
.l_img_lt_r_h3 .columns__column,
.l_img_r_h2 .columns__column,
.l_img_r_h3 .columns__column {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .l_h2_gt_r_img .columns__column,
  .l_h2_r_img .columns__column,
  .l_h3_gt_r_img .columns__column,
  .l_h3_r_img .columns__column,
  .l_img_lt_r_h2 .columns__column,
  .l_img_lt_r_h3 .columns__column,
  .l_img_r_h2 .columns__column,
  .l_img_r_h3 .columns__column {
    width: 100%;
  }
}

.l_h2_gt_r_img {
  margin-top: 40px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l_h2_gt_r_img {
    margin-top: 55px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 768px) {
  .l_h2_gt_r_img .columns__column:nth-child(1) {
    order: 2;
    width: 365px;
  }
}

@media screen and (min-width: 768px) {
  .l_h2_gt_r_img .columns__column:nth-child(2) {
    order: 1;
    width: 740px;
  }
}

.l_h2_gt_r_img .heading-2 {
  margin-top: 0;
  margin-bottom: 0;
}

.l_h2_gt_r_img .heading-2:not(:first-child) {
  margin-top: 0;
}

.l_h2_gt_r_img .heading-2:not(:last-child) {
  margin-bottom: 20px;
}

.l_h2_gt_r_img .paragraph {
  margin-top: 0;
  margin-bottom: 0;
}

.l_h2_gt_r_img .paragraph:not(:first-child) {
  margin-top: 10px;
}

.l_h2_gt_r_img .paragraph:not(:last-child) {
  margin-bottom: 25px;
}

.l_h2_gt_r_img .link-button {
  margin-top: 0;
  margin-bottom: 0;
}
.l_h2_gt_r_img .link-button:not(:first-child) {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .l_h2_gt_r_img .link-button:not(:first-child) {
    margin-top: 40px;
  }
}
.l_h2_gt_r_img .link-button:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l_h2_gt_r_img .link-button:not(:last-child) {
    margin-bottom: 40px;
  }
}

/* l_h2_r_img */
.l_h2_r_img {
  margin-top: 40px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l_h2_r_img {
    margin-top: 80px;
    margin-bottom: 45px;
  }
}
@media screen and (min-width: 768px) {
  .l_h2_r_img .columns__column:nth-child(1) {
    order: 2;
  }
  .l_h2_r_img .columns__column:nth-child(2) {
    order: 1;
  }
}

.l_h2_r_img .heading-2 {
  margin-top: 0;
  margin-bottom: 0;
}
.l_h2_r_img .heading-2:not(:first-child) {
  margin-top: 0;
}
.l_h2_r_img .heading-2:not(:last-child) {
  margin-bottom: 20px;
}

.l_h2_r_img .paragraph {
  margin-top: 0;
  margin-bottom: 0;
}
.l_h2_r_img .paragraph:not(:first-child) {
  margin-top: 20px;
}
.l_h2_r_img .paragraph:not(:last-child) {
  margin-bottom: 20px;
}

.l_h2_r_img .link-button {
  margin-top: 0;
  margin-bottom: 0;
}
.l_h2_r_img .link-button:not(:first-child) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .l_h2_r_img .link-button:not(:first-child) {
    margin-top: 40px;
  }
}
.l_h2_r_img .link-button:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l_h2_r_img .link-button:not(:last-child) {
    margin-bottom: 40px;
  }
}

/* l_h3_gt_r_img */
.l_h3_gt_r_img {
  margin-top: 40px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l_h3_gt_r_img {
    margin-top: 55px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  .l_h3_gt_r_img .columns__column:nth-child(1) {
    order: 2;
    width: 365px;
  }
  .l_h3_gt_r_img .columns__column:nth-child(2) {
    order: 1;
    width: 740px;
  }
}

.l_h3_gt_r_img .heading-3 {
  margin-top: 0;
  margin-bottom: 0;
}
.l_h3_gt_r_img .heading-3:not(:first-child) {
  margin-top: 0;
}
.l_h3_gt_r_img .heading-3:not(:last-child) {
  margin-bottom: 20px;
}

.l_h3_gt_r_img .paragraph {
  margin-top: 0;
  margin-bottom: 0;
}
.l_h3_gt_r_img .paragraph:not(:first-child) {
  margin-top: 10px;
}
.l_h3_gt_r_img .paragraph:not(:last-child) {
  margin-bottom: 25px;
}

.l_h3_gt_r_img .link-button {
  margin-top: 0;
  margin-bottom: 0;
}
.l_h3_gt_r_img .link-button:not(:first-child) {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .l_h3_gt_r_img .link-button:not(:first-child) {
    margin-top: 40px;
  }
}
.l_h3_gt_r_img .link-button:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l_h3_gt_r_img .link-button:not(:last-child) {
    margin-bottom: 40px;
  }
}

/* l_h3_r_img */
.l_h3_r_img {
  margin-top: 40px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l_h3_r_img {
    margin-top: 55px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  .l_h3_r_img .columns__column:nth-child(1) {
    order: 2;
  }
  .l_h3_r_img .columns__column:nth-child(2) {
    order: 1;
  }
}

.l_h3_r_img .heading-3 {
  margin-top: 0;
  margin-bottom: 0;
}
.l_h3_r_img .heading-3:not(:first-child) {
  margin-top: 0;
}
.l_h3_r_img .heading-3:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .l_h3_r_img .heading-3:not(:last-child) {
    margin-bottom: 20px;
  }
}

.l_h3_r_img .paragraph {
  margin-top: 0;
  margin-bottom: 0;
}
.l_h3_r_img .paragraph:not(:first-child) {
  margin-top: 10px;
}
.l_h3_r_img .paragraph:not(:last-child) {
  margin-bottom: 25px;
}

.l_h3_r_img .link-button {
  margin-top: 0;
  margin-bottom: 0;
}
.l_h3_r_img .link-button:not(:first-child) {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .l_h3_r_img .link-button:not(:first-child) {
    margin-top: 40px;
  }
}
.l_h3_r_img .link-button:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l_h3_r_img .link-button:not(:last-child) {
    margin-bottom: 40px;
  }
}

/* l_img_lt_r_h2 */
.l_img_lt_r_h2 {
  margin-top: 40px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l_img_lt_r_h2 {
    margin-top: 55px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 768px) {
  .l_img_lt_r_h2 .columns__column:nth-child(1) {
    order: 1;
    width: 365px;
  }
  .l_img_lt_r_h2 .columns__column:nth-child(2) {
    order: 2;
    width: 740px;
  }
}

.l_img_lt_r_h2 .heading-2 {
  margin-top: 0;
  margin-bottom: 0;
}
.l_img_lt_r_h2 .heading-2:not(:first-child) {
  margin-top: 0;
}
.l_img_lt_r_h2 .heading-2:not(:last-child) {
  margin-bottom: 20px;
}

.l_img_lt_r_h2 .paragraph {
  margin-top: 0;
  margin-bottom: 0;
}
.l_img_lt_r_h2 .paragraph:not(:first-child) {
  margin-top: 10px;
}
.l_img_lt_r_h2 .paragraph:not(:last-child) {
  margin-bottom: 25px;
}

.l_img_lt_r_h2 .link-button {
  margin-top: 0;
  margin-bottom: 0;
}
.l_img_lt_r_h2 .link-button:not(:first-child) {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .l_img_lt_r_h2 .link-button:not(:first-child) {
    margin-top: 40px;
  }
}
.l_img_lt_r_h2 .link-button:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l_img_lt_r_h2 .link-button:not(:last-child) {
    margin-bottom: 40px;
  }
}

/* l_img_lt_r_h3 */
.l_img_lt_r_h3 {
  margin-top: 40px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l_img_lt_r_h3 {
    margin-top: 55px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 768px) {
  .l_img_lt_r_h3 .columns__column:nth-child(1) {
    order: 1;
    width: 365px;
  }
  .l_img_lt_r_h3 .columns__column:nth-child(2) {
    order: 2;
    width: 740px;
  }
}

.l_img_lt_r_h3 .heading-3 {
  margin-top: 0;
  margin-bottom: 0;
}
.l_img_lt_r_h3 .heading-3:not(:first-child) {
  margin-top: 0;
}
.l_img_lt_r_h3 .heading-3:not(:last-child) {
  margin-bottom: 20px;
}

.l_img_lt_r_h3 .paragraph {
  margin-top: 0;
  margin-bottom: 0;
}
.l_img_lt_r_h3 .paragraph:not(:first-child) {
  margin-top: 10px;
}
.l_img_lt_r_h3 .paragraph:not(:last-child) {
  margin-bottom: 25px;
}

.l_img_lt_r_h3 .link-button {
  margin-top: 0;
  margin-bottom: 0;
}
.l_img_lt_r_h3 .link-button:not(:first-child) {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .l_img_lt_r_h3 .link-button:not(:first-child) {
    margin-top: 40px;
  }
}
.l_img_lt_r_h3 .link-button:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l_img_lt_r_h3 .link-button:not(:last-child) {
    margin-bottom: 40px;
  }
}

/* l_img_r_h2 */
.l_img_r_h2 {
  margin-top: 40px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l_img_r_h2 {
    margin-top: 80px;
    margin-bottom: 45px;
  }
}

@media screen and (min-width: 768px) {
  .l_img_r_h2 .columns__column:nth-child(1) {
    order: 1;
  }
  .l_img_r_h2 .columns__column:nth-child(2) {
    order: 2;
  }
}

.l_img_r_h2 .heading-2 {
  margin-top: 0;
  margin-bottom: 0;
}
.l_img_r_h2 .heading-2:not(:first-child) {
  margin-top: 0;
}
.l_img_r_h2 .heading-2:not(:last-child) {
  margin-bottom: 20px;
}

.l_img_r_h2 .paragraph {
  margin-top: 0;
  margin-bottom: 0;
}
.l_img_r_h2 .paragraph:not(:first-child) {
  margin-top: 20px;
}
.l_img_r_h2 .paragraph:not(:last-child) {
  margin-bottom: 20px;
}

.l_img_r_h2 .link-button {
  margin-top: 0;
  margin-bottom: 0;
}
.l_img_r_h2 .link-button:not(:first-child) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .l_img_r_h2 .link-button:not(:first-child) {
    margin-top: 40px;
  }
}
.l_img_r_h2 .link-button:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l_img_r_h2 .link-button:not(:last-child) {
    margin-bottom: 40px;
  }
}

/* l_img_r_h3 */
.l_img_r_h3 {
  margin-top: 40px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l_img_r_h3 {
    margin-top: 55px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 768px) {
  .l_img_r_h3 .columns__column:nth-child(1) {
    order: 1;
  }
  .l_img_r_h3 .columns__column:nth-child(2) {
    order: 2;
  }
}

.l_img_r_h3 .heading-3 {
  margin-top: 0;
  margin-bottom: 0;
}
.l_img_r_h3 .heading-3:not(:first-child) {
  margin-top: 0;
}
.l_img_r_h3 .heading-3:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .l_img_r_h3 .heading-3:not(:last-child) {
    margin-bottom: 20px;
  }
}

.l_img_r_h3 .paragraph {
  margin-top: 0;
  margin-bottom: 0;
}
.l_img_r_h3 .paragraph:not(:first-child) {
  margin-top: 10px;
}
.l_img_r_h3 .paragraph:not(:last-child) {
  margin-bottom: 25px;
}

.l_img_r_h3 .link-button {
  margin-top: 0;
  margin-bottom: 0;
}
.l_img_r_h3 .link-button:not(:first-child) {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .l_img_r_h3 .link-button:not(:first-child) {
    margin-top: 40px;
  }
}
.l_img_r_h3 .link-button:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .l_img_r_h3 .link-button:not(:last-child) {
    margin-bottom: 40px;
  }
}
@charset "UTF-8";

/* コンテナ */

.container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: calc(1050px + 20px * 2);
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}

@media screen and (min-width: 768px) {
  .container {
    max-width: calc(1050px + 50px * 2);
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media screen and (min-width: 1050px) {
  .container {
    max-width: calc(1050px + 100px * 2);
    padding-right: 100px;
    padding-left: 100px;
  }
}

.container--full {
  max-width: none;
}
/* ==========================================================================

	entry-button

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


.entry-button:not(:last-child) {
  margin-top: ;
  margin-bottom: ;

}
@media screen and (min-width: 768px) {
  .entry-button:not(:last-child) {
    margin-top: ;
    margin-bottom: ;
  }
}

.entry-button.rich-button-center {
  text-align: center;
}
.entry-button a {
  display: block;
  box-sizing: border-box;
  position: relative;
  min-width: inherit;
  max-width: 450px;
  margin: 0 auto;
  padding: 1.8rem 9rem 1.8rem 3rem;
  background: linear-gradient(90deg, #172A88 0%, #2B69A7 100%);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .12em;
  line-height: 1.5;
  text-align: left;
  transition: .5s;
  border-radius: 3.8rem;
}
@media screen and (min-width: 768px) {
  .entry-button a {
    display: inline-block;
    min-width: 450px;
    padding: 15px 130px 15px 40px;
    font-size: 2rem;
  }
}
@media screen and (min-width: 1050px) {
  .entry-button a:hover {
    background: linear-gradient(90deg, #2F4294 0%, #3D69A7 100%);
  }
}
.entry-button.is-active a {
  pointer-events: inherit;
}

.entry-button a::before {
  content: attr(data-entry);
  display: block;
  width: 100%;
  margin-bottom: .5rem;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  transition: .5s;
  opacity: .7;
}
@media screen and (min-width: 768px) {
  .entry-button a::before {
    margin-bottom: 0;
    font-size: 1.4rem;
  }
}
.entry-button a::after {
  content: "";
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4.5rem;
  height: .95rem;
  background-image:url('data:image/svg+xml;base64,ICAgICAgPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NSA5LjUiIGNsYXNzPSJsaW5rLWJ1dHRvbl9fYW5jaG9yX19zdmciPgogICAgICAgIDxwYXRoIGQ9Ik0tMTMuNDA3LjU0bDQxLjgyMS42ODUtNDEuODIxLjcxNloiIGZpbGw9IiNmZmYiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjQwNyAzLjUxMSkiIGNsYXNzPSJsaW5rLWJ1dHRvbl9fYW5jaG9yX19zdmdfX3BhdGgiLz4KICAgICAgICA8cGF0aCBkPSJNNTA4LjcwNywzNDU0LjNsLS45MTYtMS4wNjQsNC4yODYtMy43MTMtNC4yODItMy42NTMuOTA4LTEuMDcxLDUuNTI4LDQuNzE1WiIgZmlsbD0iI2ZmZiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTQ2OS4yMzEgLTM0NDQuODA0KSIgY2xhc3M9ImxpbmstYnV0dG9uX19hbmNob3JfX3N2Z19fcGF0aCIvPgogICAgICA8L3N2Zz4=');
  background-repeat: no-repeat;
  background-size: contain;
  transition: right .3s;
}
@media screen and (min-width: 768px) {
  .entry-button a::after {
    right: 2rem;
    width: 6.3rem;
    height: 1.2rem;
  }
}
@media screen and (min-width: 1050px) {
  .entry-button a:hover::after {
    right: 1.5rem;
  }
}

.entry-button .entry-button__icon {
  position: absolute;
  top: calc(50% - 14px);
  right: 24px;
  width: 24px;
  height: 24px;
  transition: .5s;
}
@media screen and (min-width: 768px) {
  .entry-button .entry-button__icon {
    right: 20px;
    width: 28px;
    height: 28px;
  }
}
.entry-button .entry-button__icon__circle {
  fill: #ffffff;
}
.entry-button .entry-button__icon__path {
  fill: #3B4046;
}
/* ==========================================================================

    figure

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


.section-image-caption {
	margin-bottom: 40px;
	margin-top: 40px;
}
@media screen and (max-width: 767px) {
	.section-image-caption {
		margin-bottom: 25px;
		margin-top: 25px;
	}
}
.section-image-caption figure img {
  border-radius: 5px;
}





.figure:not(:first-child) {
	margin-top: 60px;
}
@media screen and (max-width: 767px) {
	.figure:not(:first-child) {
		margin-top: 30px;
	}
}

.figure {
	text-align: center;
	margin: 0 auto;
}

.figure img {
	max-width: 100%;
	height: auto;
}
@media screen and (max-width: 767px) {
	.figure img {
		max-width: 100% !important;
	}
}

.figcaption {
  margin-top: 15px;
	font-size: 1.4rem;
	letter-spacing: .1em;
	line-height: 1.5;
	text-align: left;
  color: #3B4046;
}
.section-image-caption .figcaption {
  letter-spacing: .1em;
}
@media screen and (max-width: 767px) {
  .section-image-caption .figcaption {
    font-size: 1.2rem;
  }
}
.figure.figure--smallbottom:not(:last-child) {
	margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
	.figure.figure--smallbottom:not(:last-child) {
		margin-bottom: 25px;
	}
}
@charset "UTF-8";

/* 見出し */

.heading-1 {
  font-size: 38px;
  font-weight: bold;
  letter-spacing: 0.3em;
  line-height: 1.4;
}
@charset "UTF-8";

/* h2 */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/







.section-heading2 {
  margin-top: 60px;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .section-heading2 {
    margin-top: 80px;
    margin-bottom: 45px;
  }
}

.heading-2 {
  margin-top: 60px;
  margin-bottom: 25px;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .heading-2 {
    margin-top: 80px;
    margin-bottom: 45px;
    font-size: 2.8rem;
  }
}
.heading-2:first-child {
  margin-top: 0;
}
.heading-2:last-child {
  margin-bottom: 0;
}

.heading-2::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * .5em);;
}
.heading-2::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * .5em);;
}

/*
  === child elements in modules
  モジュール内に配置する際のエレメントスタイルとは異なる場合のスタイル
*/
.heading-2.heading--child {
  margin-top: 25px;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .heading-2.heading--child {
    margin-top: 35px;
    margin-bottom: 30px;
  }
}
.heading-2.heading--child:first-child {
  margin-top: 0;
}
.heading-2.heading--child:last-child {
  margin-bottom: 0;
}
.heading-2.heading--child + * {
  margin-top: 0;
}
/* child elements in modules === */
.heading-2__deco {
  position: relative;
  display: block;
  width: fit-content;
  margin-bottom: .8rem;
  padding-left: 2.4rem;
  color: #172A88;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: .15em;
  line-height: 1.5;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .heading-2__deco {
    margin-bottom: .6rem;
    font-size: 1.4rem;
  }
}
.text-center .heading-2__deco {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-bottom: 12px;
}
.text-right .heading-2__deco {
  margin-left: auto;
}

.heading-2__deco::before {
  content: "";
  display: block;
  position: absolute;
  top: .8em;
  left: 0;
  transform: translateY(-50%);
  height: .8rem;
  width: 1.6rem;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTYiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDE2IDgiPgogIDxkZWZzPgogICAgPGNsaXBQYXRoIGlkPSJjbGlwLXBhdGgiPgogICAgICA8cmVjdCBpZD0i6ZW35pa55b2iXzEyMzIyIiBkYXRhLW5hbWU9IumVt+aWueW9oiAxMjMyMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjgiIGZpbGw9Im5vbmUiLz4KICAgIDwvY2xpcFBhdGg+CiAgPC9kZWZzPgogIDxnIGlkPSLjgrDjg6vjg7zjg5dfMTI3ODQiIGRhdGEtbmFtZT0i44Kw44Or44O844OXIDEyNzg0IiBjbGlwLXBhdGg9InVybCgjY2xpcC1wYXRoKSI+CiAgICA8cGF0aCBpZD0i44OR44K5Xzc3MTciIGRhdGEtbmFtZT0i44OR44K5IDc3MTciIGQ9Ik00LjIxOCw3Ljk4N2ExLjcyNSwxLjcyNSwwLDAsMS0xLjI4Ni0uNTM4QTEuNiwxLjYsMCwwLDEsMi40NjUsNi4xYTEuODgsMS44OCwwLDAsMSwuNDI3LS45NzdjLjY4Ny0uODMyLDIuMzQxLTIuMzUsMi42MzQtMi42OTEuMS0uMTExLjY3NC0uNjg5LjM3Ny0xLjAyNy0uMzUxLS40LTEuMDY2LjMyNi0xLjA2Ni4zMjZMLjgxNCw1LjUsMCw0LjY1MSw0LjQxOS40YTEuNzM3LDEuNzM3LDAsMCwxLC42Mi0uMzMxLDEuNjkxLDEuNjkxLDAsMCwxLDEuNTUuM0ExLjc2MiwxLjc2MiwwLDAsMSw3LjIyOCwxLjcsMS45NSwxLjk1LDAsMCwxLDYuNjgsMi45NDljLS4yNjYuMjc5LTIuMDksMi4yOS0yLjQ3OCwyLjY5LS40LjQyNy0uNTA2LjczOS0uMywxLjAyLjIxMy4yNTUuNjE0LjEyNywxLjAzOC0uMjM2QzUuMzcxLDUuOTUsOS4wMjksMi4zNDcsMTAuNjkuN0ExLjg3MywxLjg3MywwLDAsMSwxMS4yNS4zMTFhMS42MzcsMS42MzcsMCwwLDEsMS44NjUuMzc1Yy42ODIuODA2LjcxNSwxLjYyOS0uNTMxLDIuOTYyLS41NDQuNTU5LTEuNywxLjc5My0yLjE5MSwyLjMyN2EuNDI3LjQyNywwLDAsMC0uMDQ1LjYxNy40NjkuNDY5LDAsMCwwLC42Ny0uMDU4bDQuMS00LjEwN0wxNiwzLjMxMXMtMy4wNjIsMy4yMzYtNC4xOSw0LjJhMS44ODIsMS44ODIsMCwwLDEtMi40ODUuMDIzLDEuNjQ4LDEuNjQ4LDAsMCwxLS4yODUtMS42LDIuNDcsMi40NywwLDAsMSwuNjEtLjk4NmMuNDkxLS41LDEuNjUzLTEuNjg4LDIuMTY0LTIuMjE3LjY0OS0uNjg0LjYxMi0xLjAwOS40MjMtMS4yLS4zOTEtLjM3OC0xLjE0OS41NDEtMS4xNDkuNTQxQzkuODQ4LDMuMyw2LjM3MSw2Ljc0OCw1Ljk0Myw3LjIyMWEyLjQsMi40LDAsMCwxLTEuNzA4Ljc3WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAwKSIgZmlsbD0iIzE3MmE4OCIvPgogIDwvZz4KPC9zdmc+');
  background-repeat: no-repeat;
  background-size: contain;
}

.heading-2__inner {
  letter-spacing: .08em;
}

.text-center .heading-2__deco::before {
  left: 50%;
  top: auto;
  bottom: 0;
  transform: translateX(-50%);
}

.heading-2--reverse {
  color: #ffffff;
}
.heading-2--reverse .heading-2__deco {
  color: #ffffff;
}
@charset "UTF-8";

/* h3 */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/







.section-heading3 {
  margin-top: 40px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .section-heading3 {
    margin-top: 55px;
    margin-bottom: 30px;
  }
}

.heading-3 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .heading-3 {
    margin-top: 55px;
    margin-bottom: 30px;
    font-size: 2.4rem;
  }
}
.heading-3:first-child {
  margin-top: 0;
}
.heading-3:last-child {
  margin-bottom: 0;
}

.heading-3::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * .5em);;
}
.heading-3::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * .5em);;
}

/*
  === child elements in modules
  モジュール内に配置する際のエレメントスタイルとは異なる場合のスタイル
*/
.heading-3.heading--child {
  margin-top: 25px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .heading-3.heading--child {
    margin-top: 30px;
    margin-bottom: 25px;
  }
}
.heading-3.heading--child:first-child {
  margin-top: 0;
}
.heading-3.heading--child:last-child {
  margin-bottom: 0;
}
.heading-3.heading--child + * {
  margin-top: 0;
}
/* child elements in modules === */
@charset "UTF-8";

/* h4 */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/







.section-heading4 {
  margin-top: 30px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .section-heading4 {
    margin-top: 45px;
    margin-bottom: 25px;
  }
}

.heading-4 {
  margin-top: 30px;
  margin-bottom: 20px;
  color: #3B4046;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .heading-4 {
    margin-top: 45px;
    margin-bottom: 25px;
    font-size: 2.0rem;
  }
}
.heading-4:first-child {
  margin-top: 0;
}
.heading-4:last-child {
  margin-bottom: 0;
}

.heading-4::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * .5em);;
}
.heading-4::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * .5em);;
}

/*
  === child elements in modules
  モジュール内に配置する際のエレメントスタイルとは異なる場合のスタイル
*/
.heading-4.heading--child {
  margin-top: 25px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .heading-4.heading--child {
    margin-top: 30px;
    margin-bottom: 25px;
  }
}
.heading-4.heading--child:first-child {
  margin-top: 0;
}
.heading-4.heading--child:last-child {
  margin-bottom: 0;
}
.heading-4.heading--child + * {
  margin-top: 0;
}
/* child elements in modules === */
@charset "UTF-8";

/* h5 */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/





.section-heading5 {
  margin-top: 30px;
  margin-bottom: 20px;
}

.heading-5 {
  margin-top: 30px;
  margin-bottom: 20px;
  color: #3B4046;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .heading-5 {
    font-size: 1.8rem;
  }
}
.heading-5:first-child {
  margin-top: 0;
}
.heading-5:last-child {
  margin-bottom: 0;
}

.heading-5::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * .5em);;
}
.heading-5::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * .5em);;
}

/*
  === child elements in modules
  モジュール内に配置する際のエレメントスタイルとは異なる場合のスタイル
*/
.heading-5.heading--child {
  margin-top: 25px;
  margin-bottom: 20px;
}
.heading-5.heading--child:first-child {
  margin-top: 20px;
}
.heading-5.heading--child:last-child {
  margin-bottom: 20px;
}
.heading-5.heading--child + * {
  margin-top: 0;
}
/* child elements in modules === */
@charset "UTF-8";

/* heading-subtitle */

.heading-subtitle {
  position: relative;
  padding-left: 11px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #3B4046;
}

.heading-subtitle:not(:last-child) {
  margin-bottom: 15px;
}

.heading-subtitle::before {
  content: '';
  width: 5px;
  height: 2px;
  background-color: #172A88;
  position: absolute;
  top: 4px;
  left: 0;
}
/* IE11 */
_:-ms-lang(x)::-ms-backdrop, .heading-subtitle::before {
  top: 7px;
}


.heading-subtitle+.heading-2,
.heading-subtitle+.heading-3,
.heading-subtitle+.heading-4,
.heading-subtitle+.heading-5,
.heading-subtitle+.heading-6 {
  margin-top: 0;
}
@charset "UTF-8";

/* 画像 */

.image {
  margin-left: auto;
  margin-right: auto;
}

.image img {
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
}

.image__anchor {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.image__anchor:hover {
  opacity: .7;
}
@charset "UTF-8";

/* リード文 */

.section-lead {
  margin-top: 75px;
  margin-bottom: 55px;
}
@media screen and (min-width: 768px) {
  .section-lead {
    margin-top: 55px;
  }
}

.lead {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .lead {
    font-size: 1.7rem;
  }
}

.lead:not(:first-child) {
  margin-top: 75px;
}
@media screen and (min-width: 768px) {
  .lead:not(:first-child) {
    margin-top: 55px;
  }
}
.lead:not(:last-child) {
  margin-bottom: 55px;
}

.lead.text-center {
  margin-right: auto;
  margin-left: auto;
}
.lead.text-right {
  margin-left: auto;
}
@charset "UTF-8";

/* リンクボタン */

.section-button {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .section-button {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.link-button {
  max-width: 300px;
}
.link-button:not(:first-child) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .link-button:not(:first-child) {
    margin-top: 40px;
  }
}
.link-button:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .link-button:not(:last-child) {
    margin-bottom: 40px;
  }
}

.link-button__anchor {
  display: block;
  position: relative;
  padding: 1.1rem 8.5rem 1.2rem 2.2rem;
  background: linear-gradient(90deg, #172A88 0%, #2B69A7 100%);
  color: #ffffff;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .12em;
  line-height: 1.6;
  word-break: break-all;
  transition: all .3s;
  border-radius: 25px;
}
@media screen and (min-width: 768px) {
  .link-button__anchor {
    padding: 1.1rem 9.5rem 1.2rem 2.2rem;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1050px) {
  .link-button__anchor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(91deg, #2F4294 0%, #3D69A7 100%);
    border-radius: 25px;
    opacity: 0;
    transition: opacity .3s;
  }
  .link-button__anchor:hover::before {
    opacity: 1;
  }
}

.link-button__anchor__inner {
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}

/* icon */
.link-button__anchor::after {
  content: "";
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4.5rem;
  height: .95rem;
  background-image:url('data:image/svg+xml;base64,ICAgICAgPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NSA5LjUiIGNsYXNzPSJsaW5rLWJ1dHRvbl9fYW5jaG9yX19zdmciPgogICAgICAgIDxwYXRoIGQ9Ik0tMTMuNDA3LjU0bDQxLjgyMS42ODUtNDEuODIxLjcxNloiIGZpbGw9IiNmZmYiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEzLjQwNyAzLjUxMSkiIGNsYXNzPSJsaW5rLWJ1dHRvbl9fYW5jaG9yX19zdmdfX3BhdGgiLz4KICAgICAgICA8cGF0aCBkPSJNNTA4LjcwNywzNDU0LjNsLS45MTYtMS4wNjQsNC4yODYtMy43MTMtNC4yODItMy42NTMuOTA4LTEuMDcxLDUuNTI4LDQuNzE1WiIgZmlsbD0iI2ZmZiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTQ2OS4yMzEgLTM0NDQuODA0KSIgY2xhc3M9ImxpbmstYnV0dG9uX19hbmNob3JfX3N2Z19fcGF0aCIvPgogICAgICA8L3N2Zz4=');
  background-repeat: no-repeat;
  background-size: contain;
  transition: right .3s;
}
@media screen and (min-width: 768px) {
  .link-button__anchor::after {
    right: 2rem;
    width: 6.3rem;
    height: 1.2rem;
  }
}
@media screen and (min-width: 1050px) {
  .link-button__anchor:hover::after,
  .bl-hover .link-button__anchor::after {
    right: 1.5rem;
  }
}
.link-button.link-button--download .link-button__anchor::after {
  background-image:url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNS42MTUiIHZpZXdCb3g9IjAgMCAxNiAxNS42MTUiPgogIDxnIGlkPSLjgrDjg6vjg7zjg5dfNTkzMSIgZGF0YS1uYW1lPSLjgrDjg6vjg7zjg5cgNTkzMSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAwKSI+CiAgICA8cGF0aCBpZD0i44OR44K5XzY3MjIiIGRhdGEtbmFtZT0i44OR44K5IDY3MjIiIGQ9Ik0yNC44LDIzLjEyM3YzLjhIMTEuMzA2di0zLjhIMTAuMDUxdjUuMDUzaDE2VjIzLjEyM1oiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMC4wNTEgLTEyLjU2KSIgZmlsbD0iI2ZmZiIvPgogICAgPGcgaWQ9IuOCsOODq+ODvOODl18xMzA3OCIgZGF0YS1uYW1lPSLjgrDjg6vjg7zjg5cgMTMwNzgiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjc0MiAwKSByb3RhdGUoOTApIj4KICAgICAgPHBhdGggaWQ9IuODkeOCuV83Njg1IiBkYXRhLW5hbWU9IuODkeOCuSA3Njg1IiBkPSJNLjcyNCw3LjQ4MywwLDYuNjQ2LDMuMzg2LDMuNzIxLDAsLjg0My43MiwwLDUuMDg3LDMuNzE1WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNy4xNTEgMCkiIGZpbGw9IiNmZmYiLz4KICAgICAgPHJlY3QgaWQ9IumVt+aWueW9ol8xMjMyNCIgZGF0YS1uYW1lPSLplbfmlrnlvaIgMTIzMjQiIHdpZHRoPSIxMC42MDMiIGhlaWdodD0iMS4xOTgiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgMy4xNDMpIiBmaWxsPSIjZmZmIi8+CiAgICA8L2c+CiAgPC9nPgo8L3N2Zz4=');
  width: 1.6rem;
  height: 1.562rem;
}
  /* reverse */
.link-button--reverse .link-button__anchor {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.link-button--reverse .link-button__anchor::before {
  content: none;
}

.link-button.rich-button-center {
  margin-right: auto;
  margin-left: auto;
}


/* === MAX 3column list */
.section-button__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 30px;
}
.section-button__list .link-button {
  width: 280px;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .section-button__list {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .section-button__list .link-button:not(:last-child) {
    margin-right: 40px;
  }
}
@media screen and (min-width: 1050px) {
  .section-button__list .link-button:not(:last-child) {
    margin-bottom: 0;
  }
}

/* center */
.section-button__list.rich-button-center {
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .section-button__list.rich-button-center {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .section-button__list.rich-button-center .link-button {
    margin-right: 20px;
    margin-left: 20px;
  }
}

/* MAX 3column list === */
@charset "UTF-8";

/* テキストリンク */

.section-text-button {
  margin-top: 12px;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .section-text-button {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.link-text {
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1.5;
}
.link-text:not(:first-child) {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .link-text:not(:first-child) {
    margin-top: 20px;
  }
}
.link-text:not(:last-child) {
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .link-text:not(:last-child) {
    margin-bottom: 20px;
  }
}

.link-text__anchor {
  position: relative;
  display: inline-block;
  padding-left: 2.6rem;
  transition: color .3s;
  cursor: pointer;
}

@media screen and (min-width: 1050px) {
  .link-text__anchor:hover {
    color: #172A88;
  }
}

.link-text__anchor__icon {
  position: absolute;
  top: .3rem;
  left: 0;
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  background-image: linear-gradient(116deg, #172A88 0%, #2B69A7 100%);
  background-repeat: no-repeat;
  border-radius: 50%;
  transition: background-image .3s;
}
@media screen and (min-width: 1050px) {
  .link-text__anchor:hover .link-text__anchor__icon,
  .bl-hover .link-text__anchor:hover .link-text__anchor__icon {
    background-image: linear-gradient(90deg, #2F4294 0%, #3D69A7 100%);
  }
}
.link-text__anchor__icon__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: .6rem;
  width: 3.6rem;
  transition: left .3s;
}
@media screen and (min-width: 1050px) {
  .link-text__anchor:hover .link-text__anchor__icon__inner,
  .bl-hover .link-text__anchor__icon__inner {
    left: calc(50% + .3rem);
  }
}
.link-text--reverse .link-text__anchor__icon {
  background-image: none;
  border: 1px solid #fff;
}
@media screen and (min-width: 1050px) {
  .link-text--reverse .link-text__anchor:hover .link-text__anchor__icon {
    background-image: none;
  }
}
.link-text--reverse .link-text__anchor {
  color: #ffffff;
}

/* center */
.link-text.link-text--center {
  text-align: center;
}

/* アクセシビリティ対策：本文へのスキップリンク */
.skip-link-to-main {
  position: absolute;
}
.skip-link-to-main:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(1px, 1px, 1px,1px);
  overflow: hidden;
}
.skip-link-to-main:focus {
  display: block;
  top: 6px;
  left: 10px;
  z-index: 9999;
  margin: 0;
  padding: 13px 20px;
  border-right: 1px solid #ABAEC1;
  border-bottom: 1px solid #ABAEC1;
  border-left: 1px solid #ABAEC1;
  border-radius: 0 0 3px 3px;
  background-color: #F7F9FC;
  text-decoration: underline;
}
/* ==========================================================================

    link

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


.link {
	display: inline-block;
	position: relative;
	color: #3B4046;
	text-decoration: none;
	word-break: break-all;
	transition: .3s;
}

.link:hover {
	color: #172A88;
	text-decoration: none;
}

.link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #172A88;
  transition: .3s;
}

.link:hover::after,
.bl-hover .link::after {
	background-color: #172A88;
}

.link--window {
	padding-left: 20px;
}
.link--window::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMS45NjkiIGhlaWdodD0iMTEuOTY5IiB2aWV3Qm94PSIwIDAgMTEuOTY5IDExLjk2OSI+CiAgPHBhdGggaWQ9IuODkeOCuV82NDIxIiBkYXRhLW5hbWU9IuODkeOCuSA2NDIxIiBkPSJNLTc4OC41MjksMGgtNi4zNDJhLjUyOC41MjgsMCwwLDAtLjUyOC41MjlWMi4xNjdoLTMuODdhLjcuNywwLDAsMC0uNy43djguNGEuNy43LDAsMCwwLC43LjdoOC40YS43LjcsMCwwLDAsLjctLjdWNy40aDEuNjM4QS41MjguNTI4LDAsMCwwLTc4OCw2Ljg3MVYuNTI5QS41MjkuNTI5LDAsMCwwLTc4OC41MjksMFptLTIuNjM4LDEwLjk2OWgtNy44di03LjhoMy41N3YzLjdhLjUyNy41MjcsMCwwLDAsLjUyOC41MjhoMy43Wk0tNzg5LDYuNGgtNS40VjFoNS40WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNzk5Ljk2OSkiIGZpbGw9IiM0MTQxNDEiLz4KPC9zdmc+Cg==") no-repeat center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media all and (-ms-high-contrast:none){
.link--window::before {
    margin-top: -11px;
  }
}


.heading-link:not(:first-child) {
	margin-top: 30px;
}
@media screen and (max-width: 767px) {
	.heading-link:not(:first-child) {
		margin-top: 20px;
	}
}

.section-heading-link {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .section-heading-link {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}

.heading-link:not(:last-child) {
	margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
	.heading-link:not(:last-child) {
		margin-bottom: 20px;
	}
}

.heading-link a {
	color: #1E242F;
	display: inline-block;
	position: relative;
	text-decoration: none;
	transition: .3s;
}
.heading-2.heading-link a {
	padding-left: 45px;
}
.heading-3.heading-link a {
	padding-left: 40px;
}
.heading-4.heading-link a,
.heading-5.heading-link a {
	padding-left: 35px;
  color: #3B4046;
}
@media screen and (max-width: 767px) {
  .heading-2.heading-link a {
    padding-left: 35px;
  }
  .heading-3.heading-link a {
    padding-left: 30px;
  }
  .heading-4.heading-link a,
  .heading-5.heading-link a {
    padding-left: 30px;
  }
}

.heading-link a::before {
	content: "";
	position: absolute;
	left: 0;
	border-radius: 100%;
  background: linear-gradient(135deg, #172A88 0%, #2B69A7 100%);
	transition: .3s;
}
.heading-2.heading-link a::before {
	top: 7px;
	width: 35px;
  height: 35px;
}
.heading-3.heading-link a::before {
	top: 3px;
	width: 30px;
  height: 30px;
}
.heading-4.heading-link a::before {
	top: 3px;
  width: 25px;
  height: 25px;
}
.heading-5.heading-link a::before {
  top: 1px;
	width: 25px;
  height: 25px;
}
@media screen and (max-width: 767px) {
  .heading-2.heading-link a::before {
    top: 4px;
    width: 25px;
    height: 25px;
  }
	.heading-3.heading-link a::before {
		top: 0px;
    width: 25px;
    height: 25px;
	}
  .heading-4.heading-link a::before {
    top: 2px;
    width: 20px;
    height: 20px;
  }
  .heading-5.heading-link a::before {
    top: 1px;
    width: 20px;
    height: 20px;
  }
}

.heading-link__icon {
	position: absolute;
	transition: .3s;
}
.heading-link__icon__path {
  fill: #ffffff;
}
.heading-2 .heading-link__icon {
  top: 18px;
  left: 13px;
  width: 9px;
  height: 13px;
}
.heading-3 .heading-link__icon {
  top: 12px;
  left: 12px;
  width: 8px;
	height: 11px;
}
.heading-4 .heading-link__icon {
  top: 11px;
  left: 10px;
  width: 6px;
  height: 9px;
}
.heading-5 .heading-link__icon {
  top: 9px;
  left: 10px;
  width: 6px;
  height: 9px;
}
@media screen and (max-width: 767px) {
  .heading-2 .heading-link__icon {
    top: 12px;
    left: 10px;
    width: 6px;
    height: 9px;
  }
	.heading-3 .heading-link__icon {
    top: 8px;
		left: 10px;
    width: 6px;
    height: 9px;
	}
  .heading-4 .heading-link__icon {
    top: 9px;
    left: 8px;
    width: 5px;
    height: 7px;
  }
  .heading-5 .heading-link__icon {
    top: 8px;
    left: 8px;
    width: 5px;
    height: 7px;
  }
}
@media screen and (min-width: 1050px) {
  .heading-link a:hover,
  .bl-hover .heading-link a {
    color: #172A88;
  }
  .heading-link.heading-2 a:hover .heading-link__icon,
  .heading-link.heading-3 a:hover .heading-link__icon,
  .bl-hover .heading-link.heading-2 a .heading-link__icon,
  .bl-hover .heading-link.heading-3 a .heading-link__icon {
    left: 15px;
  }
  .heading-link.heading-4 a:hover .heading-link__icon,
  .heading-link.heading-5 a:hover .heading-link__icon,
  .bl-hover .heading-link.heading-4 a .heading-link__icon,
  .bl-hover .heading-link.heading-5 a .heading-link__icon {
    left: 12px;
  }
}
@media screen and (min-width: 1050px) {
  .heading-link a:hover::before,
  .bl-hover .heading-link a::before {
    background: linear-gradient(116deg, #2F4294 0%, #3D69A7 100%);
  }
}

.link-id {
  margin-top: -60px;
  padding-top: 60px;
}
@charset "UTF-8";

/* 段落 */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/




.section-paragraph {
  margin-top: 20px;
  margin-bottom: 20px;
}

.paragraph {
  color: #3B4046;
  font-size: 1.3rem;
  letter-spacing: .1em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .paragraph {
    font-size: 1.6rem;
  }
}
.paragraph::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * .5em);
}
.paragraph::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * .5em);
}

.paragraph:not(:first-child) {
  margin-top: 20px;
}
.paragraph:not(:last-child) {
  margin-bottom: 20px;
}

/* adjust margin-top when "heading + paragraph" */
.heading-2 + .paragraph::before,
.heading-3 + .paragraph::before,
.heading-4 + .paragraph::before,
.heading-5 + .paragraph::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc(((1 - 2) * .5em) * 2);
}

.paragraph--reverse {
  color: #ffffff;
}

.paragraph.text-center {
  margin-right: auto;
  margin-left: auto;
}
.paragraph.text-right {
  margin-left: auto;
}
@charset "UTF-8";

/* セクション */

.section {
  margin-top: 60px;
  margin-bottom: 80px;
}

@media screen and (min-width: 1050px) {
  .section {
    margin-top: 80px;
    margin-bottom: 120px;
  }
}

.section:not(:last-child) {
  margin-bottom: 60px;
}

@media screen and (min-width: 1050px) {
  .section:not(:last-child) {
    margin-bottom: 80px;
  }
}

.dnd-section-color {
  padding-top: 60px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .dnd-section-color {
    padding-bottom: 120px;
    padding-top: 90px;
  }
}
/* 最初のモジュール */
.dnd-section-color .hs_cos_wrapper_type_module--first>div {
  margin-top: 0;
}
/* 最後のモジュール */
.dnd-section-color .hs_cos_wrapper_type_module--last>div {
  margin-bottom: 0;
}

.dnd-section-color--bg {
  background-color: #F7F9FC;
}

.content {
  padding-top: 51px;
}
@media screen and (min-width: 768px) {
  .content {
    padding-top: 75px;
  }
}
@media screen and (min-width: 1050px) {
  .content {
    padding-top: 89px;
  }
}
/* ==========================================================================

    tag-list

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/





.tag-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: -7.5px;
}

.tag-list:not(:last-child) {
  margin-bottom: 20px;
}

.tag-list__item {
  margin: 7.5px 0;
  padding: 9px 20px;
  border-radius: 50px;
  background-color: #ABAEC1;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 2;
  text-align: center;
}
_:-ms-fullscreen, :root .tag-list__item {
  padding: 10px 20px 2px 20px;
}

.tag-list__item:not(:last-child) {
  margin-right: 15px;
}

.heading-icon-columns .heading-4:not(:last-child) {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .tag-list__item {
    padding: 6px 15px;
    font-size: 1.3rem;
  }
}
/* ==========================================================================

    view

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/



.view--is-desktop {
	display: block;
}
@media screen and (max-width:1049px) {
	.view--is-desktop {
		display: none !important;
	}
}
.view--is-desktop-lower {
		display: block
}
@media screen and (max-width:767px) {
	.view--is-desktop-lower {
		display: none !important;
	}
}

.view--is-laptop {
	display: none
}
@media screen and (min-width:768px) and (max-width:1049px) {
	.view--is-laptop {
		display: block
	}
}

.view--is-laptop-lower {
	display: none
}
@media screen and (max-width:1049px) {
	.view--is-laptop-lower {
		display: block
	}
}

.view--is-palmtop {
	display: none !important;
}
@media screen and (max-width:767px) {
	.view--is-palmtop {
		display: block !important;
	}
}

/* アクセシビリティ対応（隠しテキスト） */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(0px 0px 99.9% 99.9%);
  border: 0;
}

/* サイト全体で共通のモジュール */
/* basic */
/* ==========================================================================

    table

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/



.table {
  width: 100%;
}

/* SWIPE icon */
@media screen and (min-width:1050px) {
  .js-table-scroll__icon {
    display: none;
  }
}
.js-table-scroll__icon__arrow {
  display: none;
}
@media screen and (max-width:600px) {
  .js-table-scroll {
    margin-right: -20px;
    overflow-x: scroll;
    overflow-y: hidden;
    position: relative;
  }
  .js-table-scroll > .table {
    width: 600px
  }
  .js-table-scroll__icon {
    background-color: rgba(15, 15, 15, .3);
    border-radius: 5px;
    box-sizing: border-box;
    color: #ffffff;
    font-family: 'Oswald', 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: bold;
    left: 50%;
    line-height: 60px;
    height: 120px;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 1;
    padding-top: 35px;
    position: absolute;
    transition: .5s;
    top: 50%;
    width: 120px;
    z-index: 1;
  }

  .js-table-scroll__icon__arrow {
    display: block;
    height: 8px;
    left: calc(50% - 30px);
    position: absolute;
    top: calc(50% - 20px);
    width: 61px;
    z-index: 2;
    transition: .5s;
  }
  .js-table-scroll__icon__path {
    fill: #ffffff;
  }

  /* is-checked */
  .js-table-scroll.is-checked .js-table-scroll__icon,
  .js-table-scroll.is-checked .js-table-scroll__icon__arrow {
    opacity: 0;
  }
}


/* style1 : normal */
.section-table1 {
  margin-bottom: 30px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .section-table1 {
    margin-bottom: 40px;
    margin-top: 40px;
  }
}

.table-normal__table {
  border: 1px solid #ABAEC1;
}


.table-normal__head__row__header {
  max-width: 180px;
  padding: 15px;
  border-bottom: 1px solid #ABAEC1;
  background-color: rgba(171, 174, 193, .6);
  color: #3B4046;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.6;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .table-normal__head__row__header {
    font-size: 1.3rem;
  }
}
.table-normal__head__row__header:not(:last-child) {
  border-right: 1px solid #ABAEC1;
}

.table-normal__head__row__header.table__head__row__header--notitle {
  background-color: #ABAEC1;
}


.table-normal__body__row__header {
  box-sizing: border-box;
  width: 250px;
  padding: 20px 15px;
  border-right: 1px solid #ABAEC1;
  background-color: #F7F9FC;
  color: #3B4046;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 2;
  text-align: left;
}

.table-normal__body__row__header--bg {
  background-color: #F7F9FC;
}
@media screen and (max-width: 1049px) {
  .table-normal__body__row__header {
    padding: 15px 15px;
    width: 180px;
  }
}
@media screen and (max-width: 767px) {
  .table-normal__body__row__header {
    font-size: 13px;
    width: 166.5px;
  }
}
.dnd-section-color--bg .table-normal__body__row__header {
  background-color: #fff;
}

.table-normal__body__row:not(:last-child) {
  border-bottom: 1px solid #ABAEC1;
}

.table-normal__body__row__data {
  max-width: 200px;
  padding: 15px 15px;
  color: #3B4046;
  font-size: 1.6rem;
  letter-spacing: .1em;
  line-height: 2;
  text-align: left;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .table-normal__body__row__data {
    padding: 15px;
    font-size: 1.3rem;
  }
}

.table-normal__body__row__data:not(:last-child) {
  border-right: 1px solid #ABAEC1;
}


/* style2 : combination */
.section-table2 {
  margin-bottom: 30px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .section-table2 {
    margin-bottom: 40px;
    margin-top: 40px;
  }
}

.table-combination__table {
  border: 1px solid #ABAEC1;
}

.table-combination__head__row__header.table__head__row__header--title {
  background-color: #3B4046;
  color: #ffffff;
}

.table-combination__head__row__header {
  width: 350px;
  padding: 10px 20px;
  color: #3B4046;
  font-size: 2.0rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
}

.table-combination__head__row__header:not(:last-child) {
  border-right: 1px solid #ABAEC1;
}

@media screen and (max-width: 1049px) {
  .table-combination__body__row {
    display: flex;
    flex-wrap: wrap;
  }
}

.table-combination__body__row:not(:last-child) {
  border-bottom: 1px solid #ABAEC1;
}

.table-combination__body__row__header {
  box-sizing: border-box;
  width: 252px;
  padding: 20px 15px;
  color: #3B4046;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
  vertical-align: middle;
}

.table-combination__body__row__header:not(:last-child) {
  border-right: 1px solid #ABAEC1;
  border-bottom: 1px solid #ABAEC1;
}
@media screen and (max-width: 1049px) {
  .table-combination__body__row__header {
    padding: 20px 15px;
    border-right: none;
    text-align: center;
  }
  .table-combination__body__row__header:not(:last-child) {
    width: 100%;
    border-right: none;
  }
}
@media screen and (max-width: 767px) {
  .table-combination__body__row__header {
    padding: 15px;
    font-size: 13px;
    text-align: center;
  }
  .table-combination__body__row__header:not(:last-child) {
    width: 100%;
  }
}

.table-combination__body__row__data {
  box-sizing: border-box;
  width: 260px;
  padding: 20px 15px;
}
@media screen and (max-width: 1049px) {
  .table-combination__body__row__data {
    width: 50%;
    padding: 20px 15px;
  }
  .table-combination__body__row__data:last-child {
    border-left: none;
  }
}

.table-combination__body__row__data:not(:last-child) {
  border-right: 1px solid #ABAEC1;
}

.table-combination__body__row__data.table-combination__body__row__data--bg:last-child {
  background-color: #F7F9FC;
}

@media screen and (max-width: 767px) {
  .table-combination__body__row__data {
    padding: 15px;
  }
}

.table-comparison__body__row__data .list--default>.list__item:before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 3px;
  background-color: #3B4046;
}

/* style2 背景色ありのスタイル */
.dnd-section-color--bg .table-combination__table {
  border: 1px solid #ABAEC1;
}
.dnd-section-color--bg .table-combination__head__row__header:not(:last-child) {
  border-right: 1px solid #ABAEC1;
}
.dnd-section-color--bg .table-combination__body__row:not(:last-child) {
  border-bottom: 1px solid #ABAEC1;
}
.dnd-section-color--bg .table-combination__body__row__header:not(:last-child) {
  border-right: 1px solid #ABAEC1;
  border-bottom: 1px solid #ABAEC1;
}
.dnd-section-color--bg .table-combination__body__row__data:not(:last-child) {
  border-right: 1px solid #ABAEC1;
}
.dnd-section-color--bg .table-combination__body__row__data.table-combination__body__row__data--bg:last-child {
  background-color: #fff;
}
/* ==========================================================================

    list

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


/* 余白 */










.section-list--default,
.section-list--line,
.section-list--number {
  margin-top: 25px;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .section-list--default,
  .section-list--line,
  .section-list--number {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.section-list--check {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .section-list--check {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

/* === 2列の場合 */
@media screen and (min-width: 1050px) {
  .list-wrapper.list-wapper--2clm {
    display: flex;
    justify-content: space-between;
    margin-right: -25px;
    margin-left: -25px;
  }
}

.list-wrapper.list-wapper--2clm .list:not(:last-child) {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .list-wrapper.list-wapper--2clm .list:not(:last-child) {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1050px) {
  .list-wrapper.list-wapper--2clm .list {
    box-sizing: border-box;
    width: 50%;
    padding-right: 25px;
    padding-left: 25px;
  }
  .list-wrapper.list-wapper--2clm .list:not(:first-child),
  .list-wrapper.list-wapper--2clm .list:not(:last-child) {
    margin-top: 0;
  }
}
/* 2列の場合 === */

.list__item {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .list__item {
    margin-top: 35px;
    margin-bottom: 35px;
  }
}
.list__item:first-child {
  margin-top: 0;
}
.list__item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .list__item .paragraph:not(:last-child) {
    margin-bottom: 12px;
  }
  .list__item .link-text:not(:first-child) {
    margin-top: 15px;
  }
}

/* ドット */
.list--default:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .list--default:not(:first-child) {
    margin-top: 25px;
  }
}

.list--default:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .list--default:not(:last-child) {
    margin-bottom: 25px;
  }
}

.list--default > .list__item {
  position: relative;
  padding-left: 15px;
  list-style-type: none;
}

.list--default > .list__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 13px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #ABAEC1;
}
@media all and (-ms-high-contrast:none){
  .list--default > .list__item::before {
    top: 9px;
  }
}
@media screen and (max-width: 767px) {
  .list--default>.list__item::before {
    top: 10px;
  }
}


/* ライン */
.list--line:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .list--line:not(:first-child) {
    margin-top: 25px;
  }
}

.list--line:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .list--line:not(:last-child) {
    margin-bottom: 25px;
  }
}

.list--line .list__item {
  position: relative;
  padding-left: 18px;
}
@media screen and (min-width: 768px) {
  .list--line .list__item {
    padding-left: 22px;
  }
}
.list--line .list__item::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  height: 2px;
  background-color: #172A88;
}
@media screen and (min-width: 768px) {
  .list--line .list__item::before {
    top: 16px;
    width: 10px;
  }
}


/* チェック */
.list--check:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .list--check:not(:first-child) {
    margin-top: 30px;
  }
}

.list--check:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .list--check:not(:last-child) {
    margin-bottom: 30px;
  }
}

.list.list--check .list__item {
  position: relative;
  padding-left: 25px;
}

.list.list--check .list__item .paragraph {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 767px) {
  .list.list--check .list__item .paragraph {
    font-size: 15px;
    line-height: 1.5;
  }
}

.list.list--check .list__item::before {
  content: '';
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 5px;
  border-bottom: 2px solid #172A88;
  border-left: 2px solid #172A88;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .list.list--check .list__item::before {
    top: 6px;
  }
}


/* 数字 */
.list--number:not(:first-child) {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .list--number:not(:first-child) {
    margin-top: 30px;
  }
}

.list--number:not(:last-child) {
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .list--number:not(:last-child) {
    margin-bottom: 30px;
  }
}

.list--number {
  counter-reset: number;
}

.list--number .list__item {
  padding-left: 30px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .list--number .list__item {
    padding-left: 34px;
  }
}

.list--number .list__item::before {
  content: counter(number) '.';
  counter-increment: number;
  position: absolute;
  top: 2px;
  left: 0;
  width: 22px;
  height: 22px;
  box-sizing: border-box;
  padding-left: 1px;
  color: #3B4046;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: .1em;
  text-align: center;
  border-radius: 22px;
}
@media screen and (min-width: 768px) {
  .list--number .list__item::before {
    top: 5px;
    width: 24px;
    height: 24px;
    line-height: 24px;
  }
}
@charset "UTF-8";

/* 説明リスト */

.section-description-list {
  margin-top: 40px;
  margin-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .section-description-list {
    margin-top: 55px;
    margin-bottom: 55px;
  }
}

.description-list__group {
  border-bottom: 1px dotted #ABAEC1;
}
@media screen and (min-width: 768px) {
  .description-list__group {
    display: flex;
  }
}

.description-list__group:not(:first-child) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .description-list__group:not(:first-child) {
    margin-top: 0;
  }
}

.description-list__group__term {
  color: #3B4046;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .description-list__group__term {
    box-sizing: border-box;
    max-width: 200px;
    min-width: 200px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 30px;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1050px) {
  .description-list__group__term {
    max-width: 220px;
    min-width: 220px;
  }
}

@media screen and (min-width: 768px) {
  .description-list__group__desc {
    display: flex;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .description-list__group__desc {
    position: relative;
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 20px;
    padding-left: 15px;
  }
  .description-list__group__desc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: calc(100% - 10px);
    border-left: 1px dotted #ABAEC1;
  }
}

@media screen and (min-width: 768px) {
  .description-list__group__desc__inner {
    position: relative;
    flex: 1;
    padding: 20px 30px;
  }
  .description-list__group__desc__inner::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    width: 1px;
    height: calc(100% - 40px);
    border-left: 1px dotted #ABAEC1;
  }
}
@media screen and (max-width: 767px) {
  .description-list__group__desc__inner:nth-child(2) {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dotted #ABAEC1;
  }
}

.description-list .natural {
  margin-top: 0;
  margin-bottom: 0;
}
@charset "UTF-8";

/* service-flow */

.section-service-flow {
  margin-top: 30px;
  margin-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .section-service-flow {
    margin-top: 45px;
    margin-bottom: 55px;
  }
}

.service-flow__list__item:not(:first-child) {
  position: relative;
  margin-top: 50px;
}

.service-flow__list__item:not(:first-child)::before {
  content: '';
  position: absolute;
  top: -33px;
  left: calc(50% - 9px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 10px 0 10px;
  border-color: #172A88 transparent transparent transparent;
}

.service-flow__list__item__box {
  padding: 28px 20px;
  background-color: #F7F9FC;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .service-flow__list__item__box {
    padding: 28px 25px;
  }
}
/* 背景色ありのスタイル */
.dnd-section-color--bg .service-flow__list__item__box {
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .service-flow__list__item__box__columns {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .service-flow__list__item__box__columns__column:nth-child(1) {
    width: 110px;
  }
}
@media screen and (min-width: 1050px) {
  .service-flow__list__item__box__columns__column:nth-child(1) {
    width: 225px;
  }
}
.service-flow__list__item__box__columns__column:nth-child(1).column--single {
  width: 100%;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .service-flow__list__item__box__columns__column:nth-child(1).column--single {
    text-align: center;
  }
}

.service-flow__list__item__box__columns__column:nth-child(2) {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .service-flow__list__item__box__columns__column:nth-child(2) {
    width: calc(100% - 110px);
    margin-top: 0;
    margin-left: 50px;
  }
}
@media screen and (min-width: 1050px) {
  .service-flow__list__item__box__columns__column:nth-child(2) {
    width: calc(100% - 225px);
  }
}
@charset "UTF-8";

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


/* step */






.section-step {
  margin-top: 45px;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .section-step {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.step-list {
  counter-reset: number;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.step-list__item {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 110px;
  padding: 30px 30px 25px;
  background-color: #F7F9FC;
  border-radius: 5px;
}
.step-list__item.step-list__item--no-text {
  align-items: center;
}
.step-list__item:not(:last-child) {
  margin-bottom: 53px;
}
@media screen and (min-width: 768px) {
  .step-list__item {
    padding: 35px 50px;
    min-height: 145px;
  }
  .step-list__item:not(:last-child) {
    margin-bottom: 65px;
  }
}
@media screen and (min-width: 1050px) {
  .step-list.step-list--1 .step-list__item,
  .step-list.step-list--2 .step-list__item,
  .step-list.step-list--3 .step-list__item {
    width: calc(33.3% - 33.3px);
    padding: 40px 40px 35px;
  }
  .step-list.step-list--4 .step-list__item {
    width: calc(25% - 30px);
    min-height: 170px;
    padding: 35px 30px 35px;
  }
  .step-list.step-list--5 .step-list__item {
    width: calc(20% - 24px);
    padding: 30px 28px 25px;
  }
  .step-list.step-list--6 .step-list__item {
    width: calc(16.6% - 25px);
    min-height: 130px;
    padding: 30px 19px 20px;
  }
  .step-list.step-list--1 .step-list__item:not(:nth-child(3n)),
  .step-list.step-list--2 .step-list__item:not(:nth-child(3n)),
  .step-list.step-list--3 .step-list__item:not(:nth-child(3n)) {
    margin-right: 50px;
  }
  .step-list.step-list--4 .step-list__item:not(:nth-child(4n)) {
    margin-right: 40px;
  }
  .step-list.step-list--5 .step-list__item:not(:nth-child(5n)) {
    margin-right: 30px;
  }
  .step-list.step-list--6 .step-list__item:not(:nth-child(6n)) {
    margin-right: 30px;
  }
  .step-list.step-list--6 .step-list__item:nth-child(n+7) {
    margin-top: 40px;
  }
  .step-list__item:not(:last-child) {
    margin-bottom: 0;
  }
}

.step-list__item:not(:first-child)::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -35px;
  left: calc(50% - 10px);
  border-color: #ABAEC1 transparent transparent;
  border-style: solid;
  border-width: 9px 10px 0;
  transition: .5s;
}
@media screen and (min-width: 768px) {
  .step-list__item:not(:first-child)::before {
    top: -41px;
  }
}
@media screen and (min-width: 1050px) {
  .step-list__item:not(:first-child)::before {
    top: 50%;
    transform: translateY(-50%);
    border-color: transparent transparent transparent #ABAEC1;
    border-width: 9px 10px;
  }
  .step-list.step-list--1 .step-list__item:not(:first-child)::before,
  .step-list.step-list--2 .step-list__item:not(:first-child)::before,
  .step-list.step-list--3 .step-list__item:not(:first-child)::before {
    left: -29px;
  }
  .step-list.step-list--4 .step-list__item:not(:first-child)::before {
    left: -24px;
  }
  .step-list.step-list--5 .step-list__item:not(:first-child)::before,
  .step-list.step-list--6 .step-list__item:not(:first-child)::before {
    left: -19px;
  }
}
.step-list__item .step-list__item__decoration {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding-right: 25px;
  color: #ffffff;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .25em;
}
@media screen and (min-width: 768px) {
  .step-list__item .step-list__item__decoration {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1050px) {
  .step-list__item .step-list__item__decoration {
    font-size: 1.4rem;
  }
}
.step-list__item .step-list__item__decoration::before {
  content: "." counter(number, decimal-leading-zero);
  counter-increment: number;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.step-list__item .step-list__item__decoration::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 22px;
  background-color: #172A88;
  z-index: -1;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .step-list__item .step-list__item__decoration::after {
    height: 30px;
  }
}
@media screen and (min-width: 1050px) {
  .step-list.step-list--5 .step-list__item .step-list__item__decoration::after,
  .step-list.step-list--6 .step-list__item .step-list__item__decoration::after {
    width: 110px;
    height: 22px;
  }
}
.step-list__item .step-list__item__title,
.step-list__item .step-list__item__text {
  color: #1E242F;
}

.step-list__item__title {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .15em;
}
@media screen and (min-width: 768px) {
  .step-list__item__title {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1050px) {
  .step-list__item__title {
    display: grid;
    place-items: center;
  }
  .step-list.step-list--1 .step-list__item__title,
  .step-list.step-list--2 .step-list__item__title,
  .step-list.step-list--3 .step-list__item__title {
    font-size: 2.4rem;
  }
  .step-list.step-list--4 .step-list__item__title {
    font-size: 2.2rem;
  }
  .step-list.step-list--5 .step-list__item__title {
    font-size: 2rem;
  }
  .step-list.step-list--6 .step-list__item__title {
    font-size: 1.8rem;
  }
}
.step-list__item__text {
  display: block;
  width: 100%;
  margin-top: 11px;
  font-size: 1.3rem;
  text-align: left;
  line-height: 2;
  letter-spacing: .15em;
}
@media screen and (min-width: 768px) {
  .step-list__item__text {
    font-size: 1.6rem;
    margin-top: 8px;
  }
}
@media screen and (min-width: 1050px) {
  .step-list__item__text {
    flex-grow: 1;
  }
}

/* 背景色あり */
.dnd-section-color--bg .step-list__item {
  background-color: #fff;
}
@charset "UTF-8";

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


  /* faq-question */

.section-faq-question {
  margin-top: 30px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .section-faq-question {
    margin-top: 45px;
    margin-bottom: 55px;
  }
}

.faq-question__list__item {
  border-top: 1px solid #ABAEC1;
}
.faq-question__list__item:last-child {
  border-bottom: 1px solid #ABAEC1;
}

/* Question */
.faq-question__list__item__question__button {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  border: none;
  padding: 22px 54px 22px 20px;
  background-color: transparent;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: left;
  cursor: pointer;
  appearance: none;
}
@media screen and (min-width: 768px) {
  .faq-question__list__item__question__button {
    padding: 28px 79px 28px 25px;
  }
}
@media screen and (min-width: 1050px) {
  .faq-question__list__item__question__button:hover .faq-question__list__item__question__inner {
    color: #172A88;
    transition: color .3s;
  }
}

/* 背景色ありのスタイル */
.faq-question__list__item__question__inner {
  font-size: 1.6rem;
  letter-spacing: .1em;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .faq-question__list__item__question__inner {
    font-size: 2.0rem;
  }
}

/* 開閉アイコン */
.faq-question__list__item__question__icon {
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 54px;
  height: 100%;
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .faq-question__list__item__question__icon {
    width: 60px;
  }
}

.faq-question__list__item__question__icon::before,
.faq-question__list__item__question__icon::after {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  right: calc(50% - 7px);
  width: 14px;
  height: 2px;
  background-color: #1E242F;
  transition: .3s;
}

@media screen and (min-width: 768px) {
  .faq-question__list__item__question__icon::before,
  .faq-question__list__item__question__icon::after {
    width: 14px;
    right: calc(50% - 7px);
  }
}
@media screen and (min-width: 1050px) {
  .faq-question__list__item__question__button:hover .faq-question__list__item__question__icon::before,
  .faq-question__list__item__question__button:hover .faq-question__list__item__question__icon::after {
    background-color: #172A88;
  }
}

.is-active .faq-question__list__item__question__icon::before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq-question__list__item__question__icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.is-active .faq-question__list__item__question__icon::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* Answer */
.faq-question__list__item__answer {
  display: none;
  padding: 0 20px 25px;
}
@media screen and (min-width: 768px) {
  .faq-question__list__item__answer {
    padding: 0 25px 30px;
  }
}

.faq-question__list__item__answer__inner {
  font-size: 1.3rem;
  letter-spacing: .2em;
  line-height: 2em;
}
@media screen and (min-width: 768px) {
  .faq-question__list__item__answer__inner {
    font-size: 1.6rem;
  }
}
@charset "UTF-8";

/* strength-reason */

.section-strength-reason {
  margin-top: 60px;
  margin-bottom: 35px;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .section-strength-reason {
    margin-top: 80px;
    margin-bottom: 55px;
  }
}

.strength-reason__title {
  position: relative;
  width: 100vw;
  margin: 60px calc(50% - 50vw) 0;
  height: 360px;
  background-color: #E6E6E6;
  background-size: cover;
  background-position: center;
}

@media screen and (min-width: 768px) {
  .strength-reason__title {
    margin: 80px calc(50% - 50vw) 0;
  }
}
@media screen and (min-width: 1050px) {
  .strength-reason__title {
    width: 100vw;
  }
}
.strength-reason__title__box {
  background-color: #172A88;
  width: 230px;
  height: 230px;
  position: absolute;
  top: calc(50% - 115px);
  left: calc(50% - 115px);
  padding: 20px;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .strength-reason__title__box {
    width: 250px;
    height: 250px;
    top: calc(50% - 125px);
    left: calc(50% - 125px);
  }
}

.strength-reason__title__box__number {
  color: #ffffff;
  text-align: center;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .25em;
  line-height: 1.5em;
}

.strength-reason__title__box__heading {
  color: #ffffff;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 2.0rem;
  letter-spacing: .25em;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: calc(250px - 40px);
  word-break: break-word;
  text-align: center;
}
/* ==========================================================================

    zoom

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


.section-zoom {
  margin-top: 25px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .section-zoom {
    margin-top: 40px;
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 1050px) {
  .section-zoom__inner {
    display: flex;
    flex-wrap: wrap;
    margin-right: -25px;
    margin-left: -25px;
  }
}
@media screen and (max-width: 767px) {
  .section-zoom__inner {
    max-width: 450px;
    margin-right: auto;
    margin-left: auto;
  }
}

/* title / text contents column */
@media screen and (min-width: 1050px) {
  .section-zoom__main-area {
    flex: 1;
    order: 2;
    min-width: 380px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

/* image column */
.section-zoom__image-area {
  position: relative;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .section-zoom__image-area {
    margin-top: 25px;
  }
}
@media screen and (min-width: 1050px) {
  .section-zoom__image-area {
    flex: 2;
    order: 1;
    position: relative;
    max-width: 620px;
    margin-top: 0;
    padding-right: 25px;
    padding-left: 25px;
  }
}

/* Zoom image area */
.section-zoom__zoom-image {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  box-sizing: border-box;
  border: 1px solid #ABAEC1;
  background-color: #ffffff;
}
@media screen and (min-width: 1050px) {
  .section-zoom__zoom-image.is-active {
    display: block;
  }
}

/* Main image area */
.section-zoom__image-area__main-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 198px;
  background-color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section-zoom__image-area__main-wrapper {
    height: 375px;
  }
}
@media screen and (min-width: 1050px) {
  .section-zoom__image-area__main-wrapper {
    height: 348px;
  }
}

.section-zoom__image-area__main {
  display: inline-block;
  position: relative;
}

@media screen and (min-width: 1050px) {
  .section-zoom__image-area__main::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    opacity: .6;
  }
  .section-zoom__image-area__main::after {
    content: "";
    display: block;
    position: absolute;
    right: 12px;
    bottom: 13px;
    width: 22px;
    height: 21px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMS4zOSAyMC42NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOm5vbmU7fS5jbHMtMntmaWxsOiM3MDcwNzA7fS5jbHMtM3tmaWxsOiNmZmY7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxnIGlkPSLjgrDjg6vjg7zjg5dfMTUxIiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyAxNTEiPjxnIGlkPSLjgrDjg6vjg7zjg5dfMTMyIiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyAxMzIiPjxnIGlkPSLlkIjkvZNfMjIiIGRhdGEtbmFtZT0i5ZCI5L2TIDIyIj48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xNy43NCwyMC42NmwtNS4yOS01LjI5YTguMjYsOC4yNiwwLDEsMSwzLjQxLTMuODlMMjEuMzksMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjAsMTdsLTQuODItNC44My0uNDgtLjQ3LjI2LS42MmE3LjI2LDcuMjYsMCwxLDAtMywzLjQxbC42Ny0uMzkuNTQuNTUsNC41OSw0LjU4TDIwLDE3bTEuNDIsMC0zLjY1LDMuNjUtNS4yOS01LjI5YTguMjUsOC4yNSwwLDEsMSwzLjQxLTMuODlaIi8+PC9nPjxnIGlkPSLjgrDjg6vjg7zjg5dfMTUwIiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyAxNTAiPjxnIGlkPSLjgrDjg6vjg7zjg5dfMTQ5IiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyAxNDkiPjxnIGlkPSLmpZXlhoblvaJfMyIgZGF0YS1uYW1lPSLmpZXlhoblvaIgMyI+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSI4LjI1IiBjeT0iOC4yNSIgcj0iNS4xNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTguMjUsMTMuNDFBNS4wOSw1LjA5LDAsMCwxLDQuNjEsMTEuOWE1LjE0LDUuMTQsMCwwLDEsMC03LjI5aDBhNS4xNiw1LjE2LDAsMCwxLDguOCwzLjY0LDUuMTYsNS4xNiwwLDAsMS01LjE2LDUuMTZaTTUuMzEsNS4zMWE0LjE2LDQuMTYsMCwwLDAsMCw1Ljg4LDQuMTYsNC4xNiwwLDEsMCwyLjk0LTcuMUE0LjE2LDQuMTYsMCwwLDAsNS4zMSw1LjMxWiIvPjwvZz48L2c+PC9nPjwvZz48ZyBpZD0i6ZW35pa55b2iXzg2NSIgZGF0YS1uYW1lPSLplbfmlrnlvaIgODY1Ij48cmVjdCBjbGFzcz0iY2xzLTMiIHg9IjUuODkiIHk9IjcuNzUiIHdpZHRoPSI1IiBoZWlnaHQ9IjEiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjYuMzkiIHk9IjcuNzUiIHdpZHRoPSI0IiBoZWlnaHQ9IjEiLz48L2c+PGcgaWQ9IumVt+aWueW9ol84NjYiIGRhdGEtbmFtZT0i6ZW35pa55b2iIDg2NiI+PHJlY3QgY2xhc3M9ImNscy0zIiB4PSI3Ljg5IiB5PSI1Ljc1IiB3aWR0aD0iMSIgaGVpZ2h0PSI1Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSI3Ljg5IiB5PSI2LjI1IiB3aWR0aD0iMSIgaGVpZ2h0PSI0Ii8+PC9nPjwvZz48L2c+PC9nPjwvc3ZnPg==);
  }
}

.section-zoom__image-area__main img {
  max-width: 100%;
  max-height: 198px;
  vertical-align: top;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .section-zoom__image-area__main img {
    max-height: 375px;
  }
}
@media screen and (min-width: 1050px) {
  .section-zoom__image-area__main img {
    max-height: 348px;
  }
}

/* Lens */
.section-zoom__lens {
  display: none;
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 150px;
  max-height: 150px;
  background: #ffffff url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMS4zOSAyMC42NiI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOm5vbmU7fS5jbHMtMntmaWxsOiM3MDcwNzA7fS5jbHMtM3tmaWxsOiNmZmY7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxnIGlkPSLjgrDjg6vjg7zjg5dfMTUxIiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyAxNTEiPjxnIGlkPSLjgrDjg6vjg7zjg5dfMTMyIiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyAxMzIiPjxnIGlkPSLlkIjkvZNfMjIiIGRhdGEtbmFtZT0i5ZCI5L2TIDIyIj48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xNy43NCwyMC42NmwtNS4yOS01LjI5YTguMjYsOC4yNiwwLDEsMSwzLjQxLTMuODlMMjEuMzksMTdaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMjAsMTdsLTQuODItNC44My0uNDgtLjQ3LjI2LS42MmE3LjI2LDcuMjYsMCwxLDAtMywzLjQxbC42Ny0uMzkuNTQuNTUsNC41OSw0LjU4TDIwLDE3bTEuNDIsMC0zLjY1LDMuNjUtNS4yOS01LjI5YTguMjUsOC4yNSwwLDEsMSwzLjQxLTMuODlaIi8+PC9nPjxnIGlkPSLjgrDjg6vjg7zjg5dfMTUwIiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyAxNTAiPjxnIGlkPSLjgrDjg6vjg7zjg5dfMTQ5IiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyAxNDkiPjxnIGlkPSLmpZXlhoblvaJfMyIgZGF0YS1uYW1lPSLmpZXlhoblvaIgMyI+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSI4LjI1IiBjeT0iOC4yNSIgcj0iNS4xNiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTguMjUsMTMuNDFBNS4wOSw1LjA5LDAsMCwxLDQuNjEsMTEuOWE1LjE0LDUuMTQsMCwwLDEsMC03LjI5aDBhNS4xNiw1LjE2LDAsMCwxLDguOCwzLjY0LDUuMTYsNS4xNiwwLDAsMS01LjE2LDUuMTZaTTUuMzEsNS4zMWE0LjE2LDQuMTYsMCwwLDAsMCw1Ljg4LDQuMTYsNC4xNiwwLDEsMCwyLjk0LTcuMUE0LjE2LDQuMTYsMCwwLDAsNS4zMSw1LjMxWiIvPjwvZz48L2c+PC9nPjwvZz48ZyBpZD0i6ZW35pa55b2iXzg2NSIgZGF0YS1uYW1lPSLplbfmlrnlvaIgODY1Ij48cmVjdCBjbGFzcz0iY2xzLTMiIHg9IjUuODkiIHk9IjcuNzUiIHdpZHRoPSI1IiBoZWlnaHQ9IjEiLz48cmVjdCBjbGFzcz0iY2xzLTIiIHg9IjYuMzkiIHk9IjcuNzUiIHdpZHRoPSI0IiBoZWlnaHQ9IjEiLz48L2c+PGcgaWQ9IumVt+aWueW9ol84NjYiIGRhdGEtbmFtZT0i6ZW35pa55b2iIDg2NiI+PHJlY3QgY2xhc3M9ImNscy0zIiB4PSI3Ljg5IiB5PSI1Ljc1IiB3aWR0aD0iMSIgaGVpZ2h0PSI1Ii8+PHJlY3QgY2xhc3M9ImNscy0yIiB4PSI3Ljg5IiB5PSI2LjI1IiB3aWR0aD0iMSIgaGVpZ2h0PSI0Ii8+PC9nPjwvZz48L2c+PC9nPjwvc3ZnPg==) no-repeat 50% 50% / 22px 22px;
  opacity: .6;
}
@media screen and (min-width: 1050px) {
  .section-zoom__image-area__main:hover .section-zoom__lens {
    display: block;
  }
}

/* Thumbnail list */
.section-zoom__image-area__thumb {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-right: -5px;
  margin-left: -5px;
}
@media screen and (min-width: 768px) {
  .section-zoom__image-area__thumb {
    margin-top: 28px;
    margin-right: -14px;
    margin-left: -14px;
  }
}

.section-zoom__image-area__thumb__item {
  box-sizing: border-box;
  width: 25%;
  height: 45px;
  padding-right: 5px;
  padding-left: 5px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .section-zoom__image-area__thumb__item {
    width: 20%;
    height: 63px;
    padding-right: 14px;
    padding-left: 14px;
  }
}
@media screen and (min-width: 1050px) {
  .section-zoom__image-area__thumb__item {
    width: 25%;
    height: 75px;
    transition: opacity .3s ease;
  }
  .section-zoom__image-area__thumb__item:hover {
    opacity: .6;
  }
}

.section-zoom__image-area__thumb__item button {
  border: 0;
  padding: 0;
  background: none;
}

.section-zoom__image-area__thumb__item:nth-child(n+5) {
  margin-top: 10px;
}
@media screen and (min-width: 1050px) {
  .section-zoom__image-area__thumb__item:nth-child(n+5) {
    margin-top: 28px;
  }
}
@media screen and (max-width: 1049px) and (min-width: 768px) {
  .section-zoom__image-area__thumb__item:nth-child(n+5) {
    margin-top: 0;
  }
  .section-zoom__image-area__thumb__item:nth-child(n+6) {
    margin-top: 28px;
  }
}

.section-zoom__image-area__thumb__item img {
  width: 100%;
  height: 45px;
  object-fit: cover;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .section-zoom__image-area__thumb__item img {
    height: 63px;
  }
}
@media screen and (min-width: 1050px) {
  .section-zoom__image-area__thumb__item img {
    height: 75px;
  }
}

.section-zoom .paragraph {
  letter-spacing: .1em;
}
/* ==========================================================================

    slideimg

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/








.section-h2_btn_slider {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .section-h2_btn_slider {
    margin-top: 60px;
  }
}
.section-h2_btn_slider {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .section-h2_btn_slider {
    margin-bottom: 60px;
  }
}

.slideimg-wrap {
  counter-reset: number;
}
.slideimg {
  padding: 100px 0 80px;
}
@media screen and (max-width: 767px) {
  .slideimg {
    padding: 60px 0 60px;
  }
}

.slideimg:nth-child(odd) {
  background-color: #F7F9FC;
}
.slideimg:nth-child(even) {
  background-color: #ffffff;
}

.slideimg .container {
  max-width: 1350px!important;
}

/* columns */
@media screen and (max-width: 1049px) {
  .slideimg .columns {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
  .slideimg .columns .columns__column {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .slideimg .columns {
    max-width: 450px;
    margin: 0 auto;
  }
}
/* columns(even) */
@media screen and (min-width: 1050px) {
  .slideimg:nth-child(even) .columns .column--main {
    order: 2;
  }
  .slideimg:nth-child(even) .columns .column--slider {
    order: 1;
  }
}

/* column-slider */
@media screen and (max-width: 1049px) {
  .slideimg .columns .column--slider .column--slider__text {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .slideimg .columns .column--slider .column--slider__text {
    margin-top: 25px;
  }
}

/* link-button */
@media screen and (max-width: 1049px) {
  .slideimg .link-button {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .slideimg .link-button {
    margin-left: inherit;
    margin-right: inherit;
  }
}

/* heading */
.heading-2--point {
  position: relative;
}

@media screen and (max-width: 1049px) {
  .heading-2--point {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .heading-2--point {
    padding-top: 0;
  }
}

.heading-2.heading-2--point .heading-2__inner__main {
  position: relative;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .heading-2.heading-2--point .heading-2__inner__main {
    margin-top: 3px;
  }
}
.heading-2.heading-2--point .heading-2--point__decolation {
  display:block;
  overflow-wrap: break-word;
  counter-increment: number;
  color: #172A88;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 70px;
  line-height: 0.9;
  letter-spacing: .15em;
  position: relative;
  margin-top: -10px;
  margin-bottom: 15px;
}
.heading-2.heading-2--point .heading-2--point__decolation:after {
  content: counter(number, decimal-leading-zero);
}
@media screen and (max-width: 1049px) {
  .heading-2.heading-2--point {
    text-align: center;
    margin-bottom: 30px;
  }
  .heading-2.heading-2--point .heading-2--point__decolation {
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .heading-2.heading-2--point {
    margin-bottom: 20px;
  }
  .heading-2.heading-2--point .heading-2--point__decolation {
    font-size: 30px;
  }
}
.slideimg:nth-child(odd) .heading-2.heading-2--point .heading-2--point__decolation {
  color: #ffffff;
}
.slideimg:nth-child(even) .heading-2.heading-2--point .heading-2--point__decolation {
  color: #F7F9FC;
}

/* slider(slick) */
.slideimg .slideimg_slick.slick-dotted {
  padding-bottom: 40px;
  margin-bottom: 0;
}
.slideimg .slideimg_slick img {
  width: 100%;
  border-radius: 5px;
}
.slideimg .slick-prev,
.slideimg .slick-next {
  padding: 0px;
  font-size: 0px;
  line-height: 0;
  position: absolute;
  transform: none;
  cursor: pointer;
  border: 0px;
  width: 40px;
  height: 40px;
  background: linear-gradient(116deg, #172A88 0%, #2B69A7 100%);
  top: inherit;
  bottom: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 5;
  transition: .5s;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .slideimg .slick-prev,
  .slideimg .slick-next {
    width: 30px;
    height: 30px;
  }
}
.slideimg .slick-prev {
  left: 0;
}
.slideimg .slick-next {
  right: inherit;
  left: 50px;
}
@media screen and (max-width: 767px) {
  .slideimg .slick-next {
    left: 35px;
  }
}
.slideimg .slick-prev::before,
.slideimg .slick-next::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 9px;
  height: 13px;
  background-repeat: no-repeat;
  background-size: contain;
  transition: left .3s;
}
.slideimg .slick-prev::before {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5IiBoZWlnaHQ9IjEyLjk5OSIgdmlld0JveD0iMCAwIDkgMTIuOTk5Ij4KICA8ZyBpZD0i44Kw44Or44O844OXXzM5NzI3IiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyAzOTcyNyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAwKSI+CiAgICA8cGF0aCBpZD0i44OR44K5Xzc3MTkiIGRhdGEtbmFtZT0i44OR44K5IDc3MTkiIGQ9Ik01MTUuNTQ0LDM0NTcuOGwxLjI1OC0xLjUwOC01Ljk0Ni01LjAyNyw1Ljk0LTQuOTQ2LTEuMjQ2LTEuNTE4LTcuNzQ4LDYuNDUzWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTUwNy44MDIgLTM0NDQuNzk2KSIgZmlsbD0iI2ZmZiIvPgogIDwvZz4KPC9zdmc+');
}

.slideimg .slick-next::before {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5IiBoZWlnaHQ9IjEzIiB2aWV3Qm94PSIwIDAgOSAxMyI+CiAgPGcgaWQ9IuOCsOODq+ODvOODl18zOTcyNyIgZGF0YS1uYW1lPSLjgrDjg6vjg7zjg5cgMzk3MjciIHRyYW5zZm9ybT0idHJhbnNsYXRlKDApIj4KICAgIDxwYXRoIGlkPSLjg5HjgrlfNzcxOSIgZGF0YS1uYW1lPSLjg5HjgrkgNzcxOSIgZD0iTTUwOS4wNTksMzQ1Ny44bC0xLjI1OC0xLjUwOCw1Ljk0Ni01LjAyNy01Ljk0LTQuOTQ3LDEuMjQ2LTEuNTE4LDcuNzQ4LDYuNDUzWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTUwNy44MDIgLTM0NDQuNzk2KSIgZmlsbD0iI2ZmZiIvPgogIDwvZz4KPC9zdmc+');
}
@media screen and (max-width: 767px) {
  .slideimg .slick-prev::before,
  .slideimg .slick-next::before {
    width: 7px;
    height: 10px;
  }
}
.slideimg .slick-prev:hover,
.slideimg .slick-next:hover {
  background: linear-gradient(116deg, #2F4294 0%, #3D69A7 100%);
}
.slideimg .slick-prev:hover::before {
  left: calc(50% - 2px);
}
.slideimg .slick-next:hover::before {
  left: calc(50% + 2px);
}

.slideimg .slick-dots {
  list-style: none;
  padding: 0px;
  text-align: right;
  z-index: 2;
  width: calc(100% - 100px);
  margin-left: 100px;
  position: absolute;
  bottom: 13px;
}
@media screen and (max-width: 767px) {
  .slideimg .slick-dots {
    bottom: 8px;
  }
}
.slideimg .slick-dots li {
  position: relative;
  display: inline-block;
  padding: 0px;
  cursor: pointer;
  margin: 0 10px;
  width: 5px;
  height: 5px;
}
.slideimg .slick-dots li:last-child {
  margin-right: 0;
}
.slideimg .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border-radius: 0;
  width: 3px;
  height: 3px;
  background-color: #1E242F;
}
.slick-dots li button:before {
  display: none;
}
.slideimg .slick-dots li button:hover,
.slideimg .slick-dots li button:focus,
.slideimg .slick-dots li.slick-active button {
  width: 5px;
  height: 5px;
  background-color: #1E242F;
}
@media screen and (max-width: 767px) {
  .slideimg .slideimg_slick.slick-dotted {
    padding-bottom: 32px;
  }
  .slideimg .slick-prev,
  .slideimg .slick-next {
    width: 30px;
    height: 30px;
  }
  .slideimg .slick-next {
    left: 31px;
  }
  .slideimg .slick-dots li {
    margin: 0 7.5px;
  }
}

.slideimg .paragraph {
  letter-spacing: .1em;
}

/* section with background color */
.dnd-section-color--bg .slideimg:nth-child(even) {
  background-color: #F7F9FC;
}
.dnd-section-color--bg .slideimg:nth-child(odd) {
  background-color: #ffffff;
}
.dnd-section-color--bg .slideimg:nth-child(odd) .heading-2.heading-2--point .heading-2--point__decolation {
  color: #F7F9FC;
}
.dnd-section-color--bg .slideimg:nth-child(even) .heading-2.heading-2--point .heading-2--point__decolation {
  color: #ffffff;
}
/* ==========================================================================

    bg-image-top

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


.section-bg-image-top {
  margin-top: 80px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .section-bg-image-top {
    margin-top: 60px;
    margin-bottom: 50px;
  }
}

.bg-image-top {
    position: relative;
}

.bg-image-top__bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 420px;
    width: 100%;
}
@media screen and (max-width: 1049px) {
    .bg-image-top__bg {
        height: 300px;
    }
}

.bg-image-top__inner {
    margin-top: -70px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}
@media screen and (max-width: 767px) {
  .bg-image-top__inner {
    margin-top: -50px;
  }
}

.bg-image-top__inner:before {
  background-color: #ffffff;
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  width: 50%;
  z-index: -1;
}
/* 背景色ありのスタイル */
.dnd-section-color--bg .bg-image-top__inner:before {
  background-color: #F7F9FC;
}

.bg-image-top__inner__text {
  position: relative;
  box-sizing: border-box;
  padding-top: 60px;
  padding-right: 100px;
}
@media screen and (max-width: 1049px) {
  .bg-image-top__inner__text {
    padding-right: 50px;
  }
}
@media screen and (max-width: 767px) {
  .bg-image-top__inner__text {
    padding-top: 30px;
    padding-right: 20px;
  }
}

.bg-image-top__inner__text:before {
  background-color: #ffffff;
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  width: calc(100% + 50px);
  z-index: -1;
}
@media screen and (max-width: 1400px) {
  .bg-image-top__inner__text:before {
    width: 100%;
  }
}
/* 背景色ありのスタイル */
.dnd-section-color--bg .bg-image-top__inner__text:before {
  background-color: #F7F9FC;
}

.bg-image-top .heading-2--decoration {
  position: relative;
  padding-top: 40px;
}

.bg-image-top .heading-2--decoration .heading-2__deco {
	font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  color: #172A88;
  font-size: 70px;
  font-weight: 700;
  left: -70px;
  letter-spacing: .15em;
  line-height: 1;
  margin-bottom: 0;
  opacity: .05;
  position: absolute;
  top: 0;
  text-transform: uppercase;
}
@media screen and (max-width: 1049px) {
  .bg-image-top .heading-2--decoration .heading-2__deco {
    left: -30px;
  }
}
@media screen and (max-width: 767px) {
  .bg-image-top .heading-2--decoration .heading-2__deco {
    font-size: 30px;
    left: -10px;
  }
}

_:-ms-lang(x)::-ms-backdrop, .heading-2.bg-image-top .heading-2--decoration .heading-2__deco {
  transform: inherit;
}

.bg-image-top .heading-2--decoration .heading-2__inner {
  position: relative;
  letter-spacing: .08em;
}
.bg-image-top .heading-2--decoration .heading-2__deco::before {
  content: none;
}
/* ==========================================================================

    square_column1

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/



.square_column1 {
  padding: 90px 0;
  position: relative;
}
@media screen and (max-width: 1049px) {
  .square_column1 {
    padding: 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .square_column1 {
    padding: 120px 0 0 0;
  }
  .square_column1:not(:last-child) {
    margin-bottom: 60px;
  }
}

.square_column1 .square_column1__bg {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .square_column1 .square_column1__bg {
    width: calc(50% + 100px);
    height: calc(100% - 40px);
  }
}
@media screen and (max-width: 414px) {
  .square_column1 .square_column1__bg {
    width: calc(100% - 20px);
    max-height: 237px;
  }
}

.square_column1:nth-child(odd) .square_column1__bg {
    right: 0;
}
.square_column1:nth-child(even) .square_column1__bg {
    left: 0;
}

.square_column1 > .square_column1__inner {
  box-sizing: border-box;
  position: relative;
  z-index: 0;
  width: calc(50% + 150px);
  padding: 50px 100px;
  background-color: #ffffff;
}
/* 背景色ありのスタイル */
.dnd-section-color--bg .square_column1 > .square_column1__inner {
  background-color: #F7F9FC;
}
@media screen and (max-width: 1049px) {
  .square_column1 > .square_column1__inner {
    width: calc(50% + 200px);
    padding: 50px;
  }
}
@media screen and (max-width: 767px) {
  .square_column1 > .square_column1__inner {
    width: calc(100% - 20px);
    padding: 50px 30px 0 20px;
  }
}

.square_column1:nth-child(even) .square_column1__inner {
  margin-left: auto;
}
/* ==========================================================================

    h3_img_alternate_bg

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/








.section-h3_img_alternate_bg {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .section-h3_img_alternate_bg {
    margin-top: 60px;
  }
}
.section-h3_img_alternate_bg {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .section-h3_img_alternate_bg {
    margin-bottom: 60px;
  }
}

.heading-2.heading-2--h3_img_alternate_bg .heading-2__deco {
  text-transform: uppercase;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 70px;
  letter-spacing: .15em;
  color: #172A88;
  margin-bottom: -45px;
  opacity: .05;
}
@media screen and (max-width: 767px) {
  .heading-2.heading-2--h3_img_alternate_bg .heading-2__deco {
    font-size: 30px;
    margin-bottom: -20px;
  }
}
.heading-2.heading-2--h3_img_alternate_bg .heading-2__deco::before {
  content: none;
}
.h3_img_alternate_bg {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .h3_img_alternate_bg {
    margin-top: 30px;
  }
}

.h3_img_alternate_bg .h3_img_alternate_bg__columns {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.h3_img_alternate_bg .h3_img_alternate_bg__columns:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #F7F9FC;
  opacity: .5;
}
/* 背景色ありのスタイル */
.dnd-section-color--bg .h3_img_alternate_bg .h3_img_alternate_bg__columns:before {
  background-color: #ffffff
}
.h3_img_alternate_bg .h3_img_alternate_bg__columns .h3_img_alternate_bg__columns__column {
  box-sizing: border-box;
  position: relative;
  width: 50%;
  padding: 70px 50px;
  overflow: hidden;
}
@media screen and (max-width: 1049px) {
  .h3_img_alternate_bg .h3_img_alternate_bg__columns .h3_img_alternate_bg__columns__column {
    padding: 70px 30px;
  }
}

.h3_img_alternate_bg .h3_img_alternate_bg__columns .h3_img_alternate_bg__columns__column:first-child,
.h3_img_alternate_bg .h3_img_alternate_bg__columns .h3_img_alternate_bg__columns__column:nth-child(4n),
.h3_img_alternate_bg .h3_img_alternate_bg__columns .h3_img_alternate_bg__columns__column:nth-child(4n+1) {
  background-color: #F7F9FC;
}

/* 背景色ありのスタイル */
.dnd-section-color--bg .h3_img_alternate_bg .h3_img_alternate_bg__columns .h3_img_alternate_bg__columns__column:first-child,
.dnd-section-color--bg .h3_img_alternate_bg .h3_img_alternate_bg__columns .h3_img_alternate_bg__columns__column:nth-child(4n),
.dnd-section-color--bg .h3_img_alternate_bg .h3_img_alternate_bg__columns .h3_img_alternate_bg__columns__column:nth-child(4n+1) {
  background-color: #ffffff
}
@media screen and (max-width: 767px) {
  .h3_img_alternate_bg .h3_img_alternate_bg__columns {
    display: block;
  }
  .h3_img_alternate_bg .h3_img_alternate_bg__columns .h3_img_alternate_bg__columns__column {
    width: 100%;
    padding: 40px 30px;
  }
  .h3_img_alternate_bg .h3_img_alternate_bg__columns .h3_img_alternate_bg__columns__column:first-child,
  .h3_img_alternate_bg .h3_img_alternate_bg__columns .h3_img_alternate_bg__columns__column:nth-child(4n),
  .h3_img_alternate_bg .h3_img_alternate_bg__columns .h3_img_alternate_bg__columns__column:nth-child(4n+1) {
    background: inherit;
  }
  /* 背景色ありのスタイル */
  .dnd-section-color--bg .h3_img_alternate_bg .h3_img_alternate_bg__columns .h3_img_alternate_bg__columns__column:first-child,
  .dnd-section-color--bg .h3_img_alternate_bg .h3_img_alternate_bg__columns .h3_img_alternate_bg__columns__column:nth-child(4n),
  .dnd-section-color--bg .h3_img_alternate_bg .h3_img_alternate_bg__columns .h3_img_alternate_bg__columns__column:nth-child(4n+1) {
  background: inherit;
  }
  /* 背景色ありのスタイル */
  .dnd-section-color--bg .h3_img_alternate_bg .h3_img_alternate_bg__columns .h3_img_alternate_bg__columns__column:nth-child(odd) {
    background-color: #ffffff;
  }
  .h3_img_alternate_bg .h3_img_alternate_bg__columns .h3_img_alternate_bg__columns__column:nth-child(odd) {
    background-color: #F7F9FC;
  }
  .h3_img_alternate_bg .h3_img_alternate_bg__columns .h3_img_alternate_bg__columns__column:nth-child(even) {
    background-color: inherit;
  }
}
.h3_img_alternate_bg .h3_img_alternate_bg__columns .h3_img_alternate_bg__columns__column .h3_img_alternate_bg__columns__column__inner {
  max-width: 525px;
  margin: 0 auto;
}
.h3_img_alternate_bg .h3_img_alternate_bg__columns .h3_img_alternate_bg__columns__column .h3_img_alternate_bg__columns__column__inner .figure:not(:last-child) {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .h3_img_alternate_bg .h3_img_alternate_bg__columns .h3_img_alternate_bg__columns__column .h3_img_alternate_bg__columns__column__inner .figure:not(:last-child) {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .h3_img_alternate_bg .h3_img_alternate_bg__columns .h3_img_alternate_bg__columns__column .h3_img_alternate_bg__columns__column__inner .figure {
    max-width: 450px;
    margin: 0 auto;
  }
}
.h3_img_alternate_bg .h3_img_alternate_bg__columns .h3_img_alternate_bg__columns__column .h3_img_alternate_bg__columns__column__inner .natural {
  margin-top: 30px;
}
/* ==========================================================================

    bg-image-lr

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


.section-bg-image-lr {
  margin-bottom: 55px;
  margin-top: 55px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .section-bg-image-lr {
    margin-bottom: 40px;
    margin-top: 40px;
  }
}

.bg-image-lr {
  position: relative;
}
.bg-image-lr:not(:first-child) {
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .bg-image-lr:not(:first-child) {
    margin-top: 40px;
  }
}

.bg-image-lr__bg {
  width: calc(100% + ((100vw - 100%) / 2));
  height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 5px 0 0 0;
}
@media screen and (max-width: 1049px) {
  .bg-image-lr__bg {
    height: 280px;
  }
}
@media screen and (max-width: 767px) {
  .bg-image-lr__bg {
    position: relative;
    width: calc(100% + 40px);
    height: 176px;
    margin-left: -20px;
    border-radius: 0;
  }
}

.bg-image-lr:nth-child(even) .bg-image-lr__bg {
  margin-left: calc(((100vw - 100%) / 2) * -1);
  border-radius: 0 5px 0 0;
}

.bg-image-lr__inner {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.bg-image-lr__inner__text {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  margin-top: -56px;
  padding-top: 30px;
  background: #ffffff;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .bg-image-lr__inner__text {
    width: calc(100% - 50px);
    margin-top: -80px;
    padding-top: 55px;
  }
}
@media screen and (min-width: 1050px) {
  .bg-image-lr__inner__text {
    width: calc(100% - 100px);
    padding-top: 60px;
  }
}

.bg-image-lr:nth-child(odd) .bg-image-lr__inner__text {
  margin-left: auto;
  padding-left: 80px;
}
@media screen and (max-width: 1049px) {
  .bg-image-lr:nth-child(odd) .bg-image-lr__inner__text {
    padding-left: 50px;
  }
}
@media screen and (max-width: 767px) {
  .bg-image-lr:nth-child(odd) .bg-image-lr__inner__text {
    padding-left: 30px;
  }
}

.bg-image-lr:nth-child(even) .bg-image-lr__inner__text {
  padding-right: 80px;
}
@media screen and (max-width: 1049px) {
  .bg-image-lr:nth-child(even) .bg-image-lr__inner__text {
    padding-right: 50px;
  }
}
@media screen and (max-width: 767px) {
  .bg-image-lr:nth-child(even) .bg-image-lr__inner__text {
    padding-right: 30px;
  }
}

.bg-image-lr__inner__text::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 80px;
  background-color: #fff;
}
.bg-image-lr:nth-child(odd) .bg-image-lr__inner__text::before {
  right: -100%;
}
.bg-image-lr:nth-child(even) .bg-image-lr__inner__text::before {
  left: -100%;
}


/* 背景色ありのスタイル */
.dnd-section-color--bg .bg-image-lr__inner::before {
  background-color: #F7F9FC;
}
.dnd-section-color--bg .bg-image-lr__inner__text {
  background: #F7F9FC;
}
.dnd-section-color--bg .bg-image-lr__inner__text::before {
  background-color: #F7F9FC;
}
/* ==========================================================================

    title-wrap-columns

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/







.title-wrap-columns {
    border: 1px solid #ABAEC1;
    box-sizing: border-box;
    padding: 40px 70px;
    position: relative;
}
@media screen and (max-width: 1049px) {
    .title-wrap-columns {
        padding: 45px;
    }
}
@media screen and (max-width: 767px) {
    .title-wrap-columns {
        padding: 30px 20px;
    }
}


.section-h3_lead_border {
  padding-top: 55px;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .section-h3_lead_border {
    padding-top: 40px;
    margin-bottom: 40px;
  }
}

.title-wrap-columns:not(:first-child) {
    padding-top: 55px;
}
@media screen and (max-width: 767px) {
    .title-wrap-columns:not(:first-child) {
        padding-top: 40px;
    }
}

.title-wrap-columns:not(:last-child) {
    margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
    .title-wrap-columns:not(:last-child) {
        margin-bottom: 40px;
    }
}

.title-wrap-columns__heading {
    background-color: #F7F9FC;
    box-sizing: border-box;
    color: #1E242F;
    display: inline-block;
    font-weight: 500;
    font-size: 24px;
    left: 50%;
    letter-spacing: .1em;
    line-height: 1.5;
    max-width: calc(100% - 100px);
    min-width: 283px;
    position: absolute;
    padding: 7px 30px;
    text-align: center;
    transform: translateX(-50%);
    border-radius: 5px;
}
@media screen and (max-width: 767px) {
    .title-wrap-columns__heading {
        font-size: 18px;
        max-width: calc(100% - 90px);
        min-width: 187px;
        padding: 6px 20px;
    }
}

.section-h3_lead_border .lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #1E242F;
}
@media screen and (max-width: 767px) {
  .section-h3_lead_border .lead {
    font-size: 15px;
  }
}
.title-wrap-columns .lead:not(:last-child) {
    margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
    .title-wrap-columns .lead:not(:last-child) {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .title-wrap-columns .columns {
        max-width: 450px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 767px) {
    .title-wrap-columns .columns--two>.columns__column:not(:first-child) {
        margin-top: 20px;
    }
}

.section-h3_lead_border img {
  border-radius: 5px;
}

/* 画像なし */
@media screen and (min-width: 768px) {
  .title-wrap-columns .columns--two.no--image .columns__column {
    width: 100%;
    text-align: center;
  }
}
@charset "UTF-8";

/* home-know */

.section-home-know {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .section-home-know {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.home-know__row {
  margin-left: -20px;
  border-radius: 0 5px 5px 0
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .home-know__row {
    margin-left: 0;
    border-radius: 0;
  }
}

.home-know__row:not(:first-child) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .home-know__row:not(:first-child) {
    margin-top: 50px;
  }
}

.home-know__row__anchor {
  display: block;
  position: relative;
}
@media screen and (min-width: 768px) {
  .home-know__row__anchor:hover .home-know__row__content__box::before {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

.home-know__row__content {
  height: 398px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% calc(50% + 114px);
}
@media screen and (min-width: 768px) {
  .home-know__row__content {
    height: auto;
    background-size: cover;
    background-position: calc(50% + 150px) 50%;
  }
}
@media screen and (min-width: 1050px) {
  .home-know__row__content {
    background-position: calc(50% + 200px) 50%;
  }
}

.home-know__row__content__box {
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 228px;
  margin-right: auto;
  padding: 20px 10px 20px 30px;
  background-color: #3B4046;
}
@media screen and (min-width: 768px) {
  .home-know__row__content__box {
    width: 300px;
    min-height: 400px;
    padding-left: 50px;
  }
}
@media screen and (min-width: 1050px) {
  .home-know__row__content__box {
    width: 400px;
    min-height: 400px;
    padding-left: 60px;
  }
}

.home-know__row__content__box::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #172A88;
  transform: scale(0, 1);
  transform-origin: right top;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transition: -webkit-transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transition: transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transition: transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99), -webkit-transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

.home-know__row__content__box__inner {
  position: relative;
  z-index: 1;
}

.home-know__row__content__box__inner__heading {
  color: #ffffff;
}

.home-know__row__content__box__inner__heading__decoration-text {
  display: block;
  font-size: 2.5rem;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  letter-spacing: .2em;
  font-weight: 700;
}

.home-know__row__content__box__inner__heading__text {
  display: block;
  margin-top: 9px;
  font-size: 1.6rem;
  letter-spacing: .15em;
  line-height: 2em;
}

.home-know__row__content__box__inner .link-text {
  margin-top: 23px;
}

.home-know__row__content__box__inner .link-text__anchor {
  color: #ffffff;
}

.home-know__row__content__box__inner .link-text__anchor__icon__arrow {
  fill: #ffffff;
}

.home-know__row__content__box__inner .link-text__anchor:hover .link-text__anchor__icon__arrow {
  fill: #ffffff;
}

.home-know__row--reverse {
  margin-left: 0;
  margin-right: -20px;
  border-radius: 5px 0 0 5px;
}

@media screen and (min-width: 768px) {
  .home-know__row--reverse {
    margin-right: 0;
    border-radius: 0;
  }
}

@media screen and (min-width: 768px) {
  .home-know__row--reverse .home-know__row__content {
    height: auto;
    background-position: calc(50% - 200px) 50%;
  }
}

.home-know__row--reverse .home-know__row__content__box {
  margin-left: auto;
  margin-right: 0;
}

.home-know__row--reverse .home-know__row__content__box::before {
  transform-origin: left top;
}

@media screen and (min-width: 768px) {
  .home-know__row--reverse .home-know__row__anchor:hover .home-know__row__content__box::before {
    transform-origin: right top;
  }
}
@charset "UTF-8";

/* home-conversion */

.section-home-conversion {
  margin-top: 60px;
  margin-bottom: 60px;
}

@media screen and (min-width: 768px) {
  .section-home-conversion {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}


.home-conversion__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -20px;
  margin-right: -20px;
}

@media screen and (min-width: 768px) {
  .home-conversion__columns {
    margin-left: 0;
    margin-right: 0;
    border-radius: 5px;
    overflow: hidden;
  }
}

.home-conversion__columns__column {
  width: 50%;
}

.home-conversion__anchor {
  display: block;
  height: 100%;
  background-color: #172A88;
}

@media screen and (min-width: 768px) {
  .home-conversion__anchor:hover .home-conversion__content__box::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  .home-conversion__anchor:hover .home-conversion__content--reverse .home-conversion__content__box::before {
    transform-origin: left bottom;
    transform: scale(1, 1);
  }
}

.home-conversion__content {
  box-sizing: border-box;
  position: relative;
  padding-bottom: 190px;
}

@media screen and (min-width: 768px) {
  .home-conversion__content {
    padding-bottom: 150px;
  }
}

.home-conversion__content__image {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding-top: 190px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (min-width: 768px) {
  .home-conversion__content__image {
    padding-top: 150px;
  }
}

.home-conversion__content--reverse {
  display: flex;
  align-items: flex-end;
  padding-top: 190px;
  padding-bottom: 0;
}

@media screen and (min-width: 768px) {
  .home-conversion__content--reverse {
    padding-top: 150px;
  }
}

.home-conversion__content--reverse .home-conversion__content__image {
  bottom: auto;
  top: 0;
}

.home-conversion__content--reverse .home-conversion__content__box::before {
  transform-origin: left top;
}

.home-conversion__content__box {
  display: flex;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  margin-right: auto;
  padding: 50px 15px 40px;
  background-color: #172A88;
}
@media screen and (min-width: 768px) {
  .home-conversion__content__box {
    padding: 60px 50px;
  }
}

.home-conversion__content__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1E242F;
  transform: scale(1, 0);
  transform-origin: left bottom;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transition: -webkit-transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transition: transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transition: transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99), -webkit-transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

.home-conversion__content__box__inner {
  position: relative;
  z-index: 1;
}

.home-conversion__content__box__inner__heading {
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .home-conversion__content__box__inner__heading {
    margin-bottom: 40px;
  }
}

.home-conversion__content__box__inner__heading__text {
  display: block;
  font-size: 1.8rem;
  letter-spacing: .2em;
  line-height: 1.5em;
}
@media screen and (min-width: 768px) {
  .home-conversion__content__box__inner__heading__text {
    font-size: 2.4rem;
  }
}

.home-conversion__content__box__inner__heading__decoration-text {
  display: block;
  margin-top: 11px;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .2em;
}
@media screen and (min-width: 768px) {
  .home-conversion__content__box__inner__heading__decoration-text {
    font-size: 1.4rem;
  }
}
/* ==========================================================================

    map

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


.section-map {
	margin-bottom: 40px;
	margin-top: 40px;
}
@media screen and (max-width: 767px) {
	.section-map {
		margin-bottom: 20px;
		margin-top: 20px;
	}
}

.map .hs-responsive-embed-inner-wrapper {
	width: 100%;
	height: 0;
	position: relative;
	padding-bottom: 56.2% !important;
  border-radius: 5px;
}

.map iframe {
	width: 100% !important;
	height: 100% !important;
	top: 0 !important;
	left: 0 !important;
	position: absolute !important;
}
@charset "utf-8";

/* CTA 画像バナー */

.section-cta {
  margin-top: 60px;
  margin-bottom: 60px;
}

@media screen and (min-width: 768px) {
  .section-cta {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}


.cta__anchor,
.cta a {
  display: block;
}

.cta__anchor img,
.cta a img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: middle;
  margin-left: auto;
  margin-right: auto;
}

.cta:not(:first-child) {
  margin-top: 60px;
}

@media screen and (min-width: 768px) {
  .cta:not(:first-child) {
    margin-top: 80px;
  }
}

.cta:not(:last-child) {
  margin-bottom: 60px;
}

@media screen and (min-width: 768px) {
  .cta:not(:last-child) {
    margin-bottom: 80px;
  }
}


/* CTA（テキスト） */

.section-cta-text {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .section-cta-text {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.cta-text-wrap {
  position: relative;
  box-sizing: border-box;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .cta-text-wrap {
    padding-bottom: 40px;
  }
}
.cta-text-wrap .container {
  position: relative;
}
@media screen and (max-width: 767px) {
  .cta-text-wrap .container {
    padding-right: 0;
    padding-left: 0;
  }
}


.cta-text-wrap:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 90px);
  background-color: #0C1931;
}

.cta-text {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .cta-text {
    border-radius: 0;
  }
}
.cta-text::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #0C1931;
  opacity: 60%;
  transition: .5s;
}
.cta-text:hover::after {
  background: linear-gradient(107deg, #172A88 0%, #457BBA80 100%);
  opacity: 1;
}

.cta-text__bg {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: .5s;
}
.cta-text:hover .cta-text__bg {
  transform: scale(1.05);
}

.cta-text .cta_button {
  display: block;
  position: relative;
  z-index: 3;
  padding: 60px 80px 50px 80px;
  color: #ffffff;
}
@media screen and (max-width: 1049px) {
  .cta-text .cta_button {
    padding: 66px 40px 50px 40px;
  }
}
@media screen and (max-width: 767px) {
  .cta-text .cta_button {
    padding: 40px 20px 40px 20px;
  }
}

.cta_button_decoeation {
  background: linear-gradient(104deg, #172A88 0%, #2B69A7 100%);
  position: absolute;
  top: -15px;
  left: 180px;
  padding: 14px 40px;
  text-align: center;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  color: #ffffff;
  letter-spacing: .25em;
  border-radius: 5px;
  transition: .5s;
  z-index: 3;
}
@media screen and (max-width: 1049px) {
  .cta_button_decoeation {
    left: 100px;
  }
}
@media screen and (max-width: 767px) {
  .cta_button_decoeation {
    padding: 14px 40px;
    font-size: 13px;
    top: -20px;
    left: 20px;
    padding: 8px 30px;
  }
}


.cta_button_decoeation::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 10px;
  background: linear-gradient(114deg, #214B98 0%, #204796 100%);
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}
.cta-text .cta_button__title {
  display: block;
  padding-bottom: 34px;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .cta-text .cta_button__title {
    font-size: 22px;
  }
}
.cta-text .cta_button__title span {
  position: relative;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
}
.cta-text .cta_button__title span::after {
  content: "";
  position: absolute;
  top: calc(100% + 11px);
  left: 0;
  display: block;
  background-color: #172A88;
  width: 30px;
  height: 2px;
}

.cta-text .cta_button__text {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 2em;
}
@media screen and (min-width: 768px){
  .cta-text .cta_button__text {
    font-size: 1.7rem;
  }
}

.cta-text .link-button:not(:first-child) {
  margin-top: 36px;
}

/* 中央寄せのスタイル */
.cta-text--center .cta-text .cta_button__title span::after {
  left: 50%;
  transform: translateX(-50%);
}
.cta-text--center .cta_button__title,
.cta-text--center .cta_button__text {
  text-align: center;
}
.cta-text--center .link-button {
  margin-left: auto;
  margin-right: auto;
}
.cta-text--center .cta_button_decoeation {
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1050px){
  .cta-text:hover .link-button__anchor::after {
    right: 1.5rem;
  }
}
@charset "UTF-8";

/* glossary-index */

.section-glossary-index {
  margin-top: 50px;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .section-glossary-index {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.section-glossary-index .heading-2__deco {
  display: none;
}

.glossary-index__list--line .glossary-index__list__item {
  padding-bottom: 50px;
  border-bottom: 1px solid #ABAEC1;
}
.glossary-index__list--line .glossary-index__list__item:not(:first-child) {
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .glossary-index__list--line .glossary-index__list__item {
    padding-bottom: 60px;
  }
  .glossary-index__list--line .glossary-index__list__item:not(:first-child) {
    padding-top: 60px;
  }
}

.glossary-index__list__item .heading-2 {
  margin-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .glossary-index__list__item .heading-2 {
    margin-bottom: 50px;
  }
}

.glossary-index__list__item .heading-3 {
  margin-bottom: 35px;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .glossary-index__list__item .heading-3 {
    margin-bottom: 50px;
    font-size: 2.8rem;
  }
}

@media screen and (min-width: 768px) {
  .glossary-index__list__item__word-list {
    display: flex;
    flex-wrap: wrap;
  }
}

.glossary-index__list__item__word-list__item {
  box-sizing: border-box;
  width: 100%;
}
.glossary-index__list__item__word-list__item.heading-link:not(:last-child) {
  margin-bottom: 0;
}
.glossary-index__list__item__word-list__item:nth-child(n+2) {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .glossary-index__list__item__word-list__item {
    width: calc(50% - 20px);
  }
  .glossary-index__list__item__word-list__item:nth-child(n+2) {
    margin-top: 0;
  }
  .glossary-index__list__item__word-list__item:nth-child(n+3) {
    margin-top: 40px;
  }
  .glossary-index__list__item__word-list__item:not(:nth-child(2n)) {
    margin-right: 40px;
  }
}
@media screen and (min-width: 1050px) {
  .columns--three .glossary-index__list__item__word-list__item {
    width: calc(33.3% - 26.6px);
  }
  .columns--four .glossary-index__list__item__word-list__item {
    width: calc(25% - 30px);
  }
  .glossary-index__list__item__word-list__item:nth-child(n+3) {
    margin-top: 0;
  }
  .columns--three .glossary-index__list__item__word-list__item:nth-child(n+4) {
    margin-top: 40px;
  }
  .columns--four .glossary-index__list__item__word-list__item:nth-child(n+5) {
    margin-top: 40px;
  }
  .glossary-index__list__item__word-list__item:not(:nth-child(2n)) {
    margin-right: 0;
  }
  .columns--three .glossary-index__list__item__word-list__item:not(:nth-child(3n)) {
    margin-right: 40px;
  }
  .columns--four .glossary-index__list__item__word-list__item:not(:nth-child(4n)) {
    margin-right: 40px;
  }
}

.glossary-index__list__item__word-list__item.heading-link a {
  padding-left: 26px;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: .1em;
}
@media screen and (min-width: 768px) {
  .glossary-index__list__item__word-list__item.heading-link a {
    padding-left: 30px;
    font-size: 1.6rem;
  }
}
.glossary-index__list__item__word-list__item.heading-link a:before {
  top: 2px;
  width: 18px;
  height: 18px;
}
@media screen and (min-width: 768px) {
  .glossary-index__list__item__word-list__item.heading-link a:before {
    top: 3px;
    width: 20px;
    height: 20px;
  }
}

.glossary-index__list__item__word-list__item.heading-link a .heading-link__icon {
  top: 8px;
  left: 7px;
  width: 3px;
  height: 5.25px;
}
@media screen and (min-width: 768px) {
  .glossary-index__list__item__word-list__item.heading-link a .heading-link__icon {
    top: 10px;
    left: 8px;
    width: 5px;
    height: 6px;
    transition: left .3s;
  }
}
@media screen and (min-width: 1050px) {
  .glossary-index__list__item__word-list__item.heading-link a:hover .heading-link__icon {
    left: 10px;
  }
}
/* ==========================================================================

    anchor_link

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


.sub-navigation {
  display: flex;
  flex-wrap: wrap;
}

/* アンカーリンク */

.section-anchor {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .section-anchor {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
.linkin-page {
  display: flex;
  flex-wrap: wrap;
  align-items:stretch;
}
@media screen and (max-width: 1049px) {
  .linkin-page {
    margin-right: 0;
    margin-left: 0;
  }
}

.linkin-page:not(:first-child) {
  margin-top: 60px
}
@media screen and (max-width: 767px) {
  .linkin-page:not(:first-child) {
    margin-top: 40px;
  }
}

.linkin-page:not(:last-child) {
  margin-bottom: 40px
}
@media screen and (max-width: 767px) {
  .linkin-page:not(:last-child) {
    margin-bottom: 40px
  }
}

.linkin-page__item {
  box-sizing: border-box;
  width: 100%;

}
@media screen and (min-width: 768px) {
  .linkin-page__item {
    width: calc(50% - 10px);
  }
}
@media screen and (min-width: 1050px) {
  .linkin-page__item {
    width: calc(25% - 15px);
  }
}

.linkin-page__item:not(:first-child) {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .linkin-page__item:not(:first-child) {
    margin-top: 0;
  }
  .linkin-page__item:nth-child(n+3) {
    margin-top: 20px;
  }
  .linkin-page__item:not(:nth-child(2n)) {
    margin-right: 20px;
  }
}
@media screen and (min-width: 1050px) {
  .linkin-page__item:nth-child(n+3) {
    margin-top: 0;
  }
  .linkin-page__item:not(:nth-child(2n)) {
    margin-right: 0;
  }
  .linkin-page__item:nth-child(n+5) {
    margin-top: 20px;
  }
  .linkin-page__item:not(:nth-child(4n)) {
    margin-right: 20px;
  }
}

.linkin-page__item a {
  display: flex;
  align-items: center;
  height: 100%;
  border: 1px solid #ABAEC1;
  text-decoration: none;
  transition: .5s;
}
@media screen and (max-width: 767px) {
  .linkin-page__item a {
    display: block;
  }
}
@media screen and (min-width: 1050px) {
  .linkin-page__item a:hover {
    border: 1px solid #172A88;
  }
}

.linkin-page__item__text {
  display: block;
  width: 100%;
  color: #3B4046;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .1em;
  transition: .5s;
}
@media screen and (min-width: 768px) {
  .linkin-page__item__text {
    font-size: 1.6rem;
  }
}

@media screen and (min-width:1050px) {
  .linkin-page__item a:hover .linkin-page__item__text {
    color: #172A88;
  }
}

.linkin-page__item__text__inner {
  display: block;
  position: relative;
  padding: 19px 40px 19px 20px;
}
@media screen and (min-width: 768px) {
  padding: 21px 43px 21px 25px;
}

.linkin-page__item a .linkin-page__item__text__inner::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% - 2px);
  right: 18px;
  width: 7px;
  height: 7px;
  border-right: solid 1px #3B4046;
  border-bottom: solid 1px #3B4046;
  transform: translateY(-50%) rotate(45deg);
  transition: .5s;
}
@media screen and (min-width: 768px) {
  .linkin-page__item a .linkin-page__item__text__inner::before {
    right: 20px;
  }
}
@media screen and (min-width:1050px) {
  .linkin-page__item a:hover .linkin-page__item__text__inner::before {
    border-color: #172A88;
  }
}


/* 目次のスタイル */
.section-index {
  margin-top: 50px;
  margin-bottom: 50px;
}

.sub-navigation--anchor {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: -20px;
}
@media screen and (max-width: 1049px) {
  .sub-navigation--anchor {
    margin-right: 0;
    margin-left: 0;
  }
}

.sub-navigation--anchor:not(:first-child) {
  margin-top: 40px
}
@media screen and (max-width: 767px) {
  .sub-navigation--anchor:not(:first-child) {
    margin-bottom: 30px;
  }
}
.sub-navigation--anchor:not(:last-child) {
  margin-bottom: 40px
}
@media screen and (max-width: 767px) {
  .sub-navigation--anchor:not(:last-child) {
    margin-bottom: 30px
  }
}

.sub-navigation--anchor__item {
  box-sizing: border-box;
  width: 10%;
  margin-top: 20px;
}
@media screen and (min-width: 1050px) {
  .sub-navigation--anchor__item:nth-child(10n+10) a {
    border-right: 1px solid #ABAEC1;
  }
}

.sub-navigation--anchor__item a {
  display: block;
  position: relative;
  padding: 18px 10px;
  border-left: 1px solid #ABAEC1;
  text-align: center;
  text-decoration: none;
}
.sub-navigation--anchor__item:last-child a {
  border-right: 1px solid #ABAEC1!important;
}

.sub-navigation--anchor__item a::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 2px;
  left: calc(50% - 2.5px);
  width: 7px;
  height: 7px;
  border-right: solid 1px #1E242F;
  border-bottom: solid 1px #1E242F;
  transform: rotate(45deg);
  transition: .5s;
}
@media screen and (min-width: 1050px) {
  .sub-navigation--anchor__item a:hover::before {
    border-right: solid 1px #172A88;
    border-bottom: solid 1px #172A88;
  }
}

.sub-navigation--anchor__item__text {
  display: block;
  color: #1E242F;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  transition: .5s;
}
@media screen and (max-width:767px) {
  .sub-navigation--anchor__item__text {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1050px) {
  .sub-navigation--anchor__item a:hover .sub-navigation--anchor__item__text {
    color: #172A88;
  }
}

@media screen and (max-width:1049px) {
  .sub-navigation--anchor__item {
    flex: inherit;
    box-sizing: border-box;
    width: 20%;
    margin-top: 0;
    padding: 0;
  }
  .sub-navigation--anchor__item:nth-child(n+6) {
    margin-top: 30px;
  }
  .sub-navigation--anchor__item:nth-child(5n) a {
    border-right: 1px solid #ABAEC1;
  }

}
@media screen and (max-width:767px) {
  .sub-navigation--anchor__item {
    width: 25%;
    padding: 0;
  }
  .sub-navigation--anchor__item a {
    padding: 13px 5px;
    font-size: 1.4rem;
  }
  .sub-navigation--anchor__item:nth-child(5n) a {
    border-right: none;
  }
  .sub-navigation--anchor__item:nth-child(n+6) {
    margin-top: 0;
  }
  .sub-navigation--anchor__item:nth-child(n+5) {
    margin-top: 20px;
  }
  .sub-navigation--anchor__item:nth-child(4n) a {
    border-right: 1px solid #ABAEC1;
  }
}
/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/








.section-3_4column_img_h_txt_btn {
  margin-top: 55px;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .section-3_4column_img_h_txt_btn {
    margin-top: 35px;
    margin-bottom: 35px;
  }
}
/* .columns--to-one（共通） */
@media screen and (max-width: 767px) {
  .section-3_4column_img_h_txt_btn .columns--to-one > .columns__column:not(:first-child) {
    margin-top: 35px;
  }
}
.section-3_4column_img_h_txt_btn .columns__column__inner.columns__column__inner--bg {
  padding: 30px;
  background-color: #F7F9FC;
  border-radius: 0 0 5px 5px;
}
@media screen and (max-width:1049px) {
  .section-3_4column_img_h_txt_btn .columns__column__inner.columns__column__inner--bg {
    padding: 25px 20px;
  }
}
.section-3_4column_img_h_txt_btn .figure img {
  vertical-align: bottom;
  border-radius: 5px 5px 0 0;
}
@media screen and (min-width: 1050px) {
  .section-3_4column_img_h_txt_btn .bl-hover .link-text__anchor {
    color: #172A88;
  }
  .section-3_4column_img_h_txt_btn .bl-hover .link-text__anchor .link-text__anchor__icon__arrow {
    fill: #172A88;
  }
  .section-3_4column_img_h_txt_btn .bl-hover .heading-link a {
    color: #172A88;
  }
  .section-3_4column_img_h_txt_btn .bl-hover .heading-link a::before {
    background-color: #172A88;
  }
}

/* .columns--to-one.columns--two */
.section-3_4column_img_h_txt_btn .columns.columns--to-one.columns--two .columns__column__inner.columns__column__inner--bg {
  padding: 45px 30px;
}
.section-3_4column_img_h_txt_btn .columns.columns--to-one.columns--two .heading-link {
  margin-top: 35px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .section-3_4column_img_h_txt_btn .columns.columns--to-one.columns--two .heading-link {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}

/* .columns--to-one.columns--three */
.section-3_4column_img_h_txt_btn .columns.columns--to-one.columns--three .columns__column {
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 767px) {
  .section-3_4column_img_h_txt_btn .columns.columns--to-one.columns--three .columns__column {
    padding-left: 0;
    padding-right: 0;
  }
}

/* 背景色ありのスタイル */
.dnd-section-color--bg .section-3_4column_img_h_txt_btn .columns__column__inner.columns__column__inner--bg {
  background-color: #fff;
}
/* ==========================================================================

    bsc_29_general_section-b

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


.section-2column_img_h_txt_btn {
  margin-top: 80px;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
	.section-2column_img_h_txt_btn {
    margin-top: 60px;
    margin-bottom: 30px;
	}
}

.section-2column_img_h_txt_btn__wrap--border {
  border: 1px solid #ABAEC1;
  padding: 50px;
  font-size: 20px;
  letter-spacing: .17em;
  line-height: 1.5;
}
@media screen and (max-width: 1049px) {
  .section-2column_img_h_txt_btn__wrap--border {
    padding: 45px;
  }
}
@media screen and (max-width: 767px) {
  .section-2column_img_h_txt_btn__wrap--border {
    padding: 35px 25px;
  }
}

.section-2column_img_h_txt_btn .columns:not(:first-child) {
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .section-2column_img_h_txt_btn .columns:not(:first-child) {
    margin-top: 40px;
  }
}

.section-2column_img_h_txt_btn .heading-2::before {
  margin-top: 0;
}

.section-2column_img_h_txt_btn .heading-subtitle:before {
  top: 6px;
}
.section-2column_img_h_txt_btn .section-2column_img_h_txt_btn__wrap--border .heading-subtitle:before {
  top: 8px;
}

.section-2column_img_h_txt_btn .figure img {
  border-radius: 5px;
}
.section-2column_img_h_txt_btn .figcaption {
  color: #3B4046;
}

.check-list-columns {
  margin-left: -25px;
  margin-right: -25px;
}
@media screen and (max-width: 767px) {
  .check-list-columns {
    margin-left: 0;
    margin-right: 0;
  }
}
.check-list-columns:not(:first-child) {
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  .check-list-columns:not(:first-child) {
    margin-top: 25px;
  }
}

.check-list-columns > .columns__column {
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 767px) {
  .check-list-columns > .columns__column {
    padding-left: 0;
    padding-right: 0;
  }
}

.check-list:not(:last-child) {
  margin-bottom: 20px;
}

.check-list .check-list__item {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .17em;
  line-height: 2;
  padding-left: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .check-list .check-list__item {
    font-size: 15px;
  }
}

.check-list .check-list__item:not(:last-child) {
  margin-bottom: 10px;
}

.check-list .check-list__item .check-list__item__icon {
  height: 20px;
  left: 0;
  position: absolute;
  top: 7px;
  width: 20px;
}
@media screen and (max-width: 767px) {
  .check-list .check-list__item .check-list__item__icon {
    height: 18px;
    top: 6px;
    width: 18px;
  }
}
.check-list .check-list__item .check-list__item__icon__path {
  fill: #1E242F;
}
@charset "UTF-8";

/* home-main */

.section-home-main {
  margin-top: 60px;
  margin-bottom: 60px;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .section-home-main {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.home-main__row:not(:first-child) {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .home-main__row:not(:first-child) {
    margin-top: 50px;
  }
}

.home-main__row__content {
  background-size: cover;
  background-position: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 75px 20px;
  margin-right: calc(((100vw - 100%) / 2) * -1);
  position: relative;
}
@media screen and (min-width: 768px) {
  .home-main__row__content {
    padding: 100px 50px;
  }
}
@media screen and (min-width: 1050px) {
  .home-main__row__content {
    padding: 100px 80px;
  }
}

.home-main__row__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0C1931;
  border-radius: 5px 0 0 5px;
  opacity: 60%;
}

.home-main__row__content__box {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.home-main__row--reverse .home-main__row__content {
  margin-right: 0;
  margin-left: calc(((100vw - 100%) / 2) * -1);
  padding-left: calc((100vw - 100%) / 2);
}
.home-main__row--reverse .home-main__row__content::before {
  border-radius: 0 5px 5px 0;
}

.section-home-main .heading-2__deco {
  padding-left: 30px;
}
.section-home-main .heading-2__deco::before {
  background-image:url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjIiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAyMiAxMSI+CiAgPGRlZnM+CiAgICA8Y2xpcFBhdGggaWQ9ImNsaXAtcGF0aCI+CiAgICAgIDxyZWN0IGlkPSLplbfmlrnlvaJfMTIzMjIiIGRhdGEtbmFtZT0i6ZW35pa55b2iIDEyMzIyIiB3aWR0aD0iMjIiIGhlaWdodD0iMTEiIGZpbGw9IiNmZmYiLz4KICAgIDwvY2xpcFBhdGg+CiAgPC9kZWZzPgogIDxnIGlkPSLjgrDjg6vjg7zjg5dfMTMwNzAiIGRhdGEtbmFtZT0i44Kw44Or44O844OXIDEzMDcwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIj4KICAgIDxnIGlkPSLjgrDjg6vjg7zjg5dfMTI3ODQiIGRhdGEtbmFtZT0i44Kw44Or44O844OXIDEyNzg0IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIiBjbGlwLXBhdGg9InVybCgjY2xpcC1wYXRoKSI+CiAgICAgIDxwYXRoIGlkPSLjg5HjgrlfNzcxNyIgZGF0YS1uYW1lPSLjg5HjgrkgNzcxNyIgZD0iTTUuOCwxMC45ODJhMi4zNzIsMi4zNzIsMCwwLDEtMS43NjgtLjczOSwyLjIsMi4yLDAsMCwxLS42NDItMS44NDksMi41ODUsMi41ODUsMCwwLDEsLjU4OC0xLjM0NEM0LjkyMiw1LjksNy4yLDMuODE3LDcuNiwzLjM0OGMuMTMxLS4xNTMuOTI3LS45NDguNTE5LTEuNDEyLS40ODMtLjU0OS0xLjQ2NS40NDktMS40NjUuNDQ5TDEuMTE5LDcuNTYsMCw2LjM5NSw2LjA3Ni41NUEyLjM4OCwyLjM4OCwwLDAsMSw2LjkyOC4xLDIuMzI2LDIuMzI2LDAsMCwxLDkuMDYuNTA4YTIuNDIzLDIuNDIzLDAsMCwxLC44NzgsMS44MjYsMi42ODIsMi42ODIsMCwwLDEtLjc1MywxLjcyYy0uMzY2LjM4NC0yLjg3MywzLjE0OC0zLjQwNywzLjctLjU1NS41ODctLjcsMS4wMTctLjQwNiwxLjQuMjkzLjM1Ljg0NS4xNzQsMS40MjctLjMyNS41ODYtLjY0OSw1LjYxNy01LjYsNy45LTcuODYzYTIuNTc1LDIuNTc1LDAsMCwxLC43NjktLjU0LDIuMjUsMi4yNSwwLDAsMSwyLjU2NS41MTZjLjkzNywxLjEwOC45ODMsMi4yNC0uNzMsNC4wNzMtLjc0OC43NjgtMi4zNDMsMi40NjUtMy4wMTMsMy4yYS41ODYuNTg2LDAsMCwwLS4wNjIuODQ4LjY0NS42NDUsMCwwLDAsLjkyMi0uMDc5bDUuNjM1LTUuNjQ4TDIyLDQuNTUzUzE3Ljc4OSw5LDE2LjIzOSwxMC4zMjZhMi41ODgsMi41ODgsMCwwLDEtMy40MTYuMDMxLDIuMjY3LDIuMjY3LDAsMCwxLS4zOTItMi4yQTMuNCwzLjQsMCwwLDEsMTMuMjcsNi44Yy42NzUtLjY5MSwyLjI3My0yLjMyMSwyLjk3NS0zLjA0OS44OTItLjk0Ljg0Mi0xLjM4Ny41ODItMS42NS0uNTM3LS41Mi0xLjU3OS43NDQtMS41NzkuNzQ0QzEzLjU0MSw0LjUzOCw4Ljc2LDkuMjc4LDguMTcyLDkuOTNhMy4zLDMuMywwLDAsMS0yLjM0OSwxLjA1OVoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgMCkiIGZpbGw9IiNmZmYiLz4KICAgIDwvZz4KICA8L2c+Cjwvc3ZnPg==');
  width: 22px;
  height: 11px;
}
/* ==========================================================================

    bg-on-text

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/



.section-bg-on-text {
	margin-bottom: 80px;
	margin-top: 80px;
}
@media screen and (max-width: 767px) {
	.section-bg-on-text {
		margin-bottom: 60px;
		margin-top: 60px;
	}
}

.bg-on-text {
	display: flex;
  align-items: center;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
	width: 100%;
	min-height: 320px;
	padding: 50px 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
@media screen and (max-width: 767px) {
	.bg-on-text {
		padding: 30px 0 40px 0;
	}
}

.bg-on-text::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0C1931;
  border-radius: 5px;
	opacity: 60%;
	transition: .5s;
}
.bg-on-text.bl-hover::before {
	opacity: .5;
}
.bg-on-text.bg-on-text--overall::before {
  border-radius: 0;
}

.bg-on-text__container {
	padding-left: 80px;
	padding-right: 80px;
}
@media screen and (max-width: 1049px) {
  .bg-on-text__container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 767px) {
  .bg-on-text__container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.section-bg-on-text .heading-2__deco::before {
  background-image:url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjIiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAyMiAxMSI+CiAgPGRlZnM+CiAgICA8Y2xpcFBhdGggaWQ9ImNsaXAtcGF0aCI+CiAgICAgIDxyZWN0IGlkPSLplbfmlrnlvaJfMTIzMjIiIGRhdGEtbmFtZT0i6ZW35pa55b2iIDEyMzIyIiB3aWR0aD0iMjIiIGhlaWdodD0iMTEiIGZpbGw9IiNmZmYiLz4KICAgIDwvY2xpcFBhdGg+CiAgPC9kZWZzPgogIDxnIGlkPSLjgrDjg6vjg7zjg5dfMTI3ODQiIGRhdGEtbmFtZT0i44Kw44Or44O844OXIDEyNzg0IiBjbGlwLXBhdGg9InVybCgjY2xpcC1wYXRoKSI+CiAgICA8cGF0aCBpZD0i44OR44K5Xzc3MTciIGRhdGEtbmFtZT0i44OR44K5IDc3MTciIGQ9Ik01LjgsMTAuOTgyYTIuMzcyLDIuMzcyLDAsMCwxLTEuNzY4LS43MzksMi4yLDIuMiwwLDAsMS0uNjQyLTEuODQ5LDIuNTg1LDIuNTg1LDAsMCwxLC41ODgtMS4zNDRDNC45MjIsNS45LDcuMiwzLjgxNyw3LjYsMy4zNDhjLjEzMS0uMTUzLjkyNy0uOTQ4LjUxOS0xLjQxMi0uNDgzLS41NDktMS40NjUuNDQ5LTEuNDY1LjQ0OUwxLjExOSw3LjU2LDAsNi4zOTUsNi4wNzYuNTVBMi4zODgsMi4zODgsMCwwLDEsNi45MjguMSwyLjMyNiwyLjMyNiwwLDAsMSw5LjA2LjUwOGEyLjQyMywyLjQyMywwLDAsMSwuODc4LDEuODI2LDIuNjgyLDIuNjgyLDAsMCwxLS43NTMsMS43MmMtLjM2Ni4zODQtMi44NzMsMy4xNDgtMy40MDcsMy43LS41NTUuNTg3LS43LDEuMDE3LS40MDYsMS40LjI5My4zNS44NDUuMTc0LDEuNDI3LS4zMjUuNTg2LS42NDksNS42MTctNS42LDcuOS03Ljg2M2EyLjU3NSwyLjU3NSwwLDAsMSwuNzY5LS41NCwyLjI1LDIuMjUsMCwwLDEsMi41NjUuNTE2Yy45MzcsMS4xMDguOTgzLDIuMjQtLjczLDQuMDczLS43NDguNzY4LTIuMzQzLDIuNDY1LTMuMDEzLDMuMmEuNTg2LjU4NiwwLDAsMC0uMDYyLjg0OC42NDUuNjQ1LDAsMCwwLC45MjItLjA3OWw1LjYzNS01LjY0OEwyMiw0LjU1M1MxNy43ODksOSwxNi4yMzksMTAuMzI2YTIuNTg4LDIuNTg4LDAsMCwxLTMuNDE2LjAzMSwyLjI2NywyLjI2NywwLDAsMS0uMzkyLTIuMkEzLjQsMy40LDAsMCwxLDEzLjI3LDYuOGMuNjc1LS42OTEsMi4yNzMtMi4zMjEsMi45NzUtMy4wNDkuODkyLS45NC44NDItMS4zODcuNTgyLTEuNjUtLjUzNy0uNTItMS41NzkuNzQ0LTEuNTc5Ljc0NEMxMy41NDEsNC41MzgsOC43Niw5LjI3OCw4LjE3Miw5LjkzYTMuMywzLjMsMCwwLDEtMi4zNDksMS4wNTlaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIiBmaWxsPSIjZmZmIi8+CiAgPC9nPgo8L3N2Zz4=');
}
.section-bg-on-text .text-center .heading-2__deco {
  padding-bottom: 21px;
}
.section-bg-on-text .text-center .heading-2__deco::before {
  width: 22px;
  height: 11px;
}

.bg-on-text__inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  .bg-on-text__inner .heading-2:not(:last-child) {
    margin-bottom: 20px;
	}
}

.section-bg-on-text .bg-on-text .bg-on-text__inner .link-text .link-text__anchor {
  color: #ffffff;
}
.section-bg-on-text .bg-on-text .bg-on-text__inner .link-text .link-text__anchor:hover .link-text__anchor__icon__arrow {
  fill: #ffffff;
}

.bg-on-text__inner__text {
	color: #ffffff;
	margin: 0 auto;
	max-width: 950px;
}

.bg-on-text__inner__text p {
	color: #ffffff;
}

.bg-on-text .link-text:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .bg-on-text .link-text:not(:first-child) {
    margin-top: 35px;
  }
}


/* === center */
.bg-on-text--center {
  justify-content: center;
	max-width: 1050px;
	margin: 0 auto;
}
.bg-on-text--center .bg-on-text__inner {
	max-width: none;
}

@media screen and (min-width: 768px) {
	.bg-on-text--center .link-text,
	.bg-on-text--center .heading-2 {
		text-align: center;
	}
}

@media screen and (max-width: 1449px) {
	.bg-on-text--center {
		width: calc(100% - 200px);
	}
}
@media screen and (max-width: 1049px) {
	.bg-on-text--center {
		width: calc(100% - 100px);
	}
}
@media screen and (max-width: 767px) {
	.bg-on-text--center {
    width: calc(100% - 40px);
		max-width: 1050px;
		margin: 0 auto;
	}
}
/* center === */


/* === 全幅背景 */
.bg-on-text--button {
	padding: 100px 0 80px 0;
}
@media screen and (max-width: 767px) {
	.bg-on-text--button {
		padding: 60px 0 40px 0;
	}
}
@media screen and (max-width: 1049px) {
	.bg-on-text--button .bg-on-text__container {
    padding-left: 0;
    padding-right: 0;
	}
}

.section-bg-on-text .bg-on-text__inner .link-button--center {
  margin-left: auto;
  margin-right: auto;
}
/* 全幅背景 === */
@charset "utf-8";

/* home-sub */

.section-home-sub {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .section-home-sub {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.home-sub {
  position: relative;
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .home-sub {
    padding-top: 80px;
  }
}

.home-sub::before {
  content: '';
  width: 100%;
  height: 90%;
  position: absolute;
  top: 0;
  left: 50%;
  background-color: #F7F9FC;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .home-sub::before {
    height: 78%;
  }
}
/* 背景色ありのスタイル */
.dnd-section-color--bg .home-sub::before {
  background-color: #fff;
}

.home-sub__inner {
  position: relative;
  z-index: 2;
}

.home-sub__columns {
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .home-sub__columns {
    display: flex;
  }
}
.home-sub__columns:not(:first-child) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .home-sub__columns:not(:first-child) {
    margin-top: 50px;
  }
}

.home-sub__columns__column:not(:first-child) {
  margin-top: 1px;
}
@media screen and (min-width: 768px) {
  .home-sub__columns__column:not(:first-child) {
    margin-top: 0;
    margin-left: 1px;
  }
}

.home-sub__content {
  display: block;
  position: relative;
}

.home-sub__content__image {
  overflow: hidden;
}

.home-sub__content__image img {
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transition: -webkit-transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transition: transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transition: transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99), -webkit-transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

a:hover .home-sub__content__image img {
  transform: scale(1.1);
}

.home-sub__content__image::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0C1931;
  opacity: 60%;
}

.home-sub__content__heading {
  font-size: 1.8rem;
  letter-spacing: .2em;
  line-height: 1.5em;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 100%;
  color: #ffffff;
  transform: translateY(-50%);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .home-sub__content__heading {
    font-size: 2.2rem;
  }
}

.home-sub__content__heading__decoration-text {
  display: block;
  color: #ffffff;
  font-size: 1.1rem;
  letter-spacing: .35em;
  line-height: 1.5em;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .home-sub__content__heading__decoration-text {
    font-size: 1.4rem;
  }
}
/* ==========================================================================

    h2_btn_img_widebg

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/







.section-h2_btn_img_widebg {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .section-h2_btn_img_widebg {
    margin-top: 40px;
  }
}
.section-h2_btn_img_widebg {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .section-h2_btn_img_widebg {
    margin-bottom: 40px;
  }
}


.h2_btn_img_widebg {
  min-height: 485px;
  position: relative;
  box-sizing: border-box;
  padding: 50px 0 70px 0;
}
.h2_btn_img_widebg:not(:first-child) {
  margin-top: 70px;
}
@media screen and (max-width: 1049px) {
  .h2_btn_img_widebg {
    padding: 0 0 70px 0;
  }
}
@media screen and (max-width: 767px) {
  .h2_btn_img_widebg {
    padding: 0 0 30px 0;
  }
 .h2_btn_img_widebg:not(:first-child) {
    margin-top: 40px;
  }
  .h2_btn_img_widebg .container,
  .h2_btn_img_widebg .row-fluid [class*="span"] .container {
    min-width: inherit!important;
  }
}
@media screen and (max-width: 599px) {
  .h2_btn_img_widebg:not(:first-child) {
     margin-top: 30px;
   }
}

.h2_btn_img_widebg:before {
  content: "";
  position: absolute;
  display: block;
  z-index: 0;
  bottom: 0;
  background-color: #F7F9FC;
  width: calc(100% - 100px);
  height: calc(100% - 50px);
}
.h2_btn_img_widebg .container {
  position: relative;
  z-index: 1;
}
/* 背景色ありのスタイル */
.dnd-section-color--bg .h2_btn_img_widebg:before {
  background-color: #fff;
}
@media screen and (max-width: 1049px) {
  .h2_btn_img_widebg:before {
    height: 100%;
    width: calc(100% - 200px);
  }
}

@media screen and (max-width: 767px) {
  .h2_btn_img_widebg:before {
    width: calc(100% - 317px);
  }
}
@media screen and (max-width: 599px) {
  .h2_btn_img_widebg:before {
    width: calc(100% - 40px);
  }
}


.h2_btn_img_widebg .columns {
  z-index: 1;
}
@media screen and (max-width: 1049px) {
  .h2_btn_img_widebg .columns--two>.columns__column {
    width: calc(100% - 70px);
  }
  .h2_btn_img_widebg:nth-child(even) .columns--two>.columns__column {
    margin-left: 70px;
  }
}
@media screen and (max-width: 767px) {
  .h2_btn_img_widebg .columns--two>.columns__column {
    width: calc(100% - 277px);
  }
  .h2_btn_img_widebg:nth-child(even) .columns--two>.columns__column {
    margin-left: 277px;
  }
  .h2_btn_img_widebg .columns--two>.columns__column .link-button {
    max-width: 240px;
  }
}
@media screen and (max-width: 599px) {
  .h2_btn_img_widebg .columns--two>.columns__column {
    width: 100%;
  }
  .h2_btn_img_widebg:nth-child(even) .columns--two>.columns__column {
    margin-left: 0;
  }
}

.h2_btn_img_widebg:nth-child(even) .columns .columns__column:nth-child(1) {
  order: 2;
}
.h2_btn_img_widebg:nth-child(even) .columns .columns__column:nth-child(2) {
  order: 1;
}

.h2_btn_img_widebg:nth-child(odd):before {
  left: 0;
  border-radius: 0 5px 5px 0;
}
.h2_btn_img_widebg:nth-child(even):before {
  right: 0;
  border-radius: 5px 0 0 5px;
}

@media screen and (max-width: 767px) {
  .h2_btn_img_widebg:nth-child(odd):after {
    right: 0;
  }
}

.h2_btn_img_widebg .heading-2 {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .h2_btn_img_widebg .heading-2 {
    margin-top: 0;
    padding-top: 50px;
  }
}
@media screen and (max-width: 1049px) {
  .h2_btn_img_widebg .heading-2 {
    margin-bottom: 30px;
    width: calc(100% - 130px);
  }
  .h2_btn_img_widebg .paragraph {
    width: calc(100% - 130px);
  }
  .h2_btn_img_widebg:nth-child(even) .heading-2,
  .h2_btn_img_widebg:nth-child(even) .paragraph,
  .h2_btn_img_widebg:nth-child(even) .link-button {
    margin-left: 130px;
  }
}
@media screen and (max-width: 767px) {
  .h2_btn_img_widebg .heading-2 {
    margin-bottom: 20px;
    width: calc(100% - 40px);
  }
  .h2_btn_img_widebg .paragraph {
    width: calc(100% - 40px);
  }
  .h2_btn_img_widebg:nth-child(even) .heading-2,
  .h2_btn_img_widebg:nth-child(even) .paragraph,
  .h2_btn_img_widebg:nth-child(even) .link-button {
    margin-left: 40px;
  }
  .h2_btn_img_widebg:nth-child(odd) .link-button {
    margin-right: 40px;
  }
}


.h2_btn_img_widebg .view--is-desktop.figure {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: calc(50% - 25px);
  height: 415px;
  top: 0;
  margin-top: 0;
}
@media screen and (max-width: 1199px) {
  .h2_btn_img_widebg .view--is-desktop.figure {
    height: 297px;
  }
}
.h2_btn_img_widebg:nth-child(odd) .view--is-desktop.figure {
  right: 0;
  margin-top: 0;
  border-radius: 5px 0 0 5px;
}
.h2_btn_img_widebg:nth-child(even) .view--is-desktop.figure {
  left: 0;
  margin-top: 0;
  border-radius: 0 5px 5px 0;
}
.h2_btn_img_widebg .figure.view--is-laptop-lower {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: left;
}
.h2_btn_img_widebg:nth-child(even) .figure.view--is-laptop-lower {
  margin-top: 0;
  text-align: right;
}
@media screen and (max-width: 1049px) {
  .h2_btn_img_widebg .figure img {
    border-radius: 5px;
  }
}
@media screen and (max-width: 767px) {
  .h2_btn_img_widebg .figure.view--is-laptop-lower img {
    max-width: 450px;
  }
}
/* ==========================================================================

    h2_btn_img_bg

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/








.section-h2_btn_img_bg {
  margin-top: 80px;
  margin-bottom: 80px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .section-h2_btn_img_bg {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.h2_btn_img_bg {
  position: relative;
  box-sizing: border-box;
}
.h2_btn_img_bg:not(:first-child) {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .h2_btn_img_bg:not(:first-child) {
    margin-top: 30px;
  }
}

.h2_btn_img_bg .figure {
  position: relative;
  width: calc(100% + 50px);
  padding-bottom: 50px;
}
@media screen and (max-width: 1049px) {
  .h2_btn_img_bg .figure {
    width: 100%;
  }
}
@media screen and (max-width:414px) {
  .h2_btn_img_bg .figure {
    padding-bottom: 0;
  }
}
.h2_btn_img_bg:nth-child(even) .figure {
  left: -50px;
}
@media screen and (max-width: 1049px) {
  .h2_btn_img_bg:nth-child(even) .figure {
    left: 0;
  }
}

.h2_btn_img_bg .figure.view--is-palmtop {
  margin-bottom: 20px;
}

.h2_btn_img_bg .figure::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 270px;
  background-color: #F7F9FC;
  border-radius: 5px;
}
@media screen and (max-width: 1049px) {
  .h2_btn_img_bg .figure::before {
    height: 152px;
  }
}
@media screen and (max-width:414px) {
  .h2_btn_img_bg .figure::before {
    bottom: -130px;
    height: 164px;
  }
}
/* 背景色ありのスタイル */
.dnd-section-color--bg .h2_btn_img_bg .figure::before {
  background-color: #ffffff;
}

.h2_btn_img_bg:nth-child(odd) .figure::before {
  left: -100px;
}
@media screen and (max-width:414px) {
  .h2_btn_img_bg:nth-child(odd) .figure::before {
    left: -20px;
  }
}
.h2_btn_img_bg:nth-child(even) .figure::before {
  right: -100px;
}
@media screen and (max-width:414px) {
  .h2_btn_img_bg:nth-child(even) .figure::before {
    right: -20px;
  }
}

.h2_btn_img_bg .figure img {
  position: relative;
  z-index: 1;
  border-radius: 5px;
}

.h2_btn_img_bg .columns {
  z-index: 1;
}

.h2_btn_img_bg .heading-2,
.h2_btn_img_bg .paragraph,
.h2_btn_img_bg .button {
  position: relative;
  z-index: 2;
}

.h2_btn_img_bg .heading-2:not(:first-child) {
  margin-top: 0.25em;
}

.h2_btn_img_bg .columns--two .columns__column:first-child {
  z-index: 2;
}

@media screen and (min-width:415px) and (max-width:767px) {
  .h2_btn_img_bg .columns--two {
    max-width: 500px;
  }
  .h2_btn_img_bg:nth-child(even) .columns--two {
    margin-left: auto;
  }
  .h2_btn_img_bg .columns--two > .columns__column .view--is-palmtop {
    display: none !important;
  }
  .h2_btn_img_bg .columns--two > .columns__column.view--is-desktop-lower {
    display: block !important;
  }
}
@media screen and (max-width:414px) {
  .h2_btn_img_bg .columns--two {
    margin-left: 0;
    margin-right: 0
  }
  .h2_btn_img_bg .columns--two > .columns__column {
    flex: auto;
    width: 100%;
    padding: 0;
  }
  .h2_btn_img_bg .columns--two > .columns__column:not(:first-child) {
    flex: auto;
    margin-top: 30px;
  }
  .h2_btn_img_bg .columns--two > .columns__column:not(:last-child) {
    flex: auto;
    margin-bottom: 0;
  }
  .h2_btn_img_bg .heading-2:not(:first-child) {
    margin-top: 25px;
    margin-bottom: 20px;
  }
}

.h2_btn_img_bg:nth-child(odd)::before {
  left: 0;
}
.h2_btn_img_bg:nth-child(even)::before {
  right: 0;
}

.h2_btn_img_bg:nth-child(even) .columns .columns__column:nth-child(1) {
  order: 2;
}
.h2_btn_img_bg:nth-child(even) .columns .columns__column:nth-child(2) {
  order: 1;
}

.h2_btn_img_bg .columns__column.view--is-desktop-lower {
  position: relative;
}
/* ==========================================================================

    square_column2

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/







.section-bgimg_on_h3_p {
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .section-bgimg_on_h3_p {
    margin-top: 40px;
  }
}
.section-bgimg_on_h3_p {
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .section-bgimg_on_h3_p {
    margin-bottom: 40px;
  }
}
.square_column2 {
  position: relative;
  background-color: #F7F9FC;
  border-radius: 5px;
}
.square_column2:nth-child(odd) {
  margin-left: 100px;
}
.square_column2:nth-child(even) {
  margin-right: 100px;
}
.square_column2:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .square_column2 {
    padding-top: 40px;
  }
  .square_column2:nth-child(odd) {
    margin-left: 20px;
  }
  .square_column2:nth-child(even) {
    margin-right: 20px;
  }
}

.square_column2 .square_column2__image {
    position: absolute;
    top: 50px;
    height: 100%;
    max-height: 278px;
    width: calc(50% + 25px);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
@media screen and (max-width: 1049px) {
  .square_column2 .square_column2__image {
    max-height: 174px;
  }
}
@media screen and (max-width: 767px) {
  .square_column2 .square_column2__image {
    position: initial;
    min-height: auto;
    max-height: 100%;
    width: 100%;
  }
  .square_column2:nth-child(odd) .square_column2__image {
    margin-left: -20px;
  }

  .square_column2:nth-child(even) .square_column2__image {
    margin-left: 20px;
  }
}

.square_column2:nth-child(odd) .square_column2__image {
    left: -100px;
}

.square_column2:nth-child(even) .square_column2__image {
    right: -100px;
}

.square_column2 .square_column2__image img {
  display: block;
  width: 100%;
  border-radius: 5px;
}

.square_column2 > .square_column2__inner {
  position: relative;
  min-height: 382px;
  padding: 60px;
  width: calc(50% + 75px);
  margin-left: auto;
  box-sizing: border-box;
}
@media screen and (max-width: 1049px) {
  .square_column2 > .square_column2__inner {
    padding: 60px 50px 50px;
    width: calc(50% + 75px);
    margin-left: calc(50% - 75px);
  }
}
@media screen and (max-width: 767px) {
  .square_column2 > .square_column2__inner {
    min-height: inherit;
    padding: 25px 30px 40px;
    width: calc(100% - 20px);
    margin-left: 0;
  }
}
.square_column2:nth-child(even) .square_column2__inner {
  margin-left: 0;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .square_column2:nth-child(even) .square_column2__inner {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .square_column2 .square_column2__inner .heading-3:not(:last-child) {
    margin-top: 0;
    margin-bottom: 20px;
  }
}

/* 背景色ありのスタイル */
.dnd-section-color--bg .square_column2 > .square_column2__inner {
  background-color: #ffffff;
}
/* ==========================================================================

    case-introduction

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/







.section-img_bg_on_h3_p {
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .section-img_bg_on_h3_p {
    margin-top: 40px;
  }
}
.section-img_bg_on_h3_p {
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .section-img_bg_on_h3_p {
    margin-bottom: 40px;
  }
}

.case-introduction:not(:first-child) {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .case-introduction:not(:first-child) {
    margin-top: 40px;
  }
}

.columns.case-introduction__columns {
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 60px;
  margin-left: 0;
  margin-right: 0;
}
.case-introduction:nth-child(even) .columns.case-introduction__columns {
  flex-direction: row-reverse;
}

.case-introduction__heading .heading-3 {
  margin-top: 0;
}
.case-introduction__heading__decoration {
  margin-bottom: 14px;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 4.0rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
  color: #ABAEC1;
}
@media screen and (max-width: 767px) {
  .case-introduction__heading__decoration {
    margin-bottom: 10px;
    font-size: 3.0rem;
  }
}

.columns__column.case-introduction__columns__column--img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 0;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .columns__column.case-introduction__columns__column--img {
    width: 100%;
  }
}
.case-introduction__columns__column--img img {
  display: block;
  width: 100%;
  border-radius: 5px;
}

.columns.case-introduction__columns .columns__column.case-introduction__columns__column--text {
  width: 50%;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .columns.case-introduction__columns .columns__column.case-introduction__columns__column--text {
    width: 100%;
    margin-top: 16px;
  }
}
.case-introduction:nth-child(odd) .case-introduction__columns__column--text {
  margin-right: 0;
}
.case-introduction:nth-child(even) .case-introduction__columns__column--text {
  margin-left: 0;
}
.case-introduction__columns__column--text__wrap {
  padding-top: 36px;
}
@media screen and (max-width: 767px) {
  .case-introduction__columns__column--text__wrap {
    padding-top: 26px;
  }
}
@media screen and (max-width: 1049px) {
  .case-introduction:nth-child(odd) .case-introduction__columns__column--text {
    padding: 255px 0 30px 30px;
  }
  .case-introduction:nth-child(even) .case-introduction__columns__column--text {
    padding: 255px 30px 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .case-introduction__columns__column--text {
    width: 100%;
  }
  .case-introduction:nth-child(odd) .case-introduction__columns__column--text {
    margin-left: 0;
    padding: 270px 0 20px 20px;
  }
  .case-introduction:nth-child(even) .case-introduction__columns__column--text {
    margin-left: 0;
    padding: 270px 20px 20px 0;
  }
}

.case-introduction__columns__column--text .link-text {
  margin-top: 34px;
}
@media screen and (max-width: 767px) {
  .case-introduction__columns__column--text .link-text {
    margin-top: 27px;
  }
}
/* ==========================================================================

    relation-link

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/








.section-3column_h2_link_txt_bgimg {
  margin-top: 45px;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .section-3column_h2_link_txt_bgimg {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.relation-link .heading-2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .relation-link .heading-2 {
    margin-bottom: 25px;
  }
}

.relation-link .bg_img-columns {
  display: grid;
  row-gap: 45px;
}
@media screen and (max-width: 1049px) {
  .relation-link .bg_img-columns {
    row-gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .relation-link .bg_img-columns {
    row-gap: 0;
  }
}
.relation-link .bg_img-columns.columns--two {
  grid-template-columns: repeat(2, 1fr);
}
.relation-link .bg_img-columns.columns--three {
  grid-template-columns: repeat(3, 1fr);
}
.relation-link .bg_img-columns.columns--four {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1049px) {
  .relation-link .bg_img-columns.columns--four {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .relation-link .bg_img-columns.columns--two,
  .relation-link .bg_img-columns.columns--three,
  .relation-link .bg_img-columns.columns--four {
    grid-template-columns: 1fr;
  }
}

.relation-link .bg_img-columns__column {
  position: relative;
  box-sizing: border-box;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.relation-link .bg_img-columns__column::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: #0C1931;
  transition: .5s;
  opacity: 60%;
}

@media screen and (min-width: 1050px) {
  .relation-link .bg_img-columns__column.bl-hover::before {
    background-color: #1E242F;
    opacity: .6;
  }
}

.relation-link .bg_img-columns__column .heading-link a::before {
  background: transparent;
  border: 1px solid #fff;
}

.relation-link .bg_img-columns__column .heading-link a .heading-link__icon__path {
  fill: #fff;
}

.relation-link .bg_img-columns__column .heading-3 {
  position: relative;
}
@media screen and (max-width: 1049px) {
  .relation-link .bg_img-columns__column .heading-3:not(:last-child) {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .relation-link .bg_img-columns__column .heading-3:not(:last-child) {
    margin-bottom: 15px;
  }
}

.relation-link .bg_img-columns__column .heading-link__inner {
  color: #ffffff;
}

.relation-link .bg_img-columns__column .natural p,
.relation-link .bg_img-columns__column .paragraph {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

/* .relation-link--1 */
.section-3column_h2_link_txt_bgimg .relation-link--1.bg_img-columns__column {
  padding: 60px 55px 80px;
}
@media screen and (max-width: 1449px) {
  .section-3column_h2_link_txt_bgimg .relation-link--1.bg_img-columns__column {
    padding: 60px 40px;
  }

}
@media screen and (max-width: 1049px) {
  .section-3column_h2_link_txt_bgimg .relation-link--1.bg_img-columns__column {
    padding: 50px 40px;
  }
}
@media screen and (max-width: 767px) {
  .section-3column_h2_link_txt_bgimg .relation-link--1.bg_img-columns__column {
    padding: 40px 20px 50px 20px;
  }
}


/* .relation-link--2 */
.section-3column_h2_link_txt_bgimg .relation-link--2.bg_img-columns__column {
  padding: 98px 80px;
}
@media screen and (max-width: 1049px) {
  .section-3column_h2_link_txt_bgimg .relation-link--2.bg_img-columns__column {
    padding: 98px 20px;
  }
}
@media screen and (max-width: 767px) {
  .section-3column_h2_link_txt_bgimg .relation-link--2.bg_img-columns__column {
    padding: 70px 35px;
  }
}

.section-3column_h2_link_txt_bgimg .relation-link--2 .bg_img-columns__column__inner {
  display: table;
  width: 100%;
  height: 100%;
}
.section-3column_h2_link_txt_bgimg .relation-link--2 .bg_img-columns__column__inner .heading-3 {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.section-3column_h2_link_txt_bgimg .relation-link--2 .heading-link a {
  padding-bottom: 40px;
  padding-left: 0;
}
.section-3column_h2_link_txt_bgimg .relation-link--2 .heading-link a::before {
  top: inherit;
  bottom: 0;
  left: calc(50% - 14px);
}
@media screen and (max-width: 767px) {
  .section-3column_h2_link_txt_bgimg .relation-link--2 .heading-link a::before {
    left: calc(50% - 12px);
  }
}

.section-3column_h2_link_txt_bgimg .relation-link--2 .heading-link .heading-link__icon {
  top: inherit;
  bottom: 10px;
  left: 50%;
}
.section-3column_h2_link_txt_bgimg .relation-link--2.bl-hover .heading-link .heading-link__icon {
  left: calc(50% + 2px);
}
@media screen and (max-width: 767px) {
  .section-3column_h2_link_txt_bgimg .relation-link--2 .heading-link .heading-link__icon {
    bottom: 9px;
  }
}

.section-3column_h2_link_txt_bgimg .heading-3 .heading-link__icon {
  top: 14px;
  left: 12px;
}
@media screen and (max-width: 767px) {
  .section-3column_h2_link_txt_bgimg .heading-3 .heading-link__icon {
    top: 10px;
    left: 11px;
  }
}
@charset "UTF-8";

/* case-others */

.section-case-others {
  margin-top: 30px;
  margin-bottom: 45px;
}

@media screen and (min-width: 768px) {
  .section-case-others {
    margin-top: 45px;
    margin-bottom: 60px;
  }
}

.case-others__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.case-others__list__item {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .case-others__list__item {
    width: calc(100% / 2);
  }
}

@media screen and (min-width: 1050px) {
  .case-others__list__item {
    width: calc(100% / 3);
  }
}
.case-others__list__item:nth-child(n+2) {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .case-others__list__item:nth-child(n+2) {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .case-others__list__item:nth-child(n+2) {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .case-others__list__item:nth-child(n+3) {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1050px) {
  .case-others__list__item:nth-child(n+3) {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .case-others__list__item:nth-child(n+4) {
    margin-top: 50px;
  }
}


.case-others__list__item__card {
  display: block;
}
.case-others__list__item__card:hover .link-text__anchor {
  color: #172A88;
}
.case-others__list__item__card:hover .link-text__anchor .link-text__anchor__icon__arrow {
  fill: #172A88;
}

.case-others__list__item__card__head {
  position: relative;
}

.case-others__list__item__card__head__image {
  overflow: hidden;
}

.case-others__list__item__card__head__image img {
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transition: -webkit-transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transition: transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transition: transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99), -webkit-transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

a:hover .case-others__list__item__card__head__image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.case-others__list__item__card__head__image::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0C1931;
  opacity: 60%;
  border-radius: 5px;
}

.case-others__list__item__card__head__heading {
  padding: 0 20px;
  box-sizing: border-box;
  font-size: 2.2rem;
  letter-spacing: .1em;
  line-height: 1.5em;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 100%;
  color: #ffffff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}

.case-others__list__item__card__body {
  padding: 28px 10px 0 10px;
}

@media screen and (min-width: 768px) {
  .case-others__list__item__card__body {
    padding: 28px 25px 0 25px;
  }
}

.case-others__list__item__card__body__number {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  letter-spacing: .25em;
  line-height: 1.5em;
}
/* ==========================================================================

    point

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/








.section-point_h2_h3_bg {
  margin-top: 55px;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .section-point_h2_h3_bg {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.point {
  counter-reset: number;
}

.point .point-columns {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
@media screen and (max-width: 1049px) {
  .point .point-columns {
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .point .point-columns .point-columns__column:not(:first-child) {
    margin-top: 20px;
  }
}

.point .point-columns .point-columns__column {
  box-sizing: border-box;
  width: 33.333%;
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (max-width: 1049px) {
  .point .point-columns .point-columns__column {
    flex: auto;
    width: 100%;
    padding: 0;
  }
  .point .point-columns .point-columns__column:not(:first-child) {
    flex: auto;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .point .point-columns .point-columns__column:not(:first-child) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1050px) {
  .point .point-columns .point-columns__column:nth-child(n+4) {
    margin-top: 30px;
  }
}

.point .point-columns .point-columns__column .point-columns__column__inner {
  box-sizing: border-box;
  position: relative;
  height: 100%;
  padding: 16px 30px 40px;
  background-color: #F7F9FC;
  border-radius: 5px;
}
@media screen and (max-width: 1049px) {
  .point .point-columns .point-columns__column .point-columns__column__inner{
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .point .point-columns .point-columns__column .point-columns__column__inner{
    padding: 12px 30px 30px;
  }
}

.point .point-columns .point-columns__column .point-columns__column__inner .paragraph{
  padding: 0 10px;
  letter-spacing: .1em;
}
.point .point-columns .point-columns__column .point-columns__column__inner .link-text{
  padding: 0 10px;
}
@media screen and (max-width: 1049px) {
  .point .point-columns .point-columns__column .point-columns__column__inner .paragraph{
    padding: 0;
  }
  .point .point-columns .point-columns__column .point-columns__column__inner .link-text{
    padding: 0;
  }
}

/* 背景色ありのスタイル */
.dnd-section-color--bg .point .point-columns .point-columns__column .point-columns__column__inner {
  background-color: #fff;
}

.point .point-columns .point-columns__column .point-columns__column__inner::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: calc(50% - 15px);
  width: 30px;
  height: 3px;
  background-color:  #172A88;
  border-radius: 2px;
}

/* 背景色ありのスタイル */
@media screen and (max-width: 767px) {
  .point .point-columns .point-columns__column .point-columns__column__inner:before {
    width: 20px;
    left: calc(50% - 10px);
  }
}

.point .heading-3.heading-3--point {
  margin-bottom: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .point .heading-3.heading-3--point {
    margin-bottom: 20px;
  }
}
.point .heading-3.heading-3--point::before {
  content: none;
}

.point .heading-3.heading-3--point .heading-3--point__main {
  display: block;
  letter-spacing: .1em;
}

.point .heading-3.heading-3--point .heading-3--point__decolation {
  display: block;
  position: relative;
  top: 0;
  width: auto;
  margin-bottom: 8px;
  color: #172A88;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .25em;
  line-height: 1.5;
  font-weight: 700;
}

.point .heading-3.heading-3--point .heading-3--point__decolation::after {
  display: block;
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  font-size: 2.6rem;
  letter-spacing: .1em;
}
@media screen and (max-width: 767px) {
  .point .heading-3.heading-3--point .heading-3--point__decolation:after {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .point .heading-3.heading-3--point .heading-3--point__decolation {
    font-size: 1.1rem;
  }
}

.section-point_h2_h3_bg .figure.point-columns__figure {
  max-width: 350px;
  margin: 20px auto 16px;
}
@media screen and (min-width: 768px) {
  .section-point_h2_h3_bg .figure.point-columns__figure {
    margin-bottom: 20px;
  }
}

.section-point_h2_h3_bg .figure.point-columns__figure img {
  border-radius: 5px;
}
/* ==========================================================================

  icon-list

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/







.section-3column_icon_txt_link {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .section-3column_icon_txt_link {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.section-3column_icon_txt_link:first-child {
  margin-top: 0;
}
.section-3column_icon_txt_link:last-child {
  margin-bottom: 0;
}

.icon-list {
  display: flex;
  flex-wrap: wrap;
  counter-reset: number;
}

.icon-list__item {
  position: relative;
  z-index: 0;
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 1049px) and (min-width: 768px) {
  .icon-list__item {
    width: calc(50% - 12.5px);
    margin-bottom: 0;
  }
  .icon-list__item:nth-child(odd) {
    margin-right: 25px;
  }
  .icon-list__item:nth-child(n+3) {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1050px) {
  .icon-list__item {
    width: calc(33.3333% - 20px);
    margin-bottom: 0;
  }
  .icon-list__item:not(:nth-child(3n+3)) {
    margin-right: 30px;
  }
  .icon-list__item:nth-child(n+4) {
    margin-top: 30px;
  }
}

.icon-list__item__inner {
  display: block;
  box-sizing: border-box;
  height: 100%;
  padding: 25px 30px 30px;
  background-color: #F7F9FC;
  transition: background-color .5s;
}
/* 背景色ありのスタイル */
.dnd-section-color--bg .icon-list__item__inner {
  background-color: #fff;
}
@media screen and (min-width: 1050px) {
  a.icon-list__item__inner:hover {
    background-color: #172A88;
  }
}

.icon-list__item__title {
  display: flex;
  align-items: center;
}
.icon-list__item__title:not(:last-child) {
  margin-bottom: 20px;
}

/* title icon */
.icon-list__item__title__icon {
  position: relative;
  height: 50px;
  max-width: 100px;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .icon-list__item__title__icon {
    height: 42px;
  }
}

.icon-list__item__title__icon__src {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  transition: opacity .5s;
}
.icon-list__item .icon-list__item__title__icon__src--hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
/* hover style */
@media screen and (min-width: 1050px) {
  a.icon-list__item__inner:hover .icon-list__item__title__icon__src {
    opacity: 0;
  }
  a.icon-list__item__inner:hover .icon-list__item__title__icon__src--hover {
    opacity: 1;
  }
}

.icon-list__item__title__text {
  width: calc(100% - 75px);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
  transition: color .5s;
}
@media screen and (max-width: 767px) {
  .icon-list__item__title__text {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1050px) {
  a.icon-list__item__inner:hover .icon-list__item__title__text {
    color: #ffffff;
  }
}


.icon-list__item .paragraph {
  transition: color .5s;
}
@media screen and (min-width: 1050px) {
  a.icon-list__item__inner:hover .paragraph {
    color: #ffffff;
  }
}
/* ==========================================================================

    logo-area

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/







.section-logo-area {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .section-logo-area {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}


.logo-area {
	box-sizing: border-box;
	position: relative;
	width: calc(100% - 100px);
	margin: 0 auto;
	padding: 130px 30px 0;
	font-size: 1.7rem;
}
@media screen and (max-width: 1049px) {
	.logo-area {
		padding: 130px 50px 0;
	}
}
@media screen and (max-width: 767px) {
	.logo-area {
		padding: 130px 20px 0;
		width: 100%;
		font-size: 1.5rem;
	}
}

.logo-area.logo-area--bg-none {
	width: 100%;
	padding: 0;
}

@media screen and (max-width: 767px) {
	.logo-area.logo-area--bg-none {
		padding: 0;
	}
}

.logo-area.logo-area--bg-none .logo-area__inner__iamge {
	padding-top: 0;
}

.logo-area .logo-area__bg {
  position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 270px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
  border-radius: 5px;
}
@media screen and (max-width: 1450px) {
	.logo-area .logo-area__bg {
		left: 50%;
		transform: translateX(-50%);
	}
}
@media screen and (max-width: 767px) {
  .logo-area .logo-area__bg {
    border-radius: 0;
  }
}
.logo-area .logo-area__inner {
  box-sizing: border-box;
	position: relative;
	max-width: 890px;
	margin: 0 auto;
	padding: 0 80px;
	border-radius: 5px;
	background-color: #ffffff;
}
@media screen and (max-width: 767px) {
	.logo-area .logo-area__inner {
		padding: 0 25px;
	}
}

.logo-area .logo-area__inner:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 140px;
	border-radius: 5px 5px 0 0;
}

.logo-area .logo-area__inner__iamge {
	position: relative;
	padding-top: 40px;
	text-align: center;
}
@media screen and (max-width: 767px) {
	.logo-area .logo-area__inner__iamge {
		padding-top: 30px;
	}
}

.logo-area .logo-area__inner__iamge img {
	max-width: 500px;
}
@media screen and (max-width: 767px) {
	.logo-area .logo-area__inner__iamge img {
		max-width: 194px;
	}
}

.logo-area .logo-area__inner__iamge:not(:last-child) {
	margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
	.logo-area .logo-area__inner__iamge:not(:last-child) {
		margin-bottom: 20px;
	}
}

.logo-area .logo-area__inner__text .paragraph {
	position: relative;
  color: #1E242F;
  font-size: 1.7rem;
	font-weight: 500;
	letter-spacing: .1em;
	line-height: 2;
}
@media screen and (max-width: 767px) {
	.logo-area .logo-area__inner__text .paragraph {
		font-size: 1.5rem;
	}
}

/* 背景あり */
.dnd-section-color--bg .logo-area .logo-area__inner {
  background-color: #F7F9FC;
}
@charset "UTF-8";

/* case-lead */

.section-case-lead {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .section-case-lead {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.case-lead {
  background-color: #F7F9FC;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .case-lead {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* 背景色ありのスタイル */
.dnd-section-color--bg .case-lead {
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .case-lead__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -25px;
    margin-right: -25px;
  }
}

@media screen and (min-width: 768px) {
  .case-lead__block__image {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.case-lead__block__image__box {
  width: 150px;
  height: 150px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 5px;
}

@media screen and (min-width: 768px) {
  .case-lead__block__image__box {
    width: 200px;
    height: 200px;
  }
}

@media screen and (min-width: 1050px) {
  .case-lead__block__image__box {
    width: 250px;
    height: 250px;
  }
}

.case-lead__block__image__box__logo img {
  max-width: 100%;
  vertical-align: bottom;
}
/* IE対応 */
@media all and (-ms-high-contrast: none) {
  .case-lead__block__image__box__logo {
    min-width: 100%;
    text-align: center;
  }
}

.case-lead__block__text {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .case-lead__block__text {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.case-lead__block__text__heading {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5em;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .case-lead__block__text__heading {
    margin-top: 10px;
  }
}

.case-lead__block__text__heading::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * .5em);
}

.case-lead__block__text__heading::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * .5em);
}

@media screen and (min-width: 768px) {
  .case-lead__block__text__heading {
    font-size: 3.2rem;
  }
}

.case-lead__block__text__client {
  border-top: 1px solid #3B4046;
  padding-top: 20px;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .case-lead__block__text__client {
    margin-top: 45px;
  }
}

.case-lead__block__text__client__name {
  font-size: 1.6rem;
  line-height: 1.5em;
}

.case-lead__block__text__client__name.natural p {
  line-height: 1.5em;
}
@charset "UTF-8";

/* home-message */
/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


.section-home-message {
  margin-top: 60px;
  margin-bottom: 60px;
}

@media screen and (min-width: 768px) {
  .section-home-message {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.home-message__heading {
  font-size: 1.4rem;
  letter-spacing: .35em;
  line-height: 1.5em;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  position: relative;
}

@media screen and (min-width: 768px) {
  .home-message__heading {
    font-size: 1.6rem;
  }
}

.home-message__heading::before {
  content: '';
  display: block;
  width: calc((100vw - 100%) / 2);
  height: 1px;
  position: absolute;
  top: 0;
  right: 100%;
  border-top: 1px solid #1E242F;;
}

.home-message__heading__inner {
  display: inline-block;
  font-weight: 700;
  border-top: 1px solid #1E242F;;
  padding-top: 15px;
  padding-right: 10px;
  text-transform: uppercase;
  letter-spacing: .25em
}
@charset "UTF-8";

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


/* history */
.section-history {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .section-history {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.history {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 55px;
}
@media screen and (max-width: 767px) {
  .history {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 35px;
  }
}

.history::before {
  content: "";
  position: absolute;
  left: 7.5px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #EFB134
}
@media screen and (max-width: 767px) {
  .history::before {
    left: 6.5px;
  }
}

.heading-3-history {
  position: relative;
  color: #1E242F;
  font-size: 2.4rem;
}

.heading-3-history::before {
  content: "";
  position: absolute;
  left: -54.5px;
  top: 17px;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: #EFB134;
}
@media screen and (max-width: 767px) {
  .heading-3-history::before {
    top: 17px;
    left: -35.5px;
  }
}

@media screen and (min-width: 768px) {
  .history-columns {
    display: flex;
    align-items: flex-start;
  }
}

.history-columns:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .history-columns:not(:first-child) {
    margin-top: 20px;
  }
}

.history-columns__column:first-child {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .history-columns__column:first-child {
    width: 220px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .history-columns__column:first-child {
    margin-bottom: 5px;
  }
}

@media screen and (min-width: 768px) {
  .history-columns__column:last-child {
    width: calc(100% - 250px);
  }
}

.history-columns__column.history-columns__column--single {
  width: 100%;
}

.history-columns__column img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  border-radius: 5px;
}
@charset "UTF-8";

/* service-question */

.section-service-question {
  margin-top: 30px;
  margin-bottom: 60px;
}

@media screen and (min-width: 768px) {
  .section-service-question {
    margin-top: 45px;
    margin-bottom: 80px;
  }
}

.service-question__list__item {
  padding-bottom: 30px;
  border-bottom: 1px dotted #ABAEC1;
}
.service-question__list__item:not(:first-child) {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .service-question__list__item {
    padding-bottom: 37px;
  }
  .service-question__list__item:not(:first-child) {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1050px) {
  .service-question__list__item:not(:first-child) {
    margin-top: 36px;
  }
}

/* QUESTION icon */
.service-question__list__item__question::before {
  content: attr(data-decoration-text);
  display: inline-block;
  box-sizing: border-box;
  width: 123px;
  padding: 4px 5px 5px;
  background-color: #3B4046;
  color: #ffffff;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: .25em;
  line-height: 1.5em;
  text-align: center;
  border-radius: 5px;
}

@media screen and (min-width: 768px) {
  .service-question__list__item__question::before {
    width: 146px;
    padding: 3px 5px 4px;
    font-size: 1.4rem;
  }
}

.service-question__list__item__question__inner {
  display: block;
  margin-top: 16px;
}

/* ANSWER */
.service-question__list__item__answer {
  margin-top: 17px;
}

@media screen and (min-width: 768px) {
  .service-question__list__item__answer {
    margin-top: 25px;
  }
}
/* ANSWER icon */
.service-question__list__item__answer::before {
  content: attr(data-decoration-text);
  display: inline-block;
  box-sizing: border-box;
  width: 123px;
  padding: 4px 5px 5px;
  background: linear-gradient(100deg, #172A88 0%, #19308B 50%, #2B69A7 100%);
  color: #ffffff;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: .25em;
  line-height: 1.5em;
  text-align: center;
  border-radius: 5px;
}

@media screen and (min-width: 768px) {
  .service-question__list__item__answer::before {
    width: 146px;
    padding: 4px 3px 5px;
    font-size: 1.4rem;
  }
}

.service-question__list__item__answer__inner {
  display: block;
}
.natural.service-question__list__item__answer__inner:first-child {
  margin-top: 10px;
}


/* === アコーディオンありの場合のstyle */
.service-question.accordion--active .service-question__list__item {
  padding: 0 76px 0 20px;
  border: 1px solid #ABAEC1;
  @media screen and (min-width: 768px) {
    & {
      padding: 0 130px 0 40px;
    }
  }
}
.service-question.accordion--active .service-question__list__item:not(:first-child) {
  margin-top: 20px;
}

/* Q/A common style */
.service-question.accordion--active {
  & .service-question__list__item__question__inner,
  & .service-question__list__item__answer {
    margin-top: 0;
    margin-bottom: 0;
    padding: 20px 0 20px 34px;
    @media screen and (min-width: 768px) {
      & {
        padding: 40px 0 45px 54px;
      }
    }
  }
}

/* QUESTION */
.service-question.accordion--active {
  & .service-question__list__item__question {
    position: relative;
    & .service-question__list__item__question__inner {
      box-sizing: border-box;
      width: 100%;
      font-weight: 500;
      border: none;
      background: none;
      text-align: left;
      cursor: pointer;
    }
  }
}

/* ANSWER */
.service-question.accordion--active .service-question__list__item__answer {
  display: none;
  position: relative;
  margin-top: 0;
  padding: 15px 0 20px 34px;
  border-top: 1px dotted #ABAEC1;
}
@media screen and (min-width: 768px) {
  .service-question.accordion--active .service-question__list__item__answer {
    padding: 30px 0 35px 54px;
  }
}

.service-question.accordion--active .service-question__list__item__answer__inner {
  margin-top: 0;
}
/* Q/A icon */
.service-question.accordion--active .service-question__list__item__question::before,
.service-question.accordion--active .service-question__list__item__answer::before {
  display: block;
  position: absolute;
  left: 0;
  width: auto;
  padding: initial;
  border-radius: initial;
  background-color: transparent;
  background: transparent;
  color: #3B4046;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: .1em;
}
.service-question.accordion--active .service-question__list__item__question::before {
  content: "Q.";
  top: 10px;
  left: 0;
}
.service-question.accordion--active .service-question__list__item__answer::before {
  content: "A.";
  top: 13px;
  color: #172A88;
}
@media screen and (min-width: 768px) {
  .service-question.accordion--active .service-question__list__item__question::before,
  .service-question.accordion--active .service-question__list__item__answer::before {
    font-size: 3.2rem;
  }
  .service-question.accordion--active .service-question__list__item__question::before {
    top: 24px;
  }
  .service-question.accordion--active .service-question__list__item__answer::before {
    top: 23px;
  }
}

/* +/- icon */
.service-question__list__item__question__icon {
  position: absolute;
  top: calc(50%);
  right: -56px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ABAEC1;
  transform: translateY(-50%);
  transition: border-color .3s;
}
@media screen and (min-width: 768px) {
  .service-question__list__item__question__icon {
    right: -100px;
    width: 70px;
    height: 70px;
  }
}
.service-question__list__item__question__icon::before,
.service-question__list__item__question__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background-color: #1E242F;
  transform: translate(-50%);
  transition: background-color .3s, transform .3s;
}
@media screen and (min-width: 768px) {
  .service-question__list__item__question__icon::before,
  .service-question__list__item__question__icon::after {
    width: 14px;
  }
}
.service-question__list__item__question__icon::before {
  transform: translate(-50%);
}
.service-question__list__item__question__icon::after {
  transform: translate(-50%) rotate(90deg);
}

.service-question__list__item__question.is-active .service-question__list__item__question__icon::after {
  transform: translate(-50%) rotate(0);
}

@media screen and (min-width: 1050px) {
  .service-question.accordion--active .service-question__list__item:hover .service-question__list__item__question__icon {
    border-color: #172A88;
  }
  .service-question.accordion--active .service-question__list__item:hover .service-question__list__item__question__icon::before,
  .service-question.accordion--active .service-question__list__item:hover .service-question__list__item__question__icon::after {
    background-color: #172A88;
  }
}

/* アコーディオン === */
/* ==========================================================================

    group-image

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


.section-group-image {
  margin-top: 40px;
	margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
	.section-group-image {
    margin-top: 30px;
		margin-bottom: 30px;
	}
}

.group-image {
  margin-right: 0;
  margin-left: 0;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .group-image {
    display: block;
    max-width: 450px;
    margin: 0 auto;
  }
}

.group-image .columns__column {
  width: calc(50% - 1px);
  padding-right: 0;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .group-image .columns__column {
    width: 100%;
  }
}

.group-image .columns__column .columns {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin-left: 0;
}

.group-image .columns__column .columns .columns__column {
  width: calc(50% - .5px);
  margin-right: 1px;
  margin-bottom: 1px;
  padding-right: 0;
  padding-left: 0;
}

.group-image .columns__column .columns .columns__column:nth-of-type(even) {
  margin-right: 0;
}
.group-image .columns__column .columns .columns__column:nth-last-child(-n+2) {
  margin-bottom: 0;
}

.group-image .columns__column:nth-child(1),
.group-image .columns__column:nth-child(2) {
  margin-top: 0;
}

.group-image .columns__column:nth-child(odd) {
  margin-right: 1px;
}
@media screen and (max-width: 767px) {
  .columns--two > .columns__column:not(:last-child) {
    flex: inherit;
  }

  .columns--two.group-image > .columns__column:first-child {
    flex: inherit;
    margin-bottom: 1px;
  }
  .columns--two.group-image > .columns__column:nth-child(2) {
    margin-top: 1px;
  }

  _::-webkit-full-page-media, _:future, :root .columns--two.group-image > .columns__column:nth-child(2) {
    margin-top: 2px;
  }
  _::-webkit-full-page-media, _:future, :root .group-image .columns__column .columns .columns__column {
    margin-bottom: 2px;
  }
}

.group-image img {
	display: block;
	width: 100%;
	max-width: 100%;
}
@charset "utf-8";

/* movie */

.section-movie {
  margin-top: 20px;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .section-movie {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.section-movie .movie-caption {
  margin-top: 15px;
  color: #3B4046;
  font-size: 14px;
  letter-spacing: .15em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .section-movie .movie-caption {
    margin-top: 10px;
    font-size: 12px;
  }
}

/* blog */
@charset "UTF-8";

/* blog post author */

.blog-article__body__author {
  margin-top: 45px;
  margin-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .blog-article__body__author {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.blog-article__body__author__heading.heading-2 {
  margin-bottom: 25px;
  padding: 11px 20px;
  border-top: 1px solid #ABAEC1;
  background-color: #F7F9FC;
  font-size: 1.8rem;
  font-weight: 500;
  color: #3B4046;
}
@media screen and (min-width: 768px) {
  .blog-article__body__author__heading.heading-2 {
    margin-bottom: 35px;
    padding: 13px 23px;
    font-size: 2.2rem;
  }
}

.blog-article__body__author__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .blog-article__body__author__wrapper {
    gap: 30px;
  }
}
.blog-article__body__author__heading {
  font-size: 1.8rem;
}
.blog-article__body__author__image {
  width: 100px;
  height: 100px;
}
.blog-article__body__author__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .blog-article__body__author__image {
    width: 190px;
    height: 190px;
  }
}
.blog-article__body__author__content  {
  flex: 1;
}
.blog-article__body__author__content__name.heading-3 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  color: #3B4046;
}
@media screen and (min-width: 768px) {
  .blog-article__body__author__content__name.heading-3 {
    margin-bottom: 31px;
    font-size: 2.2rem;
  }
}

@media screen and (min-width: 768px) {
  .blog-article__body__author__content__profile {
    font-size: 1.4rem;
  }
}
@charset "UTF-8";

/* blog post author */

.blog-article__body__lead {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .blog-article__body__lead {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.blog-article__body__lead__text {
  font-weight: 400;
  color: #3B4046;
}
@media screen and (min-width: 768px) {
  .blog-article__body__lead__text {
    font-size: 1.6rem;
  }
}
@charset "UTF-8";

/* blog post index */

/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


.blog-article__body__index {
  position: relative;
  z-index: 0;
  margin-top: 56px;
  margin-bottom: 45px;
  border: 1px solid #ABAEC1;
  border-radius: 5px;
  padding: 36px 20px 32px;
}
@media screen and (min-width: 768px) {
  .blog-article__body__index {
    margin-top: 74px;
    margin-bottom: 60px;
    padding: 35px 35px 38px;
  }
}

.blog-article__body__index__title {
  position: absolute;
  top: -14px;
  left: 50%;
  z-index: 1;
  box-sizing: border-box;
  width: 130px;
  padding: 7px 0 6px;
  border-top: 1px solid #172A88;
  border-radius: 0 0 5px 5px;
  background-color: #F7F9FC;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-align: center;
  transform: translateX(-50%);
  color: #3B4046;
}
@media screen and (min-width: 768px) {
  .blog-article__body__index__title {
    top: -18px;
    padding: 9px 0 8px;
    font-size: 1.6rem;
  }
}

.blog-article__body__index__body__list {
  counter-reset: number 0;
}

.blog-article__body__index__body__list__item {
  margin-top: calc( 22px - (((1em * 2) - 1em) / 2) );
  padding-left: 2.3em;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 2;
  text-indent: -2.3em;
  color: #3B4046;
}
.blog-article__body__index__body__list__item:first-of-type {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .blog-article__body__index__body__list__item {
    font-size: 1.6rem;
  }
}

.blog-article__body__index__body__list__item::before {
  content: counter(number, decimal-leading-zero) "：";
  counter-increment: number 1;
}

.blog-article__body__index__body__list__item a {
  text-decoration: underline #172A88;
  text-underline-offset: .5em;
}
@media screen and (min-width: 1050px) {
  .blog-article__body__index__body__list__item a {
    transition: color .3s;
  }
  .blog-article__body__index__body__list__item a:hover {
    color: #172A88;
  }
}
@charset "UTF-8";

/* blog post share button */

.blog-article__body__share-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 30px;
  margin-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .blog-article__body__share-button {
    margin-top: 40px;
    margin-bottom: 60px;
  }
}

.blog-article__body__share-button__item {
  margin-left: 20px;
}
.blog-article__body__share-button__item:first-of-type {
  margin-left: 0;
}
@charset "UTF-8";

/* blog post related articles */

.blog-article__body__related-articles {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .blog-article__body__related-articles {
    margin-bottom: 80px;
  }
}

@media screen and (min-width: 768px) {
  .blog-article__body__related-articles__list {
    display: flex;
  }
}

.blog-article__body__related-articles__list__item {
  margin-top: 30px;
}
.blog-article__body__related-articles__list__item:first-of-type {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .blog-article__body__related-articles__list__item {
    width: calc((100% - 60px) / 3);
    margin-top: 0;
    margin-left: 30px;
  }
  .blog-article__body__related-articles__list__item:first-of-type {
    margin-left: 0;
  }
}

.blog-article__body__related-articles__list__item__image {
  margin-bottom: 11px;
  aspect-ratio: 16/9;
}

.blog-article__body__related-articles__list__item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-article__body__related-articles__list__item__date {
  margin-top: 18px;
  margin-bottom: 6px;
  color: #172A88;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .15em;
}
@media screen and (min-width: 768px) {
  .blog-article__body__related-articles__list__item__date {
    margin-top: 15px;
    font-size: 1.4rem;
  }
}

.blog-article__body__related-articles__list__item__title {
  margin-top: 6px;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.6;
  color: #3B4046;
}
@media screen and (min-width: 768px) {
  .blog-article__body__related-articles__list__item__title {
    font-size: 1.8rem;
  }
}

/* common */
@charset "UTF-8";

/* hero */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0C1931;
  opacity: 60%;
  z-index: 1;
}
.hero::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 130px;
  width: 250px;
  background-image:url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjUwIiBoZWlnaHQ9IjEzMCIgdmlld0JveD0iMCAwIDI1MCAxMzAiPgogIDxkZWZzPgogICAgPGxpbmVhckdyYWRpZW50IGlkPSJsaW5lYXItZ3JhZGllbnQiIHkxPSIwLjQ3MiIgeDI9IjEiIHkyPSIwLjQ3MyIgZ3JhZGllbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giPgogICAgICA8c3RvcCBvZmZzZXQ9IjAiIHN0b3AtY29sb3I9IiNmZmYiIHN0b3Atb3BhY2l0eT0iMC4xNDkiLz4KICAgICAgPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSJncmF5IiBzdG9wLW9wYWNpdHk9IjAuMDUxIi8+CiAgICA8L2xpbmVhckdyYWRpZW50PgogICAgPGNsaXBQYXRoIGlkPSJjbGlwLXBhdGgiPgogICAgICA8cmVjdCBpZD0i6ZW35pa55b2iXzEyNjUxIiBkYXRhLW5hbWU9IumVt+aWueW9oiAxMjY1MSIgd2lkdGg9IjI1MCIgaGVpZ2h0PSIxMzAiIHN0cm9rZT0icmdiYSgwLDAsMCwwKSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJ1cmwoI2xpbmVhci1ncmFkaWVudCkiLz4KICAgIDwvY2xpcFBhdGg+CiAgPC9kZWZzPgogIDxnIGlkPSLjgrDjg6vjg7zjg5dfMTM2MjciIGRhdGEtbmFtZT0i44Kw44Or44O844OXIDEzNjI3IiBjbGlwLXBhdGg9InVybCgjY2xpcC1wYXRoKSI+CiAgICA8cGF0aCBpZD0i44OR44K5Xzg5MzciIGRhdGEtbmFtZT0i44OR44K5IDg5MzciIGQ9Ik0yMzUuMzk0LDM5LjM4OGwtNjcuNDgxLDY2LjY2Yy0zLjExNSwyLjY1Ny03LjM2Nyw0LjQtMTEuMDMyLjkzNS0zLjctMy41LTEuMjY0LTcuOTc5LjczNy0xMC4wMDcsOC4wMjEtOC42NzMsMzAuMjU3LTMxLjA1NSwzOS4yMTMtNDAuMTIsMjAuNTE2LTIxLjYzNiwxOS43NDktMzguMTQzLDguNzQ5LTQ5LTEwLjUzMy0xMC40LTIzLjY2Ny04LjIyOS0zMC43MTYtNS4xNjZhMzAuOSwzMC45LDAsMCwwLTkuMjA4LDYuMzc2QzEzOS43NDksMzQuMzMsODEuMjEsOTAuNDc2LDY5LjQ1OSwxMDIuNmEzMS4zMDcsMzEuMzA3LDAsMCwxLTUuOTUzLDQuODY5Yy01LjI1OCwzLjI1OC05LjkyNywzLjg0NC0xMi42ODEuNTk1LTMuNDY3LTQuNTUtMS43NzUtOS42MjgsNC44NjctMTYuNTUxLDYuMzg0LTYuNSwzNi40MTEtMzkuMTI5LDQwLjgtNDMuNjU5LDQuNjM1LTUuMzYxLDkuNTU5LTEzLjI3OCw5LjAxNi0yMC4zMDYtLjMyNS04Ljg0NC0zLjc4OC0xNS43LTEwLjUxNy0yMS41NUM4OC42NzQuMiw3Ny43MjItMS4zMjYsNjkuNDU5LDEuMTIyQTI4Ljc1MSwyOC43NTEsMCwwLDAsNTkuMjU0LDYuNDkxTDAsNjIuNjc3Vjg5LjEzNUw2Ni4xNjgsMjguMTQ4czExLjc2Ni0xMS43ODEsMTcuNTQzLTUuM2M0Ljg4LDUuNDc3LTQuNjQ2LDE0Ljg2Ni02LjIxNiwxNi42NjktNC44MjIsNS41MzgtMzIuMDU5LDMwLjE2Ny00My4zNzEsNDMuNjc2YTMwLjI3NywzMC4yNzcsMCwwLDAtNy4wMzgsMTUuODY4Yy0uNTA2LDkuODc5LDEuNTc3LDE1LjIsNy42ODMsMjEuODI2LDUuNSw1LjcxNiwxMi4zLDkuMDc5LDIxLjg5Myw4Ljk0NCwxMC40NS0uMTQ4LDIwLjA0Ni00Ljk0NywyNy43LTEyLjYzNCw3LjA0Ny03LjY5MSw2Ny40My02NS45ODgsODcuODYzLTg1LjkyNywwLDAsMTIuNDc5LTE0LjkxOCwxOC45MTUtOC43ODIsMy4xMDcsMy4xMDksMy43MDksOC4zODQtNi45NywxOS40NzgtOC40MTMsOC41ODYtMzAuNjc0LDMwLjE4OC0zOC43NjQsMzguMzM5YTQwLjA0Niw0MC4wNDYsMCwwLDAtMTAuMDQyLDE2LjAwN2MtMi4zMDksNy4zMzMtMi43NTcsMTYuOTIxLDQuNjg5LDI1Ljk0MSwxNC4zNSwxMy42MjksMzMuNDE1LDUuOTQxLDQwLjkxLS4zNzFDMTk5LjUyMiwxMDYuMjUyLDI0OS45NSw1My43NCwyNDkuOTUsNTMuNzRaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDAuMTY0KSIgc3Ryb2tlPSJyZ2JhKDAsMCwwLDApIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9InVybCgjbGluZWFyLWdyYWRpZW50KSIvPgogIDwvZz4KPC9zdmc+');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .hero::after {
    width: 445px;
    height: 235px;
  }
}
@media screen and (min-width: 1050px) {
  .hero::after {
    width: 480px;
    height: 252px;
  }
}
.hero__contents {
  position: relative;
}

.hero__heading {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .hero__heading {
    padding-top: 60px;
    padding-bottom: 60px;
    font-size: 3.7rem;
  }
}
@media screen and (min-width: 1050px) {
  .hero__heading {
    font-size: 3.7rem;
  }
}

.hero__heading::before {
  content: attr(data-decoration-text);
  display: block;
  margin-bottom: 13px;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .15em;
  line-height: 1.2;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .hero__heading::before {
    margin-bottom: 17px;
    font-size: 2rem;
    letter-spacing: .25em;
  }
}
@media screen and (min-width: 1050px) {
  .hero__heading::before {
    font-size: 2.0rem;
    margin-bottom: 11px;
  }
}

.hero__image {
  position: relative;
  min-height: 279px;
  margin: 0 calc(50% - 50vw);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .hero__image {
    min-height: 470px;
  }
}
@media screen and (min-width: 1050px) {
  .hero__image {
    min-height: 453px;
  }
}
.hero__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #A5A5A5;
  opacity: .3;
}
@charset "UTF-8";

/* brand hero */
.brand-hero {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  clip-path: ellipse(107% 100% at top);
  min-height: 293px;
}
@media screen and (min-width: 768px) {
  .brand-hero {
    clip-path: ellipse(95% 100% at top);
    min-height: 442px;
  }
}
@media screen and (min-width: 1050px) {
  .brand-hero {
    clip-path: ellipse(85% 100% at top);
    min-height: 423px;
  }
}
.brand-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0C1931;
  opacity: 60%;
}
@media screen and (min-width: 1050px) {
  .brand-hero__contents {
    max-width: 795px;
    margin: 0 auto;
  }
}
.brand-hero__info {
  position: relative;
  padding-top: 77px;
  padding-bottom: 73px;
  color: #fff;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .brand-hero__info {
    padding-top: 12.5rem;
    padding-bottom: 12rem;
  }
}
@media screen and (min-width: 1050px) {
  .brand-hero__info {
    padding-top: 11.5rem;
    padding-bottom: 11rem;
  }
}
.brand-hero__heading {
  position: relative;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .brand-hero__heading {
    font-size: 3.7rem;
  }
}

/* 装飾文字 */
.brand-hero__heading__decoration_text {
  position: relative;
  display: block;
  padding-bottom: 12px;
  margin-bottom: 27px;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .25em;
  line-height: 1.2;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .brand-hero__heading__decoration_text {
    padding-bottom: 20px;
    margin-bottom: 38px;
    font-size: 2rem;
    letter-spacing: .25em;
  }
}
@media screen and (min-width: 1050px) {
  .brand-hero__heading__decoration_text {
    margin-bottom: 38px;
  }
}

/* アイコン */
.brand-hero__heading__decoration_text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMzIiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAzMiAxNSI+CiAgPGRlZnM+CiAgICA8Y2xpcFBhdGggaWQ9ImNsaXAtcGF0aCI+CiAgICAgIDxyZWN0IGlkPSLplbfmlrnlvaJfMTI3MjIiIGRhdGEtbmFtZT0i6ZW35pa55b2iIDEyNzIyIiB3aWR0aD0iMzIiIGhlaWdodD0iMTUiIGZpbGw9IiNmZmYiLz4KICAgIDwvY2xpcFBhdGg+CiAgPC9kZWZzPgogIDxnIGlkPSLjgrDjg6vjg7zjg5dfNDAwMDkiIGRhdGEtbmFtZT0i44Kw44Or44O844OXIDQwMDA5IiBvcGFjaXR5PSIwLjQ1IiBjbGlwLXBhdGg9InVybCgjY2xpcC1wYXRoKSI+CiAgICA8cGF0aCBpZD0i44OR44K5XzkwMTAiIGRhdGEtbmFtZT0i44OR44K5IDkwMTAiIGQ9Ik04LjQzNSwxNC45NzVhMy41NjgsMy41NjgsMCwwLDEtMi41NzItMS4wMDgsMi44OTMsMi44OTMsMCwwLDEtLjkzMy0yLjUyMiwzLjQxMSwzLjQxMSwwLDAsMSwuODU1LTEuODMzYzEuMzc0LTEuNTYxLDQuNjgyLTQuNDA2LDUuMjY4LTUuMDQ2LjE5MS0uMjA4LDEuMzQ4LTEuMjkzLjc1NS0xLjkyNi0uNy0uNzQ5LTIuMTMxLjYxMi0yLjEzMS42MTJMMS42MjcsMTAuMzEsMCw4LjcyLDguODM3Ljc1YTMuNjE2LDMuNjE2LDAsMCwxLDQuMzQtLjA1NywzLjIzMSwzLjIzMSwwLDAsMSwxLjI3OCwyLjQ5LDMuNTUxLDMuNTUxLDAsMCwxLTEuMSwyLjM0NmMtLjUzMi41MjMtNC4xNzksNC4yOTMtNC45NTUsNS4wNDQtLjgwNy44LTEuMDEyLDEuMzg2LS41OTEsMS45MTIuNDI2LjQ3OCwxLjIyOC4yMzgsMi4wNzUtLjQ0My44NTMtLjg4NSw4LjE3LTcuNjQxLDExLjQ5Mi0xMC43MjNBMy43NTcsMy43NTcsMCwwLDEsMjIuNS41ODNhMy40MzcsMy40MzcsMCwwLDEsMy43MzEuN2MxLjM2NCwxLjUxMSwxLjQyOSwzLjA1NS0xLjA2Miw1LjU1NEMyNC4wOCw3Ljg4OCwyMS43NTksMTAuMiwyMC43ODUsMTEuMkEuNzY3Ljc2NywwLDAsMCwyMC43LDEyLjM2YS45ODEuOTgxLDAsMCwwLDEuMzQtLjEwOGw4LjItNy43TDMyLDYuMjA5cy02LjEyNSw2LjA2Ny04LjM4LDcuODczYy0uOTExLjcyOS0zLjIyNiwxLjYxNy00Ljk2OS4wNDNhMi45MzgsMi45MzgsMCwwLDEtLjU3LTNBNC42LDQuNiwwLDAsMSwxOS4zLDkuMjc4Yy45ODItLjk0MiwzLjMwNi0zLjE2Niw0LjMyNy00LjE1OCwxLjMtMS4yODIsMS4yMjQtMS44OTEuODQ3LTIuMjUtLjc4Mi0uNzA5LTIuMywxLjAxNC0yLjMsMS4wMTQtMi40ODIsMi4zLTkuNDM2LDguNzY3LTEwLjI5Miw5LjY1NUE0LjkzOSw0LjkzOSwwLDAsMSw4LjQ3LDE0Ljk4NFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgMCkiIGZpbGw9IiNmZmYiLz4KICA8L2c+Cjwvc3ZnPg==');
  background-repeat: no-repeat;
  background-size: contain;
  width: 32px;
  height: 15px;
}
@media screen and (min-width: 768px) {
  .brand-hero__heading__decoration_text::after {
    width: 45px;
    height: 21px;
  }
}
@media screen and (min-width: 1050px) {
  .brand-hero__heading__decoration_text ::after {
    width: 55px;
    height: 26px;
  }
}

/* unique */
/* ==========================================================================

    title-wrap-columns

========================================================================== */

/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/



.section-sitemap {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .section-sitemap {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.sitemap-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -25px;
  margin-right: -25px;
}
@media screen and (max-width: 767px) {
  .sitemap-list {
  margin-left: -20px;
  margin-right: -20px;
  }
}

.sitemap-list-01 {
  box-sizing: border-box;
  display: block;
  width: 50%;
  padding-right: 25px;
  padding-left: 25px;
}

@media screen and (max-width: 767px) {
  .sitemap-list-01 {
    padding-right: 20px;
    padding-left: 20px;
    width: 100%;
  }
}

.sitemap-list-01:nth-child(n+3) {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .sitemap-list-01:nth-child(n+2) {
    margin-top: 40px;
  }
}

.sitemap-list-02 {
  padding-left: 25px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .sitemap-list-02 {
    padding-left: 20px;
  }
}

.sitemap-list-03{
  margin-top: 15px;
}

.sitemap-list-04,
.sitemap-list-05,
.sitemap-list-06,
.sitemap-list-07{
  margin-top: 12px;
}


.sitemap__link {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .1em;
  color: #1E242F;
  transition: all .3s;
}
@media screen and (min-width: 1050px) {
  a.sitemap__link:hover {
    color: #172A88;
  }
}

.sitemap-list-01 > .sitemap__link {
  color: #1E242F;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 5px;
}
@media screen and (min-width: 1050px) {
  .sitemap-list-01 > a.sitemap__link:hover {
    color: #172A88;
  }
}
@media screen and (max-width: 767px) {
  .sitemap-list-01 > .sitemap__link {
    font-size: 15px;
    margin-bottom: 2px;
  }
}

.sitemap-list-02 > .sitemap__link {
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .sitemap-list-02 > .sitemap__link {
    font-size: 14px;
  }
}
.sitemap-list-03 > .sitemap__link {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .sitemap-list-03 > .sitemap__link {
    font-size: 13px;
  }
}
.sitemap-list-04 > .sitemap__link {
  font-size: 13px;
}
.sitemap-list-05 > .sitemap__link {
  font-size: 13px;
}
.sitemap-list-06 > .sitemap__link {
  font-size: 13px;
}
.sitemap-list-07 > .sitemap__link {
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .sitemap-list-04 > .sitemap__link,
  .sitemap-list-05 > .sitemap__link,
  .sitemap-list-06 > .sitemap__link {
    font-size: 13px;
  }
}

.sitemap__link .sitemap__link__inner {
  display: inline-block;
  position: relative;
}

.sitemap-list-01 > .sitemap__link .sitemap__link__inner {
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .sitemap-list-01 > .sitemap__link .sitemap__link__inner {
    padding-left: 26px;
  }
}

.sitemap-list-01 > .sitemap__link .sitemap__link__inner::before {
  background-image: linear-gradient(116deg, #172A88 0%, #2B69A7 100%);
  border-radius: 100%;
  content: "";
  left: 0px;
  position: absolute;
  transition: .3s;
  height: 20px;
  top: 2px;
  width: 20px;
}
@media screen and (max-width: 767px) {
  .sitemap-list-01 > .sitemap__link .sitemap__link__inner::before {
    width: 18px;
    height: 18px;
    top: 3px;
    left: 1px;
  }
}

.sitemap-list-01 > a.sitemap__link:hover .sitemap__link__inner::before{
  background-image: linear-gradient(90deg, #2F4294 0%, #3D69A7 100%);
}


.sitemap__link__inner__path {
  position: absolute;
  left: 0px;
  top: 2px;
  transition: left .3s;
}
.sitemap-list-01 > a.sitemap__link:hover .sitemap__link__inner__path {
  left: 2px;
}

.sitemap-list-02 > .sitemap__link .sitemap__link__inner::before {
  content: "";
  width: 8px;
  height: 2px;
  top: 10px;
  left: -24px;
  background-color: #1E242F;
  position: absolute;
  transition: all .3s;
}
@media screen and (max-width: 767px) {
  .sitemap-list-02 > .sitemap__link .sitemap__link__inner::before {
    top: 11px;
    left: -20px;
  }
}

.sitemap-list-03 > .sitemap__link .sitemap__link__inner::before {
  content: "";
  width: 3px;
  height: 3px;
  top: 9px;
  left: -20px;
  background-color: #1E242F;
  position: absolute;
  transition: all .3s;
}
@media screen and (max-width: 767px) {
  .sitemap-list-03 > .sitemap__link .sitemap__link__inner::before {
    left: -16px;
  }
}

.sitemap-list-04 > .sitemap__link .sitemap__link__inner::before {
  content: "";
  width: 2px;
  height: 2px;
  top: 11px;
  left: -20px;
  background-color: #1E242F;
  position: absolute;
  transition: all .3s;
}
@media screen and (max-width: 767px) {
  .sitemap-list-04 > .sitemap__link .sitemap__link__inner::before {
    top: 9px;
    left: -16px;
  }
}

/* URLスラッグに「thanks」に該当するものは削除 */
.sitemap-list--thanks {
  display: none;
}


/* カラム数変更 */
.columns--three .sitemap-list-01{
  width: calc( 100% / 3 );
}
@media screen and (max-width: 1049px) {
  .columns--three .sitemap-list-01{
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .columns--three .sitemap-list-01{
    width: 100%;
  }
}

.columns--three .sitemap-list-01:nth-child(3){
  margin-top: 0;
}
@media screen and (max-width: 1049px) {
  .columns--three .sitemap-list-01:nth-child(3){
    margin-top: 50px;
  }
}

.columns--four .sitemap-list-01{
  width: calc( 100% / 4 );
}
@media screen and (max-width: 1049px) {
  .columns--four .sitemap-list-01{
    width: 50%;
  }
}
@media screen and (max-width:767px) {
  .columns--four .sitemap-list-01{
    width: 100%;
  }
}

.columns--four .sitemap-list-01:nth-child(3),
.columns--four .sitemap-list-01:nth-child(4){
  margin-top: 0;
}
@media screen and (max-width: 1049px) {
  .columns--four .sitemap-list-01:nth-child(3),
  .columns--four .sitemap-list-01:nth-child(4){
    margin-top: 50px;
  }
}
@charset "UTF-8";

/* home hero */
.home-hero {
  position: relative;
  height: 500px;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .home-hero {
    height: 100svh;
  }
}
.home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  display: block;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMzA1LjEzOSIgaGVpZ2h0PSIxNTkuODQzIiB2aWV3Qm94PSIwIDAgMzA1LjEzOSAxNTkuODQzIj4KICA8ZGVmcz4KICAgIDxsaW5lYXJHcmFkaWVudCBpZD0ibGluZWFyLWdyYWRpZW50IiB5MT0iMC40NzIiIHgyPSIxIiB5Mj0iMC40NzMiIGdyYWRpZW50VW5pdHM9Im9iamVjdEJvdW5kaW5nQm94Ij4KICAgICAgPHN0b3Agb2Zmc2V0PSIwIiBzdG9wLWNvbG9yPSIjZmZmIiBzdG9wLW9wYWNpdHk9IjAuMTQ5Ii8+CiAgICAgIDxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iZ3JheSIgc3RvcC1vcGFjaXR5PSIwLjA1MSIvPgogICAgPC9saW5lYXJHcmFkaWVudD4KICA8L2RlZnM+CiAgPHBhdGggaWQ9IuODkeOCuV84OTM3IiBkYXRhLW5hbWU9IuODkeOCuSA4OTM3IiBkPSJNMjg2LjIzOSw0OC4xNzQsMjA0LjE4MywxMjkuN2MtMy43ODcsMy4yNS04Ljk1OSw1LjM4Ni0xMy40MTUsMS4xNDMtNC41LTQuMjg0LTEuNTM3LTkuNzU5LjktMTIuMjQsOS43NTQtMTAuNjA3LDM2Ljc5My0zNy45ODMsNDcuNjgzLTQ5LjA3LDI0Ljk0OC0yNi40NjMsMjQuMDE1LTQ2LjY1MiwxMC42MzgtNTkuOTMyQzIzNy4xNzctMy4xMDksMjIxLjIwNi0uNDU4LDIxMi42MzQsMy4yODlhMzcuNTY2LDM3LjU2NiwwLDAsMC0xMS4yLDcuOGMtMzEuNSwzMC45LTEwMi42ODUsOTkuNTczLTExNi45NzUsMTE0LjQwN2EzOC4xMTYsMzguMTE2LDAsMCwxLTcuMjM5LDUuOTU1Yy02LjM5MywzLjk4NS0xMi4wNzEsNC43LTE1LjQyLjcyNy00LjIxNS01LjU2NS0yLjE1OC0xMS43NzYsNS45MTgtMjAuMjQzLDcuNzYzLTcuOTQ5LDQ0LjI3Ni00Ny44NTgsNDkuNjA3LTUzLjQsNS42MzctNi41NTYsMTEuNjI0LTE2LjI0LDEwLjk2NC0yNC44MzYtLjQtMTAuODE3LTQuNjA2LTE5LjItMTIuNzg5LTI2LjM1OC03LjY3Ny03LjEtMjAuOTk1LTguOTYzLTMxLjA0Mi01Ljk2OUEzNC44OTMsMzQuODkzLDAsMCwwLDcyLjA1Myw3LjkzOUwwLDc2LjY1OXYzMi4zNkw4MC40NiwzNC40MjdzMTQuMzA4LTE0LjQwOSwyMS4zMzItNi40OGM1LjkzNSw2LjctNS42NSwxOC4xODItNy41NTgsMjAuMzg3LTUuODY0LDYuNzc0LTM4Ljk4NCwzNi45LTUyLjc0LDUzLjQyYTM3LjE0NSwzNy4xNDUsMCwwLDAtOC41NTksMTkuNDA3Yy0uNjE2LDEyLjA4MywxLjkxOCwxOC41ODgsOS4zNDIsMjYuNjk1LDYuNjkxLDYuOTkxLDE0Ljk1MywxMS4xLDI2LjYyMiwxMC45MzksMTIuNzA4LS4xODEsMjQuMzc2LTYuMDUsMzMuNjc5LTE1LjQ1Myw4LjU2OS05LjQwNyw4MS45OTUtODAuNzA4LDEwNi44NDItMTA1LjA5NSwwLDAsMTUuMTc1LTE4LjI0NSwyMy0xMC43NDEsMy43NzgsMy44LDQuNTEsMTAuMjU0LTguNDc1LDIzLjgyMy0xMC4yMzEsMTAuNS0zNy4zLDM2LjkyMi00Ny4xMzcsNDYuODkxQTQ5LjAyMSw0OS4wMjEsMCwwLDAsMTY0LjYsMTE3LjhjLTIuODA4LDguOTY5LTMuMzUzLDIwLjcsNS43LDMxLjcyNywxNy40NSwxNi42Nyw0MC42MzIsNy4yNjcsNDkuNzQ3LS40NTMsMjIuNTczLTE5LjExOCw4My44OTMtODMuMzQ0LDgzLjg5My04My4zNDRaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjUgMC41MykiIHN0cm9rZT0icmdiYSgwLDAsMCwwKSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJ1cmwoI2xpbmVhci1ncmFkaWVudCkiLz4KPC9zdmc+');
  background-repeat: no-repeat;
  background-size: contain;
  width: 30.4rem;
  height: 15.9rem;
}
@media screen and (min-width: 768px) {
  .home-hero::after {
    width: 60.8rem;
    height: 32.0rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-hero::after {
    width: 76.0rem;
    height: 40.0rem;
  }
}
.home-hero .home-hero__video {
  object-fit: cover;
  object-position: center;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -100;
}
video::-webkit-media-controls {
  display: none !important;
}

.home-hero__video-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJf44Os44Kk44Ok44O8XzIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDE4IDIyIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBjMTkzMTtvcGFjaXR5Oi4wMjt9PC9zdHlsZT48L2RlZnM+PGcgaWQ9Il/jg6zjgqTjg6Tjg7xfMS0yIj48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Im0wLDBoMTh2MjJIMFYwWm0xNi4zNSwxNC4zNGMtLjkxLDAtMS42NSwxLjcxLTEuNjUsMy44M3MuNzQsMy44MywxLjY1LDMuODMsMS42NS0xLjcxLDEuNjUtMy44My0uNzQtMy44My0xLjY1LTMuODNabS03LjM1LTcuMTdjLS45MSwwLTEuNjUsMS43MS0xLjY1LDMuODNzLjc0LDMuODMsMS42NSwzLjgzLDEuNjUtMS43MSwxLjY1LTMuODMtLjc0LTMuODMtMS42NS0zLjgzWk0xLjY1LDBDLjc0LDAsMCwxLjcxLDAsMy44M3MuNzQsMy44MywxLjY1LDMuODMsMS42NS0xLjcxLDEuNjUtMy44M1MyLjU2LDAsMS42NSwwWiIvPjwvZz48L3N2Zz4=');
  background-repeat: repeat;
  background-size: 18px 22px;
  background-color: rgba(12, 25, 49, 0.6);
  z-index: -50;
}
.home-hero__button {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  border: none;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .home-hero__button {
    right: 2rem;
    bottom: 2rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-hero__button {
    right: 3.4rem;
    bottom: 2.1rem;
  }
}
.home-hero__button__image {
  width: 5.1rem;
  height: 5.1rem;
}
@media screen and (min-width: 768px) {
  .home-hero__button__image {
    width: 5.6rem;
    height: 5.6rem;
  }
}

.home-hero__info {
  position: absolute;
  left: 0;
  bottom: 5rem;
  height: fit-content;
}
@media screen and (min-width: 768px) {
  .home-hero__info {
    bottom: 9rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-hero__info {
    padding: 0 120px;
    bottom: 10rem;
  }
}
.home-hero__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .home-hero__heading {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-hero__heading {
    font-size: 4.0rem;
  }
}

.home-hero__paragraph {
  margin-top: .8rem;
  max-width: 27rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 2.25;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .home-hero__paragraph {
    max-width: 63.7rem;
    margin-top: 2.5rem;
    font-size: 1.6rem;
  }
}
@charset "UTF-8";

/* home-news */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


.home-news {
  padding: 7.5rem 0;
  background-image:url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjQyIiBoZWlnaHQ9IjEyNSIgdmlld0JveD0iMCAwIDI0MiAxMjUiPgogIDxkZWZzPgogICAgPGxpbmVhckdyYWRpZW50IGlkPSJsaW5lYXItZ3JhZGllbnQiIHkxPSIwLjU2OCIgeDI9IjEuMjAxIiB5Mj0iMC41ODUiIGdyYWRpZW50VW5pdHM9Im9iamVjdEJvdW5kaW5nQm94Ij4KICAgICAgPHN0b3Agb2Zmc2V0PSIwIiBzdG9wLWNvbG9yPSIjZmZmIi8+CiAgICAgIDxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI2ZmZiIgc3RvcC1vcGFjaXR5PSIwLjA1MSIvPgogICAgPC9saW5lYXJHcmFkaWVudD4KICAgIDxjbGlwUGF0aCBpZD0iY2xpcC1wYXRoIj4KICAgICAgPHJlY3QgaWQ9IumVt+aWueW9ol8xMjY1MyIgZGF0YS1uYW1lPSLplbfmlrnlvaIgMTI2NTMiIHdpZHRoPSIyNDIiIGhlaWdodD0iMTI1IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIiBmaWxsPSJ1cmwoI2xpbmVhci1ncmFkaWVudCkiLz4KICAgIDwvY2xpcFBhdGg+CiAgPC9kZWZzPgogIDxnIGlkPSLjgrDjg6vjg7zjg5dfMTM2MzEiIGRhdGEtbmFtZT0i44Kw44Or44O844OXIDEzNjMxIiBjbGlwLXBhdGg9InVybCgjY2xpcC1wYXRoKSI+CiAgICA8cGF0aCBpZD0i44OR44K5Xzg5MzkiIGRhdGEtbmFtZT0i44OR44K5IDg5MzkiIGQ9Ik0yMjcuNjY4LDM4LjA5LDE2Mi40LDEwMi41NTNjLTMuMDEyLDIuNTY5LTcuMTI2LDQuMjU4LTEwLjY3LjktMy41OC0zLjM4Ny0xLjIyMy03LjcxNi43MTMtOS42NzcsNy43NTgtOC4zODcsMjkuMjY0LTMwLjAzMiwzNy45MjYtMzguOCwxOS44NDMtMjAuOTI0LDE5LjEtMzYuODg2LDguNDYxLTQ3LjM4Ni0xMC4xODctMTAuMDU0LTIyLjg5LTcuOTU4LTI5LjcwOC01YTI5Ljg4MiwyOS44ODIsMCwwLDAtOC45MDYsNi4xNjZDMTM1LjE2MiwzMy4yLDc4LjU0NSw4Ny40OTUsNjcuMTc5LDk5LjIyNGEzMC4yNzYsMzAuMjc2LDAsMCwxLTUuNzU4LDQuNzA4Yy01LjA4NSwzLjE1MS05LjYsMy43MTctMTIuMjY0LjU3NS0zLjM1My00LjQtMS43MTYtOS4zMTEsNC43MDctMTYuMDA1LDYuMTc0LTYuMjg1LDM1LjIxNi0zNy44NCwzOS40NTctNDIuMjIsNC40ODMtNS4xODQsOS4yNDUtMTIuODQsOC43Mi0xOS42MzctLjMxNC04LjU1My0zLjY2NC0xNS4xODMtMTAuMTcyLTIwLjg0LTYuMTA2LTUuNjExLTE2LjctNy4wODctMjQuNjktNC43MTlhMjcuODA5LDI3LjgwOSwwLDAsMC05Ljg3LDUuMTkyTDAsNjAuNjEyVjg2LjJMNjQsMjcuMjJTNzUuMzc2LDE1LjgyNyw4MC45NjMsMjIuMWM0LjcyLDUuMy00LjQ5NCwxNC4zNzYtNi4wMTIsMTYuMTJDNzAuMjg3LDQzLjU3Miw0My45NDQsNjcuMzg5LDMzLDgwLjQ1M0EyOS4yNzcsMjkuMjc3LDAsMCwwLDI2LjIsOTUuOGMtLjQ5LDkuNTU0LDEuNTI2LDE0LjcsNy40MzEsMjEuMTA3LDUuMzIyLDUuNTI3LDExLjg5Myw4Ljc4LDIxLjE3NCw4LjY0OSwxMC4xMDctLjE0MywxOS4zODgtNC43ODQsMjYuNzg3LTEyLjIxOCw2LjgxNS03LjQzOCw2NS4yMTctNjMuODEzLDg0Ljk4LTgzLjEsMCwwLDEyLjA3LTE0LjQyNiwxOC4yOTUtOC40OTIsMy4wMDUsMy4wMDYsMy41ODcsOC4xMDctNi43NDEsMTguODM2LTguMTM3LDguMy0yOS42NjgsMjkuMTkzLTM3LjQ5MiwzNy4wNzVhMzguNzI2LDM4LjcyNiwwLDAsMC05LjcxMywxNS40OGMtMi4yMzQsNy4wOTEtMi42NjcsMTYuMzYzLDQuNTM1LDI1LjA4NiwxMy44NzksMTMuMTgsMzIuMzE4LDUuNzQ2LDM5LjU2OC0uMzU4LDE3Ljk1NC0xNS4xMTYsNjYuNzI3LTY1LjksNjYuNzI3LTY1LjlaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIC0wLjU1OCkiIGZpbGw9InVybCgjbGluZWFyLWdyYWRpZW50KSIvPgogIDwvZz4KPC9zdmc+');
  background-size: 242px 125px;
  background-position: 0% calc(100% + 4px);
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .home-news {
    padding: 10.8rem 0;
    background-size: 416px 220px;
  }
}
@media screen and (min-width: 1050px) {
  .home-news {
    padding-top: 9.5rem;
    background-size: 520px 275px;
    min-height: 65.4rem;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 1050px) {
  .home-news .container {
    display: flex;
    align-items: flex-start;
    gap: 9.5rem;
    max-width: 1350px;
  }
  .home-news__head {
    margin-top: 8rem;
  }
  .home-news__head .home-heading {
    margin-bottom: 2.6rem;
  }
  .home-news__body {
    min-width: 270px;
  }
  .home-news__body {
    flex: 1;
  }
}
.home-news .home-heading {
  margin-bottom: 1.2rem;
}
@media screen and (min-width: 768px) {
  .home-news .home-heading {
    margin-bottom: 2.2rem;
  }
}
.home-news .home-heading .heading-2__inner {
  padding-left: 3.5rem;
  font-size: 2rem;
  letter-spacing: .06em;
}
@media screen and (min-width: 768px) {
  .home-news .home-heading .heading-2__inner {
    padding-left: 4.8rem;
    font-size: 2.6rem;
  }
}
.home-news .home-heading .heading-2__inner::after {
  width: 27px;
  height: 13.48px;
}
@media screen and (min-width: 768px) {
  .home-news .home-heading .heading-2__inner::after {
    width: 35px;
    height: 17.48px;
  }
}
.home-news__description {
  margin-bottom: 3.5rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 1.8;
  color: #1E242F;
}
@media screen and (min-width: 768px) {
  .home-news__description {
    margin-bottom: 4.7rem;
    font-size: 1.6rem;
  }
}
.home-news__menu {
  margin-bottom: 1.8rem;
}
@media screen and (min-width: 768px) {
  .home-news__menu {
    margin-bottom: 0;
  }
}
.home-news__menu__laptop-wider__list {
  display: none;
}

@media screen and (min-width: 768px) {
  .home-news__menu__laptop-wider__list {
    display: flex;
    flex-wrap: wrap;
  }
}

.home-news__menu__laptop-wider__list__item button {
  position: relative;
  padding: 1rem 2rem 2rem 2rem;
  border: none;
  background: none;
  transition: color .3s;
  appearance: none;
  cursor: pointer;
  transition: color .3s;
}
@media screen and (min-width: 768px) {
  .home-news__menu__laptop-wider__list__item button {
    font-size: 1.5rem;
  }
  .home-news__menu__laptop-wider__list__item:not(:first-child) button::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 1px;
    height: 23px;
    border-left: 1px dotted #ABAEC1;
  }
}

.home-news__menu__laptop-wider__list__item:not(:first-child) button {
  padding: .9rem 2rem 2.1rem 1.6rem;
}

.home-news__menu__laptop-wider__list__item:hover button {
  color: #1E242F;
}

.home-news__menu__laptop-wider__list__item.is-current button {
  position: relative;
  color: #172A88;
}

.home-news__menu__laptop-wider__list__item.is-current .tab_icon {
  content: '';
  overflow: hidden;
  position: absolute;
  bottom: -1px;
  left: calc(50% - 22.5px);
  width: 45px;
  height: 2px;
  z-index: 1;
}
.home-news__menu__laptop-wider__list__item.is-current .tab_icon::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 10px;
  background: #172A88;
}


/* SP/TB controls */
@media screen and (min-width: 768px) {
  .home-news__menu__palmtop {
    display: none;
  }
}

.home-news__menu__palmtop__label {
  display: block;
  position: relative;
}

.home-news__menu__palmtop__label__icon {
  position: absolute;
  top: calc(50% - 5px);
  right: 16px;
  width: 12px;
  height: 10px;
}

.home-news__menu__palmtop__label__icon__path {
  fill: ;
  stroke: ;
}

.home-news__menu__palmtop__label__select {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  outline: none;
  border: none;
  border-radius: 5px;
  background: none #fff;
  color: inherit;
  font-size: 1.4rem;
  letter-spacing: .1em;
  text-indent: 0.01px;
  text-overflow: '';
  appearance: none;
}
.home-news__content {
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .home-news__content {
    margin-bottom: 5.5rem;
  }
}

/* tab body */
.home-news__content__list {
  display: none;
  position: relative;
  border-top: 1px dotted #ABAEC1;
  border-bottom: 1px dotted #ABAEC1;
}
.home-news__content__list.show {
  display: block;
}

.home-news__content__list__item:not(:first-child) {
  border-top: 1px dotted #ABAEC1;
}

.home-news__content__list__item__anchor {
  display: block;
  padding: 2.5rem 2rem 2.7rem 1.1rem;
  transition: background-color .3s;
}
@media screen and (min-width: 768px) {
  .home-news__content__list__item__anchor {
    padding: 3rem 2rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-news__content__list__item__anchor {
    padding: 3rem 2rem 3.5rem 1.9rem;
  }
  .home-news__content__list__item__anchor:hover {
    background-color: rgba(23, 42, 136, .02);
  }
}

@media screen and (min-width: 768px) {
  .home-news__content__list__item__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 2.2rem;
  }
}
.home-news__content__list__item__content__head {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .home-news__content__list__item__content__head {
    width: 100%;
  }
}

.home-news__content__list__item__content__head__date {
  margin-top: 5px;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: #172A88;
}

.home-news__content__list__item__content__head__category {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
}
.home-news__content__list__item__content__head__category__item__inner {
  display: inline-block;
  box-sizing: border-box;
  min-width: 110px;
  padding: .5rem 1.8rem;
  background-color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-align: center;
  border-radius: 25px;
  color: #1E242F;
}

.home-news__content__list__item__content__body {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .home-news__content__list__item__content__body {
    margin-top: 0;
  }
}
.home-news__content__list__item__content__body .paragraph {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 2;
  color: #1E242F;
  transition: color .3s;
}
@media screen and (min-width: 768px) {
  .home-news__content__list__item__content__body .paragraph {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-news__content__list__item__anchor:hover .home-news__content__list__item__content__body .paragraph {
    color: #172A88;
  }
}
.home-news .link-button {
  max-width: 250px;
}
@charset "UTF-8";

/* home-blog */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


.home-blog {
  padding: 7.5rem 0;
}
@media screen and (min-width: 768px) {
  .home-blog {
    padding: 11rem 0;
    background-image:url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNTIwIiBoZWlnaHQ9IjI3NSIgdmlld0JveD0iMCAwIDUyMCAyNzUiPgogIDxkZWZzPgogICAgPGxpbmVhckdyYWRpZW50IGlkPSJsaW5lYXItZ3JhZGllbnQiIHgxPSIwLjk0OSIgeTE9IjAuNTI1IiB4Mj0iLTAuMjQ3IiB5Mj0iMC41NTciIGdyYWRpZW50VW5pdHM9Im9iamVjdEJvdW5kaW5nQm94Ij4KICAgICAgPHN0b3Agb2Zmc2V0PSIwIiBzdG9wLWNvbG9yPSIjZjdmOWZjIi8+CiAgICAgIDxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI2Y3ZjlmYyIgc3RvcC1vcGFjaXR5PSIwLjA1MSIvPgogICAgPC9saW5lYXJHcmFkaWVudD4KICAgIDxjbGlwUGF0aCBpZD0iY2xpcC1wYXRoIj4KICAgICAgPHJlY3QgaWQ9IumVt+aWueW9ol8xMjY1MiIgZGF0YS1uYW1lPSLplbfmlrnlvaIgMTI2NTIiIHdpZHRoPSI1MjAiIGhlaWdodD0iMjc1IiBmaWxsPSJ1cmwoI2xpbmVhci1ncmFkaWVudCkiLz4KICAgIDwvY2xpcFBhdGg+CiAgPC9kZWZzPgogIDxnIGlkPSLjgrDjg6vjg7zjg5dfMTM2MjkiIGRhdGEtbmFtZT0i44Kw44Or44O844OXIDEzNjI5IiBjbGlwLXBhdGg9InVybCgjY2xpcC1wYXRoKSI+CiAgICA8cGF0aCBpZD0i44OR44K5Xzg5MzgiIGRhdGEtbmFtZT0i44OR44K5IDg5MzgiIGQ9Ik01MjAsODMuNTYzbC0uMTM4LS4xMzhMMzc4LjkxNywyMjQuNjE1Yy02LjUsNS42MjctMTUuMzg4LDkuMzI3LTIzLjA0MiwxLjk4LTcuNzMxLTcuNDE5LTIuNjQxLTE2LjksMS41MzktMjEuMiwxNi43NTQtMTguMzY5LDYzLjItNjUuNzc3LDgxLjktODQuOTc2QzQ4Mi4xNjksNzQuNiw0ODAuNTY3LDM5LjYzNSw0NTcuNTksMTYuNjM2Yy0yMi0yMi4wMi00OS40MzItMTcuNDMtNjQuMTU2LTEwLjk0MUE2NC41MSw2NC41MSwwLDAsMCwzNzQuMiwxOS4yYy01NC4xMSw1My41MTMtMTc2LjM3OCwxNzIuNDM1LTIwMC45MjMsMTk4LjEyM2E2NS41ODYsNjUuNTg2LDAsMCwxLTEyLjQzNSwxMC4zMTJjLTEwLjk4MSw2LjktMjAuNzMzLDguMTQxLTI2LjQ4NiwxLjI1OS03LjI0MS05LjYzOC0zLjcwNy0yMC4zOTMsMTAuMTY1LTM1LjA1NSwxMy4zMzQtMTMuNzY2LDc2LjA1MS04Mi44NzgsODUuMjA4LTkyLjQ3Miw5LjY4Mi0xMS4zNTQsMTkuOTY1LTI4LjEyNCwxOC44MzItNDMuMDA5LS42NzktMTguNzM0LTcuOTEzLTMzLjI1My0yMS45NjctNDUuNjQ1QzIxMy40MTEuNDIzLDE5MC41MzYtMi44MDgsMTczLjI3OCwyLjM3N2E1OS43ODQsNTkuNzg0LDAsMCwwLTIxLjMxNSwxMS4zNzFMMCwxNTkuODcyLDI3Ljk3NiwxODksMTY2LjQsNTkuNjE4UzE5MC45OCwzNC42NjUsMjAzLjA0NCw0OC40QzIxMy4yMzgsNjAsMTkzLjMzOSw3OS44ODQsMTkwLjA2MSw4My43Yy0xMC4wNzIsMTEuNzMxLTY2Ljk2LDYzLjktOTAuNTg5LDkyLjUwOS0xMS45NzMsMTQuNS0xMy42LDI3LjI4Ny0xNC43LDMzLjYwOC0xLjA1OCwyMC45MjUsMy4yOTUsMzIuMTg5LDE2LjA0Nyw0Ni4yMjgsMTEuNDk0LDEyLjEwNywyNS42ODQsMTkuMjMxLDQ1LjcyNywxOC45NDMsMjEuODI4LS4zMTMsNDEuODctMTAuNDc3LDU3Ljg0OC0yNi43NTksMTQuNzE5LTE2LjI5LDE0MC44MzktMTM5Ljc2NiwxODMuNTE5LTE4MiwwLDAsMjYuMDY1LTMxLjYsMzkuNTA4LTE4LjYsNi40ODksNi41ODQsNy43NDYsMTcuNzU3LTE0LjU1Nyw0MS4yNTUtMTcuNTczLDE4LjE4Ni02NC4wNjksNjMuOTM5LTgwLjk2Niw4MS4yLTkuNDI0LDkuNjI5LTE2Ljk3OCwyMS4wMzItMjAuOTc1LDMzLjktNC44MjQsMTUuNTMyLTUuNzU5LDM1Ljg0LDkuNzkzLDU0Ljk0NSwyOS45NzMsMjguODY4LDY5Ljc5MiwxMi41ODQsODUuNDQ4LS43ODVDNDMxLjYzMiwyMzYuNDEsNDg1LjgxMywxODAuOTYyLDUyMCwxNDUuNDY4WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAwKSIgZmlsbD0idXJsKCNsaW5lYXItZ3JhZGllbnQpIi8+CiAgPC9nPgo8L3N2Zz4=');
    background-size: 416px 220px;
    background-position: bottom -2px right;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 1050px) {
  .home-blog {
    padding-top: 10.9rem;
    background-size: 520px 275px;
  }
  .home-blog .heading-2__deco {
    padding-top: .7rem;
  }
}
.home-blog__list {
  margin-bottom: 3.7rem;
}
@media screen and (min-width: 768px) {
  .home-blog__list {
    margin-top: 4rem;
    margin-bottom: 7rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-blog .container {
    max-width: 1350px;
  }
  .home-blog__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .8rem;
    margin-top: 5.8rem;
    margin-bottom: 9.8rem;
  }
}
.home-blog__list__item:not(:first-child) {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .home-blog__list__item:not(:first-child) {
    margin-top: 2.2rem;
  }
  .home-blog__list__item__card {
    display: flex;
    gap: 2.3rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-blog__list__item:not(:first-child) {
    margin-top: 0;
  }
  .home-blog__list__item__card {
    flex-direction: column;
    gap: .7rem;
  }
}
.home-blog__list__item__card__head {
  width: 100%;
  min-height: 188px;
  margin-bottom: .5rem;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .home-blog__list__item__card__head {
    width: calc(50% - 1.5rem);
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1050px) {
  .home-blog__list__item__card__head {
    width: 100%;
    overflow: hidden;
  }
}
.home-blog__list__item__card__head img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
@media screen and (min-width: 1050px) {
  .home-blog__list__item__card:hover .home-blog__list__item__card__head > img {
    transform: scale(1.05);
  }
}
@media screen and (min-width: 768px) {
  .home-blog__list__item__card__body {
    width: calc(50% - 1.5rem);
  }
}
@media screen and (min-width: 1050px) {
  .home-blog__list__item__card__body {
    width: 100%;
  }
}
.home-blog__list__item__card__body__date {
  margin: .5rem 0 .4rem;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 2;
  color: #172A88;
}
@media screen and (min-width: 768px) {
  .home-blog__list__item__card__body__date {
    margin-top: 0;
    margin-bottom: .4rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-blog__list__item__card__body__date {
    margin-bottom: .6rem;
  }
}
.home-blog__list__item__card__body__category {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: .4rem;
  margin-bottom: .8rem;
}
@media screen and (min-width: 768px) {
  .home-blog__list__item__card__body__category {
    margin-top: .4rem;
    margin-bottom: .7rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-blog__list__item__card__body__category {
    margin-top: .6rem;
    margin-bottom: 1rem;
  }
}
.home-blog__list__item__card__body__category__item {
  padding: 0 2.5rem;
  background-color: #F7F9FC;
  border-radius: 25px;
}
.home-blog__list__item__card__body__category__item__inner {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: .03em;
  line-height: 2;
  color: #3B4046;
}
.home-blog__list__item__card__body__heading {
  margin-top: .8rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.8;
  color: #3B4046;
  transition: color .3s;
}
@media screen and (min-width: 768px) {
  .home-blog__list__item__card__body__heading {
    margin-top: 1.3rem;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-blog__list__item__card__body__heading {
    margin-top: .9rem;
  }
  .home-blog__list__item__card:hover .home-blog__list__item__card__body__heading {
    color: #172A88;
  }
}
@charset "UTF-8";

/* home strength */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


.home-strength {
  padding: 7.4rem 0;
}
@media screen and (min-width: 768px) {
  .home-strength {
    padding: 11.7rem 0;
  }
}
@media screen and (min-width: 1050px) {
  .home-strength .container {
    max-width: 1350px;
  }
}
.home-strength .home-heading .heading-2__deco {
  padding-top: .4rem;
  font-size: 2.0rem;
  font-weight: 400;
  letter-spacing: .12em;
  color: #3B4046;
}
@media screen and (min-width: 768px) {
  .home-strength .home-heading .heading-2__deco {
    font-size: 3.5rem;
  }
}
.home-strength .home-heading .heading-2__deco span {
  font-weight: 500;
  color: #1E242F;
}

.home-strength .strength__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  counter-reset: list-counter;
  margin-top: 3.5rem;
  margin-bottom: 4.9rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .home-strength .strength__list {
    gap: 8px;
    margin-top: 5rem;
    margin-bottom: 7.5rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-strength .strength__list {
    grid-template-columns: repeat(3,1fr);
    gap: 5px;
    margin-top: 6.5rem;
    margin-bottom: 6.5rem;
  }
}
.home-strength .strength__list__item {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  row-gap: 5px;
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  background-color: #fff;
  border-radius: 5px;
  counter-increment: list-counter;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .home-strength .strength__list__item {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-row: auto;
    align-items: center;
    padding: 1.1rem 2.5rem .6rem 2.5rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-strength .strength__list__item {
    grid-template-columns: none;
    grid-template-rows: subgrid;
    grid-row: span 2;
    row-gap: 13px;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.home-strength .strength__list__item::before {
  content: counter(list-counter, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 4.8rem;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1;
  margin-top: -.1em;
  color: #ABAEC1;
  opacity: .2;
}
@media screen and (min-width: 768px) {
  .home-strength .strength__list__item::before {
    left: 0;
    transform: none;
    margin-top: -.12em;
    margin-left: -.05em;
    font-size: 6.1rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-strength .strength__list__item::before {
    margin-top: -.13em;
    left: 50%;
    transform: translateX(-50%);
    font-size: 7.0rem;
  }
}
.home-strength .strength__list__item__image {
  margin-top: 1.8rem;
  padding: 0 calc(7.7rem - 2.5rem);
}
@media screen and (min-width: 768px) {
  .home-strength .strength__list__item__image {
    margin-top: 0;
    padding: 0 6rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-strength .strength__list__item__image {
    margin-top: 0;
    padding: 0 4.8rem;
  }
}
.home-strength .strength__list__item__image img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.home-strength .strength__list__item__paragraph {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 1.8;
  color: #3B4046;
}
@media screen and (min-width: 768px) {
  .home-strength .strength__list__item__paragraph {
    text-align: left;
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-strength .strength__list__item__paragraph {
    text-align: center;
    height: 100%;
  }
}
@charset "UTF-8";

/* home slider */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


.home-slider {
  padding: 8.2rem 0 4.4rem;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjI0IiBoZWlnaHQ9IjExOSIgdmlld0JveD0iMCAwIDIyNCAxMTkiPgogIDxkZWZzPgogICAgPGxpbmVhckdyYWRpZW50IGlkPSJsaW5lYXItZ3JhZGllbnQiIHgxPSIwLjk0OSIgeTE9IjAuNTI1IiB4Mj0iLTAuMjQ3IiB5Mj0iMC41NTciIGdyYWRpZW50VW5pdHM9Im9iamVjdEJvdW5kaW5nQm94Ij4KICAgICAgPHN0b3Agb2Zmc2V0PSIwIiBzdG9wLWNvbG9yPSIjZjdmOWZjIi8+CiAgICAgIDxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI2Y3ZjlmYyIgc3RvcC1vcGFjaXR5PSIwLjA1MSIvPgogICAgPC9saW5lYXJHcmFkaWVudD4KICAgIDxjbGlwUGF0aCBpZD0iY2xpcC1wYXRoIj4KICAgICAgPHJlY3QgaWQ9IumVt+aWueW9ol8xMjY1MiIgZGF0YS1uYW1lPSLplbfmlrnlvaIgMTI2NTIiIHdpZHRoPSIyMjQiIGhlaWdodD0iMTE5IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwKSIgZmlsbD0idXJsKCNsaW5lYXItZ3JhZGllbnQpIi8+CiAgICA8L2NsaXBQYXRoPgogIDwvZGVmcz4KICA8ZyBpZD0i44Kw44Or44O844OXXzEzNjI5IiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyAxMzYyOSIgY2xpcC1wYXRoPSJ1cmwoI2NsaXAtcGF0aCkiPgogICAgPHBhdGggaWQ9IuODkeOCuV84OTM4IiBkYXRhLW5hbWU9IuODkeOCuSA4OTM4IiBkPSJNMjI0LjI4OCwzNi4wMDhsLS4wNTktLjA1OUwxNjMuNDM2LDk2Ljc5Yy0yLjgwNiwyLjQyNS02LjYzNyw0LjAxOS05LjkzOS44NTMtMy4zMzQtMy4yLTEuMTM5LTcuMjgzLjY2NC05LjEzMyw3LjIyNi03LjkxNiwyNy4yNTgtMjguMzQ0LDM1LjMyNy0zNi42MTcsMTguNDgzLTE5Ljc0OCwxNy43OTItMzQuODEzLDcuODgyLTQ0LjcyM0MxODcuODgtMi4zMiwxNzYuMDQ4LS4zNDIsMTY5LjcsMi40NTRhMjcuODI0LDI3LjgyNCwwLDAsMC04LjMsNS44MTljLTIzLjMzOSwyMy4wNi03Ni4wNzYsNzQuMy04Ni42NjMsODUuMzc0YTI4LjI4MywyOC4yODMsMCwwLDEtNS4zNjMsNC40NDRjLTQuNzM2LDIuOTc0LTguOTQzLDMuNTA4LTExLjQyNC41NDMtMy4xMjMtNC4xNTMtMS42LTguNzg4LDQuMzg1LTE1LjEwNiw1Ljc1MS01LjkzMiwzMi44LTM1LjcxMywzNi43NTItMzkuODQ3LDQuMTc2LTQuODkzLDguNjExLTEyLjExOSw4LjEyMy0xOC41MzMtLjI5My04LjA3My0zLjQxMy0xNC4zMjktOS40NzUtMTkuNjY5LTUuNjg4LTUuMy0xNS41NTQtNi42ODktMjMtNC40NTRhMjUuNzk0LDI1Ljc5NCwwLDAsMC05LjE5NCw0LjlMMCw2OC44OTEsMTIuMDY3LDgxLjQ0NCw3MS43NzMsMjUuNjlzMTAuNi0xMC43NTMsMTUuOC00LjgzNmM0LjQsNS00LjE4NiwxMy41NjktNS42LDE1LjIxNEM3Ny42MzMsNDEuMTIzLDUzLjEsNjMuNiw0Mi45LDc1LjkzMmEyNy44MjcsMjcuODI3LDAsMCwwLTYuMzQxLDE0LjQ4MmMtLjQ1Niw5LjAxNywxLjQyMSwxMy44NzEsNi45MjEsMTkuOTIsNC45NTcsNS4yMTcsMTEuMDc4LDguMjg3LDE5LjcyMyw4LjE2Myw5LjQxNS0uMTM1LDE4LjA2LTQuNTE1LDI0Ljk1MS0xMS41MzEsNi4zNDktNy4wMiw2MC43NDctNjAuMjI3LDc5LjE1Ni03OC40MjUsMCwwLDExLjI0My0xMy42MTUsMTcuMDQxLTguMDE1LDIuOCwyLjgzNywzLjM0MSw3LjY1Mi02LjI3OSwxNy43NzdDMTcwLjUsNDYuMTQsMTUwLjQ0Myw2NS44NTYsMTQzLjE1NSw3My4zQTM2LjYyMywzNi42MjMsMCwwLDAsMTM0LjEwOCw4Ny45Yy0yLjA4MSw2LjY5My0yLjQ4NCwxNS40NDQsNC4yMjQsMjMuNjc2LDEyLjkyOCwxMi40NCwzMC4xLDUuNDIyLDM2Ljg1Ni0uMzM4LDEwLjk4NS05LjM3MSwzNC4zNTQtMzMuMjY0LDQ5LjEtNDguNTU5WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTAuMDEzIDApIiBmaWxsPSJ1cmwoI2xpbmVhci1ncmFkaWVudCkiLz4KICA8L2c+Cjwvc3ZnPg==');
  background-size: 224px 119px;
  background-position: top -1px right;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .home-slider {
    padding: 10.6rem 0;
    background-size: 416px 220px;
  }
}
@media screen and (min-width: 1050px) {
  .home-slider {
    background-size: 568px 300px;
  }
}
@media screen and (min-width: 1050px) {
  .home-slider .home-heading {
    margin-bottom: 3.4rem;
  }
}
.home-slider .link-button {
  max-width: 335px;
}
@media screen and (min-width: 768px) {
  .home-slider .link-button {
    max-width: 400px;
  }
}
@media screen and (min-width: 768px) {
  .home-slider .link-button {
    margin-top: 3.4rem;
  }
}
.home-slider .slider {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .home-slider .slider {
    position: relative;
    margin-top: 6rem;
    padding-left: 6.7rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-slider .slider {
    margin-top: 6.1rem;
  }
}
.home-slider .slider__list:not(.slick-initialized) {
  display: none;
}
.home-slider .slider__list {
  width: calc(50% + 50vw);
  margin-right: auto;
  overflow: hidden;
}
.home-slider .slider__list .slick-list {
  padding: 0 107px 0 0 !important;
}
@media screen and (min-width: 768px) {
  .home-slider .slider__list .slick-list {
    padding: 0 60px 0 0 !important;
  }
}
@media screen and (min-width: 1050px) {
  .home-slider .slider__list .slick-list {
    padding: 0 276px 0 0 !important;
  }
}
/* スライド：itemの中身 */
.home-slider .slider__list__item__card {
  position: relative;
  display: block;
  margin-right: 3px;
}

.home-slider .slider__list__item__card__head__image {
  position: relative;
  width: 100%;
  aspect-ratio: 30 / 29;
  border-radius: .5rem;
  overflow: hidden;
}
.home-slider .slider__list__item__card__head__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0C1931;
  opacity: 60%;
  transition: opacity .3s;
  z-index: 1;
}
@media screen and (min-width: 1050px) {
  .home-slider .slider__list__item__card:hover .slider__list__item__card__head__image::before {
    opacity: 50%;
  }
}
.home-slider .slider__list__item__card__head__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
@media screen and (min-width: 1050px) {
  .home-slider .slider__list__item__card:hover .slider__list__item__card__head__image > img {
    transform: scale(1.05);
  }
}
.home-slider .slider__list__item__card__body {
  display: flex;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem 2rem 1.5rem 2rem;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .home-slider .slider__list__item__card__body {
    padding: 2rem 2.5rem 2rem 2.6rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-slider .slider__list__item__card__body {
    padding: 2rem 2rem 1.5rem;
  }
}
.home-slider .slider__list__item__card__body__heading {
  position: relative;
  width: 100%;
  min-height: 4.1rem;
  padding-right: 5.5rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.5;
  color: #fff;
  z-index: 1;
}
.home-slider .slider__list__item__card__body__heading::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  background-image:url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2LjY0MyIgaGVpZ2h0PSIxMC43NjgiIHZpZXdCb3g9IjAgMCA2LjY0MyAxMC43NjgiPgogIDxnIGlkPSLjgrDjg6vjg7zjg5dfMTI5MjgiIGRhdGEtbmFtZT0i44Kw44Or44O844OXIDEyOTI4IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTI2LjY3OSAtMjE4My42MTUpIj4KICAgIDxwYXRoIGlkPSLjg5HjgrlfNzcxMiIgZGF0YS1uYW1lPSLjg5HjgrkgNzcxMiIgZD0iTTUwOC40NDUsMzQ0NS41NjZsNiw0Ljk2Mi02LDUuMDM4IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxOC41NTUgLTEyNjEuNTY2KSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2UtbGluZWpvaW49ImJldmVsIiBzdHJva2Utd2lkdGg9IjEiLz4KICA8L2c+Cjwvc3ZnPg==');
  background-repeat: no-repeat;
  background-size: 6px 10px;
  background-position: center;
  width: 2.5rem;
  height: 2.5rem;
  border:  1px solid #fff;
  border-radius: 50%;
  transition: background-position .3s;
}
@media screen and (min-width: 768px) {
  .home-slider .slider__list__item__card__body__heading::after {
    width: 3rem;
    height: 3rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-slider .slider__list__item__card__body__heading {
    font-size: 1.6rem;
  }
  .home-slider .slider__list__item__card:hover .slider__list__item__card__body__heading::after {
    background-position: calc(50% + 5px) 50%;
  }
}

/* スライダー：ページャー */
.home-slider .slider__nav {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .home-slider .slider__nav {
    position: absolute;
    left: 0;
    top: calc(50% - 1.3rem);
    transform: translateY(-50%);
    flex-direction: column-reverse;
    gap: 4rem;
    width: fit-content;
    margin-top: 0;
  }
}
@media screen and (min-width: 1050px) {
  .home-slider .slider__nav {
    top: calc(50% - 16px);
  }
}
.home-slider .slider__nav__prev,
.home-slider .slider__nav__next {
  position: relative;
  width: 35px;
  height: 35px;
  background: linear-gradient(116deg, #172A88 0%, #2B69A7 100%);
  border-radius: 50%;
  border: none;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .home-slider .slider__nav__prev,
  .home-slider .slider__nav__next {
    width: 38px;
    height: 38px;
  }
}
.home-slider .slider__nav__prev img,
.home-slider .slider__nav__next img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: transform .3s;
  z-index: 1;
}
@media screen and (min-width: 1050px) {
  .home-slider .slider__nav__prev::after,
  .home-slider .slider__nav__next::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(116deg, #2F4294 0%, #3D69A7 100%);
    opacity: 0;
    transition: opacity .3s;
    border-radius: 50%;
  }

  .home-slider .slider__nav__prev:hover::after,
  .home-slider .slider__nav__next:hover::after {
    opacity: 1;
  }
  .home-slider .slider__nav__next:hover img {
    transform: translate(calc(-50% + 5px),-50%);
  }
  .home-slider .slider__nav__prev:hover img {
    transform: translate(calc(-50% - 5px),-50%);
  }
}

.home-slider .slider__bar {
  content: "";
  position: relative;
  width: calc(50% + 50vw);
  height: 2px;
  margin-top: 2.1rem;
  border-bottom: 2px solid #ABAEC1;
  box-sizing: border-box;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .home-slider .slider__bar {
    margin-top: 2.8rem;
  }
}
.home-slider .slider__bar__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 20%;
  border-bottom: 2px solid #172A88;
  z-index: 11;
  transition: .5s width;
}
@charset "UTF-8";

/* home case-study */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


.home-case-study {
  padding: 7.5rem 0 8rem;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMzEzIiBoZWlnaHQ9IjE2NCIgdmlld0JveD0iMCAwIDMxMyAxNjQiPgogIDxkZWZzPgogICAgPGxpbmVhckdyYWRpZW50IGlkPSJsaW5lYXItZ3JhZGllbnQiIHkxPSIwLjU2OCIgeDI9IjEuMDM1IiB5Mj0iMC41NjEiIGdyYWRpZW50VW5pdHM9Im9iamVjdEJvdW5kaW5nQm94Ij4KICAgICAgPHN0b3Agb2Zmc2V0PSIwIiBzdG9wLWNvbG9yPSIjZmZmIi8+CiAgICAgIDxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI2ZmZiIgc3RvcC1vcGFjaXR5PSIwLjA1MSIvPgogICAgPC9saW5lYXJHcmFkaWVudD4KICAgIDxjbGlwUGF0aCBpZD0iY2xpcC1wYXRoIj4KICAgICAgPHJlY3QgaWQ9IumVt+aWueW9ol8xMjY1MyIgZGF0YS1uYW1lPSLplbfmlrnlvaIgMTI2NTMiIHdpZHRoPSIzMTMiIGhlaWdodD0iMTY0IiBmaWxsPSJ1cmwoI2xpbmVhci1ncmFkaWVudCkiLz4KICAgIDwvY2xpcFBhdGg+CiAgPC9kZWZzPgogIDxnIGlkPSLjgrDjg6vjg7zjg5dfMTM2MzEiIGRhdGEtbmFtZT0i44Kw44Or44O844OXIDEzNjMxIiBjbGlwLXBhdGg9InVybCgjY2xpcC1wYXRoKSI+CiAgICA8cGF0aCBpZD0i44OR44K5Xzg5MzkiIGRhdGEtbmFtZT0i44OR44K5IDg5MzkiIGQ9Ik0yOTQuNzY2LDQ5Ljc2M2wtODQuNSw4NC4yMTljLTMuOSwzLjM1Ny05LjIyNiw1LjU2My0xMy44MTUsMS4xODEtNC42MzUtNC40MjUtMS41ODMtMTAuMDgxLjkyMy0xMi42NDMsMTAuMDQ1LTEwLjk1NywzNy44ODktMzkuMjM2LDQ5LjEtNTAuNjg4LDI1LjY5MS0yNy4zMzYsMjQuNzMxLTQ4LjE5LDEwLjk1NS02MS45MDlDMjQ0LjI0Mi0zLjIxMSwyMjcuOC0uNDczLDIxOC45NjgsMy40YTM4LjY4NCwzOC42ODQsMCwwLDAtMTEuNTMxLDguMDU1QzE3NSw0My4zNzMsMTAxLjY5MywxMTQuMzA5LDg2Ljk3OCwxMjkuNjMyYTM5LjI3NywzOS4yNzcsMCwwLDEtNy40NTUsNi4xNTFjLTYuNTg0LDQuMTE2LTEyLjQzLDQuODU2LTE1Ljg3OS43NTEtNC4zNDEtNS43NDktMi4yMjItMTIuMTY0LDYuMDk0LTIwLjkxLDcuOTk0LTguMjEyLDQ1LjYtNDkuNDM3LDUxLjA4NS01NS4xNTksNS44LTYuNzczLDExLjk3LTE2Ljc3NiwxMS4yOS0yNS42NTUtLjQwNy0xMS4xNzQtNC43NDQtMTkuODM1LTEzLjE3LTI3LjIyN0MxMTEuMDM5LjI1Miw5Ny4zMjUtMS42NzUsODYuOTc4LDEuNDE4QTM1LjksMzUuOSwwLDAsMCw3NC4yLDguMkwwLDc5LjE4N3YzMy40MjdMODIuODU3LDM1LjU2MnMxNC43MzQtMTQuODg0LDIxLjk2Ny02LjY5M2M2LjExMSw2LjkyLTUuODE4LDE4Ljc4Mi03Ljc4NCwyMS4wNkM5MSw1Ni45MjYsNTYuOSw4OC4wNDIsNDIuNzMsMTA1LjExYTM4LjQzMywzOC40MzMsMCwwLDAtOC44MTQsMjAuMDQ3Yy0uNjM0LDEyLjQ4MiwxLjk3NSwxOS4yLDkuNjIxLDI3LjU3NSw2Ljg5MSw3LjIyMSwxNS40LDExLjQ3MSwyNy40MTUsMTEuMywxMy4wODYtLjE4NywyNS4xLTYuMjUsMzQuNjgyLTE1Ljk2Miw4LjgyNC05LjcxNyw4NC40MzctODMuMzcsMTEwLjAyNS0xMDguNTYxLDAsMCwxNS42MjctMTguODQ3LDIzLjY4Ny0xMS4wOTUsMy44OTEsMy45MjgsNC42NDQsMTAuNTkyLTguNzI4LDI0LjYwOS0xMC41MzUsMTAuODQ4LTM4LjQxMSwzOC4xNC00OC41NDIsNDguNDM4QTUwLjY2MSw1MC42NjEsMCwwLDAsMTY5LjUsMTIxLjY4NGMtMi44OTIsOS4yNjUtMy40NTIsMjEuMzc4LDUuODcxLDMyLjc3NCwxNy45NywxNy4yMiw0MS44NDIsNy41MDcsNTEuMjI5LS40NjhDMjQ5Ljg0NiwxMzQuMjQxLDMxMi45OTMsNjcuOSwzMTIuOTkzLDY3LjlaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIC0wLjAzNykiIGZpbGw9InVybCgjbGluZWFyLWdyYWRpZW50KSIvPgogIDwvZz4KPC9zdmc+');
  background-size: 313px 164px;
  background-position: bottom left;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .home-case-study {
    padding: 110px 0;
    background-size: 469px 247px;
  }
}
@media screen and (min-width: 1050px) {
  .home-case-study {
    background-size: 522px 275px;
  }
}
.home-case-study .home-heading .heading-2__deco {
  letter-spacing: .08em;
}
.case-study__logo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: .9rem;
  row-gap: .4rem;
  justify-items: center;
  align-items: center;
  padding: 2rem;
  margin-top: 3.5rem;
  border-radius: 5px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .case-study__logo {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 1.6rem;
    row-gap: .4rem;
    padding: 3.5rem 5.4rem;
  }
}
@media screen and (min-width: 1050px) {
  .case-study__logo {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 1.4rem;
    row-gap: 2rem;
    padding: 5rem 5.5rem;
    margin-top: 5.5rem;
  }
}
.case-study__logo__item img {
  max-width: 92px;
  max-height: 54px;
}
@media screen and (min-width: 768px) {
  .case-study__logo__item img {
    max-width: 128px;
    max-height: 75px;
  }
}
@media screen and (min-width: 1050px) {
  .case-study__logo__item img {
    max-width: 145px;
    max-height: 85px;
  }
}
.case-study__logo__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.case-study__case {
  display: grid;
  gap: 4.3rem;
  margin-top: 2.7rem;
  margin-bottom: 6.7rem;
}
@media screen and (min-width: 768px) {
  .case-study__case {
    grid-template-columns: repeat(2, 1fr);
    column-gap: .4rem;
    row-gap: 5.5rem;
    margin-top: 5.1rem;
    margin-bottom: 9.0rem;
  }
}
@media screen and (min-width: 1050px) {
  .case-study__case {
    grid-template-columns: repeat(3, 1fr);
    column-gap: .5rem;
    margin-top: 5.8rem;
  }
}
.case-study__case__card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  background-color: #fff;
}
.case-study__case__card__head {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.case-study__case__card__head img {
  display: block;
  width: 100%;
  transition: transform .3s;
}
@media screen and (min-width: 1050px) {
  .case-study__case__card:hover .case-study__case__card__head > img {
    transform: scale(1.1);
  }
}
.case-study__case__card__head__logo {
  position: absolute;
  bottom: -.1rem;
  left: 0;
  width: 115px;
  height: 65px;
  padding: 1rem;
  border-radius: 0 5px 0 0;
  background-color: #fff;
  box-sizing: border-box;
}
@media screen and (min-width: 1050px) {
  .case-study__case__card__head__logo {
    padding: .3rem .7rem .6rem;
  }
}
.case-study__case__card__head__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.case-study__case__card__body {
  display: grid;
  grid-template-rows: auto auto 1fr;
  padding: 1.6rem 2.5rem 3.6rem;
}
@media screen and (min-width: 1050px) {
  .case-study__case__card__body {
    padding-bottom: 3.3rem;
  }
}
.case-study__case__card__body__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.8;
  color: #1E242F;
  transition: color .3s;
}
@media screen and (min-width: 768px) {
  .case-study__case__card__body__heading {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 1050px) {
  .case-study__case__card:hover .case-study__case__card__body__heading {
    color: #172A88;
  }
}
.case-study__case__card__body__company {
  margin-top: .8rem;
  margin-bottom: 3.5rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.5;
  color: #3B4046;
}
@media screen and (min-width: 768px) {
  .case-study__case__card__body__company {
    margin-bottom: 1.8rem;
  }
}
@media screen and (min-width: 1050px) {
  .case-study__case__card__body__company {
    margin-top: 1.4rem;
    margin-bottom: 2.3rem;
  }
}
.case-study__case__card__body__info {
  margin-top: auto;
  width: 100%;
}
.case-study__case__card__body__info__group {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 1.3rem;
}
.case-study__case__card__body__info__term {
  padding: .7rem .9rem .7rem;
  min-width: 6.7rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 1;
  color: #3B4046;
  background-color: #F7F9FC;
  text-align: center;
  border-radius: 5px;
}
.case-study__case__card__body__info__description {
  margin-left: 1.5rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.5;
  color: #1E242F;
}
.case-study__case__card__body__more {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 35px;
  height: 35px;
  background: linear-gradient(116deg, #172A88 0%, #2B69A7 100%);
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .case-study__case__card__body__more {
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width: 1050px) {
  .case-study__case__card__body__more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(116deg, #2F4294 0%, #3D69A7 100%);
    opacity: 0;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .case-study__case__card:hover .case-study__case__card__body__more::before {
    opacity: 1;
  }
}
.case-study__case__card__body__more img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: transform .3s;
}
@media screen and (min-width: 1050px) {
  .case-study__case__card:hover .case-study__case__card__body__more img {
    transform: translate(calc(-50% + 5px),-50%);
  }
}
@charset "UTF-8";

/* home strength */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


.home-brand {
  position: relative;
  padding: 8.5rem 0 9.7rem;
}
@media screen and (min-width: 768px) {
  .home-brand {
    padding: 12.7rem 0 15rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-brand {
    padding-top: 13.5rem;
  }
}
.home-brand::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #101319 0%, #1E242FBF 100%);
}
.home-brand__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
  z-index: -1;
}
.home-brand__bg::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.home-brand .container {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1050px) {
  .home-brand .container {
    max-width: 1350px;
  }
}

.home-brand .home-heading .heading-2__inner {
  padding-bottom: 1.8rem;
  color: #fff;
}
.home-brand .home-heading .heading-2__inner::after {
  background-image:url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMSIgaGVpZ2h0PSIxIiB2aWV3Qm94PSIwIDAgMTEgMSI+CiAgPHBhdGggaWQ9IuODkeOCuV83NzkzIiBkYXRhLW5hbWU9IuODkeOCuSA3NzkzIiBkPSJNNTM5LjUzNywzOTg5LjcyM2gxMCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTUzOS4wMzcgLTM5ODkuMjIzKSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMSIvPgo8L3N2Zz4=');
  width: 10px;
}
.home-brand .home-heading .heading-2__deco {
  padding: 0;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .home-brand .brand-info {
    display: flex;
    gap: 5rem;
    margin-top: 8.3rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-brand .brand-info {
    gap: 8rem;
    margin-top: 9.5rem;
  }
}
.home-brand .brand-info__head {
  padding: 0 80px;
  min-width: 172px;
}
@media screen and (min-width: 768px) {
  .home-brand .brand-info__head {
    flex: 1;
    padding: 0;
  }
}
.home-brand .brand-info__head img {
  display: block;
  width: 100%;
}

.home-brand .brand-info__body {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .home-brand .brand-info__body {
    margin-top: 0;
    width: calc(50% + 58px);
  }
}
@media screen and (min-width: 1050px) {
  .home-brand .brand-info__body {
    width: calc(50% + 208px);
  }
}
.home-brand .brand-info__body__heading {
  position: relative;
  padding-bottom: 4.4rem;
}
@media screen and (min-width: 768px) {
  .home-brand .brand-info__body__heading {
    padding-bottom: 5.2rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-brand .brand-info__body__heading {
    max-width: 44.5rem;
  }
}
.home-brand .brand-info__body__heading::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 1.8rem;
  background-image:url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNyIgaGVpZ2h0PSIyIiB2aWV3Qm94PSIwIDAgMjcgMiI+CiAgPHBhdGggaWQ9IuODkeOCuV84OTU1IiBkYXRhLW5hbWU9IuODkeOCuSA4OTU1IiBkPSJNLTc2MzEuMzc2LDQ0NzQuNjA4aDI1IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg3NjMyLjM3NiAtNDQ3My42MDgpIiBmaWxsPSJub25lIiBzdHJva2U9IiNlZmIxMzQiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIyIi8+Cjwvc3ZnPg==');
  width: 18px;
  height: 2px;
}
@media screen and (min-width: 768px) {
  .home-brand .brand-info__body__heading::after {
    width: 27px;
  }
}
.home-brand .brand-info__body__heading img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.brand-info__body__description {
  margin-bottom: 4rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 2.68;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .brand-info__body__description {
    margin-top: .7rem;
    margin-bottom: 6rem;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1050px) {
  .brand-info__body__description {
    margin-top: .1rem;
  }
}
@charset "UTF-8";

/* home-company */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/


.home-company {
  padding: 7.3rem 0;
}
@media screen and (min-width: 768px) {
  .home-company {
    padding: 11rem 0 10.4rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-company {
    padding-top: 9.9rem;
    padding-bottom: 11.3rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-company .container {
    display: flex;
    align-items: flex-start;
    gap: 5rem;
    max-width: 1350px;
  }
}
.home-company .home-heading .heading-2__inner {
  padding-left: 3.5rem;
  font-size: 2rem;
  letter-spacing: .06em;
}
@media screen and (min-width: 768px) {
  .home-company .home-heading .heading-2__inner {
    padding-left: 4.8rem;
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-company .home-heading .heading-2__inner {
    padding-left: 5.4rem;
  }
}
.home-company .home-heading .heading-2__inner::after {
  width: 27px;
  height: 13.48px;
}
@media screen and (min-width: 768px) {
  .home-company .home-heading .heading-2__inner::after {
    width: 35px;
    height: 17.48px;
  }
}
@media screen and (min-width: 1050px) {
  .home-company .home-heading .heading-2__inner::after {
    top: calc(50% - 9px);
    transform: none;
    height: 29.97px;
    width: 40px;
  }
}
.home-company .company__head {
  margin-bottom: 2rem;
  border-radius: 5px;
}
@media screen and (min-width: 1050px) {
  .home-company .company__head {
    width: calc(50% + 2rem);
    margin-bottom: 0;
  }
}
.home-company .company__head img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.home-company .company__body {
  margin-top: 2.7rem;
}
@media screen and (min-width: 1050px) {
  .home-company .company__body {
    flex: 1;
    margin-top: 3.4rem;
  }
}
.home-company .company__body__paragraph {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 2;
  color: #3B4046;
}
@media screen and (min-width: 768px) {
  .home-company .company__body__paragraph {
    font-size: 1.6rem;
  }
}
.home-company .link-button {
  max-width: 300px;
}

@media screen and (min-width: 1050px) {
  .home-company .link-button {
    margin-top: 6.5rem;
  }
}
@charset "UTF-8";

/* home-recruit */
/* --------------------------------------------------

  サイト全体で共通の設定

-------------------------------------------------- */


/* ブレイクポイント
--------------------------------------*/




/* カラースキーム
--------------------------------------*/
/*
  記事詳細のtableの1行目のbackground-color用
  不透明度を設定したテーマカラー(light_pale_color)が効かないため特別に作成
*/


/* フォント
--------------------------------------*/
/* 基本のフォント */


/* 英字のフォント */


/* ボタンのフォント */


/* html 要素 */


/* 文字のサイズ
--------------------------------------*/
/* html 要素 */



/* small要素 */



/* sub、sup 要素 */



/* heading */












/* system pages */



/* 文字のウェイト
--------------------------------------*/




/* heading */


/* base text */





/* button */



/* system pages */



/* 文字間
--------------------------------------*/



/* system pages */



/* 行間
--------------------------------------*/








/* container の設定
--------------------------------------*/
/* 左右内側の余白 */




/* natural の設定
--------------------------------------*/
/* 要素間の上下余白 */




/* 上下マージン
----------------------------------------------*/
/* between column */


















/* vertical line-height crop */


/* vertical line-height crop (heading + paragraph) */


/* offset line-height from vertical margin */



/* transition の設定
---------------------------------------*/

.home-recruit {
  position: relative;
  padding: 5.5rem 0 7.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .home-recruit {
    padding: 8.0rem 0;
  }
}
@media screen and (min-width: 1050px) {
  .home-recruit {
    padding-top: 10.3rem;
  }
}
.home-recruit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNTQzIiBoZWlnaHQ9IjExNiIgdmlld0JveD0iMCAwIDU0MyAxMTYiPgogIDxkZWZzPgogICAgPGxpbmVhckdyYWRpZW50IGlkPSJsaW5lYXItZ3JhZGllbnQiIHgxPSIwLjUiIHgyPSIwLjUiIHkyPSIxIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCI+CiAgICAgIDxzdG9wIG9mZnNldD0iMCIgc3RvcC1jb2xvcj0iIzE3MmE4OCIvPgogICAgICA8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMyYjY5YTciLz4KICAgIDwvbGluZWFyR3JhZGllbnQ+CiAgPC9kZWZzPgogIDxwYXRoIGlkPSLjg5HjgrlfNzc4MiIgZGF0YS1uYW1lPSLjg5HjgrkgNzc4MiIgZD0iTTguNTQtLjJWLTExMy40SDM1LjY2OXExMS40NjcsMCwxOS4zNjgsMi43MjVhMjIuMjUsMjIuMjUsMCwwLDEsMTIuMDI2LDkuMjk0cTQuMTI1LDYuNTY5LDQuMTI1LDE3Ljg4OWE1NC44NDIsNTQuODQyLDAsMCwxLTEuMjU5LDEyLjNBMjMuNCwyMy40LDAsMCwxLDY1LjY2NS02MS45YTE5LjIyOSwxOS4yMjksMCwwLDEtOC4zMjEsNS45NEw3My4xNDYtLjJINTIuNDVsLTEzLjctNTEuODUxSDI5LjIzNlYtLjJabTIwLjctNjQuODQ4aDYuNDMzYTIxLjk5MiwyMS45OTIsMCwwLDAsOS41NzktMS43NDcsMTAuMjA2LDEwLjIwNiwwLDAsMCw1LjEtNS41OSwyNi44MTIsMjYuODEyLDAsMCwwLDEuNTM4LTkuODUzcTAtOC41MjUtMy4xNDYtMTIuNzg4VDM2Ljc4OC05OS4yODdIMjkuMjM2Wk0xMDAuOTc0LS4yVi0xMTMuNEgxNDguNTJ2MTQuNTM1SDEyMS42NzFWLTY2LjNoMjEuMTE2djE0LjRIMTIxLjY3MXYzNy40NTVIMTQ4LjhWLS4yWk0yMDUuMywxLjM0cS0xMi40NDYsMC0xOS41MDgtNC44OTJBMjUuNSwyNS41LDAsMCwxLDE3NS45MjktMTYuOWE2Mi4wNjcsNjIuMDY3LDAsMCwxLTIuOC0xOS41di00MC4zOWE2NC43NjcsNjQuNzY3LDAsMCwxLDIuOC0yMC4xMjUsMjQuMTMxLDI0LjEzMSwwLDAsMSw5Ljg1OS0xMy4xMzdxNy4wNjItNC42MTIsMTkuNTA4LTQuNjEyLDExLjc0NywwLDE4LjM4OSwzLjk4M2EyMS45MDYsMjEuOTA2LDAsMCwxLDkuNDM5LDExLjM5LDQ4LjUyMiw0OC41MjIsMCwwLDEsMi44LDE3LjE5djkuNUgyMTYuMDYzdi05Ljc4M2E3MC4xODQsNzAuMTg0LDAsMCwwLS40ODktOC42NjUsMTAuNzUyLDEwLjc1MiwwLDAsMC0yLjY1Ny02LjIxOXEtMi4xNjgtMi4zMDYtNy40ODEtMi4zMDZ0LTcuNzYxLDIuNDQ2YTExLjc4NSwxMS43ODUsMCwwLDAtMy4xNDYsNi41NjksNTUuOTIsNTUuOTIsMCwwLDAtLjcsOS4yOTR2NDkuMmE0My41MTIsNDMuNTEyLDAsMCwwLC45NzksMTAuMTMzLDEwLjUxMywxMC41MTMsMCwwLDAsMy41NjYsNi4wMSwxMS4xNjYsMTEuMTY2LDAsMCwwLDcuMDYyLDIuMDI3cTUuMTc0LDAsNy4zNDItMi40NDZhMTIuMDIsMTIuMDIsMCwwLDAsMi43MjctNi41LDY2Ljg3Myw2Ni44NzMsMCwwLDAsLjU1OS05LjA4NHYtMTAuMkgyMzUuOTJ2OS4wODRhNTQuOSw1NC45LDAsMCwxLTIuNjU3LDE3LjgxOSwyMy4xNjUsMjMuMTY1LDAsMCwxLTkuMywxMi4xNTlRMjE3LjMyMiwxLjM0LDIwNS4zLDEuMzRaTTI2NC4zMDgtLjJWLTExMy40aDI3LjEyOXExMS40NjcsMCwxOS4zNjgsMi43MjVhMjIuMjUsMjIuMjUsMCwwLDEsMTIuMDI2LDkuMjk0cTQuMTI1LDYuNTY5LDQuMTI1LDE3Ljg4OWE1NC44NDQsNTQuODQ0LDAsMCwxLTEuMjU5LDEyLjMsMjMuNCwyMy40LDAsMCwxLTQuMjY1LDkuMjk0LDE5LjIyOSwxOS4yMjksMCwwLDEtOC4zMiw1Ljk0TDMyOC45MTQtLjJoLTIwLjdsLTEzLjctNTEuODUxSDI4NVYtLjJaTTI4NS02NS4wNDZoNi40MzNhMjEuOTkyLDIxLjk5MiwwLDAsMCw5LjU3OS0xLjc0NywxMC4yMDYsMTAuMjA2LDAsMCwwLDUuMS01LjU5LDI2LjgxMiwyNi44MTIsMCwwLDAsMS41MzgtOS44NTNxMC04LjUyNS0zLjE0Ni0xMi43ODh0LTExLjk1Ni00LjI2M0gyODVaTTM4Ny4yMjgsMS4zNHEtMTIuNTg2LDAtMTkuNTc4LTQuNjEyQTIzLjU4MywyMy41ODMsMCwwLDEsMzU4LTE2LjQwOWE2OS4wMzMsNjkuMDMzLDAsMCwxLTIuNjU3LTIwLjRWLTExMy40aDIwLjEzN3Y3OC45NjRhNjcuNzEsNjcuNzEsMCwwLDAsLjcsOS45OTMsMTQuMDYsMTQuMDYsMCwwLDAsMy4yODYsNy41NDdxMi41ODcsMi44NjUsNy43NjEsMi44NjUsNS40NTQsMCw3LjktMi44NjVhMTUuMTQzLDE1LjE0MywwLDAsMCwzLjIxNi03LjU0Nyw2MS42NjcsNjEuNjY3LDAsMCwwLC43NjktOS45OTNWLTExMy40aDIwdjc2LjU4OGE2OS4wMzMsNjkuMDMzLDAsMCwxLTIuNjU3LDIwLjQsMjMuNjksMjMuNjksMCwwLDEtOS41NzksMTMuMTM3UTM5OS45NTMsMS4zNCwzODcuMjI4LDEuMzRaTTQ0OS44NzYtLjJWLTExMy40aDIwLjQxN1YtLjJabTYzLjIwOCwwVi05OC4xNjhINDk1LjA0NVYtMTEzLjRoNTYuNXYxNS4yMzRINTMzLjc4Vi0uMloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC04LjU0IDExNC42NikiIGZpbGw9InVybCgjbGluZWFyLWdyYWRpZW50KSIvPgo8L3N2Zz4=');
  background-repeat: no-repeat;
  background-size: 27.1rem 5.745rem;
  background-position: top center;
  z-index: 1;
  opacity: .6;
  transition: all .3s;
}
@media screen and (min-width: 768px) {
  .home-recruit::before {
    background-size: 38rem 8.1rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-recruit::before {
    background-size: 54.3rem 11.6rem;
  }
  .home-recruit.bl-hover::before {
    opacity: .3;
  }
  .home-recruit.bl-hover::after {
    opacity: .5;
  }
}
.home-recruit::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0C1931;
  opacity: 60%;
}
.home-recruit .container {
  position: relative;
  z-index: 1;
}
.home-recruit__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: transform .3s;
}
@media screen and (min-width: 1050px) {
  .home-recruit .home-heading {
    margin-bottom: 3.3rem;
    font-size: 1.8rem;
  }
  .home-recruit.bl-hover .home-recruit__bg::before {
    transform: scale(1.1);
  }
}
.home-recruit .home-heading.text-center .heading-2__inner {
  padding-bottom: 2.5rem;
  font-size: 2rem;
  letter-spacing: .06em;
}
@media screen and (min-width: 768px) {
  .home-recruit .home-heading.text-center .heading-2__inner {
    padding-bottom: 3.1rem;
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-recruit .home-heading.text-center .heading-2__inner {
    padding-bottom: 3.4rem;
    font-size: 3.2rem;
  }
}
.home-recruit .home-heading .heading-2__inner::after {
  width: 27px;
  height: 13.48px;
}
@media screen and (min-width: 768px) {
  .home-recruit .home-heading .heading-2__inner::after {
    width: 40px;
    height: 19.97px;
  }
}
.home-recruit .recruit__text {
  padding: 0 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 2;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .home-recruit .recruit__text {
    padding: 0;
    margin-bottom: 1rem;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-recruit .recruit__text {
    max-width: 83.3rem;
    margin: 0 auto;
    margin-bottom: 7.1rem;
  }
}
/* unique ブランドページ */
@charset "UTF-8";

/* brand home hero */
.brand-home-hero {
  position: relative;
  margin-bottom: 4rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  clip-path: ellipse(120% 99% at top);
}
@media screen and (min-width: 768px) {
  .brand-home-hero {
    clip-path: ellipse(100% 99% at top);
  }
}
@media screen and (min-width: 1050px) {
  .brand-home-hero {
    clip-path: ellipse(77% 99% at top);
  }
}
.brand-home-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0C1931;
  opacity: 60%;
}

.brand-home-hero__info {
  position: relative;
  padding-top: 10.5rem;
  padding-bottom: 8.3rem;
  color: #fff;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .brand-home-hero__info {
    padding-top: 13.7rem;
    padding-bottom: 13.5rem;
  }
}
@media screen and (min-width: 1050px) {
  .brand-home-hero__info {
    padding-top: 19.9rem;
    padding-bottom: 16.8rem;
  }
}
.brand-home-hero__heading {
  position: relative;
  padding-bottom: 2.3rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.65;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .brand-home-hero__heading {
    padding-bottom: 3.6rem;
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 1050px) {
  .brand-home-hero__heading {
    padding-bottom: 4rem;
  }
}

/* 装飾文字 */
.brand-home-hero__heading::before {
  content: attr(data-decoration-text);
  display: block;
  margin-bottom: 13px;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .15em;
  line-height: 1.2;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .brand-home-hero__heading::before {
    margin-bottom: 17px;
    font-size: 2rem;
    letter-spacing: .25em;
  }
}
@media screen and (min-width: 1050px) {
  .brand-home-hero__heading::before {
    font-size: 2.0rem;
    margin-bottom: 11px;
  }
}

/* アイコン */
.brand-home-hero__heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMzIiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAzMiAxNSI+CiAgPGRlZnM+CiAgICA8Y2xpcFBhdGggaWQ9ImNsaXAtcGF0aCI+CiAgICAgIDxyZWN0IGlkPSLplbfmlrnlvaJfMTI3MjIiIGRhdGEtbmFtZT0i6ZW35pa55b2iIDEyNzIyIiB3aWR0aD0iMzIiIGhlaWdodD0iMTUiIGZpbGw9IiNmZmYiLz4KICAgIDwvY2xpcFBhdGg+CiAgPC9kZWZzPgogIDxnIGlkPSLjgrDjg6vjg7zjg5dfNDAwMDkiIGRhdGEtbmFtZT0i44Kw44Or44O844OXIDQwMDA5IiBvcGFjaXR5PSIwLjQ1IiBjbGlwLXBhdGg9InVybCgjY2xpcC1wYXRoKSI+CiAgICA8cGF0aCBpZD0i44OR44K5XzkwMTAiIGRhdGEtbmFtZT0i44OR44K5IDkwMTAiIGQ9Ik04LjQzNSwxNC45NzVhMy41NjgsMy41NjgsMCwwLDEtMi41NzItMS4wMDgsMi44OTMsMi44OTMsMCwwLDEtLjkzMy0yLjUyMiwzLjQxMSwzLjQxMSwwLDAsMSwuODU1LTEuODMzYzEuMzc0LTEuNTYxLDQuNjgyLTQuNDA2LDUuMjY4LTUuMDQ2LjE5MS0uMjA4LDEuMzQ4LTEuMjkzLjc1NS0xLjkyNi0uNy0uNzQ5LTIuMTMxLjYxMi0yLjEzMS42MTJMMS42MjcsMTAuMzEsMCw4LjcyLDguODM3Ljc1YTMuNjE2LDMuNjE2LDAsMCwxLDQuMzQtLjA1NywzLjIzMSwzLjIzMSwwLDAsMSwxLjI3OCwyLjQ5LDMuNTUxLDMuNTUxLDAsMCwxLTEuMSwyLjM0NmMtLjUzMi41MjMtNC4xNzksNC4yOTMtNC45NTUsNS4wNDQtLjgwNy44LTEuMDEyLDEuMzg2LS41OTEsMS45MTIuNDI2LjQ3OCwxLjIyOC4yMzgsMi4wNzUtLjQ0My44NTMtLjg4NSw4LjE3LTcuNjQxLDExLjQ5Mi0xMC43MjNBMy43NTcsMy43NTcsMCwwLDEsMjIuNS41ODNhMy40MzcsMy40MzcsMCwwLDEsMy43MzEuN2MxLjM2NCwxLjUxMSwxLjQyOSwzLjA1NS0xLjA2Miw1LjU1NEMyNC4wOCw3Ljg4OCwyMS43NTksMTAuMiwyMC43ODUsMTEuMkEuNzY3Ljc2NywwLDAsMCwyMC43LDEyLjM2YS45ODEuOTgxLDAsMCwwLDEuMzQtLjEwOGw4LjItNy43TDMyLDYuMjA5cy02LjEyNSw2LjA2Ny04LjM4LDcuODczYy0uOTExLjcyOS0zLjIyNiwxLjYxNy00Ljk2OS4wNDNhMi45MzgsMi45MzgsMCwwLDEtLjU3LTNBNC42LDQuNiwwLDAsMSwxOS4zLDkuMjc4Yy45ODItLjk0MiwzLjMwNi0zLjE2Niw0LjMyNy00LjE1OCwxLjMtMS4yODIsMS4yMjQtMS44OTEuODQ3LTIuMjUtLjc4Mi0uNzA5LTIuMywxLjAxNC0yLjMsMS4wMTQtMi40ODIsMi4zLTkuNDM2LDguNzY3LTEwLjI5Miw5LjY1NUE0LjkzOSw0LjkzOSwwLDAsMSw4LjQ3LDE0Ljk4NFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgMCkiIGZpbGw9IiNmZmYiLz4KICA8L2c+Cjwvc3ZnPg==');
  background-repeat: no-repeat;
  background-size: contain;
  width: 32px;
  height: 15px;
}
@media screen and (min-width: 768px) {
  .brand-home-hero__heading::after {
    width: 45px;
    height: 21px;
  }
}
@media screen and (min-width: 1050px) {
  .brand-home-hero__heading::after {
    width: 55px;
    height: 26px;
  }
}
.brand-home-hero__paragraph {
  margin-top: .7rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 2.25;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .brand-home-hero__paragraph {
    margin: 1.4rem auto 0;
    max-width: 500px;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1050px) {
  .brand-home-hero__paragraph {
    max-width: 650px;
  }
}
/* brand home feature */
.brand-home-feature {
  position: relative;
  padding: 4.7rem 0 8rem;
}
@media screen and (min-width: 768px) {
  .brand-home-feature {
    position: relative;
    padding: 9.5rem 0;
  }
}
@media screen and (min-width: 1050px) {
  .brand-home-feature {
    padding: 0 0;
  }
  .brand-home-feature__wrapper {
    overflow: hidden;
  }
  .brand-home-feature__container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 5rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .brand-home-feature__column:first-child {
    flex: 1;
    padding: 5.5rem 0;
    height: fit-content;
    margin: auto 0;
  }
}
.brand-home-feature__bg-heading {
  width: 100%;
  margin-top: 4rem;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .07em;
  color: #F7F9FC;
  text-align: center;
  transform: translateY(2px);
}
@media screen and (min-width: 768px) {
  .brand-home-feature__bg-heading {
    margin-top: 6.7rem;
    font-size: 5rem;
    transform: translateY(3px);
  }
}
@media screen and (min-width: 1050px) {
  .brand-home-feature__bg-heading {
    margin-top: 4rem;
    font-size: 6.8rem;
    transform: translateY(4px);
  }
}
@media screen and (min-width: 1200px) {
  .brand-home-feature__bg-heading {
    font-size: 7.8rem;
  }
}
.brand-home-feature .heading-2__deco {
  padding-left: 2.8rem;
  letter-spacing: .08em;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .brand-home-feature .heading-2__deco {
    padding-left: 4rem;
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
}
.brand-home-feature .heading-2__deco::before {
  width: 1.8rem;
  height: .9rem;
}
@media screen and (min-width: 768px) {
  .brand-home-feature .heading-2__deco::before {
    width: 2.6rem;
    height: 1.3rem;
  }
}
.brand-home-feature .heading-2__inner {
  font-size: 2rem;
  letter-spacing: .115em;
}
@media screen and (min-width: 768px) {
  .brand-home-feature .heading-2__inner {
    font-size: 3.2rem;
    letter-spacing: .12em;
  }
}
.brand-home-feature .heading-2__inner span {
  position: relative;
  background: linear-gradient(transparent 80%, rgba(239,177,52,.5) 0%);
}

.brand-home-feature__list {
  margin-top: 3.3rem;
}
@media screen and (min-width: 768px) {
  .brand-home-feature__list {
    margin-top: 55px;
  }
}
@media screen and (min-width: 1050px) {
  .brand-home-feature__list {
    padding-right: 0;
  }
}
.brand-home-feature__list__item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 1.2rem;
  width: 100%;
}
.brand-home-feature__list__item:not(:last-child) {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .brand-home-feature__list__item {
    grid-template-columns: 24px 1fr;
    gap: 1.4rem;
  }
  .brand-home-feature__list__item:not(:last-child) {
    margin-bottom: 3.2rem;
  }
}
.brand-home-feature__list__item::before {
  content: "";
  background-image:url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBpZD0i44Kw44Or44O844OXXzQwMTM2IiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyA0MDEzNiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIwIC02MjcpIj4KICAgIDxwYXRoIGlkPSLjg5HjgrlfODk4MCIgZGF0YS1uYW1lPSLjg5HjgrkgODk4MCIgZD0iTTksMEE5LDksMCwxLDEsMCw5LDksOSwwLDAsMSw5LDBaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyMCA2MjcpIiBmaWxsPSIjYWJhZWMxIi8+CiAgICA8cGF0aCBpZD0i44OR44K5Xzg5NjgiIGRhdGEtbmFtZT0i44OR44K5IDg5NjgiIGQ9Ik0tMTEzOTkuMzM2LDEyOTMuOGwtMi43MDUtMy45NzQsMS4yMjgtLjczNCwxLjc2LDIuNTg1LDUuMDE2LTQuNDIyLDEsLjk5NFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDExNDI2LjU0MSAtNjU0LjI5OCkiIGZpbGw9IiNmZmYiLz4KICA8L2c+Cjwvc3ZnPg==');
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  margin-top: 5px;
}
.brand-home-feature__list__item__paragraph {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.6;
  color: #3B4046;
}
@media screen and (min-width: 768px) {
  .brand-home-feature__list__item__paragraph {
    font-size: 2.0rem;
  }
}
.brand-home-feature__list__item__paragraph span {
  position: relative;
  font-weight: 500;
  color: #172A88;
  background-image: linear-gradient(transparent 88%, rgba(239,177,52,.5) 0%);
  background-repeat: no-repeat;
  background-position: left bottom 2px;
  background-size: 100%;
}
@media screen and (min-width: 768px) {
  .brand-home-feature__list__item__paragraph span {
    background-position: left bottom 3px;
  }
}
.brand-home-feature__image__horizontal img,
.brand-home-feature__image__vertical img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px 0 0 5px;
}

/* SP・TB（横長画像） */
.brand-home-feature__image__horizontal {
  margin-top: 4rem;
  margin-left: 2rem;
}
.brand-home-feature__image__horizontal img {
  height: 200px;
}
@media screen and (min-width: 768px) {
  .brand-home-feature__image__horizontal {
    margin-top: 6.3rem;
    margin-left: 5rem;
  }
  .brand-home-feature__image__horizontal img {
    height: 355px;
  }
}

/* PC（縦長画像） */
.brand-home-feature__image__vertical {
  display: flex;
  align-items: center;
  margin: 0 calc(50% - 50vw) 0 0;
}
.brand-home-feature__image__vertical img {
  max-width: 357px;
  max-height: 600px;
}
@media screen and (min-width: 1200px) {
  .brand-home-feature__image__vertical img {
    max-width: 450px;
    min-width: 460px;
  }
}
/* brand home strength */
.brand-home-strength {
  padding: 8rem 0 0;
  scroll-behavior: smooth;
}
@media screen and (min-width: 768px) {
  .brand-home-strength {
    padding: 9.2rem 0 0;
  }
}
@media screen and (min-width: 1050px) {
  .brand-home-strength {
    padding: 9rem 0 0;
  }
}
.brand-home-strength .heading-2__deco {
  padding-left: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  letter-spacing: .15em;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .brand-home-strength .heading-2__deco {
    font-size: 1.6rem;
  }
}
.brand-home-strength .heading-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTkxIiBoZWlnaHQ9IjkxIiB2aWV3Qm94PSIwIDAgMTkxIDkxIj4KICA8ZGVmcz4KICAgIDxsaW5lYXJHcmFkaWVudCBpZD0ibGluZWFyLWdyYWRpZW50IiB5MT0iMC41NDYiIHgyPSIwLjk0NSIgeTI9IjAuNTQ2IiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCI+CiAgICAgIDxzdG9wIG9mZnNldD0iMCIgc3RvcC1jb2xvcj0iI2Y3ZjlmYyIgc3RvcC1vcGFjaXR5PSIwLjMwMiIvPgogICAgICA8c3RvcCBvZmZzZXQ9IjAuMzUiIHN0b3AtY29sb3I9IiNmN2Y5ZmMiLz4KICAgICAgPHN0b3Agb2Zmc2V0PSIwLjUyOSIgc3RvcC1jb2xvcj0iI2Y3ZjlmYyIgc3RvcC1vcGFjaXR5PSIwLjkyMiIvPgogICAgICA8c3RvcCBvZmZzZXQ9IjAuNjY2IiBzdG9wLWNvbG9yPSIjZjdmOWZjIiBzdG9wLW9wYWNpdHk9IjAuODA0Ii8+CiAgICAgIDxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI2Y3ZjlmYyIgc3RvcC1vcGFjaXR5PSIwLjMwMiIvPgogICAgPC9saW5lYXJHcmFkaWVudD4KICAgIDxjbGlwUGF0aCBpZD0iY2xpcC1wYXRoIj4KICAgICAgPHJlY3QgaWQ9IumVt+aWueW9ol8xMjc2NCIgZGF0YS1uYW1lPSLplbfmlrnlvaIgMTI3NjQiIHdpZHRoPSIxOTEiIGhlaWdodD0iOTEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgMC41MzgpIiBmaWxsPSJ1cmwoI2xpbmVhci1ncmFkaWVudCkiLz4KICAgIDwvY2xpcFBhdGg+CiAgPC9kZWZzPgogIDxnIGlkPSLjgrDjg6vjg7zjg5dfNDAwNTgiIGRhdGEtbmFtZT0i44Kw44Or44O844OXIDQwMDU4IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIC0wLjUzOCkiIGNsaXAtcGF0aD0idXJsKCNjbGlwLXBhdGgpIj4KICAgIDxwYXRoIGlkPSLjg5HjgrlfOTAyNiIgZGF0YS1uYW1lPSLjg5HjgrkgOTAyNiIgZD0iTTUwLjM4Miw5MS4zMjFBMjEuMDc2LDIxLjA3NiwwLDAsMSwzNS4wMiw4NS4xNzNjLTQuNDI4LTQuNjctNS45NDEtOC40MTctNS41NzQtMTUuMzhhMjEuMDE1LDIxLjAxNSwwLDAsMSw1LjEtMTEuMTc3YzguMjEtOS41MTgsMjcuOTY3LTI2Ljg3LDMxLjQ2OC0zMC43NzQsMS4xMzgtMS4yNjksOC4wNS03Ljg4Myw0LjUwOC0xMS43NDVDNjYuMzM2LDExLjUzMiw1Ny44LDE5LjgzMSw1Ny44LDE5LjgzMUw5LjcxOSw2Mi44NzIsMCw1My4xOCw1Mi43ODUsNC41NzNhMjEuMDYsMjEuMDYsMCwwLDEsNy40LTMuNzgxYzYtMS43MjUsMTMuOTQtLjY1MiwxOC41MjEsMy40MzYsNC44ODMsNC4xMjMsNy40LDguOTUzLDcuNjMyLDE1LjE4NS4zOTMsNC45NTItMy4xODEsMTAuNTI5LTYuNTQ1LDE0LjMwNi0zLjE3OCwzLjE5Mi0yNC45NjQsMjYuMTgtMjkuNiwzMC43Ni00LjgxNyw0Ljg3OS02LjA0Niw4LjQ1NS0zLjUzLDExLjY2MSwyLjU0NSwyLjkxNCw3LjMzNywxLjQ1LDEyLjM5NS0yLjcsNS4wOTQtNS40LDQ4LjgtNDYuNiw2OC42NDEtNjUuMzkxYTIyLjQsMjIuNCwwLDAsMSw2LjY3OS00LjQ5MmM1LjExNi0yLjE2MSwxMy40MzQtMy40NDcsMjIuMjg0LDQuMjksOC4xNDQsOS4yMTUsOC41MzcsMTguNjI4LTYuMzQ0LDMzLjg3Mi02LjUsNi4zODgtMjAuMzU3LDIwLjUtMjYuMTc4LDI2LjYwOS0xLjQ1MSwxLjQyNS0zLjIxOCw0LjU3OS0uNTM0LDcuMDUsMi42NjEsMi40NDMsNS43NDUsMS4yMTMsOC4wMDYtLjY1OWw0OC45NTctNDYuOTY2LDEwLjU1OSwxMC4xMXMtMzYuNTg0LDM3LTUwLjA1MSw0OC4wMTFjLTUuNDM5LDQuNDQ3LTE5LjI3LDkuODYzLTI5LjY3OS4yNjEtNS40LTYuMzU3LTUuMDc5LTEzLjExMS0zLjQtMTguMjc2YTI4LjA4MiwyOC4wODIsMCwwLDEsNy4yODYtMTEuMjc4YzUuODY4LTUuNzQzLDE5Ljc0Ni0xOS4zLDI1Ljg0Ny0yNS4zNTQsNy43NDgtNy44MTcsNy4zMTItMTEuNTMyLDUuMDU3LTEzLjcyMS00LjY2OC00LjMyNS0xMy43MjIsNi4xODYtMTMuNzIyLDYuMTg2QzExNy42NDEsMzcuNzQxLDc2LjEwOSw3Ny4xNTQsNzEsODIuNTczYTI5LjIsMjkuMiwwLDAsMS0yMC40LDguOFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgMC4wNjQpIiBmaWxsPSJ1cmwoI2xpbmVhci1ncmFkaWVudCkiLz4KICA8L2c+Cjwvc3ZnPg==');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  min-height: 91px;
  margin-bottom: 0px;
}
@media screen and (min-width: 768px) {
  .brand-home-strength .heading-2 {
    background-size: 397px 190px;
    min-height: 190px;
  }
}
.brand-home-strength .heading-2__deco::before {
  content: none;
}
.brand-home-strength .heading-2__inner {
  font-size: 2rem;
  letter-spacing: .08em;
}
@media screen and (min-width: 768px) {
  .brand-home-strength .heading-2__inner {
    font-size: 2.8rem;
  }
}
.brand-home-strength .heading-2__inner span {
  font-size: 3.7rem;
  font-weight: 500;
  letter-spacing: .08em;
  background: linear-gradient(270deg, #172A88 0%, #2B69A7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .brand-home-strength .heading-2__inner span {
    font-size: 5.2rem;
  }
}

.brand-home-strength__list {
  counter-reset: number 0;
}
.brand-home-strength__list__item {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
@media screen and (min-width: 1050px) {
  .brand-home-strength__list__item {
    background-position: center;
    width: 100vw;
  }
}
.brand-home-strength__list__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0C1931;
  opacity: .8;
}
.brand-home-strength__list__item__container {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .brand-home-strength__list__item__container {
    display: grid;
    grid-template-columns: minmax(27.3rem,40.87%) 1fr;
    gap: 4rem;
    padding-top: 13.5rem;
    padding-bottom: 13.5rem;
  }
}
@media screen and (min-width: 1050px) {
  .brand-home-strength__list__item__container {
    grid-template-columns: minmax(27.3rem,47%) 1fr;
    align-items: center;
    gap: 6rem;
    height: 100vh;
    padding-top: 18.8rem;
    padding-bottom: 18.7rem;
    max-width: 1350px;
  }
}
.brand-home-strength__list__item__image {
  position: relative;
  z-index: 1;
  min-height: 188px;
}
.brand-home-strength__list__item__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .brand-home-strength__list__item__image img {
    height: auto;
  }
}
@media screen and (min-width: 1050px) {
  .brand-home-strength__list__item__image img {
    max-height: 375px;
    max-width: 540px;
  }
}
.brand-home-strength__list__item__info {
  position: relative;
  margin-top: 3.5rem;
  z-index: 1;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .brand-home-strength__list__item__info {
    margin-top: -.7rem;
  }
}
.brand-home-strength__list__item__info__heading {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  margin-bottom: 3.3rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .brand-home-strength__list__item__info__heading {
    grid-template-columns: 1fr;
    margin-bottom: 6.7rem;
    font-size: 3.2rem;
  }
}
.brand-home-strength__list__item__info__heading::before {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(255,255,255,.5);
}
.brand-home-strength__list__item__info__heading::after {
  content: "";
  position: absolute;
  bottom: -18.5px;
  left: 0;
  height: 2.2px;
  width: 13px;
  background-color: #EFB134;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .brand-home-strength__list__item__info__heading::before {
    bottom: -30px;
  }
  .brand-home-strength__list__item__info__heading::after {
    bottom: -30.5px;
  }
}
.brand-home-strength__list__item__info__heading__number {
  padding-right: 1rem;
  margin-top: 5px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .08em;
  color: #fff;
  opacity: .6;
}
@media screen and (min-width: 768px) {
  .brand-home-strength__list__item__info__heading__number {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
  }
}
.brand-home-strength__list__item__info__heading__number::after {
  content: counter(number, decimal-leading-zero);
  counter-increment: number 1;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  letter-spacing: .1em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .brand-home-strength__list__item__info__heading__number::after {
    font-size: 4.3rem;
  }
}
.brand-home-strength__list__item__info__paragraph {
  margin-top: 2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .brand-home-strength__list__item__info__paragraph {
    font-size: 1.6rem;
  }
}
/* brand home strength */
.brand-home-cases {
  padding: 7.7rem 0 8rem;
}
@media screen and (min-width: 768px) {
  .brand-home-cases {
    padding: 10.5rem 0 11rem;
  }
}
@media screen and (min-width: 1050px) {
  .brand-home-cases {
    background-image:url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNDc1IiBoZWlnaHQ9IjI1MiIgdmlld0JveD0iMCAwIDQ3NSAyNTIiPgogIDxkZWZzPgogICAgPGxpbmVhckdyYWRpZW50IGlkPSJsaW5lYXItZ3JhZGllbnQiIHgxPSIxIiB5MT0iMC40NDgiIHgyPSIwLjAyNCIgeTI9IjAuNDQyIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCI+CiAgICAgIDxzdG9wIG9mZnNldD0iMCIgc3RvcC1jb2xvcj0iI2ZmZiIvPgogICAgICA8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNmZmYiIHN0b3Atb3BhY2l0eT0iMC4wNTEiLz4KICAgIDwvbGluZWFyR3JhZGllbnQ+CiAgICA8Y2xpcFBhdGggaWQ9ImNsaXAtcGF0aCI+CiAgICAgIDxyZWN0IGlkPSLplbfmlrnlvaJfMTI2NTIiIGRhdGEtbmFtZT0i6ZW35pa55b2iIDEyNjUyIiB3aWR0aD0iNDc1IiBoZWlnaHQ9IjI1MiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4zNjQpIiBzdHJva2U9InJnYmEoMCwwLDAsMCkiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0idXJsKCNsaW5lYXItZ3JhZGllbnQpIi8+CiAgICA8L2NsaXBQYXRoPgogIDwvZGVmcz4KICA8ZyBpZD0i44Kw44Or44O844OXXzM5OTk0IiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyAzOTk5NCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTAuMzEpIj4KICAgIDxnIGlkPSLjgrDjg6vjg7zjg5dfMTM2MjkiIGRhdGEtbmFtZT0i44Kw44Or44O844OXIDEzNjI5IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMC4wNTQpIiBjbGlwLXBhdGg9InVybCgjY2xpcC1wYXRoKSI+CiAgICAgIDxwYXRoIGlkPSLjg5HjgrlfODkzOCIgZGF0YS1uYW1lPSLjg5HjgrkgODkzOCIgZD0iTTQ3NS4zMTMsNzYuNTc0bC0uMTI2LS4xMjZMMzQ2LjM1NCwyMDUuODI5Yy01Ljk0Niw1LjE1Ni0xNC4wNjYsOC41NDctMjEuMDYyLDEuODE0LTcuMDY2LTYuOC0yLjQxNC0xNS40ODcsMS40MDYtMTkuNDIzLDE1LjMxNC0xNi44MzMsNTcuNzY2LTYwLjI3Niw3NC44NjUtNzcuODY5LDM5LjE2OS00MS45OTQsMzcuNy03NC4wMzIsMTYuNy05NS4xMDdDMzk4LjE1Ny00LjkzMywzNzMuMDgyLS43MjcsMzU5LjYyMyw1LjIxOWE1OC45NjUsNTguOTY1LDAsMCwwLTE3LjU4LDEyLjM3NWMtNDkuNDYsNDkuMDM4LTE2MS4yMjEsMTU4LjAxMy0xODMuNjU2LDE4MS41NTNhNTkuOTg0LDU5Ljk4NCwwLDAsMS0xMS4zNjYsOS40NWMtMTAuMDM4LDYuMzI0LTE4Ljk1Miw3LjQ2LTI0LjIwOSwxLjE1NC02LjYxOS04LjgzMi0zLjM4OC0xOC42ODcsOS4yOTItMzIuMTIzLDEyLjE4OC0xMi42MTUsNjkuNTE2LTc1Ljk0Niw3Ny44ODYtODQuNzM4LDguODUtMTAuNCwxOC4yNDktMjUuNzcxLDE3LjIxNC0zOS40MTItLjYyMS0xNy4xNjctNy4yMzMtMzAuNDcyLTIwLjA3OS00MS44MjdDMTk1LjA3MS4zODgsMTc0LjE2Mi0yLjU3MywxNTguMzg3LDIuMTc4QTU0LjYsNTQuNiwwLDAsMCwxMzguOSwxMi42TDAsMTQ2LjVsMjUuNTcyLDI2LjdMMTUyLjEsNTQuNjMyUzE3NC41NjcsMzEuNzY2LDE4NS42LDQ0LjM0OUMxOTQuOTEzLDU0Ljk4LDE3Ni43MjQsNzMuMiwxNzMuNzI3LDc2LjdjLTkuMjA2LDEwLjc1LTYxLjIwNiw1OC41NTEtODIuOCw4NC43NzItMTAuOTQ0LDEzLjI4Ny0xMi40MjcsMjUtMTMuNDM3LDMwLjgtLjk2NywxOS4xNzUsMy4wMTIsMjkuNSwxNC42NjgsNDIuMzYyLDEwLjUwNiwxMS4wOTQsMjMuNDc3LDE3LjYyMyw0MS44LDE3LjM1OSwxOS45NTItLjI4NywzOC4yNzItOS42LDUyLjg3Ny0yNC41MjFDMjAwLjI4MywyMTIuNTQzLDMxNS41NjUsOTkuMzk0LDM1NC41NzYsNjAuNjk1YzAsMCwyMy44MjUtMjguOTU0LDM2LjExMy0xNy4wNDQsNS45MzEsNi4wMzQsNy4wODEsMTYuMjcyLTEzLjMwNiwzNy44LTE2LjA2MywxNi42NjUtNTguNTYzLDU4LjU5Mi03NC4wMDgsNzQuNDEyLTguNjE0LDguODI0LTE1LjUxOSwxOS4yNzMtMTkuMTcyLDMxLjA2OC00LjQwOSwxNC4yMzMtNS4yNjQsMzIuODQzLDguOTUyLDUwLjM0OSwyNy40LDI2LjQ1Myw2My43OTQsMTEuNTMxLDc4LjEwNS0uNzE5LDIzLjI3OC0xOS45MjgsNzIuOC03MC43MzgsMTA0LjA1My0xMDMuMjYzWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wNTEgMCkiIHN0cm9rZT0icmdiYSgwLDAsMCwwKSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJ1cmwoI2xpbmVhci1ncmFkaWVudCkiLz4KICAgIDwvZz4KICA8L2c+Cjwvc3ZnPg==');
    background-size: 475px 252px;
    background-position: top right;
    background-repeat: no-repeat;
  }
}

@media screen and (min-width: 768px) {
  .brand-home-cases .heading-2 {
    margin-bottom: 5rem;
  }
}
.brand-home-cases .heading-2__deco {
  padding-bottom: 1.9rem;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .brand-home-cases .heading-2__deco {
    padding-bottom: 2.9rem;
    margin-bottom: 1.3rem;
    font-size: 1.6rem;
  }
}
.brand-home-cases .heading-2__deco::before {
  width: 18px;
  height: 9px;
}
@media screen and (min-width: 768px) {
  .brand-home-cases .heading-2__deco::before {
    width: 26px;
    height: 13px;
  }
}
.brand-home-cases__list {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .brand-home-cases__list {
    margin-top: 5.3rem;
  }
}
.brand-home-cases__list__item {
  padding: 3rem 2.5rem;
  background-color: #fff;
}
.brand-home-cases__list__item:not(:last-child) {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .brand-home-cases__list__item:not(:last-child) {
    margin-bottom: 1.5rem;
  }
  .brand-home-cases__list__item {
    display: grid;
    grid-template-columns: minmax(23.5rem,38.65%) 1fr;
    align-items: center;
    padding: 3.5rem 3rem;
  }
}
@media screen and (min-width: 1050px) {
  .brand-home-cases__list__item {
    grid-template-columns: minmax(30.5rem,31.28%) 1fr;
    padding: 2.8rem 3.5rem 2.7rem 4rem;
  }
}
.brand-home-cases__list__item__image {
  padding: 0 5.3rem;
  min-height: 140px;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .brand-home-cases__list__item__image {
    padding: 0 3rem 0 0;
    height: 154px;
  }
}
@media screen and (min-width: 1050px) {
  .brand-home-cases__list__item__image {
    padding: 0 4rem 0 0;
    height: 200px;
  }
}
.brand-home-cases__list__item__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-home-cases__list__item__info {
  position: relative;
  margin-top: .4rem;
}
@media screen and (min-width: 768px) {
  .brand-home-cases__list__item__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin-top: 0;
    padding-left: 3rem;
    border-left: 1px solid rgba(171,174,193,.4);
  }
}
@media screen and (min-width: 1050px) {
  .brand-home-cases__list__item__info {
    padding-left: 3.5rem;
  }
}
.brand-home-cases__list__item__info__heading {
  margin-bottom: 1.3rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.5;
  color: #1E242F;
  transition: color .3s;
}
@media screen and (min-width: 768px) {
  .brand-home-cases__list__item__info__heading {
    margin-bottom: 1.2rem;
    font-size: 2rem;
  }
}
@media screen and (min-width: 1050px) {
  .brand-home-cases__list__item.bl-hover .brand-home-cases__list__item__info__heading {
    color: #172A88;
  }
}

.brand-home-cases__list__item__info__paragraph {
  margin-bottom: 2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 2;
  color: #3B4046;
}
@media screen and (min-width: 768px) {
  .brand-home-cases__list__item__info__paragraph {
    margin-bottom: 1rem;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1050px) {
  .brand-home-cases__list__item__info__paragraph {
    margin-bottom: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .brand-home-cases__list .link-text {
    margin-top: 0;
  }
}
.brand-home-cases__list .link-text__anchor {
  padding-left: 3.5rem;
  font-size: 1.7rem;
  color: #3B4046;
}
.brand-home-cases__list .link-text__anchor__icon {
  top: .1rem;
  width: 25px;
  height: 25px;
}
.brand-home-cases__list .link-text__anchor__icon__inner {
  width: 9px;
  height: 10px;
  left: calc(50% + 1px);
}
@media screen and (min-width: 1050px) {
  .brand-home-cases__list__item.bl-hover .link-text__anchor {
    color: #172A88;
  }
  .brand-home-cases__list__item.bl-hover .link-text__anchor__icon {
    background-image: linear-gradient(90deg, #2F4294 0%, #3D69A7 100%);
  }
  .brand-home-cases__list__item.bl-hover .link-text__anchor__icon__inner {
    left: calc(50% + .3rem);
  }
}