@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=Noto+Serif+JP:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');
/* 英字用 */
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&subset=japanese");

/* サイト全体で共通のアニメーション */
@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;
  }
}

.js-text-animation {
  display: inline-block;
  opacity: 0;
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all .9s cubic-bezier(.165,.84,.44,1);
  transition: all .9s cubic-bezier(.165,.84,.44,1);
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  transition-property: transform,opacity;
  transition-property: transform,opacity,-webkit-transform;
  -webkit-transform: translateX(1.5rem);
  transform: translateX(1.5rem);
  position: relative
}
.js-text-animation.is-show {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.js-text-animation-vertical {
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transform: translateY(1.5rem);
  transform: translateY(1.5rem);
}
.js-text-animation-vertical.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(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: #0e0e0e;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.78em;
}
/* 多言語対応 */
html:lang(ja) {
  font-family: 'Noto Sans JP', sans-serif;
}

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

body {
  padding-top: 58px;
  font-size: 1.4rem;
  letter-spacing: .1em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  body {
    padding-top: 76px;
  }
}
@media screen and (min-width: 1050px) {
  body {
    padding-top: 80px;
  }
}

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

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

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

button {
  outline: none;
}

::selection {
  background-color: rgba(108, 0, 0, .1);
}
::-moz-selection {
  background-color: rgba(108, 0, 0, .1);
}
/* ==========================================================================

  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;
}
.landing-content .hs_cos_wrapper_type_icon {
  display: block;
}

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

.bg-white {
  position: relative;
  color: #0e0e0e!important;
  z-index: 0;
}
.bg-white::after {
  position: absolute;
  content: "";
  top: 1px;
  left: -1.5px;
  width: 100%;
  height: 100%;
  background-color: #fff!important;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .bg-white::after {
    left: -2px;
  }
}

.bg-black {
  position: relative;
  color: #fff!important;
  z-index: 0;
}
.bg-black::after {
  position: absolute;
  content: "";
  top: 1px;
  left: -1.5px;
  width: 100%;
  height: 100%;
  background-color: #0e0e0e!important;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .bg-black::after {
    left: -2px;
  }
}

.bg-vertical::after {
  top: 0;
  left: 0;
}

.max-width-100 {
  max-width: 100%;
  object-fit: contain;
}

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

  サイト全体で共通の設定

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


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




/* カラースキーム
--------------------------------------*/
/*
  記事詳細の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: #F8F9F9;
}
@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: 400;
  letter-spacing: .1em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .natural h2 {
    margin-top: 80px;
    margin-bottom: 45px;
    font-size: 3.2rem;
  }
}
.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: 400;
  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: #5B5B5B;
  font-size: 1.6rem;
  font-weight: 400;
  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: #0e0e0e;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .natural h5 {
    font-size: 1.8rem;
  }
}
.natural h5:first-child {
  margin-top: 0;
}
.natural h5:last-child {
  margin-bottom: 0;
}

/* paragraph */
.natural p {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #5B5B5B;
  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: 700;
}

.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;
  border-bottom: 1px solid #6C0000;
  color: #5B5B5B;
  font-weight: 500;
  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: #6C0000;
  }
}

/*
  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 #E0E0E0;
  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: #5B5B5B;
  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: #E0E0E0;
}

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

.natural ol li {
  display: list-item;
  margin-top: 0;
  color: #5B5B5B;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 2;
  list-style: inherit;
}
@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 #E0E0E0;
  border-radius: 5px;
  color: #5B5B5B;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 2;
  white-space: normal;
}
@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 #E0E0E0 !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 #E0E0E0;
}
.natural table tr:first-of-type td {
  background-color: rgba(224, 224, 224, .5);
  color: #0e0e0e;
}

.natural table td {
  height: auto !important;
  padding-right: 20px !important;
  padding-left: 20px !important;
  color: #5B5B5B;
  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 #E0E0E0;
}

/* blockquote */
.natural blockquote {
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 20px 45px;
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
}
@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(//23961263.fs1.hubspotusercontent-na1.net/hubfs/23961263/raw_assets/public/ba-net/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 {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 30px;
  margin-bottom: 30px;
  background-color: #E0E0E0;
  border: 0; 
}
@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 の設定
---------------------------------------*/


@media screen and (min-width: 1050px) {
  .elevator__nav {
    display: flex;
    justify-content: space-between;
    position: relative;
  }
}

.is-no-breadcrumb .elevator__nav {
  justify-content: flex-end;
}

.elevator__nav__breadcrumb {
  overflow: auto;
  box-sizing: border-box;
  width: calc(100% + 20px);
  margin-right: -20px;
  margin-left: -20px;
  scrollbar-width: none; /* Firefox 対応 */
}
.elevator__nav__breadcrumb::-webkit-scrollbar {  /* Chrome, Safari 対応 */
  display:none;
}
@media screen and (min-width: 768px) {
  .elevator__nav__breadcrumb {
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 1050px) {
  .elevator__nav__breadcrumb {
    margin-right: 0;
    margin-left: 0;
    padding-bottom: 0;
  }
}

.elevator__nav__breadcrumb__list,
.elevator__nav__breadcrumb .hs-breadcrumb-menu {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding-right: 20px;
  padding-left: 35px;
  font-size: 1.2rem;
  letter-spacing: .15em;
  line-height: 2em;
}
@media screen and (min-width: 768px) {
  .elevator__nav__breadcrumb__list,
  .elevator__nav__breadcrumb .hs-breadcrumb-menu {
    margin-top: 25px;
    padding-left: 35px;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1050px) {
  .elevator__nav__breadcrumb__list,
  .elevator__nav__breadcrumb .hs-breadcrumb-menu {
    padding-right: 0;
    padding-left: 15px;
  }
}

.elevator__nav__breadcrumb__list,
.elevator__nav__breadcrumb .hs-breadcrumb-menu::before {
  position: absolute;
  content: "";
  left: 20px;
  top: 50%;
  width: 1px;
  height: 13px;
  background-color: #6C0000;
  transform: translateY(-50%);
}
@media screen and (min-width: 1050px) {
  .elevator__nav__breadcrumb .hs-breadcrumb-menu::before {
    left: 0;
  }
}

.elevator__nav__breadcrumb__list__item,
.elevator__nav__breadcrumb__list .hs-breadcrumb-menu-item,
.elevator__nav__breadcrumb .hs-breadcrumb-menu__item,
.elevator__nav__breadcrumb .hs-breadcrumb-menu .hs-breadcrumb-menu-item {
  padding: 0;
  color: rgb(13,13,13,.5);
  white-space: nowrap;
}

.elevator__nav__breadcrumb__list__item:not(:first-child),
.elevator__nav__breadcrumb__list .hs-breadcrumb-menu-item:not(:first-child),
.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: 21px;
}

.elevator__nav__breadcrumb__list__item:not(:first-child)::before, .elevator__nav__breadcrumb__list__item:not(:first-child)::after,
.elevator__nav__breadcrumb__list .hs-breadcrumb-menu-item:not(:first-child)::before,
.elevator__nav__breadcrumb__list .hs-breadcrumb-menu-item:not(:first-child)::after,
.elevator__nav__breadcrumb .hs-breadcrumb-menu__item:not(:first-child)::before,
.elevator__nav__breadcrumb .hs-breadcrumb-menu__item:not(:first-child)::after,
.elevator__nav__breadcrumb .hs-breadcrumb-menu .hs-breadcrumb-menu-item:not(:first-child)::before,
.elevator__nav__breadcrumb .hs-breadcrumb-menu .hs-breadcrumb-menu-item:not(:first-child)::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: -3px;
  width: 11px;
  height: 4px;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="11.159" height="3.843" viewBox="0 0 11.159 3.843"><path d="M11.16 3.843H.002v-1h8.841L6.802.687l.727-.686Z"/></svg>');
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="11.159" height="3.843" viewBox="0 0 11.159 3.843"><path d="M11.16 3.843H.002v-1h8.841L6.802.687l.727-.686Z"/></svg>');
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #0e0e0e;
  transform: translateY(-50%);
}

.elevator__nav__breadcrumb__list__item:first-child span.hs-breadcrumb-label,
.elevator__nav__breadcrumb__list .hs-breadcrumb-menu-item:first-child span.hs-breadcrumb-label,
.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: #5B5B5B;
}

.elevator__nav__breadcrumb__list__item:last-child,
.elevator__nav__breadcrumb__list .hs-breadcrumb-menu-item:last-child,
.elevator__nav__breadcrumb .hs-breadcrumb-menu__item:last-child,
.elevator__nav__breadcrumb .hs-breadcrumb-menu .hs-breadcrumb-menu-item:last-child {
  padding-right: 20px;
}

.elevator__nav__breadcrumb__list__item__anchor,
.elevator__nav__breadcrumb__list__item a.hs-breadcrumb-label,
.elevator__nav__breadcrumb__list .hs-breadcrumb-menu-item__anchor,
.elevator__nav__breadcrumb__list .hs-breadcrumb-menu-item a.hs-breadcrumb-label,
.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: #0e0e0e;
  transition: all .3s;
}

.elevator__nav__breadcrumb__list__item__anchor__icon,
.elevator__nav__breadcrumb__list__item a.hs-breadcrumb-label__icon,
.elevator__nav__breadcrumb__list .hs-breadcrumb-menu-item__anchor__icon,
.elevator__nav__breadcrumb__list .hs-breadcrumb-menu-item a.hs-breadcrumb-label__icon,
.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__list__item__anchor__icon__arrow,
.elevator__nav__breadcrumb__list__item a.hs-breadcrumb-label__icon__arrow,
.elevator__nav__breadcrumb__list .hs-breadcrumb-menu-item__anchor__icon__arrow,
.elevator__nav__breadcrumb__list .hs-breadcrumb-menu-item a.hs-breadcrumb-label__icon__arrow,
.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: #6C0000;
}

.elevator__nav__breadcrumb__list__item__anchor:hover,
.elevator__nav__breadcrumb__list__item a.hs-breadcrumb-label:hover,
.elevator__nav__breadcrumb__list .hs-breadcrumb-menu-item__anchor:hover,
.elevator__nav__breadcrumb__list .hs-breadcrumb-menu-item a.hs-breadcrumb-label:hover,
.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: #6C0000;
}

.elevator__nav__breadcrumb__list__item .hs-breadcrumb-menu-divider,
.elevator__nav__breadcrumb__list .hs-breadcrumb-menu-item .hs-breadcrumb-menu-divider,
.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 {
  position: relative;
  overflow: hidden;
  color: #0e0e0e;
  background-color: #fff;
}
@media screen and (min-width: 1050px) {
  .footer {
    padding-top: 30px;
  }
}

.footer--no-nav {
  text-align: center;
  overflow: visible;
}
@media screen and (min-width: 1050px) {
  .footer--no-nav {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media screen and (min-width: 1050px) {
  .container.footer__above__nav__container {
    padding-right: 60px;
    padding-left: 60px;
  }
}

@media screen and (min-width: 1050px) {
  .footer__above__nav__columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: -30px;
    margin-right: -30px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1050px) {
  .footer__above__nav__columns__column {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.footer__above__nav__columns__column:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 35px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .footer__above__nav__columns__column:nth-child(1) {
    padding-bottom: 28px;
  }
}
@media screen and (min-width: 1050px) {
  .footer__above__nav__columns__column:nth-child(1) {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.header__hamburger-nav .footer__above__nav__columns__column:nth-child(1) {
  padding-top: 0;
}

.footer__above__nav__columns__column:nth-child(3) {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (min-width: 1050px) {
  .footer__above__nav__columns__column:nth-child(3) {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.header__hamburger-nav .footer__above__nav__columns__column:nth-child(3) {
  padding-bottom: 0;
}

@media screen and (min-width: 768px) {
  .footer__above__nav__columns__column__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-direction: column;
  }
}
@media screen and (min-width: 1050px) {
  .footer__above__nav__columns__column__inner {
    flex-direction: row;
  }
}

.footer__above__nav__logo {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 170px;
}
@media screen and (min-width: 768px) {
  .footer__above__nav__logo {
    width: 200px;
  }
}
@media screen and (min-width: 1050px) {
  .footer__above__nav__logo {
    margin-left: 0;
    margin-right: 0;
  }
}

.footer__above__nav__logo__anchor,
.footer__above__nav__logo a {
  display: block;
}

.footer__above__nav__logo__anchor img,
.footer__above__nav__logo a img {
  max-width: 100%;
  vertical-align: bottom;
}

@media screen and (min-width: 1050px) {
  .footer__above__nav__category {
    max-width: 100%;
    margin-left: auto;
    margin-right: 32px;
  }
}

.footer__above__nav__category__list {
  margin-top: -15px;
  margin-right: -12px;
  margin-left: -12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__above__nav__category__list {
    margin-right: -14px;
    margin-left: -14px;
    margin-top: -20px;
  }
}
@media screen and (min-width: 1050px) {
  .footer__above__nav__category__list {
    text-align: left;
  }
}

.footer__above__nav__category__list__item {
  margin-top: 15px;
  padding-left: 12px;
  padding-right: 12px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .footer__above__nav__category__list__item {
    margin-top: 20px;
    padding-left: 14px;
    padding-right: 14px;
  }
}

.footer__above__nav__category__list__item__anchor {
  display: block;
  font-size: 1.1rem;
  color: #5B5B5B;
  line-height: 1.5em;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer__above__nav__category__list__item__anchor {
    font-size: 1.2rem;
    transition: opacity .3s;
  }
  .footer__above__nav__category__list__item__anchor:hover {
    opacity: .6;
  }
}

/* sns icon list ****************/
.footer__above__sns__nav__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-right: -8px;
  margin-left: -8px;
}
@media screen and (min-width: 768px) {
  .footer__above__sns__nav__list {
    margin-top: 25px;
  }
}
@media screen and (min-width: 1050px) {
  .footer__above__sns__nav__list {
    margin-top: -20px;
  }
}

.footer__above__sns__nav__list__item {
  padding-left: 8px;
  padding-right: 8px;
  display: inline-block;
}
@media screen and (min-width: 1050px) {
  .footer__above__sns__nav__list__item {
    margin-top: 20px;
  }
}

@media screen and (min-width: 1050px) {
  .footer__above__sns__nav__list__item__anchor {
    padding: 0 0 5px 0;
    transition: opacity .3s;
  }
  .footer__above__sns__nav__list__item__anchor:hover {
    opacity: .6;
  }
}

.footer__below {
  margin-top: 30px;
  border-top: 1px solid #e5e5e5;
}

.footer__below__copyright {
  font-family: 'Poppins', sans-serif;
  font-size: 1.0rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 15px 50px;
  opacity: .7;
}

@media screen and (min-width: 1050px) {
  .footer--no-nav .footer__below__copyright {
    text-align: center;
  }
}

.footer__page-top {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10;
}

.footer__page-top__anchor {
  position: relative;
  display: block;
  width: 65px;
  height: 60px;
}

.footer__page-top__anchor::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-style: solid;
  border-width: 0 0 60px 65px;
  border-color: transparent transparent #6C0000 transparent;
}
@media screen and (min-width: 1050px) {
  .footer__page-top__anchor:hover::before {
    border-color: transparent transparent #820000 transparent;
  }
}

.footer__page-top__anchor__icon {
  position: absolute;
  bottom: 18px;
  right: 12px;
}

.footer__page-top__anchor__icon__path {
  fill: #fff;
}
@charset "UTF-8";

/* ヘッダー */

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  background-color: #fff;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
}

@media screen and (min-width: 768px) {
  .header {
    height: 75px;
  }
}
@media screen and (min-width: 1050px) {
  .header {
    display: block;
    position: fixed;
    height: auto;
  }
}

@media screen and (min-width: 1050px) {
  .header--no-nav {
    position: absolute;
    display: flex;
    height: 80px;
  }
}

.header--no-nav .header__columns {
  height: auto;
}
/* header no navigation === */

.container.header__container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (max-width: 1050px) and (min-width: 768px) {
  .container.header__container {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 1050px) {
  .container.header__container {
    width: auto;
    padding-right: 0px;
    padding-left: 30px;
  }
}

.header--no-nav .container.header__container {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .header__columns {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1050px) {
  .header__columns {
    height: 80px;
  }
}

.header__columns__column:nth-child(1) {
  width: 100%;
}
@media screen and (min-width: 1050px) {
  .header__columns__column:nth-child(1) {
    display: flex;
    align-items: center;
    width: auto;
  }
}
@media screen and (min-width: 1050px) {
  .header__columns__column:nth-child(2) {
    padding-bottom: 12px;
  }
}

/* === header logo */
.header__logo {
  position: relative;
  margin-right: auto;
  z-index: 1;
}
@media screen and (min-width: 1050px) {
  .header__logo {
    padding-top: 0;
  }
}

.header__logo--top {
  display: none;
}

.header__logo a {
  display: block;
}

.header__logo a img,
.header__main__logo a img {
  max-width: 170px;
  vertical-align: bottom;
}
@media screen and (min-width: 768px) {
  .header__logo a img,
  .header__main__logo a img {
    max-width: 230px;
  }
}
@media screen and (min-width: 1050px) {
  .header__logo a img {
    max-width: 220px;
  }
}
/* header logo === */

/* === header main content */
.header__main {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-sizing: border-box;
  padding-bottom: 85px;
}
@media screen and (min-width: 768px) {
  .header__main {
    padding-bottom: 135px;
  }
}
@media screen and (min-width: 1050px) {
  .header__main {
    opacity: 1;
    pointer-events: auto;
    position: static;
    padding: 0;
    background: none;
  }
}

.header__main.is-active {
  opacity: 1;
  pointer-events: auto;
  transition: opacity .3s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.95;
}
/* header main content === */

/* === header main logo */
.header__main__logo {
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .header__main__logo {
    height: 75px;
    padding: 0 20px;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__logo {
    display: none;
  }
}
/* header main logo === */

/* === header language link list */
.header__lang__list {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.header__lang__list__item:first-child {
  justify-content: space-between;
  margin-right: 10px;
}

.header__lang__list__item:first-child::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: calc(50% - 4px);
  width: 9px;
  height: 1px;
  background-color: #0e0e0e;
  transform: rotate(-90deg);
}
@media screen and (min-width: 1050px) {
  .header__lang__list__item:first-child::after {
    top: 16px;
  }
}

.header__lang__list__item__anchor {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 32px;
  height: 32px;
  padding-bottom: 2px;
  padding-left: 3px;
  color: #0e0e0e;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.5;
  transition: border-color .3s;
}
@media screen and (min-width: 1050px) {
  .header__lang__list__item__anchor {
    width: 35px;
    height: 35px;
  }
  .header__lang__list__item__anchor:hover {
    color: #6C0000;
    opacity: 1;
  }
}

.header__lang__list__item.is-current .header__lang__list__item__anchor {
  opacity: 1;
}

/* header__lang__list === */

@media screen and (min-width: 1050px) {
  .header__main-wrapper {
    display: flex;
  }
}

.is-hamburger-nav-open .header__main-wrapper {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
@media screen and (min-width: 1050px) {
  .is-hamburger-nav-open .header__main-wrapper {
    height: auto;
    overflow: auto;
  }
}

.header__main__content__inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .header__main__content__inner {
    flex-wrap: nowrap;
    align-items: flex-end;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content__inner {
    display: block;
    max-width: none;
  }
}

.header__main__content__above {
  width: 100%;
  box-sizing: border-box;
  order: 2;
  padding: 40px 25px 20px;
}
@media screen and (min-width: 768px) {
  .header__main__content__above {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 30px 25px;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content__above {
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    padding: 0;
  }
}

@media screen and (min-width: 768px) {
  .header__main__content__above__lang {
    margin-right: 15px;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content__above__lang {
    position: static;
    top: auto;
    right: auto;
    margin-top: 3px;
    margin-right: 0;
  }
}

.header__main__content__below {
  width: 100%;
  box-sizing: border-box;
  order: 1;
}
@media screen and (min-width: 768px) {
  .header__main__content__below {
    order: 1;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content__below {
    margin-top: 12px;
  }
}

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

/* === header global nav list */
.header__main__content__below__nav__list {
  border-bottom: 1px solid rgb(91, 91, 91, 0.2);
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__nav__list {
    display: flex;
    justify-content: flex-end;
    border-bottom: none;
  }
}

@media screen and (min-width: 1050px) {
  .header__main__content__below__nav__list__item:not(:first-child) {
    margin-left: 28px;
  }
}
@media screen and (max-width: 1200px) and (min-width: 1050px) {
  .header__main__content__below__nav__list__item:not(:first-child) {
    margin-left: 20px;
  }
}

.header__main__content__below__nav__list__item__inner {
  position: relative;
  border-top: 1px solid rgb(91, 91, 91, 0.2);
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__nav__list__item__inner {
    border: none;
  }
}

/* anchor */
.header__main__content__below__nav__list__item__anchor {
  display: block;
  padding: 22px 20px;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .header__main__content__below__nav__list__item__anchor {
    padding: 30px 23px;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__nav__list__item__anchor {
    padding: 0 0 20px 0;
    color: #0e0e0e;
    font-size: 1.3rem;
    text-align: left;
    transition: color .3s;
  }
  .header__main__content__below__nav__list__item__anchor:hover {
    color: #6C0000;
  }
}
@media screen and (max-width: 1200px) and (min-width: 1050px) {
  .header__main__content__below__nav__list__item__anchor {
    font-size: 1.2rem;
  }
}

/* icon */
.header__main__content__below__nav__list__item__anchor__icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 59px;
  min-height: 59px;
  border-left: 1px solid rgb(91, 91, 91, 0.2);
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .header__main__content__below__nav__list__item__anchor__icon {
    width: 76px;
    height: 76px;
    min-height: 76px;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__nav__list__item__anchor__icon {
    display: none;
    pointer-events: none;
  }
}

.header__main__content__below__nav__list__item__inner.is-active .header__main__content__below__nav__list__item__anchor__icon {
  border-bottom: 1px solid rgb(91, 91, 91, 0.2);
}

.header__main__content__below__nav__list__item__anchor__icon::before,
.header__main__content__below__nav__list__item__anchor__icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 1px;
  background-color: #0e0e0e;
  transition: transform .3s, opacity .3s;
}
@media screen and (min-width: 768px) {
  .header__main__content__below__nav__list__item__anchor__icon::before,
  .header__main__content__below__nav__list__item__anchor__icon::after {
    width: 15px;
  }
}
.header__main__content__below__nav__list__item__anchor__icon::before {
  transform: rotate(90deg) translate(-50%, -0.5px);
  transform-origin: 0 0;
}
.header__main__content__below__nav__list__item__anchor__icon::after {
  transform: translate(-50%, -1px);
}

.header__main__content__below__nav__list__item__inner.is-active .header__main__content__below__nav__list__item__anchor__icon::before {
  transform: rotate(0) translate(-50%, 0);
}
.header__main__content__below__nav__list__item__inner.is-active .header__main__content__below__nav__list__item__anchor__icon::after {
  opacity: 0;
}
/* header global nav list === */


/* === header global sub-nav list */
.header__main__content__below__subnav-wrapper {
  display: none;
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__subnav-wrapper {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 100%;
    padding-top: 5px;
    transform: translateX(-50%);
  }
}

@media screen and (min-width: 1050px) {
  .header__main__content__below__subnav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 100px);
    max-width: 1050px;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 40px 50px;
    border-top: none;
    background-color: #fff;
    box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 5%);
  }
}

.header__main__content__below__subnav__title {
  /*position: relative;*/
  display: none;
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__subnav__title {
    display: block;
    width: 17%;
  }
}

.header__main__content__below__subnav__title__anchor {
  display: block;
  text-align: center;
}

.header__main__content__below__subnav__title__anchor__text {
  position: relative;
  display: block;
  font-family: 'Noto Serif JP', sans-serif;
  color: #0e0e0e;
  font-size: 1.2rem;
  letter-spacing: .12em;
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__subnav__title__anchor__text {
    transition: color .3s;
  }
  .header__main__content__below__subnav__title__anchor:hover .header__main__content__below__subnav__title__anchor__text {
    color: #6C0000;
  }
}

.header__main__content__below__subnav__title__anchor__text::before {
  content: attr(data-decoration-text);
  display: block;
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  letter-spacing: .12em;
}

.header__main__content__below__subnav__title__anchor__icon {
  padding-top: 18px;
}

.header__main__content__below__subnav__title__anchor__icon path {
  stroke: #0e0e0e;
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__subnav__title__anchor__icon path {
    transition: stroke .3s;
  }
  .header__main__content__below__subnav__title__anchor:hover .header__main__content__below__subnav__title__anchor__icon path {
    stroke: #6C0000;
  }
}

@media screen and (min-width: 1050px) {
  .header__main__content__below__subnav__detail {
    width: calc(84% - 4%);
    max-width: 770px;
  }
}

.header__main__content__below__subnav__detail__list {
  padding: 0 20px 5px;
}
@media screen and (min-width: 768px) {
  .header__main__content__below__subnav__detail__list {
    padding: 0 23px 10px;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__subnav__detail__list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-right: -20px;
  }
}

.header__main__content__below__subnav__detail__list__item {
  margin: 12px 0;
}
@media screen and (min-width: 768px) {
  .header__main__content__below__subnav__detail__list__item {
    margin: 15px 0;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__subnav__detail__list__item {
    box-sizing: border-box;
    width: calc((100% / 3) - 21px);
    margin: 0 21px 0 0;
  }
  .header__main__content__below__subnav__detail__list__item:nth-child(n + 4) {
    margin-top: 15px;
  }
}

.header__main__content__below__subnav__detail__list__item:first-child {
  margin-top: 0;
}

.header__main__content__below__subnav__detail__list__item__anchor {
  position: relative;
  color: #5B5B5B;
  font-size: 1.3rem;
  letter-spacing: .1em;
  line-height: 1.5;
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__subnav__detail__list__item__anchor {
    display: block;
    height: 100%;
    color: #0e0e0e;
    transition: color .3s;
  }
  .header__main__content__below__subnav__detail__list__item__anchor:hover {
    color: #6C0000;
  }

  .header__main__content__below__subnav__detail__list__item__anchor::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #b8b8b8;
  }

  .header__main__content__below__subnav__detail__list__item__anchor::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #6C0000;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
  }

  .header__main__content__below__subnav__detail__list__item__anchor:hover::after {
    transform: scale(1, 1);
  }
}

.header__main__content__below__subnav__detail__list__item__anchor__text {
  position: relative;
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__subnav__detail__list__item__anchor__text {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    height: 100%;
    min-height: 30px;
    padding: 10px 20px 10px 0;
  }
}

.header__main__content__below__subnav__detail__list__item__anchor__text__icon {
  display: none;
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__subnav__detail__list__item__anchor__text__icon {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    transform: translateY(-50%);
  }
}

.header__main__content__below__subnav__detail__list__item__anchor__text__icon path {
  stroke: #0e0e0e;
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__subnav__detail__list__item__anchor__text__icon path {
    transition: stroke .3s;
  }
  .header__main__content__below__subnav__detail__list__item__anchor:hover .header__main__content__below__subnav__detail__list__item__anchor__text__icon path {
    stroke: #6C0000;
  }
}

.header__main__content__below__subnav__detail__list__item__anchor__text br {
  display: none;
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__subnav__detail__list__item__anchor__text br {
    display: block;
  }
}

.header__main__contact {
  padding: 0px 25px;
}
@media screen and (min-width: 1050px) {
  .header__main__contact {
    margin-left: 35px;
    padding: 0;
  }
}

/* === PC mega-menu style */
@media screen and (min-width: 1050px) {
  .header__main__content__below__nav__list__item__inner::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #6C0000;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
    z-index: -1;
  }
  .header__main__content__below__nav__list__item__inner.is-active::before {
    transform: scale(1, 1);
  }
}

/* PC mega-menu style === */

/* === humburger menu */
.header__hamburger {
  position: fixed;
  z-index: 101;
  top: 5px;
  right: 5px;
  border: none;
  width: 48px;
  height: 48px;
  padding: 0;
  background-color: #6C0000;
  cursor: pointer;
  appearance: none;
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    width: 55px;
    height: 55px;
    top: 10px;
    right: 10px;
  }
}
@media screen and (min-width: 1050px) {
  .header__hamburger {
    display: none;
  }
}

.header__hamburger__inner {
  display: block;
  position: absolute;
  top: calc(50% - 5.5px);
  left: calc(50% - 7.5px);
}
@media screen and (min-width: 768px) {
  .header__hamburger__inner {
    left: calc(50% - 10px);
  }
  .header__hamburger.is-active .header__hamburger__inner {
    left: calc(50% - 13px);
  }
}

.header__hamburger__inner__line {
  display: block;
  width: 15px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  transition: transform .2s;
}
@media screen and (min-width: 768px) {
  .header__hamburger__inner__line {
    width: 20px;
  }
  .is-active .header__hamburger__inner__line {
    width: 26px;
  }
}

.header__hamburger__inner__line:nth-child(1) {
  top: 0;
}

.is-active .header__hamburger__inner__line:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.header__hamburger__inner__line:nth-child(2) {
  top: 6px;
}

.is-active .header__hamburger__inner__line:nth-child(2) {
  transform: translateX(10px);
  opacity: 0;
}

.header__hamburger__inner__line:nth-child(3) {
  top: 11px;
}

.is-active .header__hamburger__inner__line:nth-child(3) {
  top: 5px;
  transform: rotate(-45deg);
}
/* humburger menu === */
@charset "UTF-8";

/* フッターCTA */

@media screen and (min-width: 1050px) {
  .footer-cta {
    border-bottom: 1px solid #E0E0E0;
  }
}

@media screen and (min-width: 768px) {
  .footer-cta__list {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .footer-cta__list__item {
    width: 50%;
  }
}

.footer-cta__list__item {
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .footer-cta__list__item--download {
    border-right: 1px solid #E0E0E0;
  }
}

.footer-cta__list__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: 20% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
@media screen and (min-width: 1050px) {
  .footer-cta__list__item::before {
    background-position: 50%;
    opacity: 0;
    transition: opacity .5s;
  }
  .footer-cta__list__item:hover::before {
    opacity: 1;
  }
}

.footer-cta__list__item--download::before {
  background-image: url('/hubfs/23961263/ba-net.co.jp/assets/images/common/img_cta_download.jpg');
}
.footer-cta__list__item--contact::before {
  background-image: url('/hubfs/23961263/ba-net.co.jp/assets/images/common/img_cta_contact.jpg');
}

.footer-cta__list__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .3;
}
@media screen and (min-width: 1050px) {
  .footer-cta__list__item::after {
    opacity: 0;
    transition: opacity .5s;
  }
  .footer-cta__list__item:hover::after {
    opacity: .3;
  }
}

.footer-cta__list__item .cta_button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  height: 200px;
}
@media screen and (min-width: 768px) {
  .footer-cta__list__item .cta_button {
    height: 280px;
  }
}

.footer-cta__list__item__inner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px 20px!important;
  box-sizing: border-box;
  border-top: solid 1px #E0E0E0;
}
@media screen and (min-width: 768px) {
  .footer-cta__list__item__inner {
    padding: 40px 30px!important;
  }
}
@media screen and (min-width: 1050px) {
  .footer-cta__list__item__inner {
    padding: 50px 100px!important;
  }
}

.footer-cta__list__item__inner {
  position: relative;
}

.footer-cta__list__item__inner::before {
  content: '';
  position: absolute;
  right: 75px;
  height: 7.5px;
  width: 16.5px;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15.406 6.72"><path fill-rule="evenodd" stroke="rgb(0, 0, 0)" stroke-width="1px" stroke-linecap="butt" stroke-linejoin="miter" fill="none" d="M632 7161h12l-4-4" transform="translate(-631.5 -7155.78)"/></svg>');
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15.406 6.72"><path fill-rule="evenodd" stroke="rgb(0, 0, 0)" stroke-width="1px" stroke-linecap="butt" stroke-linejoin="miter" fill="none" d="M632 7161h12l-4-4" transform="translate(-631.5 -7155.78)"/></svg>');
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
  background-color: #0e0e0e;
}
@media screen and (min-width: 1050px) {
  .footer-cta__list__item__inner::before {
    transition: background-color .5s;
  }
  .footer-cta__list__item:hover .footer-cta__list__item__inner::before {
    background-color: #fff;
  }
}

.footer-cta__list__item .cta_button__inner__en {
  display: block;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: .16em;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .footer-cta__list__item .cta_button__inner__en {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 1050px) {
  .footer-cta__list__item .cta_button__inner__en {
    color: #0e0e0e;
    transition: color .5s;
  }
  .footer-cta__list__item:hover .cta_button__inner__en {
    color: #fff;
  }
}

.footer-cta__list__item .cta_button__inner__jp {
  position: relative;
  display: inline;
  margin-top: 20px;
  padding: 0 3.5px 1.5px 5.5px;
  background-color: #fff;
  color: #0e0e0e;
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 100;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-align: center;
  box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}
@media screen and (min-width: 768px) {
  .footer-cta__list__item .cta_button__inner__jp {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1050px) {
  .footer-cta__list__item .cta_button__inner__jp {
    background-color: #0e0e0e;
    color: #fff;
    transition: background-color .5s, color .5s;
  }
  .footer-cta__list__item:hover .cta_button__inner__jp {
    background-color: #fff;
    color: #0e0e0e;
  }
}

.footer-cta__list__item .cta_button__inner__jp::before {
  position: absolute;
  bottom: 0;
  right: -10px;
  content: '';
  width: 100%;
  height: 1px;
  padding-left: calc(50vw - 50%);
  background-color: #b6b6b6;
}
@media screen and (min-width: 1050px) {
  .footer-cta__list__item .cta_button__inner__jp::before {
    transition: background-color .5s, opacity .5s;
  }
  .footer-cta__list__item:hover .cta_button__inner__jp::before {
    background-color: #fff;
    opacity: .3;
  }
}

.footer-cta__list__item__icon {
  display: block;
  position: relative;
  right: 0;
  width: 38px;
  height: 18.5px;
  margin: 13px auto 0;
}
@media screen and (min-width: 768px) {
  .footer-cta__list__item__icon {
    width: 58px;
    height: 18.5px;
    margin-top: 30px;
  }
}
@media screen and (min-width: 1050px) {
  .footer-cta__list__item__icon {
    transition: right .3s;
  }
  .cta_button:hover .footer-cta__list__item__icon {
    right: -5px;
  }
}

/* vendors */
@charset "UTF-8";

/* Swiper */

/* Swiperの矢印表示領域 */
.swiper-button {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 55px;
  background-color: #fff;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .swiper-button {
    width: 180px;
    height: 45px;
  }
}

.swiper-button-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Swiperの矢印 */
.swiper-button-prev,
.swiper-button-next {
  height: 30px!important;
  width: 30px!important;
}

/* 矢印を消し画像に変更 */
.swiper-button-prev:after,
.swiper-button-next:after {
  content: ""!important;
  background-repeat: no-repeat;
  background-size: contain;
  width: 16.5px;
  height: 6.5px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev:after,
  .swiper-button-next:after {
    height: 6px;
    width: 13px;
  }
}

/* 前に戻る、次に進む画像 */
.swiper-button-prev:after,
.swiper-button-next:after {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15.41 5.719"><path d="M1404 601h12l-3-3" fill-rule="evenodd" stroke="rgb(0, 0, 0)" stroke-width="1px" stroke-linecap="butt" stroke-linejoin="miter" fill="none" transform="translate(-1403.5 -596.781)"/></svg>');
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15.41 5.719"><path d="M1404 601h12l-3-3" fill-rule="evenodd" stroke="rgb(0, 0, 0)" stroke-width="1px" stroke-linecap="butt" stroke-linejoin="miter" fill="none" transform="translate(-1403.5 -596.781)"/></svg>');
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
  background-color: #0e0e0e;
}
.swiper-button-prev:hover.swiper-button-prev:after,
.swiper-button-next:hover.swiper-button-next:after {
  background-color: #6C0000;
}

.swiper-button-prev:after {
  transform: rotateY(180deg);
}

.swiper-button-prev,.swiper-rtl .swiper-button-next {
  top: auto!important;
  bottom: 5px;
  right: 145px!important;
  left: auto!important;
  margin-top: 0px!important;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev,.swiper-rtl .swiper-button-next {
    right: 130px!important;
  }
}

.swiper-button-next,.swiper-rtl .swiper-button-prev {
  top: auto!important;
  bottom: 5px;
  right: 23px!important;
  left: auto!important;
  margin-top: 0px!important;
}
@media screen and (max-width: 767px) {
  .swiper-button-next,.swiper-rtl .swiper-button-prev {
    right: 19px!important;
  }
}

.swiper-counter {
  position: absolute;
  bottom: 13px;
  right: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  transform: translateX(50%);
}

.swiper-counter__diagonal {
  padding: 0 15px;
}

.swiper-counter__diagonal:after {
  position: absolute;
  content: "";
  top: -3px;
  width: 1px;
  height: 140%;
  background: #0e0e0e;
  transform: rotate(45deg);
}

.swiper-pagination-progressbar-wrap {
  position: relative;
  margin-top: 35px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .swiper-pagination-progressbar-wrap {
    margin-top: 25px;
    margin-bottom: 55px;
  }
}

.swiper-pagination-progressbar {
  background: #E0E0E0!important;
  width: calc(100% - 200px)!important;
  height: 1px!important;
  position: absolute;
  left: 0;
  top: 50%;
}
@media screen and (max-width: 1049px) {
  .swiper-pagination-progressbar {
    width: calc(100% - 50px)!important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-pagination-progressbar {
    width: calc(100% - 20px)!important;
  }
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #6C0000!important;;
  height: 1px!important;;
}
/* 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 / 記事詳細 */

/* blog post hero */

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

.blog-article::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 74px;
  height: 1px;
  background-color: #6C0000;
}
@media screen and (min-width: 768px) {
  .blog-article::before {
    width: 91px;
  }
}

.blog-article__head {
  padding-top: 25px;
}

.blog-article__head__date {
  display: block;
  color: #5B5B5B;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .16em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .blog-article__head__date {
    font-size: 1.6rem;
  }
}

.blog-article__head__heading {
  margin-top: 6px;
  color: #0e0e0e;
  font-size: 2.0rem;
  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;
  }
}

.blog-article__head__category-list__item {
  display: inline-block;
  margin: 5px;
}

.blog-article__head__category-list__item__anchor {
  display: inline-block;
  padding: 5px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: solid 1px #5B5B5B;
  font-size: 1.2rem;
  color: #5B5B5B;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .blog-article__head__category-list__item__anchor {
    font-size: 1.3rem;
  }
}

.blog-article__head__thumbnail {
  margin-top: 25px;
  margin-right: -20px;
  margin-bottom: 25px;
  margin-left: -20px;
}
@media screen and (min-width: 768px) {
  .blog-article__head__thumbnail {
    margin-top: 30px;
    margin-right: -50px;
    margin-bottom: 30px;
    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: 2px solid #6C0000;
  background-color: #F8F9F9;
  color: #0e0e0e;
  font-size: 2.0rem;
  font-weight: 400;
  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: 2px solid #6C0000;
    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 .blog-article__body__content h3,
.blog-article .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: #0e0e0e;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .blog-article .blog-article__body__content h3,
  .blog-article .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.0rem;
  }
}
.blog-article .blog-article__body__content h3:first-child,
.blog-article .blog-article__body__summary__body h3:first-child {
  margin-top: 0;
}
.blog-article .blog-article__body__content h3:last-child,
.blog-article .blog-article__body__summary__body h3:last-child {
  margin-bottom: 0;
}

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

.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: 2px solid #6C0000;
  color: #0e0e0e;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: ..1em;
  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 h5,
.blog-article__body__summary__body h5 {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .blog-article__body__content h5,
  .blog-article__body__summary__body h5 {
    font-size: 1.7rem;
  }
}


.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: #5B5B5B;
  font-size: 1.5rem;
  letter-spacing: .1em;
  line-height: 2em;
}
@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;
}
@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 #E0E0E0;
  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: #F8F9F9;
}
@media screen and (min-width: 768px) {
  .blog-article__body__summary__head {
    padding: 14px 30px;
  }
}

