@charset "UTF-8"

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

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */


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

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

@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700,900&subset=japanese");

/* 英字用 */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@1,400,700&display=swap');

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

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



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

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

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

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

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

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

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

@-webkit-keyframes arrow-line {
  0% {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translateX(0) scaleX(1);
    -webkit-transform-origin: right center;
    transform-origin: right center
  }

  50% {
    -webkit-transform: translateX(8px) scaleX(0.1);
    transform: translateX(8px) scaleX(0.1);
    -webkit-transform-origin: right center;
    transform-origin: right center
  }

  50.1% {
    -webkit-transform: translateX(-8px) scaleX(0);
    transform: translateX(-8px) scaleX(0);
    -webkit-transform-origin: left center;
    transform-origin: left center
  }

  100% {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translateX(0) scaleX(1);
    -webkit-transform-origin: left center;
    transform-origin: left center
  }
}

@keyframes arrow-line {
  0% {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translateX(0) scaleX(1);
    -webkit-transform-origin: right center;
    transform-origin: right center
  }

  50% {
    -webkit-transform: translateX(8px) scaleX(0.1);
    transform: translateX(8px) scaleX(0.1);
    -webkit-transform-origin: right center;
    transform-origin: right center
  }

  50.1% {
    -webkit-transform: translateX(-8px) scaleX(0);
    transform: translateX(-8px) scaleX(0);
    -webkit-transform-origin: left center;
    transform-origin: left center
  }

  100% {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translateX(0) scaleX(1);
    -webkit-transform-origin: left center;
    transform-origin: left center
  }
}

/* サイト全体で共通のリセットスタイル */
@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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

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

sub {
  vertical-align: sub;
}

sup {
  vertical-align: super;
}

button {
  outline: none;
}

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


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

html {
  color: #2C3E50;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 62.5%;
  font-weight: ;
  letter-spacing: ;
  line-height: ;
}
@media screen and (min-width: 768px) {
  html {
    font-size: ;
    line-height: ;
  }
}

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

body {
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1050px) {
  body {
    font-size: 1.4rem;
  }
}

sub {
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  sub {
    font-size: 1.1rem;
  }
}

sup {
  vertical-align: super;
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  sup {
    font-size: 1.1rem;
  }
}

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

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */



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

.natural {
  display: block;
  overflow: hidden;
}

.natural--bg {
  box-sizing: border-box;
  background-color: #F7FCFC;
  padding: 30px;
}

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

.natural:not(:last-child) {
  margin-bottom: 20px;
}

.natural:not(:first-child) {
  margin-top: 20px;
}


/* 見出し */
.natural h1 {
  font-size: 2.8rem;
  letter-spacing: .2em;
  line-height: 1.5em;
  font-weight: 500;
}

.natural h1::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * .5em);
}

@media screen and (min-width: 768px) {
  .natural h1 {
    font-size: 3.6rem;
  }
}

.natural h1:not(:first-child) {
  margin-top: 60px;
}

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

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

.natural h2::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * .5em);
}

.natural h2::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * .5em);
}

.natural h2:not(:first-child) {
  margin-top: 60px;
}

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

.natural h2:not(:last-child) {
  margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
  .natural h2:not(:last-child) {
    margin-bottom: 45px;
  }
}

.natural h3 {
  font-size: 1.8rem;
  letter-spacing: .2em;
  line-height: 1.5em;
  font-weight: 500;
}

.natural h3::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * .5em);
}

.natural h3::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * .5em);
}

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

.natural h3:not(:first-child) {
  margin-top: 25px;
}

@media screen and (min-width: 768px) {
  .natural h3:not(:first-child) {
    margin-top: 55px;
  }
}

.natural h3:not(:last-child) {
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .natural h3:not(:last-child) {
    margin-bottom: 30px;
  }
}

.natural h4 {
  color: #34495E;
  font-size: 1.6rem;
  letter-spacing: .2em;
  line-height: 1.5em;
  font-weight: 500;
}

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

.natural h4:not(:first-child) {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .natural h4:not(:first-child) {
    margin-top: 45px;
  }
}

.natural h4:not(:last-child) {
  margin-bottom: 20px;
}

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

.natural h5 {
  color: #34495E;
  font-size: 1.5rem;
  letter-spacing: .2em;
  line-height: 1.5em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .natural h5 {
    font-size: 1.8rem;
  }
}

.natural h5:not(:first-child) {
  margin-top: 30px;
}

.natural h5:not(:last-child) {
  margin-bottom: 20px;
}

.natural h6 {
  color: #34495E;
  font-size: 1.3rem;
  letter-spacing: .2em;
  line-height: 1.5em;
  font-weight: 500;
}

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

.natural h6:not(:first-child) {
  margin-top: 20px;
}

.natural h6:not(:last-child) {
  margin-bottom: 20px;
}


/* テキスト */

.natural p {
  color: #2C3E50;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.5625;
}
@media screen and (min-width: 768px) {
  .natural p {
    font-size: 16px;
    letter-spacing: .1em;
  }
}

.natural p::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5625) * .5em);
}

.natural p::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5625) * .5em);
}

.natural p:not(:first-child) {
  margin-top: 20px;
}

.natural p:not(:last-child) {
  margin-bottom: 20px;
}

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


.natural figure figcaption,
.natural caption {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: .17em;
  margin-bottom: ;
  margin-top: 20px;
}
@media screen and (max-width:767px) {
  .natural figure figcaption,
  .natural caption {
    font-size: 12px;
    line-height: 1.9;
  }
}
.natural figure {
  max-width: 750px;
  margin: 0 auto;
}

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

.natural figure figcaption:first-child,
.natural caption:first-child {
  margin-top: 0
}

.natural pre:not(:first-child) {
  margin-top: 30px;
}

.natural pre:not(:last-child) {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .natural pre {
    font-size: 13px;
  }
}

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

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

.natural a {
  color: #044A9E;
  display: inline;
  text-decoration: none;
  transition: .5s;
  position: relative;
  word-break: break-all;
}

.natural a:hover {
  color: #2C3E50;
}

.natural a:hover:after {
  background-color: #2C3E50;
}

.natural a[target="_blank"] {
	padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .natural a[target="_blank"] {
    padding-left: 15px;
  }
}

.natural a[target="_blank"]:before {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMS45NjkiIGhlaWdodD0iMTEuOTY5IiB2aWV3Qm94PSIwIDAgMTEuOTY5IDExLjk2OSI+CiAgPHBhdGggaWQ9IuODkeOCuV82NDIxIiBkYXRhLW5hbWU9IuODkeOCuSA2NDIxIiBkPSJNLTc4OC41MjksMGgtNi4zNDJhLjUyOC41MjgsMCwwLDAtLjUyOC41MjlWMi4xNjdoLTMuODdhLjcuNywwLDAsMC0uNy43djguNGEuNy43LDAsMCwwLC43LjdoOC40YS43LjcsMCwwLDAsLjctLjdWNy40aDEuNjM4QS41MjguNTI4LDAsMCwwLTc4OCw2Ljg3MVYuNTI5QS41MjkuNTI5LDAsMCwwLTc4OC41MjksMFptLTIuNjM4LDEwLjk2OWgtNy44di03LjhoMy41N3YzLjdhLjUyNy41MjcsMCwwLDAsLjUyOC41MjhoMy43Wk0tNzg5LDYuNGgtNS40VjFoNS40WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNzk5Ljk2OSkiIGZpbGw9IiM0MTQxNDEiLz4KPC9zdmc+Cg==") no-repeat center;
  background-size: contain;
	content: "";
  height: 12px;
  height: 12px;
  left: 5px;
  margin-top: -9px;
  position: absolute;
  top: 14px;
  width: 12px;
}
@media screen and (max-width: 767px) {
  .natural a[target="_blank"]:before {
    top: 15px;
    width: 10px;
    height: 10px;
    left: 3px;
  }
}
@media all and (-ms-high-contrast:none){
  .natural a[target="_blank"]:before {
    margin-top: -6px;
  }
}


.natural strong {
  font-weight: 600;
}

.natural em {
  font-style: italic;
}

@media screen and (max-width: 767px) {
  .natural td,.natural th {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.natural ul:not(:first-child),
.natural ol:not(:first-child) {
  margin-top: 20px
}

.natural ul:not(:last-child),
.natural ol:not(:last-child) {
  margin-bottom: 20px
}

.natural ul li:not(:first-child),
.natural ol li:not(:first-child) {
  margin-top: 5px
}

.natural ul li:not(:last-child),
.natural ol li:not(:last-child) {
margin-bottom: 5px
}

.natural ul > li {
  color: #34495E;
  font-size: 16px;
  padding-left: 15px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .natural ul > li {
    font-size: 13px;
  }
}

.natural ul > li:before {
  background-color: #BFD1D6;
  content: "";
  display: block;
  height: 5px;
  position: absolute;
  top: 9px;
  left: 0;
  width: 5px;
}
@media screen and (max-width: 767px) {
  .natural ul > li:before {
    top: 7px;
  }
}


/* 番号付きリスト */
.natural ol {
  display: list-item;
  padding-inline-start: 25px;
  list-style-type: decimal;
}
@media only screen and (min-width: 768px) and (max-width: 1049px) {
  .natural ol {
    padding-inline-start: 30px;
  }
}
/* Safari */
_::-webkit-full-page-media, _:future, :root .natural ol {
  padding-inline-start: 30px;
}

.natural ol li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  display: list-item;
  list-style: inherit;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .natural ol li {
    font-size: 15px;
  }
}
@-moz-document url-prefix() {
  .natural ol {
    padding-inline-start: 25px;
  }
}
@media all and (-ms-high-contrast: none) {
  .natural ol {
    padding-left: 10px;
  }
  .natural ol li {
    list-style-position: inside;
  }
}

.natural table {
  border: 1px solid #BFD1D6;
  margin: 30px 0px;
}

.natural table th {
  border-bottom: 1px solid #BFD1D6;
  background-color: #fffacd;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .natural table th {
    font-size: 16px;
  }
}

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

.natural table tr:not(:last-child) {
  border-bottom: 1px solid #BFD1D6;
}

.natural table td {
  font-size: 16px;
  padding: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .natural table td {
    font-size: 13px;
  }
}

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

/* サイト全体で共通の便利クラス */
@charset "UTF-8";


/* サイト全体で共通の便利クラス */

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

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

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

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

.full {
  -webkit-box-sizing: border-box;
  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;
}

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

.hs_cos_wrapper_type_icon {
  display: none;
}

.hs-blog-listing .hs-breadcrumb-menu .last-crumb {
  display: none;
}

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

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

/* コンテンツ */

.content {
  display: block;
  overflow: hidden;
  padding-top: 131px;
}
.content.system {
	padding-top: 210px;
}
/* @media screen and (max-width: 1049px) {
  .content {
    padding-top: 159px;
  }
} */
@media screen and (max-width: 768px) {
  .content {
    padding-top: 90px;
  }
}
@charset "UTF-8";

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */



/* エレベーター */
.elevator {
}

@media screen and (min-width: 1050px) {
  .elevator__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    min-height: 66px;
  }
}