.blog-article__body__summary__head__heading {
  color: #5B5B5B;
  font-size: 1.8rem;
  font-weight: 400;
  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;
  border-top: 1px solid #E0E0E0;
}
@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 #E0E0E0;
}
@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 #E0E0E0;
  }
}

.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: #0e0e0e;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .1em;
}

.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;
  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: #6C0000;
  }
}

.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: #0e0e0e;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.4;
  transition: color .3s;
}
.blog-article__foot__back__anchor::before {
  position: absolute;
  content: "";
  top: -1px;
  left: 0;
  height: 25px;
  width: 25px;
  border: 1px solid #0e0e0e;
  border-radius: 100%;
  transition: .5s;
}

.blog-article__foot__back__anchor__icon {
  display: block;
  position: absolute;
  top: 9px;
  left: 9px;
  width: 10px;
  height: 5px;
  transform: rotate(180deg);
  transition: transform .3s;
}
.blog-article__foot__back__anchor__icon__path {
  fill: #0e0e0e;
  transition: fill .3s;
}
@media screen and (min-width: 1050px) {
  .blog-article__foot__back__anchor:hover {
    color: #6C0000;
  }
  .blog-article__foot__back__anchor:hover::before {
    border: 1px solid #6C0000;
  }
  .blog-article__foot__back__anchor:hover .blog-article__foot__back__anchor__icon {
    transform: translateX(-9px) rotate(180deg);
  }
  .blog-article__foot__back__anchor:hover .blog-article__foot__back__anchor__icon__path {
    fill: #6C0000;
  }
}
/* article / 記事詳細 === */


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

/* blog listing hero */
.hero--blog-listing .hero__image {
  background-image: url(//23961263.fs1.hubspotusercontent-na1.net/hubfs/23961263/raw_assets/public/ba-net/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;
  }
}

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

.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: 15px;
  color: #5B5B5B;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: .16em;
  transition: color .3s;
}
@media screen and (min-width: 768px) {
  .blog-content__main__article-list__item__block__head__date {
    margin-top: 17px;
  }
}
@media screen and (min-width: 1050px) {
  a:hover .blog-content__main__article-list__item__block__head__date {
    color: #6C0000;
  }
}

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

.blog-content__main__article-list__item__block__body__title {
  color: #0e0e0e;
  font-size: 1.7rem;
  font-weight: 400;
  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) {
  a:hover .blog-content__main__article-list__item__block__body__title {
    color: #6C0000;
  }
}

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

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

.blog-content__main__pager__item__anchor {
  position: relative;
  display: block;
  font-size: 1.7rem;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .1em;
  color: #0e0e0e;
  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: #6C0000;
  }
}

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

.blog-content__main__pager__item__anchor--prev,
.blog-content__main__pager__item__anchor--next {
  height: 27px;
  width: 27px;
  border: 1px solid #0e0e0e;
  border-radius: 100%;
  box-sizing: border-box;
}

.blog-content__main__pager__item__anchor__icon {
  display: block;
  position: absolute;
  top: 9px;
  left: 7px;
  width: 10px;
  height: 5px;
  transition: transform .3s;
}
.blog-content__main__pager__item__anchor--prev .blog-content__main__pager__item__anchor__icon {
  transform: rotate(180deg);
}

.blog-content__main__pager__item__anchor__icon__path {
  fill: #0e0e0e;
  transition: fill .3s;
}

@media screen and (min-width: 1050px) {
  .blog-content__main__pager__item__anchor:hover {
    color: #6C0000;
  }
  .blog-content__main__pager__item__anchor--prev:hover,
  .blog-content__main__pager__item__anchor--next:hover {
    border: 1px solid #6C0000;
  }
  .blog-content__main__pager__item__anchor--prev:hover .blog-content__main__pager__item__anchor__icon {
    transform: translateX(-7px) rotate(180deg);
  }
  .blog-content__main__pager__item__anchor--next:hover .blog-content__main__pager__item__anchor__icon {
    transform: translateX(7px);
  }
  .blog-content__main__pager__item__anchor:hover .blog-content__main__pager__item__anchor__icon__path {
    fill: #6C0000;
  }
}

/* blog list side menu */
.blog-content__aside {
  width: 100%;
  margin-top: 60px;
}
@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 {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.blog-content__aside__magazine__anchor {
  display: block;
  width: 100%;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}
@media screen and (min-width: 1050px) {
  .blog-content__aside__magazine__anchor:hover {
    opacity: .7;
  }
}

.blog-content__aside__magazine__anchor__image {
  width: 100%;
}

.blog-content__aside__heading {
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #E0E0E0;
  color: #0e0e0e;
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: .1em;
  line-height: 1.5;
}

.blog-content__aside__heading:not(:first-child) {
  margin-top: 40px;
}

.blog-content__aside__heading::before {
  content: "";
  background-color: #6C0000;
  height: 1px;
  width: 85px;
  bottom: -1px;
  left: 0;
  position: absolute;
}

.blog-content__aside__article-list {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .blog-content__aside__article-list {
    margin-top: 30px;
  }
}

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

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

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

.blog-content__aside__article-list__item__block__head {
  width: 100%;
  max-width: 100px;
}

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

.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: #5B5B5B;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  letter-spacing: .25em;
  transition: color .3s;
}
@media screen and (min-width: 1050px) {
  a:hover .blog-content__aside__article-list__item__block__head__date {
    color: #6C0000;
  }
}

.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: #0e0e0e;
  font-size: 1.3rem;
  font-weight: 400;
  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: #6C0000;
  }
}
/* article / 記事一覧 === */

/* 追加 */
.blog-body {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .blog-body {
    margin-top: 20px;
  }
}

.blog-body__date {
  color: #5B5B5B;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  letter-spacing: .16em;
  transition: color .3s;
}

@media screen and (min-width: 1050px) {
  body:not(.page--home) .blog-anchor:hover .blog-body__date {
    color: #0e0e0e;
  }
}

.blog-body__heading {
  margin-top: 10px;
  font-size: 1.7rem;
  line-height: 1.6em;
  letter-spacing: .1em;
  transition: color .3s;
}
@media screen and (min-width: 768px) {
  .blog-body__heading {
    margin-top: 5px;
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1050px) {
  .blog-anchor:hover .blog-body__heading {
    color: #6C0000;
  }
}

.blog-body__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin: 9px -9px -9px -9px;
}

.blog-body__category__item {
  margin: 9px;
  padding-top: 3px;
}
.blog-body__category__item.blog-body__category__item--backgroud {
  padding-top: 0;
}

.blog-body__category__item__inner {
  display: inline-block;
  padding: 5px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: solid 1px #5B5B5B;
  font-size: 1.2rem;
  color: #5B5B5B;
  text-align: center;
}

.blog-body__category__item__inner--color-red {
  border-top: solid 1px #6C0000;
  color: #6C0000;
}

.blog-body__category__item--backgroud .blog-body__category__item__inner {
  min-width: 90px;
  padding: 7.5px 10px;
  border-top: none;
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  .blog-body__category__item--backgroud .blog-body__category__item__inner {
    min-width: 100px;
    font-size: 1.2rem;
  }
}

.blog-body__category__item--backgroud-red .blog-body__category__item__inner {
  background-color: #6C0000;
  color: #fff;
}

.blog-body__category__item--backgroud-gray .blog-body__category__item__inner {
  background-color: #e9eaeb;
  color: #0e0e0e;
}
@charset "UTF-8";

/* lp */

/* variables */
.lp-form {
  --select-max-width: 350px; /* select要素の最大幅 */
  --line-margin-top: 40px; /* 行のmargin-top */
  --line-margin-top-sp: 30px; /* 行のmargin-top(SP) */
  --input-error-color: #CB0303; /* エラーテキストの文字色 */
}

/* === Offset HubSpot default style */

/* 複数カラム時（MAX:3カラム） */
.lp-form form :is(.form-columns-2, .form-columns-3) .hs-form-field {
  float: none;
  width: 100%;
}

/* .input */
.lp-form form .hs-form-field > .input {
  margin-right: 0;
}
.lp-form form .hs-form-field > .input .hs-input:not(input[type="checkbox"], input[type="radio"]) {
  float: none;
  width: 100% !important;
}
.lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input input[type="checkbox"] {
  float: none;
}
.lp-form form .legal-consent-container .hs-form-booleancheckbox-display input {
  float: none;
}
/* 電話番号＋国別コード時のSP表示 */
@media (max-device-width: 480px) and (min-device-width: 320px), (max-width: 400px) {
  .lp-form form > .hs-phone > .input > .hs-fieldtype-intl-phone.hs-input > select.hs-input {
    width: 100% !important;
  }
  .lp-form form > .hs-phone > .input > .hs-fieldtype-intl-phone.hs-input > input.hs-input {
    width: 100% !important;
  }
}

/* Offset HubSpot default style === */


/* === Original form style */

.content--lp .dnd-section-color {
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .content--lp .dnd-section-color {
    padding-bottom: 80px;
  }
}

.section.lp-form {
  margin-top: 0;
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .section.lp-form {
    margin-bottom: 100px;
  }
}

/* form fieldset (フォームの行) */
.lp-form form fieldset {
  max-width: none;
}
.lp-form form fieldset:not(:first-child) {
  margin-top: var(--line-margin-top-sp);
}
@media screen and (min-width: 768px) {
  .lp-form form fieldset:not(:first-child) {
    margin-top: var(--line-margin-top);
  }
}

/* form column */
.lp-form form .hs-form-field:not(:first-child),
.lp-form form .hs-dependent-field {
  margin-top: var(--line-margin-top-sp);
}
@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field:not(:first-child),
  .lp-form form .hs-dependent-field {
    margin-top: var(--line-margin-top);
  }
}
@media screen and (min-width: 1050px) {
  /* 「1つのチェックボックス」フィールド以外 */
  .lp-form form .hs-form-field:not(.hs-fieldtype-booleancheckbox) {
    display: grid;
    grid-template-columns: 200px 1fr;
    column-gap: 30px;
  }
}

/* form field label */
/* 「1つのチェックボックス」フィールド以外 */
.lp-form form label {
  cursor: pointer;
}

.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-top: 10px;
  border-top: 1px solid #0e0e0e;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .lp-form form .hs-form-field:not(.hs-fieldtype-booleancheckbox) > label {
    width: 100%;
    font-size: 1.3rem;
  }
}

/* contact property : require */
.lp-form form .hs-form-field label .hs-form-required {
  color: var(--input-error-color);
}

/* help text */
.lp-form form .hs-form-field .hs-field-desc {
  width: auto;
  margin-top: 5px;
  color: #5B5B5B;
  font-size: 1.3rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field .hs-field-desc {
    margin-top: 4px;
    margin-bottom: 6px;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1050px) {
  .lp-form form .hs-form-field .hs-field-desc {
    position: relative;
    margin-top: -4px;
    margin-bottom: 5px;
  }
}


/* === from input  */

/* form input : parent div element */
/* 「1つのチェックボックス」フィールド以外 */
.lp-form form .hs-form-field:not(.hs-fieldtype-booleancheckbox) > .input {
  display: block;
  margin-top: 7px;
}
/* ヘルプテキストの入力がある場合 */
.lp-form form .hs-form-field .hs-field-desc[style="display: block;"] + .input {
  margin-top: 4px;
}
@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field:not(.hs-fieldtype-booleancheckbox) > .input {
    margin-top: 10px;
  }
  /* ヘルプテキストの入力がある場合 */
  .lp-form form .hs-form-field .hs-field-desc[style="display: block;"] + .input {
    margin-top: 0;
  }
}
@media screen and (min-width: 1050px) {
  .lp-form form .hs-form-field:not(.hs-fieldtype-booleancheckbox) > .input,
  .lp-form form .hs-form-field .hs-field-desc[style="display: block;"] + .input {
    margin-top: 0;
  }
}

/* form input : parts [basic] */
.lp-form form .hs-form-field .input :is(input[type="text"], input[type="tel"], input[type="email"], input[type="number"], textarea) {
  box-sizing: border-box;
  width: 100% !important;
  padding: 12px 14px 11px;
  border: 1px solid #E0E0E0;
  border-radius: 5px;
  background: none transparent;
  color: #5B5B5B;;
  font-size: 1.3rem;
  letter-spacing: .1em;
  vertical-align: middle;
  appearance: none;
}
@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field .input :is(input[type="text"], input[type="tel"], input[type="email"], input[type="number"], textarea) {
    padding: 15px 14px 14px;
    font-size: 1.6rem;
  }
}
/* checkbox, radio button */
@media screen and (min-width: 1050px) {
  .lp-form form .hs-form-field .input:has(.inputs-list.multi-container) {
    padding-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .lp-form form .hs-form-field .input :is(input[type="checkbox"], input[type="radio"]) {
    position: relative;
    top: 2px;
  }
}
/* placeholder */
.lp-form form .hs-form-field .input :is(input[type="text"], input[type="tel"], input[type="email"], input[type="number"], textarea)::placeholder {
  color: #5B5B5B;
  opacity: .6;
}

/* contact property : parts [basic] on error */
.lp-form form .hs-form-field .input :is(input[type="text"], input[type="tel"], input[type="email"], input[type="number"], textarea).error {
  border-color: var(--input-error-color);
}

/* form input : form parts [number] */
.lp-form form .hs-form-field .input[type="number"] {
  max-width: var(--select-max-width);
}

/* form input : parts [radio button] */
@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field.hs-fieldtype-radio .input .inputs-list {
    display: flex;
    flex-wrap: wrap;
  }

  .lp-form form .hs-form-field.hs-fieldtype-radio .input .inputs-list .hs-form-radio {
    display: inline-block;
  }

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

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

/* form input : parts [checkbox] */
.lp-form form .hs-form-field .input .hs-form-checkbox:not(:first-child) {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field .input .hs-form-checkbox:not(:first-child) {
    margin-top: 20px;
  }
}

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

/* form input : 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 label > span {
  display: inline;
  margin-left: 0;
  padding-left: 5px;
  color: #0e0e0e;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 2;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input label > span {
    font-size: 1.6rem;
    padding-left: 8px;
  }
}
/* 出現条件不明だが一応残す */
.lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input label > span .aInput {
  text-decoration: underline;
}

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

/* form input : form parts [select] */
.lp-form form .hs-form-field.hs-fieldtype-select .input {
  position: relative;
  max-width: var(--select-max-width);
}

.lp-form form .hs-form-field.hs-fieldtype-select > .input::before {
  content: '';
  position: absolute;
  top: 18px;
  right: 15px;
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMCA2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBmMGYwZjt9PC9zdHlsZT48L2RlZnM+PGcgaWQ9IuODrOOCpOODpOODvF8yIiBkYXRhLW5hbWU9IuODrOOCpOODpOODvCAyIj48ZyBpZD0i44Os44Kk44Ok44O8XzEtMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMSI+PHBhdGggaWQ9IuWQiOS9k18xNCIgZGF0YS1uYW1lPSLlkIjkvZMgMTQiIGNsYXNzPSJjbHMtMSIgZD0iTTUsNGw1LTRWMkw1LDZaTTAsMlYwTDUsNFY2WiIvPjwvZz48L2c+PC9zdmc+");
  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-select > .input select {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-height: 40px;
  padding: 11px 30px 11px 14px;
  border: 1px solid #E0E0E0;
  border-radius: 5px;
  color: #5B5B5B;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.5;
  appearance: none;
}
@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field.hs-fieldtype-select > .input select {
    max-height: 50px;
    padding: 12px 40px 14px 14px;
    font-size: 1.6rem;
    font-weight: 400;
  }
}

/* form input : form parts [select] (電話番号の国別コードドロップダウン) */
.lp-form form .hs-form-field .hs-fieldtype-intl-phone {
  position: relative;
}

.lp-form form .hs-form-field .hs-fieldtype-intl-phone::before {
  content: '';
  position: absolute;
  top: 18px;
  left: calc(515px - (15px + 10px));
  z-index: 1;
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMCA2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6IzBmMGYwZjt9PC9zdHlsZT48L2RlZnM+PGcgaWQ9IuODrOOCpOODpOODvF8yIiBkYXRhLW5hbWU9IuODrOOCpOODpOODvCAyIj48ZyBpZD0i44Os44Kk44Ok44O8XzEtMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMSI+PHBhdGggaWQ9IuWQiOS9k18xNCIgZGF0YS1uYW1lPSLlkIjkvZMgMTQiIGNsYXNzPSJjbHMtMSIgZD0iTTUsNGw1LTRWMkw1LDZaTTAsMlYwTDUsNFY2WiIvPjwvZz48L2c+PC9zdmc+");
  background-repeat: no-repeat;
}
@media screen and (max-width: 515px) {
  .lp-form form .hs-form-field .hs-fieldtype-intl-phone::before {
    left: calc(100% - (15px + 10px));
  }
}

.lp-form form .hs-form-field .hs-fieldtype-intl-phone select {
  display: block;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 515px;
  max-height: 40px;
  margin-bottom: 13px;
  padding: 8px 30px 11px 14px;
  border: 1px solid #E0E0E0;
  border-radius: 5px;
  color: #5B5B5B;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.5;
  appearance: none;
}
@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field .hs-fieldtype-intl-phone select {
    max-height: 40px;
    margin-bottom: 15px;
    padding: 9px 40px 5px 15px;
    font-size: 1.5rem;
  }
}

/* from input (parent div) === */


/* error message */
.lp-form form .hs-error-msgs {
  width: 100%;
  margin-top: 5px;
  color: var(--input-error-color);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .lp-form form .hs-error-msgs {
    font-size: 1.3rem;
  }
}

/* === date picker (カレンダー) */

/* 本体 */
.lp-form form .hs-form-field.hs-fieldtype-date .input .hs-dateinput .fn-date-picker.pika-single {
  border: 1px solid #E0E0E0;
}
/* 月/年 部分 */
.lp-form form .fn-date-picker .pika-label {
  color: #5B5B5B;
  font-size: 1.5rem;
  font-weight: 400;
}
/* 前月/翌月ボタン */
.lp-form form .fn-date-picker .pika-next,
.lp-form form .fn-date-picker .pika-prev {
  position: absolute;
  background-size: inherit;
  opacity: 1;
  transition: .3s;
}
/* 前月 */
.lp-form form .fn-date-picker .pika-prev {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2IiBoZWlnaHQ9IjEyIiB2aWV3Qm94PSIwIDAgNiAxMiI+CiAgPHBhdGggaWQ9IuWkmuinkuW9ol82MyIgZGF0YS1uYW1lPSLlpJrop5LlvaIgNjMiIGQ9Ik02LDBsNiw2SDBaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDEyKSByb3RhdGUoLTkwKSIgZmlsbD0iI2JhYWQ1MiIvPgo8L3N2Zz4K");
  left: 0;
  top: 0;
}
/* 翌月 */
.lp-form form .fn-date-picker .pika-next {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2IiBoZWlnaHQ9IjEyIiB2aWV3Qm94PSIwIDAgNiAxMiI+CiAgPHBhdGggaWQ9IuWkmuinkuW9ol82MiIgZGF0YS1uYW1lPSLlpJrop5LlvaIgNjIiIGQ9Ik02LDBsNiw2SDBaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2KSByb3RhdGUoOTApIiBmaWxsPSIjYmFhZDUyIi8+Cjwvc3ZnPgo=");
  right: 0;
  top: 0;
}
/* 曜日 */
.lp-form form .fn-date-picker .pika-table th {
  color: color: #5B5B5B;
  font-size: 1.2rem;
  font-weight: 500;
}
.lp-form form .fn-date-picker .pika-table th abbr {
  text-decoration: none;
  cursor: inherit;
}
/* 日ボタン */
.lp-form form .fn-date-picker .pika-button {
  border-radius: 2px;
  background-color: #F8F9F9;
  color: #5B5B5B;
  font-size: 1.3rem;
  font-weight: 500;
}
.lp-form form .fn-date-picker .pika-button:hover {
  background: #909090 !important;
}
/* 今日の日付 */
.lp-form form .fn-date-picker .is-today .pika-button {
  color: #820000;
}
/* 選択した日付 */
.lp-form form .fn-date-picker .is-selected .pika-button {
  background: #820000;
  box-shadow: none;
  color: #fff;
}

/* date picker (カレンダー) === */


/* === データのプライバシーと同意 */
.lp-form form .legal-consent-container {
  margin-top: var(--line-margin-top-sp);
}
@media screen and (min-width: 768px) {
  .lp-form form .legal-consent-container {
    margin-top: var(--line-margin-top);
  }
}

/* コミュニケーション同意/プライバシー/処理同意 テキスト */
.lp-form form .legal-consent-container .hs-richtext {
  font-size: 1.3rem;
  letter-spacing: .15em;
  line-height: 2;
}
@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(:first-child) {
  margin-top: 20px;
}
.lp-form form .legal-consent-container .hs-richtext:not(:last-child) {
  margin-bottom: 20px;
}
/* プライバシー/処理同意 テキストが存在する場合の余白 */
.lp-form form .legal-consent-container div:has(.hs-dependent-field) + .hs-richtext {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .lp-form form .legal-consent-container div:has(.hs-dependent-field) + .hs-richtext {
    margin-top: 40px;
  }
}

/* line-height分の余白を相殺 */
.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);
}

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

/* link */
.lp-form form .legal-consent-container .hs-richtext a {
  display: inline;
  position: relative;
  border-bottom: 1px solid #E8D815;
  text-decoration: none;
  transition: color .3s;
}
@media screen and (min-width: 1050px) {
  .lp-form form .legal-consent-container .hs-richtext a:hover {
    color: #6C0000;
  }
}
/* 外部リンク */
.lp-form form .legal-consent-container .hs-richtext a[target="_blank"] {
  padding-left: 15px;
}
@media screen and (min-width: 768px) {
  .lp-form form .legal-consent-container .hs-richtext a[target="_blank"] {
    padding-left: 20px;
  }
}
/* 外部リンクアイコン */
.lp-form form .legal-consent-container .hs-richtext a[target="_blank"]::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMS45NjkiIGhlaWdodD0iMTEuOTY5IiB2aWV3Qm94PSIwIDAgMTEuOTY5IDExLjk2OSI+CiAgPHBhdGggaWQ9IuODkeOCuV82NDIxIiBkYXRhLW5hbWU9IuODkeOCuSA2NDIxIiBkPSJNLTc4OC41MjksMGgtNi4zNDJhLjUyOC41MjgsMCwwLDAtLjUyOC41MjlWMi4xNjdoLTMuODdhLjcuNywwLDAsMC0uNy43djguNGEuNy43LDAsMCwwLC43LjdoOC40YS43LjcsMCwwLDAsLjctLjdWNy40aDEuNjM4QS41MjguNTI4LDAsMCwwLTc4OCw2Ljg3MVYuNTI5QS41MjkuNTI5LDAsMCwwLTc4OC41MjksMFptLTIuNjM4LDEwLjk2OWgtNy44di03LjhoMy41N3YzLjdhLjUyNy41MjcsMCwwLDAsLjUyOC41MjhoMy43Wk0tNzg5LDYuNGgtNS40VjFoNS40WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNzk5Ljk2OSkiIGZpbGw9IiM0MTQxNDEiLz4KPC9zdmc+Cg==") no-repeat center;
  background-size: cover;
}

/* 個人情報の取扱について同意する チェックボックス部分 */
.lp-form form .legal-consent-container .field.hs-form-field {
  margin-bottom: 0;
}

/* error massage */
.lp-form .legal-consent-container .hs-error-msgs label {
  color: var(--input-error-color);
}

/* データのプライバシーと同意 === */


/* === submit button */

.lp-form form .hs-submit {
  position: relative;
  width: 260px;
  margin-top: 30px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .lp-form form .hs-submit {
    margin-top: 40px;
    margin-right: auto;
    margin-left: auto;
  }
}

.lp-form form .hs-submit .actions {
  position: relative;
  color: #0e0e0e;
  font-size: 1.4rem;
  line-height: 1.2;
  transition: color .3s;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .lp-form form .hs-submit .actions {
    font-size: 1.5rem
  }
}
@media screen and (min-width: 1050px) {
  .lp-form form .hs-submit .actions:hover {
    color: #6C0000;
  }
}

.lp-form form .hs-submit .actions::before,
.lp-form form .hs-submit .actions::after {
  content: '';
  box-sizing: border-box;
  position: absolute;
  z-index: 0;
  border: solid 1px #0e0e0e;
  transition: all .3s;
}

.lp-form form .hs-submit .actions::before {
  top: 0;
  left: 50%;
  width: calc(100% - 10px);
  height: 100%;
  border-width: 1px 0px;
  transform: translateX(-50%);
}
@media screen and (min-width: 1050px) {
  .lp-form form .hs-submit .actions:hover::before {
    width: 100%;
    border-color: #6C0000;
  }
}

.lp-form form .hs-submit .actions::after {
  top: 50%;
  left: 0;
  width: 100%;
  height: calc(100% - 10px);
  border-width: 0px 1px;
  transform: translateY(-50%);
}
@media screen and (min-width: 1050px) {
  .lp-form form .hs-submit .actions:hover::after {
    height: 100%;
    border-color: #6C0000;
  }
}

.lp-form form .hs-submit .actions input {
  appearance: none;
  box-sizing: border-box;
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 17px 30px;
  border: none;
  background: transparent;
  color: #0e0e0e;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.2;
  text-align: left;
  word-break: break-all;
  cursor: pointer;
  transition: color .3s;
}
@media screen and (min-width: 768px) {
  .lp-form form .hs-submit .actions input {
    padding-top: 21px;
    padding-bottom: 21px;
    font-size: 1.5rem
  }
}
@media screen and (min-width: 1050px) {
  .lp-form form .hs-submit .actions:hover input {
    color: #6C0000;
  }
}

/* arrow icon */
.lp-form form .hs-submit .actions .hs-button__icon {
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: -20px;
  width: 42px;
  height: 5px;
  transition: all .3s;
}
@media screen and (min-width: 1050px) {
  .lp-form form .hs-submit .actions:hover .hs-button__icon {
    transform: translateX(10px);
  }
}

.lp-form form .hs-submit .actions .hs-button__icon path {
  fill: #0e0e0e;
}
@media screen and (min-width: 1050px) {
  .lp-form form .hs-submit .actions:hover .hs-button__icon path {
    fill: #6C0000;
  }
}

/* submit button === */

/* Original form style === */



.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 #0e0e0e;
}
@media screen and (min-width: 768px) {
  .lp-form form .checkbox-title {
    font-size: 1.6rem;
    width: 200px;
  }
}

.hs_error_rollup {
  margin-top: 30px;
  color: var(--input-error-color);
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .hs_error_rollup {
    font-size: 1.5rem;
  }
}
@charset "UTF-8";

/* news */

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

.news-article {
  border-top: 1px solid #E0E0E0;
  padding-top: 20px;
  position: relative;
}
.news-article::before {
  content: "";
  background-color: #6C0000;
  height: 1px;
  width: 74px;
  top: -1px;
  left: 0;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .news-article::before {
    width: 91px;
  }
}

.news-article__head__date {
  display: block;
  color: #5B5B5B;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .16em;
  line-height: 1.5;
}

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

.news-article__head__heading {
  color: #0e0e0e;
  font-size: 2.0rem;
  letter-spacing: .1em;
  line-height: 1.5em;
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .news-article__head__heading {
    font-size: 2.8rem;
  }
}

.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;
  margin-right: 8px;
}

.news-article__head__category-list__item__anchor:hover {
  color: #6C0000;
  border-top: 1px solid #6C0000;
}

.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: 60px !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.5;
  font-weight: 400;
  color: #0e0e0e;
  background-color: #F8F9F9;
  border-left: 2px solid #6C0000;
  padding: 13px 15px;
}

@media screen and (min-width: 768px) {
  .news-article__body__content h2, .news-article__body__summary__body h2 {
    font-size: 2.5rem;
    border-left: 2px solid #6C0000;
    padding: 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;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.5;
  color: #0e0e0e;
  position: relative;
  padding-bottom: 8px;
  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 #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
  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: 20px;
}

@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.5;
  font-weight: 400;
  color: #0e0e0e;
  padding-left: 12px;
  border-left: 2px solid #6C0000;
  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 h5, .news-article__body__summary__body h5 {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .news-article__body__content h5, .news-article__body__summary__body h5 {
    font-size: 1.7rem;
  }
}

.news-article__body__content p, .news-article__body__summary__body p {
  font-size: 1.5rem;
  letter-spacing: .2em;
  line-height: 2em;
  color: #5B5B5B;
  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 #E0E0E0;
  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: #5B5B5B;
}

@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 #E0E0E0;
}

@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 #E0E0E0;
}

@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 #E0E0E0;
  }
}

.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: #5B5B5B;
  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: #0e0e0e;
}

.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 {
  color: #5B5B5B;
  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: calc(50% - 14px);
  left: 0;
  width: 28px;
  height: 28px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

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

a:hover .news-article__foot__back__anchor__icon__circle {
  fill: #0e0e0e;
}

.news-article__foot__back__anchor:hover {
  color: #0e0e0e;
}

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

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

@media screen and (min-width: 1050px) {
  .news-archive__menu__laptop-wider__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -13px;
    margin-right: -13px;
  }
}

.news-archive__menu__laptop-wider__list__item:hover {
  color: #0e0e0e;
}

.news-archive__menu__laptop-wider__list__item.is-current {
  color: #6C0000;
}