.is-no-breadcrumb .elevator__nav {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.elevator__nav__breadcrumb {
  padding: 25px 0;
  overflow: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: calc(100% + 20px * 2);
  margin-right: -20px;
  margin-left: -20px;
  -ms-overflow-style: none;    /* IE, Edge 対応 */
  scrollbar-width: none;       /* Firefox 対応 */
}
.elevator__nav__breadcrumb::-webkit-scrollbar {  /* Chrome, Safari 対応 */
  display:none;
}

@media screen and (min-width: 768px) {
  .elevator__nav__breadcrumb {
    width: calc(100% + 50px * 2);
    margin-right: -50px;
    margin-left: -50px;
  }
}

@media screen and (min-width: 1050px) {
  .elevator__nav__breadcrumb {
    width: calc(100% - (200px - 40px));
    margin-left: 0;
    margin-right: 0;
  }
}

.elevator__nav__breadcrumb__list,
.elevator__nav__breadcrumb .hs-breadcrumb-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.3rem;
  letter-spacing: .15em;
  line-height: 2em;
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (min-width: 768px) {
  .elevator__nav__breadcrumb__list,
  .elevator__nav__breadcrumb .hs-breadcrumb-menu {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 1050px) {
  .elevator__nav__breadcrumb__list,
  .elevator__nav__breadcrumb .hs-breadcrumb-menu {
    padding-left: 0;
    padding-right: 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 {
  color: #BFD1D6;
  white-space: nowrap;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;;
  align-items: center;
}

.elevator__nav__breadcrumb__list__item:not(:first-child)::before,
.elevator__nav__breadcrumb__list .hs-breadcrumb-menu-item:not(:first-child)::before,
.elevator__nav__breadcrumb .hs-breadcrumb-menu__item:not(:first-child)::before,
.elevator__nav__breadcrumb .hs-breadcrumb-menu .hs-breadcrumb-menu-item:not(:first-child)::before {
  content: "";
  background-image: url(https://21507825.fs1.hubspotusercontent-na1.net/hubfs/21507825/iamges/common/icon_arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  margin: 0 10px;
  width: 15px;
  height: 8px;
}

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

.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: 10px;
}

.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: #2C3E50;
  -webkit-transition: all .3s;
  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;
  width: 6px;
  height: 8px;
  position: absolute;
  top: calc(50% - 4px);
  left: 0;
}

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

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

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

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */



/* フッター */

.footer {
  color: #fff;
  background-color: #34495E;
  overflow: hidden;
  position: relative;
}

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

.footer__below__copyright {
  color: #fff;
  font-family: 'Lato', sans-serif;;
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: .15em;
}

.footer--no-nav {
  text-align: center;
  padding-top: 14px;
  padding-bottom: 12px;
}

@media screen and (min-width: 768px) {
  .footer--no-nav {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.footer__utility {
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (min-width: 768px) {
  .footer__utility {
    position: absolute;
    right: 0;
    top: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

.footer__utility__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;;
}


@media screen and (max-width: 767px) {
  .footer__utility__columns__column {
    width: calc(50% - 10px);
  }
}

.footer__utility__columns__column:first-child {
  margin-right: 20px;
}
@media screen and (min-width: 768px) {
  .footer__utility__columns__column:first-child {
    margin-right: 25px;
  }
}


.footer__utility__extra-nav__list__item,
.footer__utility__columns__column__pagetop {
  border-radius: 0 0 10px 10px;
}
@media screen and (min-width: 768px) {
  .footer__utility__extra-nav__list__item,
  .footer__utility__columns__column__pagetop {
    width: 160px;
  }
}

.footer__utility__extra-nav__list__item {
  background: linear-gradient(to right, rgba(242,189,47,1) 0%,rgba(248,130,61,1) 100%);
}

.footer__utility__columns__column__pagetop {
  background-color: #2C3E50;
}

.footer__utility__extra-nav__list__item a,
.footer__utility__columns__column__pagetop a {
  display: block;
  color: #fff;
  font-family: 'Lato', sans-serif;;
  font-style: italic;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  text-transform: uppercase;
  padding: 13px 10px;
  transition: .3s;
}

.footer__utility__extra-nav__list__item a:hover,
.footer__utility__columns__column__pagetop a:hover {
  opacity: .7;
}

.footer__utility__extra-nav__list__item a::before,
.footer__utility__columns__column__pagetop a::before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer__utility__extra-nav__list__item a::before {
  width: 12px;
  height: 8px;
  background-image: url(https://21507825.fs1.hubspotusercontent-na1.net/hubfs/21507825/iamges/common/icon_mail.svg);
}

.footer__utility__columns__column__pagetop a::before {
  width: 8px;
  height: 12px;
  background-image: url(https://21507825.fs1.hubspotusercontent-na1.net/hubfs/21507825/iamges/common/icon_arrow_top.svg);
}

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

@media screen and (min-width: 768px) {
  .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: 40px;
  padding-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .footer__above__nav__columns__column:nth-child(1) {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}

@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: 15px;
  padding-bottom: 15px;
}

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

.footer__above__nav__logo {
  text-align: center;
}

@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 {
  width: 60%;
  max-width: 100%;
  vertical-align: bottom;
}

@media screen and (min-width: 768px) {
  .footer__above__nav__logo__anchor img,
  .footer__above__nav__logo a img {
    width: 80%;
  }
}

@media screen and (min-width: 1050px) {
  .footer__above__nav__logo__anchor img,
  .footer__above__nav__logo a img {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .footer__above__nav__category {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

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

@media screen and (min-width: 768px) {
  .footer__above__nav__category__list {
    border: 0;
    margin-left: -25px;
    margin-right: -25px;
    margin-top: -10px;
    padding-top: 30px;
  }
}

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

.footer__above__nav__category__list__item:not(:first-child) {
  border-top: 1px dotted #fff;
}

@media screen and (min-width: 768px) {
  .footer__above__nav__category__list__item:not(:first-child) {
    border: none;
  }
  .footer__above__nav__category__list__item:not(:last-child) {
    border-right: 1px dotted #fff;
  }

}

.footer__above__nav__category__list__item__anchor {
  display: block;
  font-size: 1.4rem;
  letter-spacing: .1em;
  line-height: 1.5em;
  font-weight: 500;
  padding: 15px 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .footer__above__nav__category__list__item__anchor {
    padding: 0;
  }
}

@media screen and (min-width: 1050px) {
  .footer__above__nav__category__list__item__anchor {
    padding: 5px 0;
  }
}

@media screen and (min-width: 1050px) {
  .footer__above__nav__category__list__item__anchor::before {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    -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);
  }
}

@media screen and (min-width: 1050px) {
  .footer__above__nav__category__list__item__anchor:hover::before {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

.copyright {
  background: #2C3E50;
  padding: 14px 0;
}

.copyright__text {
  color: #fff;
  font-family: 'Lato', sans-serif;;
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  text-align: center;
  letter-spacing: .15em;
}
@charset "UTF-8";

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */



/* ヘッダー */
.header {
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 0 10px -3px #ccc;
}

.header--no-nav {
  padding-top: 15px;
  padding-bottom: 15px;
  position: static !important;
}

@media screen and (min-width: 1050px) {
  .header--no-nav {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media screen and (min-width: 1050px) {
  .header--no-nav {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.header--no-nav .header__container {
  height: auto !important;
}


.header__upper {
  background-color: #F2F8F8;
  color: #2c3e50;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .08em;
  line-height: 1.75;
  padding: 0 20px 0 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;;
}
@media screen and (max-width: 1049px) {
  .header__upper {
    display: none;
  }
}

.header__upper__copy {
  margin-right: 20px;
}
@media screen and (max-width: 1049px) {
  .header__upper__copy {
    max-width: 250px;
  }
}


.header__upper__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;;
}
@media screen and (max-width: 1049px) {
  .header__upper__wrapper {
    width: calc(100% - 250px);
    max-width: 490px;
  }
}

.header__upper__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;;
  border-left: 1px solid #DEEAEA;
}
@media screen and (max-width: 1049px) {
  .header__upper__nav__list {
    flex-wrap: wrap;
  }
}

.header__upper__nav__list__item {
  border-right: 1px solid #DEEAEA;
  box-sizing: border-box;
}
@media screen and (max-width: 1049px) {
  .header__upper__nav__list__item {
    width: 33.3%;
    border-right: none;
  }
  .header__upper__nav__list__item:nth-child(n+4) {
    border-top: 1px solid #DEEAEA;
  }
}

.header__upper__nav__list__item a {
  padding: 9px 15px;
  box-sizing: border-box;
  transition: .3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;;
}
@media screen and (min-width: 1050px) {
  .header__upper__nav__list__item a {
    white-space: nowrap;
    min-height: 55px;
  }
}
@media screen and (max-width: 1080px) {
  .header__upper__nav__list__item a {
    padding: 9px 7px;
  }
}

@media screen and (min-width: 1050px) {
  .header__upper__nav__list__item a:hover {
    opacity: .7
  }
}

.header__upper__banner {
  padding-left: 20px;
}

.header__upper__banner img {
  max-height: 35px;
  vertical-align: bottom;
}

.header__upper__left{
  display: flex;
}

.header__upper__left .corp_language a,
.header__upper__left .corp_language span{
  font-weight: bold;
}

@media screen and (max-width: 1200px) {
  .header__upper__left{
    flex-direction: column;
  }
}

.corp_language_sp{
  display: none;
}

@media screen and (max-width: 1050px) {
  .corp_language_sp{
    display: block;
    margin-left: 20px;
  }
  .corp_language_sp a,
  .corp_language_sp span{
    font-weight: bold;
  }
  
  .corp_language_sp a{
    color: #044A9E;
  }
}

.header__upper__left a{
  color: #044A9E;
}

.header__container {
  width: 100%;
}

@media screen and (min-width: 1050px) {
  .container.header__container {
    width: auto;
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media screen and (max-width: 1049px) {
  .container.header__container {
    height: 80px;
    display: flex;
    align-items: center;
  }
}

@media screen and (max-width: 1049px) {
  .container.header__container {
    height: 60px;
  }
}

@media screen and (min-width: 1050px) {
  .header__columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: -30px;
    margin-right: -30px;
  }
}

@media screen and (min-width: 1050px) {
  .header__columns__column {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 1050px) {
  .header__columns__column {
    padding-right: 210px;
  }
}


.header__columns__column:nth-child(1) {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 1050px) {
  .header__columns__column:nth-child(1) {
    width: auto;
  }
}

@media screen and (min-width: 1050px) {
  .header__columns__column:nth-child(2) {
    padding-bottom: 25px;
  }
}

.header__logo {
  margin-right: auto;
}

.header__logo__anchor,
.header__logo a {
  display: block;
}

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

@media screen and (max-width: 1049px) {
  .header__logo__anchor img,
  .header__logo a img {
    max-width: 46px;
  }
}

.header__main {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #2C3E50;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-bottom: 70px;
}

@media screen and (min-width: 1050px) {
  .header__main {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media screen and (min-width: 1050px) {
  .header__main {
    opacity: 1;
    pointer-events: auto;
    position: static;
    background-color: #fff;
    padding: 0;
  }
}

.header__main.is-active {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 1049px) {
  .header__main.is-active {
    overflow: scroll;
    padding-bottom: 0;
    height: 100%;
  }
}

.header__main__logo {
  height: 50px;
  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;
  padding-top: 65px;
}

@media screen and (min-width: 1050px) {
  .header__main__logo {
    padding-top: 60px;
  }
}

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

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

.header__main__logo__anchor img {
  width: 60%;
}

@media screen and (min-width: 1050px) {
  .header__main__logo__anchor img {
    width: 80%;
  }
}

.header__main__content {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (min-width: 1050px) {
  .header__main__content {
    flex-flow: column-reverse;
    justify-content: center;
    align-items: center;
    border-top: none;
    margin-top: 0;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content {
    display: block;
    padding-top: 0;
    max-width: none;
  }
}

.is-hamburger-nav-open .header__main__content {
  height: 100%;
  padding-top: 35px;
  overflow-y: auto;
  overflow-x: hidden;
}

@media screen and (min-width: 560px) {
  .is-hamburger-nav-open .header__main__content {
    height: auto;
    overflow: auto;
  }
}

.header__main__content__above {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  margin-top: 30px;
  padding-right: 20px;
  padding-left: 20px;
}

@media screen and (min-width: 560px) {
  .header__main__content__above {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 50%;
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 1050px) {
  .header__main__content__above {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
    max-width: none;
    margin-top: 0;
    margin-left: 0;
  }
}

.header__main__content__above__info {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
}

@media screen and (min-width: 1050px) {
  .header__main__content__above__info {
    margin-top: 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

.header__main__content__above__info__date {
  font-size: 1.3rem;
  letter-spacing: .15em;
  font-weight: 500;
  color: #BFD1D6;
}

@media screen and (min-width: 1050px) {
  .header__main__content__above__info__date {
    color: inherit;
    width: auto;
  }
}

.header__main__content__above__info__tel {
  font-size: 1.4rem;
  letter-spacing: .2em;
  font-family: 'Lato', sans-serif;;
  font-style: italic;
  margin-left: 20px;
  font-weight: 500;
  color: #BFD1D6;
}

@media screen and (min-width: 1050px) {
  .header__main__content__above__info__tel {
    color: inherit;
    width: auto;
  }
}

.header__main__content__above__conversion {
  width: 100%;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media screen and (min-width: 1050px) {
  .header__main__content__above__conversion {
    width: auto;
    margin-left: 20px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header__main__content__above__conversion > *:not(:first-child) {
  margin-top: 15px;
}

@media screen and (min-width: 560px) {
  .header__main__content__above__conversion > *:not(:first-child) {
    margin-top: 20px;
  }
}

@media screen and (min-width: 1050px) {
  .header__main__content__above__conversion > *:not(:first-child) {
    margin-top: 0;
    margin-left: 20px;
  }
}

.header__main__content__above__conversion__list {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 200px;
  margin: 0 auto;
}

@media screen and (min-width: 1050px) {
  .header__main__content__above__conversion__list {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 0;
    top: 55px;
    z-index: 3;
  }
}

.header__main__content__above__conversion__list__item {
  width: 100%;
}


.header__main__content__above__conversion__list__item:not(:first-child) {
  margin-top: 15px;
}

@media screen and (min-width: 560px) {
  .header__main__content__above__conversion__list__item:not(:first-child) {
    margin-top: 20px;
  }
}

@media screen and (min-width: 1050px) {
  .header__main__content__above__conversion__list__item:not(:first-child) {
    margin-top: 0;
    margin-left: 20px;
  }
}

.header__main__content__above__conversion__list__item__anchor {
  text-align: center;
  display: block;
  border-radius: 5px;
  padding: 10px 10px 9px;
  font-family: 'Lato', sans-serif;;
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: .15em;
  line-height: 1.75em;
  font-weight: bold;
  color: #fff;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}
@media screen and (min-width: 1050px) {
  .header__main__content__above__conversion__list__item__anchor {
    padding: 15px 10px 14px;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content__above__conversion__list__item__anchor {
    border-radius: 0 0 10px 10px;
    font-size: 1.4rem;
    padding: 28px 10px;
  }
}

.header__main__content__above__conversion__list__item__anchor::before {
  content: "";
  background-image: url(https://21507825.fs1.hubspotusercontent-na1.net/hubfs/21507825/iamges/common/icon_mail.svg);
  display: block;
  height: 10px;
  width: 14px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 1049px) {
  .header__main__content__above__conversion__list__item__anchor::before {
    display: inline-block;
    margin: 0 10px 0 0;
  }
}

.header__main__content__above__conversion__list__item--contact .header__main__content__above__conversion__list__item__anchor {
  background: linear-gradient(to right, rgba(242,189,47,1) 0%,rgba(248,130,61,1) 100%);
}

.header__main__content__above__conversion__list__item--contact .header__main__content__above__conversion__list__item__anchor:hover {
  opacity: .8;
}

.header__main__content__below {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media screen and (min-width: 1050px) {
  .header__main__content__below {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1050px) {
  .header__main__content__below {
    margin-top: 30px;
    width: 100%;
    max-width: none;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

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

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

.header__main__content__below__nav__list {
  height: 100%;
  border-bottom: 1px solid #BFD1D6;
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__nav__list {
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__nav__list__item {
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

.header__main__content__below__nav__list__item:not(:first-child) {
  border-top: 1px solid #BFD1D6;
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__nav__list__item:not(:first-child) {
    border: none;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__nav__list__item:not(:last-child) {
    border-right: 1px dotted #BFD1D6;
  }
}

.header__main__content__below__nav__list__item__anchor {
  display: block;
  font-size: 1.4rem;
  letter-spacing: .17em;
  line-height: 1.5em;
  font-weight: 500;
  padding: 15px 40px 15px 20px;
  position: relative;
  color: #ffffff;
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__nav__list__item__anchor {
    padding: 10px 25px;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__nav__list__item__anchor {
    color: inherit;
    padding: 0;
  }
}

@media screen and (min-width: 1050px) {
  .header__main__content__below__nav__list__item__anchor::before {
    content: '';
    width: calc(100% + 8px);
    height: 3px;
    position: absolute;
    bottom: -2px;
    left: -4px;
    background-color: #BFD1D6;
    -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);
  }
}

.header__main__content__below__nav__list__item__anchor__inner {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 1050px) {
  .header__main__content__below__nav__list__item__anchor:hover::before {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

.header__main__content__below__nav__list__item__anchor::after {
  content: '';
  display: block;
  width: 6px;
  height: 10px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2IiBoZWlnaHQ9IjgiIHZpZXdCb3g9IjAgMCA2IDgiPgogIDxwYXRoIGlkPSJhcnJvdyIgZD0iTTAsOCw0LDQsMCwwSDJMNiw0LDIsOFoiIGZpbGw9IiNmZmZmZmYiLz4KPC9zdmc+Cg==");
  background-repeat: no-repeat;
  background-size: 6px 10px;
  background-position: center;
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
}

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

.header__main__content__below__nav__list__item.is-current .header__main__content__below__nav__list__item__anchor {
  color: #BFD1D6;
}

.header__main__content__utility {
  max-width: 468px;
  width: 100%;
  margin-top : 30px;
}
@media screen and (min-width: 1050px) {
  .header__main__content__utility {
    display: none;
  }
}
@media screen and (max-width: 1049px) {
  .header__main__content__utility {
    order: 3;
  }
}

.header__main__content__utility__list {
  border-top: 1px solid #fff;
  color: #fff;
  font-size: 14px;
  letter-spacing: .1em;
  font-weight: 500;
  flex-wrap: wrap;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;;
}

.header__main__content__utility__list__item {
  width: 50%;
  box-sizing: border-box;
}

.header__main__content__utility__list__item:nth-child(n+3) {
  margin-top: 15px;
}

.header__main__content__utility__list__item:nth-child(even) a {
  border-left: 1px solid #fff;
}

.header__main__content__utility__list__item a {
  display: block;
  text-align: center;
}

.header__hamburger {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  width: 50px;
  height: 50px;
  background-color: #2C3E50;
  position: absolute;
  z-index: 101;
  top: 0;
  right: 0;
  padding: 0;
  border-radius: 0 0 5px 5px;
}
@media screen and (min-width: 1049px) {
  .header__hamburger {
    width: 100px;
    height: 65px;
    top: 79px;
    border-radius: 0 0 10px 10px;
  }
}

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

.header__hamburger__inner {
  display: block;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.header__hamburger__inner__line {
  display: block;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: calc(50% - 10px);
  -webkit-transition: all .3s;
  transition: all .3s;
}

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

.is-active .header__hamburger__inner__line:nth-child(1) {
  top: 5px;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}
@media screen and (max-width: 1049px) {
  .is-active .header__hamburger__inner__line:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.header__hamburger__inner__line:nth-child(2) {
  width: 15px;
  top: 5px;
}

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

.header__hamburger__inner__line:nth-child(3) {
  width: 12px;
  top: 10px;
}

.is-active .header__hamburger__inner__line:nth-child(3) {
  width: 20px;
  top: 5px;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}
@media screen and (max-width: 1049px) {
  .is-active .header__hamburger__inner__line:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

.header__hamburger__inner__text {
  display: block;
  padding-top: 15px;
  position: relative;
}
@media screen and (max-width: 1049px) {
  .header__hamburger__inner__text {
    display: none;
  }
}

.header__hamburger__inner__text::before {
  content: "MENU";
  color: #fff;
  font-weight: bold;
  font-family: 'Lato', sans-serif;;
  font-style: italic;
  letter-spacing: .15em;
  position: absolute;
  left: 50%;
  top: 15px;
  transform: translateX(-50%);
  transition: .3s;
}

.header__hamburger__inner__text::after {
  content: "CL0SE";
  color: #fff;
  font-weight: bold;
  font-family: 'Lato', sans-serif;;
  font-style: italic;
  letter-spacing: .15em;
  position: absolute;
  left: 50%;
  top: 15px;
  transform: translateX(-50%);
  opacity: 0;
  transition: .3s;
}

.header__hamburger.is-active {
  top: 0;
}

.header__hamburger.is-active .header__hamburger__inner__text::before {
  opacity: 0;
}

.header__hamburger.is-active .header__hamburger__inner__text::after {
  opacity: 1;
}

.header__contact .header__main__content__above__conversion__list {
  position: absolute;
  right: 115px;
  top: 79px;
  width: 100px;
}
@media screen and (max-width: 1049px) {
  .header__contact .header__main__content__above__conversion__list {
    right: 60px;
    width: 50px;
    top: 0;
  }
}

.header__contact .header__main__content__above__conversion__list__item--contact .header__main__content__above__conversion__list__item__anchor {
  border-radius: 0 0 10px 10px;
  padding: 12px 10px 11px;
  height: 65px;
  box-sizing: border-box;
}
@media screen and (max-width: 1049px) {
  .header__contact .header__main__content__above__conversion__list__item--contact .header__main__content__above__conversion__list__item__anchor {
    border-radius: 0 0 5px 5px;
    height: 50px;
  }
}

.header__contact .header__main__content__above__conversion__list__item__anchor::before {
  margin: 0;
}

@media screen and (max-width: 1049px) {
  .header__contact .header__main__content__above__conversion__list__item__anchor__inner {
    display: none;
  }
}

.header__contact .header__main__content__above__conversion__list__item {
  width: 100px;
}
@media screen and (max-width: 1049px) {
  .header__contact .header__main__content__above__conversion__list__item {
    width: 50px;
  }
}

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



.header__main__content__below__nav ul {
  height: 100%;
  border-bottom: 1px solid #BFD1D6;
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__nav ul {
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__nav ul li.hs-menu-item {
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

.header__main__content__below__nav ul li.hs-menu-item:not(:first-child) {
  border-top: 1px solid #BFD1D6;
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__nav ul li.hs-menu-item:not(:first-child) {
    border: none;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__nav ul li.hs-menu-item:not(:last-child) {
    border-right: 1px dotted #BFD1D6;
  }
}

.header__main__content__below__nav ul li.hs-menu-item a {
  display: block;
  font-size: 1.4rem;
  letter-spacing: .17em;
  line-height: 1.5em;
  font-weight: 500;
  padding: 15px 40px 15px 20px;
  position: relative;
  color: #ffffff;
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__nav ul li.hs-menu-item a {
    padding: 10px 25px;
  }
}
@media screen and (min-width: 1050px) {
  .header__main__content__below__nav ul li.hs-menu-item a {
    color: inherit;
    padding: 0;
  }
}

@media screen and (min-width: 1050px) {
  .header__main__content__below__nav ul li.hs-menu-item a::before {
    content: '';
    width: calc(100% + 8px);
    height: 3px;
    position: absolute;
    bottom: -2px;
    left: -4px;
    background-color: #BFD1D6;
    -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);
  }
}

.header__main__content__below__nav ul li.hs-menu-item a__inner {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 1050px) {
  .header__main__content__below__nav ul li.hs-menu-item a:hover::before {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

.header__main__content__below__nav ul li.hs-menu-item a::after {
  content: '';
  display: block;
  width: 6px;
  height: 10px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2IiBoZWlnaHQ9IjgiIHZpZXdCb3g9IjAgMCA2IDgiPgogIDxwYXRoIGlkPSJhcnJvdyIgZD0iTTAsOCw0LDQsMCwwSDJMNiw0LDIsOFoiIGZpbGw9IiNmZmZmZmYiLz4KPC9zdmc+Cg==");
  background-repeat: no-repeat;
  background-size: 6px 10px;
  background-position: center;
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
}

@media screen and (min-width: 1050px) {
  .header__main__content__below__nav ul li.hs-menu-item a::after {
    display: none;
  }
}

.header__main__content__below__nav ul li.hs-menu-item.is-current .header__main__content__below__nav ul li.hs-menu-item a {
  color: #BFD1D6;
}



@media screen and (min-width: 1050px) {
  .header__main__content__below__nav > div.hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper {
    display: none;
  }
  .header__main__content__below__nav > div.hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper li a {
    color: #4a4a4a;
    padding: 20px;
    display: block !important;
    line-height: 20px !important;
    position: relative;
    text-decoration: none;
    transition: none;
    white-space: nowrap;
    z-index: 10;
  }
  .header__main__content__below__nav > div.hs-menu-wrapper > ul > li.hs-item-has-children {
    position: relative;
  }
  .header__main__content__below__nav > div.hs-menu-wrapper > ul > li.hs-item-has-children:hover > ul.hs-menu-children-wrapper {
    background: #fff;
    box-shadow: 2px 8px 10px rgba(0,0,0,0.2);
    display: table;
    left: 50%;
    min-width: 320px;
    position: absolute;
    transform: translate(-50%, 0);
    top: calc(100% + 20px);
  }
  .header__main__content__below__nav > div.hs-menu-wrapper > ul > li.hs-item-has-children:hover > ul.hs-menu-children-wrapper li {
    padding-left: 0;
    padding-right: 0;
  }
  .header__main__content__below__nav > div.hs-menu-wrapper > ul > li.hs-item-has-children:hover > ul.hs-menu-children-wrapper li a:hover {
    color: #fff;
    background: #044A9E;
  }
  .header__main__content__below__nav > div.hs-menu-wrapper > ul > li.hs-item-has-children:hover > ul.hs-menu-children-wrapper li a:hover:before {
    display: none;
  }
  .header__main__content__below__nav > div.hs-menu-wrapper > ul > li.hs-item-has-children:hover:after {
    content: '';
    display: block;
    height: 30px;
    left: calc(50% - 160px);
    position: absolute;
    top: 100%;
    width: 320px;
  }
}
@media screen and (max-width: 1050px) {
  .header__main__content__below__nav > div.hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper {
    margin-left: 15px;
    border-bottom: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.slick-slide img {
  display: block;
}

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

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

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

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

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

.slick-arrow.slick-hidden {
  display: none;
}
/**
 * Swiper 5.4.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 15, 2020
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color:#007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: x mandatory;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: y mandatory;
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size)/ 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size)/ 2);
  z-index: 10;
  cursor: pointer;
  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;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
  --swiper-navigation-color:#ffffff;
}

.swiper-button-next.swiper-button-black, .swiper-button-prev.swiper-button-black {
  --swiper-navigation-color:#000000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color:#ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color:#000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  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;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}


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

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */


.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-article__head__date {
  display: block;
  color: #486C9F;
  font-size: 1.2rem;
  font-family: 'Lato', sans-serif;;
  font-weight: bold;
  font-style: italic;
  letter-spacing: .15em;
  line-height: 1.5em;
}
@media screen and (min-width: 768px) {
  .blog-article__head__date {
    font-size: 1.4rem;
  }
}

.blog-article__head__heading {
  color: #2C3E50;
  font-size: 2.0rem;
  letter-spacing: .15em;
  line-height: 1.5em;
  font-weight: 700;
  margin-top: 6px;
}

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

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

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

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

@media screen and (min-width: 768px) {
  .blog-article__head__category-list__item {
    min-width: 120px;
  }
}

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

.blog-article__head__category-list__item__anchor {
  display: block;
  background-color: #044A9E;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: .1em;
  font-weight: 500;
  text-align: center;
  padding: 5px 15px;
  border-radius: 3px;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}
@media screen and (min-width: 768px) {
  .blog-article__head__category-list__item__anchor {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1050px) {
  .blog-article__head__category-list__item__anchor:hover {
    background-color: #BFD1D6;
  }
}

.blog-article__head__thumbnail {
  margin-top: 25px;
  margin-bottom: 30px;
}

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

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

.blog-article__body__content h2, .blog-article__body__summary__body h2 {
  font-size: 2.0rem;
  letter-spacing: .15em;
  line-height: 1.5em;
  font-weight: 700;
  color: #34495E;
  background-color: #F7FCFC;
  border-left: 4px solid #044A9E;
  padding: 15px;
}

@media screen and (min-width: 768px) {
  .blog-article__body__content h2, .blog-article__body__summary__body h2 {
    font-size: 2.5rem;
    border-left: 5px solid #044A9E;
    padding: 15px 20px;
  }
}

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

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

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

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

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

.blog-article__body__content h3::after, .blog-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) {
  .blog-article__body__content h3, .blog-article__body__summary__body h3 {
    font-size: 2.0rem;
  }
}

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

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

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

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

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

.blog-article__body__content h4, .blog-article__body__summary__body h4 {
  font-size: 1.7rem;
  letter-spacing: .15em;
  line-height: 1.5em;
  font-weight: 700 !important;
  color: #34495E;
  padding-left: 12px;
  border-left: 3px solid #044A9E;
  margin-top: -.5em;
  margin-bottom: -.5em;
}
@media screen and (min-width: 768px) {
  .blog-article__body__content h4, .blog-article__body__summary__body h4 {
    font-size: 1.8rem;
  }
}

.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 h4:not(:first-child), .blog-article__body__summary__body h4:not(:first-child) {
  margin-top: 35px;
}

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

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

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

.blog-article__body__content p, .blog-article__body__summary__body p {
  font-size: 1.5rem;
  letter-spacing: .2em;
  line-height: 2em;
  line-height: 2em;
  color: #34495E;
  margin-top: -.5em;
  margin-bottom: -.5em;
}

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

.blog-article__body__content p::before, .blog-article__body__summary__body p::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * .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 - 2) * .5em);
}

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

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

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

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

.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;
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px)  {
  .blog-article__body__content img, .blog-article__body__summary__body img {
    max-width: 500px;
  }
}

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

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

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

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

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

.natural.blog-article__body__summary:not(:first-child) {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .natural.blog-article__body__summary:not(:first-child) {
    margin-top: 60px;
  }
}

.blog-article__body__summary__head {
  background-color: #044A9E;
  border-radius: 5px 5px 0 0;
  padding: 11px 20px 10px;
}

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

.blog-article__body__summary__head__heading {
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: .1em;
  font-weight: 700;
}

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

.blog-article__body__summary__body {
  padding: 20px;
}

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

.blog-article__body__cta {
  background-color: #2C3E50;
  padding: 30px 20px;
}
@media screen and (min-width: 768px) {
  .blog-article__body__cta {
    padding: 40px 60px;
  }
}

.blog-article__body__cta {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .blog-article__body__cta {
    margin-top: 60px;
  }
}

.blog-article__body__cta__title {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .blog-article__body__cta__title {
    font-size: 1.8rem;
  }
}

.blog-article__body__cta__title::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * .5em);
}

.blog-article__body__cta__title::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * .5em);
}

.blog-article__body__cta__title:not(:last-child) {
  margin-bottom: 30px
}

@media screen and (min-width: 768px) {
  .blog-article__body__cta__btn {
    display: -webkit-box;
  display: -ms-flexbox;
  display: flex;;
    gap: 30px;
  }
}

@media screen and (min-width: 768px) {
  .blog-article__body__cta__btn .link-button {
    width: calc(50% - 15px);
    margin: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .blog-article__body__cta__btn .link-button:not(:first-child) {
    margin-top: 15px;
  }
  .blog-article__body__cta__btn .link-button:not(:last-child) {
    margin-bottom: 15px;
  }
}

.blog-article__body__cta__btn .link-button__anchor {
  display: block;
  min-width: inherit;
  padding: 12px 50px 12px 25px;
}

.blog-article__body__cta__btn .link-button:first-child .link-button__anchor {
  background: linear-gradient(to right,rgba(248,130,61,1) 0%,rgba(242,189,47,1) 100%);
}

.blog-article__body__cta__btn .link-button__anchor:hover {
  background-color: #044A9E;
  opacity: .7;
}



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

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

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

@media screen and (min-width: 560px) {
  .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-left: auto;
}

@media screen and (max-width: 559px) {
  .blog-article__foot__nav__list__item--next:not(:first-child) {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dotted #BFD1D6;
  }
}

@media screen and (min-width: 560px) {
  .blog-article__foot__nav__list__item--next {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
}

.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: #34495E;
  font-size: 1.6rem;
  letter-spacing: .1em;
  font-weight: 700;
}

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

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

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

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

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

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

@media screen and (min-width: 1050px) {
  a:hover .blog-article__foot__nav__list__item__block__heading {
    color: #044A9E;
  }
}

.blog-article__foot__back {
  margin-top: 60px;
  text-align: center;
}

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

.blog-article__foot__back__anchor {
  color: #044A9E;
  border-top: 1px solid #044A9E;
  font-size: 1.2rem;
  letter-spacing: .1em;
  line-height: 1.5em;
  font-weight: bold;
  position: relative;
  padding-top: 7px;
  padding-left: 30px;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.blog-article__foot__back__anchor__icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 22px;
  height: 8px;;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media screen and (min-width: 1050px) {
  .blog-article__foot__back__anchor:hover {
    opacity: .7;
  }
}

@media screen and (min-width: 1050px) {
  .blog-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 70px;
  }
}

.blog-content__main {
  width: 100%;
}

@media screen and (min-width: 1050px) {
  .blog-content__main {
    max-width: 750px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.blog-detail {
}
@media screen and (min-width: 768px) {
  .blog-detail {
    margin-top: 0;
    margin-bottom: 100px;
  }
}

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

.blog-article:before {
  content: "";
  background-color: #044A9E;
  height: 1px;
  width: 100px;
  top: -1px;
  left: 0;
  position: absolute;
}

@media screen and (min-width: 768px) {
  .blog-article:before {
    width: 120px;
  }
}

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

@media screen and (min-width: 560px) {
  .blog-content__main__article-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
  }
}

.blog-content__main__article-list__item {
  border: 1px solid #BFD1D6;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px;
}
@media screen and (min-width: 560px) {
  .blog-content__main__article-list__item {
    width: calc(50% - 15px);
  }
}

@media screen and (max-width: 559px) {
  .blog-content__main__article-list__item:not(:last-child) {
    margin-bottom: 20px;
  }
}

.blog-content__main__article-list__item:first-child {
  width: 100%;
}

.blog-content__main__article-list__item__block__image:not(:last-child) {
  margin-bottom: 30px;
}

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

.blog-content__main__article-list__item__block {
  margin-top: 7px;
}

.blog-content__main__article-list__item__block__title {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
  color: #34495E;
  -webkit-transition: color .3s;
  transition: color .3s;
}
@media screen and (min-width: 560px) {
  .blog-content__main__article-list__item__block__title {
    font-size: 2.4rem;
  }
}

.blog-content__main__article-list__item__block__title:not(:last-child) {
  margin-bottom: 30px;
}

.blog-content__main__article-list__item__block__title::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * .5em);
}

.blog-content__main__article-list__item__block__title::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * .5em);
}


@media screen and (min-width: 1050px) {
  a:hover .blog-content__main__article-list__item__block__title {
    color: #044A9E;
  }
}

.blog-content__main__article-list__item__block__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 559px) {
  .blog-content__main__article-list__item__block__category {
    margin-bottom: 20px;
    }
}

.blog-content__main__article-list__item__block__category__item,
.blog-content__aside__article-list__item__block__category__item {
  display: inline-block;
  color: #fff;
  background-color: #044A9E;
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .1em;
  padding: 5px 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .blog-content__main__article-list__item__block__category__item,
  .blog-content__aside__article-list__item__block__category__item {
    font-size: 1.3rem;
  }
}

.blog-content__main__article-list__item__block__category__item:not(:last-child),
.blog-content__aside__article-list__item__block__category__item:not(:last-child) {
  margin-right: 10px;
}

.blog-content__main__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: 560px) {
  .blog-content__main__pager {
    margin-top: 75px;
  }
}

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

.blog-content__main__pager__item__anchor {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  font-family: 'Lato', sans-serif;;
  font-style: italic;
  letter-spacing: .15em;
  color: #2C3E50;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.blog-content__main__pager__item.is-current .blog-content__main__pager__item__anchor {
  color: #044A9E;
  border-bottom: 1px solid #044A9E;
}

@media screen and (min-width: 560px) {
  .blog-content__main__pager__item__anchor {
    font-size: 1.8rem;
  }
}

.blog-content__pager__item__anchor__icon {
  display: block;
  width: 12px;
  height: 8px;
  fill: #2C3E50;
}


@media screen and (min-width: 1050px) {
  .blog-content__main__pager__item__anchor:hover {
    color: #044A9E;
  }
}

.blog-content__main__pager__item__anchor--next .blog-content__pager__item__anchor__icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.blog-content__aside {
  width: 100%;
  margin-top: 80px;
  padding-bottom: 80px;
}
@media screen and (min-width: 1050px) {
  .blog-content__aside {
    max-width: 310px;
    margin-top: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 767px) {
  .blog-content__aside {
    margin-top: 6 0px;
  }
}

.blog-content__aside__magazine {
  background-color: #34495E;
  border-radius: 5px;
  color: #fff;
  padding: 30px 20px;
}
@media screen and (max-width: 767px) {
  .blog-content__aside__magazine {
    border-radius: 0;
    margin-right: -20px;
    margin-left: -20px;
    width: 100%;
  }
  .blog-detail .blog-content__aside__magazine {
    border-radius: 5px;
    margin-right: 0;
    margin-left: 0;
    width: inherit;
  }
}

.blog-content__aside__magazine__title {
  border-bottom: 1px solid #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
  padding-bottom: 10px;
  text-align: center;
  margin-bottom: 30px;
}

.blog-content__aside__magazine form .hs-form-field label {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
}

.blog-content__aside__magazine form .hs-input {
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #fff;
  color: #34495E;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .1em;
  margin-top: 15px;
  padding: 2px 15px;
  width: 100%;
}

.blog-content__aside__magazine form .hs-input:focus {
  outline: none;
}


.blog-content__aside__magazine .hs-input::placeholder {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.5;
  color: #BFD1D6;
}
@media screen and (min-width: 768px) {
  .section-ebook_form__inner form .hs-form-field.hs-fieldtype-text .input > input::placeholder {
    font-size: 1.6rem;
  }
}

.blog-content__aside__magazine .hs-error-msg {
  color: #E61010;
  display: block;
  font-size: 1.2rem !important;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .1em;
  margin-top: 10px;
}

.blog-content__aside__magazine form .hs-richtext {
  margin-top: 20px;
}

.blog-content__aside__magazine form .hs-richtext p  {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.5625;
}

.blog-content__aside__magazine form .hs-richtext:not(:first-child) {
  margin-top: 20px;
}

.blog-content__aside__magazine form .hs-richtext:not(:last-child) {
  margin-bottom: 20px;
}

.blog-content__aside__magazine form .hs-richtext p::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5625) * .5em);
}

.blog-content__aside__magazine form .hs-richtext p::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5625) * .5em);
}

.blog-content__aside__magazine form .hs-submit {
  margin-top: 20px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .blog-content__aside__magazine form .hs-submit {
    margin-top: 25px;
    text-align: inherit;
  }
}

.blog-content__aside__magazine form .hs-submit .actions {
  border-radius: 5px;
  box-sizing: border-box;
  display: inline-block;
  text-align: left;
  min-width: 220px;
  background: linear-gradient(to right,rgba(248,130,61,1) 0%,rgba(242,189,47,1) 100%);
  padding: 17px 63px 17px 30px;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
}
@media screen and (min-width: 768px) {
  .blog-content__aside__magazine form .hs-submit .actions {
    min-width: 280px;
  }
}

.blog-content__aside__magazine form .hs-submit .actions::before {
  content: '';
  width: 22px;
  height: 8px;
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjEuNzcxIiBoZWlnaHQ9IjcuOTg5IiB2aWV3Qm94PSIwIDAgMjEuNzcxIDcuOTg5Ij48ZGVmcz48Y2xpcFBhdGggaWQ9ImEiPjxyZWN0IHdpZHRoPSIyMS43NyIgaGVpZ2h0PSI3Ljk4OSIgZmlsbD0iI2ZmZiIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDggNTUpIj48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtOCAtNTUpIiBjbGlwLXBhdGg9InVybCgjYSkiPjxwYXRoIGQ9Ik0xNS45OC4xMzRhLjguOCwwLDEsMC0uODg2LDEuMzI5bDIuNiwxLjczMkguOGEuOC44LDAsMCwwLDAsMS42SDE3LjY5MmwtMi42LDEuNzMyYS44LjgsMCwxLDAsLjg4NiwxLjMyOWw1Ljc5LTMuODZaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-position: center;
}

.blog-content__aside__magazine form .hs-submit .actions input {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: .1em;
  line-height: 1.5em;
  text-transform: uppercase;
  background-color: transparent;
  border: none;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .blog-content__aside__magazine form .hs-submit .actions:hover {
    background-color: #34495E;
  }
}

.blog-content__aside__magazine form .hs_error_rollup {
  text-align: left;
}

.blog-content__aside__heading {
  font-size: 1.8rem;
  letter-spacing: .1em;
  line-height: 1.5em;
  font-weight: 700;
  color: #34495E;
  padding-bottom: 10px;
  border-bottom: 1px solid #BFD1D6;
  position: relative;
}

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

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

.blog-content__aside__article-list {
  margin-top: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 1049px) {
  .blog-content__aside__article-list {
    display: -webkit-box;
  display: -ms-flexbox;
  display: flex;;
    flex-wrap: wrap;
    gap: 30px;
  }
}

.blog-content__aside__article-list:not(:last-child) {
  margin-bottom: 50px;
}

.blog-content__aside__article-list__item {
  padding-bottom: 15px;
  border-bottom: 1px dotted #BFD1D6;
}
.blog-content__aside__article-list__item:not(:last-child) {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 1049px) {
  .blog-content__aside__article-list__item {
    width: calc(50% - 15px);
  }
}

.blog-content__aside__article-list__item__block__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

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

.blog-content__aside__article-list__item__block__head__date {
  display: block;
  margin-top: 10px;
  font-family: 'Lato', sans-serif;;
  font-style: italic;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: .15em;
  color: #486C9F;
  -webkit-transition: color .3s;
  transition: color .3s;
}

@media screen and (min-width: 1050px) {
  a:hover .blog-content__aside__article-list__item__block__head__date {
    color: #044A9E;
  }
}

.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 {
    width: calc(100% - 100px);
    }
}

.blog-content__aside__article-list__item__block__body__title {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
  color: #34495E;
  -webkit-transition: color .3s;
  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: #044A9E;
  }
}

.blog-content__aside__article-list__item__block__category {
  margin-top: 10px;
}

.section-blog {
  margin-top: 20px;
  padding-bottom: 2px;

}
@media screen and (min-width: 768px) {
  .section-blog {
    margin-top: 30px;
    padding-bottom: 100px;
  }
}
@charset "UTF-8";

/* lp */

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

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

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

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

@media screen and (min-width: 768px) {
  .lp-form form fieldset .legal-consent-container {
    margin-top: 20px;
  }
}

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

.lp-form form fieldset.form-columns-1 .hs-form-field > .input input {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .lp-form form fieldset.form-columns-1 .hs-form-field > .input input {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #34495E;
    letter-spacing: .1em;
    line-height: 1.5;
  }
}

.lp-form form fieldset.form-columns-2 {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  max-width: inherit;
}

.lp-form form fieldset.form-columns-2 .hs-lastname,
.lp-form form fieldset.form-columns-2 .hs-firstname {
  width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .lp-form form fieldset.form-columns-2 .hs-lastname,
  .lp-form form fieldset.form-columns-2 .hs-firstname {
    width: 50% !important;
  }
}

.lp-form form fieldset.form-columns-2 .hs-lastname {
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  .lp-form form fieldset.form-columns-2 .hs-lastname {
    padding-right: 25px;
  }
}

.lp-form form fieldset.form-columns-2 .hs-firstname {
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .lp-form form fieldset.form-columns-2 .hs-firstname {
    padding-left: 25px;
    margin-top: 0 !important;
  }
}


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

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

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

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

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

@media screen and (min-width: 1050px) {
  .lp-form form .hs-form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.lp-form form .hs-form-field:not(:first-child) {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field:not(:first-child) {
    margin-top: 30px;
  }
}

.lp-form form .hs-form-field:not(.hs-fieldtype-booleancheckbox) > label {
  display: block;
  font-size: 1.6rem;
  color: #34495E;
  width: 200px;
  letter-spacing: .1em;
  line-height: 2em;
  font-weight: 500;
  border-top: 1px solid #2C3E50;
  padding-top: 9px;
}

@media screen and (max-width: 767px) {
  .lp-form form .hs-form-field:not(.hs-fieldtype-booleancheckbox) > label {
    font-size: 1.3rem;
    width: 100%;
  }
}

.lp-form form .hs-form-field:not(.hs-fieldtype-booleancheckbox) > .input {
  display: block;
  margin-top: 7px;
  margin-right: 0;
}

@media screen and (min-width: 1050px) {
  .lp-form form .hs-form-field:not(.hs-fieldtype-booleancheckbox) > .input {
    margin-top: 0;
    margin-left: 30px;
    width: calc(100% - 230px);
  }
}

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

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

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

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

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

.lp-form form .hs-form-field:not(.hs-fieldtype-booleancheckbox) > ul.hs-error-msgs .hs-error-msg {
  color: #E61010;
}

.lp-form form .hs-form-field.hs-fieldtype-text > .input input,
.lp-form form .hs-form-field.hs-fieldtype-text > .input textarea, .lp-form form .hs-form-field.hs-fieldtype-textarea > .input input,
.lp-form form .hs-form-field.hs-fieldtype-textarea > .input textarea, .lp-form form .hs-form-field.hs-fieldtype-select > .input input,
.lp-form form .hs-form-field.hs-fieldtype-select > .input textarea, .lp-form form .hs-form-field.hs-phone > .input input {
  outline: 0;
  background: none transparent;
  vertical-align: middle;
  color: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #BFD1D6;
  border-radius: 5px;
  width: 100% !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.3rem;
  letter-spacing: .15em;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 10px 14px 9px;
}

@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field.hs-fieldtype-text > .input input,
  .lp-form form .hs-form-field.hs-fieldtype-text > .input textarea, .lp-form form .hs-form-field.hs-fieldtype-textarea > .input input,
  .lp-form form .hs-form-field.hs-fieldtype-textarea > .input textarea, .lp-form form .hs-form-field.hs-fieldtype-select > .input input,
  .lp-form form .hs-form-field.hs-fieldtype-select > .input textarea, .lp-form form .hs-form-field.hs-phone > .input input {
    font-size: 1.6rem;
    padding: 13px 14px 12px;
  }
}

.lp-form form .hs-form-field.hs-fieldtype-text > .input input.hs-input.invalid.error,
.lp-form form .hs-form-field.hs-phone > .input input.hs-input.invalid.error,
.lp-form form .hs-form-field.hs-fieldtype-date > .input input.hs-input.invalid.error,
.lp-form form .hs-form-field.hs-fieldtype-textarea > .input textarea.hs-input.invalid.error {
  border-color: #E61010;
}

.lp-form form .hs-form-field.hs-fieldtype-text > .input textarea, .lp-form form .hs-form-field.hs-fieldtype-textarea > .input textarea, .lp-form form .hs-form-field.hs-fieldtype-select > .input textarea {
  min-height: 120px;
}

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

.lp-form form .hs-form-field.hs-fieldtype-text>.input input::placeholder, .lp-form form .hs-form-field.hs-phone>.input input::placeholder, .lp-form form .hs-form-field.hs-fieldtype-textarea > .input textarea::placeholder {
  font-size: 1.3rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.5;
  color: #BFD1D6;
}
@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field.hs-fieldtype-text>.input input::placeholder, .lp-form form .hs-form-field.hs-phone>.input input::placeholder, .lp-form form .hs-form-field.hs-fieldtype-textarea > .input textarea::placeholder {
    font-size: 1.6rem;
  }
}

.lp-form form .hs-form-field.hs-fieldtype-text .hs-field-desc, .lp-form form .hs-form-field.hs-fieldtype-textarea .hs-field-desc, .lp-form form .hs-form-field.hs-fieldtype-select .hs-field-desc {
  margin-top: 10px;
  font-size: 1.6rem;
  color: #2C3E50;
}

@media screen and (max-width: 1049px) {
  .lp-form form .hs-form-field.hs-fieldtype-text .hs-field-desc, .lp-form form .hs-form-field.hs-fieldtype-textarea .hs-field-desc, .lp-form form .hs-form-field.hs-fieldtype-select .hs-field-desc {
    width: auto;
  }
}

@media screen and (max-width: 767px) {
  .lp-form form .hs-form-field.hs-fieldtype-text .hs-field-desc, .lp-form form .hs-form-field.hs-fieldtype-textarea .hs-field-desc, .lp-form form .hs-form-field.hs-fieldtype-select .hs-field-desc {
    margin-left: 0;
    font-size: 1.3rem;
  }
}

.lp-form form .hs-form-field.hs-fieldtype-text .hs-field-desc[style*="display:block"] + .input, .lp-form form .hs-form-field.hs-fieldtype-textarea .hs-field-desc[style*="display:block"] + .input, .lp-form form .hs-form-field.hs-fieldtype-select .hs-field-desc[style*="display:block"] + .input {
  margin-top: 10px;
}

@media screen and (min-width: 1050px) {
  .lp-form form .hs-form-field.hs-fieldtype-text .hs-field-desc[style*="display:block"] + .input, .lp-form form .hs-form-field.hs-fieldtype-textarea .hs-field-desc[style*="display:block"] + .input, .lp-form form .hs-form-field.hs-fieldtype-select .hs-field-desc[style*="display:block"] + .input {
    margin-top: 0;
    margin-left: 230px;
  }
}

/* ヘルプテキストがある場合に落ちないようにする */
@media screen and (min-width: 1050px) {
  .lp-form form .hs-form-field .hs-field-desc[style*="display:block"] {
    width: calc(100% - 230px);
    margin-left: 30px;
  }

  .lp-form form .hs-form-field .hs-field-desc[style*="display:block"] + .input {
    margin-left: 230px;
  }
}
/* IE */
@media all and (-ms-high-contrast: none) {
  .lp-form form .hs-form-field .hs-field-desc {
    margin-top: -25px !important;
    margin-left: 230px;
  }
  .lp-form form .hs-form-field.hs-fieldtype-textarea .hs-field-desc + .input {
    margin-top: 10px;
    margin-left: 230px;
  }
}

.lp-form form .hs-form-field.hs-fieldtype-text .hs-error-msgs, .lp-form form .hs-form-field.hs-phone .hs-error-msgs, .lp-form form .hs-form-field.hs-fieldtype-textarea .hs-error-msgs, .lp-form form .hs-form-field.hs-fieldtype-select .hs-error-msgs, .lp-form form .hs-form-field.hs-fieldtype-checkbox .hs-error-msgs, .lp-form form .hs-form-field.hs-fieldtype-radio .hs-error-msgs, .lp-form form .hs-form-field.hs-fieldtype-file .hs-error-msgs, .lp-form form .hs-form-field.hs-fieldtype-date .hs-error-msgs {
  color: #E61010;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: .05em;
  margin-top: 10px;
  margin-left: 230px;
  width: 100%;
}

@media screen and (max-width: 1049px) {
  .lp-form form .hs-form-field.hs-fieldtype-text .hs-error-msgs, .lp-form form .hs-form-field.hs-phone .hs-error-msgs, .lp-form form .hs-form-field.hs-fieldtype-textarea .hs-error-msgs, .lp-form form .hs-form-field.hs-fieldtype-select .hs-error-msgs, .lp-form form .hs-form-field.hs-fieldtype-checkbox .hs-error-msgs, .lp-form form .hs-form-field.hs-fieldtype-radio .hs-error-msgs, .lp-form form .hs-form-field.hs-fieldtype-file .hs-error-msgs, .lp-form form .hs-form-field.hs-fieldtype-date .hs-error-msgs {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .lp-form form .hs-form-field.hs-fieldtype-text .hs-error-msgs, .lp-form form .hs-form-field.hs-phone .hs-error-msgs, .lp-form form .hs-form-field.hs-fieldtype-textarea .hs-error-msgs, .lp-form form .hs-form-field.hs-fieldtype-select .hs-error-msgs {
    font-size: 1.0rem;
  }
}

.lp-form form .hs-form-field.hs-fieldtype-select > .input {
  position: relative;
  max-width: inherit;
}
@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field.hs-fieldtype-select > .input {
    max-width: 350px !important;
  }
}

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

/* IE */
@media all and (-ms-high-contrast: none) {
  .lp-form form .hs-form-field.hs-fieldtype-select > .input::before {
    display: none;
  }
}

.lp-form form .hs-form-field.hs-fieldtype-select > .input select.hs-input {
  display: block;
  outline: none;
  text-indent: 0.01px;
  background: none transparent;
  vertical-align: middle;
  color: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #BFD1D6;
  border-radius: 5px;
  width: 100%;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .1em;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 11px 30px 11px 14px;
}

@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field.hs-fieldtype-select > .input select.hs-input {
    font-size: 1.6rem;
    font-weight: 400;
    padding: 12px 40px 14px 14px;
    max-height: 50px;
  }
}

/* IE */
@media all and (-ms-high-contrast: none) {
  .lp-form form .hs-form-field.hs-fieldtype-select > .input select.hs-input {
    padding: 15px 25px 9px 12px;
  }
}

.lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input {
  text-align: center;
}

.lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input label {
  display: inline-block;
}

.lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input label > input {
  display: none;
}

.lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input label > input:checked + span::after {
  opacity: 1;
  pointer-events: auto;
}

.lp-form form .checkbox-title {
  display: inline-block;
  float: left;
  font-size: 1.3rem;
  letter-spacing: .15em;
  line-height: 2em;
  font-weight: 400;
  border-top: 1px solid #2C3E50;
  width: 100%;
  padding-top: 9px;
}

@media screen and (min-width: 768px) {
  .lp-form form .checkbox-title {
    font-size: 1.6rem;
    width: 200px;
  }
}

.lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input {
  margin-left: 0;
  margin-top: 5px;
  text-align: center;
}
@media screen and (min-width: 1050px) {
  .lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input {
    margin-left: 30px;
  }
}

.lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input label > span {
  display: inline-block;
  font-size: 1.7rem;
  letter-spacing: .2em;
  line-height: 2em;
  font-weight: 500;
  text-align: left;
  position: relative;
  padding-left: 40px;
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input label > span {
    font-size: 1.5rem;
    padding-left: 30px;
  }
}

.lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input label > span::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid #BFD1D6;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: transparent;
  position: absolute;
  top: 4px;
  left: 0;
}

@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input label > span::before {
    width: 25px;
    height: 25px;
  }
}

/* IE */
@media all and (-ms-high-contrast: none) {
  .lp-form form fieldset.form-columns-1 .legal-consent-container .hs-fieldtype-booleancheckbox .input label > span::before {
    top: 5px;
  }
  .lp-form form fieldset.form-columns-1 .legal-consent-container .hs-fieldtype-booleancheckbox .input label > span::after {
    top: 11px !important;
  }
}

.lp-form form fieldset.form-columns-1 .legal-consent-container .hs-fieldtype-booleancheckbox label>input:checked+span::before {
  border-color: #BFD1D6;
  background-color: #BFD1D6;
}

.lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input label > span::after {
  content: '';
  width: 11px;
  height: 8px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNi45NiAxMS40NCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNmZmY7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGlkPSLjg5HjgrlfOTciIGRhdGEtbmFtZT0i44OR44K5IDk3IiBjbGFzcz0iY2xzLTEiIGQ9Ik0wLDUuMWw2Ljg5LDYuMzRMMTcsMi4yMSwxNC43LDAsNi44OSw3LjMxLDIuMDcsMi43N1oiLz48L2c+PC9nPjwvc3ZnPg==");
  background-size: cover;
  position: absolute;
  top: 10px;
  left: 4px;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
  opacity: 0;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input label > span::after {
    width: 17px;
    height: 11px;
    top: 11px;
  }
}

.lp-form form .hs-form-field.hs-fieldtype-booleancheckbox .input label > span .aInput {
  text-decoration: underline;
}

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

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

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

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

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

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

.fn-date-picker .pika-label {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #34495E;
  font-family: 'Noto Sans JP', sans-serif;
}

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

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

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

.fn-date-picker .pika-table th {
  border-style: inherit !important;
  color: #34495E !important;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px  !important;
  font-weight: 500  !important;
}
@media screen and (min-width: 768px) {
  .fn-date-picker .pika-table th {
    font-size: 13px  !important;
  }
}

.fn-date-picker .pika-button {
  border-radius: 2px !important;
  color: #34495E !important;
  font-size: 13px !important;
  font-family: 'Lato', sans-serif;;
  font-weight: 500;
  background-color: #F7FCFC !important;
}

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

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

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

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

.lp-form form .hs-form-field .input .hs-dateinput input.hs-input {
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #BFD1D6;
  color: #34495E;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .1em;
  height: 50px;
  padding: 15px;
  width: 100%;
}

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

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

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

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

.legal-consent-container .hs-error-msgs label {
  color: #E61010 !important;
  font-size: 1.0rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: .05em;
}
@media screen and (min-width: 768px) {
  .legal-consent-container .hs-error-msgs label {
    font-size: 1.2rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lp-form form .hs-submit .actions {
  border-radius: 5px;
  box-sizing: border-box;
  display: inline-block;
  text-align: left;
  min-width: 280px;
  background-color: #044A9E;
  padding: 19px 63px 17px 30px;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.lp-form form .hs-submit .actions::before {
  content: '';
  width: 22px;
  height: 8px;
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjEuNzcxIiBoZWlnaHQ9IjcuOTg5IiB2aWV3Qm94PSIwIDAgMjEuNzcxIDcuOTg5Ij48ZGVmcz48Y2xpcFBhdGggaWQ9ImEiPjxyZWN0IHdpZHRoPSIyMS43NyIgaGVpZ2h0PSI3Ljk4OSIgZmlsbD0iI2ZmZiIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDggNTUpIj48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtOCAtNTUpIiBjbGlwLXBhdGg9InVybCgjYSkiPjxwYXRoIGQ9Ik0xNS45OC4xMzRhLjguOCwwLDEsMC0uODg2LDEuMzI5bDIuNiwxLjczMkguOGEuOC44LDAsMCwwLDAsMS42SDE3LjY5MmwtMi42LDEuNzMyYS44LjgsMCwxLDAsLjg4NiwxLjMyOWw1Ljc5LTMuODZaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-position: center;
}

.lp-form form .hs-submit .actions input {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: .1em;
  line-height: 1.5em;
  text-transform: uppercase;
  background-color: transparent;
  border: none;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .lp-form form .hs-submit .actions:hover {
    background-color: #34495E;
  }
}

.hs_error_rollup {
  color: #E61010;
  margin-top: 30px;
  font-size: 1.0rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: .05em;
}
@media screen and (min-width: 768px) {
  .hs_error_rollup {
    font-size: 1.2rem;
  }
}
@charset "UTF-8";

/* lp KVなしフォームスタイル */

.lp_no-kv-wrapper {
  position: relative;
}
.lp_no-kv-wrapper::before {
  content: "";
  background-color: #BFD1D6;
  width: calc(100% - 20px);
  height: 1px;
  top: 0;
  left: 10px;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .lp_no-kv-wrapper::before {
    width: calc(100% - 70px);
    left: 35px;
  }
}

.lp_no-kv-wrapper .container--full {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .lp_no-kv-wrapper .container--full {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (min-width: 1050px) {
  .lp_no-kv-wrapper .container--full {
    width: calc(100% - 320px);
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

.lp_no-kv-wrapper .container--full .elevator__nav .elevator__nav__breadcrumb {
  margin-left: inherit;
  margin-right: inherit;
}
.lp_no-kv-wrapper .container--full .elevator__nav .elevator__nav__breadcrumb .hs-breadcrumb-menu {
  padding-left: 0;
}

.lp_no-kv-wrapper .lp-form {
  padding-top: 40px;
}

.lp_no-kv-wrapper .lp-form h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: #2C3E50;
  letter-spacing: .1em;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 45px;
  border-top: 1px solid #BFD1D6;
  padding-top: 80px;
}
@media screen and (min-width: 768px) {
  .lp_no-kv-wrapper .lp-form h3 {
    font-size: 3.2rem;
    padding-top: 100px;
  }
}

.lp_no-kv-wrapper .lp-form .hs-form-field.hs-number_of_copies > .input {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .lp_no-kv-wrapper .lp-form .hs-form-field.hs-number_of_copies > .input {
    max-width: 270px;
  }
}

.lp_no-kv-wrapper .lp-form form fieldset.form-columns-2 .hs-zip,
.lp_no-kv-wrapper .lp-form form fieldset.form-columns-2 .hs-state,
.lp_no-kv-wrapper .lp-form form fieldset.form-columns-2 .hs-city,
.lp_no-kv-wrapper .lp-form form fieldset.form-columns-2 .hs-address {
  width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .lp_no-kv-wrapper .lp-form form fieldset.form-columns-2 .hs-zip,
  .lp_no-kv-wrapper .lp-form form fieldset.form-columns-2 .hs-state,
  .lp_no-kv-wrapper .lp-form form fieldset.form-columns-2 .hs-city,
  .lp_no-kv-wrapper .lp-form form fieldset.form-columns-2 .hs-address {
    width: 50% !important;
  }
}

.lp_no-kv-wrapper .lp-form form fieldset.form-columns-2 .hs-zip,
.lp_no-kv-wrapper .lp-form form fieldset.form-columns-2 .hs-city {
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  .lp_no-kv-wrapper .lp-form form fieldset.form-columns-2 .hs-zip,
  .lp_no-kv-wrapper .lp-form form fieldset.form-columns-2 .hs-city {
    padding-right: 25px;
  }
}

.lp_no-kv-wrapper .lp-form form fieldset.form-columns-2 .hs-state,
.lp_no-kv-wrapper .lp-form form fieldset.form-columns-2 .hs-address {
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .lp_no-kv-wrapper .lp-form form fieldset.form-columns-2 .hs-state,
  .lp_no-kv-wrapper .lp-form form fieldset.form-columns-2 .hs-address {
    padding-left: 25px;
    margin-top: 0 !important;
  }
}
@charset "UTF-8";


/* ニュース リスト */
.news-archive__menu {
  margin-bottom: 15px;
}
@media screen and (max-width: 1049px) {
  .news-archive__menu {
    margin-bottom: 5px;
  }
}

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

.news-archive__menu__laptop-wider__list__item:not(:first-child) {
  padding: 0 13px;
  border-left: 1px dotted #BFD1D6;
}

.news-archive__menu__laptop-wider__list__item:first-child {
  margin-right: 10px;
}

@media screen and (min-width: 1050px) {
  .news-archive__menu__laptop-wider__list__item:hover {
    color: #2C3E50;
  }
}

.news-archive__menu__laptop-wider__list__item.is-current {
  color: #044A9E;
}

.news-archive__menu__laptop-wider__list__item__anchor {
  display: block;
  padding: 2px 0 2px 0;
  -webkit-transition: color .3s;
  transition: color .3s;
  letter-spacing: .1em;
  font-size: 16px;
  line-height: 1.5;
}

.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: 50px;
  height: 5px;
  left: calc(50% - 25px);
  bottom: -17px;
  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: #044A9E;
  height: 4px;
  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: calc(50% - 6px);
  right: 16px;
  width: 8px;
  height: 12px;
}

.news-archive__menu__palmtop__label__icon path {
  fill: #2C3E50;
}

.news-archive__menu__palmtop__label__select {
  display: block;
  outline: none;
  text-indent: 0.01px;
  text-overflow: '';
  background: none transparent;
  vertical-align: middle;
  color: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #BFD1D6;
  border-radius: 5px;
  width: 100%;
  font-size: 1.6rem;
  letter-spacing: .15em;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 10px;
}

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

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

.news-archive__content__list__item__anchor {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

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

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

@media screen and (min-width: 1050px) {
  .news-archive__content__list__item__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.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;
}
@media screen and (min-width: 768px) {
  .news-archive__content__list__item__content__head {
    min-width: 242px;
  }
}

.news-archive__content__list__item__content__head__date {
  font-family: 'Lato', sans-serif;;
  font-style: italic;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: .15em;
  color: #486C9F;
}
@media screen and (min-width: 768px) {
  .news-archive__content__list__item__content__head__date {
    font-size: 1.4rem;
  }
}

.news-archive__content__list__item__content__head__category {
  margin-left: 15px;
}

@media screen and (min-width: 768px) {
  .news-archive__content__list__item__content__head__category {
    margin-left: 20px;
  }
}

.news-archive__content__list__item__content__head__category__inner {
  display: inline-block;
  color: #fff;
  background-color: #044A9E;
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .1em;
  padding: 5px 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  min-width: 120px;
}

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

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

@media screen and (min-width: 1050px) {
  .news-archive__content__list__item__content__body {
    margin-top: 0;
    margin-left: 20px;
  }
}

.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: 560px) {
  .news-archive__pager {
    margin-top: 75px;
  }
}

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

.news-archive__pager__item__anchor {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  font-family: 'Lato', sans-serif;;
  font-style: italic;
  letter-spacing: .15em;
  color: #2C3E50;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.news-archive__pager__item.is-current .news-archive__pager__item__anchor {
  color: #044A9E;
  border-bottom: 1px solid #044A9E;
}

@media screen and (min-width: 560px) {
  .news-archive__pager__item__anchor {
    font-size: 1.8rem;
  }
}

.news-archive__pager__item__anchor__icon {
  display: block;
  width: 12px;
  height: 8px;
  fill: #2C3E50;
}


@media screen and (min-width: 1050px) {
  .news-archive__pager__item__anchor:hover {
    color: #044A9E;
  }
}

.news-archive__pager__item__anchor--next .news-archive__pager__item__anchor__icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}


/* ニュース 詳細 */

.news-article {
  border-top: 1px solid #BFD1D6;
  padding-top: 20px;
  position: relative;
}
.news-article:before {
  content: "";
  background-color: #044A9E;
  height: 1px;
  width: 100px;
  top: -1px;
  left: 0;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .news-article:before {
    width: 120px;
  }
}

.news-article__head__date {
  display: block;
  color: #486C9F;
  font-size: 1.2rem;
  font-family: 'Lato', sans-serif;;
  font-weight: bold;
  font-style: italic;
  letter-spacing: .15em;
  line-height: 1.5em;
}

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

.news-article__head__heading {
  color: #2C3E50;
  font-size: 2.0rem;
  letter-spacing: .15em;
  line-height: 1.5em;
  font-weight: 700;
  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;
  min-width: 100px;
  margin-right: 6px;
}

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

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

.news-article__head__category-list__item__anchor {
  display: block;
  background-color: #044A9E;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: .1em;
  font-weight: 500;
  text-align: center;
  padding: 5px 15px;
  border-radius: 3px;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

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

.news-article__head__category-list__item__anchor:hover {
  background-color: #BFD1D6;
}

.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 h2, .news-article__body__summary__body h2 {
  font-size: 2.0rem;
  letter-spacing: .15em;
  line-height: 1.5em;
  font-weight: 700;
  color: #34495E;
  background-color: #F7FCFC;
  border-left: 4px solid #044A9E;
  padding: 7px 15px 15px 15px;
}

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

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

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

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

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

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

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

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

.news-article__body__content h3::after, .news-article__body__summary__body h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #486C9F;
  border-bottom: 1px solid #486C9F;
  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: .15em;
  line-height: 1.5em;
  font-weight: 700;
  color: #34495E;
  padding-left: 12px;
  border-left: 3px solid #044A9E;
}
@media screen and (min-width: 768px) {
  .news-article__body__content h4, .news-article__body__summary__body h4 {
    font-size: 1.8rem;
  }
}

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

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

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

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

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

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

.news-article__body__content p, .news-article__body__summary__body p {
  color: #2C3E50;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.5625;
}

.news-article__body__content p::before, .news-article__body__summary__body p::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5625) * .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 - 1.5625) * .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: 1030px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.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 #BFD1D6;
  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: #34495E;
}

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

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

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

@media screen and (min-width: 560px) {
  .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 #BFD1D6;
}

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

.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: #34495E;
  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: 560px) {
  .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: 560px) {
  .news-article__foot__nav__list__item__block__heading {
    max-width: 210px;
  }
}

a:hover .news-article__foot__nav__list__item__block__heading {
  color: #2C3E50;
}

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

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

.news-article__foot__back__anchor {
  color: #34495E;
  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: #34495E;
  -webkit-transition: fill .3s;
  transition: fill .3s;
}

a:hover .news-article__foot__back__anchor__icon__circle {
  fill: #2C3E50;
}

.news-article__foot__back__anchor:hover {
  color: #2C3E50;
}

#js-news-laptop-wider-select-menu li:hover {
  cursor: pointer;
}
@charset "UTF-8";
/* blog */

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */



/* 記事一覧 */

.section-case {
  padding-top: 20px;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .section-case {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}

@media screen and (min-width: 560px) {
  .blog-case__article-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
  }
}

.blog-case__article-list__item {
  border: 1px solid #BFD1D6;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px;
}
@media screen and (min-width: 1050px) {
  .blog-case__article-list__item {
    width: calc(33.333% - 20px);
  }
}
@media screen and (min-width: 560px) {
  .blog-case__article-list__item {
    width: calc(50% - 15px);
  }
}

@media screen and (max-width: 559px) {
  .blog-case__article-list__item:not(:last-child) {
    margin-bottom: 20px;
  }
}


.blog-case__article-list__item__block__image:not(:last-child) {
  margin-bottom: 30px;
}

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

.blog-case__article-list__item__block {
  margin-top: 7px;
}

.blog-case__article-list__item__block__title {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
  color: #34495E;
  -webkit-transition: color .3s;
  transition: color .3s;
}
@media screen and (min-width: 560px) {
  .blog-case__article-list__item__block__title {
    font-size: 2.4rem;
  }
}

.blog-case__article-list__item__block__title:not(:last-child) {
  margin-bottom: 30px;
}

.blog-case__article-list__item__block__title::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * .5em);
}

.blog-case__article-list__item__block__title::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * .5em);
}

@media screen and (min-width: 1050px) {
  a:hover .blog-case__article-list__item__block__title {
    color: #044A9E;
  }
}

.blog-case__article-list__item__block__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 559px) {
  .blog-case__article-list__item__block__category {
    margin-bottom: 20px;
    }
}

.blog-case__article-list__item__block__category__item,
.blog-case__aside__article-list__item__block__category__item {
  display: inline-block;
  color: #fff;
  background-color: #044A9E;
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .1em;
  padding: 5px 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .blog-case__article-list__item__block__category__item,
  .blog-case__aside__article-list__item__block__category__item {
    font-size: 1.3rem;
  }
}

.blog-case__article-list__item__block__category__item:not(:last-child),
.blog-case__aside__article-list__item__block__category__item:not(:last-child) {
  margin-right: 10px;
}

.blog-case__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: 560px) {
  .blog-case__pager {
    margin-top: 75px;
  }
}

.blog-case__pager__item:not(:first-child) {
  margin-left: 20px;
}

.blog-case__pager__item__anchor {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  font-family: 'Lato', sans-serif;;
  font-style: italic;
  letter-spacing: .15em;
  color: #2C3E50;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.blog-case__pager__item.is-current .blog-case__pager__item__anchor {
  color: #044A9E;
  border-bottom: 1px solid #044A9E;
}

@media screen and (min-width: 560px) {
  .blog-case__pager__item__anchor {
    font-size: 1.8rem;
  }
}

.blog-case__pager__item__anchor__icon {
  display: block;
  width: 12px;
  height: 8px;
  fill: #2C3E50;
}


@media screen and (min-width: 1050px) {
  .blog-case__pager__item__anchor:hover {
    color: #044A9E;
  }
}

.blog-case__pager__item__anchor--next .blog-case__pager__item__anchor__icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.case-download {
  background-color: #2C3E50;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .case-download {
    padding: 35px;
  }
}

.case-download__inner {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 5px;
  padding: 40px 0;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .case-download__inner {
    padding: 70px 0;
  }
}

.case-download__inner::before {
  content: "";
  background-color: rgba(7,57,88,.3);
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

.case-download__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;;
}


@media screen and (min-width: 768px) {
  .case-download__btn {
    display: -webkit-box;
  display: -ms-flexbox;
  display: flex;;
    gap: 30px;
  }
}

@media screen and (min-width: 768px) {
  .case-download__btn .link-button {
    width: calc(50% - 15px);
    margin: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .case-download__btn .link-button:not(:first-child) {
    margin-top: 15px;
  }
  .case-download__btn .link-button:not(:last-child) {
    margin-bottom: 15px;
  }
}

.case-download__btn .link-button__anchor {
  display: block;
  min-width: inherit;
  padding: 12px 50px 12px 25px;
  max-width: 280px;
  margin: 0 auto;
}

.case-download__btn .link-button:first-child .link-button__anchor {
  background: linear-gradient(to right,rgba(248,130,61,1) 0%,rgba(242,189,47,1) 100%);
}

.case-download__btn .link-button__anchor:hover {
  background-color: #044A9E;
  opacity: .7;
}


/* 記事詳細 */

.blog-content__aside__profile {
  background-color: #F7FCFC;
  border-radius: 5px;
  padding: 15px;
}

.blog-content__aside__profile__heading {
  border-bottom: 1px solid #2C3E50;
  color: #2C3E50;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
  padding-bottom: 10px;
  margin-bottom: 25px;
}

.blog-content__aside__profile__heading::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * .5em);
}

.blog-content__aside__profile__heading::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * .5em);
}

.blog-content__aside__profile__logo img {
  max-width: 100%;
  width: 100%;
  margin-bottom: 20px;
}

.blog-content__aside__profile__description-list__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;;
  border-bottom: 1px dotted #BFD1D6;
  padding-bottom: 5px;
  margin-bottom: 6px;
}

.blog-content__aside__profile__description-list__group__term {
  color: #486C9F;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
  margin-right: 25px;
  width: 50px;
}
@media screen and (max-width: 767px) {
  .blog-content__aside__profile__description-list__group__term {
    font-size: 1.3rem;
  }
}

.blog-content__aside__profile__description-list__group__desc {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
  width: calc(100% - 75px);
}
@media screen and (max-width: 767px) {
  .blog-content__aside__profile__description-list__group__desc {
    font-size: 1.3rem;
  }
}

.blog-content__aside__profile__title {
  color: #486C9F;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .blog-content__aside__profile__title {
    font-size: 1.3rem;
  }
}

.blog-content__aside__profile__title__text.paragraph {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .blog-content__aside__profile__title__text.paragraph {
    font-size: 1.3rem;
  }
}

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

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

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */


/* カラム */

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

@media screen and (min-width: 768px) {
  .columns__column {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 25px;
    padding-right: 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-left: 25px;
  padding-right: 25px;
}

.columns .columns__column {
  padding-left: 25px;
  padding-right: 25px;
}

.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--two>.columns__column:nth-child(n+3){
  margin-top: 50px
}


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

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

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

.columns--two>.columns__column {
  width: 50%
}
@media screen and (max-width:767px) {
  .columns--two {
    margin-left: 0;
    margin-right: 0
  }
  .columns--two>.columns__column {
    width: 100%;
    padding: 0;
    -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;;
  }
  .columns--two>.columns__column:not(:first-child) {
    margin-top: 30px;
    -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;;
  }
  .columns--two>.columns__column:not(:last-child) {
    margin-bottom: 0;
    -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;;
  }
}
@media screen and (max-width:1049px) {
  .columns--two.columns--to-two {
    margin-left: -15px;
    margin-right: -15px
  }
  .columns--two.columns--to-two>.columns__column {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;;
  }
  .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
  }
}

/* 1:2カラム */
.columns--one-two {
  margin-left: -25px;
  margin-right: -25px;
}

.columns--one-two > .columns__column {
  padding-left: 25px;
  padding-right: 25px;
}

.columns--one-two>.columns__column:nth-child(odd) {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;;
}
.columns--one-two>.columns__column:nth-child(even) {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;;
}
@media screen and (max-width: 1049px) {
  .columns--one-two {
    margin-left: -15px;
    margin-right: -15px;
  }

  .columns--one-two > .columns__column {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width:767px) {
  .columns--one-two {
    margin-left: 0;
    margin-right: 0
  }
  .columns--one-two>.columns__column {
    width: 100%;
    padding: 0;
    -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;;
  }
  .columns--one-two>.columns__column:nth-child(1) {
    -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;;
  }
  .columns--one-two>.columns__column:nth-child(2) {
    -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;;
    margin-top: 20px
  }
}

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


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

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

.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 {
    width: 100%;
    -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;;
  }
  .columns--three>.columns__column:not(:first-child) {
    margin-top: 30px;
    -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;;
  }
  .columns--three>.columns__column:not(:last-child) {
    margin-bottom: 0;
    -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;;
  }
  .columns--three.columns--to-two>.columns__column {
    -webkit-box-flex: ;
  -ms-flex: inherit;
  flex: inherit;;
  }
}
@media screen and (max-width:1049px) {
.columns--three.columns--to-one>.columns__column {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px
  }
}
@media screen and (max-width:767px) {
  .columns--three.columns--to-one>.columns__column {
    width: 100%;
    padding-left: 0;
    padding-right: 0

  }
}
@media screen and (max-width:767px) {
  .columns--three.columns--to-two {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
  }
  .columns--three.columns--to-two>.columns__column {
    width: 50%;
    padding-left: 15px;
    padding-right: 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 {
    -webkit-box-flex: ;
  -ms-flex: inherit;
  flex: inherit;;
  }
}

/* 4カラム */

.columns.columns--four {
  margin-left: -15px;
  margin-right: -15px;
}
.columns--four>.columns__column {
  width: 25%;
  padding-left: 15px;
  padding-right: 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-left: 0;
    margin-right: 0;
  }

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

  .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-left: -15px;
    margin-right: -15px;
  }
  .columns--four.columns--to-two>.columns__column {
    width: 50%;
    padding-left: 15px;
    padding-right: 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) {
    -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;;
}
@media screen and (max-width:767px) {
  .columns--reverse>.columns__column:nth-child(1) {
    -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;;
  }
}
.columns--reverse>.columns__column:nth-child(2) {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;;
}
@media screen and (max-width:767px) {
  .columns--reverse>.columns__column:nth-child(2) {
    -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;;
  }
}
.columns--vertical-center {
    -webkit-box-align: center;
  -ms-flex-align: 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) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 365px;
  }
}

@media screen and (min-width: 768px) {
  .l_h2_gt_r_img .columns__column:nth-child(2) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    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) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

@media screen and (min-width: 768px) {
  .l_h2_r_img .columns__column:nth-child(2) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    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) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 365px;
  }
}

@media screen and (min-width: 768px) {
  .l_h3_gt_r_img .columns__column:nth-child(2) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    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) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

@media screen and (min-width: 768px) {
  .l_h3_r_img .columns__column:nth-child(2) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    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) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 365px;
  }
}

@media screen and (min-width: 768px) {
  .l_img_lt_r_h2 .columns__column:nth-child(2) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 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) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 365px;
  }
}

@media screen and (min-width: 768px) {
  .l_img_lt_r_h3 .columns__column:nth-child(2) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 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) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media screen and (min-width: 768px) {
  .l_img_r_h2 .columns__column:nth-child(2) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 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) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media screen and (min-width: 768px) {
  .l_img_r_h3 .columns__column:nth-child(2) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 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;
  }
}

/* 枠線あり */
.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 #BFD1D6;
  padding: 45px;
  padding: 45px 40px;
  font-size: 20px;
  letter-spacing: .17em;
  line-height: 1.5;
}
@media screen and (max-width: 1049px) {
  .section-2column_img_h_txt_btn__wrap--border {
    padding: 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;
  }
}
@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;
}
/* ==========================================================================

    figure

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

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */


.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 {
	border-radius: 5px;
	max-width: 100%;
	height: auto;
}
@media screen and (max-width: 767px) {
	.figure img {
		max-width: 100% !important;
	}
}

.figcaption {
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: .15em;
	text-align: left;
}
.figcaption:not(:first-child) {
  margin-top: 15px;
}
@media screen and (max-width: 414px) {
	.figcaption {
		font-size: 12px;
	}
}

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


.movie iframe {
	border-radius: 5px;
}
@charset "UTF-8";

/* 見出し */

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


/* 見出し2 */

.section-heading2,
.heading-2:not(:first-child) {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .section-heading2,
  .heading-2:not(:first-child) {
    margin-top: 80px;
  }
}

.section-heading2,
.heading-2:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .section-heading2,
  .heading-2:not(:last-child) {
    margin-bottom: 25px;
  }
}

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

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

.heading-2__inner::before {
  content: attr(data-decoration-text);
  color: #486C9F;
  display: block;
  font-family: 'Lato', sans-serif;;
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: .15em;
  line-height: 1.5;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .heading-2__inner::before {
    font-size: 1.4rem;
  }
}

.heading-2--reverse {
  color: #fff;
}

.heading-2--reverse .heading-2__inner::before {
  color: #fff;
}
@charset "UTF-8";


/* 見出し3 */

.section-heading3,
.heading-3:not(:first-child) {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .section-heading3,
  .heading-3:not(:first-child) {
    margin-top: 40px;
  }
}

.section-heading3,
.heading-3:not(:last-child) {
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .section-heading3,
  .heading-3:not(:last-child) {
    margin-bottom: 25px;
  }
}

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

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

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

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

.heading-3--reverse {
  color: #fff;
}
@charset "UTF-8";


/* 見出し4 */


.section-heading4,
.heading-4:not(:first-child) {
  margin-top: 25px;
}

.section-heading4,
.heading-4:not(:last-child) {
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .section-heading4,
  .heading-4:not(:last-child) {
    margin-bottom: 25px;
  }
}


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

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


/* 見出し5 */

.section-heading5,
.heading-5:not(:first-child) {
  margin-top: 20px;
}

.section-heading5,
.heading-5:not(:last-child) {
  margin-bottom: 20px;
}

.heading-5 {
  color: #34495E;
  font-size: 1.5rem;
  letter-spacing: .1em;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .heading-5 {
    font-size: 1.8rem;
  }
}

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

/* リード文 */

.section-lead:not(:first-child),
.lead:not(:first-child) {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .section-lead:not(:first-child),
  .lead:not(:first-child) {
    margin-top: 100px;
  }
}

.section-lead:not(:last-child),
.lead:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .section-lead:not(:last-child),
  .lead:not(:last-child) {
    margin-bottom: 60px;
  }
}

.lead {
  color: #044A9E;
  font-size: 15px;
  letter-spacing: .1em;
  line-height: 1.5625;
}
@media screen and (min-width: 768px) {
  .lead {
    font-size: 17px;
    letter-spacing: .1em;
  }
}

.lead::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - .1em) * .5em);
}