.news-archive__menu__laptop-wider__list__item__anchor {
  display: block;
  padding: 2px 13px;
  font-size: 1.6rem;
  letter-spacing: .15em;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.news-archive__menu__laptop-wider__list__item__anchor.is-active {
  position: relative;
}
.news-archive__menu__laptop-wider__list__item__anchor.is-active .tab_icon {
  content: '';
  width: 48px;
  height: 2px;
  left: calc(50% - 25.5px);
  bottom: -15px;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.news-archive__menu__laptop-wider__list__item__anchor.is-active.all .tab_icon {
  left: 0;
}
.news-archive__menu__laptop-wider__list__item__anchor.is-active .tab_icon::before {
  content: '';
  background-color: #6C0000;
  height: 6px;
  width: 48px;
  left: calc(50% - 24px);
  top: -1px;
  position: absolute;
  z-index: -1;
}

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

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

.news-archive__menu__palmtop__label__icon {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 16px;
  height: 9px;
  transform: translateY(-50%);
}

.news-archive__menu__palmtop__label__select {
  display: block;
  width: 100%;
  padding: 14px 17px;
  outline: none;
  border: 1px solid #d2d5da;
  background: none transparent;
  color: inherit;
  font-size: 1.4rem;
  letter-spacing: .1em;
  text-indent: 0.01px;
  text-overflow: '';
  appearance: none;
}
@media screen and (min-width: 768px) {
  .news-archive__menu__palmtop__label__select {
    padding: 15px 17px;
    font-size: 1.5rem;
  }
}

.news-archive__content {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .news-archive__content {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1050px) {
  .news-archive__content {
    margin-top: 0;
  }
}

.news-archive__content__list {
  border-bottom: 1px solid #E0E0E0;
}
@media screen and (min-width: 1050px) {
  .news-archive__content__list {
    border-top: 1px solid #0e0e0e;
  }
}

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

.news-archive__content__list__item__anchor {
  display: block;
  padding-top: 25px;
  padding-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .news-archive__content__list__item__anchor {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}

.news-archive__content__list__item:first-child .news-archive__content__list__item__anchor {
  padding-top: 0;
}
@media screen and (min-width: 1050px) {
  .news-archive__content__list__item:first-child .news-archive__content__list__item__anchor {
    padding-top: 35px;
  }
}

.news-archive__content__list__item__content__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: -9px;
  margin-left: -9px;
  margin-right: -9px;
}

.news-archive__content__list__item__content__head__date {
  margin-right: 9px;
  margin-left: 9px;
}

.news-archive__content__list__item__content__body {
  margin-top: 6px;
}

.news-archive__content__list__item__content__body__text {
  color: #0e0e0e;
  font-size: 1.3rem;
  letter-spacing: .1em;
  line-height: 1.5;
  transition: color .3s;
}
@media screen and (min-width: 768px) {
  .news-archive__content__list__item__content__body__text {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1050px) {
  .news-archive__content__list__item__anchor:hover .news-archive__content__list__item__content__body__text {
    color: #6C0000;
  }
}

.news-archive__pager {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

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

.news-archive__pager__item__anchor {
  position: relative;
  display: block;
  font-size: 1.7rem;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .1em;
  color: #0e0e0e;
  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: #6C0000;
  }
}

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

.news-archive__pager__item__anchor--prev,
.news-archive__pager__item__anchor--next {
  height: 27px;
  width: 27px;
  border: 1px solid #0e0e0e;
  border-radius: 100%;
  box-sizing: border-box;
}

.news-archive__pager__item__anchor__icon {
  display: block;
  position: absolute;
  top: 9px;
  left: 7px;
  width: 10px;
  height: 5px;
  transition: transform .3s;
}
.news-archive__pager__item__anchor--prev .news-archive__pager__item__anchor__icon {
  transform: rotate(180deg);
}

.news-archive__pager__item__anchor__icon__path {
  fill: #0e0e0e;
  transition: fill .3s;
}

@media screen and (min-width: 1050px) {
  .news-archive__pager__item__anchor:hover {
    color: #6C0000;
  }
  .news-archive__pager__item__anchor--prev:hover,
  .news-archive__pager__item__anchor--next:hover {
    border: 1px solid #6C0000;
  }
  .news-archive__pager__item__anchor--prev:hover .news-archive__pager__item__anchor__icon {
    transform: translateX(-7px) rotate(180deg);
  }
  .news-archive__pager__item__anchor--next:hover .news-archive__pager__item__anchor__icon {
    transform: translateX(7px);
  }
  .news-archive__pager__item__anchor:hover .news-archive__pager__item__anchor__icon__path {
    fill: #6C0000;
  }
}
@charset "UTF-8";

/* seminar */

.seminar-article-list__item:not(:first-child) {
  margin-top: 50px;
}
@media only screen and (max-width: 1049px) {
  .seminar-article-list__item:not(:first-child) {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .seminar-article-list__item:not(:first-child) {
    margin-top: 40px;
  }
}

.seminar-article-list__item__block {
  display: flex;
  flex-wrap: wrap;
}

.seminar-article-list__item__block__column {
  box-sizing: border-box;
}
.seminar-article-list__item__block__column.seminar-article-list__item__block__column--image {
  width: 280px;
  margin-right: 40px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .seminar-article-list__item__block__column.seminar-article-list__item__block__column--image {
    width: 100%;
    margin-right: 0;
  }
}

.seminar-article-list__item__block__column__image {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.seminar-article-list__item__block__column__image::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.seminar-article-list__item__block__column.seminar-article-list__item__block__column--text {
  width: calc(100% - 320px);
}
@media only screen and (max-width: 767px) {
  .seminar-article-list__item__block__column.seminar-article-list__item__block__column--text {
    margin-top: 20px;
    width: 100%;
  }
}

.seminar-article-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin: -9px;
}

.blog-article-seminar .seminar-article-category__item:not(:last-child) {
  margin-right: 12px;
}
.seminar-article-category__item__inner {
  display: inline-block;
  min-width: 108px;
  border-radius: 3px;
  background-color: #5B5B5B;
  color: #ffffff;
  font-size: 1.2rem;
  letter-spacing: .08em;
  padding: 5px 10px 5px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  transition: background-color .3s;
}
@media screen and (min-width: 768px) {
  .seminar-article-category__item__inner {
    min-width: 125px;
    font-size: 1.3rem;
    padding: 4px 15px 6px 15px;
  }
}
.seminar-article-category__item.seminar-article-category__item--active .seminar-article-category__item__inner {
  background-color: #6C0000;
}

.seminar-article-list__item__block__body__title {
  margin-top: 17px;
}

@media only screen and (min-width: 1050px) {
  .blog-article.blog-article-seminar {
    padding-top: 0;
  }
}

@media only screen and (min-width: 1050px) {
  .blog-article-seminar .blog-article-seminar-description {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px
  }
}

.blog-article-seminar .seminar-article-category {
  margin: 22.5px -9px -9px -9px;
}
@media only screen and (max-width: 767px) {
  .blog-article-seminar .seminar-article-category {
    margin: 12.5px -9px -9px -9px;
  }
}

.blog-article-seminar .blog-article__head {
  padding-top: 0;
}
@media only screen and (min-width: 1050px) {
  .blog-article-seminar .blog-article__head {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px
  }
}

.blog-article-seminar .blog-article__head__thumbnail {
  margin-top: 25px;
  margin-bottom: 20px;
  margin-left: -20px;
  margin-right: -20px;
}
@media only screen and (min-width: 768px) {
  .blog-article-seminar .blog-article__head__thumbnail {
    margin-top: 50px;
    margin-bottom: 30px;
    margin-left: -50px;
    margin-right: -50px;
  }
}
@media only screen and (min-width: 1050px) {
  .blog-article-seminar .blog-article__head__thumbnail {
    margin-top: 40px;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }
}

.seminar-program {
  margin-top: 50px;
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) {
  .seminar-program {
    margin-top: 80px;
    margin-bottom: 60px;
  }
}

.seminar-program-content .natural {
  margin-top: 30px;
}
@media only screen and (min-width: 768px) {
  .seminar-program-content .natural {
    margin-top: 40px;
  }
}

.blog-article-seminar .blog-body__date {
  display: none;
}
@charset "UTF-8";

/* 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 の設定
---------------------------------------*/


@media screen and (min-width: 1050px) {
  .case-study-content {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (min-width: 768px) {
  .case-study-content__article-list {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media screen and (min-width: 1050px) {
  .case-study-content__article-list {
    margin-right: -20px;
    margin-left: -20px;
  }
}

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

.blog-article-case-study .blog-article__head {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
}

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

.blog-article-case-study .section-natural .container {
  padding-left: 0;
  padding-right: 0;
}

.blog-article-case-study .section-natural p {
  font-size: 1.5rem;
  letter-spacing: .1em;
  line-height: 2em;
  line-height: 2em;
  color: #5B5B5B;
  margin-top: -.5em;
  margin-bottom: -.5em;
}
@media screen and (min-width: 768px) {
  .blog-article-case-study .section-natural p {
    font-size: 1.6rem;
  }
}

.blog-article-case-study .blog-article__body__index {
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
  border-left: none;
  border-right: none;
  border-radius: 0;
  padding: 70px 0 30px;
}
@media screen and (min-width: 768px) {
  .blog-article-case-study .blog-article__body__index {
    margin-top: 65px;
    margin-bottom: 55px;
    padding: 65px 35px 30px 0;
  }
}

.blog-article-case-study .blog-article__body__index__title {
  top: 0;
  left: 0;
  width: 165px;
  padding: 14px 0 12px;
  border-top: none;
  border-radius: 0;
  transform: translateX(0);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.7rem;
  letter-spacing: .1em;
}
@media screen and (min-width: 768px) {
  .blog-article-case-study .blog-article__body__index__title {
    width: 180px;
    font-size: 1.8rem;
  }
}

.blog-article-case-study .blog-article__body__index__body__list__item {
  position: relative;
  margin-top: calc( 25px - (((1em * 2) - 1em) / 2) );
  padding-left: 25px;
  color: #0e0e0e;
  line-height: 1.5;
  text-indent: 0;
}
@media screen and (min-width: 768px) {
  .blog-article-case-study .blog-article__body__index__body__list__item {
    margin-top: calc( 28px - (((1em * 2) - 1em) / 2) );
  }
}

.blog-article-case-study .blog-article__body__index__body__list__item::before {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 10px;
  height: 5px;
  border-bottom: 2px solid #820000;
  border-left: 2px solid #820000;
  transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .blog-article-case-study .blog-article__body__index__body__list__item::before {
    top: 10px;
    width: 12px;
    height: 5px;
    border-bottom: 3px solid #820000;
    border-left: 3px solid #820000;
  }
}

.blog-article-case-study .blog-article__body__index__body__list__item a {
  font-size: 1.5rem;
  line-height: 1.5;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .blog-article-case-study .blog-article__body__index__body__list__item a {
    font-size: 1.8rem;
  }
}

.blog-article-case-study .section-description-list {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .blog-article-case-study .section-description-list {
    margin-top: 40px;
  }  
}
@media screen and (min-width: 768px) {
  .blog-article-case-study .section-description-list {
    margin-top: 30px;
  }
}

/* サイト全体で共通のエレメント */
@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 (max-width: 767px) {
	.entry-button:not(:last-child) {
		margin-top: ;
		margin-bottom: ;
	}
}

.entry-button.rich-button-center {
	text-align: center;
}
.entry-button a {
	display: inline-block;
	box-sizing: border-box;
	position: relative;
	min-width: 450px;
	padding: 12px 100px 18px 20px;
	background-color: #6C0000;
	color: #ffffff;
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: .1em;
	line-height: 2;
	text-align: left;
	transition: .5s;
}
@media screen and (max-width: 767px) {
	.entry-button a {
		display: block;
		min-width: inherit;
		max-width: 450px;
		margin: 0 auto;
		padding: 14px 93px 20px 20px;
		font-size: 1.4rem;
	}
}

.entry-button.rich-button--text-align-center a {
	padding: 12px 20px 18px 20px;
	text-align: center;
}
@media screen and (max-width: 767px) {
	.entry-button.rich-button--text-align-center a {
		padding: 14px 20px 20px 20px;
	}
}

.entry-button.is-active a {
	pointer-events: inherit;
}

.entry-button a::after {
	content: attr(data-entry);
	display: block;
	width: 100%;
	font-family: 'Poppins', sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: .25em;
	line-height: 1;
	transition: .5s;
	opacity: .5;
}
@media screen and (max-width: 767px) {
	.entry-button a::after {
		font-size: 1.4rem;
	}
}

.entry-button .entry-button__icon {
	position: absolute;
	top: calc(50% - 5px);
	right: 30px;
	width: 41px;
	height: 5px;
	transition: .5s;
}
@media screen and (max-width: 767px) {
	.entry-button .entry-button__icon {
		width: 30px;
		height: 4px;
		right: 20px;
	}
}
.entry-button .entry-button__icon__path {
	fill: #ffffff;
}

@media screen and (min-width: 1050px) {
	.entry-button a:hover {
		background-color: #820000;
	}
}
/* ==========================================================================

    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: 60px;
	margin-top: 60px;
}
@media screen and (max-width: 767px) {
	.section-image-caption {
		margin-bottom: 40px;
		margin-top: 40px;
	}
}






.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;
	color: #5B5B5B;
	letter-spacing: .1em;
	line-height: 1.4;
	text-align: left;
}

.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: 3.8rem;
  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;
  color: #fff;
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: .16em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .heading-2 {
    margin-top: 80px;
    margin-bottom: 45px;
    font-size: 3.2rem;
  }
}
.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 {
  display: block;
  margin-bottom: 3px;
  padding-left: 14px;
  color: #0e0e0e;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: .2em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .heading-2__deco {
    padding-left: 17px;
    font-size: 1.3rem;
  }
}

.heading-2__deco__line {
  position: relative;
}
.heading-2__deco__line::before {
  position: absolute;
  content: "";
  top: 48%;
  left: -14px;
  width: 6px;
  height: 1px;
  background-color: #6C0000;
}
@media screen and (min-width: 768px) {
  .heading-2__deco__line::before {
    left: -18px;
    width: 8px;
  }
}

.heading-2__inner {
  display: inline;
  padding-left: 6px;
  padding-right: 3px;
  padding-bottom: 2px;
  background-color: #0e0e0e;
  line-height: 1.7;
  box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.heading-2--reverse {
  color: #0e0e0e;
}
.heading-2--reverse .heading-2__deco {
  color: #ffffff;
}
.heading-2--reverse .heading-2__deco__line::before {
  background-color: #ffffff;
}
.heading-2--reverse .heading-2__inner {
  background-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 {
  position: relative;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 23px;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .heading-3 {
    margin-top: 55px;
    margin-bottom: 30px;
    padding-bottom: 27px;
    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);;
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 25px;
  height: 1px;
  background-color: #820000;
}
.heading-subtitle + .heading-3 {
  padding-bottom: 0;
}
.heading-subtitle + .heading-3::before {
  position: initial;
  left: initial;
  bottom: initial;
  width: 0;
  height: 0;
  background-color: transparent;
}
.heading-3.text-center::before {
  left: 50%;
  transform: translateX(-50%);
}
.heading-3.text-right::before {
  left: auto;
  right: 0;
}
@media screen and (min-width: 768px) {
  .heading-3::before {
    width: 30px;
  }
}
.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;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .1em;
  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;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .1em;
  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: 0;
}
.heading-5.heading--child:last-child {
  margin-bottom: 0;
}
.heading-5.heading--child + * {
  margin-top: 0;
}
/* child elements in modules === */
@charset "UTF-8";

/* h6 */

.heading-6 {

}
@charset "UTF-8";

/* heading-subtitle */

.heading-subtitle {
  position: relative;
  padding-left: 11px;
  font-size: 1.2rem;
  font-weight: 400;
  color: #5B5B5B;
}
@media screen and (min-width: 768px) {
  .heading-subtitle {
    font-size: 1.4rem;
  }
}

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

.heading-subtitle::before {
  content: '';
  width: 5px;
  height: 2px;
  background-color: #6C0000;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
/* 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;
}

.heading-subtitle:has(+ .heading-2) {
  padding-left: 0;
}

.heading-subtitle:has(+ .heading-2)::before {
  content: none;
}
@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: 700;
  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 {
  position: relative;
  max-width: 260px;
  padding-right: 20px;
  z-index: 1;
}
.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 {
  position: relative;
  display: block;
  width: 260px;
  padding: 16px 20px;
  box-sizing: border-box;
  color: #0e0e0e;
  font-size: 1.4rem;
  line-height: 1.2;
  word-break: break-all;
  transition: color .3s;
}
@media screen and (min-width: 768px) {
  .link-button__anchor {
    padding: 21px 20px;
    font-size: 1.5rem
  }
}
@media screen and (min-width: 1050px) {
  .link-button__anchor:hover {
    color: #6C0000;
  }
}
.link-button--ja .link-button__anchor {
  font-weight: 400;
  letter-spacing: .1em;
}
.link-button--eng .link-button__anchor {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  letter-spacing: .25em;
}

.link-button__anchor::before,
.link-button__anchor::after {
  content: '';
  position: absolute;
  border: solid 1px #0e0e0e;
  box-sizing: border-box;
  transition: all .3s;
}

.link-button__anchor::before {
  width: calc(100% - 10px);
  height: 100%;
  top: 0;
  left: 50%;
  border-width: 1px 0px;
  transform: translateX(-50%);
}
@media screen and (min-width: 1050px) {
  .link-button__anchor:hover::before {
    border-color: #6C0000;
    width: 100%
  }
}

.link-button__anchor::after {
  width: 100%;
  height: calc(100% - 10px);
  top: 50%;
  left: 0;
  border-width: 0px 1px;
  transform: translateY(-50%);
}
@media screen and (min-width: 1050px) {
  .link-button__anchor:hover::after {
     border-color: #6C0000;
     height: 100%
  }
}

.link-button__anchor__inner__text {
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 1;
}

/* icon */
.link-button__anchor__icon {
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: -20px;
  width: 42px;
  height: 5px;
  transition: all .3s;
}
@media screen and (min-width: 1050px) {
  .link-button__anchor:hover .link-button__anchor__icon {
    transform: translateX(10px);
  }
}

.link-button__anchor__icon path {
  fill: #0e0e0e;
}
@media screen and (min-width: 1050px) {
  .link-button__anchor:hover .link-button__anchor__icon path {
    fill: #6C0000;
  }
}

.link-button--reverse .link-button__anchor {
  color: #fff;
}

.link-button--reverse .link-button__anchor::before,
.link-button--reverse .link-button__anchor::after {
  border-color: #fff;
}

.link-button--reverse .link-button__anchor__icon path {
  fill: #fff;
}
@media screen and (min-width: 1050px) {
  .link-button--reverse .link-button__anchor:hover .link-button__anchor__icon path {
    fill: #fff;
  }
}

.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-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .25em;
  line-height: 1.5;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.link-text:not(:first-child) {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .link-text {
    font-size: 1.5rem;
  }
  .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 {
  display: inline-block;
  position: relative;
  padding-top: 10px;
  padding-right: 31px;
  border-top: solid 1px #0e0e0e;
  transition: color, border-top .3s;
}
@media screen and (min-width: 768px) {
  .link-text__anchor {
    padding-right: 43px;
  }
}
.link-text--ja .link-text__anchor {
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: .1em;
}
.link-text--eng .link-text__anchor {
  font-family: 'Poppins', sans-serif;
  letter-spacing: .25em;
}

@media screen and (min-width: 1050px) {
  .link-text__anchor:hover {
    border-top: solid 1px #6C0000;
    color: #6C0000;
  }
}

.link-text__anchor__icon {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 5px;
}

.link-text__anchor__icon__arrow {
  fill: #0e0e0e;
  transition: fill .3s;
}
@media screen and (min-width: 1050px) {
  .link-text__anchor:hover .link-text__anchor__icon__arrow {
    fill: #6C0000;
  }
}

.link-text--reverse .link-text__anchor {
  border-top: solid 1px #ffffff;
  color: #ffffff;
}
@media screen and (min-width: 1050px) {
  .link-text--reverse .link-text__anchor:hover {
    border-top: solid 1px #ffffff;
    color: #ffffff;
  }
}

.link-text--reverse .link-text__anchor__icon__arrow {
  fill: #ffffff;
}
@media screen and (min-width: 1050px) {
  .link-text--reverse .link-text__anchor:hover .link-text__anchor__icon__arrow {
    fill: #ffffff;
  }
}

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

    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: #5B5B5B;
	text-decoration: none;
	word-break: break-all;
	transition: .5s;
}

.link:hover {
	color: #6C0000;
	text-decoration: none;
}

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

.link:hover::after {
	background-color: #6C0000;
}

.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: #0e0e0e;
	display: inline-block;
	position: relative;
	text-decoration: none;
	transition: .5s;
}
.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;
}
@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: solid 1px #0e0e0e;
	border-radius: 100%;
	transition: .5s;
}
.heading-2.heading-link a::before {
	top: 7px;
	width: 32px;
  height: 32px;
}
.heading-3.heading-link a::before {
	top: 3px;
	width: 28px;
  height: 28px;
}
.heading-4.heading-link a::before {
	top: 3px;
  width: 24px;
  height: 24px;
}
.heading-5.heading-link a::before {
  top: 1px;
	width: 24px;
  height: 24px;
}
@media screen and (max-width: 767px) {
  .heading-2.heading-link a::before {
    top: 4px;
    width: 24px;
    height: 24px;
  }
	.heading-3.heading-link a::before {
		top: 0px;
		width: 24px;
		height: 24px;
	}
  .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: .5s;
}
.heading-link__icon__path {
  fill: #0e0e0e;
}
.heading-2 .heading-link__icon {
  top: 20px;
  left: 13px;
  width: 10px;
  height: 5px;
}
.heading-3 .heading-link__icon {
  top: 15px;
  left: 11px;
  width: 9px;
	height: 4px;
}
.heading-4 .heading-link__icon {
  top: 12px;
  left: 10px;
  width: 7px;
  height: 4px;
}
.heading-5 .heading-link__icon {
  top: 11px;
  left: 10px;
  width: 7px;
  height: 4px;
}
@media screen and (max-width: 767px) {
  .heading-2 .heading-link__icon {
    top: 15px;
    left: 10px;
    width: 7px;
    height: 3px;
  }
	.heading-3 .heading-link__icon {
		top: 11px;
		left: 10px;
		width: 7px;
		height: 3px;
	}
  .heading-4 .heading-link__icon {
    top: 11px;
    left: 8px;
    width: 7px;
    height: 3px;
  }
  .heading-5 .heading-link__icon {
    top: 10px;
    left: 8px;
    width: 7px;
    height: 3px;
  }
}
@media screen and (min-width: 1050px) {
  .heading-link a:hover {
    color: #6C0000;
  }
}
@media screen and (min-width: 1050px) {
  .heading-link a:hover::before {
    border: solid 1px #6C0000;
  }
}
@media screen and (min-width: 1050px) {
  .heading-2.heading-link a:hover .heading-link__icon {
    transform: translateX(10px);
  }
  .heading-3.heading-link a:hover .heading-link__icon {
    transform: translateX(9px);
  }
  .heading-4.heading-link a:hover .heading-link__icon,
  .heading-5.heading-link a:hover .heading-link__icon {
    transform: translateX(8px);
  }
  .heading-link a:hover .heading-link__icon__path {
    fill: #6C0000;
  }
}

.link-id {
  margin-top: -60px;
  padding-top: 60px;
}

.section-heading-link .heading-3::before {
  position: initial;
  left: initial;
  bottom: initial;
  width: 0;
  height: 0;
  background-color: transparent;
}
@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: #5B5B5B;
  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: 100px;
  }
}

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

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

.dnd-section-color {
  padding-bottom: 60px;
  padding-top: 60px;
}
@media screen and (min-width: 1050px) {
  .dnd-section-color {
    padding-bottom: 80px;
    padding-top: 80px;
  }
}
/* 最初のモジュール */
.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: #F8F9F9;
}
/* ==========================================================================

    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: #E0E0E0;
  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;
	}
}
@charset "UTF-8";

/* form */

.form.text-center {
  margin-right: auto;
  margin-left: auto;
}
.form.text-right {
  margin-left: auto;
}

/* サイト全体で共通のモジュール */
/* basic */
@charset "UTF-8";

/* home-message */

.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: 'Poppins', 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 #707070;
}

.home-message__heading__inner {
  display: inline-block;
  border-top: 1px solid #707070;
  padding-top: 7px;
}

.section-home-message .heading-3 {
  padding-bottom: 0;
}

.section-home-message .heading-3::before {
  position: initial;
  left: initial;
  bottom: initial;
  width: 0;
  height: 0;
  background-color: transparent;
}
@charset "UTF-8";

/* home-main */

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

@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 30px;
  margin-right: calc(((100vw - 100%) / 2) * -1);
  position: relative;
}

@media screen and (min-width: 768px) {
  .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: #0e0e0e;
  opacity: .3;
}

.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);
}
@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: 100vw;
  height: 90%;
  position: absolute;
  top: 0;
  left: 50%;
  background-color: #F8F9F9;
  -webkit-transform: translateX(-50%);
  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;
}


@media screen and (min-width: 768px) {
  .home-sub__columns {
    display: -webkit-box;
    display: -ms-flexbox;
    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 {
  -webkit-transform: scale(1.1);
  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: #0e0e0e;
  opacity: .3;
}

.home-sub__content__heading {
  font-size: 1.8rem;
  letter-spacing: .2em;
  line-height: 1.5em;
  font-weight: 400;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 100%;
  color: #ffffff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}

@media screen and (min-width: 768px) {
  .home-sub__content__heading {
    font-size: 2.4rem;
  }
}

.home-sub__content__heading::before {
  content: attr(data-decoration-text);
  display: block;
  color: #ffffff;
  font-size: 1.1rem;
  letter-spacing: .35em;
  line-height: 1.5em;
  font-weight: 400;
  margin-bottom: 5px;
}

@media screen and (min-width: 768px) {
  .home-sub__content__heading::before {
    font-size: 1.4rem;
  }
}
@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;
}

@media screen and (min-width: 768px) {
  .home-know__row {
    margin-left: 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 {
  width: 100%;
  height: 228px;
  background-color: #6C0000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: auto;
  padding-left: 30px;
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 768px) {
  .home-know__row__content__box {
    padding-left: 50px;
    width: 300px;
    height: 400px;
  }
}

@media screen and (min-width: 1050px) {
  .home-know__row__content__box {
    padding-left: 60px;
    width: 400px;
    height: 400px;
  }
}

.home-know__row__content__box::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0e0e0e;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  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::before {
  content: attr(data-decoration-text);
  display: block;
  font-size: 2.5rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .25em;
}

.home-know__row__content__box__inner__heading__text {
  display: block;
  margin-top: 9px;
  font-size: 1.6rem;
  letter-spacing: .1em;
  line-height: 2em;
}

.home-know__row__content__box__inner .link-text {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .home-know__row__content__box__inner .link-text {
    margin-top: 20px;
  }
}

.home-know__row__content__box__inner .link-text__anchor {
  border-top: solid 1px #ffffff;
  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;
}

@media screen and (min-width: 768px) {
  .home-know__row--reverse {
    margin-right: 0;
  }
}

@media screen and (min-width: 768px) {
  .home-know__row--reverse .home-know__row__content {
    height: auto;
    background-position: calc(50% - 150px) 50%;
  }
}

@media screen and (min-width: 768px) {
  .home-know__row--reverse .home-know__row__content {
    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 {
  -webkit-transform-origin: left top;
  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 {
    -webkit-transform-origin: right top;
    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;
  }
}

.home-conversion__columns__column {
  width: 50%;
}

.home-conversion__anchor {
  display: block;
  height: 100%;
  background-color: #6C0000;
}

@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: #6C0000;
}
@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: #0e0e0e;
  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::after {
  content: attr(data-decoration-text);
  display: block;
  margin-top: 11px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .25em;
}

@media screen and (min-width: 768px) {
  .home-conversion__content__box__inner__heading::after {
    font-size: 1.4rem;
  }
}

.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;
  }
}
@charset "UTF-8";

/* strength-reason */

.section-strength-reason {
  margin-top: 60px;
  margin-bottom: 35px;
}

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

.strength-reason__title__box {
  background-color: #6C0000;
  width: 230px;
  height: 230px;
  position: absolute;
  top: calc(50% - 115px);
  left: calc(50% - 115px);
  padding: 20px;
  -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: 'Poppins', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .35em;
  line-height: 1.5em;
}

.strength-reason__title__box__heading {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 2.0rem;
  letter-spacing: .35em;
  font-weight: 400;
  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;
}
@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: #6C0000;
}

.cta-text {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.cta-text::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #0e0e0e;
  opacity: .3;
  transition: .5s;
}
.cta-text:hover::after {
  opacity: .6;
}

.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: 60px 50px 50px;
  }
}
@media screen and (max-width: 767px) {
  .cta-text .cta_button {
    padding: 35px 20px 35px 20px;
  }
}



.cta_button_decoeation {
  background-color: #6C0000;
  position: absolute;
  top: -15px;
  left: 180px;
  padding: 14px 40px;
  text-align: center;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  letter-spacing: .25em;
  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: 1.3rem;
    top: -20px;
    left: 20px;
    padding: 8px 30px;
  }
}


.cta_button_decoeation::after {
  content: "";
  position: absolute;
  left: calc(50% - 10px);
  bottom: -10px;
  transition: .5s;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #6C0000 transparent transparent transparent;
  font-weight: 600;
}
.cta-text .cta_button__title {
  display: block;
  padding-bottom: 15px;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .cta-text .cta_button__title {
    font-size: 2.2rem;
  }
}
.cta-text .cta_button__title span {
  position: relative;
  z-index: 1;
  background-image: linear-gradient(transparent 95%, #6C0000 95%);

}

.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 .cta_button__text:not(:first-child) {
  margin-top: 10px;
}

@media screen and (max-width: 767px){
  .cta-text .link-button__anchor {
    background-size: 24px;
  }
}

.cta-text .link-button {
  position: relative;
  text-align: left;
}

.cta-text .link-button::before {
  position: absolute;
  top: calc(50% - 3px);
  right: -20px;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  width: 42px;
  height: 5px;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="41.171" height="4.846" viewBox="0 0 41.171 4.846" class="link-button__anchor__icon"><path d="M41.171 4.845H.002v-1h38.829L35.81.691l.722-.692Z"/></svg>');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="41.171" height="4.846" viewBox="0 0 41.171 4.846" class="link-button__anchor__icon"><path d="M41.171 4.845H.002v-1h38.829L35.81.691l.722-.692Z"/></svg>');
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: #fff;
  transition: all .3s;
}
@media screen and (min-width: 1050px) {
  .cta-text .cta_button:hover .link-button::before {
    transform: translateX(10px);
  }
}

@media screen and (min-width: 1050px) {
  .cta-text .cta_button:hover .link-button__anchor::before {
    width: 100%
  }
  .cta-text .cta_button:hover .link-button__anchor::after {
    height: 100%
  }
  .cta-text .cta_button:hover .link-button__anchor .link-button__anchor__icon {
    transform: translateX(10px);
  }
}

/* 中央寄せのスタイル */

.section-cta-text.cta-text--center,
.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%);
}
@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 {
  border-top: solid 1px #6C0000;
  color: #6C0000;
}
.case-others__list__item__card:hover .link-text__anchor .link-text__anchor__icon__arrow {
  fill: #6C0000;
}

.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: #0e0e0e;
  opacity: .3;
}

.case-others__list__item__card__head__heading {
  padding: 0 20px;
  box-sizing: border-box;
  font-size: 2.2rem;
  letter-spacing: .2em;
  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-family: 'Poppins', sans-serif;
  color: #5B5B5B;;
  letter-spacing: .35em;
  line-height: 1.5em;
}
@charset "UTF-8";

/* service-flow */

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

.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: #6C0000 transparent transparent transparent;
}

.service-flow__list__item__box {
  padding: 30px 20px;
  border-radius: 5px;
  background-color: #F8F9F9;
}
@media screen and (min-width: 768px) {
  .service-flow__list__item__box {
    padding: 20px;
  }
}
/* 背景色ありのスタイル */
.dnd-section-color--bg .service-flow__list__item__box {
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .service-flow__list__item__box {
    padding: 28px 25px;
  }
}

@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);
  }
}

.section-service-flow .heading-3 {
  padding-bottom: 0;
}

.section-service-flow .heading-3::before {
  position: initial;
  left: initial;
  bottom: initial;
  width: 0;
  height: 0;
  background-color: transparent;
}
@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:not(:first-child) {
  padding-top: 30px;
  margin-top: 27px;
  border-top: 1px dotted #E0E0E0;
}

@media screen and (min-width: 768px) {
  .service-question__list__item:not(:first-child) {
    padding-top: 40px;
    margin-top: 37px;
  }
}

.service-question__list__item__question::before {
  content: attr(data-decoration-text);
  display: inline-block;
  box-sizing: border-box;
  width: 123px;
  padding: 5px 5px 4px;
  border: 1px solid #0e0e0e;
  color: #0e0e0e;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .35em;
  line-height: 1.5em;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .service-question__list__item__question::before {
    width: 146px;
    padding: 4px 5px 3px;
    font-size: 1.4rem;
  }
}

.service-question__list__item__question__inner {
  display: block;
  margin-top: 16px;
}

.service-question__list__item__answer {
  margin-top: 17px;
}

@media screen and (min-width: 768px) {
  .service-question__list__item__answer {
    margin-top: 25px;
  }
}

.service-question__list__item__answer::before {
  content: attr(data-decoration-text);
  display: inline-block;
  box-sizing: border-box;
  width: 123px;
  padding: 5px 5px 4px;
  background-color: #6C0000;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .35em;
  line-height: 1.5em;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .service-question__list__item__answer::before {
    width: 146px;
    padding: 4px 5px 3px;
    font-size: 1.4rem;
  }
}

.service-question .service-question__list__item__answer__inner {
  display: block;
  margin-top: 7px;
}

/* === アコーディオン */
.service-question.accordion--active .service-question__list__item {
  padding: 0 76px 0 20px;
  border: 1px solid #E0E0E0;
}
@media screen and (min-width: 768px) {
  .service-question.accordion--active .service-question__list__item {
    padding: 0 130px 0 40px;
  }
}
.service-question.accordion--active .service-question__list__item:not(:first-child) {
  margin-top: 20px;
}

/* question */
.service-question.accordion--active .service-question__list__item__question {
  position: relative;
  padding: 20px 0 20px 34px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .service-question.accordion--active .service-question__list__item__question {
    padding: 40px 0 45px 54px;
  }
}

.service-question.accordion--active .service-question__list__item__question__inner {
  margin-top: 0;
  margin-bottom: 0;
}

/* 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 #E0E0E0;
}
@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;
  border: none;
  color: #0e0e0e;
  font-size: 2.2rem;
  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: #6C0000;
}
@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 #E0E0E0;
  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: #0e0e0e;
  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: #6C0000;
  }
  .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: #6C0000;
  }
}

/* アコーディオン === */
@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: #F8F9F9;
  padding-top: 60px;
  padding-bottom: 60px;
}
/* 背景色ありのスタイル */
.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;
}