.lead::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - .1em) * .5em);
}
@charset "UTF-8";

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */



/* リンクボタン */

.section-button,
.link-button:not(:first-child) {
  margin-top: 30px;
}

.section-button,
.link-button:not(:last-child) {
  margin-bottom: 30px;
}

.link-button__anchor {
  border-radius: 5px;
  box-sizing: border-box;
  display: inline-block;
  min-width: 270px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: .15em;
  line-height: 1.5em;
  background-color: #044A9E;
  padding: 14px 58px 12px 25px;
  position: relative;
  text-align: left;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.link-button--ja .link-button__anchor {
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: .1em;

}

.link-button--eng .link-button__anchor {
  font-family: 'Lato', sans-serif;;
  font-style: italic;
}

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

.link-button__anchor::before {
  content: '';
  width: 22px;
  height: 8px;
  position: absolute;
  top: calc(50% - 4px);
  right: 15px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjEuNzcxIiBoZWlnaHQ9IjcuOTg5IiB2aWV3Qm94PSIwIDAgMjEuNzcxIDcuOTg5Ij48ZGVmcz48Y2xpcFBhdGggaWQ9ImEiPjxyZWN0IHdpZHRoPSIyMS43NyIgaGVpZ2h0PSI3Ljk4OSIgZmlsbD0iI2ZmZiIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDggNTUpIj48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtOCAtNTUpIiBjbGlwLXBhdGg9InVybCgjYSkiPjxwYXRoIGQ9Ik0xNS45OC4xMzRhLjguOCwwLDEsMC0uODg2LDEuMzI5bDIuNiwxLjczMkguOGEuOC44LDAsMCwwLDAsMS42SDE3LjY5MmwtMi42LDEuNzMyYS44LjgsMCwxLDAsLjg4NiwxLjMyOWw1Ljc5LTMuODZaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (min-width: 768px) {
  .link-button__anchor:hover {
    background-color: #34495E;
  }
}

.link-button--reverse .link-button__anchor {
  color: #34495E;
  background-color: #fff;
}
@charset "UTF-8";

/* テキストリンク */

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

.link-text {
  font-size: 1.5rem;
  letter-spacing: .2em;
  line-height: 1.5em;
  font-weight: 500;
}

.link-text::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * .5em);
}