@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: 400;
  letter-spacing: .2em;
  line-height: 1.5em;
  margin-top: 30px;
}

.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 #5B5B5B;
  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;
}

.case-lead__block__text__client__name .paragraph:not(:last-child) {
  margin-bottom: 30px;
}
@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 #E0E0E0;
}
@media screen and (min-width: 768px) {
  .description-list__group {
    display: flex!important;
  }
}

.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: #5B5B5B;
  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 #E0E0E0;
  }
}

@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 #E0E0E0;
  }
}
@media screen and (max-width: 767px) {
  .description-list__group__desc__inner:nth-child(2) {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dotted #E0E0E0;
  }
}

.description-list .natural {
  margin-top: 0;
  margin-bottom: 0;
}
@charset "UTF-8";

/* glossary-index */

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

.glossary-index__list {
  border-top: 1px solid #E0E0E0;
}

.glossary-index__list__item {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .glossary-index__list__item {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.glossary-index__list__item:not(:first-child) {
  border-top: 1px solid #E0E0E0;
}

.glossary-index__list__item .heading-2:not(:last-child) {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .glossary-index__list__item .heading-2:not(:last-child) {
    margin-bottom: 35px;
  }
}

@media screen and (min-width: 768px) {
  .glossary-index__list__item__word-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -25px;
    margin-right: -25px;
  }
}

@media screen and (min-width: 768px) {
  .glossary-index__list__item__word-list__item {
    box-sizing: border-box;
    width: calc(100% / 3);
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media screen and (min-width: 1050px) {
  .glossary-index__list__item__word-list__item {
    width: calc(100% / 4);
  }
}

.glossary-index__list__item__word-list__item:nth-child(n+2) {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .glossary-index__list__item__word-list__item:nth-child(n+2) {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .glossary-index__list__item__word-list__item:nth-child(n+4) {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1050px) {
  .glossary-index__list__item__word-list__item:nth-child(n+4) {
    margin-top: 0;
  }
}

@media screen and (min-width: 1050px) {
  .glossary-index__list__item__word-list__item:nth-child(n+5) {
    margin-top: 30px;
  }
}

.glossary-index__list__item__word-list__item__anchor {
  display: block;
  position: relative;
  padding-left: 15px;
  color: #5B5B5B;
  font-size: 1.3rem;
  letter-spacing: .1em;
  line-height: 2;
  text-decoration: underline;
  transition: color .3s;
}
@media screen and (min-width: 768px) {
  .glossary-index__list__item__word-list__item__anchor {
    font-size: 1.6rem;
  }
}

.glossary-index__list__item__word-list__item__anchor::before {
  content: '';
  position: absolute;
  top: 1em;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #5B5B5B;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.glossary-index__list__item__word-list__item__anchor:hover {
  color: #6C0000;
  text-decoration: underline;
}

.section-glossary-index .heading-2 {
  color: #0e0e0e;
}
@charset "UTF-8";

/* 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-left: 1px dotted #5B5B5B;
  border-right: 1px dotted #5B5B5B;
}

.faq-question__list__item:first-child {
  border-top: 1px dotted #5B5B5B;
}

.faq-question__list__item:last-child {
  border-bottom: 1px dotted #5B5B5B;
}

.faq-question__list__item:not(:first-child) {
  border-top: 1px dotted #5B5B5B;
}

.faq-question__list__item__question {
  padding: 10px calc(15px + 36px) 10px 15px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

@media screen and (min-width: 768px) {
  .faq-question__list__item__question {
    padding: 15px calc(20px + 60px) 15px 20px;
  }
}

.faq-question__list__item__question:hover {
  background-color: #F8F9F9;
}

.faq-question__list__item__question.is-active {
  border-bottom: 1px dotted #E0E0E0;
}

/* 背景色ありのスタイル */
.dnd-section-color--bg .faq-question__list__item__question:hover {
  background-color: #fff;
}
.dnd-section-color--bg .faq-question__list__item__question.is-active {
  background-color: #fff;
}

.faq-question__list__item__question__inner {
  font-size: 1.6rem;
  letter-spacing: .1em;
  line-height: 1.5em;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .faq-question__list__item__question__inner {
    font-size: 2.0rem;
  }
}

.faq-question__list__item__question__button {
  pointer-events: none;
  position: absolute;
  padding: 0;
  width: 36px;
  height: 100%;
  top: 0;
  right: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  border-left: 1px dotted #5B5B5B;
}

@media screen and (min-width: 768px) {
  .faq-question__list__item__question__button {
    width: 60px;
  }
}

.faq-question__list__item__question__button::before, .faq-question__list__item__question__button::after {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  right: calc(50% - 5px);
  width: 10px;
  height: 2px;
  background-color: #0e0e0e;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

@media screen and (min-width: 768px) {
  .faq-question__list__item__question__button::before, .faq-question__list__item__question__button::after {
    width: 14px;
    right: calc(50% - 7px);
  }
}

.is-active .faq-question__list__item__question__button::before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq-question__list__item__question__button::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.is-active .faq-question__list__item__question__button::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq-question__list__item__answer {
  display: none;
  padding: 11px 15px 9px;
}

@media screen and (min-width: 768px) {
  .faq-question__list__item__answer {
    padding: 16px 20px 14px 20px;
  }
}

.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;
  }
}
/* ==========================================================================

    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%;
}
.js-table-scroll__icon {
  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:before {
    content: "";
  }
  .js-table-scroll:before {
    background-color: rgba(15, 15, 15, .3);
    border-radius: 5px;
    box-sizing: border-box;
    content: "SWIPE";
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 2.0rem;
    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 {
    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;
  }

  .js-table-scroll.is-checked:before,
  .js-table-scroll.is-checked .js-table-scroll__icon {
    visibility: hidden;
  }
}


/* 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 #E0E0E0;
}


.table-normal__head__row__header {
  max-width: 200px;
  padding: 15px;
  border-bottom: 1px solid #E0E0E0;
  background-color: rgba(224, 224, 224, 50%);
  color: #5B5B5B;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 2;
  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 #E0E0E0;
}

.table-normal__head__row__header.table__head__row__header--notitle {
  background-color: #E0E0E0;
}


.table-normal__body__row__header {
  box-sizing: border-box;
  width: 250px;
  padding: 20px 15px;
  border-right: 1px solid #E0E0E0;
  background-color: #fff;
  color: #5B5B5B;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 2;
  text-align: left;
}

.table-normal__body__row__header--bg {
  background-color: #F8F9F9;
}
@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: 1.3rem;
    width: 150px;
  }
}

.table-normal__body__row:not(:last-child) {
  border-bottom: 1px solid #E0E0E0;
}

.table-normal__body__row__data {
  max-width: 200px;
  padding: 15px 15px;
  color: #5B5B5B;
  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 #E0E0E0;
}


/* 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 #E0E0E0;
}

.table-combination__head__row__header.table__head__row__header--title {
  background-color: #5B5B5B;
  color: #ffffff;
}

.table-combination__head__row__header {
  width: 350px;
  padding: 10px 20px;
  color: #5B5B5B;
  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 #E0E0E0;
}

@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 #E0E0E0;
}

.table-combination__body__row__header {
  box-sizing: border-box;
  width: 252px;
  padding: 20px 15px;
  color: #5B5B5B;
  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 #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
}
@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: 1.3rem;
    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 #E0E0E0;
}

.table-combination__body__row__data.table-combination__body__row__data--bg:last-child {
  background-color: #F8F9F9;
}

@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: #5B5B5B;
}

/* style2 背景色ありのスタイル */
.dnd-section-color--bg .table-combination__table {
  border: 1px solid #E0E0E0;
}
.dnd-section-color--bg .table-combination__head__row__header:not(:last-child) {
  border-right: 1px solid #E0E0E0;
}
.dnd-section-color--bg .table-combination__body__row:not(:last-child) {
  border-bottom: 1px solid #E0E0E0;
}
.dnd-section-color--bg .table-combination__body__row__header:not(:last-child) {
  border-right: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
}
.dnd-section-color--bg .table-combination__body__row__data:not(:last-child) {
  border-right: 1px solid #E0E0E0;
}
.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: 15px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .list__item {
    margin-top: 22px;
    margin-bottom: 22px;
  }
}
.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: 12px;
  }
}

/* ドット */
.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: #6C0000;
}
@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: 15px;
}

.list--line .list__item::before {
  content: "-";
  position: absolute;
  top: 8px;
  left: 0;
  color: #5B5B5B;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .list--line .list__item::before {
    top: 6px;
  }
}


/* チェック */
.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: 1.8rem;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  .list.list--check .list__item .paragraph {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.list.list--check .list__item::before {
  content: '';
  display: block;
  position: absolute;
  top: 13px;
  left: 0;
  width: 10px;
  height: 5px;
  border-bottom: 2px solid #820000;
  border-left: 2px solid #820000;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .list.list--check .list__item::before {
    top: 5px;
  }
}


/* 数字 */
.list--number:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .list--number:not(:first-child) {
    margin-top: 25px;
  }
}

.list--number:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .list--number:not(:last-child) {
    margin-bottom: 25px;
  }
}

.list--number {
  counter-reset: number;
}

.list--number .list__item {
  padding-left: 35px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .list--number .list__item {
    padding-left: 25px;
  }
}

.list--number .list__item::before {
  content: counter(number) ".";
  counter-increment: number;
  position: absolute;
  top: 3px;
  left: 0;
  color: #5B5B5B;
  line-height: 2;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .list--number .list__item::before {
    top: -1px;
  }
}
/* ==========================================================================

    sub_navigation

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

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

  サイト全体で共通の設定

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


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




/* カラースキーム
--------------------------------------*/
/*
  記事詳細の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-tab {
  margin-bottom: 50px;
  margin-top: 50px;
}

.sub-navigation.sub-navigation--tab {
  align-items: flex-end;
}

.sub-navigation--tab__list {
  flex: 1;
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}
@media only screen and (max-width: 1049px) {
  .sub-navigation--tab__list {
    flex: inherit;
    width: calc(25% - 4px);
  }
}

.sub-navigation--tab__list:not(:first-child) {
  margin-left: 2px;
}

.sub-navigation--tab__list__link {
  display: block;
  position: relative;
  padding: 15px 10px 10px 10px;
  border-bottom: 8px solid #E0E0E0;
  color: #5B5B5B;
  font-size: 1.7rem;
  font-weight: 500;
  transition: .5s;
}
@media only screen and (max-width: 767px) {
  .sub-navigation--tab__list__link {
    font-size: 1.4rem;
  }
}

.sub-navigation--tab__list__link a {
  color: #E0E0E0;
  line-height: 1.5;
  transition: .5s;
}

.sub-navigation--tab__list__link::before,
.sub-navigation--tab__list__link::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: calc(50% - 1px);
  width: 2px;
}
.sub-navigation--tab__list__link::before {
  content: "";
  bottom: -8px;
  z-index: 2;
  height: 0;
  background-color: #ffffff;
  transition: .2s .3s;
}
.sub-navigation--tab__list__link::after {
  content: "";
  bottom: -28px;
  height: 0;
  background-color: #6C0000;
  transition: .3s;
}
.sub-navigation--tab__list__link .tab__list__link__text {
  display: block;
  position: relative;
  padding-top: 15px;
}

.sub-navigation--tab__list__link:hover::before {
  height: 8px;
}
.sub-navigation--tab__list__link:hover::after {
  height: 23px;
}
.sub-navigation--tab__list:hover .sub-navigation--tab__list__link {
  border-bottom: 8px solid #6C0000;
}
.sub-navigation--tab__list:hover .sub-navigation--tab__list__link a {
  color: #6C0000;
}
.sub-navigation--tab__list:hover .sub-navigation--tab__list__link::before {
  height: 8px;
}
.sub-navigation--tab__list:hover .sub-navigation--tab__list__link::after {
  height: 20px;
}
.sub-navigation--tab__list:hover .sub-navigation--tab__list__link .sub-navigation--tab__list__link__text::before,
.sub-navigation--tab__list__link:hover .sub-navigation--tab__list__link__text::before {
  opacity: 1;
  transform: translateY(0);
}

@media only screen and (max-width: 767px) {
  .sub-navigation--tab__list {
    flex: inherit;
    width: calc(50% - 1px);
  }
  .sub-navigation--tab__list:not(:first-child) {
    margin-left: 0;
  }
  .sub-navigation--tab__list:nth-child(2n) {
    margin-left: 2px;
  }
  .sub-navigation--tab__list .tab__list__link {
    padding: 0 10px 5px 10px;
    font-size: 1.4rem;
  }
  .sub-navigation--tab__list .tab__list__link__text::before {
    left: calc(50% - 18px);
    width: 35px;
    height: 4px;
  }
}
/* タブスタイル 背景色ありのスタイル */
.dnd-section-color--bg .sub-navigation--tab__list__link {
  border-bottom: 8px solid #E0E0E0;
}


/* アンカーリンク */

.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: flex-start;
}
@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: calc(25% - 23px);
}
@media screen and (max-width:767px) {
  .linkin-page__item {
    padding: 0;
    width: 100%;
  }
  .linkin-page__item:not(:first-child) {
    margin-top: 25px;
  }
}
.linkin-page__item:nth-child(n+5) {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .linkin-page__item:not(:nth-child(4n+4)) {
    margin-right: 30px;
  }
}

.linkin-page__item a {
  display: flex;
  align-items: center;
  border-top: 1px solid #5B5B5B;
  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-top: 1px solid #6C0000;
  }
}

.linkin-page__item__text {
  display: block;
  width: 100%;
  color: #5B5B5B;
  font-size: 1.6rem;
  line-height: 1.5;
  transition: .5s;
}
@media screen and (max-width:767px) {
  .linkin-page__item__text {
    font-size: 1.3rem;
  }
  .linkin-page__item__text:not(:first-child) {
    margin-top: 5px;
  }
}

@media screen and (min-width:1050px) {
  .linkin-page__item a:hover .linkin-page__item__text {
    color: #6C0000;
  }
}

.linkin-page__item__text__inner {
  display: block;
  position: relative;
  padding-top: 15px;
  padding-right: 25px;
}

.linkin-page__item a .linkin-page__item__text__inner::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 20px;
  right: 5px;
  width: 8px;
  height: 8px;
  border-right: solid 1px #090909;
  border-bottom: solid 1px #090909;
  transform: rotate(45deg);
  transition: .5s;
}

.linkin-page__item a:hover .linkin-page__item__text__inner::before {
  border-color: #6C0000;
}
@media screen and (max-width: 767px) {
  .linkin-page__item a .linkin-page__item__text__inner::before {
    width: 6px;
    height: 6px;
  }
}


/* 目次のスタイル */
.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: 2px solid #E0E0E0;
  }
}

.sub-navigation--anchor__item a {
  display: block;
  position: relative;
  padding: 18px 10px;
  border-left: 2px solid #E0E0E0;
  text-align: center;
  text-decoration: none;
}
.sub-navigation--anchor__item:last-child a {
  border-right: 2px solid #E0E0E0!important;
}

.sub-navigation--anchor__item a::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 2px;
  left: calc(50% - 2.5px);
  width: 5px;
  height: 5px;
  border-right: solid 2px #6C0000;
  border-bottom: solid 2px #6C0000;
  transform: rotate(45deg);
  transition: .5s;
}
@media screen and (min-width: 1050px) {
  .sub-navigation--anchor__item a:hover::before {
    bottom: -3px;
  }
}

.sub-navigation--anchor__item__text {
  display: block;
  color: #0e0e0e;
  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 (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: 2px solid #E0E0E0;
  }

}
@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: 2px solid #E0E0E0;
  }
}
@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: #5B5B5B;
  font-size: 1.4rem;
  letter-spacing: .15em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .section-movie .movie-caption {
    margin-top: 10px;
    font-size: 1.2rem;
  }
}
/* ==========================================================================

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

.map iframe {
	width: 100% !important;
	height: 100% !important;
	top: 0 !important;
	left: 0 !important;
	position: absolute !important;
}
/* ==========================================================================

    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 #E0E0E0;
  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;
}
@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: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;
}
@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 .heading-3 {
  padding-bottom: 0;
}

.section-zoom .heading-3::before {
  position: initial;
  left: initial;
  bottom: initial;
  width: 0;
  height: 0;
  background-color: transparent;
}
/* ==========================================================================

    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;
}
@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%;
}
/* ==========================================================================

    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;
}
@media screen and (max-width: 1450px) {
	.logo-area .logo-area__bg {
		left: 50%;
		transform: translateX(-50%);
	}
}

.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;
	background-color: #ffffff;
}

.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: #0e0e0e;
  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;
	}
}
/* ==========================================================================

    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: #0e0e0e;
	opacity: .3;
	transition: .5s;
}
.bg-on-text.bl-hover::before {
	opacity: .5;
}

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

.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;
	}
	.bg-on-text--center .heading-2__deco {
		left: calc(50% - 25px);
	}
}

@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;
}
/* 全幅背景 === */

/* === link-button */
@media screen and (min-width: 1050px) {
  .bg-on-text:hover .link-button__anchor::before {
    width: 100%
  }
  .bg-on-text:hover .link-button__anchor::after {
    height: 100%
  }
  .bg-on-text:hover .link-button__anchor .link-button__anchor__icon {
    transform: translateX(10px);
  }
}
/* link-button === */
/* ==========================================================================

    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: 45px;
}
@media screen and (max-width: 767px) {
  .section-bg-image-top {
    margin-top: 60px;
    margin-bottom: 25px;
  }
}

.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: #F8F9F9;
}

.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: #F8F9F9;
}

.bg-image-top .heading-2--decoration {
  position: relative;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .bg-image-top .heading-2--decoration {
    padding-top: 20px;
  }
}

.bg-image-top .heading-2--decoration .heading-2__deco {
	font-family: 'Poppins', sans-serif;
  color: #6C0000;
  font-size: 7.0rem;
  font-weight: 200;
  top: -10px;
  left: -90px;
  letter-spacing: .15em;
  line-height: 1;
  margin-bottom: 0;
  opacity: .04;
  position: absolute;
}
@media screen and (max-width: 1049px) {
  .bg-image-top .heading-2--decoration .heading-2__deco {
    left: -45px;
  }
}
@media screen and (max-width: 767px) {
  .bg-image-top .heading-2--decoration .heading-2__deco {
    font-size: 3.0rem;
    top: -6px;
    left: -25px;
  }
}

_:-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;
}

.section-bg-image-top .heading-2__deco__line {
  display: none;
}
/* ==========================================================================

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

.bg-image-lr:nth-child(even) .bg-image-lr__bg {
  margin-left: calc(((100vw - 100%) / 2) * -1);
}

.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;
}
@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: #F8F9F9;
}
.dnd-section-color--bg .bg-image-lr__inner__text {
  background: #F8F9F9;
}
.dnd-section-color--bg .bg-image-lr__inner__text::before {
  background-color: #F8F9F9;
}
/* ==========================================================================

    035_2column_img_h_txt_btn

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

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

  サイト全体で共通の設定

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


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




/* カラースキーム
--------------------------------------*/
/*
  記事詳細の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 #E0E0E0;
  padding: 45px;
  padding: 45px 40px;
  font-size: 2.0rem;
  letter-spacing: .17em;
  line-height: 1.5;
}
@media screen and (max-width: 1049px) {
  .section-2column_img_h_txt_btn__wrap--border {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 767px) {
  .section-2column_img_h_txt_btn__wrap--border {
    padding: 20px;
  }
}

.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 .columns.has-heading-2 .heading-subtitle {
  padding-left: 0;
}

.section-2column_img_h_txt_btn .columns.has-heading-2 .heading-subtitle::before {
  content: none;
}
/* ==========================================================================

    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 #E0E0E0;
    box-sizing: border-box;
    padding: 40px 70px;
    position: relative;
}
@media screen and (max-width: 1449px) {
    .title-wrap-columns {
        padding: 40px 45px;
    }
}
@media screen and (max-width: 1049px) {
    .title-wrap-columns {
        padding: 40px 35px;
    }
}
@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: #6C0000;
    box-sizing: border-box;
    color: #ffffff;
    display: inline-block;
    font-weight: 400;
    font-size: 2.4rem;
    left: 50%;
    letter-spacing: .17em;
    line-height: 1.5;
    max-width: calc(100% - 100px);
    min-width: 283px;
    position: absolute;
    padding: 7px 30px;
    text-align: center;
    transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
    .title-wrap-columns__heading {
        font-size: 1.8rem;
        max-width: calc(100% - 90px);
        min-width: 187px;
        padding: 6px 20px;
    }
}

.title-wrap-columns .lead {
    font-weight: 400;
    font-size: 1.7rem;
    color: #0e0e0e;
}
@media screen and (max-width: 767px) {
    .title-wrap-columns .lead {
        font-size: 1.5rem;
    }
}

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

/* 画像なし */
@media screen and (min-width: 768px) {
  .title-wrap-columns .columns--two.no--image .columns__column {
    width: 100%;
    text-align: center;
  }
}
/* ==========================================================================

    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 {
    padding: 50px 0;
    position: relative;
}
.square_column2:not(:first-child) {
    margin-top: -15px;
}
@media screen and (max-width: 1049px) {
    .square_column2 {
        padding: 30px 0;
    }
    .square_column2:not(:first-child) {
        margin-top: 0;
    }
}
@media screen and (max-width: 767px) {
    .square_column2 {
        padding: 160px 0 0 0;
    }
    .square_column2:not(:last-child) {
        margin-bottom: 30px;
    }
}

.square_column2 .square_column2__bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
    position: absolute;
    top: 0;
    width: calc(50% - 15px);
}
@media screen and (max-width: 767px) {
    .square_column2 .square_column2__bg {
      height: 253px;
      width: calc(100% - 20px);
      max-width: 450px;
    }
}
@media screen and (max-width: 366px) {
    .square_column2 .square_column2__bg {
      height: 190px;
      width: calc(100% - 20px);
    }
}

.square_column2:nth-child(odd) .square_column2__bg {
    left: 0;
}

.square_column2:nth-child(even) .square_column2__bg {
    right: 0;
}

.square_column2 > .square_column2__inner {
  min-height: 350px;
  background-color: #F8F9F9;
  position: relative;
  padding: 60px 80px;
  position: relative;
  width: calc(50% + 70px);
  margin-left: calc(50% - 100px);
  box-sizing: border-box;
}
/* 背景色ありのスタイル */
.dnd-section-color--bg .square_column2 > .square_column2__inner {
  background-color: #ffffff;
}
@media screen and (max-width: 1049px) {
    .square_column2 > .square_column2__inner {
        padding: 50px;
        width: calc(50% + 70px);
        margin-left: calc(50% - 100px);
    }
}
@media screen and (max-width: 767px) {
    .square_column2 > .square_column2__inner {
        min-height: inherit;
        padding: 30px;
        width: calc(100% - 20px);
        margin-left: 20px;
    }
}

.square_column2:nth-child(even) .square_column2__inner {
  margin-left: 30px;
}
@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;
  }
}
/* ==========================================================================

    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 {
  overflow: hidden;
  max-width: 100%;
  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 {
  position: relative;
  min-height: 370px;
}
.case-introduction:not(:first-child) {
  margin-top: 55px;
}

/* PC時背景色 */
.case-introduction__columns__column--text__wrap {
  position: relative;
  padding: 30px 0 100px 0;
}
@media screen and (max-width: 1049px) {
  .case-introduction__columns__column--text__wrap {
    padding: 0;
  }
}
.case-introduction__columns__column--text__wrap:before {
  content: "";
  display: block;
  width: calc(100vw + 320px);
  height: 100%;
  position: absolute;
  top: 0;
  background-color: #F8F9F9;
  z-index: 0;
}
@media screen and (max-width: 1049px) {
  .case-introduction__columns__column--text__wrap:before {
    content: none;
  }
}
.case-introduction:nth-child(odd) .case-introduction__columns__column--text__wrap:before {
  left: -320px;
}
.case-introduction:nth-child(even) .case-introduction__columns__column--text__wrap:before {
  right: -320px;
}
/* 背景色ありのスタイル */
.dnd-section-color--bg .case-introduction__columns__column--text__wrap:before {
  background-color: #ffffff;
}


.columns.case-introduction__columns {
  position: relative;
  margin-left: 0;
  margin-right: 0;
}
.columns.case-introduction__columns .columns__column.case-introduction__columns__column--img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 0;
  width: calc(50% - 25px);
  min-height: 330px;
  position: absolute;
  z-index: 3;
  top: 0;
}
@media screen and (max-width: 1199px) {
  .columns.case-introduction__columns .columns__column.case-introduction__columns__column--img {
    min-height: 264px;
  }
}
.columns.case-introduction__columns .columns__column.case-introduction__columns__column--text {
  width: calc(50% + 100px);
  min-width: 500px;
  position: relative;
  z-index: 2;

}
.columns.case-introduction__columns .columns__column.case-introduction__columns__column--text .natural {
  margin-top: 35px;
}
.case-introduction:nth-child(odd) .columns.case-introduction__columns .columns__column.case-introduction__columns__column--text {
  margin-left: 50%;
  margin-right: -100px;
  padding: 20px 0 40px 25px;
}
.case-introduction:nth-child(odd) .columns.case-introduction__columns .columns__column.case-introduction__columns__column--img {
  left: 0;
}
.case-introduction:nth-child(even) .columns.case-introduction__columns .columns__column.case-introduction__columns__column--text {
  margin-left: -100px;
  padding: 20px 25px 40px 0;
}
.case-introduction:nth-child(even) .columns.case-introduction__columns .columns__column.case-introduction__columns__column--img {
  right: 0;
}

@media screen and (max-width: 1299px) {
  .columns.case-introduction__columns .columns__column.case-introduction__columns__column--text {
    width: 50%;
  }
  .case-introduction:nth-child(odd) .columns.case-introduction__columns .columns__column.case-introduction__columns__column--text {
    margin-right: 0;
  }
  .case-introduction:nth-child(even) .columns.case-introduction__columns .columns__column.case-introduction__columns__column--text {
    margin-left: 0;
  }
}
@media screen and (max-width: 1049px) {
  .case-introduction {
    min-height: 375px;
  }
  .case-introduction:before {
    background-color: #F8F9F9;
    content: "";
    width: calc(100% - 50px);
    height: calc(100% - 115px);
    position: absolute;
    bottom: 0;
    z-index: 0;
  }
  .case-introduction:nth-child(odd):before {
    right: 0;
  }
  .case-introduction:nth-child(even):before {
    left: 0;
  }
  /* 背景色ありのスタイル */
  .dnd-section-color--bg .case-introduction:before {
    background-color: #ffffff;
  }
  .columns.case-introduction__columns .columns__column.case-introduction__columns__column--img {
    width: calc(100% - 260px);
    min-height: 230px;
    max-width: 450px;
  }
  .case-introduction:nth-child(odd) .columns.case-introduction__columns .columns__column.case-introduction__columns__column--img {
    left: -50px;
  }
  .case-introduction:nth-child(even) .columns.case-introduction__columns .columns__column.case-introduction__columns__column--img {
    right: -50px;
  }
  .columns.case-introduction__columns .columns__column.case-introduction__columns__column--text .natural {
    margin-top: 40px;
  }
  .columns.case-introduction__columns .columns__column.case-introduction__columns__column--text {
    width: 100%;
  }
  .case-introduction:nth-child(odd) .columns.case-introduction__columns .columns__column.case-introduction__columns__column--text {
    width: 100%;
    margin-left: 0;
    padding: 255px 0 30px 30px;
  }
  .case-introduction:nth-child(even) .columns.case-introduction__columns .columns__column.case-introduction__columns__column--text {
    width: 100%;
    padding: 255px 30px 30px 0;
  }
}

@media screen and (max-width: 767px) {
  .case-introduction {
    min-height: inherit;
  }
  .case-introduction:before {
    min-height: inherit;
    height: calc(100% - 85px);
    width: calc(100% - 20px);
  }
  .columns.case-introduction__columns {
    padding-top: 0;
  }
  .columns.case-introduction__columns .columns__column.case-introduction__columns__column--img {
    top: inherit;
    min-height: 253px;
    width: calc(100% + 20px);
  }
  .case-introduction:nth-child(odd) .columns.case-introduction__columns .columns__column.case-introduction__columns__column--img {
    left: -20px;
  }
  .case-introduction:nth-child(even) .columns.case-introduction__columns .columns__column.case-introduction__columns__column--img {
    right: -20px;
  }
  .columns.case-introduction__columns .columns__column.case-introduction__columns__column--text {
    position: relative;
    width: 100%;
    min-width: auto;
    margin-top: 0;
  }
  .case-introduction:nth-child(odd) .columns.case-introduction__columns .columns__column.case-introduction__columns__column--text {
    margin-left: 0;
    padding: 270px 0 20px 20px;
  }
  .case-introduction:nth-child(even) .columns.case-introduction__columns .columns__column.case-introduction__columns__column--text {
    margin-left: 0;
    padding: 270px 20px 20px 0;
  }
  .columns.case-introduction__columns .columns__column.case-introduction__columns__column--text .heading-3:not(:last-child) {
    margin-top: 0;
    margin-bottom: 20px;
  }
  .columns.case-introduction__columns .columns__column.case-introduction__columns__column--text .natural {
    margin-top: 20px;
  }
}
@media screen and (max-width: 375px) {
  .columns.case-introduction__columns .columns__column.case-introduction__columns__column--img {
    min-height: 169px;
  }
  .case-introduction:nth-child(odd) .columns.case-introduction__columns .columns__column.case-introduction__columns__column--text {
    padding: 185px 0 20px 20px;
  }
  .case-introduction:nth-child(even) .columns.case-introduction__columns .columns__column.case-introduction__columns__column--text {
    padding: 185px 20px 20px 0;
  }
}
.case-introduction__columns__column.case-introduction__columns__column--text .paragraph {
  position: relative;
}
/* ==========================================================================

    case-detail

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

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

  サイト全体で共通の設定

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


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




/* カラースキーム
--------------------------------------*/
/*
  記事詳細の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_h3_p_widebg {
  margin-top: 55px;
  margin-bottom: 55px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .section-img_h3_p_widebg {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

/* 2：事例詳細変形カラム */

.case-detail {
  position: relative;
  min-height: 485px;
  padding-top: 50px;
}
@media screen and (max-width: 1049px) {
  .case-detail {
    padding-top: 30px;
    min-height: 375px;
  }
}
@media screen and (max-width: 767px) {
  .case-detail {
    min-height: inherit;
  }
}

.case-detail:not(:first-child) {
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .case-detail:not(:first-child) {
    margin-top: 40px;
  }
}

.case-detail::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: 0;
  width: calc(50% + 75px);
  height: calc(100% - 210px);
  min-height: 350px;
  background-color: #F8F9F9;
}
@media screen and (max-width: 1049px) {
  .case-detail::before {
    min-height: auto;
    height: 268px;
  }
}
@media screen and (max-width: 767px) {
  .case-detail::before {
    width: calc(100% - 20px);
    height: 157px;
    min-height: inherit;
  }
}
/* 背景色ありのスタイル */
.dnd-section-color--bg .case-detail::before {
  background-color: #ffffff;
}

.columns.case-detail__columns {
  position: relative;
}
@media screen and (max-width: 767px) {
  .columns.case-detail__columns {
    padding-top: 0;
  }
}

@media screen and (max-width: 541px) {
  .columns.case-detail__columns .heading-3:not(:last-child) {
    margin-top: 0;
  }
}

.columns.case-detail__columns .columns__column.case-detail__columns__column--img {
  position: absolute;
  top: 50px;
  z-index: 1;
  width: 50%;
  min-height: 380px;
  padding: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1049px) {
  .columns.case-detail__columns .columns__column.case-detail__columns__column--img {
    top: 30px;
    width: calc(50% + 30px);
    min-height: 315px;
  }
}
@media screen and (max-width: 767px) {
  .columns.case-detail__columns .columns__column.case-detail__columns__column--img {
    position: relative;
    top: inherit;
    width: 100%;
    max-width: 450px;
    height: 312px;
  }
}
@media screen and (max-width: 541px) {
  .columns.case-detail__columns .columns__column.case-detail__columns__column--img {
    width: calc(100% + 20px);
    height: 187px;
    min-height: inherit;
  }
}

.columns.case-detail__columns .columns__column.case-detail__columns__column--text {
  position: relative;
  z-index: 2;
  width: calc(50% + 25px);
  padding: 50px 0 50px 50px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .columns.case-detail__columns .columns__column.case-detail__columns__column--text {
    position: relative;
    width: 100%;
    margin-top: -30px;
    padding: 30px 10px 30px 30px;
  }
}
/* 背景色ありのスタイル */
.dnd-section-color--bg .columns.case-detail__columns .columns__column.case-detail__columns__column--text {
  background-color: #F8F9F9;
}

.case-detail:nth-child(odd)::before {
  left: 0;
}
.case-detail:nth-child(odd) .columns.case-detail__columns .columns__column.case-detail__columns__column--text {
  margin-left: calc(50% - 25px);
  padding: 50px 25px 130px 50px;
}
@media screen and (max-width: 1049px) {
  .case-detail:nth-child(odd) .columns.case-detail__columns .columns__column.case-detail__columns__column--text {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .case-detail:nth-child(odd) .columns.case-detail__columns .columns__column.case-detail__columns__column--text {
    margin-left: 0;
    padding: 30px 30px 25px 30px;
  }
}

.case-detail:nth-child(odd) .columns.case-detail__columns .columns__column.case-detail__columns__column--img {
  left: 25px;
}
@media screen and (max-width: 1049px) {
  .case-detail:nth-child(odd) .columns.case-detail__columns .columns__column.case-detail__columns__column--img {
    left: 5px;
  }
}
@media screen and (max-width: 541px) {
  .case-detail:nth-child(odd) .columns.case-detail__columns .columns__column.case-detail__columns__column--img {
    left: -50px;
  }
}

.case-detail:nth-child(even)::before {
  right: 0;
}
.case-detail:nth-child(even) .columns.case-detail__columns .columns__column.case-detail__columns__column--text {
  margin-left: 0;
  padding: 50px 50px 130px 25px;
}
@media screen and (max-width: 1049px) {
  .case-detail:nth-child(even) .columns.case-detail__columns .columns__column.case-detail__columns__column--text {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .case-detail:nth-child(even) .columns.case-detail__columns .columns__column.case-detail__columns__column--text {
    padding: 30px 30px 30px 25px;
  }
}

.case-detail:nth-child(even) .columns.case-detail__columns .columns__column.case-detail__columns__column--img {
  right: 25px;
}
@media screen and (max-width: 1049px) {
  .case-detail:nth-child(even) .columns.case-detail__columns .columns__column.case-detail__columns__column--img {
    right: 5px;
  }
}
@media screen and (max-width: 767px) {
  .case-detail:nth-child(even) .columns.case-detail__columns .columns__column.case-detail__columns__column--img {
    right: 0;
    margin-left: calc(100% - 450px)
  }
}
@media screen and (max-width: 541px) {
  .case-detail:nth-child(even) .columns.case-detail__columns .columns__column.case-detail__columns__column--img {
    right: -30px;
    margin-left: inherit;
  }
}
/* ==========================================================================

    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: #F8F9F9;
  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;
}
.h2_btn_img_widebg:nth-child(even):before {
  right: 0;
}

@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;
}
.h2_btn_img_widebg:nth-child(even) .view--is-desktop.figure {
  left: 0;
  margin-top: 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: 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: #F8F9F9;
}
@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;
  }
}
.section-h2_btn_img_bg .heading-2:before {
  margin-top: 0;
}
/* 背景色ありのスタイル */
.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;
}

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

.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;
}
/* ==========================================================================

    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(even) {
  background-color: #ffffff;
}
.slideimg:nth-child(odd) {
  background-color: #F8F9F9;
}
.slideimg .container {
  max-width: 1350px!important;
}

.slideimg:nth-child(odd) .columns .columns__column:nth-child(1) {
  order: 2;
}
.slideimg:nth-child(odd) .columns .columns__column:nth-child(2) {
  order: 1;
}
@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%;
  }
  .slideimg:nth-child(odd) .columns .columns__column:nth-child(1) {
    order: 1;
  }
  .slideimg:nth-child(odd) .columns .columns__column:nth-child(2) {
    margin-top: 30px;
    order: 2;
  }
  .slideimg:nth-child(even) .columns .columns__column:nth-child(2) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .slideimg .columns {
    max-width: 450px;
    margin: 0 auto;
  }
  .slideimg:nth-child(odd) .columns .columns__column:nth-child(2) {
    margin-top: 25px;
  }
  .slideimg:nth-child(even) .columns .columns__column:nth-child(2) {
    margin-top: 20px;
  }
}

@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-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;
  margin-bottom: 15px;
  overflow-wrap: break-word;
  counter-increment: number;
  color: #6C0000;
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: 7.0rem;
  line-height: 0.9;
  letter-spacing: .15em;
  position: relative;
  margin-top: -10px;
}
.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 {
    margin-bottom: 15px;
    font-size: 3.0rem;
  }
}
.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: #F8F9F9;
}

.slideimg .slideimg_slick.slick-dotted {
  padding-bottom: 40px;
  margin-bottom: 0;
}
.slideimg .slideimg_slick img {
  width: 100%
}
.slideimg .slick-prev,
.slideimg .slick-next {
  padding: 0px;
  font-size: 0px;
  line-height: 0;
  position: absolute;
  transform: none;
  cursor: pointer;
  border: 0px;
  outline: 0px;
  width: 40px;
  height: 40px;
  background-color: #0e0e0e;
  top: inherit;
  bottom: 0;
  background-position: center;
  background-size: 11px 5px;
  background-repeat: no-repeat;
  z-index: 5;
  transition: .5s;
}
.slideimg .slick-prev {
  left: 0;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212.171%22%20height%3D%224.846%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12.173%204.845H0L4.642-.001l.722.692-3.021%203.154h9.83Z%22%2F%3E%3C%2Fsvg%3E");
}
.slideimg .slick-next {
  right: inherit;
  left: 41px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212.171%22%20height%3D%224.846%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12.171%204.845H.002v-1h9.829L6.81.691l.722-.692Z%22%2F%3E%3C%2Fsvg%3E");
}

.slideimg .slick-prev:hover,
.slideimg .slick-next:hover {
  background-color: #6C0000;
}

.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;
  outline: 0;
  border-radius: 0;
  width: 3px;
  height: 3px;
  background-color: #0e0e0e;
}
.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: #0e0e0e;
}
@media screen and (max-width: 767px) {
  .slideimg .slideimg_slick.slick-dotted {
    padding-bottom: 30px;
  }
  .slideimg .slick-prev,
  .slideimg .slick-next {
    width: 30px;
    height: 30px;
  }
  .slideimg .slick-next {
    left: 31px;
  }
  .slideimg .slick-dots li {
    margin: 0 7.5px;
  }
}


.dnd-section-color--bg .slideimg:nth-child(even) {
  background-color: #F8F9F9;
}
.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: #F8F9F9;
}
.dnd-section-color--bg .slideimg:nth-child(even) .heading-2.heading-2--point .heading-2--point__decolation {
  color: #ffffff;
}
/* ==========================================================================

    ballon-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-talk {
    margin-top: 55px;
    margin-bottom: 55px;
    overflow: hidden;
}
@media screen and (max-width: 767px) {
  .section-talk {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.ballon-columns-wrapper:not(:last-child) {
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .ballon-columns-wrapper:not(:last-child) {
    margin-bottom: 40px;
  }
}

.ballon-columns {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .ballon-columns {
    display: block;
    padding-top: 30px;
  }
}

.ballon-columns::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: 0;
  width: calc(100% + 200px);
  height: 230px;
  background-color: #F8F9F9;
}
@media screen and (min-width: 1500px) {
  .ballon-columns::before {
    width: calc(100% + 500px);
  }
}
@media screen and (max-width: 1049px) {
  .ballon-columns::before {
    height: 210px;
  }
}
@media screen and (max-width: 767px) {
  .ballon-columns::before {
    right: inherit;
    left: -20px;
    width: calc(60% + 50px);
    height: 100%;
    max-height: 560px;
  }
}
@media screen and (max-width: 414px) {
  .ballon-columns::before {
    width: 100%;
  }
}
/* 背景色ありのスタイル */
.dnd-section-color--bg .ballon-columns::before {
  background-color: #fff;
}

.ballon-columns-wrapper:nth-child(odd) .ballon-columns::before {
  right: -200px;
}
@media screen and (min-width: 1500px) {
  .ballon-columns-wrapper:nth-child(odd) .ballon-columns::before {
    right: -500px;
  }
}

.ballon-columns-wrapper:nth-child(even) .ballon-columns::before {
  left: -200px;
}
@media screen and (min-width: 1500px) {
  .ballon-columns-wrapper:nth-child(even) .ballon-columns::before {
    left: -500px;
  }
}
@media screen and (max-width: 767px) {
  .ballon-columns-wrapper:nth-child(even) .ballon-columns::before {
    right: -20px;
    left: inherit;
  }
}

.ballon-columns__content {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: calc(50% - 25px);
  padding: 0 50px;
}
@media screen and (max-width: 767px) {
  .ballon-columns__content {
    width: calc(60% + 50px);
    padding: 0;
  }
}
@media screen and (max-width: 414px) {
  .ballon-columns__content {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .ballon-columns__content .natural {
    padding-right: 20px;
  }
}
.ballon-columns .natural p {
  color: #0e0e0e;
}

.ballon-columns-wrapper:nth-child(even) .ballon-columns__content {
  order: 2;
}
@media screen and (max-width: 767px) {
  .ballon-columns-wrapper:nth-child(even) .ballon-columns__content {
    margin-left: auto;
  }

  .ballon-columns-wrapper:nth-child(even) .ballon-columns__content .natural {
    padding-right: 0;
    padding-left: 30px;
  }
}

.ballon-columns__content figure:not(:last-child) {
  margin-bottom: 20px;
}

.ballon-columns__ballon {
  position: relative;
  box-sizing: border-box;
  width: calc(50% + 25px);
  padding: 40px;
  border: 1px solid #E0E0E0;
  border-radius: 5px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .ballon-columns__ballon {
    width: 100%;
    max-width: 600px;
    margin-top: 35px;
    padding: 20px;
  }
}

.ballon-columns-wrapper:nth-child(even) .ballon-columns__ballon {
  order: 1;
}

.ballon-columns__ballon::before {
  content: "";
  position: absolute;
  top: 42px;
  left: -17px;
  z-index: 1;
  width: 0;
  height: 0;
  border-color: transparent #ffffff transparent transparent;
  border-style: solid;
  border-width: 17px 17px 17px 0;
}
@media screen and (max-width: 767px) {
  .ballon-columns__ballon::before {
    top: -15px;
    left: 40px;
    border-color: transparent transparent #ffffff transparent;
    border-width: 0 15px 15px 15px;
  }
}

.ballon-columns-wrapper:nth-child(even) .ballon-columns__ballon::before {
  right: -17px;
  left: inherit;
  border-color: transparent transparent transparent #ffffff;
  border-width: 17px 0 17px 17px;
}
@media screen and (max-width: 767px) {
  .ballon-columns-wrapper:nth-child(even) .ballon-columns__ballon::before {
    top: -15px;
    right: 42px;
    border-color: transparent transparent #ffffff transparent;
    border-width: 0 15px 15px 15px;
  }
}

.ballon-columns__ballon::after {
  content: "";
  position: absolute;
  top: 40px;
  left: -19px;
  z-index: 0;
  width: 0;
  height: 0;
  border-color: transparent #E0E0E0 transparent transparent;
  border-style: solid;
  border-width: 19px 19px 19px 0;
}
@media screen and (max-width: 767px) {
  .ballon-columns__ballon::after {
    top: -17px;
    left: 38px;
    border-color: transparent transparent #E0E0E0 transparent;
    border-width: 0 17px 17px 17px;
  }
}

.ballon-columns-wrapper:nth-child(even) .ballon-columns__ballon::after {
  right: -19px;
  left: inherit;
  border-color: transparent transparent transparent #E0E0E0;
  border-width: 19px 0 19px 19px;
}
@media screen and (max-width: 767px) {
  .ballon-columns-wrapper:nth-child(even) .ballon-columns__ballon::after {
    top: -17px;
    right: 40px;
    border-color: transparent transparent #E0E0E0 transparent;
    border-width: 0 17px 17px 17px;
  }
}
/* ==========================================================================

    check-list-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-h2_check_img {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .section-h2_check_img {
    margin-top: 60px;
  }
}
.section-h2_check_img {
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .section-h2_check_img {
    margin-bottom: 40px;
  }
}

.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: 1.7rem;
  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: 1.5rem;
  }
}

.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: #0e0e0e;
}

.section-h2_check_img .heading-2 {
  padding-top: .25em;
}
@media screen and (max-width: 767px) {
  .section-h2_check_img .heading-2 {
    padding-top: 0;
  }
}
/* ==========================================================================

    illust_column

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

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

  サイト全体で共通の設定

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


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




/* カラースキーム
--------------------------------------*/
/*
  記事詳細の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_check_img {
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .section-h3_check_img {
    margin-top: 40px;
  }
}
.section-h3_check_img {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .section-h3_check_img {
    margin-bottom: 30px;
  }
}

.illust_column {
    position: relative;
}

.illust_column__image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: calc(50% - 50px);
}

.illust_column__image img {
    width: 100%;
}

@media screen and (max-width: 1049px) {
    .illust_column__image {
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 550px;
        position: static;
        transform: inherit;
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .illust_column__image {
        max-width: 450px;
    }
}

.illust_column__inner {
    box-sizing: border-box;
    padding: 0 50px 0 100px;
    position: relative;
    width: calc(50% + 50px);
}
@media screen and (max-width: 1049px) {
    .illust_column__inner {
        padding: 0 50px;
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .illust_column__inner {
        padding: 0 20px;
    }
}

@media screen and (max-width: 1049px) {
    .illust_column .natural {
        margin-bottom: 24px;
    }
}
@media screen and (max-width: 767px) {
    .illust_column .natural {
        margin-bottom: 15px;
    }
}
/* ==========================================================================

    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: #F8F9F9;
}
@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;
}
/* ==========================================================================

    link-arrow-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 の設定
---------------------------------------*/








.link-arrow-columns {
  display: flex;
}

.link-arrow-columns:not(:first-child),
.section-2column_ttl_bgimg {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .link-arrow-columns:not(:first-child),
  .section-2column_ttl_bgimg {
    margin-top: 60px;
  }
}

.link-arrow-columns:not(:last-child),
.section-2column_ttl_bgimg {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .link-arrow-columns:not(:last-child),
  .section-2column_ttl_bgimg {
    margin-bottom: 60px;
  }
}

.link-arrow-columns__item {
  width: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.link-arrow-columns__item a {
  display: block;
  box-sizing: border-box;
  position: relative;
  padding: 73px 100px;
  height: 100%;
  color: #ffffff;
}
@media screen and (max-width: 1049px) {
  .link-arrow-columns__item a {
    padding: 48px 20px;
  }
}

.link-arrow-columns__item a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0e0e0e;
  transition: .5s;
  transition-timing-function: ease-in;
  opacity: .3;
}

.link-arrow-columns__item a:hover:after {
  opacity: .5;
}

.link-arrow-columns__item__heading {
  box-sizing: border-box;
  display: block;
  position: relative;
  z-index: 1;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .link-arrow-columns__item__heading {
    font-size: 1.8rem;
  }
}

.link-arrow-columns__item__heading::after {
  content: attr(data-link-arrow-columns);
  display: block;
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .25em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .link-arrow-columns__item__heading::after {
    font-size: 1.1rem;
  }
}

.link-arrow-columns__item__button {
  display: block;
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  margin-top: 30px;
  margin-right: auto;
  margin-left: auto;
  border: solid 1px #ffffff;
  border-radius: 100%;
}
@media screen and (max-width: 767px) {
  .link-arrow-columns__item__button {
    width: 24px;
    height: 24px;
    margin-top: 20px;
  }
}

.link-arrow-columns__item__button__icon {
  position: absolute;
  top: calc(50% - 3px);
  left: 10px;
  width: 10px;
  height: 5px;
  transition: .5s;
}
@media screen and (max-width: 767px) {
  .link-arrow-columns__item__button__icon {
    top: calc(50% - 2px);
    left: 8px;
    width: 9px;
    height: 4px;
    transition: .5s;
  }
}
@media screen and (min-width: 1050px) {
  .link-arrow-columns__item a:hover .link-arrow-columns__item__button__icon {
    transform: translateX(8px);
  }
}

.link-arrow-columns__item__button__icon__path {
  fill: #ffffff;
}
/* ==========================================================================

    2column_ttl_bgimg_bgband

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

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

  サイト全体で共通の設定

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


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




/* カラースキーム
--------------------------------------*/
/*
  記事詳細の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_ttl_bgimg_bgband {
	position: relative;
  margin-top: 80px;
  margin-bottom: 80px;
	padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .section-2column_ttl_bgimg_bgband {
    margin-top: 60px;
    margin-bottom: 60px;
		padding-bottom: 50px;
  }
}
.section-2column_ttl_bgimg_bgband:before {
	content: "";
	display: block;
	width: 100%;
	height: 207px;
	background-color: #6C0000;
	position: absolute;
	bottom: 0;
	left: 0;
}

.bg-on-text-wrap--two {
	display: flex;
	justify-content: center;
}
@media screen and (max-width: 767px) {
	.bg-on-text-wrap--two:after {
	  height: 50px;
	}
}
.bg-on-text-wrap--two .bg-on-text {
	display: flex;
  justify-content: center;
  align-items: center;
	width: calc(50% - 1px);
	max-width: 524px;
	margin: 0;
  padding: 40px 0;
	min-height: 290px;
	margin-left: 100px;
}
.bg-on-text-wrap--two .bg-on-text:last-child {
	margin-left: 2px;
	margin-right: 100px;
}
.bg-on-text-wrap--two .bg-on-text:after {
	position: absolute;
	background-color: #0e0e0e;
	content: "";
	left: 15px;
	top: 15px;
	height: calc(100% - 30px);
	width: calc(100% - 30px);
	transition: .5s;
	opacity: 0;
}
.bg-on-text-wrap--two .bg-on-text__container {
	padding-left: 20px;
	padding-right: 20px;
}
.bg-on-text-wrap--two .bg-on-text__inner {
	padding-bottom: 0;
}
.bg-on-text-wrap--two .bg-on-text__inner .heading-2 {
	width: 100%;
  position: absolute;
	top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bg-on-text-wrap--two .bg-on-text__inner .heading-2:not(:last-child) {
  margin-bottom: 0;
}
.bg-on-text-wrap--two .hov-area {
	box-sizing: border-box;
	padding: 0 40px;
	position: relative;
	width: 100%;
	transition: .5s;
	opacity: 0;
	z-index: 2;
}
.bg-on-text-wrap--two .hov-area .bg-on-text__button {
	position: relative;
  bottom: auto;
  left: auto;
}
.bg-on-text-wrap--two .hov-area .bg-on-text__button .link-text__anchor:hover {
  color: #ffffff;
}
.bg-on-text-wrap--two .hov-area .bg-on-text__button .link-text__anchor:hover .link-text__anchor__icon__arrow {
  fill: #ffffff;
}
.bg-on-text-wrap--two .bg-on-text.bl-hover:after {
	opacity: .5;
}
.bg-on-text-wrap--two .bg-on-text.bl-hover .hov-area {
	opacity: 1;
}
@media screen and (max-width: 1049px) {
	.bg-on-text-wrap--two .bg-on-text {
		margin-left: 50px;
		padding: 0 20px;
		min-height: 260px;
	}
	.bg-on-text-wrap--two .bg-on-text:last-child {
		margin-right: 50px;
	}
	.bg-on-text-wrap--two .bg-on-text__container {
    padding-left: 0;
    padding-right: 0;
	}
	.bg-on-text-wrap--two .hov-area {
		display: none;
	}
	.bg-on-text-wrap--two .bg-on-text__inner .heading-2 {
		width: 100%;
	  position: relative;
		top: auto;
	  left: auto;
	  transform: translate(0, 0);
	}
}
@media screen and (max-width: 767px) {
	.bg-on-text-wrap--two .bg-on-text {
		margin-left: 0;
	}
	.bg-on-text-wrap--two .bg-on-text:last-child {
		margin-right: 0;
	}
}
/* ==========================================================================

    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 {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: 7.0rem;
  letter-spacing: .15em;
  color: #6C0000;
  margin-bottom: -35px;
  opacity: .04;
}
@media screen and (max-width: 767px) {
  .heading-2.heading-2--h3_img_alternate_bg .heading-2__deco {
    font-size: 3.0rem;
    margin-bottom: -13px;
  }
}

.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: #F8F9F9;
  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: #F8F9F9;
}

/* 背景色ありのスタイル */
.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: #F8F9F9;
  }
  .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;
}

.section-h3_img_alternate_bg .heading-2__deco__line {
  display: none;
}
/* サイト全体で共通の設定 */
/* --------------------------------------------------

  サイト全体で共通の設定

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


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




/* カラースキーム
--------------------------------------*/
/*
  記事詳細の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.columns--three */
@media screen and (min-width: 768px) {
  .section-3_4column_img_h_txt_btn .columns.columns--to-one.columns--three {
    margin-left: -15px;
    margin-right: -15px;
  }
  .section-3_4column_img_h_txt_btn .columns.columns--to-one.columns--three .columns__column {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .section-3_4column_img_h_txt_btn .columns--to-one.columns--three > .columns__column {
    padding-left: 0;
    padding-right: 0;
  }
}

.section-3_4column_img_h_txt_btn .figure img {
  vertical-align: bottom;
}

.section-3_4column_img_h_txt_btn .columns__column__inner.columns__column__inner--bg {
  padding: 30px;
  background-color: #F8F9F9;
}
@media screen and (max-width:1049px) {
  .section-3_4column_img_h_txt_btn .columns__column__inner.columns__column__inner--bg {
    padding: 25px 20px;
  }
}
/* 背景色ありのスタイル */
.dnd-section-color--bg .section-3_4column_img_h_txt_btn .columns__column__inner.columns__column__inner--bg {
  background-color: #fff;
}

.section-3_4column_img_h_txt_btn .heading-2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #0e0e0e;
}

.section-3_4column_img_h_txt_btn .heading-3 {
  padding-bottom: 0;
}

.section-3_4column_img_h_txt_btn .heading-3::before {
  position: initial;
  left: initial;
  bottom: initial;
  width: 0;
  height: 0;
  background-color: transparent;
}

.section-3_4column_img_h_txt_btn .paragraph {
  margin-bottom: 25px;
}
/* ==========================================================================

    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--three {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .relation-link .bg_img-columns--three {
    display: block;
  }
}

.relation-link .bg_img-columns--three .bg_img-columns__column {
  box-sizing: border-box;
  position: relative;
  width: 33.333%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .relation-link .bg_img-columns--three .bg_img-columns__column {
    width: 100%;
  }
}

.relation-link .bg_img-columns--three .bg_img-columns__column::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: #0e0e0e;
  transition: .5s;
  opacity: .3;
}

@media screen and (min-width: 1050px) {
  .relation-link .bg_img-columns--three .bg_img-columns__column.bl-hover::before {
    background-color: #0e0e0e;
    opacity: .6;
  }
}

.relation-link .bg_img-columns--three .bg_img-columns__column .heading-link a:before {
  border: 1px solid #ffffff;
}

.relation-link .bg_img-columns--three .bg_img-columns__column .heading-link a .heading-link__icon__path {
  fill: #ffffff;
}

.relation-link .bg_img-columns--three .bg_img-columns__column .heading-3 {
  position: relative;
}
@media screen and (max-width: 1049px) {
  .relation-link .bg_img-columns--three .bg_img-columns__column .heading-3:not(:last-child) {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .relation-link .bg_img-columns--three .bg_img-columns__column .heading-3:not(:last-child) {
    margin-bottom: 15px;
  }
}

.relation-link .bg_img-columns--three .bg_img-columns__column .heading-3::before {
  background-color: #ffffff;
}

.relation-link .bg_img-columns--three .bg_img-columns__column .heading-link__inner {
  color: #ffffff;
}

.relation-link .bg_img-columns--three .bg_img-columns__column .natural p,
.relation-link .bg_img-columns--three .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: 70px 80px;
}
@media screen and (max-width: 1049px) {
  .section-3column_h2_link_txt_bgimg .relation-link--2.bg_img-columns__column {
    padding: 70px 20px;
  }
}
@media screen and (max-width: 767px) {
  .section-3column_h2_link_txt_bgimg .relation-link--2.bg_img-columns__column {
    padding: 50px 35px;
  }
}
@media screen and (max-width: 414px) {
  .section-3column_h2_link_txt_bgimg .relation-link--2.bg_img-columns__column {
    padding: 50px 20px;
  }
}

.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: 14px;
  left: calc(50% - 3px);
}
@media screen and (max-width: 767px) {
  .section-3column_h2_link_txt_bgimg .relation-link--2 .heading-link .heading-link__icon {
    bottom: 12px;
    left: calc(50% - 3px);
  }
}

.section-3column_h2_link_txt_bgimg .heading-3::before {
  position: initial;
  left: initial;
  bottom: initial;
  width: 0;
  height: 0;
  background-color: transparent;
}

@media screen and (min-width: 1050px) {
  .section-3column_h2_link_txt_bgimg .bg_img-columns__column:hover .heading-link__icon {
    transform: translateX(9px);
  }
}
/* ==========================================================================

  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 {
  box-sizing: border-box;
  position: relative;
  z-index: 0;
  width: calc(33.3333% - 20px);
  padding: 30px 20px;
  border-radius: 3px;
  background: #F8F9F9;
  transition: .5s;
}
/* 背景色ありのスタイル */
.dnd-section-color--bg .icon-list__item {
  background: #fff;
}

@media screen and (min-width: 1050px) {
  .icon-list__item.bl-hover {
    background: #6C0000;
  }
}
@media screen and (max-width: 1049px) and (min-width: 768px) {
  .icon-list__item {
    width: calc(50% - 12.5px);
  }
  .icon-list__item:nth-child(odd) {
    margin-right: 25px;
  }
  .icon-list__item:nth-child(n+3) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .icon-list__item {
    width: 100%;
    padding: 25px 20px;
  }
  .icon-list__item:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1050px) {
  .icon-list__item:not(:nth-child(3n+3)) {
    margin-right: 30px;
  }
  .icon-list__item:nth-child(n+4) {
    margin-top: 30px;
  }
}

.icon-list__item__title {
  display: flex;
  align-items: center;
}
.icon-list__item__title:not(:last-child) {
  margin-bottom: 20px;
}

.icon-list__item__title__icon {
  width: 60px;
  margin-right: 15px;
}

.icon-list__item__title__icon__src {
  display: block;
  position: absolute;
  max-width: 60px;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: .5s;
}

.icon-list__item .icon-list__item__title__icon__src--hover {
  opacity: 0;
}

.icon-list__item.bl-hover .icon-list__item__title__icon__src {
  opacity: 0;
}

.icon-list__item.bl-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;
}
@media screen and (max-width: 767px) {
  .icon-list__item__title__text {
    font-size: 1.6rem;
  }
}

.icon-list__item__title__text a {
  color: #0e0e0e;
  text-decoration: none;
  transition: .5s;
}

.icon-list__item .paragraph {
  transition: .5s;
}

@media screen and (min-width: 1050px) {
  .icon-list__item.bl-hover .icon-list__item__title__text,
  .icon-list__item.bl-hover .icon-list__item__title__text a,
  .icon-list__item.bl-hover .paragraph {
    color: #ffffff;
  }
}
/* ==========================================================================

    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: 45px 30px 40px;
  background-color: #F8F9F9;
}
/* 背景色ありのスタイル */
.dnd-section-color--bg .point .point-columns .point-columns__column .point-columns__column__inner {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .point .point-columns .point-columns__column .point-columns__column__inner {
    padding: 30px 20px;
  }
}
.point .point-columns .point-columns__column .point-columns__column__inner::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: calc(50% - 20px);
  width: 40px;
  height: 7px;
  background-color: #ffffff;
}

/* 背景色ありのスタイル */
.dnd-section-color--bg .point .point-columns .point-columns__column .point-columns__column__inner:before {
  background-color: #F8F9F9;
}
@media screen and (max-width: 767px) {
  .point .point-columns .point-columns__column .point-columns__column__inner:before {
    height: 5px;
  }
}

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

.point .heading-3.heading-3--point .heading-3--point__decolation {
  display: block;
  position: relative;
  top: 0;
  width: auto;
  margin-bottom: 10px;
  padding-bottom: 10px;
  color: #0e0e0e;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  letter-spacing: .25em;
  line-height: 1.5;
}
.point .heading-3.heading-3--point .heading-3--point__decolation::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: calc(50% - 5px);
  width: 10px;
  height: 2px;
  background-color: #820000;
}
.point .heading-3.heading-3--point .heading-3--point__decolation::after {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
}
@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;
  }
}
/* ==========================================================================

    reason-column

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

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

  サイト全体で共通の設定

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


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




/* カラースキーム
--------------------------------------*/
/*
  記事詳細の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_bg {
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  .section-3column_h2_link_bg {
    margin-top: 30px;
  }
}
.section-3column_h2_link_bg {
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .section-3column_h2_link_bg {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .reason-column .columns {
    max-width: 500px;
  }
  .reason-column .columns--three>.columns__column:not(:first-child) {
    margin-top: 40px;
  }
}
.reason-column .heading-3:not(:first-child) {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .reason-column .heading-3:not(:first-child) {
    margin-top: 20px;
  }
}

.relation-columns {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px;
}
.relation-columns .relation-columns__column {
  box-sizing: border-box;
  width: 33.333%;
  padding-right: 20px;
  padding-left: 20px;
}
.relation-columns .relation-columns__column:nth-child(n+4) {
  margin-top: 30px;
}
.relation-columns .heading-link a {
  padding-top: 5px;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.5;
}
.relation-columns .heading-link a:hover,
.relation-columns .heading-link a:hover:before {
  color: #6C0000;
}
@media screen and (max-width: 767px) {
  .relation-columns {
    margin-right: 0;
    margin-left: 0;
  }
  .relation-columns .relation-columns__column {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
  .relation-columns .relation-columns__column:nth-child(n+4) {
    margin-top: 20px;
  }
  .relation-columns .relation-columns__column:not(:first-child) {
    margin-top: 20px;
  }
  .relation-columns .heading-link a {
    padding-top: 4px;
    padding-left: 35px;
    font-size: 1.5rem;
  }
}

.section-3column_h2_link_bg .heading-3::before {
  position: initial;
  left: initial;
  bottom: initial;
  width: 0;
  height: 0;
  background-color: transparent;
}
/* ==========================================================================

    point-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-point {
  margin-top: 45px;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .section-point {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.point-list {
  counter-reset: number;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1049px) {
  .point-list {
    display: block;
  }
}

.point-list__item {
  box-sizing: border-box;
  position: relative;
  width: calc(33.3333% - 33.333px);
  padding: 55px 30px 40px;
  border: 1px solid #E0E0E0;
}
@media screen and (max-width: 1049px) {
  .point-list__item {
    width: 100%;
  }
  .point-list__item:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .point-list__item {
    padding: 45px 20px 30px 20px;
  }
  .point-list__item:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1050px) {
  .point-list__item:not(:nth-child(3n+3)) {
    margin-right: 50px;
  }
  .point-list__item:nth-child(n+4) {
    margin-top: 40px;
  }
}

.point-list__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 107px;
  height: 3px;
  background-color: #820000;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .point-list__item::before {
    width: 86px;
  }
}

.point-list__item .point-list__item__decolation {
  content: attr(data-english);
  position: absolute;
  top: -1px;
  left: 50%;
  padding-top: 18px;
  padding-right: 25px;
  color: #820000;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .35em;
  line-height: 1;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .point-list__item .point-list__item__decolation {
    padding-top: 10px;
    padding-right: 20px;
    padding-left: 10px;
    font-size: 1.1rem;
  }
}

.point-list__item:nth-child(n+10) .point-list__item__decolation {
  padding-right: 50px;
}
@media screen and (max-width: 767px) {
  .point-list__item:nth-child(n+10) .point-list__item__decolation {
    padding-right: 35px;
  }
}

.point-list__item .point-list__item__decolation::after {
  content: counter(number);
  counter-increment: number;
  position: absolute;
  top: 13px;
  right: 0;
  color: #820000;
  font-family: 'Poppins', sans-serif;
  font-size: 3.0rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .point-list__item .point-list__item__decolation::after {
    font-size: 2.0rem;
    top: 8px;
  }
}

.point-list__item .natural:not(:first-child) {
  margin-top: 0;
}

/* paragraph */
.section-point .paragraph:not(:first-child) {
  margin-top: 0;
}
.section-point .paragraph:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .section-point .paragraph:not(:last-child) {
    margin-bottom: 20px;
  }
}

/* figure */
.section-point .figure.point-list__figure {
  max-width: 350px;
  margin: 0 auto 15px;
}
@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: #E0E0E0
}
@media screen and (max-width: 767px) {
  .history::before {
    left: 6.5px;
  }
}

.heading-3-history {
  position: relative;
  color: #0e0e0e;
  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: #820000;
}
@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%;
}
@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: #F8F9F9;
}
.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: #E0E0E0 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 #E0E0E0;
    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: 27px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  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: -3px;
  transform: translateY(-50%);
}
.step-list__item:first-child .step-list__item__decoration:before {
  right: 0;
}

.step-list__item .step-list__item__decoration::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 22px;
  background-color: #6C0000;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .step-list__item .step-list__item__decoration::after {
    height: 23px;
  }
}
@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: #0e0e0e;
}

.step-list__item__title {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing:  .1em;
}
@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: .1em;
}
@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;
  }
}
/* ==========================================================================

    sns button

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

/* sns official button ****************/
.sns-button__text {
  position: relative;
  margin-top: 60px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: .1em;
}
@media screen and (min-width: 768px) {
  .sns-button__text {
    margin-top: 80px;
  }
}

.sns-button__text:before,
.sns-button__text:after {
  position: relative;
  display: inline-block;
  content: "";
  background-color: #0e0e0e;
  width: 1px;
  height: 17px;
  margin: 0 12px;
  vertical-align: middle;
}
 
.sns-button__text:before {
  transform: rotate(-28deg);
}
 
.sns-button__text:after {
  transform: rotate(28deg);
}

.sns-button__official {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  margin-top: 17px;
  margin-right: -12px;
  margin-left: -12px;
}

.sns-button__official__item {
  padding-left: 12px;
  padding-right: 12px;
  display: inline-block;
}

@media screen and (min-width: 1050px) {
  .sns-button__official__item__anchor {
    transition: opacity .3s;
  }
  .sns-button__official__item__anchor:hover {
    opacity: .6;
  }
}

/* sns share button ****************/
.sns-button__share {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .sns-button__share {
    margin-top: 60px;
  }
}

.sns-button__share__item {
  margin-left: 20px;
}
.sns-button__share__item:first-of-type {
  margin-left: 0;
}