.link-text::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * .5em);
}

.link-text:not(:first-child) {
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .link-text:not(:first-child) {
    margin-top: 25px;
  }
}

.link-text:not(:last-child) {
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .link-text:not(:last-child) {
    margin-bottom: 25px;
  }
}

.link-text__anchor {
  color: #044A9E;
  display: inline-block;
  padding-left: 15px;
  position: relative;
  -webkit-transition: color .3s;
  transition: color .3s;
  padding: 5px 15px 0 0;
  border-top: 1px solid #044A9E;
}
.link-text--ja .link-text__anchor {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  letter-spacing: .1em;
  font-size: 14px;
}
.link-text--eng .link-text__anchor {
  font-family: 'Lato', sans-serif;;
  font-style: italic;
  font-weight: bold;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: 12px;
}

.link-text__anchor svg {
  margin-right: 10px;
}

.link-text__anchor:hover {
  color: #044A9E;
}

.link-text--reverse .link-text__anchor {
  color: #ffffff;
}

.link-text--reverse .link-text__anchor:hover {
  color: #044A9E;
}

.link-text--reverse .link-text__anchor__icon__arrow {
  fill: #ffffff;
}
/* ==========================================================================

    link

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

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */


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

.link:hover {
	color: #044A9E;
	text-decoration: none;
}

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

.link:hover:after {
	background-color: #044A9E;
}

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

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

/* 見出しリンク */
.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: #044A9E;
	display: inline-block;
	position: relative;
	text-decoration: none;
	transition: .5s;
}
.heading-3.heading-link a {
	padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .heading-3.heading-link a {
    padding-left: 30px;
  }

}

.heading-link a:before {
	background-color: #044A9E;
	border-radius: 3px;
	content: "";
	left: 0;
	position: absolute;
	transition: .5s;
  height: 28px;
	top: 5px;
	width: 28px;
}
@media screen and (max-width: 767px) {
	.heading-3.heading-link a:before {
		height: 21px;
		width: 21px;
    top: 4.5px;
	}
}

.heading-link a:after {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNS4xNzIiIGhlaWdodD0iOC45ODkiIHZpZXdCb3g9IjAgMCAxNS4xNzIgOC45ODkiPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKC03LjUgMC41MDEpIj48cGF0aCBkPSJNMTUuOTguMTM0YS44LjgsMCwxLDAtLjg4NiwxLjMyOWwyLjYsMS43MzJIOC44YS44LjgsMCwwLDAsMCwxLjZoOC44OTNsLTIuNiwxLjczMmEuOC44LDAsMSwwLC44ODYsMS4zMjlsNS43OS0zLjg2WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAwKSIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0xNS41MzctLjVoMGExLjMsMS4zLDAsMCwxLC43MjEuMjE4bDYuNDE1LDQuMjc3TDE2LjI1OCw4LjI3YTEuMywxLjMsMCwxLDEtMS40NDEtMi4xNjFsMS4yMjQtLjgxNkg4LjhhMS4zLDEuMywwLDEsMSwwLTIuNmg3LjI0MmwtMS4yMjQtLjgxNkExLjMsMS4zLDAsMCwxLDE1LjUzNy0uNVptNS4zMzMsNC40OTVMMTUuNy41NUEuMy4zLDAsMCwwLDE1LjUzNy41YS4zLjMsMCwwLDAtLjI0OC4xMzMuMy4zLDAsMCwwLC4wODMuNDE1TDE5LjM0NCwzLjdIOC44YS4zLjMsMCwxLDAsMCwuNkgxOS4zNDRMMTUuMzcyLDYuOTQxYS4zLjMsMCwxLDAsLjMzMy41WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAwKSIgZmlsbD0icmdiYSgwLDAsMCwwKSIvPjwvZz48L3N2Zz4=);
	content: "";
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	transition: .5s;
}
.heading-3.heading-link a:after {
  left: 7px;
  height: 8px;
  top: 15px;
  width: 14px;
}
@media screen and (max-width: 767px) {
	.heading-3.heading-link a:after {
		left: 6px;
		height: 6px;
		top: 12px;
		width: 10px;
	}
}

.heading-link a:hover {
	color: #34495E;
}

.heading-link a:hover:before {
	background-color: #34495E;
}
@charset "UTF-8";


/* 段落 */

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

.paragraph {
  color: #34495E;
  font-size: 1.3rem;
  letter-spacing: .1em;
  line-height: 1.5625;
}
@media screen and (min-width: 768px) {
  .paragraph {
    font-size: 1.6rem;
    letter-spacing: .1em;
    }
}
.paragraph a {
  color: #486C9F;
  text-decoration:underline;
}
.paragraph a:hover {
  color: #34495E;
  text-decoration:none;
}
.paragraph::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5625) * .5em);
}

.paragraph::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5625) * .5em);
}

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

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

.paragraph--reverse {
  color: #fff;
}
@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: #F7FCFC;
}
/* ==========================================================================

    tag-list

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

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */





.tag-list {
    display: -webkit-box;
  display: -ms-flexbox;
  display: flex;;
    flex-wrap: wrap;
    margin-top: -7.5px;
}

.tag-list:not(:last-child) {
    margin-bottom: 20px;
}

.tag-list__item {
    background-color: #BFD1D6;
    color: #ffffff;
    border-radius: 50px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    letter-spacing: .15em;
    line-height: 1;
    padding: 9px 20px;
    text-align: center;
    margin: 7.5px 0;
}
_:-ms-fullscreen, :root .tag-list__item {
    padding: 10px 20px 2px 20px;
}

.tag-list__item:not(:last-child) {
    margin-right: 15px;
}

.heading-icon-columns:not(:last-child) {
  margin-bottom: 25px;
}

.heading-icon-columns .heading-4:not(:last-child) {
    margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .tag-list__item {
    font-size: 13px;
    padding: 6px 15px;
    letter-spacing: .17em;
  }
}


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

/* 説明リスト */

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

.description-list__group {
  border-bottom: 1px dotted #BFD1D6;
}

@media screen and (min-width: 768px) {
  .description-list__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.description-list__group:not(:first-child) {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .description-list__group:not(:first-child) {
    margin-top: 0;
  }
}

.description-list__group__term {
  color: #34495E;
  font-size: 1.3rem;
  letter-spacing: .1em;
  line-height: 1.5625;
}
@media screen and (min-width: 768px) {
  .description-list__group__term {
    width: 220px;
    font-size: 1.6rem;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.description-list__group__term::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5625) * .5em);
}

.description-list__group__term::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5625) * .5em);
}

.description-list__group__desc {
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 20px;
  padding-left: 15px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .description-list__group__desc {
    margin-top: 0;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 20px;
  }
}

.description-list__group__desc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-left: 1px dotted #BFD1D6;
  width: 1px;
  height: calc(100% - 10px);
}

@media screen and (min-width: 768px) {
  .description-list__group__desc::before {
    top: 20px;
    height: calc(100% - 40px);
  }
}

.description-list .paragraph {
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: .2em;
}
/* ==========================================================================

    table

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

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */



.table {
  width: 100%;
}

@media screen and (max-width:600px) {
  .js-table-scroll {
    overflow-x: scroll;
    overflow-y: hidden;
    position: relative;
  }
  .js-table-scroll>.table {
    width: 600px
  }
  .js-table-scroll:before, .js-table-scroll:after {
    content: "";
  }
  .js-table-scroll:before {
    background-color: rgba(7,57,88,.3);
    border-radius: 5px;
    box-sizing: border-box;
    content: "SWIPE";
    color: #fff;
    font-family: 'Lato', sans-serif;;
    font-style: italic;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: .1em;
    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:after {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MS43NzIiIGhlaWdodD0iOC4zNjYiIHZpZXdCb3g9IjAgMCA2MS43NzIgOC4zNjYiPjxwYXRoIGQ9Ik04MjguMDI1LDI3Ny43NzgsODIyLjEzOSwyNzFsLTEuNjE2LDIuNWE2OC40NzksNjguNDc5LDAsMCwwLTI0LjM2MS00LjA5NGMtMjAuMjQyLDAtMjkuNTI0LDYuODI2LTI5LjkwOSw3LjExNmwuNzEyLjk0NWMuMDkxLS4wNjksOS4zOTItNi44NzgsMjkuMi02Ljg3OGE2Ny42NzEsNjcuNjcxLDAsMCwxLDIzLjY4MywzLjk2bC0xLjQ1NiwyLjI1NloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC03NjYuMjUzIC0yNjkuNDEyKSIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==);
    background-repeat: no-repeat;
    height: 8px;
    left: calc(50% - 30px);
    position: absolute;
    top: calc(50% - 20px);
    width: 61px;
    z-index: 2;
  }

  .js-table-scroll.is-checked:before, .js-table-scroll.is-checked:after {
    opacity: 0;
  }
}

.section-table1 {
  margin-bottom: 40px;
  margin-top: 40px;
}
@media screen and (min-width: 769px) {
  .section-table1 {
    margin-bottom: 60px;
    margin-top: 40px;
  }
}

.table-normal__table {
  border: 1px dotted #BFD1D6;
}

.table-normal__head__row__header {
  max-width: 200px;
  color: #34495E;
  background-color: #F7FCFC;
  border-bottom: 1px dotted #BFD1D6;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5625;
  padding: 15px 15px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .table-normal__head__row__header {
    font-size: 13px;
  }
}

.table-normal__head__row__header:not(:first-child) {
  background-color: #F7FCFC;
}

.table-normal__head__row__header:not(:last-child) {
  border-right: 1px dotted #BFD1D6;
}

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


.table-normal__body__row__header {
  border-right: 1px dotted #BFD1D6;
  box-sizing: border-box;
  color: #34495E;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5625;
  padding: 20px 15px;
  text-align: left;
  width: 250px;
}

.table-normal__body__row__header--bg {
  background-color: ;
}
@media screen and (max-width: 1049px) {
  .table-normal__body__row__header {
    padding: 15px 15px;
    width: 180px;
  }
}
@media screen and (max-width: 767px) {
  .table-normal__body__row__header {
    font-size: 13px;
    width: 150px;
  }
}

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

.table-normal__body__row__data {
  max-width: 200px;
  font-size: 16px;
  letter-spacing: .1em;
  line-height: 1.5625;
  color: #34495E;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 15px 15px;
  text-align: left;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .table-normal__body__row__data {
    font-size: 13px;
    padding: 15px 15px;
  }
}

.table-normal__body__row__data:not(:last-child) {
  border-right: 1px dotted #BFD1D6;
}
/* ==========================================================================

    list

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

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */


/* 余白 */










.section-list--default,
.section-list--number {
  margin-bottom: 20px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .section-list--default,
    .section-list--number {
    margin-bottom: 25px;
    margin-top: 25px;
  }
}

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

.list--default:not(:first-child) {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .list--default:not(:first-child) {
    margin-top: 20px;
  }
}

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

.list--check:not(:first-child) {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .list--check:not(:first-child) {
    margin-top: 20px;
  }
}

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

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

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

.list__item:not(:first-child) {
  margin-top: 8px
}

.list__item:not(:last-child) {
  margin-bottom: 8px
}
@media screen and (max-width: 767px) {
  .list__item:not(:first-child) {
    margin-top: 10px
  }
  .list__item:not(:last-child) {
    margin-bottom: 10px
  }
}


/* ドット */
.list--default>.list__item {
  list-style-type: none;
  padding-left: 15px;
  position: relative;
}

.list--default>.list__item:before {
  background-color: #BFD1D6;
  content: "";
  display: block;
  height: 5px;
  position: absolute;
  top: 7px;
  left: 0;
  width: 5px;
}
@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.list--check .list__item {
  position: relative;
}

.list.list--check .list__item .natural {
  font-family: 'Noto Sans JP', sans-serif;
  padding-left: 20px;
  position: relative;
}

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


/* 数字 */
.list--number {
  counter-reset: number;
}

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

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

  faq

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

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

.faq__list__item {
  border-bottom: 1px dotted #BFD1D6;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .faq__list__item {
    padding-bottom: 30px;
  }
}

.faq__list__item:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .faq__list__item:not(:last-child) {
    margin-bottom: 30px;
  }
}

.faq__list__item__question__inner {
  display: block;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .faq__list__item__question__inner {
    margin-top: 20px;
    }
}

.faq__list__item__answer {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .faq__list__item__answer {
    margin-top: 23px;
  }
}

.faq__list__item__question::before,
.faq__list__item__answer::before  {
  background-color: #044A9E;
  -webkit-box-sizing: border-box;
  border-radius: 18px;
  box-sizing: border-box;
  content: attr(data-decoration-text);
  color: #fff;
  display: inline-block;
  font-family: 'Lato', sans-serif;;
  font-style: italic;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: .15em;
  line-height: 1.5625;
  padding: 3px 5px;
  text-align: center;
  width: 123px;
}
@media screen and (min-width: 768px) {
  .faq__list__item__question::before,
  .faq__list__item__answer::before  {
    font-size: 1.4rem;
    width: 146px;
    padding: 4px 5px 3px;
  }
}

.faq__list__item__answer::before {
  background: linear-gradient(to right, rgba(248,130,61,1) 0%,rgba(242,189,47,1) 100%);;
}

.faq__list__item__answer__inner {
  display: block;
  margin-top: 16px;
}
@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: #34495E;
  font-size: 14px;
  letter-spacing: .15em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .section-movie .movie-caption {
    margin-top: 10px;
    font-size: 12px;
  }
}
/* ==========================================================================

    map

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

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */


.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-wrapper {
	max-width: inherit !important;
	max-height: 590px !important;
}

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

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */



/* CTA */

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

@media screen and (min-width: 1050px) {
  .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;
  }
}


.section-heading-link-columns {
  margin-top: 85px;
  margin-bottom: 50px
}
@media screen and (max-width: 767px) {
  .section-heading-link-columns {
    margin-top: 60px;
    margin-bottom: 40px
  }
}

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

.text-column:not(:last-child) {
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .text-column:not(:last-child) {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 768px) {
  .text-column__heading {
    padding-right: 50px;
  }
}
@media screen and (max-width: 767px) {
  .text-column__heading {
    margin-bottom: 30px;
  }
}
@charset "UTF-8";

/* 012_3clm_list */

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */


.section-list-3clm {
  margin: 40px 0;
}
@media screen and (min-width: 768px) {
  .section-list-3clm {
    margin: 60px 0;
  }
}

.list-3clm {
  display: block;
}
@media screen and (min-width: 1050px) {
  .list-3clm {
    display: flex;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: -30px;
  }
}

.list-3clm__item {
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #BFD1D6;
  padding: 30px 20px;
}
@media screen and (min-width: 768px) {
  .list-3clm__item {
    padding: 45px 40px 40px 30px;
  }
}
@media screen and (min-width: 1050px) {
  .list-3clm__item {
    width: calc(33.333% - 30px);
    padding: 40px 30px;
  }
}
@media screen and (min-width: 1050px) {
  .list-3clm__item:not(:nth-child(3n)) {
    margin-right: 30px;
  }
}

.list-3clm__item:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .list-3clm__item:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1050px) {
  .list-3clm__item:not(:last-child) {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1050px) {
  .list-3clm__item:nth-child(n + 4) {
    margin-top: 30px;
  }
}

@media screen and (max-width: 1049px) {
  .list-3clm__item__wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-left: -25px;
    margin-right: -25px;
  }
}
@media screen and (max-width: 767px) {
  .list-3clm__item__wrapper {
    margin-left: -20px;
    margin-right: -20px;
  }
}