.sns-button__share__item__anchor {
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0 8px;
  border-radius: 3px;
  border: 1px solid #0e0e0e;
  font-size: 1.3rem;
  transition: opacity .3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.sns-button__share__item__anchor::before {
  content: '';
  display: inline-block;
  position: relative;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #0e0e0e;
}
.sns-button__share__item__anchor:hover {
  opacity: .6;
}

.sns-button__share__item__anchor--facebook::before {
  width: 18px;
  height: 18px;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"><g transform="translate(0 -0.002)"><g transform="translate(0 0.002)"><path class="sns-button__official__item__icon__path" d="M22,11A11,11,0,1,0,9.281,21.868V14.182H6.488V11H9.281V8.579c0-2.757,1.642-4.28,4.155-4.28a16.915,16.915,0,0,1,2.462.215V7.221H14.511a1.59,1.59,0,0,0-1.793,1.718V11H15.77l-.488,3.18H12.719v7.687A11,11,0,0,0,22,11" transform="translate(0 -0.002)"></path></g></g></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"><g transform="translate(0 -0.002)"><g transform="translate(0 0.002)"><path class="sns-button__official__item__icon__path" d="M22,11A11,11,0,1,0,9.281,21.868V14.182H6.488V11H9.281V8.579c0-2.757,1.642-4.28,4.155-4.28a16.915,16.915,0,0,1,2.462.215V7.221H14.511a1.59,1.59,0,0,0-1.793,1.718V11H15.77l-.488,3.18H12.719v7.687A11,11,0,0,0,22,11" transform="translate(0 -0.002)"></path></g></g></svg>');
}
.sns-button__share__item__anchor--twitter::before {
  width: 17px;
  height: 14px;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 246.14 200"><path class="sns-button__official__item__icon__path" d="M220.94 49.79c.15 2.17.15 4.34.15 6.53 0 66.73-50.8 143.69-143.69 143.69v-.04c-27.44.04-54.31-7.82-77.41-22.64 3.99.48 8 .72 12.02.73 22.74.02 44.83-7.61 62.72-21.66-21.61-.41-40.56-14.5-47.18-35.07a50.338 50.338 0 0 0 22.8-.87C26.79 115.7 9.84 95 9.84 70.96v-.64a50.18 50.18 0 0 0 22.92 6.32C10.57 61.81 3.73 32.29 17.13 9.21a143.333 143.333 0 0 0 104.08 52.76 50.532 50.532 0 0 1 14.61-48.25c20.34-19.12 52.33-18.14 71.45 2.19 11.31-2.23 22.15-6.38 32.07-12.26a50.69 50.69 0 0 1-22.2 27.93c10.01-1.18 19.79-3.86 29-7.95a102.8 102.8 0 0 1-25.19 26.14Z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 246.14 200"><path class="sns-button__official__item__icon__path" d="M220.94 49.79c.15 2.17.15 4.34.15 6.53 0 66.73-50.8 143.69-143.69 143.69v-.04c-27.44.04-54.31-7.82-77.41-22.64 3.99.48 8 .72 12.02.73 22.74.02 44.83-7.61 62.72-21.66-21.61-.41-40.56-14.5-47.18-35.07a50.338 50.338 0 0 0 22.8-.87C26.79 115.7 9.84 95 9.84 70.96v-.64a50.18 50.18 0 0 0 22.92 6.32C10.57 61.81 3.73 32.29 17.13 9.21a143.333 143.333 0 0 0 104.08 52.76 50.532 50.532 0 0 1 14.61-48.25c20.34-19.12 52.33-18.14 71.45 2.19 11.31-2.23 22.15-6.38 32.07-12.26a50.69 50.69 0 0 1-22.2 27.93c10.01-1.18 19.79-3.86 29-7.95a102.8 102.8 0 0 1-25.19 26.14Z"/></svg>');
}

.sns-button__share__item__anchor__text {
  margin-left: 8px;
}

/* blog */
@charset "UTF-8";

/* blog post author */

.blog-article__body__author {
  margin-top: 45px;
  margin-bottom: 45px;
  padding-bottom: 25px;
  border-bottom: 1px solid #E0E0E0;
}
@media screen and (min-width: 768px) {
  .blog-article__body__author {
    margin-top: 60px;
    margin-bottom: 60px;
    padding-bottom: 35px;
  }
}

.blog-article__body__author__heading.heading-2 {
  margin-bottom: 25px;
  padding: 11px 20px;
  border-bottom: 1px solid #E0E0E0;
  background-color: #F8F9F9;
  color: #0e0e0e;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
}
@media screen and (min-width: 768px) {
  .blog-article__body__author__heading.heading-2 {
    margin-bottom: 35px;
    padding: 13px 23px;
    font-size: 2.0rem;
  }
}

.blog-article__body__author__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.blog-article__body__author__image {
  width: 100px;
  height: 100px;
  margin-right: 20px;
}
.blog-article__body__author__image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .blog-article__body__author__image {
    width: 210px;
    height: 210px;
    margin-right: 40px;
  }
  .blog-article__body__author__image img {
    width: 210px;
    height: 210px;
  }
}

.blog-article__body__author__content__name.heading-3 {
  margin-bottom: 10px;
  padding-bottom: 0;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .blog-article__body__author__content__name.heading-3 {
    margin-bottom: 14px;
    font-size: 2.5rem;
  }
}

.blog-article__body__author__content__name.heading-3::before {
  position: initial;
  left: initial;
  bottom: initial;
  width: 0;
  height: 0;
  background-color: transparent;
}

@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 {
  color: #5B5B5B;
  font-weight: 400;
}
@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 #E0E0E0;
  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: 2px solid #6C0000;
  border-radius: 0 0 5px 5px;
  background-color: #F8F9F9;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .25em;
  text-align: center;
  transform: translateX(-50%);
}
@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;
  color: #5B5B5B;
  font-size: 1.5rem;
  letter-spacing: .1em;
  line-height: 2;
  text-indent: -2.3em;
}
.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;
  font-family: 'Roboto', sans-serif;
}

.blog-article__body__index__body__list__item a {
  text-decoration: underline #6C0000;
  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: #6C0000;
  }
}
@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--center {
  justify-content: center;
}

.blog-article__body__share-button__item {
  margin-left: 20px;
}
.blog-article__body__share-button__item:first-of-type {
  margin-left: 0;
}

.blog-article__body__share-button__item__anchor {
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0 8px;
  border-radius: 3px;
  border: 1px solid #0e0e0e;
  font-size: 1.3rem;
  transition: opacity .3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.blog-article__body__share-button__item__anchor::before {
  content: '';
  display: inline-block;
  position: relative;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #0e0e0e;
}
.blog-article__body__share-button__item__anchor:hover {
  opacity: .6;
}

.blog-article__body__share-button__item__anchor--facebook::before {
  width: 18px;
  height: 18px;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"><g transform="translate(0 -0.002)"><g transform="translate(0 0.002)"><path class="footer__above__sns__nav__list__item__icon__path" d="M22,11A11,11,0,1,0,9.281,21.868V14.182H6.488V11H9.281V8.579c0-2.757,1.642-4.28,4.155-4.28a16.915,16.915,0,0,1,2.462.215V7.221H14.511a1.59,1.59,0,0,0-1.793,1.718V11H15.77l-.488,3.18H12.719v7.687A11,11,0,0,0,22,11" transform="translate(0 -0.002)"></path></g></g></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"><g transform="translate(0 -0.002)"><g transform="translate(0 0.002)"><path class="footer__above__sns__nav__list__item__icon__path" d="M22,11A11,11,0,1,0,9.281,21.868V14.182H6.488V11H9.281V8.579c0-2.757,1.642-4.28,4.155-4.28a16.915,16.915,0,0,1,2.462.215V7.221H14.511a1.59,1.59,0,0,0-1.793,1.718V11H15.77l-.488,3.18H12.719v7.687A11,11,0,0,0,22,11" transform="translate(0 -0.002)"></path></g></g></svg>');
}
.blog-article__body__share-button__item__anchor--twitter::before {
  width: 17px;
  height: 14px;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 246.14 200"><path class="footer__above__sns__nav__list__item__icon__path" d="M220.94 49.79c.15 2.17.15 4.34.15 6.53 0 66.73-50.8 143.69-143.69 143.69v-.04c-27.44.04-54.31-7.82-77.41-22.64 3.99.48 8 .72 12.02.73 22.74.02 44.83-7.61 62.72-21.66-21.61-.41-40.56-14.5-47.18-35.07a50.338 50.338 0 0 0 22.8-.87C26.79 115.7 9.84 95 9.84 70.96v-.64a50.18 50.18 0 0 0 22.92 6.32C10.57 61.81 3.73 32.29 17.13 9.21a143.333 143.333 0 0 0 104.08 52.76 50.532 50.532 0 0 1 14.61-48.25c20.34-19.12 52.33-18.14 71.45 2.19 11.31-2.23 22.15-6.38 32.07-12.26a50.69 50.69 0 0 1-22.2 27.93c10.01-1.18 19.79-3.86 29-7.95a102.8 102.8 0 0 1-25.19 26.14Z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 246.14 200"><path class="footer__above__sns__nav__list__item__icon__path" d="M220.94 49.79c.15 2.17.15 4.34.15 6.53 0 66.73-50.8 143.69-143.69 143.69v-.04c-27.44.04-54.31-7.82-77.41-22.64 3.99.48 8 .72 12.02.73 22.74.02 44.83-7.61 62.72-21.66-21.61-.41-40.56-14.5-47.18-35.07a50.338 50.338 0 0 0 22.8-.87C26.79 115.7 9.84 95 9.84 70.96v-.64a50.18 50.18 0 0 0 22.92 6.32C10.57 61.81 3.73 32.29 17.13 9.21a143.333 143.333 0 0 0 104.08 52.76 50.532 50.532 0 0 1 14.61-48.25c20.34-19.12 52.33-18.14 71.45 2.19 11.31-2.23 22.15-6.38 32.07-12.26a50.69 50.69 0 0 1-22.2 27.93c10.01-1.18 19.79-3.86 29-7.95a102.8 102.8 0 0 1-25.19 26.14Z"/></svg>');
}

.blog-article__body__share-button__item__anchor__text {
  margin-left: 8px;
}
@charset "UTF-8";

/* blog post related articles */

.blog-article__body__related-articles {
  margin-top: 55px;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .blog-article__body__related-articles {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

@media screen and (min-width: 768px) {
  .blog-article__body__related-articles__list {
    display: flex;
    justify-content: flex-start;
  }
}

.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: 31%;
    margin-top: 0;
  }
  .blog-article__body__related-articles__list__item:not(:first-of-type) {
    margin-left: 3.5%;
  }
}

.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: 11px;
  margin-bottom: 6px;
  color: #5B5B5B;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .25em;
}
@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;
}
@media screen and (min-width: 768px) {
  .blog-article__body__related-articles__list__item__title {
    font-size: 1.8rem;
  }
}
@charset "UTF-8";

/* seminar program */

.seminar-program-content .seminar-program-content__seminar-heading {
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .seminar-program-content .seminar-program-content__seminar-heading {
    margin-bottom: 40px;
  }
}

.seminar-program-content .seminar-program-content__seminar-name {
  margin-bottom: 20px;
  font-size: 1.6rem;
  line-height: 1.5
}
@media screen and (min-width: 768px) {
  .seminar-program-content .seminar-program-content__seminar-name {
    margin-bottom: 25px;
    font-size: 2.2rem;
  }
}

.seminar-program-content .seminar-program-content__seminar-date {
  margin: 0;
  color: #0e0e0e;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .seminar-program-content .seminar-program-content__seminar-date {
    font-size: 1.8rem;
  }
}
@charset "UTF-8";

/* seminar speaker */