@media screen and (max-width: 1049px) {
  .list-3clm__item__wrapper--box {
    width: 50%;
    padding-left: 25px;
    padding-right: 25px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 767px) {
  .list-3clm__item__wrapper--box {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1049px) {
  .list-3clm__item__wrapper--box:first-child {
    border-right: 1px dotted #BFD1D6;
  }
}
@media screen and (max-width: 767px) {
  .list-3clm__item__wrapper--box:first-child {
    border-right: inherit;
  }
}

.list-3clm__item__wrapper__h3-box .paragraph {
  color: #2E4053;
  margin-bottom: 0;
  padding-bottom: 20px;
  border-bottom: 1px dotted #BFD1D6;
}
@media screen and (min-width: 768px) {
  .list-3clm__item__wrapper__h3-box .paragraph {
    padding-bottom: 0;
    border-bottom: inherit;
  }
}
@media screen and (min-width: 1050px) {
  .list-3clm__item__wrapper__h3-box .paragraph {
    padding-bottom: 30px;
    border-bottom: 1px dotted #BFD1D6;
  }
}

.list-3clm__item__wrapper__h4-box .heading-4 {
  color: #273646;
  margin-top: 25px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .list-3clm__item__wrapper__h4-box .heading-4 {
    margin-top: 0;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1050px) {
  .list-3clm__item__wrapper__h4-box .heading-4 {
    margin-top: 30px;
    margin-bottom: 25px;
  }
}

.list-3clm__item__wrapper__h4-box__check-list__item {
  position: relative;
  padding-left: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
  color: #044A9E;
}
@media screen and (min-width: 768px) {
  .list-3clm__item__wrapper__h4-box__check-list__item {
    padding-left: 25px;
    font-size: 16px;
  }
}
.list-3clm__item__wrapper__h4-box__check-list__item:not(:last-child) {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .list-3clm__item__wrapper__h4-box__check-list__item:not(:last-child) {
    margin-bottom: 20px;
  }
}

.list-3clm__item__wrapper__h4-box__check-list__item::before {
  content: "";
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTIuMTgyIiBoZWlnaHQ9IjEyLjE4MiIgdmlld0JveD0iMCAwIDEyLjE4MiAxMi4xODIiPgogIDxkZWZzPgogICAgPGNsaXBQYXRoIGlkPSJjbGlwLXBhdGgiPgogICAgICA8cmVjdCBpZD0i6ZW35pa55b2iXzM4NTciIGRhdGEtbmFtZT0i6ZW35pa55b2iIDM4NTciIHdpZHRoPSIxMi4xODIiIGhlaWdodD0iMTIuMTgyIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIiBmaWxsPSIjMDQ0YTllIi8+CiAgICA8L2NsaXBQYXRoPgogIDwvZGVmcz4KICA8ZyBpZD0i44Kw44Or44O844OXXzY3NjciIGRhdGEtbmFtZT0i44Kw44Or44O844OXIDY3NjciIGNsaXAtcGF0aD0idXJsKCNjbGlwLXBhdGgpIj4KICAgIDxwYXRoIGlkPSLjg5HjgrlfNjc3MSIgZGF0YS1uYW1lPSLjg5HjgrkgNjc3MSIgZD0iTTE0LjcsMTkuMDM1YS40MTkuNDE5LDAsMCwxLS4zLS4xMjJsLTEuNDg0LTEuNDg0YS40MTguNDE4LDAsMCwxLC41OS0uNTlMMTQuNywxOC4wMjdsMi40NDUtMi40NDVhLjQxOC40MTgsMCwxLDEsLjU5LjU5bC0yLjc0LDIuNzRhLjQxOS40MTksMCwwLDEtLjMuMTIyIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtOS4yMzIgLTExLjE1NikiIGZpbGw9IiMwNDRhOWUiLz4KICAgIDxwYXRoIGlkPSLjg5HjgrlfNjc3MiIgZGF0YS1uYW1lPSLjg5HjgrkgNjc3MiIgZD0iTTYuMDkxLDEyLjE4MmE2LjA5MSw2LjA5MSwwLDEsMSw2LjA5MS02LjA5MSw2LjEsNi4xLDAsMCwxLTYuMDkxLDYuMDkxbTAtMTEuMzQ3YTUuMjU2LDUuMjU2LDAsMSwwLDUuMjU2LDUuMjU2QTUuMjYyLDUuMjYyLDAsMCwwLDYuMDkxLjgzNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAwKSIgZmlsbD0iIzA0NGE5ZSIvPgogIDwvZz4KPC9zdmc+Cg==");
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  top: 4px;
  left: 0;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .list-3clm__item__wrapper__h4-box__check-list__item::before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTYuNzMzIiBoZWlnaHQ9IjE2LjczMyIgdmlld0JveD0iMCAwIDE2LjczMyAxNi43MzMiPgogIDxkZWZzPgogICAgPGNsaXBQYXRoIGlkPSJjbGlwLXBhdGgiPgogICAgICA8cmVjdCBpZD0i6ZW35pa55b2iXzM4NTciIGRhdGEtbmFtZT0i6ZW35pa55b2iIDM4NTciIHdpZHRoPSIxNi43MzMiIGhlaWdodD0iMTYuNzMzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIiBmaWxsPSIjMDQ0YTllIi8+CiAgICA8L2NsaXBQYXRoPgogIDwvZGVmcz4KICA8ZyBpZD0i44Kw44Or44O844OXXzY3NjciIGRhdGEtbmFtZT0i44Kw44Or44O844OXIDY3NjciIGNsaXAtcGF0aD0idXJsKCNjbGlwLXBhdGgpIj4KICAgIDxwYXRoIGlkPSLjg5HjgrlfNjc3MSIgZGF0YS1uYW1lPSLjg5HjgrkgNjc3MSIgZD0iTTE1LjQwNiwyMC4zNzFBLjU3NS41NzUsMCwwLDEsMTUsMjAuMmwtMi4wMzgtMi4wMzlhLjU3My41NzMsMCwxLDEsLjgxMS0uODExbDEuNjMzLDEuNjMzLDMuMzU4LTMuMzU4YS41NzMuNTczLDAsMSwxLC44MTEuODExTDE1LjgxMSwyMC4yYS41NzUuNTc1LDAsMCwxLS40MDYuMTY4IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNy45MDIgLTkuNTQ4KSIgZmlsbD0iIzA0NGE5ZSIvPgogICAgPHBhdGggaWQ9IuODkeOCuV82NzcyIiBkYXRhLW5hbWU9IuODkeOCuSA2NzcyIiBkPSJNOC4zNjcsMTYuNzMzYTguMzY3LDguMzY3LDAsMSwxLDguMzY2LTguMzY2LDguMzc2LDguMzc2LDAsMCwxLTguMzY2LDguMzY2bTAtMTUuNTg2YTcuMjIsNy4yMiwwLDEsMCw3LjIxOSw3LjIyLDcuMjI4LDcuMjI4LDAsMCwwLTcuMjE5LTcuMjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgMCkiIGZpbGw9IiMwNDRhOWUiLz4KICA8L2c+Cjwvc3ZnPgo=");
    width: 16px;
    height: 16px;
    top: 5px;
  }
}

@media screen and (max-width: 1049px) {
  .list-3clm__item__wrapper__h4-box .link-button {
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .list-3clm__item__wrapper__h4-box .link-button {
    margin-left: auto;
    margin-right: auto;
    max-width: 240px;
  }
}
.list-3clm__item__wrapper__h4-box .link-button .link-button__anchor{
  min-width: 240px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .list-3clm__item__wrapper__h4-box .link-button .link-button__anchor{
    max-width: 270px;
    min-width: inherit;
  }
}
@charset "UTF-8";

/* 016_4clm_img-text */

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */


.section-four-clm {
  margin: 30px 0;
}
@media screen and (min-width: 768px) {
  .section-four-clm {
    margin: 60px 0;
  }
}

.four-clm__wrapper__list {
  display: flex;
  flex-wrap: wrap;
}

.four-clm__wrapper__list__item {
  box-sizing: border-box;
  width: 50%;
  text-align: center;
  padding: 0 15px 20px 15px;
}
@media screen and (min-width: 768px) {
  .four-clm__wrapper__list__item {
    width: 33.333%;
    padding: 0 30px 40px 30px;
  }
}
@media screen and (min-width: 1050px) {
  .four-clm__wrapper__list__item {
    width: 25%;
    padding: 0 50px 40px 50px;
  }
}

@media screen and (max-width: 1049px) {
  .four-clm__wrapper__list__item:not(:nth-last-child(-n+2)) {
    border-bottom: 1px dotted #BFD1D6;
  }
}
@media screen and (min-width: 1050px) {
  .four-clm__wrapper__list__item:not(:nth-last-child(-n+4)) {
    border-bottom: 1px dotted #BFD1D6;
  }
}

@media screen and (max-width: 767px) {
  .four-clm__wrapper__list__item:not(:nth-child(3n)) {
    border-right: inherit !important;
  }
  .four-clm__wrapper__list__item:not(:nth-child(2n)) {
    border-right: 1px dotted #BFD1D6 !important;
  }
}
@media screen and (max-width: 1049px) {
  .four-clm__wrapper__list__item:not(:nth-child(3n)) {
    border-right: 1px dotted #BFD1D6;
  }
}
@media screen and (min-width: 1050px) {
  .four-clm__wrapper__list__item:not(:nth-child(4n)) {
    border-right: 1px dotted #BFD1D6;
  }
}

@media screen and (max-width: 767px) {
  .four-clm__wrapper__list__item:nth-child(n + 3) {
    padding-top: 20px !important;
  }
}
@media screen and (max-width: 1049px) {
  .four-clm__wrapper__list__item:nth-child(n + 4) {
    padding-top: 40px;
  }
}
.four-clm__wrapper__list__item:nth-child(n + 5) {
  padding-top: 40px;
}

.four-clm__wrapper__list__item img {
  display: block;
  width: 100%;
  max-width: 40px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .four-clm__wrapper__list__item img {
    max-width: 57px;
  }
}

.four-clm__wrapper__list__item .heading-3 {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .four-clm__wrapper__list__item .heading-3 {
    margin-top: 30px;
  }
}

.four-clm__wrapper__list__item .paragraph {
  color: #2E4053;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .four-clm__wrapper__list__item .paragraph {
    margin-top: 15px;
  }
}
@charset "UTF-8";

/* 017_2clm_img-4clm.module */

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */


.section-columns-two-img {
  margin: 30px 0;
}
@media screen and (min-width: 768px) {
  .section-columns-two-img {
    margin: 40px 0;
  }
}

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

.columns-two-img__column {
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
@media screen and (max-width: 1049px) {
  .columns-two-img__column:nth-child(1) {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .columns-two-img__column {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media screen and (min-width: 1050px) {
  .columns-two-img__column:nth-child(1) {
    max-width: 365px;
  }
}
@media screen and (min-width: 1050px) {
  .columns-two-img__column:nth-child(2) {
    width: calc(100% - 365px);
  }
}

.columns-two-img__column .paragraph {
  color: #2E4053;
}

.columns-two-img__column .link-button {
  margin-top: 30px;
}

.columns-two-img__column__list {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-left: -9px;
  margin-right: -9px;
}
@media screen and (min-width: 768px) {
  .columns-two-img__column__list {
    margin-left: -10px;
    margin-right: -10px;
  }
}
.columns-two-img__column__list__item {
  box-sizing: border-box;
  padding-left: 9px;
  padding-right: 9px;
  width: 50%;
}
@media screen and (min-width: 768px) {
  .columns-two-img__column__list__item {
    padding-left: 10px;
    padding-right: 10px;
    width: 25%;
  }
}
@media screen and (min-width: 768px) {
  .columns-two-img__column__list__item:nth-child(n + 5) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .columns-two-img__column__list__item:nth-child(n + 3) {
    margin-top: 18px;
  }
}

.columns-two-img__column__list__item img {
  max-width: 100%;
  width: 100%;
  vertical-align: bottom;
}
@charset "UTF-8";

/* 018_img_6clm */

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */


.section-img_6clm-list {
  margin: 30px 0;
}
@media screen and (min-width: 768px) {
  .section-img_6clm-list {
    margin: 60px 0 40px 0;
  }
}
@media screen and (min-width: 1050px) {
  .section-img_6clm-list {
    margin: 60px 0;
  }
}

.img_6clm-list {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-left: -6px;
  margin-right: -6px;
}
@media screen and (min-width: 768px) {
  .img_6clm-list {
    margin-left: -11px;
    margin-right: -11px;
  }
}

.img_6clm-list__item {
  width: 33.333%;
  box-sizing: border-box;
  padding-left: 6px;
  padding-right: 6px;
}
@media screen and (min-width: 768px) {
  .img_6clm-list__item {
    width: 25%;
    padding-left: 11px;
  padding-right: 11px;
  }
}
@media screen and (min-width: 1050px) {
  .img_6clm-list__item {
    width: 16.666%;
  }
}

@media screen and (max-width: 767px) {
  .img_6clm-list__item:nth-child(n + 4) {
    margin-top: 10px !important;
  }
}
@media screen and (max-width: 1049px) {
  .img_6clm-list__item:nth-child(n + 5) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1050px) {
  .img_6clm-list__item:nth-child(n + 7) {
    margin-top: 20px;
  }
}

.img_6clm-list__item img {
  max-width: 100%;
  width: 100%;
  vertical-align: bottom; 
}
@charset "UTF-8";

/* 016_anchor_4clm */

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */


.section-anchor_4clm {
  margin: 40px 0;
}
@media screen and (min-width: 768px) {
  .section-anchor_4clm {
    margin: 50px 0;
  }
}

.anchor_4clm-wrapper {
  background-color: #34495E;
  padding: 23px 20px 22px 20px;
}
@media screen and (min-width: 768px) {
  .anchor_4clm-wrapper {
    padding: 24px 80px 20px 80px;
  }
}
@media screen and (min-width: 1050px) {
  .anchor_4clm-wrapper {
    padding: 20px 184px 18px 184px;
  }
}

.anchor_4clm__list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .anchor_4clm__list {
    justify-content: center;
  }
}

.anchor_4clm__list__item {
  width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .anchor_4clm__list__item {
    width: 33.333%;
    padding: 0 10px;
  }
}
@media screen and (min-width: 768px) {
  .anchor_4clm__list__item:first-child {
    padding-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .anchor_4clm__list__item:last-child {
    padding-right: 0;
  }
}
@media screen and (min-width: 1050px) {
  .anchor_4clm__list__item {
    width: 25%;
  }
}

@media screen and (max-width: 767px) {
  .anchor_4clm__list__item:nth-child(n + 2) {
    margin-top: 10px !important;
  }
}
@media screen and (max-width: 1049px) {
  .anchor_4clm__list__item:nth-child(n + 4) {
    margin-top: 20px;
  }
}

.anchor_4clm__list__item__link {
  display: inline-block;
  padding-left: 22px;
}
@media screen and (min-width: 768px) {
  .anchor_4clm__list__item__link {
    font-size: 16px;
    padding-left: 26px;
  }
}
@media screen and (min-width: 1050px) {
  .anchor_4clm__list__item__link .anchor_4clm__list__item__link__text::after {
    -webkit-transition: .3s;
    transition: .3s;
  }
}
@media screen and (min-width: 1050px) {
  .anchor_4clm__list__item__link:hover .anchor_4clm__list__item__link__text::after {
    -webkit-animation: arrow-line 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86) 1 normal;
    animation: arrow-line 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86) 1 normal;
  }
}

/* hover時アニメーション */
@keyframes arrow-line {
  0% {
    transform: translateY(0) scaleY(1);
    transform-origin: center bottom;
  }
  50% {
    transform: translateY(8px) scaleY(.1);
    transform-origin: center bottom;
  }
  50.1% {
    transform: translateY(-8px) scaleY(0);
    transform-origin: center top;
  }
  100% {
    transform: translateY(0) scaleY(1);
    transform-origin: center top;
  }
}

.anchor_4clm__list__item__link__text {
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: #FFFFFF;
  letter-spacing: .1em;
  line-height: 1.5em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .anchor_4clm__list__item__link__text {
    font-size: 16px;
  }
}

.anchor_4clm__list__item__link__text::before {
  content: "";
  background-color: #FFFFFF;
  border-radius: 3px;
  width: 14px;
  height: 14px;
  top: 2px;
  left: -22px;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .anchor_4clm__list__item__link__text::before {
    width: 18px;
    height: 18px;
    top: 4px;
    left: -26px;
  }
}

.anchor_4clm__list__item__link__text::after {
  content: "";
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0Ljk5MyIgaGVpZ2h0PSI4LjI4OSIgdmlld0JveD0iMCAwIDQuOTkzIDguMjg5Ij4KICA8cGF0aCBpZD0i5Lit44Oe44OJXzI4IiBkYXRhLW5hbWU9IuS4reODnuODiSAyOCIgZD0iTTE5NDA0LjI3LDQ4NjEuOTkyYS40LjQsMCwwLDEtLjMzNi0uMTc1LjQxMS40MTEsMCwwLDEsLjExMS0uNTU1bDEuMy0uODY3aC00LjQ0N2EuNC40LDAsMCwxLDAtLjhoNC40NDdsLTEuMy0uODYyYS40LjQsMCwwLDEsLjIyNS0uNzM0LjM4OC4zODgsMCwwLDEsLjIxOS4wNjdsMi45LDEuOTI5LTIuOSwxLjkzNEEuMzkxLjM5MSwwLDAsMSwxOTQwNC4yNyw0ODYxLjk5MloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQ4NjIuNDkyIC0xOTQwMCkgcm90YXRlKDkwKSIgZmlsbD0iIzM0NDk1ZSIgc3Ryb2tlPSJyZ2JhKDAsMCwwLDApIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS13aWR0aD0iMSIvPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  background-size: contain;
  width: 4px;
  height: 7px;
  top: 6px;
  left: -17px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .anchor_4clm__list__item__link__text::after {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2IiBoZWlnaHQ9IjEwIiB2aWV3Qm94PSIwIDAgNiAxMCI+CiAgPHBhdGggaWQ9IuS4reODnuODiV8xNSIgZGF0YS1uYW1lPSLkuK3jg57jg4kgMTUiIGQ9Ik0xOTQwNi4zNDYsNDg2Ni41NjRhLjUzLjUzLDAsMCwxLS40My0uMjI5LjUxMi41MTIsMCwwLDEtLjA3NC0uMzg2LjUwNS41MDUsMCwwLDEsLjIyMS0uMzI1bDEuNjY2LTEuMTE2aC01LjcxNWEuNTE0LjUxNCwwLDEsMSwwLTEuMDI4aDUuNzE1bC0xLjY2Ni0xLjExMWEuNTE3LjUxNywwLDAsMS0uMTQ2LS43MTEuNTI4LjUyOCwwLDAsMSwuNDM0LS4yMzEuNTIuNTIsMCwwLDEsLjI4My4wODVsMy43MjEsMi40ODQtMy43MjEsMi40NzlBLjUyOC41MjgsMCwwLDEsMTk0MDYuMzQ2LDQ4NjYuNTY0WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNDg2Ny4wNjQgLTE5NDAwLjk5OCkgcm90YXRlKDkwKSIgZmlsbD0iIzM0NDk1ZSIgc3Ryb2tlPSJyZ2JhKDAsMCwwLDApIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS13aWR0aD0iMSIvPgo8L3N2Zz4K");
    width: 6px;
    height: 10px;
    top: 8px;
    left: -20px;
  }
}
@charset "UTF-8";

/* 026_number-list_2clm */

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */


.section-number-list {
  margin: 60px 0;
}
@media screen and (min-width: 768px) {
  .section-number-list {
    margin: 80px 0 60px 0;
  }
}

.number-list__columns {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (min-width: 768px) {
  .number-list__columns {
    margin-left: 0;
    margin-right: 0;
  }
}

.number-list__columns__column {
  box-sizing: border-box;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .number-list__columns__column {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .number-list__columns__column:nth-child(1) {
    margin-right: 0;
  }
}
@media screen and (min-width: 1050px) {
  .number-list__columns__column:nth-child(1) {
    width: calc(50% - 185px);
    margin-right: 185px;
  }
}
@media screen and (min-width: 768px) {
  .number-list__columns__column:nth-child(2) {
    width: calc(100% - 115px);
    margin-left: 115px;
  }
}
@media screen and (min-width: 1050px) {
  .number-list__columns__column:nth-child(2) {
    width: 50%;
    margin-top: 35px;
    margin-left: 0;
  }
}

.number-list__columns__column .heading-2 {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .number-list__columns__column .heading-2 {
    margin-top: 0;
    margin-bottom: 55px;
  }
}

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

.number-list__columns__column__box__item:not(:first-child) {
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .number-list__columns__column__box__item:not(:first-child) {
    padding-top: 40px;
  }
}
.number-list__columns__column__box__item {
  padding-bottom: 20px;
  border-bottom: 1px dotted #BFD1D6;
}
@media screen and (min-width: 768px) {
  .number-list__columns__column__box__item {
    padding-bottom: 40px;
  }
}

.number-list__columns__column__box__item .heading-3 {
  position: relative;
  padding-left: 25px;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .number-list__columns__column__box__item .heading-3 {
    padding-left: 35px;
  }
}

.number-list__columns__column__box__item .heading-3::before {
  content: counter(number , decimal-leading-zero);
  counter-increment: number 1;
  font-family: 'Lato', sans-serif;;
  font-style: italic;
  font-size: 11px;
  font-weight: 700;
  color: #486C9F;
  letter-spacing: .15em;
  line-height: 1.5;
  top: 8px;
  left: 0;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .number-list__columns__column__box__item .heading-3::before {
    font-size: 14px;
    top: 11px;
  }
}

.number-list__columns__column__box__item .paragraph {
  color: #2E4053;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .number-list__columns__column__box__item .paragraph {
    padding-left: 35px;
  }
}
@charset "UTF-8";

/* 027_profile-2clm */

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */


.section-profile-2clm {
  margin: 40px 0;
}
@media screen and (min-width: 768px) {
  .section-profile-2clm {
    margin: 80px 0;
  }
}

.profile-2clm__wrapper__box {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (min-width: 768px) {
  .profile-2clm__wrapper__box {
    margin-left: -25px;
    margin-right: -25px;
  }
}

.profile-2clm__wrapper__box__item {
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .profile-2clm__wrapper__box__item {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media screen and (min-width: 768px) {
  .profile-2clm__wrapper__box__item:nth-child(1) {
    max-width: 250px;
  }
}
@media screen and (min-width: 768px) {
  .profile-2clm__wrapper__box__item:nth-child(2) {
    width: calc(100% - 250px);
  }
}

.profile-2clm__wrapper__box__item__images__columns__column img {
  max-width: 100%;
  width: 100%;
  vertical-align: bottom;
  border-radius: 100%;
}

.profile-2clm__wrapper__box__item__images__columns__column .sub-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  color: #2E4053;
  letter-spacing: .1em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .profile-2clm__wrapper__box__item__images__columns__column .sub-text {
    font-size: 12px;
    margin-top: 20px;
  }
}

.profile-2clm__wrapper__box__item__images__columns__column .main-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #2E4053;
  letter-spacing: .1em;
  line-height: 1.5;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .profile-2clm__wrapper__box__item__images__columns__column .main-text {
    font-size: 16px;
    margin-top: 20px;
  }
}

.profile-2clm__wrapper__box__item__inner {
  padding: 25px 20px;
  border: 1px solid #044A9E;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .profile-2clm__wrapper__box__item__inner {
    padding: 30px;
  }
}

.profile-2clm__wrapper__box__item__inner .title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #044A9E;
  letter-spacing: .2em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .profile-2clm__wrapper__box__item__inner .title {
    font-size: 24px;
  }
}

.profile-2clm__wrapper__box__item .paragraph {
  color: #2E4053;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .profile-2clm__wrapper__box__item .paragraph {
    margin-top: 25px;
  }
}

@media screen and (max-width: 767px) {
  .profile-2clm__wrapper__box__item__images__columns {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .profile-2clm__wrapper__box__item__images__columns__column {
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    width: 50%;
  }
}
@charset "UTF-8";

/* faq-question */

.section-faq-question {
  margin-top: 30px;
  margin-bottom: 40px;
}

@media screen and (min-width: 1050px) {
  .section-faq-question {
    margin-top: 45px;
    margin-bottom: 55px;
  }
}

.faq-question__list__item {
  border-left: 1px dotted #BFD1D6;
  border-right: 1px dotted #BFD1D6;
}

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

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

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

.faq-question__list__item__question {
  padding: 11px calc(15px + 36px) 9px 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: 16px calc(20px + 60px) 14px 20px;
  }
}

.faq-question__list__item__question:hover {
}

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

/* 背景色ありのスタイル */
.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: .2em;
  line-height: 1.5em;
  font-weight: 500;
}

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

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

    sub_navigation

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

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */



.sub-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;;
  flex-wrap: wrap;
}

/* タブ */

.section-tab,
.section-index {
  margin-bottom: 50px;
  margin-top: 50px;
}

.section-anchor {
  margin-bottom: 60px;
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .section-anchor {
    margin-bottom: 40px;
    margin-top: 40px;
  }
}

.sub-navigation.sub-navigation--tab {
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  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 button {
  background-color: inherit;
  border: none;
  width: 100%;
  color: #BFD1D6;
}

.sub-navigation--tab__list button .sub-navigation--tab__list__link__text {
  color: #BFD1D6;
  transition: .5s;
}

.sub-navigation--tab__list:hover button .sub-navigation--tab__list__link__text,
.sub-navigation--tab__list button.is-active .sub-navigation--tab__list__link__text {
    color: #2C3E50;
}

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

button.sub-navigation--tab__list__link {
  display: block;
  padding: 15px 10px 10px 10px;
  border-bottom: 8px solid #BFD1D6;
  font-size: 17px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: #34495E;
  position: relative;
  letter-spacing: .15em;
  transition: .5s;
}
@media only screen and (max-width: 767px) {
  .sub-navigation--tab__list__link {
    font-size: 14px;
  }
}

.sub-navigation--tab__list__link a,
.sub-navigation--tab__list button {
  color: #BFD1D6;
  transition: .5s;
}

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

.sub-navigation--tab__list__link:hover,
.sub-navigation--tab__list__link.is-active {
  cursor: pointer;
  border-bottom: 8px solid #2C3E50;
  color: #2C3E50;
}
.sub-navigation--tab__list__link:hover:before,
.sub-navigation--tab__list__link.is-active::before {
  height: 8px;
}
.sub-navigation--tab__list__link:hover:after,
.sub-navigation--tab__list__link.is-active::after {
  height: 23px;
}
.sub-navigation--tab__list:hover .sub-navigation--tab__list__link {
  border-bottom: 8px solid #2C3E50;
}
.sub-navigation--tab__list:hover .sub-navigation--tab__list__link a,
.sub-navigation--tab__list:hover .sub-navigation--tab__list__link button {
  color: #2C3E50;
}
.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 {
  transform: translateY(0);
  opacity: 1;
}

@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: 14px;
  }
  .sub-navigation--tab__list .tab__list__link__text:before {
    width: 35px;
    height: 4px;
    left: calc(50% - 18px);
  }3w
}

/* タブコンテンツ */
.tab-container .tab__content {
  display: none
}

.tab-container .tab__content.is-active {
  display: block
}

.tab__content__lower {
  border-top: 1px dotted #BFD1D6;
  padding-top: 60px;
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .tab__content__lower {
    padding-top: 35px;
    margin-top: 30px;
  }
}
/* ==========================================================================

  021：step

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

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */


.section-step-columns {
  margin-bottom: 60px;
  margin-top: 60px;
  counter-reset: number;
}
@media screen and (min-width: 768px) {
  .section-step-columns {
    margin-bottom: 80px;
    margin-top: 80px;
  }
}

.step-columns {
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;;
}

.step-columns:not(:first-child) {
  margin-top: 60px;
}

.step-columns__column {
  border: 1px solid #BFD1D6;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 50px 30px 45px;
  position: relative;
}
@media screen and (min-width: 1050px) {
  .step-columns__column {
    width: calc(25% - 30px);
  }
}
@media screen and (max-width: 1049px) {
  .step-columns__column {
    padding: 50px 40px 45px;
  }
}
@media screen and (max-width: 767px) {
  .step-columns__column {
    padding: 30px 25px 20px;
  }
}

.step-columns__column::before {
  background-color: #2C3E50;
  border-radius: 3px;
  box-sizing: border-box;
  content: attr(data-english-text) " " counter(number);
  counter-increment: number;
  color: #fff;
  display: block;
  font-family: 'Lato', sans-serif;;
  font-style: italic;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: .15em;
  left: 50%;
  padding: 7px 10px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
  top: -15px;
  white-space: nowrap;
  width: 172px;
}
@media screen and (max-width: 767px) {
  .step-columns__column::before {
    font-size: 12px;
    padding: 5px 10px;
  }
}

.step-columns__column:not(:last-child)::after {
  content: "";
  border-style: solid;
  border-width: 7px 0 7px 9px;
  border-color: transparent transparent transparent #044A9E;
  height: 0;
  position: absolute;
  width: 0;
}
@media screen and (min-width: 1050px) {
  .step-columns__column:not(:last-child)::after {
    right: -20px;
    top: calc(50% - 7px);
  }
}
@media screen and (max-width: 1049px) {
  .step-columns__column:not(:last-child)::after {
    border-width: 9px 7px 0 7px;
    border-color: #044A9E transparent transparent transparent;
    bottom: -21px;
    left: calc(50% - 7px);
  }
}

@media screen and (min-width: 1050px) {
  .step-columns__column:not(:last-child) {
    margin-right: 30px;
  }

  .step-columns__column:nth-child(n+5) {
    margin-top: 55px;
  }
}

@media screen and (max-width: 1049px) {
  .step-columns__column:not(:first-child) {
    margin-top: 45px;
  }
}
@charset "UTF-8";

/* 028_tel-text */

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */


.section-tel-text {
  margin: 40px 0;
}
@media screen and (min-width: 768px) {
  .section-tel-text {
    margin: 60px 0;
  }
}

.tel-text__box {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding: 30px;
  border: 1px solid #044A9E;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .tel-text__box {
    padding: 40px 95px;
  }
}
@media screen and (min-width: 1050px) {
  .tel-text__box {
    align-items: center;
    padding: 40px 50px;
  }
}

.tel-text__box__item {
  box-sizing: border-box;
  width: 100%;
}
@media screen and (min-width: 1050px) {
  .tel-text__box__item {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1050px) {
  .tel-text__box__item:not(:last-child) {
    max-width: 555px;
    border-right: 1px dotted #044A9E;
    padding-left: 0;
  }
}
@media screen and (min-width: 1050px) {
  .tel-text__box__item:nth-child(2) {
    width: calc(100% - 555px);
    padding-right: 0;
  }
}

.tel-text__box__item__columns .tel-text__box__item__columns__title {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #044A9E;
  letter-spacing: .1em;
  line-height: 1.5;
  padding-bottom: 5px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid #044A9E;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .tel-text__box__item__columns .tel-text__box__item__columns__title {
    font-size: 16px;
    margin-right: 30px;
    padding-bottom: 7px;
    margin-bottom: 0;
    text-align: left;
    position: inherit;
  }
}

.tel-text__box__item__columns .tel-text__box__item__columns__link {
  display: block;
  font-family: 'Lato', sans-serif;;
  font-style: italic;
  font-size: 24px;
  font-weight: 700;
  color: #044A9E;
  letter-spacing: .15em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .tel-text__box__item__columns .tel-text__box__item__columns__link {
    font-size: 30px;
  }
}

.tel-text__box__item__columns {
  border-bottom: 1px dotted #044A9E;
  padding-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .tel-text__box__item__columns {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 30px;
    justify-content: space-between;
    text-align: left;
  }
}
@media screen and (min-width: 1050px) {
  .tel-text__box__item__columns {
    padding: 5px 0;
    border-bottom: none;
    justify-content: inherit;
    align-items: flex-start;
  }
}

.tel-text__box__item .paragraph {
  margin-top: 20px;
  color: #044A9E;
}
@media screen and (min-width: 768px) {
  .tel-text__box__item .paragraph {
    margin-top: 25px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1050px) {
  .tel-text__box__item .paragraph {
    margin: 0;
  }
}
/* ==========================================================================

  023：説明リスト＋動画

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

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */


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

.table-list {
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;;
}

.section-table-list .movie:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .section-table-list .movie:not(:last-child) {
    margin-bottom: 30px;
  }
}

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

.table-list:not(:last-child) {
  margin-bottom: 30px;
}

.table-list__group {
  border-bottom: 1px dotted #BFD1D6;
  padding: 15px 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .table-list__group {
    flex-wrap: wrap;
    display: -webkit-box;
  display: -ms-flexbox;
  display: flex;;
    -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;;
    padding: 20px 0;
  }
}

.table-list__group:first-child {
  border-top: 1px dotted #BFD1D6;
}

@media screen and (min-width: 768px) {
  .table-list__group__term,
  .table-list__group__desc {
    width: calc(50% - 25px);
  }
}