.seminar-speaker {
  margin-top: 45px;
  margin-bottom: 25px;
  padding-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .seminar-speaker {
    margin-top: 60px;
    margin-bottom: 30px;
    padding-bottom: 35px;
  }
}
@media screen and (min-width: 768px) {
  .seminar-speaker__columns {
    display: flex;
    margin-left: -20px;
    margin-right: -20px;
  }
}
.seminar-speaker__columns__column {
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .seminar-speaker__columns__column {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.seminar-speaker__columns__column.seminar-speaker__columns__column--text {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .seminar-speaker__columns__column.seminar-speaker__columns__column--text {
    margin-top: 0;
  }
}

.seminar-speaker__columns__column__avatar {
  position: relative;
  width: 150px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .seminar-speaker__columns__column__avatar {
    width: 210px;
  }
}
.seminar-speaker__columns__column__avatar:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.seminar-speaker__columns__column__name {
  font-size: 1.8rem;
  font-weight: 400;;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .seminar-speaker__columns__column__name {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1050px) {
  .seminar-speaker__columns__column__name__anchor:hover {
    text-decoration: underline;
    text-underline-offset: 0.3em;
    text-decoration-thickness: 1px;
  }
}

.seminar-speaker__columns__column__title {
  margin-top: 10px;
  color: #5B5B5B;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .seminar-speaker__columns__column__title {
    font-size: 1.7rem;
  }
}

.seminar-speaker__columns__column__bio {
  margin-top: 5px;
  color: #5B5B5B;
  font-size: 1.3rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .seminar-speaker__columns__column__bio {
    margin-top: 15px;
    font-size: 1.5rem;
  }
}
.seminar-speaker .seminar-speaker__columns {
  display: flex;
  margin-top: 30px;
}
@media only screen and (min-width: 768px) {
  .seminar-speaker .seminar-speaker__columns {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .seminar-speaker .seminar-speaker__columns__column__avatar {
    position: relative;
    width: 100px;
    margin-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .seminar-speaker .seminar-speaker__columns__column.seminar-speaker__columns__column--text {
    margin-top: 0;
    width: calc(100% - 120px);
  }
}
@charset "UTF-8";

/* seminar description */

.seminar-description {
  margin-top: 50px;
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) {
  .seminar-description {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
.seminar-description__list {
  margin-top: 30px;
}
@media only screen and (min-width: 768px) {
  .seminar-description__list {
    margin-top: 40px;
  }
}
.seminar-description__list table {
  border: 1px solid #E0E0E0!important;
}

.seminar-description__list table tr {
  height: auto!important;
}
.seminar-description__list table tr:not(:last-child) {
  border-bottom: 1px solid #E0E0E0;
}

.seminar-description__list table td {
  vertical-align: middle;
  padding: 14px 20px!important;
  height: auto!important;
}
@media screen and (max-width: 767px) {
  .seminar-description__list table td {
    padding: 14px 15px!important;
  }
}

.seminar-description__list table td:nth-child(1) {
  width: 20%!important;
  background-color: #F8F9F9;
}
.seminar-description__list table td:nth-child(2) {
  width: 80%!important;
}
@media screen and (max-width: 767px) {
  .seminar-description__list table td:nth-child(1) {
    width: 30%!important;
  }
  .seminar-description__list table td:nth-child(2) {
    width: 70%!important;
  }
}

.seminar-description__list table td:not(:last-child) {
  border-right: 1px solid #E0E0E0;
}

.seminar-description__list table td,
.seminar-description__list table td p {
  color: #5B5B5B;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: .1em;
}
@media screen and (max-width: 767px) {
  .seminar-description__list table td,
  .seminar-description__list table td p {
    font-size: 1.3rem;
  }
}

.seminar-description__list table td ul {
  padding: 4px;
}
.seminar-description__list table td ul li {
  margin-bottom: calc(20px - 0.5em);
  margin-top: calc(20px - 0.5em);
  position: relative;
}
.seminar-description__list table td ul li::before {
  background-color: #d1d7dd;
  content: "";
  display: block;
  height: 5px;
  left: -15px;
  position: absolute;
  top: .6em;
  width: 5px;
}

.seminar-description__list table td a {
  display: inline;
  position: relative;
  border-bottom: 1px solid #5B5B5B;
  color: #5B5B5B;
  text-decoration: none;
  word-break: break-all;
  transition: color .5s;
}
@media screen and (min-width: 1050px) {
  .seminar-description__list table td a:hover {
    border-color: #E0E0E0;
    color: #E0E0E0;
  }
}
.seminar-description__list table td a[target=_blank] {
  position: relative;
  display: inline;
  padding-left: 16px;
  border-bottom: 1px solid #2a2828;
  transition: color .5s;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .seminar-description__list table td a[target=_blank] {
    padding-left: 14px;
  }
}
.seminar-description__list table td a[target=_blank]::before {
  position: absolute;
  left: 2px;
  top: 8px;
  height: 12px;
  width: 12px;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMS45NjkiIGhlaWdodD0iMTEuOTY5Ij48cGF0aCBkYXRhLW5hbWU9IuODkeOCuSA2NDIxIiBkPSJNMTEuNDQgMEg1LjA5OGEuNTI4LjUyOCAwIDAgMC0uNTI4LjUyOXYxLjYzOEguN2EuNy43IDAgMCAwLS43Ljd2OC40YS43LjcgMCAwIDAgLjcuN2g4LjRhLjcuNyAwIDAgMCAuNy0uN1Y3LjRoMS42MzhhLjUyOC41MjggMCAwIDAgLjUzMS0uNTI5Vi41MjlBLjUyOS41MjkgMCAwIDAgMTEuNDQgMFpNOC44MDIgMTAuOTY5aC03Ljh2LTcuOGgzLjU3djMuN2EuNTI3LjUyNyAwIDAgMCAuNTI4LjUyOGgzLjdaTTEwLjk2OSA2LjRoLTUuNFYxaDUuNFoiIGZpbGw9IiM0MTQxNDEiLz48L3N2Zz4=) no-repeat 50%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
}
@media screen and (max-width: 767px) {
  .seminar-description__list table td a[target=_blank]::before {
    top: 6px;
    height: 10px;
    width: 10px;
  }
}
.seminar-description__list table td a[target=_blank]:hover {
  border-color: #d1d7dd;
  color: #d1d7dd;
}

.seminar-description__list table td strong {
  font-weight: 700;
}
@charset "UTF-8";

/* seminar button */

.seminar-entry-button {
  margin-top: 40px;
  margin-bottom: 55px;
}
@media only screen and (min-width: 1050px) {
  .seminar-entry-button {
    margin-top: 60px;
    margin-bottom: 70px;
  }
}

.blog-article-seminar .seminar-entry-button .entry-button a {
  padding: 11px 20px;
  max-width: 450px;
  font-size: 1.7rem;
}
@media only screen and (min-width: 768px) {
  .blog-article-seminar .seminar-entry-button .entry-button a {
    font-size: 1.8rem;
  }
}

.blog-article-seminar .seminar-entry-button--end {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 2;
}
@media only screen and (min-width: 768px) {
  .blog-article-seminar .seminar-entry-button--end {
    font-size: 1.8rem;
  }
}

.blog-article-seminar .seminar-entry-button .entry-button a::after {
	content: attr(data-entry);
	display: block;
	width: 100%;
	font-family: 'Poppins', sans-serif;
	font-size: 1.2rem;
	font-weight: 400;
	letter-spacing: .25em;
	line-height: 2;
  opacity: .5;
}
@media screen and (max-width: 767px) {
	.blog-article-seminar .seminar-entry-button .entry-button a::after {
		font-size: 1.1rem;
	}
}

.blog-article-seminar .seminar-entry-button--end .entry-button--end {
  position: relative;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  padding: 11px 20px;
  box-sizing: border-box;
  background-color: #E0E0E0;
  color: #0e0e0e;
  font-size: 1.7rem;
}
@media screen and (min-width: 768px) {
  .blog-article-seminar .seminar-entry-button--end .entry-button--end {
    font-size: 1.8rem;
  }
}

.blog-article-seminar .seminar-entry-button--end .entry-button--end::after {
	content: attr(data-entry);
	display: block;
	width: 100%;
	font-family: 'Poppins', sans-serif;
	font-size: 1.2rem;
	font-weight: 400;
	letter-spacing: .25em;
	line-height: 2;
  opacity: .5;
}
@media screen and (max-width: 767px) {
	.blog-article-seminar .seminar-entry-button--end .entry-button--end::after {
		font-size: 1.1rem;
	}
}
@charset "UTF-8";

/* seminar contact */

.seminar-program-contact {
  padding: 25px;
  border: solid 1px #E0E0E0;
}
@media only screen and (min-width: 768px) {
  .seminar-program-contact {
    padding: 45px 50px;
  } 
}

.seminar-program-contact .seminar-program-contact__heading {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  background-color: transparent;
  border-left: none;
  font-size: 1.7rem;
}
@media only screen and (min-width: 768px) {
  .seminar-program-contact .seminar-program-contact__heading {
    font-size: 2.0rem;
  }
}

.seminar-program-contact .natural {
  margin-top: 18px;
}
@media only screen and (min-width: 768px) {
  .seminar-program-contact .natural {
    margin-top: 23px;
  }
}
@charset "UTF-8";

/* seminar problem awareness */

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

  サイト全体で共通の設定

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


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




/* カラースキーム
--------------------------------------*/
/*
  記事詳細の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 の設定
---------------------------------------*/


.seminar-problem-awareness {
  position: relative;
  z-index: 0;
  margin-top: 40px;
  margin-bottom: 50px;
  border: solid 1px #E0E0E0;
  padding: 25px 20px;
}
@media screen and (min-width: 768px) {
  .seminar-problem-awareness {
    margin-top: 50px;
    margin-bottom: 60px;
    padding: 48px;
  }
}

.seminar-problem-awareness__title {
  margin-bottom: 12px;
  box-sizing: border-box;
  color: #0e0e0e;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .1em;
}
@media screen and (min-width: 768px) {
  .seminar-problem-awareness__title {
    margin-bottom: 30px;
    font-size: 2.0rem;
  }
}

.seminar-problem-awareness__body__list {
  counter-reset: number 0;
}

.seminar-problem-awareness__body__list__item {
  position: relative;
  margin-top: calc( 18px - (((1em * 2) - 1em) / 2) );
  padding-left: 1em;
  color: #5B5B5B;
  font-size: 1.5rem;
  letter-spacing: .1em;
  line-height: 2;
}
.seminar-problem-awareness__body__list__item:first-of-type {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .seminar-problem-awareness__body__list__item {
    margin-top: calc( 22px - (((1em * 2) - 1em) / 2) );
    font-size: 1.6rem;
  }
}

.seminar-problem-awareness__body__list__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 13px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #6C0000;
}
@media all and (-ms-high-contrast:none){
  .seminar-problem-awareness__body__list__item::before {
    top: 9px;
  }
}

/* common */
@charset "UTF-8";

/* hero */

.hero__image {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 250px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .hero__image {
    min-height: 400px;
  }
}

.hero__image::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0e0e0e;
  opacity: .3;
}

.hero__image > .container {
  z-index: 1;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .hero__image > .container {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.hero-minimal {
  position: relative;
}

.hero-minimal::after {
  content: none;
}

.hero-minimal__heading {
  padding-top: 55px;
  padding-bottom: 74px;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hero-minimal__heading {
    padding-top: 74px;
    padding-bottom: 92px;
    font-size: 3.0rem;
  }
}
@media screen and (min-width: 1050px) {
  .hero-minimal__heading {
    padding-bottom: 80px;
    font-size: 4.0rem;
  }
}

.hero-minimal__heading::before {
  content: attr(data-decoration-text);
  display: block;
  margin-bottom: 13px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .25em;
  line-height: 1.2;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .hero-minimal__heading::before {
    margin-bottom: 17px;
    font-size: 2.0rem;
  }
}
@media screen and (min-width: 1050px) {
  .hero-minimal__heading::before {
    margin-bottom: 11px;
  }
}

.hero__image__heading {
  word-break: break-all;
}

.hero__image__heading::before {
  content: attr(data-decoration-text);
  display: block;
  margin-bottom: 13px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: .16em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .hero__image__heading::before {
    margin-bottom: 17px;
    font-size: 4.8rem;
  }
}
@media screen and (min-width: 1050px) {
  .hero__image__heading::before {
    margin-bottom: 11px;
  }
}

.hero__image__heading__text {
  display: inline;
  padding: 0 2px 1.5px 3px;
  background-color: #ffffff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: #0e0e0e;
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .16em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hero__image__heading__text {
    font-size: 1.8rem;
  }
}

/* 背景画像が登録されていない場合 */
.hero.no-image {
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .hero.no-image {
    padding-top: 80px;
  }
}

.hero.no-image .hero__image {
  height: auto;
  min-height: auto;
}

.hero.no-image .hero__image::after {
  background-color: transparent;
}

.hero.no-image > .hero__image > .container {
  padding-top: 0;
  padding-bottom: 0;
}

.hero.no-image .hero__image__heading::before {
  color: #0e0e0e;
}
.hero.no-image .hero__image__heading__text {
  background-color: #0e0e0e;
  color: #ffffff;
}
@charset "UTF-8";

/* header information navigation */

.header__main__content__above__information {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1050px) {
  .header__main__content__above__information {
    display: flex;
    width: auto;
    max-width: none;
    margin-right: 0;
    margin-left: 20px;
  }
}

.header__main__content__above__information__list {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .header__main__content__above__information__list {
    flex-direction: row;
    margin-top: 30px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content__above__information__list {
    width: 310px;
  }
}

.header__main__content__above__information__list__item {
  position: relative;
  width: 100%;
  padding: 5px 0;
  color: #0e0e0e;
  text-align: center;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.header__main__content__above__information__list__item:nth-child(2) {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .header__main__content__above__information__list__item {
    width: 304px;
  }
  .header__main__content__above__information__list__item:nth-child(2) {
    margin-top: 0;
    margin-left: 20px;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content__above__information__list__item {
    width: 150px;
    padding: 0 0 5px;
    transition: opacity .3s;
  }
  .header__main__content__above__information__list__item:hover {
    color: #6C0000;
  }
  .header__main__content__above__information__list__item:nth-child(2) {
    margin-left: 10px;
  }
}

.header__main__content__above__information__list__item::before,
.header__main__content__above__information__list__item::after {
  position: absolute;
  content: "";
  left: 4px;
  width: calc(100% - 8px);
  height: 1px;
  background-color: rgba(14, 14, 14, 0.6);
}
@media screen and (min-width: 1050px) {
  .header__main__content__above__information__list__item::before {
    width: 0;
  }
  .header__main__content__above__information__list__item::after {
    width: calc(100% - 8px);
  }
  .header__main__content__above__information__list__item:hover::before,
  .header__main__content__above__information__list__item:hover::after {
    background-color: #6C0000;
  }
}

.header__main__content__above__information__list__item::before {
  top: 0;
}
.header__main__content__above__information__list__item::after {
  bottom: 0;
}

.header__main__content__above__information__list__item__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 7px 20px;
  box-sizing: border-box;
  border-left: solid 1px rgba(14, 14, 14, 0.6);
  border-right: solid 1px rgba(14, 14, 14, 0.6);
}
@media screen and (min-width: 1050px) {
  .header__main__content__above__information__list__item__inner {
    padding: 9px 7px 7px 7px;
  }
  .header__main__content__above__information__list__item:hover .header__main__content__above__information__list__item__inner {
    border-left: solid 1px #6C0000;
    border-right: solid 1px #6C0000;
  }
}

.header__main__content__above__information__list__item__inner__text {
  position: relative;
  padding-left: 20px;
  font-size: 1.2rem;
  letter-spacing: .1em;
}
.header__main__content__above__information__list__item__inner__text::before {
  content: "";
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
  display: inline-block;
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #0e0e0e;
}
.header__main__content__above__information__list__item:first-child .header__main__content__above__information__list__item__inner__text::before {
  mask-image: url('//23961263.fs1.hubspotusercontent-na1.net/hubfs/23961263/raw_assets/public/ba-net/01_JP/assets/images/common/icon_seminar.svg');
  -webkit-mask-image: url('//23961263.fs1.hubspotusercontent-na1.net/hubfs/23961263/raw_assets/public/ba-net/01_JP/assets/images/common/icon_seminar.svg');
  width: 16px;
  height: 10px;
}
.header__main__content__above__information__list__item:nth-child(2) .header__main__content__above__information__list__item__inner__text::before {
  mask-image: url('//23961263.fs1.hubspotusercontent-na1.net/hubfs/23961263/raw_assets/public/ba-net/01_JP/assets/images/common/icon_download.svg');
  -webkit-mask-image: url('//23961263.fs1.hubspotusercontent-na1.net/hubfs/23961263/raw_assets/public/ba-net/01_JP/assets/images/common/icon_download.svg');
  width: 10px;
  height: 12px;
}
@media screen and (min-width: 768px) {
  .header__main__content__above__information__list__item:first-child .header__main__content__above__information__list__item__inner__text::before {
    width: 16px;
    height: 10px;
  }
  .header__main__content__above__information__list__item:nth-child(2) .header__main__content__above__information__list__item__inner__text::before {
    width: 10px;
    height: 12px;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content__above__information__list__item__inner__text {
    z-index: 3;
  }
  .header__main__content__above__information__list__item:first-child .header__main__content__above__information__list__item__inner__text::before {
    width: 16px;
    height: 10px;
  }
  .header__main__content__above__information__list__item:nth-child(2) .header__main__content__above__information__list__item__inner__text::before {
    width: 10px;
    height: 12px;
  }
  .header__main__content__above__information__list__item:hover .header__main__content__above__information__list__item__inner__text::before {
    background-color: #6C0000;
  }
}
@charset "UTF-8";

/* header contact navigation */

.header__main__contact__content {
  width: 100%;
}
@media screen and (min-width: 1050px) {
  .header__main__contact__content {
    width: 130px;
    height: 80px;
  }
}

.header__main__contact__content__anchor {
  position: relative;
  display: block;
  padding: 20px 35px;
  background-color: #6C0000;
  border: solid 1px #6C0000;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (min-width: 768px) {
  .header__main__contact__content__anchor {
    transition: background-color .3s, border .3s; 
  }
  .header__main__contact__content__anchor:hover {
    background-color: #820000;
    border: solid 1px #820000;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__contact__content__anchor {
    width: 130px;
    height: 80px;
    padding: 28px 15px 15px;
    box-sizing: border-box;
  }
}

.header__main__contact__content__anchor__text {
  position: relative;
  display: inline-block;
  height: 100%;
  color: #fff;
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .header__main__contact__content__anchor__text {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__contact__content__anchor__text {
    font-size: 1.2rem;
  }
}

.header__main__contact__content__anchor__text::before {
  position: absolute;
  top: 50%;
  left: -25px;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 11px;
  mask-image: url('//23961263.fs1.hubspotusercontent-na1.net/hubfs/23961263/raw_assets/public/ba-net/01_JP/assets/images/common/icon_contact.svg');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url('//23961263.fs1.hubspotusercontent-na1.net/hubfs/23961263/raw_assets/public/ba-net/01_JP/assets/images/common/icon_contact.svg');
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: #fff;
  transform: translateY(-50%);
}
@media screen and (min-width: 1050px) {
  .header__main__contact__content__anchor__text::before {
    top: -15px;
    left: 50%;
    width: 15px;
    height: 9px;
    transform: translateX(-50%);
  }
}

.header__main__contact__content__anchor__text__inner {
  display: block;
  height: 100%;
  overflow: hidden;
}

.header__main__contact__content__anchor__text__inner br {
  display: none;
}
@media screen and (min-width: 1050px) {
  .header__main__contact__content__anchor__text__inner br {
    display: block;
  }
}

/* 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;
}

.sitemap-list-01 {
  box-sizing: border-box;
  display: block;
  width: 50%;
  padding-right: 25px;
  padding-left: 25px;
}
@media screen and (max-width: 1049px) {
  .sitemap-list-01 {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .sitemap-list-01 {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.sitemap-list-01:nth-child(n+3) {
  margin-top: 50px;
}
@media screen and (max-width: 1049px) {
  .sitemap-list-01:nth-child(n+2) {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .sitemap-list-01:nth-child(n+2) {
    margin-top: 40px;
  }
}

.sitemap-list-02,
.sitemap-list-03,
.sitemap-list-04,
.sitemap-list-05,
.sitemap-list-06,
.sitemap-list-07 {
  margin-top: 15px;
}

.sitemap-list-02 {
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .sitemap-list-02 {
    padding-left: 20px;
  }
}

.sitemap__link {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .2em;
  color: #5B5B5B;
  transition: all .3s;
}
@media screen and (min-width: 1050px) {
  a.sitemap__link:hover {
    color: #6C0000;
  }
}

.sitemap-list-01 > .sitemap__link {
  color: #0e0e0e;
  font-size: 2.4rem;
}
@media screen and (min-width: 1050px) {
  .sitemap-list-01 > a.sitemap__link:hover {
    color: #6C0000;
  }
}
@media screen and (max-width: 767px) {
  .sitemap-list-01 > .sitemap__link {
    font-size: 1.8rem;
  }
}

.sitemap-list-02 > .sitemap__link {
  font-size: 2.0rem;
}
@media screen and (max-width: 767px) {
  .sitemap-list-02 > .sitemap__link {
    font-size: 1.6rem;
  }
}
.sitemap-list-03 > .sitemap__link {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .sitemap-list-03 > .sitemap__link {
    font-size: 1.5rem;
  }
}
.sitemap-list-04 > .sitemap__link {
  font-size: 1.6rem;
}
.sitemap-list-05 > .sitemap__link {
  font-size: 1.5rem;
}
.sitemap-list-06 > .sitemap__link {
  font-size: 1.4rem;
}
.sitemap-list-07 > .sitemap__link {
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .sitemap-list-04 > .sitemap__link,
  .sitemap-list-05 > .sitemap__link,
  .sitemap-list-06 > .sitemap__link {
    font-size: 1.3rem;
  }
}

.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: 20px;
  }
}

.sitemap-list-01 > .sitemap__link .sitemap__link__inner::before {
  content: "";
  width: 13px;
  height: 1px;
  top: 19px;
  left: 0;
  background-color: #0e0e0e;
  position: absolute;
  transition: all .3s;
}
@media screen and (max-width: 767px) {
  .sitemap-list-01 > .sitemap__link .sitemap__link__inner::before {
    width: 10px;
    top: 13px;
  }
}

.sitemap-list-02 > .sitemap__link .sitemap__link__inner::before {
  content: "";
  width: 5px;
  height: 2px;
  top: 15px;
  left: -20px;
  background-color: #5B5B5B;
  position: absolute;
  transition: all .3s;
}
@media screen and (max-width: 767px) {
  .sitemap-list-02 > .sitemap__link .sitemap__link__inner::before {
    top: 12px;
    left: -10px;
  }
}

.sitemap-list-03 > .sitemap__link .sitemap__link__inner::before {
  content: "";
  width: 3px;
  height: 3px;
  top: 12px;
  left: -15px;
  background-color: #5B5B5B;
  position: absolute;
  transition: all .3s;
}

.sitemap-list-04 > .sitemap__link .sitemap__link__inner::before {
  content: "";
  width: 2px;
  height: 2px;
  top: 11px;
  left: -15px;
  background-color: #5B5B5B;
  position: absolute;
  transition: all .3s;
}
@media screen and (max-width: 767px) {
  .sitemap-list-04 > .sitemap__link .sitemap__link__inner::before {
    top: 9px;
  }
}

@media screen and (max-width: 767px) {
  .sitemap-list-04 > .sitemap-list__child,
  .sitemap-list-05 > .sitemap-list__child,
  .sitemap-list-06 > .sitemap-list__child {
    padding-left: 10px;
  }
}

/* URLスラッグに「thanks」に該当するものは削除 */
.sitemap-list--thanks {
  display: none;
}
@charset "UTF-8";

/* home hero */

.home-billboard-wrapper {
  position: relative;
}

.home-billboard {
  width: calc(100% - 80px);
}
@media screen and (max-width: 1049px) {
  .home-billboard {
    width: 100%;
  }
}

.home-billboard__slider {
  height: 620px;
  position: relative;
}
@media screen and (max-width: 1049px) {
  .home-billboard__slider {
    height: 800px;
  }
}
@media screen and (max-width: 767px) {
  .home-billboard__slider {
    height: 550px;
  }
}

.home-billboard__slider__item {
  background-size: cover;
  background-position: 50% 50%;
}
@media screen and (max-width: 1049px) {
  .home-billboard__slider__item {
    background-position: 70% 50%;
  }
}

.home-billboard__slider__item:before {
  background: rgba(0,0,0,.15);
  content: "";
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.home-billboard__slider__item:after {
  background: linear-gradient(to right, rgba(0,0,0,0.4) 0%,rgba(0,0,0,0) 100%);
  content: "";
  height: 100%;
  position: absolute;
  right: -40px;
  top: 0;
  width: 40px;
}
@media screen and (max-width: 1049px) {
  .home-billboard__slider__item:after {
    right: -30px;
    width: 30px;
  }
}
@media screen and (max-width: 767px) {
  .home-billboard__slider__item:after {
    right: -15px;
    width: 15px;
  }
}

.home-billboard .container {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 115px 115px 95px 115px;
}
@media screen and (max-width: 1049px) {
  .home-billboard .container {
    padding: 120px 50px;
  }
}
@media screen and (max-width: 767px) {
  .home-billboard .container {
    padding: 82px 20px;
  }
}

.home-billboard__slider__item__contents {
  z-index: 11;
}

.home-billboard__slider__item__contents__inner__copy__logo {
  height: 50px;
  margin-right: auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .home-billboard__slider__item__contents__inner__copy__logo {
    height: 35px;
    margin-bottom: 10px;
  }
}

.home-billboard__slider__item__contents__inner__copy__body {
  position: relative;
}
.home-billboard__slider__item__contents__inner__copy__body::before {
  position: absolute;
  content: "";
  top: 7px;
  left: -3px;
  width: 1px;
  height: 100%;
  padding-bottom: 88px;
  background-color: rgba(255, 255, 255, .3);
  z-index: 1;
}
@media screen and (max-width: 1049px) {
  .home-billboard__slider__item__contents__inner__copy__body::before {
    padding-bottom: 113px;
  }
}
@media screen and (max-width: 767px) {
  .home-billboard__slider__item__contents__inner__copy__body::before {
    padding-bottom: 75px;
  }
}

.home-billboard__slider__item__contents__inner__copy__body__title {
  color: #fff;
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 3.8rem;
  font-weight: 100;
  letter-spacing: .32em;
  line-height: 1.2;
}
@media screen and (max-width: 1049px) {
  .home-billboard__slider__item__contents__inner__copy__body__title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .home-billboard__slider__item__contents__inner__copy__body__title {
    font-size: 2.3rem;
    line-height: 1.6;
  }
}

.home-billboard__slider__item__contents__inner__copy__body__title:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 1049px) {
  .home-billboard__slider__item__contents__inner__copy__body__title:not(:last-child) {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .home-billboard__slider__item__contents__inner__copy__body__title:not(:last-child) {
    margin-bottom: 20px;
  }
}

.home-billboard__slider__item__contents__inner__copy__body__english-title {
  margin-left: -3px;
  padding-bottom: 15px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 2.1rem;
  letter-spacing: .16em;
  line-height: 1.5;
}
@media screen and (max-width: 1049px) {
  .home-billboard__slider__item__contents__inner__copy__body__english-title {
    padding-bottom: 19px;
  }
}
@media screen and (max-width: 767px) {
  .home-billboard__slider__item__contents__inner__copy__body__english-title {
    padding-bottom: 11px;
    font-size: 1.3rem;
  }
}

.home-billboard__slider__item__contents__inner__copy__body__button {
  margin-top: 50px;
  margin-left: -2px;
}
@media screen and (max-width: 767px) {
  .home-billboard__slider__item__contents__inner__copy__body__button {
    margin-top: 25px;
  }
}

@media screen and (min-width: 1050px) {
  .home-billboard__slider__item__contents__inner__copy__body__button {
    transition: opacity .3s;
  }
  .home-billboard__slider__item__contents__inner__copy__body__button:hover {
    opacity: 0.6;
  }
}

.home-billboard__slider__item__contents__inner__copy__body__button__anchor {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  border-top: solid 1px #fff;
  padding-top: 10px;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: .1em;
  text-decoration: none;
  transition: all .3s;
}
@media screen and (max-width: 767px) {
  .home-billboard__slider__item__contents__inner__copy__body__button__anchor {
    font-size: 1.4rem;
  }
}

.home-billboard__slider__item__contents__inner__copy__body__button__anchor__arrow {
  display: inline-block;
  width: 18px;
  margin-left: 20px;
  position: relative;
  transition: .3s;
}

.home-billboard__slider__item__contents__inner__copy__body__button__anchor__arrow__path {
  stroke: #fff;
}

.home-billboard__contact__inner {
  display: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (min-width: 1050px) {
  .home-billboard__contact {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 80px;
    height: calc(100% - 55px);
    background-color: #6C0000;
    color: #fff;
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: .16em;
    text-align: center;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    transition: background-color .3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 1;
  }

  .top-content:not(.is--scroll-active) .home-billboard__contact {
    z-index: 101;
  }

  .home-billboard__contact:hover {
    background-color: #820000;
  }

  .home-billboard__contact__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 120px 20px;
    box-sizing: border-box;
  }

  .home-billboard__contact__inner::before {
    position: absolute;
    top: calc(50% - 3px);
    left: -8px;
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    width: 19.5px;
    height: 6px;
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19.41 5.719"><path d="M1362 284h16l-3-3" fill-rule="evenodd" stroke="rgb(0, 0, 0)" stroke-width="1px" stroke-linecap="butt" stroke-linejoin="miter" fill="none" transform="translate(-1361.5 -279.781)"/></svg>');
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19.41 5.719"><path d="M1362 284h16l-3-3" fill-rule="evenodd" stroke="rgb(0, 0, 0)" stroke-width="1px" stroke-linecap="butt" stroke-linejoin="miter" fill="none" transform="translate(-1361.5 -279.781)"/></svg>');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #fff;
    transition: all .3s;
  }
  .home-billboard__contact:hover .home-billboard__contact__inner::before {
    transform: translateX(8px);
  }

  .home-billboard__contact__inner__text {
    position: relative;
    padding-top: 20px;
  }

  .home-billboard__contact__inner__text::before {
    position: absolute;
    top: 0;
    left: 50%;
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    width: 18px;
    height: 11px;
    mask-image: url('//23961263.fs1.hubspotusercontent-na1.net/hubfs/23961263/raw_assets/public/ba-net/01_JP/assets/images/common/icon_contact.svg');
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url('//23961263.fs1.hubspotusercontent-na1.net/hubfs/23961263/raw_assets/public/ba-net/01_JP/assets/images/common/icon_contact.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: #fff;
    transform: translateX(-50%);
  }

  .home-billboard__contact__inner__text::after {
    position: absolute;
    bottom: -4%;
    left: 50%;
    content: attr(data-decoration-text);
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    opacity: 0.2;
    transform: translateX(-50%) translateY(100%);
  }
}
@charset "UTF-8";

/* news index */

.section-news {
  position: relative;
  overflow: hidden;
}

.news {
  box-sizing: border-box;
  width: 100%;
}
@media screen and (min-width: 1050px) {
  .news {
    display: flex;
    align-items: flex-start;
    min-height: 250px;
  }
}

@media screen and (min-width: 1050px) {
  .news-head {
    width: 300px;
  }
}

.news__menu__laptop-wider__list {
  position: relative;
  display: none;
}
@media screen and (min-width: 1050px) {
  .news__menu__laptop-wider__list {
    display: block;
    padding-left: 25px;
  }
}

.news__menu__laptop-wider__list::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 1px;
  height: 95%;
  background-color: #0e0e0e;
}

.news__menu__laptop-wider__list__item {
  position: relative;
  margin: 15px 0;
  cursor: pointer;
  line-height: 1.5;
  transition: color .3s;
}
.news__menu__laptop-wider__list__item:first-child {
  margin-top: 0;
}
.news__menu__laptop-wider__list__item:last-child {
   margin-bottom: 0;
}

.news__menu__laptop-wider__list__item::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -25px;
  width: 3px;
  height: 14px;
  background-color: #6C0000;
  transform: translateY(-50%);
  opacity: 0;
}

.news__menu__laptop-wider__list__item:hover {
  color: #6C0000;
}

.news__menu__laptop-wider__list__item.is-current {
  color: #6C0000;
}

.news__menu__laptop-wider__list__item.is-current {
  position: relative;
}


.news__menu__laptop-wider__list__item.is-current::before {
  opacity: 1;
}

@media screen and (min-width: 1050px) {
  .news__menu__palmtop {
    display: none;
  }
}

.news__menu__palmtop__label {
  display: block;
  position: relative;
}

.news__menu__palmtop__label__icon {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 16px;
  height: 9px;
  transform: translateY(-50%);
}

.news__menu__palmtop__label__select {
  display: block;
  width: 100%;
  padding: 14px 17px;
  outline: none;
  border: 1px solid #d2d5da;
  background: none transparent;
  color: inherit;
  font-size: 1.4rem;
  letter-spacing: .1em;
  text-indent: 0.01px;
  appearance: none;
}
@media screen and (min-width: 768px) {
  .news__menu__palmtop__label__select {
    padding: 15px 17px;
    font-size: 1.5rem;
  }
}

.news .news__button {
  margin-top: 40px;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .news .news__button {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1050px) {
  .news .news__button {
    max-width: 220px;
  }
}

@media screen and (min-width: 1050px) {
  .news .news__button .link-button__anchor {
    max-width: 220px;
  }
}

.news__content {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .news__content {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1050px) {
  .news__content {
    width: 720px;
    margin-top: 0;
    margin-left: 30px;
  }
}

.news__content__list {
  display: none;
  border-top: none;
}
@media screen and (min-width: 1050px) {
  .news__content__list {
    margin-right: 25px;
  }
}
.news__content__list.show {
  display: block;
}

.news__content__list__item:first-child .news__content__list__item__anchor {
  padding-top: 0;
}

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

.section-news .news-archive__content__list__item__content__body {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .section-news .news-archive__content__list__item__content__body {
    margin-top: 6px;
  }
}
@charset "UTF-8";

/* blog index */

.section-blog {
  position: relative;
}

.blog__head {
  position: relative;
  padding-left: 5px;
}
@media screen and (min-width: 768px) {
  .blog__head {
    padding-left: 0;
  }
}

.blog__head__title {
  width: calc(100% - 150px);
}
@media screen and (min-width: 768px) {
  .blog__head__title {
    width: calc(100% - 200px);
  }
}

.blog__head__swiper-button.swiper-button {
  background-color: transparent;
  /*position: relative;*/
  position: absolute;
  bottom: 0;
  width: 133px;
  margin-left: auto;
  /*margin-left: 0;*/
}
@media screen and (min-width: 768px) {
  .blog__head__swiper-button.swiper-button {
    /*position: absolute;*/
    bottom: -5px;
    width: 150px;
    /*margin-left: 0;*/
  }
}

.blog__head__swiper-button .swiper-button-prev {
  left: -7px!important;
  right: auto!important;
}

.blog__head__swiper-button .swiper-button-next {
  right: -7px!important;
}

.blog__head__swiper-button .swiper-counter {
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  .blog__head__swiper-button .swiper-counter {
    font-size: 1.2rem;
  }
}

.blog__contents {
  position: relative;
}

.blog__slider {
  width: calc(50% + 50vw);
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .blog__slider {
    margin-top: 40px;
  }
}

.blog__slider__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 20px;
  max-width: 1050px;
  padding-right: 20px;
  position: absolute;
  top: 30px;
  right: 0;
}
@media screen and (min-width: 768px) {
  .blog__slider__nav {
    margin-bottom: 40px;
    padding-right: 30px;
    top: 50px;
  }
}
@media screen and (min-width: 1050px) {
  .blog__slider__nav {
    padding-right: 55px;
  }
}

.blog__slider__list__item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 75%!important;
}
@media screen and (min-width: 768px) {
  .blog__slider__list__item {
    width: 420px!important;
  }
}

.blog__slider__list__item:focus {
  outline: none;
}

.blog__slider__list__item__card {
  display: block;
  width: 100%;
}

.blog__slider__list__item__card:focus {
  outline: none;
}

.blog__slider__list__item__card__head {
  overflow: hidden;
}

.blog__slider__list__item__card__head__image {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.5s ease 0s;
}

.blog__slider__list__item__card:hover .blog__slider__list__item__card__head__image {
  transform: scale(1.05)
}

.blog__slider__list__item__card__head__image:before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.blog .blog__slider__list__item__card__body {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .blog .blog__slider__list__item__card__body {
    margin-top: 12px;
  }
}
@media screen and (min-width: 1050px) {
  .blog .blog__slider__list__item__card__body {
    margin-top: 10px;
  }
}

.blog .blog__slider__list__item__card__body__date {
  margin-top: 25px;
}

.blog .blog__slider__list__item__card__body__heading {
  margin-top: 15px;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .blog .blog__slider__list__item__card__body__heading {
    font-size: 1.8rem;
  }
}
@charset "UTF-8";

/* home column */

.section-home-column {
  position: relative;
  background-color: #F8F9F9;
}

.home-column {
  position: relative;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .home-column {
    padding-bottom: 110px;
  }
}

.home-column__head {
  padding-top: 70px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .home-column__head {
    padding-top: 95px;
  }
}

.home-column__title {
  text-align: center;
}

.home-column__title__jp {
  position: relative;
  display: inline-block;
  padding: 0 3px 4px 0px;
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 2.8rem;
  font-weight: 100;
  color: #fff;
  line-height: 1.02;
  box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}
@media screen and (min-width: 768px) {
  .home-column__title__jp {
    font-size: 4.0rem;
  }
}

.home-column__title__jp::before {
  position: absolute;
  bottom: 0;
  left: -5px;
  content: '';
  width: 100%;
  height: 1px;
  padding-right: calc(50vw - 50% + 5px);
  background-color: #dbdbdb;
}

.home-column-title-en-wrapper {
  position: relative;
}

.home-column-title-en {
  position: absolute;
  top: 25px;
  right: 17px;
  display: flex;
  align-items: baseline;
  font-size: 1.3rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .16em;
  line-height: 1.4;
  writing-mode: vertical-rl;
  white-space: nowrap;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .home-column-title-en {
    top: 55px;
    right: 45px;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-column-title-en {
    right: 12px;
  }
}

.home-column-title-en::before {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 4px;
  width: 1px;
  height: calc(100% + 70px);
  background-color: #a6a0a2;
}
@media screen and (min-width: 768px) {
  .home-column-title-en::before {
    bottom: -6px;
    left: 6px;
    height: calc(100% + 111px);
  }
}

.home-column-title-en__number {
  padding-bottom: 7px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: #6C0000;
}
@media screen and (min-width: 768px) {
  .home-column-title-en__number {
    font-size: 1.6rem;
  }
}

.home-column__item-wrap {
  position: relative;
  margin-top: 45px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .home-column__item-wrap {
    margin-top: 63px;
  }
}
@media screen and (min-width: 1050px) {
  .home-column__item-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 50px;
    margin-left: -15px;
    margin-right: -15px;
  }
}

.home-column__item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (min-width: 1050px) {
  .home-column__item {
    width: 33.333%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.home-column__item:not(:first-child) {
  margin-top: 35px;
}
@media screen and (min-width: 768px) {
  .home-column__item:not(:first-child) {
    margin-top: 25px;
  }
}
@media screen and (min-width: 1050px) {
  .home-column__item:not(:first-child) {
    margin-top: 0;
  }
}

.home-column__item__card {
  display: block;
}
@media screen and (min-width:768px) and (max-width:1049px) {
  .home-column__item__card {
    display: flex;
  }
}
@media screen and (min-width: 1050px) {
  .home-column__item__card:hover .link-text__anchor {
    position: relative;
    color: #6C0000;
  }
  .home-column__item__card:hover .link-text__anchor::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    width: calc(100% - 35px);
    height: 1px;
    background-color: #a50000;
  }
  .home-column__item__card:hover .link-text__anchor .link-text__anchor__icon__arrow {
    fill: #6C0000;
  }
}

.home-column__item__card__head {
  overflow: hidden;
}
@media screen and (min-width:768px) and (max-width:1049px) {
  .home-column__item__card__head {
    width: 280px;
    margin-right: 30px;
  }
}

.home-column__item__card__head__inner {
  position: relative;
}

.home-column__item__card__head__inner__image {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: .5s;
}
@media screen and (min-width: 1050px) {
  .home-column__item__card:hover .home-column__item__card__head__inner__image {
    transform: scale(1.05)
  }
}

.home-column__item__card__head__inner__image:before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.home-column__item__card__head__inner__new-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 60px;
  height: 50px;
  background: linear-gradient(140deg, transparent 0%, transparent 50%, rgb(108, 0, 0, .9) 50%, rgb(108, 0, 0, .9) 100%);
}

.home-column__item__card__head__inner__new-icon__text {
  position: absolute;
  bottom: 12px;
  right: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  transform: rotate(-45deg);
}

.home-column__item__card__body {
  margin-top: 20px;
}
@media screen and (min-width:768px) and (max-width:1049px) {
  .home-column__item__card__body {
    margin-top: 0;
    width: calc(100% - 310px);
  }
}

.home-column .home-column__item__card__body__heading {
  margin-top: 10px;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .home-column .home-column__item__card__body__heading {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-column .home-column__item__card__body__heading {
    margin-top: 15px;
  }
}

.home-column .home-column__button {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .home-column .home-column__button {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1050px) {
  .home-column .home-column__button {
    margin-top: 45px;
  }
}

.home-column-decoration {
  position: absolute;
  left: 5px;
  bottom: -25px;
  padding-bottom: 15px;
  font-family: 'Poppins', sans-serif;
  font-size: 7.0rem;
  font-weight: 200;
  letter-spacing: .04em;
  white-space: nowrap;
  overflow: hidden;
  opacity: 4%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (min-width: 768px) {
  .home-column-decoration {
    bottom: -30px;
    font-size: 10.0rem;
  }
}
@media screen and (min-width: 768px) {
  .home-column-decoration {
    left: 20px;
  }
}
@charset "UTF-8";

/* home solution */

.section-home-solution {
  position: relative;
  padding-top: 72px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .section-home-solution {
    padding-top: 85px;
  }
}
@media screen and (min-width: 1050px) {
  .section-home-solution {
    padding-top: 95px;
  }
}

.home-solution {
  position: relative;
  padding-bottom: 50px;
}
@media screen and (min-width: 1050px) {
  .home-solution {
    padding-bottom: 45px;
  }
}
@media screen and (min-width: 1050px) {
  .home-solution {
    padding-bottom: 55px;
  }
}

.home-solution .bg-black::after {
  top: 5px;
  left: -2px;
  width: 97%;
  height: 70%;
}
@media screen and (min-width: 768px) {
  .home-solution .bg-black::after {
    top: 8px;
    left: -1px;
    width: 96%;
    height: 70%;
  }
}

.home-solution__title {
  position: relative;
  text-align: center;
}

.home-solution__title__jp {
  position: relative;
  display: inline-block;
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 2.0rem;
  font-weight: 100;
  line-height: 1.5;
  letter-spacing: .16em;
}
@media screen and (min-width: 768px) {
  .home-solution__title__jp {
    font-size: 3.2rem;
  }
}

.home-solution__title__jp::before {
  position: absolute;
  bottom: 5px;
  right: 0;
  content: '';
  width: 100%;
  height: 1px;
  padding-left: calc(50vw - 50%);
  background-color: #dbdbdb;
}
@media screen and (min-width: 768px) {
  .home-solution__title__jp::before {
    bottom: 7px;
  }
}

.home-solution-title-en-wrap {
  width: 100%;
}
@media screen and (min-width: 1050px) {
  .home-solution-title-en-wrap {
    width: calc(100% - 80px);
  }
}

.home-solution-title-en-container {
  position: relative;
}
@media screen and (min-width: 1050px) {
  .home-solution-title-en-container {
    position: relative;
    padding-right: 115px;
    padding-left: 115px;
  }
}

.home-solution-title-en {
  position: absolute;
  top: -22px;
  left: 12px;
  display: flex;
  align-items: baseline;
  padding-left: 1px;
  writing-mode: vertical-rl;
  font-size: 1.3rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .16em;
  line-height: 1.5;
  white-space: nowrap;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .home-solution-title-en {
    top: -5px;
    left: 40px;
    padding-left: 0;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-solution-title-en {
    top: 8px;
    left: 106px;
  }
}

.home-solution-title-en::before {
  position: absolute;
  content: "";
  bottom: -8px;
  left: 5px;
  width: 1px;
  height: 100%;
  padding-top: 58px;
  background-color: #a6a0a2;
}
@media screen and (min-width: 768px) {
  .home-solution-title-en::before {
    left: 7px;
    padding-top: 113px;
  }
}
@media screen and (min-width: 1050px) {
  .home-solution-title-en::before {
    left: 6px;
    padding-top: 111px;
  }
}

.home-solution-title-en__number {
  padding-bottom: 7px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: #6C0000;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .home-solution-title-en__number {
    padding-bottom: 10px;
    font-size: 1.6rem;
  }
}

.home-solution-title-en__text {
  z-index: 1;
}

.home-solution__columns {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .home-solution__columns {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
  }
}
@media screen and (min-width: 1050px) {
  .home-solution__columns {
    margin-top: 40px;
  }
}

.home-solution__columns__column {
  position: relative;
  box-sizing: border-box;
  margin-bottom: 12px;
  padding-top: 20px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .home-solution__columns__column {
    margin-bottom: 10px;
    border: none;
  }
}

.home-solution__columns__column::after {
  position: absolute;
  content: "";
  bottom: 0;
  height: 1px;
  background-color: #d4d9dd;
}
.home-solution__columns__column:nth-child(1)::after,
.home-solution__columns__column:nth-child(4)::after {
  left: 0;
  width: calc(100% - 10px);
}
.home-solution__columns__column:nth-child(3)::after {
  left: 10px;
  width: calc(100% - 20px);
}
.home-solution__columns__column:nth-child(2)::after,
.home-solution__columns__column:nth-child(5)::after {
  right: 10px;
  width: calc(100% - 20px);
}

@media screen and (min-width: 768px) {
  .home-solution__columns__column:nth-child(1),
  .home-solution__columns__column:nth-child(3) {
    width: 32.7%;
  }
  .home-solution__columns__column:nth-child(2) {
    width: 34.6%;
  }
  .home-solution__columns__column:nth-child(n+4) {
    width: 50%;
    margin-top: 10px;
  }
  .home-solution__columns__column:nth-child(4)::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 1px;
    height: calc(100% - 10px);
    background-color: #d4d9dd;
  }
  .home-solution__columns__column:nth-child(2)::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 1px;
    height: calc(100% - 10px);
    background-color: #d4d9dd;
  }
  .home-solution__columns__column:nth-child(3)::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 1px;
    height: calc(100% - 10px);
    background-color: #d4d9dd;
  }
}

.home-solution__columns__column__inner {
  padding: 0 20px 30px;
}
@media screen and (min-width: 768px) {
  .home-solution__columns__column__inner {
    padding: 0 20px 35px;
  }
}
@media screen and (min-width: 1050px) {
  .home-solution__columns__column__inner {
    padding: 0 40px 35px;
  }
}

.home-solution__columns__column__inner__problem {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  letter-spacing: .16em;
  text-align: center;
}

.home-solution__columns__column__inner__title {
  position: relative;
  min-height: 30px;
  margin-top: 15px;
  padding-left: 0;
  padding-top: 50px;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: .1em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .home-solution__columns__column__inner__title {
    margin-top: 25px;
    padding-top: 55px;
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-solution__columns__column__inner__title {
    padding-top: 50px;
    font-size: 1.8rem;
  }
}

.home-solution__columns__column__inner__title__icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.home-solution .link-button {
  margin-top: 40px;
}

.home-solution__columns__column__inner__paragraph {
  margin-top: 10px;
  color: #5B5B5B;
  text-align: center;
  font-size: 1.3rem;
  letter-spacing: .1em;
  line-height: 1.5;
}

@media screen and (min-width: 1050px) {
  .home-solution__columns__column__inner__paragraph {
    margin-top: 15px;
  }
}

.home-solution-decoration {
  position: absolute;
  right: -14px;
  bottom: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 7.0rem;
  font-weight: 200;
  letter-spacing: .04em;
  writing-mode: vertical-rl;
  white-space: nowrap;
  overflow: hidden;
  opacity: 4%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (min-width: 768px) {
  .home-solution-decoration {
    font-size: 11.0rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-solution-decoration {
    right: -10px;
  }
}
@charset "UTF-8";

/* home products */

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

.home-products {
  position: relative;
  margin-top: -80px;
  padding-top: 50px;
  padding-bottom: 40px;
  box-sizing: border-box;
  z-index: 1;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .home-products {
    margin-top: -170px;
    padding-top: 80px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1050px) {
  .home-products {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}

.home-products::before {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: calc(100% - 10px);
  height: 100%;
  background-color: #ffffff;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .home-products::before {
    width: calc(100% - 30px);
  }
}
@media screen and (min-width: 1310px) {
  .home-products::before {
    width: 100%;

    max-width: 1250px;
    padding-left: 100px;
    padding-right: 100px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    left: 0;
  }
}

@media screen and (min-width: 1310px) {
  .home-products::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #ffffff;
  }
}

.home-products-bg {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 250px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .home-products-bg {
    height: 390px;
  }
}

.home-products-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(108,0,0) 0%, rgb(108,0,0) 0%, rgb(53,48,76) 51%, rgb(0,95,150) 100%);
  opacity: 0.03;
}

.home-products__contents {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .home-products__contents {
    display: block;
    padding-left: 50px;
  }
}

.home-products__contents__head {
  position: relative;
  display: contents;
}
@media screen and (min-width: 768px) {
  .home-products__contents__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.home-products__contents__head__title {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  align-items: flex-end;
  flex-wrap: wrap;
  order: 1;
}
@media screen and (min-width: 768px) {
  .home-products__contents__head__title {
    width: calc(100% - 260px);
  }
}
@media screen and (min-width: 1050px) {
  .home-products__contents__head__title {
    width: calc(100% - 300px);
  }
}

.home-products__contents__head__title::before {
  position: absolute;
  bottom: -2px;
  left: -10px;
  content: '';
  width: 100%;
  height: 1px;
  padding-right: 100vw;
  background-color: #dbdbdb;
}
@media screen and (min-width: 768px) {
  .home-products__contents__head__title::before {
    bottom: -1px;
    left: -20px;
  }
}

.home-products__contents__head__title__jp {
  position: relative;
  display: inline;
  margin-right: 18px;
  padding: 0 5px;
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 2.4rem;
  font-weight: 100;
  color: #fff;
  line-height: 1.2;
  letter-spacing: .12em;
}
@media screen and (min-width: 768px) {
  .home-products__contents__head__title__jp {
    margin-right: 25px;
    font-size: 4.0rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-products__contents__head__title__jp {
    font-size: 4.5rem;
  }
}

.home-products__contents__head__title__en {
  display: inline;
  margin-bottom: -7px;
  padding-top: 5px;
  padding-bottom: 1px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  letter-spacing: .16em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .home-products__contents__head__title__en {
    padding-bottom: 0;
    font-size: 1.6rem;
  }
}

.home-products__contents__head__title__en__number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  letter-spacing: .1em;
  color: #6C0000;
}
@media screen and (min-width: 768px) {
  .home-products__contents__head__title__en__number {
    font-size: 1.5rem;
  }
}

.home-products .home-products__contents__head__button {
  display: flex;
  order: 3;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .home-products .home-products__contents__head__button {
    margin-top: 0;
    margin-bottom: -10px;
  }
}

@media screen and (min-width: 768px) {
  .home-products .home-products__contents__head__button .link-button__anchor {
    width: 220px;
  }
}
@media screen and (min-width: 1050px) {
  .home-products .home-products__contents__head__button .link-button__anchor {
    width: 260px;
  }
}

.home-products__contents__body {
  order: 2;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .home-products__contents__body {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
  }
}
@media screen and (min-width: 1050px) {
  .home-products__contents__body {
    margin-top: 85px;
  }
}

@media screen and (min-width: 768px) {
  .home-products__contents__body__product  {
    width: 45%;
  }
}

.home-products__contents__body__product__name {
  font-size: 2.0rem;
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .home-products__contents__body__product__name {
    font-size: 3.0rem;
  }
}

.home-products__contents__body__product__name__additional {
  font-size: 1.4rem;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .home-products__contents__body__product__name__additional {
    font-size: 1.6rem;
  }
}

.home-products__contents__product__explanation {
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .home-products__contents__product__explanation {
    font-size: 1.5rem;
  }
}

.home-products__contents__product__explanation:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width: 1050px) {
  .home-products__contents__product__explanation:not(:first-child) {
    margin-top: 30px;
  }
}


.home-products__contents__body__image {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .home-products__contents__body__image {
    width: 50%;
    margin-top: 0;
  }
}

.home-products-decoration {
  position: absolute;
  left: 12px;
  bottom: -8px;
  padding-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 7.0rem;
  font-weight: 200;
  letter-spacing: .04em;
  white-space: nowrap;
  overflow: hidden;
  opacity: 4%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (min-width: 768px) {
  .home-products-decoration {
    font-size: 10.0rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-products-decoration {
    left: 50px;
    bottom: -5px;
    font-size: 11.0rem;
  }
}
@charset "UTF-8";

/* home strengths */

.section-home-strengths {
  position: relative;
  margin-top: 45px;
  margin-bottom: 50px;
  overflow: hidden;
}
@media screen and (min-width: 1050px) {
  .section-home-strengths {
    margin-top: 50px;
    margin-bottom: 60px;
  }
}

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

.home-strengths__head {
  text-align: center;
}

.home-strengths__head__title__jp {
  display: inline-block;
  margin-top: 5px;
  padding: 0 5px;
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 100;
  color: #fff;
  line-height: 1.5;
  letter-spacing: .12em;
  box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}
@media screen and (min-width: 768px) {
  .home-strengths__head__title__jp {
    margin-top: 7px;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-strengths__head__title__jp {
    margin-top: 10px;
  }
}

.home-strengths__head__title__en {
  position: relative;
  display: inline-block;
  padding-bottom: 1px;
  font-size: 2.8rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .12em;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .home-strengths__head__title__en {
    padding-bottom: 0;
    font-size: 4.5rem;
  }
}

.home-strengths__head__title__en__number {
  position: absolute;
  top: 5px;
  left: -20px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .1em;
  color: #6C0000;
}
@media screen and (min-width: 768px) {
  .home-strengths__head__title__en__number {
    top: 8px;
    left: -25px;
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-strengths__head__title__en__number {
    top: 8px;
  }
}

.home-strengths__head__title__en::before {
  position: absolute;
  bottom: 7px;
  left: -1px;
  content: '';
  width: 100%;
  height: 1px;
  padding-right: 100vw;
  background-color: #dbdbdb;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .home-strengths__head__title__en::before {
    bottom: 11px;
  }
}

.home-strengths .home-strengths__head__text {
  margin-top: 25px;
  font-size: 1.3rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .home-strengths .home-strengths__head__text {
    margin-top: 40px;
    font-size: 1.5rem;
  }
}

.home-strengths__list {
	display: flex;
  flex-wrap: wrap;
	justify-content: center;
  margin-top: 45px;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .home-strengths__list {
    flex-wrap: nowrap;
    margin-top: 55px;
    padding: 0 30px;
  }
}
@media screen and (min-width: 1050px) {
  .home-strengths__list {
    padding: 0;
  }
}

.home-strengths__list__item {
  position: relative;
	width: 100%;
  min-height: 300px;
  box-sizing: border-box;
  padding: 33px 30px 40px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .home-strengths__list__item {
    width: calc(50% - 10px);
    min-height: 450px;
    padding: 60px 40px 50px;
  }
}
@media screen and (min-width: 1050px) {
  .home-strengths__list__item {
    max-width: 615px;
    padding: 60px 60px 50px;
  }
}

.home-strengths__list__item:last-child {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .home-strengths__list__item:last-child {
    margin-top: 0;
    margin-left: 20px;
  }
}

.home-strengths__list__item__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-strengths__list__item__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.15;
  transition: opacity .5s;
  z-index: 1;
}

.home-strengths__list__item__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  transition: opacity .5s;
  z-index: 2;
}
.home-strengths__list__item:hover .home-strengths__list__item__image::after {
  opacity: .4;
}

.home-strengths__list__item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}
@media screen and (min-width: 1050px) {
  .home-strengths__list__item__image img {
    object-position: 50% 50%;
  }
}
.home-strengths__list__item:hover .home-strengths__list__item__image img {
  transform: scale(1.05);
}

.home-strengths__list__item__contents {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.home-strengths__list__item__contents__title {
  position: absolute;
	bottom: 0;
  left: 1px;
}

.home-strengths__list__item__contents__title__text {
  display: block;
  padding-bottom: 10px;
  font-size: 1.4rem;
  letter-spacing: .1em;
  color: #fff;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .home-strengths__list__item__contents__title__text {
    padding-bottom: 15px;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-strengths__list__item__contents__title__text {
    padding-bottom: 20px;
    font-size: 1.7rem;
  }
}

.home-strengths__list__item__contents__title__emphasis {
  display: inline-block;
  padding-left: 3px;
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 3.0rem;
  font-weight: 100;
  color: #0e0e0e;
  letter-spacing: .16em;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .home-strengths__list__item__contents__title__emphasis {
    font-size: 3.8rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-strengths__list__item__contents__title__emphasis {
    font-size: 4.2rem;
  }
}

.home-strengths__list__item__contents__title__emphasis.bg-white::after {
  top: 2px;
}

.home-strengths__list__item__contents__decoration {
  position: absolute;
	top: 32px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: .16em;
  writing-mode: vertical-rl;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .home-strengths__list__item__contents__decoration {
    top: 65px;
    left: 40px;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-strengths__list__item__contents__decoration {
    left: 60px;
  }
}

.home-strengths__list__item__contents__decoration::before {
  position: absolute;
  content: "";
  bottom: -7px;
  left: 1px;
  width: 1px;
  height: calc(100% + 39px);
  background-color: #fff;
  opacity: 0.5;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .home-strengths__list__item__contents__decoration::before {
    bottom: -12px;
    height: calc(100% + 77px);
  }
}

.home-strengths__list__item__link {
  position: absolute;
  top: 50%;
  left: 50%;
  display: none;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 50px 40px;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease 0s;
  z-index: 2;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .home-strengths__list__item__link {
    display: block;
  }
}
.home-strengths__list__item:hover .home-strengths__list__item__link {
	opacity: 1;
}

.home-strengths__list__item__link__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.home-strengths .home-strengths__button {
  margin-top: 40px;
}

.home-strengths .link-text__anchor {
  padding-top: 0;
  padding-right: 25px;
  border-top: none;
}
.home-strengths .link-text__anchor:hover {
  border-top: none;
}

.home-strengths .link-text__anchor__icon {
  top: calc(50% - 3px);
}

.home-strengths-decoration {
  position: absolute;
  left: 20px;
  bottom: 0;
  padding-bottom: 15px;
  font-family: 'Poppins', sans-serif;
  font-size: 7.0rem;
  font-weight: 200;
  letter-spacing: .04em;
  white-space: nowrap;
  overflow: hidden;
  opacity: 4%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (min-width: 768px) {
  .home-strengths-decoration {
    right: -95px;
    font-size: 10.0rem;
  }
}
@media screen and (min-width: 768px) {
  .home-strengths-decoration {
    left: auto;
    right: 0;
  }
}
@charset "UTF-8";

/* home case study */

.section-home-case-study {
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .section-home-case-study {
    margin-top: 20px;
    margin-bottom: 110px;
  }
}
@media screen and (min-width: 1050px) {
  .section-home-case-study {
    margin-top: 50px;
    margin-bottom: 130px;
  }
}
@media screen and (min-width: 1050px) {
  .section-home-case-study .container {
    width: 100%;
    max-width: calc(1050px + 37px * 2);
    padding-right: 37px;
    padding-left: 37px;
  }
}

.home-case-study {
  width: calc(100% - 20px);
  margin-left: 0;
  margin-right: auto;
  padding-left: 10px;
  box-sizing: border-box;
  background: #6C0000;
}
@media screen and (min-width: 768px) {
  .home-case-study {
    width: calc(100% - 50px);
    padding-left: 30px;
  }
}
@media screen and (min-width: 1050px) {
  .home-case-study {
    width: calc(100% - 100px);
    max-width: calc(50% + 525px);
    padding-left: calc(50% - 725px);
    border-left: solid transparent;
    border-left-width: 125px;
  }
}

.home-case-study__head {
  display: flex;
  flex-direction: column;
  padding: 60px 20px 40px 10px;
}
@media screen and (min-width: 768px) {
  .home-case-study__head {
    padding: 80px 50px 50px 20px;
  }
}
@media screen and (min-width: 1050px) {
  .home-case-study__head {
    display: block;
    padding: 65px 90px 50px 75px;
  }
}

.home-case-study__head__inner {
  display: contents;
}
@media screen and (min-width: 1050px) {
  .home-case-study__head__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.home-case-study__head__inner__title-wrapper {
  width: auto;
}
@media screen and (min-width: 1050px) {
  .home-case-study__head__inner__title-wrapper {
    max-width: calc(100% - 325px);
  }
}

.home-case-study__head__inner__title {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  flex-wrap: wrap;
  order: 1;
}

.home-case-study__head__inner__title::before {
  position: absolute;
  bottom: -2px;
  right: 0;
  content: '';
  width: 100%;
  height: 1px;
  padding-right: calc(50vw - 50%);
  background-color: #dbdbdb;
}

.home-case-study__head__inner__title__jp {
  position: relative;
  display: inline-block;
  margin-right: 24px;
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 2.4rem;
  font-weight: 100;
  color: #0e0e0e;
  line-height: 1.2;
  letter-spacing: .12em;
}
@media screen and (min-width: 768px) {
  .home-case-study__head__inner__title__jp {
    margin-right: 27px;
    padding: 0 5px;
    font-size: 4.0rem;
  }
}

.home-case-study__head__inner__title__en {
  display: inline-block;
  margin-bottom: -7px;
  padding-top: 10px;
  padding-bottom: 1px;
  font-size: 1.3rem;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  letter-spacing: .16em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .home-case-study__head__inner__title__en {
    margin-bottom: -8px;
    padding-bottom: 0;
    font-size: 1.8rem;
  }
}

.home-case-study__head__inner__title__en__number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  letter-spacing: .1em;
}
@media screen and (min-width: 768px) {
  .home-case-study__head__inner__title__en__number {
    font-size: 1.5rem;
  }
}

.home-case-study .home-case-study__head__inner__button {
  margin-top: 20px;
  order: 3;
}
@media screen and (min-width: 768px) {
  .home-case-study .home-case-study__head__inner__button {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1050px) {
  .home-case-study .home-case-study__head__inner__button {
    margin-top: 50px;
  }
}

.home-case-study__head__inner__explanation {
  order: 2;
  margin-top: 25px;
  font-size: 1.3rem;
  line-height: 2;
  letter-spacing: .1em;
  color: #fff;
}
@media screen and ( min-width: 768px ) {
  .home-case-study__head__inner__explanation {
    margin-top: 40px;
    font-size: 1.5rem;
  }
}
@media screen and ( min-width: 1050px ) {
  .home-case-study__head__inner__explanation {
    margin-top: 10px;
  }
}

.home-case-study__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(auto-fit, minmax(40px, 1fr));
  gap: 20px 20px;
  background-color: #fff;
  padding: 40px 5px 10px 25px;
}
@media screen and ( min-width: 768px ) {
  .home-case-study__list {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(auto-fit, minmax(75px, 1fr));
    gap: 15px 30px;
    padding: 45px 5px 0 25px;
  }
}
@media screen and ( min-width: 1050px ) {
  .home-case-study__list {
    position: relative;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px 30px;
    padding: 60px 10px 0 70px;
  }
  .home-case-study__list::before {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: -1;
  }
}

.home-case-study__list__item {
  width: 100%;
  height: 40px;
}
@media screen and ( min-width: 768px ) {
  .home-case-study__list__item {
    height: 75px;
  }
}

.home-case-study__list__item img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: contain;
  font-size: 0;
}

.home-case-study-decoration {
  position: absolute;
  left: -10px;
  top: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 7.0rem;
  font-weight: 200;
  color: #fff;
  letter-spacing: .04em;
  writing-mode: vertical-rl;
  white-space: nowrap;
  overflow: hidden;
  opacity: 4%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (min-width: 768px) {
  .home-case-study-decoration {
    top: 63px;
    left: -8px;
    font-size: 9.0rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-case-study-decoration {
    left: -12px;
  }
}
@charset "UTF-8";

/* home company */

.section-home-company {
  margin-top: 50px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .section-home-company {
    margin-top: 80px;
    margin-bottom: 30px;
  }
}

.home-company {
  max-width: 1450px;
}

.home-company.container {
  padding-right: 10px;
  padding-left: 10px;
}
@media screen and (min-width: 768px) {
  .home-company.container {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (min-width: 1050px) {
  .home-company.container {
    padding-right: 100px;
    padding-left: 100px;
  }
}

.home-company__row {
  position: relative;
  overflow: hidden;
}

.home-company__row:not(:first-child) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .home-company__row:not(:first-child) {
    margin-top: 50px;
  }
}

.home-company__row__content {
  background-size: cover;
  background-position: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 55px 45px 60px 25px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .home-company__row__content {
    padding: 70px 130px 70px 35px;
  }
}
@media screen and (min-width: 1050px) {
  .home-company__row__content {
    padding: 85px 100px;
  }
}

.home-company__row__content__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-company__row__content__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.15;
  transition: opacity .5s;
  z-index: 1;
}

.home-company__row__content__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% 50%;
  transition: .5s;
}
.home-company__row__content:hover .home-company__row__content__image img {
  transform: scale(1.05);
}
@media screen and (min-width: 1050px) {
  .home-company__row__content__image img {
    object-position: 80% 20%;
  }
}

.home-company__row__content__box {
  position: relative;
  padding-left: 50px;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .home-company__row__content__box {
    max-width: 720px;
    padding-left: 65px;
  }
}

.home-company__row__content__box-title-jp {
  position: absolute;
  top: 6px;
  left: 0;
  display: inline;
  padding: 3px 1.5px;
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 100;
  color: #0e0e0e;
  letter-spacing: .16em;
  writing-mode: vertical-rl;
  white-space: nowrap;
  box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}
@media screen and (min-width: 768px) {
  .home-company__row__content__box-title-jp {
    top: 12px;
    font-size: 1.8rem;
  }
}

.home-company__row__content__box__title__en {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 3.0rem;
  color: #fff;
  letter-spacing: .12em;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .home-company__row__content__box__title__en {
    font-size: 4.5rem;
  }
}

.home-company__row__content__box__title__en__text {
  position: relative;
}

.home-company__row__content__box__title__en__number {
  position: absolute;
  top: 10px;
  left: -24px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .1em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .home-company__row__content__box__title__en__number {
    top: 12px;
    left: -22px;
    font-size: 1.2rem;
  }
}

.home-company__row__content__box__title__en::before {
  position: absolute;
  bottom: 8px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #dbdbdb;
}
@media screen and (min-width: 768px) {
  .home-company__row__content__box__title__en::before {
    bottom: 11px;
  }
}

.home-company .home-company__row__content__box__text {
  margin-top: 20px;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .home-company .home-company__row__content__box__text {
    margin-top: 36px;
    font-size: 1.5rem;
  }
}

.home-company .home-company__row__content__box__button {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .home-company .home-company__row__content__box__button {
    margin-top: 50px;
  }
}

.home-company .home-company__row__content__box__button .link-button__anchor {
  width: 220px;
}
@media screen and (min-width: 768px) {
  .home-company .home-company__row__content__box__button .link-button__anchor {
    width: 260px;
  }
}

@media screen and (min-width: 768px) {
  .home-company__row__content:hover .link-button__anchor::before {
    width: 100%
  }

  .home-company__row__content:hover .link-button__anchor::after {
    height: 100%
  }

  .home-company__row__content:hover .link-button__anchor__icon {
    transform: translateX(10px);
  }
}

.home-company-decoration {
  position: absolute;
  left: 42px;
  bottom: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 6.0rem;
  font-weight: 200;
  letter-spacing: .04em;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  opacity: 3%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (min-width: 768px) {
  .home-company-decoration {
    left: auto;
    right: 5px;
    font-size: 10.0rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-company-decoration {
    right: 35px;
  }
}
@charset "UTF-8";

/* home recruit */

.section-home-recruit {
  margin-top: 10px;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .section-home-recruit {
    margin-top: 30px;
    margin-bottom: 100px;
  }
}

@media screen and (min-width: 1050px) {
  .home-recruit {
    max-width: 1450px;
  }
}

.home-recruit.container {
  padding-right: 10px;
  padding-left: 10px;
}
@media screen and (min-width: 768px) {
  .home-recruit.container {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (min-width: 1050px) {
  .home-recruit.container {
    padding-right: 100px;
    padding-left: 100px;
  }
}

.home-recruit__row {
  position: relative;
  overflow: hidden;
}

.home-recruit__row:not(:first-child) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .home-recruit__row:not(:first-child) {
    margin-top: 50px;
  }
}

.home-recruit__row__content {
  box-sizing: border-box;
  padding: 55px 25px 60px 45px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .home-recruit__row__content {
    padding: 70px 35px 70px 130px;
  }
}
@media screen and (min-width: 1050px) {
  .home-recruit__row__content {
    padding: 85px 100px;
  }
}

.home-recruit__row__content__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-recruit__row__content__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.15;
  transition: opacity .5s;
  z-index: 1;
}

.home-recruit__row__content__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% 50%;
  transition: .5s;
}
.home-recruit__row__content:hover .home-recruit__row__content__image img {
  transform: scale(1.05);
}
@media screen and (min-width: 1050px) {
  .home-recruit__row__content__image img {
    object-position: 80% 20%;
  }
}

.home-recruit__row__content__box {
  position: relative;
  margin-left: auto;
  padding-right: 50px;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .home-recruit__row__content__box {
    max-width: 720px;
    padding-right: 65px;
  }
}

.home-recruit__row__content__box-title-jp {
  position: absolute;
  top: 6px;
  right: 0;
  display: inline;
  padding: 3px 1.5px;
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 100;
  color: #0e0e0e;
  line-height: 1.2;
  letter-spacing: .16em;
  writing-mode: vertical-rl;
  white-space: nowrap;
  box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}
@media screen and (min-width: 768px) {
  .home-recruit__row__content__box-title-jp {
    top: 12px;
    font-size: 1.8rem;
  }
}

.home-recruit__row__content__box-title-jp.bg-vertical:after {
  left: 1px;
}

.home-recruit__row__content__box__title__en {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 3.0rem;
  color: #fff;
  letter-spacing: .12em;
  line-height: 1.2;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .home-recruit__row__content__box__title__en {
    font-size: 4.5rem;
  }
}

.home-recruit__row__content__box__title__en__text {
  position: relative;
}

.home-recruit__row__content__box__title__en__number {
  position: absolute;
  top: 13px;
  left: -21px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .1em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .home-recruit__row__content__box__title__en__number {
    font-size: 1.2rem;
  }
}

.home-recruit__row__content__box__title__en::before {
  position: absolute;
  bottom: 8px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #dbdbdb;
}
@media screen and (min-width: 768px) {
  .home-recruit__row__content__box__title__en::before {
    bottom: 11px;
  }
}

.home-recruit .home-recruit__row__content__box__text {
  margin-top: 20px;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .home-recruit .home-recruit__row__content__box__text {
    margin-top: 36px;
    font-size: 1.5rem;
  }
}

.home-recruit .home-recruit__row__content__box__button {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .home-recruit .home-recruit__row__content__box__button {
    margin-top: 50px;
  }
}

.home-recruit__row__content__box__button,
.home-recruit__row__content__box__button .link-button__anchor {
  margin-left: auto;
  margin-right: 0;
}

.home-recruit .home-recruit__row__content__box__button .link-button__anchor {
  width: 220px;
}
@media screen and (min-width: 768px) {
  .home-recruit .home-recruit__row__content__box__button .link-button__anchor {
    width: 260px;
  }
}

@media screen and (min-width: 768px) {
  .home-recruit__row__content:hover .link-button__anchor::before {
    width: 100%
  }

  .home-recruit__row__content:hover .link-button__anchor::after {
    height: 100%
  }

  .home-recruit__row__content:hover .link-button__anchor__icon {
    transform: translateX(10px);
  }
}

.home-recruit-decoration {
  position: absolute;
  left: 22px;
  bottom: -15px;
  font-family: 'Poppins', sans-serif;
  font-size: 6.0rem;
  font-weight: 200;
  color: #fff;
  letter-spacing: .04em;
  white-space: nowrap;
  overflow: hidden;
  opacity: 3%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (min-width: 768px) {
  .home-recruit-decoration {
    left: 20px;
    font-size: 10.0rem;
  }
}
@charset "UTF-8";

/* home news index */

.section-home-news {
  position: relative;
  padding-top: 70px;
  margin-bottom: 50px;
  padding-bottom: 30px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .section-home-news {
    margin-bottom: 80px;
    padding-top: 90px;
  }
}

.home-news {
  box-sizing: border-box;
  width: 100%;
}
@media screen and (min-width: 1050px) {
  .home-news {
    display: flex;
    align-items: flex-start;
    min-height: 250px;
  }
}

@media screen and (min-width: 1050px) {
  .home-news-head {
    width: 300px;
  }
}

.home-news-head__title {
  padding-left: 10px;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .home-news-head__title {
    padding-left: 0;
  }
}

.home-news-head__title__jp {
  display: table;
  margin-top: 10px;
  padding: 0 3px;
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 100;
  color: #fff;
  line-height: 1.2;
  letter-spacing: .06em;
  box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}
@media screen and (min-width: 768px) {
  .home-news-head__title__jp {
    margin-top: 8px;
    font-size: 1.6rem;
  }
}

.home-news-head__title__jp.bg-black::after {
  left: -1px;
}

.home-news-head__title__en {
  position: relative;
  display: table;
  font-size: 3.2rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .12em;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .home-news-head__title__en {
    font-size: 4.5rem;
  }
}

.home-news-head__title__en__number {
  position: absolute;
  top: 9px;
  left: -20px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .1em;
  color: #6C0000;
}
@media screen and (min-width: 768px) {
  .home-news-head__title__en__number {
    left: -25px;
    font-size: 1.3rem;
  }
}

.home-news-head__title__en::before {
  position: absolute;
  bottom: 7px;
  right: 0;
  content: '';
  width: 100%;
  height: 1px;
  padding-right: calc(50vw - 50%);
  background-color: #dbdbdb;
}
@media screen and (min-width: 768px) {
  .home-news-head__title__en::before {
    bottom: 11px;
  }
}

.home-news__menu {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .home-news__menu {
    margin-top: 45px;
  }
}

.home-news__menu__laptop-wider__list {
  position: relative;
  display: none;
}
@media screen and (min-width: 1050px) {
  .home-news__menu__laptop-wider__list {
    display: block;
    padding-left: 25px;
  }
}

.home-news__menu__laptop-wider__list::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 1px;
  height: 95%;
  background-color: #0e0e0e;
}

.home-news__menu__laptop-wider__list__item {
  position: relative;
  margin: 15px 0;
  cursor: pointer;
  line-height: 1.5;
  transition: color .3s;
}
.home-news__menu__laptop-wider__list__item:first-child {
  margin-top: 0;
}
.home-news__menu__laptop-wider__list__item:last-child {
   margin-bottom: 0;
}

.home-news__menu__laptop-wider__list__item::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -25px;
  width: 3px;
  height: 14px;
  background-color: #6C0000;
  transform: translateY(-50%);
  opacity: 0;
}

.home-news__menu__laptop-wider__list__item:hover {
  color: #6C0000;
}

.home-news__menu__laptop-wider__list__item.is-current {
  color: #6C0000;
}

.home-news__menu__laptop-wider__list__item.is-current {
  position: relative;
}


.home-news__menu__laptop-wider__list__item.is-current::before {
  opacity: 1;
}

@media screen and (min-width: 1050px) {
  .home-news__menu__palmtop {
    display: none;
  }
}

.home-news__menu__palmtop__label {
  display: block;
  position: relative;
}

.home-news__menu__palmtop__label__icon {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 16px;
  height: 9px;
  transform: translateY(-50%);
}

.home-news__menu__palmtop__label__select {
  display: block;
  width: 100%;
  padding: 14px 17px;
  outline: none;
  border: 1px solid #d2d5da;
  background: none transparent;
  color: inherit;
  font-size: 1.4rem;
  letter-spacing: .1em;
  text-indent: 0.01px;
  appearance: none;
}
@media screen and (min-width: 768px) {
  .home-news__menu__palmtop__label__select {
    padding: 15px 17px;
    font-size: 1.5rem;
  }
}

.home-news .home-news__button {
  margin-left: 0;
}
@media screen and (min-width: 1050px) {
  .home-news .home-news__button {
    max-width: 220px;
    margin-top: 45px;
  }
}

@media screen and (min-width: 1050px) {
  .home-news .home-news__button .link-button__anchor {
    max-width: 220px;
  }
}

.home-news__content {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .home-news__content {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1050px) {
  .home-news__content {
    width: 720px;
    margin-top: 8px;
    margin-left: 30px;
  }
}

.home-news__content__list {
  display: none;
  border-top: none;
}
@media screen and (min-width: 1050px) {
  .home-news__content__list {
    margin-right: 25px;
  }
}
.home-news__content__list.show {
  display: block;
}

.home-news__content__list__item:first-child .home-news__content__list__item__anchor {
  padding-top: 0;
}

.home-news-decoration {
  position: absolute;
  right: -16px;
  bottom: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 7.0rem;
  font-weight: 200;
  letter-spacing: .04em;
  writing-mode: vertical-rl;
  white-space: nowrap;
  overflow: hidden;
  opacity: 4%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (min-width: 768px) {
  .home-news-decoration {
    font-size: 11.0rem;
  }
}
@charset "UTF-8";

/* home seminar index */

.section-home-seminar {
  position: relative;
  margin-top: 85px;
  padding-bottom: 60px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .section-home-seminar {
    margin-top: 110px;
  }
}
@media screen and (min-width: 1050px) {
  .section-home-seminar {
    margin-top: 130px;
  }
}

.home-seminar__head {
  position: relative;
  padding-left: 5px;
}
@media screen and (min-width: 768px) {
  .home-seminar__head {
    padding-left: 0;
  }
}

.home-seminar__head__title {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .home-seminar__head__title {
    width: calc(100% - 200px);
  }
}

.home-seminar-title-jp {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 4px 3px;
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 100;
  color: #fff;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .home-seminar-title-jp {
    font-size: 2.0rem;
  }
}

.home-seminar-title-jp::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 1px;
  height: calc(100% + 57px);
  background-color: #e5e5e5;
}
@media screen and (min-width: 768px) {
  .home-seminar-title-jp::before {
    height: calc(100% + 49px);
  }
}
@media screen and (min-width: 1050px) {
  .home-seminar-title-jp::before {
    height: calc(100% + 50px);
  }
}

.home-seminar__head__title__en {
  position: relative;
  display: inline;
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  letter-spacing: .12em;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .home-seminar__head__title__en {
    font-size: 3.6rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-seminar__head__title__en {
    font-size: 4.2rem;
  }
}

.home-seminar__head__title__en__number {
  position: absolute;
  top: 7px;
  left: -20px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .1em;
  color: #6C0000;
}
@media screen and (min-width: 768px) {
  .home-seminar__head__title__en__number {
    top: 7px;
    left: -25px;
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-seminar__head__title__en__number {
    top: 15px;
    left: -28px;
  }
}

.home-seminar__head__title__en::before {
  position: absolute;
  bottom: 9px;
  left: -5px;
  content: '';
  width: calc(100% + 15px);
  height: 1px;
  background-color: #dbdbdb;
}
@media screen and (min-width: 768px) {
  .home-seminar__head__title__en::before {
    width: calc(100% + 23px);
    bottom: 12px;
    left: 0;
  }
}
@media screen and (min-width: 1050px) {
  .home-seminar__head__title__en::before {
    width: calc(100% + 33px);
    bottom: 14px;
  }
}

.home-seminar__head__swiper-button.swiper-button {
  background-color: transparent;
  position: relative;
  width: 133px;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .home-seminar__head__swiper-button.swiper-button {
    position: absolute;
    bottom: -5px;
    width: 150px;
    margin-left: 0;
  }
}

.home-seminar__head__swiper-button .swiper-button-prev {
  left: -7px!important;
  right: auto!important;
}

.home-seminar__head__swiper-button .swiper-button-next {
  right: -7px!important;
}

.home-seminar__contents {
  position: relative;
}

.home-seminar__slider {
  width: calc(50% + 50vw - 40px);
  margin-top: 5px;
  margin-left: 40px!important;
}
@media screen and (min-width: 768px) {
  .home-seminar__slider {
    width: calc(50% + 50vw - 65px);
    margin-top: 40px;
    margin-left: 65px!important;
  }
}

.home-seminar__slider__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 20px;
  max-width: 1050px;
  padding-right: 20px;
  position: absolute;
  top: 30px;
  right: 0;
}
@media screen and (min-width: 768px) {
  .home-seminar__slider__nav {
    margin-bottom: 40px;
    padding-right: 30px;
    top: 50px;
  }
}
@media screen and (min-width: 1050px) {
  .home-seminar__slider__nav {
    padding-right: 55px;
  }
}

.home-seminar__slider__list__item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 85%!important;
}
@media screen and (min-width: 768px) {
  .home-seminar__slider__list__item {
    width: 420px!important;
  }
}

.home-seminar__slider__list__item:focus {
  outline: none;
}

.home-seminar__slider__list__item__card {
  display: block;
  width: 100%;
}

.home-seminar__slider__list__item__card:focus {
  outline: none;
}

.home-seminar__slider__list__item__card__head {
  overflow: hidden;
}

.home-seminar__slider__list__item__card__head__image {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.5s ease 0s;
}

.home-seminar__slider__list__item__card:hover .home-seminar__slider__list__item__card__head__image {
  transform: scale(1.05)
}

.home-seminar__slider__list__item__card__head__image:before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.home-seminar .home-seminar__slider__list__item__card__body {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .home-seminar .home-seminar__slider__list__item__card__body {
    margin-top: 12px;
  }
}
@media screen and (min-width: 1050px) {
  .home-seminar .home-seminar__slider__list__item__card__body {
    margin-top: 10px;
  }
}

.home-seminar .home-seminar__slider__list__item__card__body__heading {
  margin-top: 15px;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .home-seminar .home-seminar__slider__list__item__card__body__heading {
    font-size: 1.8rem;
  }
}

.home-seminar-decoration {
  position: absolute;
  left: 22%;
  bottom: 30px;
  padding-bottom: 15px;
  font-family: 'Poppins', sans-serif;
  font-size: 7.0rem;
  font-weight: 200;
  letter-spacing: .04em;
  white-space: nowrap;
  overflow: hidden;
  opacity: 4%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (min-width: 768px) {
  .home-seminar-decoration {
    left: 43%;
    bottom: 67px;
    font-size: 10.0rem;
  }
}
@media screen and (min-width: 1050px) {
  .home-seminar-decoration {
    left: 63%;
    bottom: 70px;
  }
}
@charset "UTF-8";

/* strengths lead */

.section-strengths-lead {
  margin-top: 10px;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .section-strengths-lead {
    margin-top: 0;
    margin-bottom: 88px;
  }
}
@media screen and (min-width: 1050px) {
  .section-strengths-lead {
    margin-top: -60px;
    margin-bottom: 80px;
    padding-top: 80px;
  }
}

.section-strengths-lead .container {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  .section-strengths-lead .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (min-width: 1050px) {
  .section-strengths-lead .container {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.strengths-lead {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-top: 55px;
  padding-left: 35px;
  padding-right: 35px;
  padding-bottom: 60px;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 5px 5px 40px rgba(14, 14, 14, 0.06);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .strengths-lead {
    padding-top: 73px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 73px;
  }
}
@media screen and (min-width: 1050px) {
  .strengths-lead {
    max-width: 950px;
    padding-left: 100px;
    padding-right: 100px;
  }
}

.strengths-lead__title {
  color: #6C0000;
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 2.0rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .16em;
  word-break: break-word;
}
@media screen and (min-width: 768px) {
  .strengths-lead__title {
    font-size: 3.0rem;
  }
}

.strengths-lead__title-english {
  position: relative;
  align-items: center;
  display: flex;
  margin-top: 8px;
}
@media screen and (min-width: 1050px) {
  .strengths-lead__title-english {
    margin-top: 10px;
  }
}

.strengths-lead__title-english::before,
.strengths-lead__title-english::after {
  content: "";
  background-color: #6C0000;
  width: 11px;
  height: 1px;
}
@media screen and (min-width: 768px) {
  .strengths-lead__title-english::before,
  .strengths-lead__title-english::after {
    width: 16px;
  }
}

.strengths-lead__title-english__inner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  color: #0e0e0e;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .2em;
  word-break: break-word;
}
@media screen and (min-width: 768px) {
  .strengths-lead__title-english__inner {
    font-size: 1.3rem;
  }
}

.strengths-lead__title-english__inner::before,
.strengths-lead__title-english__inner::after {
  content: "";
  background-color: #E0E0E0;
  flex-grow: 1;
  height: 1px;
}
.strengths-lead__title-english__inner::before {
  margin-right: 18px;
}
.strengths-lead__title-english__inner::after {
  margin-left: 18px;
}
@media screen and (min-width: 768px) {
  .strengths-lead__title-english__inner::before {
    margin-right: 25px;
  }
  .strengths-lead__title-english__inner::after {
    margin-left: 25px;
  }
}

.strengths-lead__title-english__inner__text {
  max-width: 70%;
}

.strengths-lead__text {
  margin-top: 22px;
  color: #0e0e0e;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: .1em;
}
@media screen and (min-width: 768px) {
  .strengths-lead__text {
    margin-top: 35px;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1050px) {
  .strengths-lead__text {
    font-size: 1.6rem;
  }
}
@charset "UTF-8";

/* strength choose us */

@media screen and (min-width: 1050px) {
  .section__strengths__choose-us {
    margin-top: -80px;
    padding-top: 80px;
  }
}

@media screen and (min-width: 1050px) {
  .section__strengths__choose-us .heading-2 {
    padding-top: 7px;
  }
}

.section__strengths__choose-us .heading-2__deco {
  letter-spacing: .16em;
}
@media screen and (min-width: 768px) {
  .section__strengths__choose-us .heading-2__deco {
    font-size: 1.2rem;
  }
}

.section__strengths__choose-us .heading-3 {
  margin-bottom: 12px;
  font-size: 2.0rem;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .section__strengths__choose-us .heading-3 {
    margin-bottom: 20px;
    font-size: 2.6rem;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1050px) {
  .section__strengths__choose-us .heading-3 {
    margin-bottom: 15px;
  }
}

.strengths__choose-us__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  counter-reset: number;
  margin-top: 45px;
}
@media screen and (min-width: 768px) {
  .strengths__choose-us__list {
    margin-top: 58px;
  }
}
@media screen and (min-width: 1050px) {
  .strengths__choose-us__list {
    justify-content: flex-start;
    margin-top: 60px;
  }
}

.strengths__choose-us__list__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  width: 100%;
  height: fit-content;
  padding: 40px 30px;
  box-sizing: border-box;
  border: solid 1px #E0E0E0;
  overflow: hidden;
}

.strengths__choose-us__list__item:nth-child(n + 2) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .strengths__choose-us__list__item {
    width: 48%;
    height: auto;
  }
  .strengths__choose-us__list__item:nth-child(n + 2) {
    margin-top: 0;
  }
  .strengths__choose-us__list__item:nth-child(n + 3) {
    margin-top: 30px;
  }
  .strengths__choose-us__list__item:nth-child(even) {
    margin-left: 4%;
  }
}
@media screen and (min-width: 1050px) {
  .strengths__choose-us__list__item {
    width: 330px;
    padding: 40px;
  }
  .strengths__choose-us__list__item:nth-child(n + 3) {
    margin-top: 0;
  }
  .strengths__choose-us__list__item:nth-child(n + 4) {
    margin-top: 30px;
  }
  .strengths__choose-us__list__item:nth-child(even) {
    margin-left: 0;
  }
  .strengths__choose-us__list__item:nth-child(3n-1){
    margin-left: 30px;
    margin-right: 30px;
  }
  .strengths__choose-us__list__item:hover::before {
    opacity: 0;
  }
}
@media screen and (min-width: 1050px) and (max-width: 1249px) {
  .strengths__choose-us__list__item {
    width: 31.4%;
  }
  .strengths__choose-us__list__item:nth-child(3n-1){
    margin-left: 2.9%;
    margin-right: 2.9%;
  }
}


.strengths__choose-us__list__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 1;
  transition: opacity .3s;
  z-index: 1;
}

.strengths__choose-us__list__item__anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.strengths__choose-us__list__item__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.strengths__choose-us__list__item__image img {
  object-fit: cover;
  vertical-align: middle;
  width: 100%;
  max-width: 100%;
  height: 100%;
  transition: transform .3s;
}
@media screen and (min-width: 1050px) {
  .strengths__choose-us__list__item:hover .strengths__choose-us__list__item__image img {
    transform: scale(1.1);
  }
}
.strengths__choose-us__list__item__image::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0e0e0e;
  opacity: .4;
  z-index: 1;
  transition: opacity .3s;
}

.strengths__choose-us__list__item__contents {
  text-align: center;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .strengths__choose-us__list__item__contents {
    max-width: 410px;
  }
}
@media screen and (min-width: 1050px) {
  .strengths__choose-us__list__item__contents {
    max-width: 334px;
  }
}

.strengths__choose-us__list__item__contents__head {
  position: relative;
  padding-bottom: 80px;
}

.strengths__choose-us__list__item__contents__head__number {
  color: #5B5B5B;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .16em;
  transition: color .3s;
}
@media screen and (min-width: 1050px) {
  .strengths__choose-us__list__item:hover .strengths__choose-us__list__item__contents__head__number {
    color: #ffffff;
  }
}

.strengths__choose-us__list__item__contents__head__number::after {
  content: "." counter(number, decimal-leading-zero);
  counter-increment: number;
}

.strengths__choose-us__list__item__contents__icon {
  position: absolute;
  top: calc(50% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.strengths__choose-us__list__item__contents__icon__image--hover {
  display: none;
}
@media screen and (min-width: 1050px) {
  .strengths__choose-us__list__item:hover .strengths__choose-us__list__item__contents__icon__image {
    display: none;
  }
  .strengths__choose-us__list__item:hover .strengths__choose-us__list__item__contents__icon__image--hover {
    display: block;
  }
}

.strengths__choose-us__list__item__contents__text {
  color: #0e0e0e;
  font-size: 2.0rem;
  letter-spacing: .1em;
  line-height: 1.5;
  transition: color .3s;
}
@media screen and (min-width: 1050px) {
  .strengths__choose-us__list__item:hover .strengths__choose-us__list__item__contents__text {
    color: #ffffff;
  }
}

.strengths__choose-us__list__item__arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.strengths__choose-us__list__item__arrow__inner {
  position: relative;
  display: block;
  width: 65px;
  height: 60px;
}

.strengths__choose-us__list__item__arrow__inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-style: solid;
  border-width: 0 0 50px 60px;
  border-color: transparent transparent #6C0000 transparent;
}

.strengths__choose-us__list__item__arrow__inner__icon {
  position: absolute;
  bottom: 15px;
  right: 10px;
  transform: rotate(180deg);
}

.strengths__choose-us__list__item__arrow__inner__icon__path {
  fill: #fff;
}

.strengths__choose-us__columns {
  margin-top: 60px;
  box-sizing: border-box;
  counter-reset: number;
}
@media screen and (min-width: 768px) {
  .strengths__choose-us__columns {
    margin-top: 80px;
  }
}

.strengths__choose-us__columns__column {
  display: flex;
  flex-direction: column;
  min-height: inherit;
}
@media screen and (min-width: 1050px) {
  .strengths__choose-us__columns__column {
    height: auto;
    min-height: 660px;
    margin-top: -80px;
    padding-top: 80px;
  }
  .strengths__choose-us__columns__column:nth-child(even) {
    flex-direction: row-reverse;
  }
  .strengths__choose-us__columns__column:nth-child(odd) {
    flex-direction: row;
  }
}

.strengths__choose-us__columns__column:nth-child(odd) .strengths__choose-us__columns__column__content {
  background-color: #6C0000;
}

.strengths__choose-us__columns__column:nth-child(odd) .heading-3,
.strengths__choose-us__columns__column:nth-child(odd) .strengths__choose-us__columns__column__content__inner__paragraph {
  color: #fff;
}

.strengths__choose-us__columns__column:nth-child(odd) .heading-3::before {
  background-color: #fff;
}

.strengths__choose-us__columns__column__content {
  padding: 60px 30px;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .strengths__choose-us__columns__column__content {
    padding: 80px 50px;
  }
}
@media screen and (min-width: 1050px) {
  .strengths__choose-us__columns__column__content {
    width: 54.5%;
    padding: 95px 120px;
  }
}

.strengths__choose-us__columns__column__content__inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.strengths__choose-us__columns__column__content__inner__paragraph {
  margin-bottom: 5px;
  color: #5B5B5B;
  font-size: 1.3rem;
  letter-spacing: .1em;;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .strengths__choose-us__columns__column__content__inner__paragraph {
    margin-bottom: 0;
    font-size: 1.6rem;
  }
}

.strengths__choose-us__columns__column__content__image {
  position: relative;
  width: 100%;
  height: 211px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .strengths__choose-us__columns__column__content__image {
    height: 360px;
  }
}
@media screen and (min-width: 1050px) {
  .strengths__choose-us__columns__column__content__image {
    width: 45.5%;
    height: auto;
  }
}

.strengths__choose-us__columns__column__content__image::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0e0e0e;
  opacity: .1;
}

.strengths__choose-us__columns__column__content__image__decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 30px;
  border: solid 1px #fff;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: .16em;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .strengths__choose-us__columns__column__content__image__decoration {
    padding: 60px 70px;
    font-size: 1.8rem;
  }
}

.strengths__choose-us__columns__column__content__image__decoration__number {
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: .1em;
}
@media screen and (min-width: 768px) {
  .strengths__choose-us__columns__column__content__image__decoration__number {
    margin-top: 5px;
    font-size: 4.5rem;
  }
}

.strengths__choose-us__columns__column__content__image__decoration__number::after {
  content: counter(number, decimal-leading-zero);
  counter-increment: number;
}