.table-list__group__term {
  font-size: 1.3rem;
  letter-spacing: .1em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .table-list__group__term {
    font-size: 1.6rem;
    letter-spacing: .1em;
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .table-list__group__term {
    margin-bottom: 10px;
  }
}

.table-list__group__desc .paragraph {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .table-list__group__desc .paragraph {
    text-align: left !important;
  }
}
@charset "UTF-8";

/* 021_heading3_text_3clm */

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */


.section-heading3-text__three-columns {
  margin: 60px 0;
}
@media screen and (min-width: 768px) {
  .section-heading3-text__three-columns {
    margin: 80px 0;
  }
}

.heading3-text__three-columns--wrapper .heading-2 {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .heading3-text__three-columns--wrapper .heading-2 {
    margin-bottom: 40px;
  }
}

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

.heading3-text__three-columns__column {
  box-sizing: border-box;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .heading3-text__three-columns__column {
    width: 50%;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media screen and (min-width: 1050px) {
  .heading3-text__three-columns__column {
    width: 33.333%;
  }
}
@media screen and (max-width: 767px) {
  .heading3-text__three-columns__column:nth-child(n + 2) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1049px) {
  .heading3-text__three-columns__column:nth-child(n + 3) {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1050px) {
  .heading3-text__three-columns__column:nth-child(n + 4) {
    margin-top: 30px;
  }
}

.heading3-text__three-columns__column .paragraph {
  color: #2E4053;
}

.heading3-text__three-columns__column img {
  max-width: 100%;
  width: 100%;
  vertical-align: bottom;
  border-radius: 5px;
}
@charset "UTF-8";

/* 022_title-link_2clm */

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */


.section-title-link_2clm {
  margin: 60px 0;
}
@media screen and (min-width: 768px) {
  .section-title-link_2clm {
    margin: 80px 0;
  }
}

@media screen and (min-width: 768px) {
  .title-link_2clm--wrapper .heading-2{
    margin-bottom: 30px;
  }
}

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

.title-link_2clm__content__box {
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .title-link_2clm__content__box {
    box-sizing: border-box;
    padding-left: 25px;
    padding-right: 25px;
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .title-link_2clm__content__box:nth-child(n + 2) {
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .title-link_2clm__content__box:nth-child(n + 3) {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1050px) {
  .title-link_2clm__content__box:nth-child(n + 3) {
    margin-top: 40px !important;
  }
}

.title-link_2clm__content__box__list {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
@media screen and (min-width: 1050px) {
  .title-link_2clm__content__box__list {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.title-link_2clm__content__box__list__item {
  width: 100%;
}
@media screen and (min-width: 1050px) {
  .title-link_2clm__content__box__list__item {
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    width: 50%;
  }
}

.title-link_2clm__content__box__list__item img {
  max-width: 100%;
  width: 100%;
  vertical-align: bottom;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  .title-link_2clm__content__box__list__item .heading-3 {
    margin-top: 25px !important;
  }
}
@media screen and (max-width: 1049px) {
  .title-link_2clm__content__box__list__item .heading-3 {
    margin-top: 30px;
  }
}
@charset "UTF-8";

/* 023_heading2-center_3clm */

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */


.section-heading2-center_3clm {
  margin: 60px 0;
}
@media screen and (min-width: 768px) {
  .section-heading2-center_3clm {
    margin: 80px 0;
  }
}

.heading2-center_3clm--wrapper {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .heading2-center_3clm--wrapper .heading-2 {
    margin-bottom: 30px;
  }
}

.heading2-center_3clm__box {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-left: -15px;
  margin-right: -15px;
}
@media screen and (min-width: 1050px) {
  .heading2-center_3clm__box {
    margin-left: -25px;
    margin-right: -25px;
  }
}

.heading2-center_3clm__box__item {
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  width: 50%;
}
@media screen and (min-width: 768px) {
  .heading2-center_3clm__box__item {
    width: 33.333%;
  }
}
@media screen and (min-width: 1050px) {
  .heading2-center_3clm__box__item {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media screen and (max-width: 767px) {
  .heading2-center_3clm__box__item:nth-child(n + 3) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .heading2-center_3clm__box__item:nth-child(n + 4) {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1050px) {
  .heading2-center_3clm__box__item:nth-child(n + 4) {
    margin-top: 40px;
  }
}

.heading2-center_3clm__box__item img {
  max-width: 100%;
  width: 100%;
  vertical-align: bottom;
  border-radius: 5px;
}

.heading2-center_3clm__box__item .heading-3 {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .heading2-center_3clm__box__item .heading-3 {
    margin-top: 30px;
  }
}


/* 2カラム時 */

.heading2-center_3clm__box--two-columns {
  max-width: 732px;
  margin: 0 auto;
}

.heading2-center_3clm__box--two-columns .heading2-center_3clm__box__item {
width: 50%;
}
.heading2-center_3clm__box--two-columns .heading2-center_3clm__box__item:nth-child(1) {
padding-left: 0;
padding-right: 15px;
}
.heading2-center_3clm__box--two-columns .heading2-center_3clm__box__item:nth-child(2) {
padding-left: 15px;
padding-right: 0;
}
@media screen and (min-width: 768px) {
.heading2-center_3clm__box--two-columns .heading2-center_3clm__box__item:nth-child(1) {
  padding-right: 25px;
}
.heading2-center_3clm__box--two-columns .heading2-center_3clm__box__item:nth-child(2) {
  padding-left: 25px;
}
}
@media screen and (min-width: 1050px) {
.heading2-center_3clm__box--two-columns .heading2-center_3clm__box__item:nth-child(1) {
  padding-right: 50px;
}
.heading2-center_3clm__box--two-columns .heading2-center_3clm__box__item:nth-child(2) {
  padding-left: 50px;
}
}
@charset "UTF-8";

/* 025_heading2_text */

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */


.section-heading2-text {
  margin: 60px 0;
}
@media screen and (min-width: 768px) {
  .section-heading2-text {
    margin: 80px 0;
  } 
}

.heading2-text__box {
  text-align: center;
}

.heading2-text__box .heading-2 {
  margin-bottom: 30px;
}

.heading2-text__box .paragraph {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #044A9E;
  letter-spacing: .1em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .heading2-text__box .paragraph {
    font-size: 24px;
  }
}
@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) {
  margin-top: 50px;
  position: relative;
}

.service-flow__list__item:not(:first-child)::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 10px 0 10px;
  border-color: #044A9E transparent transparent transparent;
  position: absolute;
  top: -33px;
  left: calc(50% - 9px);
}

.service-flow__list__item__box {
  background-color: #34495E;
  padding: 20px;
  border-radius: 5px;
}
/* 背景色ありのスタイル */
.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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .service-flow__list__item__box__columns__column:nth-child(1) {
    -ms-flex-preferred-size: 225px;
    flex-basis: 225px;
  }
}

.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) {
    -ms-flex-preferred-size: calc(100% - 225px);
    flex-basis: calc(100% - 225px);
    margin-top: 0;
    margin-left: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@charset "UTF-8";

/* merumaga_form */

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

.section-merumaga_form__inner {
  padding: 30px;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #044A9E;
}
@media screen and (min-width: 768px) {
  .section-merumaga_form__inner {
    padding: 50px;
  }
}

@media screen and (max-width: 1049px) {
  .section-merumaga_form__inner .columns--two > .columns__column {
    width: 100%;
  }
}

.section-merumaga_form__inner .columns--two > .columns__column:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .section-merumaga_form__inner .columns--two > .columns__column:not(:first-child) {
    margin-top: 45px;
  }
}
@media screen and (min-width: 1050px) {
  .section-merumaga_form__inner .columns--two > .columns__column:not(:first-child) {
    margin-top: 0;
  }
}

.section-merumaga_form__inner form .hs-form-field > label {
  display: block;
  font-size: 1.6rem;
  color: #34495E;
  letter-spacing: .1em;
  line-height: 2em;
  font-weight: 500;
  border-top: 1px solid #2C3E50;
  padding-top: 10px;
}

@media screen and (max-width: 767px) {
  .section-merumaga_form__inner form .hs-form-field > label {
    font-size: 1.3rem;
    width: 100%;
  }
}

.section-merumaga_form__inner form .hs-form-field.hs-fieldtype-text .input {
  margin-top: 15px;
}

.section-merumaga_form__inner form .hs-form-field > .input input {
  outline: 0;
  background: none transparent;
  vertical-align: middle;
  color: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #BFD1D6;
  border-radius: 5px;
  width: 100% !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #34495E;
  letter-spacing: .1em;
  line-height: 1.5;
  padding: 10px 14px 9px;
}
@media screen and (min-width: 768px) {
  .section-merumaga_form__inner form .hs-form-field > .input input {
    font-size: 1.6rem;
    padding: 13px 14px 12px;
  }
}

.section-merumaga_form__inner form .hs-form-field > .input .hs-input.invalid.error {
  border-color: #E61010;
}

.section-merumaga_form__inner form .hs-form-field.hs-fieldtype-booleancheckbox .input label > input:checked + span::after {
  opacity: 1;
  pointer-events: auto;
}
.section-merumaga_form__inner form .legal-consent-container .hs-fieldtype-booleancheckbox label > input:checked + span::before {
  border-color: #BFD1D6;
  background-color: #BFD1D6;
}

.section-merumaga_form__inner form .hs-form-field.hs-fieldtype-booleancheckbox .input label > input {
  display: none;
}

.section-merumaga_form__inner form .hs-form-field.hs-fieldtype-text .input > input::placeholder {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.5;
  color: #BFD1D6;
}
@media screen and (min-width: 768px) {
  .section-merumaga_form__inner form .hs-form-field.hs-fieldtype-text .input > input::placeholder {
    font-size: 1.6rem;
  }
}

.section-merumaga_form__inner form .hs-form-field.hs-fieldtype-text .hs-error-msgs {
  color: #E61010;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: .05em;
  margin-top: 10px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .section-merumaga_form__inner form .hs-form-field.hs-fieldtype-text .hs-error-msgs {
    font-size: 1.0rem;
  }
}

.section-merumaga_form__inner form .legal-consent-container:not(:first-child) {
  margin-top: 20px;
}

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

.section-merumaga_form__inner form .legal-consent-container .hs-fieldtype-booleancheckbox {
  width: 100%;
  margin-bottom: 0;
}

.section-merumaga_form__inner form .legal-consent-container .hs-form-booleancheckbox-display > span {
  display: inline-block;
  color: #2C3E50;
  font-size: 1.5rem;
  letter-spacing: .1em;
  line-height: 2em;
  font-weight: 500;
  margin-left: 0;
  padding-left: 30px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .section-merumaga_form__inner form .legal-consent-container .hs-form-booleancheckbox-display > span {
    font-size: 1.7rem;
    padding-left: 40px;
  }
}

.section-merumaga_form__inner form .legal-consent-container .hs-form-booleancheckbox-display > span::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid #BFD1D6;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: transparent;
  position: absolute;
  top: 5px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .section-merumaga_form__inner form .legal-consent-container .hs-form-booleancheckbox-display > span::before {
    width: 25px;
    height: 25px;
  }
}

.section-merumaga_form__inner form .hs-form-field.hs-fieldtype-booleancheckbox .input label > span::after {
  content: '';
  width: 11px;
  height: 8px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNi45NiAxMS40NCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNmZmY7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGlkPSLjg5HjgrlfOTciIGRhdGEtbmFtZT0i44OR44K5IDk3IiBjbGFzcz0iY2xzLTEiIGQ9Ik0wLDUuMWw2Ljg5LDYuMzRMMTcsMi4yMSwxNC43LDAsNi44OSw3LjMxLDIuMDcsMi43N1oiLz48L2c+PC9nPjwvc3ZnPg==");
  background-size: cover;
  position: absolute;
  top: 11px;
  left: 4px;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
  opacity: 0;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .section-merumaga_form__inner form .hs-form-field.hs-fieldtype-booleancheckbox .input label > span::after {
    width: 17px;
    height: 11px;
    top: 12px;
  }
}

.section-merumaga_form__inner form .hs-form-field.hs-fieldtype-booleancheckbox .hs-error-msgs {
  color: #E61010;
  font-size: 1.0rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: .05em;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .section-merumaga_form__inner form .hs-form-field.hs-fieldtype-booleancheckbox .hs-error-msgs {
    font-size: 1.2rem;
  } 
}

.section-merumaga_form__inner form .hs-submit {
  margin-top: 20px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .section-merumaga_form__inner form .hs-submit {
    margin-top: 25px;
    text-align: inherit;
  }
}

.section-merumaga_form__inner form .hs-submit .actions {
  border-radius: 5px;
  box-sizing: border-box;
  display: inline-block;
  text-align: left;
  min-width: 220px;
  background-color: #044A9E;
  padding: 19px 63px 17px 30px;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
}
@media screen and (min-width: 768px) {
  .section-merumaga_form__inner form .hs-submit .actions {
    min-width: 280px;
  }
}

.section-merumaga_form__inner form .hs-submit .actions::before {
  content: '';
  width: 22px;
  height: 8px;
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjEuNzcxIiBoZWlnaHQ9IjcuOTg5IiB2aWV3Qm94PSIwIDAgMjEuNzcxIDcuOTg5Ij48ZGVmcz48Y2xpcFBhdGggaWQ9ImEiPjxyZWN0IHdpZHRoPSIyMS43NyIgaGVpZ2h0PSI3Ljk4OSIgZmlsbD0iI2ZmZiIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDggNTUpIj48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtOCAtNTUpIiBjbGlwLXBhdGg9InVybCgjYSkiPjxwYXRoIGQ9Ik0xNS45OC4xMzRhLjguOCwwLDEsMC0uODg2LDEuMzI5bDIuNiwxLjczMkguOGEuOC44LDAsMCwwLDAsMS42SDE3LjY5MmwtMi42LDEuNzMyYS44LjgsMCwxLDAsLjg4NiwxLjMyOWw1Ljc5LTMuODZaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-position: center;
}

.section-merumaga_form__inner form .hs-submit .actions input {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: .1em;
  line-height: 1.5em;
  text-transform: uppercase;
  background-color: transparent;
  border: none;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .section-merumaga_form__inner form .hs-submit .actions:hover {
    background-color: #34495E;
  }
}

.section-merumaga_form__inner form .hs_error_rollup {
  text-align: left;
}
@charset "UTF-8";

/* ebook_form */

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

.section-ebook_form__inner {
  padding: 30px;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #044A9E;
}
@media screen and (min-width: 768px) {
  .section-ebook_form__inner {
    padding: 50px;
  }
}

@media screen and (max-width: 1049px) {
  .section-ebook_form__inner .columns--two > .columns__column {
    width: 100%;
  }
}

.section-ebook_form__inner .columns--two > .columns__column:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .section-ebook_form__inner .columns--two > .columns__column:not(:first-child) {
    margin-top: 45px;
  }
}
@media screen and (min-width: 1050px) {
  .section-ebook_form__inner .columns--two > .columns__column:not(:first-child) {
    margin-top: 0;
  }
}

.section-ebook_form__inner .paragraph {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .section-ebook_form__inner .paragraph {
    margin-top: 30px;
  }
}

.section-ebook_form__inner .slider-wrapper__images img {
  max-width: 100%;
  width: 100%;
}

.section-ebook_form__inner .sliderarea .slick-dots {
  display: flex;
  flex-wrap: nowrap;
  box-sizing: border-box;
  padding-top: 20px;
  justify-content: center;
}

.section-ebook_form__inner .sliderarea .slick-dots li:not(:last-child) {
  padding-right: 10px;
}

.section-ebook_form__inner .sliderarea .slick-dots li button {
  display: block;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  line-height: 0;
  font-size: 0;
  background-color: #BFD1D6;
  border-radius: 100%;
  width: 12px;
  height: 12px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.section-ebook_form__inner .sliderarea .slick-dots li.slick-active button {
  background-color: #044A9E;
}


/* フォームcss */
.section-ebook_form__inner form fieldset {
  max-width: inherit;
}
@media screen and (max-width: 1049px) {
  .section-ebook_form__inner form fieldset:first-child {
    margin-top: 30px;
  }
}
.section-ebook_form__inner form fieldset:not(:last-child) {
  margin-bottom: 30px;
}

.section-ebook_form__inner form fieldset.form-columns-2 {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  max-width: inherit;
}

.section-ebook_form__inner form fieldset.form-columns-2 .hs-lastname,
.section-ebook_form__inner form fieldset.form-columns-2 .hs-firstname {
  width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .section-ebook_form__inner form fieldset.form-columns-2 .hs-lastname,
  .section-ebook_form__inner form fieldset.form-columns-2 .hs-firstname {
    width: 50%;
  }
}
.section-ebook_form__inner form fieldset.form-columns-2 .hs-firstname {
  padding-left: 0;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .section-ebook_form__inner form fieldset.form-columns-2 .hs-firstname {
    padding-left: 10px;
    margin-top: 0;
  }
}
.section-ebook_form__inner form fieldset.form-columns-2 .hs-lastname {
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  .section-ebook_form__inner form fieldset.form-columns-2 .hs-lastname {
    padding-right: 10px;
  }
}

.section-ebook_form__inner form .hs-form-field > label {
  display: block;
  font-size: 1.6rem;
  color: #34495E;
  letter-spacing: .1em;
  line-height: 2em;
  font-weight: 500;
  border-top: 1px solid #2C3E50;
  padding-top: 10px;
}

@media screen and (max-width: 767px) {
  .section-ebook_form__inner form .hs-form-field > label {
    font-size: 1.3rem;
    width: 100%;
  }
}

.section-ebook_form__inner form .hs-form-field.hs-fieldtype-text .input {
  margin-top: 15px;
  margin-right: 0;
}

.section-ebook_form__inner form .hs-form-field > .input input {
  outline: 0;
  background: none transparent;
  vertical-align: middle;
  color: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #BFD1D6;
  border-radius: 5px;
  width: 100% !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #34495E;
  letter-spacing: .1em;
  line-height: 1.5;
  padding: 10px 14px 9px;
}
@media screen and (min-width: 768px) {
  .section-ebook_form__inner form .hs-form-field > .input input {
    font-size: 1.6rem;
    padding: 13px 14px 12px;
  }
}

.section-ebook_form__inner form .hs-form-field > .input .hs-input.invalid.error {
  border-color: #E61010;
}

.section-ebook_form__inner form .hs-form-field.hs-fieldtype-booleancheckbox .input label > input:checked + span::after {
  opacity: 1;
  pointer-events: auto;
}
.section-ebook_form__inner form .legal-consent-container .hs-fieldtype-booleancheckbox label > input:checked + span::before {
  border-color: #BFD1D6;
  background-color: #BFD1D6;
}

.section-ebook_form__inner form .hs-form-field.hs-fieldtype-booleancheckbox .input label > input {
  display: none;
}

.section-ebook_form__inner form .hs-form-field.hs-fieldtype-text .input > input::placeholder {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.5;
  color: #BFD1D6;
}
@media screen and (min-width: 768px) {
  .section-ebook_form__inner form .hs-form-field.hs-fieldtype-text .input > input::placeholder {
    font-size: 1.6rem;
  }
}

.section-ebook_form__inner form .hs-form-field.hs-fieldtype-text .hs-error-msgs {
  color: #E61010;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: .05em;
  margin-top: 10px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .section-ebook_form__inner form .hs-form-field.hs-fieldtype-text .hs-error-msgs {
    font-size: 1.0rem;
  }
}

.section-ebook_form__inner form .legal-consent-container:not(:first-child) {
  margin-top: 20px;
}

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

.section-ebook_form__inner form .legal-consent-container .hs-fieldtype-booleancheckbox {
  width: 100%;
  margin-bottom: 0;
}

.section-ebook_form__inner form .legal-consent-container .hs-fieldtype-booleancheckbox .input {
  margin-right: 0;
}

.section-ebook_form__inner form .legal-consent-container .hs-form-booleancheckbox-display > span {
  display: inline-block;
  color: #2C3E50;
  font-size: 1.5rem;
  letter-spacing: .1em;
  line-height: 2em;
  font-weight: 500;
  margin-left: 0;
  padding-left: 30px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .section-ebook_form__inner form .legal-consent-container .hs-form-booleancheckbox-display > span {
    font-size: 1.7rem;
    padding-left: 40px;
  }
}

.section-ebook_form__inner form .legal-consent-container .hs-form-booleancheckbox-display > span::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid #BFD1D6;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: transparent;
  position: absolute;
  top: 5px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .section-ebook_form__inner form .legal-consent-container .hs-form-booleancheckbox-display > span::before {
    width: 25px;
    height: 25px;
  }
}

.section-ebook_form__inner form .hs-form-field.hs-fieldtype-booleancheckbox .input label > span::after {
  content: '';
  width: 11px;
  height: 8px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNi45NiAxMS40NCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNmZmY7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGlkPSLjg5HjgrlfOTciIGRhdGEtbmFtZT0i44OR44K5IDk3IiBjbGFzcz0iY2xzLTEiIGQ9Ik0wLDUuMWw2Ljg5LDYuMzRMMTcsMi4yMSwxNC43LDAsNi44OSw3LjMxLDIuMDcsMi43N1oiLz48L2c+PC9nPjwvc3ZnPg==");
  background-size: cover;
  position: absolute;
  top: 11px;
  left: 4px;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
  opacity: 0;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .section-ebook_form__inner form .hs-form-field.hs-fieldtype-booleancheckbox .input label > span::after {
    width: 17px;
    height: 11px;
    top: 12px;
  }
}

.section-ebook_form__inner form .hs-form-field.hs-fieldtype-booleancheckbox .hs-error-msgs {
  color: #E61010;
  font-size: 1.0rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: .05em;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .section-ebook_form__inner form .hs-form-field.hs-fieldtype-booleancheckbox .hs-error-msgs {
    font-size: 1.2rem;
  }
}

.section-ebook_form__inner form .hs-submit {
  margin-top: 20px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .section-ebook_form__inner form .hs-submit {
    margin-top: 25px;
    text-align: inherit;
  }
}

.section-ebook_form__inner form .hs-submit .actions {
  border-radius: 5px;
  box-sizing: border-box;
  display: inline-block;
  text-align: left;
  min-width: 220px;
  background-color: #044A9E;
  padding: 19px 63px 17px 30px;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
}
@media screen and (min-width: 768px) {
  .section-ebook_form__inner form .hs-submit .actions {
    min-width: 280px;
  }
}

.section-ebook_form__inner form .hs-submit .actions::before {
  content: '';
  width: 22px;
  height: 8px;
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjEuNzcxIiBoZWlnaHQ9IjcuOTg5IiB2aWV3Qm94PSIwIDAgMjEuNzcxIDcuOTg5Ij48ZGVmcz48Y2xpcFBhdGggaWQ9ImEiPjxyZWN0IHdpZHRoPSIyMS43NyIgaGVpZ2h0PSI3Ljk4OSIgZmlsbD0iI2ZmZiIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDggNTUpIj48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtOCAtNTUpIiBjbGlwLXBhdGg9InVybCgjYSkiPjxwYXRoIGQ9Ik0xNS45OC4xMzRhLjguOCwwLDEsMC0uODg2LDEuMzI5bDIuNiwxLjczMkguOGEuOC44LDAsMCwwLDAsMS42SDE3LjY5MmwtMi42LDEuNzMyYS44LjgsMCwxLDAsLjg4NiwxLjMyOWw1Ljc5LTMuODZaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-position: center;
}

.section-ebook_form__inner form .hs-submit .actions input {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: .1em;
  line-height: 1.5em;
  text-transform: uppercase;
  background-color: transparent;
  border: none;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .section-ebook_form__inner form .hs-submit .actions:hover {
    background-color: #34495E;
  }
}

.section-ebook_form__inner form .hs_error_rollup {
  text-align: left;
}
@charset "UTF-8";

/* slider_check */

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

@media screen and (max-width: 1049px) {
  .section-slider_check .columns--two > .columns__column {
    width: 100%;
  }
}

.section-slider_check .columns--two > .columns__column:nth-child(1) {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .section-slider_check .columns--two > .columns__column:nth-child(1) {
    max-width: 337px;
  }
}
.section-slider_check .columns--two > .columns__column:nth-child(2) {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .section-slider_check .columns--two > .columns__column:nth-child(2) {
    width: calc(100% - 337px);
  }
}

@media screen and (max-width: 767px) {
  .section-slider_check .slider-wrapper__images {
    display: flex !important;
    justify-content: center !important;
  }
}

.section-slider_check .slider-wrapper__images img {
  max-width: 280px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .section-slider_check .slider-wrapper__images img {
    max-width: 337px;
  }
}

.section-slider_check .paragraph:nth-child(n+2) {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .section-slider_check .paragraph:nth-child(n+2) {
    margin-top: 30px;
  }
}

.section-slider_check .sliderarea .slick-dots {
  display: flex;
  flex-wrap: nowrap;
  box-sizing: border-box;
  padding-top: 20px;
  justify-content: center;
}

.section-slider_check .sliderarea .slick-dots li:not(:last-child) {
  padding-right: 10px;
}

.section-slider_check .sliderarea .slick-dots li button {
  display: block;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  line-height: 0;
  font-size: 0;
  background-color: #BFD1D6;
  border-radius: 100%;
  width: 12px;
  height: 12px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.section-slider_check .sliderarea .slick-dots li.slick-active button {
  background-color: #044A9E;
}

.section-slider_check .check-list:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .section-slider_check .check-list:not(:first-child) {
    margin-top: 35px;
  }
}
.section-slider_check .check-list__item:not(:first-child) {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .section-slider_check .check-list__item:not(:first-child) {
    margin-top: 15px;
  }
}
.section-slider_check .check-list__item {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
  color: #044A9E;
  padding-left: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .section-slider_check .check-list__item {
    font-size: 1.6rem;
    padding-left: 25px;
  }
}

.section-slider_check .check-list__item::before {
  content: "";
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTIuNzMiIGhlaWdodD0iMTIuNzMiIHZpZXdCb3g9IjAgMCAxMi43MyAxMi43MyI+CiAgPGRlZnM+CiAgICA8Y2xpcFBhdGggaWQ9ImNsaXAtcGF0aCI+CiAgICAgIDxyZWN0IGlkPSLplbfmlrnlvaJfMzg1NyIgZGF0YS1uYW1lPSLplbfmlrnlvaIgMzg1NyIgd2lkdGg9IjEyLjczIiBoZWlnaHQ9IjEyLjczIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIiBmaWxsPSIjMDQ0YTllIi8+CiAgICA8L2NsaXBQYXRoPgogIDwvZGVmcz4KICA8ZyBpZD0i44Kw44Or44O844OXXzY5OTQiIGRhdGEtbmFtZT0i44Kw44Or44O844OXIDY5OTQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgMCkiPgogICAgPGcgaWQ9IuOCsOODq+ODvOODl182NzY3IiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyA2NzY3IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIiBjbGlwLXBhdGg9InVybCgjY2xpcC1wYXRoKSI+CiAgICAgIDxwYXRoIGlkPSLjg5HjgrlfNjc3MSIgZGF0YS1uYW1lPSLjg5HjgrkgNjc3MSIgZD0iTTE0Ljc4MSwxOS4yYS40MzguNDM4LDAsMCwxLS4zMDktLjEyOGwtMS41NTEtMS41NTFhLjQzNi40MzYsMCwxLDEsLjYxNy0uNjE3bDEuMjQyLDEuMjQyLDIuNTU1LTIuNTU1YS40MzYuNDM2LDAsMSwxLC42MTcuNjE3bC0yLjg2MywyLjg2NGEuNDM4LjQzOCwwLDAsMS0uMzA5LjEyOCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTkuMDcyIC0xMC45NjIpIiBmaWxsPSIjMDQ0YTllIi8+CiAgICAgIDxwYXRoIGlkPSLjg5HjgrlfNjc3MiIgZGF0YS1uYW1lPSLjg5HjgrkgNjc3MiIgZD0iTTYuMzY1LDEyLjczQTYuMzY1LDYuMzY1LDAsMSwxLDEyLjczLDYuMzY1LDYuMzczLDYuMzczLDAsMCwxLDYuMzY1LDEyLjczbTAtMTEuODU4YTUuNDkyLDUuNDkyLDAsMSwwLDUuNDkyLDUuNDkzQTUuNSw1LjUsMCwwLDAsNi4zNjUuODczIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIiBmaWxsPSIjMDQ0YTllIi8+CiAgICA8L2c+CiAgPC9nPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  top: 4px;
  left: 0;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .section-slider_check .check-list__item::before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTYuNzMzIiBoZWlnaHQ9IjE2LjczMyIgdmlld0JveD0iMCAwIDE2LjczMyAxNi43MzMiPgogIDxkZWZzPgogICAgPGNsaXBQYXRoIGlkPSJjbGlwLXBhdGgiPgogICAgICA8cmVjdCBpZD0i6ZW35pa55b2iXzM4NTciIGRhdGEtbmFtZT0i6ZW35pa55b2iIDM4NTciIHdpZHRoPSIxNi43MzMiIGhlaWdodD0iMTYuNzMzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIiBmaWxsPSIjMDQ0YTllIi8+CiAgICA8L2NsaXBQYXRoPgogIDwvZGVmcz4KICA8ZyBpZD0i44Kw44Or44O844OXXzY3NjgiIGRhdGEtbmFtZT0i44Kw44Or44O844OXIDY3NjgiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgMCkiPgogICAgPGcgaWQ9IuOCsOODq+ODvOODl182NzY3IiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyA2NzY3IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIiBjbGlwLXBhdGg9InVybCgjY2xpcC1wYXRoKSI+CiAgICAgIDxwYXRoIGlkPSLjg5HjgrlfNjc3MSIgZGF0YS1uYW1lPSLjg5HjgrkgNjc3MSIgZD0iTTE1LjQwNiwyMC4zNzFBLjU3NS41NzUsMCwwLDEsMTUsMjAuMmwtMi4wMzgtMi4wMzlhLjU3My41NzMsMCwxLDEsLjgxMS0uODExbDEuNjMzLDEuNjMzLDMuMzU4LTMuMzU4YS41NzMuNTczLDAsMSwxLC44MTEuODExTDE1LjgxMSwyMC4yYS41NzUuNTc1LDAsMCwxLS40MDYuMTY4IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNy45MDIgLTkuNTQ4KSIgZmlsbD0iIzA0NGE5ZSIvPgogICAgICA8cGF0aCBpZD0i44OR44K5XzY3NzIiIGRhdGEtbmFtZT0i44OR44K5IDY3NzIiIGQ9Ik04LjM2NywxNi43MzNhOC4zNjcsOC4zNjcsMCwxLDEsOC4zNjYtOC4zNjYsOC4zNzYsOC4zNzYsMCwwLDEtOC4zNjYsOC4zNjZtMC0xNS41ODZhNy4yMiw3LjIyLDAsMSwwLDcuMjE5LDcuMjIsNy4yMjgsNy4yMjgsMCwwLDAtNy4yMTktNy4yMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAwKSIgZmlsbD0iIzA0NGE5ZSIvPgogICAgPC9nPgogIDwvZz4KPC9zdmc+Cg==");
    width: 16px;
    height: 16px;
    top: 5px;
  }
}

@charset "UTF-8";

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */



/* 下層ページKV */

.hero {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-sizing: border-box;
  border-radius: 5px 5px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;;
  margin: 0 auto;
  min-height: 480px;
  overflow: hidden;
  padding: 150px 0;
  position: relative;
  width: calc(100% - 70px);
  z-index: 1;
}
@media screen and (max-width: 1049px) {
  .hero {
    padding: 100px 0;
  }
}
@media screen and (max-width: 767px) {
  .hero {
    width: calc(100% - 20px);
    padding: 80px 0;
    min-height: 300px;
  }
}


.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2C3E50;
  opacity: .3;
  z-index: -1;
}

.hero::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 130px 100vw;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 1049px) {
  .hero::after {
    border-width: 0 0 70px 100vw;
  }
}
@media screen and (max-width: 767px) {
  .hero::after {
    border-width: 0 0 30px 100vw;
  }
}

.hero.hero--solid {
  border-radius: 5px;
}

.hero.hero--solid::after {
  content: none;
}

.hero .container {
  width: 100%;
}

.hero__heading {
  color: #fff;
  font-size: 3rem;
  letter-spacing: .1em;
  line-height: 1.5em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .hero__heading {
    font-size: 5rem;
  }
}
@media screen and (min-width: 1050px) {
  .hero__heading {
    font-size: 4.0rem;
  }
}

.hero__heading::before {
  content: attr(data-decoration-text);
  display: block;
  font-family: 'Lato', sans-serif;;
  font-style: italic;
  font-size: 1.8rem;
  letter-spacing: .15em;
  line-height: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-minimal {
  position: relative;
}

.hero-minimal::after {
  content: none;
}

.hero-minimal__heading {
  font-size: 3.0rem;
  letter-spacing: .1em;
  line-height: 1.5em;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .hero-minimal__heading {
    font-size: 5.0rem;
  }
}

@media screen and (min-width: 1050px) {
  .hero-minimal__heading {
    font-size: 4.0rem;
  }
}

.hero-minimal__heading::before {
  content: attr(data-decoration-text);
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: 'Lato', sans-serif;;
  font-style: italic;
  letter-spacing: .15em;
  line-height: 1.2em;
  text-transform: uppercase;
}
@charset "UTF-8";

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


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




/* 色
--------------------------------------*/


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


/* 英字のフォント */


/* html 要素 */









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



/* small要素 */



/* sub、sup 要素 */




/* 文字のスタイル
--------------------------------------*/
/* 太さ */


/* 行間 */



/* 文字間 */




  /* ボックスのスタイル
--------------------------------------*/
/* ボタンの角丸 */


/* ボックスの角丸 */



/* container の設定
--------------------------------------*/
/* 幅の上限と下限 */



/* 左右内側の余白 */





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





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



















/* 設定
---------------------------------------*/
/* align-items */


/* flex-display */


/* flex-wrap */


/* justify-content */


/* order */


/* flex */



/* top_kv */

.home-hero {
  height: calc(100vh - 56px);
  height: calc(var(--vh, 1vh) * 100  - 56px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  background-position: center;
  background-size: cover;
  width: calc(100% - 20px);
  margin: 0 auto;
  border-radius: 5px;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .home-hero {
    width: calc(100% - 70px);
    height: 638px;
  }
}

.home-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2C3E50;
  opacity: .3;
}

.home-hero__heading {
  color: #ffffff;
  font-size: 3.0rem;
  letter-spacing: .15em;
  line-height: 1.5em;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1050px) {
  .home-hero__heading {
    font-size: 5.0rem;
  }
}

.home-hero__heading:not(:first-child) {
  margin-top: 0;
}

.home-hero__heading:not(:last-child) {
  margin-bottom: 0;
}

.home-hero__heading::before {
  content: attr(data-decoration-text);
  display: block;
  font-size: 1.5rem;
  font-family: 'Lato', sans-serif;;
  font-style: italic;
  font-weight: bold;
  font-style: italic;
  letter-spacing: .15em;
  line-height: 1.2em;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
}

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

.home-hero__logo {
  margin-top: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.home-hero__scroll {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: .15em;
  line-height: 1.5em;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;;
  font-style: italic;
  font-weight: bold;
  font-style: italic;
  position: absolute;
  bottom: 20px;
  left: calc(50% - 50px);
  padding-bottom: 40px;
  width: 100px;
  text-align: center;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .home-hero__scroll {
    font-size: 1.4rem;
    padding-bottom: 30px;
  }
}

.home-hero__scroll::after {
  content: '';
  width: 8px;
  height: 22px;
  position: absolute;
  left: calc(50% - 4px);
  bottom: 1px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iNy45ODkiIGhlaWdodD0iMjEuNzcxIiB2aWV3Qm94PSIwIDAgNy45ODkgMjEuNzcxIj48ZGVmcz48Y2xpcFBhdGggaWQ9ImEiPjxyZWN0IHdpZHRoPSIyMS43NyIgaGVpZ2h0PSI3Ljk4OSIgZmlsbD0iI2ZmZiIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDcuOTg5KSByb3RhdGUoOTApIj48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIiBjbGlwLXBhdGg9InVybCgjYSkiPjxwYXRoIGQ9Ik0xNS45OC4xMzRhLjguOCwwLDEsMC0uODg2LDEuMzI5bDIuNiwxLjczMkguOGEuOC44LDAsMCwwLDAsMS42SDE3LjY5MmwtMi42LDEuNzMyYS44LjgsMCwxLDAsLjg4NiwxLjMyOWw1Ljc5LTMuODZaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-size: contain;
}