@charset "UTF-8";
/*setting*/
/*function*/
/*mixin*/
/* svgアイコン
引数のcolorCodeには#記号を除いた6進数の数値を入れてください
========================================================================== */
/*Reset*/
/* ------------------------
  reset
------------------------ */
:link, :visited {
  text-decoration: none;
}

html, body, div, ul, ol, li, dl, dt, dd, form, fieldset, input, textarea, h1, h2, h3, h4, h5, h6, pre, code, p, blockquote, hr, table, th, td {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

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

fieldset, img, abbr, acronym, table {
  border: 0;
}

address, caption, cite, code, dfn, em, b, u, s, i, th, var {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
  border-style: none;
}

caption, th {
  text-align: left;
}

a {
  outline: none;
  text-decoration: underline;
}

a img, :link img, :visited img {
  border: none;
}

a:active {
  outline: none;
}

a:focus {
  -moz-outline-style: none;
}

address {
  display: inline;
  font-style: normal;
}

* html #selectorName-inner {
  height: 1%;
}

#selectorName-inner {
  display: block;
}

* html #selectorName {
  margin: 0;
}

* + html #selectorName {
  margin: 0;
}

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

hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

img {
  vertical-align: bottom;
}

/*components*/
/*-----------------------------------------------

component
再利用可能な最小単位のパーツのクラス
接頭辞は'c'
例:c-button

-----------------------------------------------*/
.c-dnfBgColor {
  background-color: #EBF4FB;
}

.c-breadcrumb {
  background: #fff;
  padding: 4px 10px 6px;
  margin: 0;
  font-size: 10px;
}
@media (min-width: 980px) {
  .c-breadcrumb {
    width: 960px;
    padding: 0;
    margin: 10px auto;
    background: none;
    font-size: 12px;
  }
  .c-breadcrumb.c-breadcrumb-category {
    width: 1020px !important;
  }
}
.c-breadcrumb a {
  color: #666 !important;
}
.c-breadcrumb a:hover {
  text-decoration: underline;
}

.c-bg-footprints {
  position: relative;
}
.c-bg-footprints::after {
  display: none;
}
@media (min-width: 980px) {
  .c-bg-footprints::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 100%;
    height: 50px;
    background: url(../img/bg_footprints.svg) no-repeat bottom left calc(50vw + 540px)/auto 50px;
  }
}

.c-breadcrumb_item {
  display: inline-block;
  position: relative;
  padding-right: 1.4em;
  font-size: 12px;
}
@media (min-width: 980px) {
  .c-breadcrumb_item {
    font-size: 12px;
  }
}
.c-breadcrumb_item::after {
  content: "＞";
  position: absolute;
  right: 0;
}
.c-breadcrumb_item:last-child {
  padding-right: 0;
}
.c-breadcrumb_item:last-child::after {
  content: none;
}

.c-linkButton {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 15px;
  font-weight: bold;
  color: #2A71B9;
  text-align: center;
  border: 1px solid #2A71B9;
  border-radius: 9px;
}
@media (min-width: 980px) {
  .c-linkButton {
    display: inline-block;
    min-width: 320px;
    height: 56px;
    line-height: 56px;
    font-size: 16px;
  }
}
.c-linkButton:after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0;
  bottom: 0;
  right: 16px;
  rotate: 45deg;
  height: 8px;
  width: 8px;
  margin: auto;
  border-top: 2px solid #2A71B9;
  border-right: 2px solid #2A71B9;
}

.c-whiteBgContainer {
  overflow: hidden;
  padding: 46px 15px 100px;
  border-radius: 30px 30px 0 0;
  background: #fff;
}
@media (min-width: 980px) {
  .c-whiteBgContainer {
    padding: 64px 32px 120px;
    border-radius: 50px 50px 0 0;
  }
}

.c-anchorLinkButton {
  -webkit-box-shadow: 0px 0px 15px #d2e8fa;
          box-shadow: 0px 0px 15px #d2e8fa;
  border-radius: 10px;
}
.c-anchorLinkButton + .c-anchorLinkButton {
  margin-top: 8px;
}
.c-anchorLinkButton > a {
  position: relative;
  overflow: hidden;
  display: block;
  height: 50px;
  font-size: 15px;
  line-height: 50px;
  color: #2A71B9;
  background: #fff;
  border-radius: 10px;
  text-align: center;
}
.c-anchorLinkButton > a:after {
  content: "";
  position: absolute;
  display: inline-block;
  top: -2px;
  bottom: 0;
  right: 16px;
  rotate: 45deg;
  height: 6px;
  width: 6px;
  margin: auto;
  border-bottom: 2px solid #2A71B9;
  border-right: 2px solid #2A71B9;
}

.c-pageTop {
  display: none;
}
@media (min-width: 980px) {
  .c-pageTop {
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
    display: inline-block;
    position: fixed;
    bottom: 30px;
    right: 30px;
    -webkit-transition: opacity ease 0.3s;
    transition: opacity ease 0.3s;
  }
  .c-pageTop.is-pageTop-view {
    opacity: 1;
    pointer-events: inherit;
  }
  .c-pageTop:hover {
    opacity: 0.6;
  }
  .c-pageTop img {
    width: 60px;
    height: auto;
  }
}

/*utilities*/
/* ------------------------
  utilities Classes
------------------------ */
/* item */
.sp_in {
  display: none;
}

.mb1em {
  margin-bottom: 1em;
}

.mb2em {
  margin-bottom: 2em;
}

.mb3em {
  margin-bottom: 3em;
}

.mt1em {
  margin-top: 1em;
}

.ml1em {
  margin-left: 1em;
}

.fc_yellow {
  color: #faee00;
}

.fc_orange {
  color: #E2720D;
}

.fc_nb {
  color: #003e54;
}

.fw_b {
  font-weight: bold;
}

.ta_c {
  text-align: center;
}

sup {
  font-size: 50%;
}

img.w100p {
  width: 100%;
}

.u-hidden {
  display: none !important;
  visibility: hidden;
}

@media (min-width: 0px) and (max-width: 767.98px) {
  .u-hidden-sm {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 768px) and (max-width: 979.98px) {
  .u-hidden-md {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 980px) {
  .u-hidden-lg {
    display: none !important;
    visibility: hidden;
  }
}

.u-visuallyhidden {
  position: absolute;
  overflow: hidden;
  border: 0;
  margin: -1px;
  padding: 0;
  height: 1px;
  width: 1px;
  clip: rect(0 0 0 0);
}

.u-visuallyhidden.focusable:active,
.u-visuallyhidden.focusable:focus {
  position: static;
  overflow: visible;
  margin: 0;
  width: auto;
  height: auto;
  clip: auto;
}

.u-invisible {
  visibility: hidden;
}

.u-mt-1 {
  margin-top: 1px !important;
}

.u-mb-1 {
  margin-bottom: 1px !important;
}

.u-ml-1 {
  margin-left: 1px !important;
}

.u-mr-1 {
  margin-right: 1px !important;
}

.u-m-1 {
  margin: 1px !important;
}

.u-pt-1 {
  margin-top: 1px !important;
}

.u-pb-1 {
  margin-bottom: 1px !important;
}

.u-pl-1 {
  margin-left: 1px !important;
}

.u-pr-1 {
  margin-right: 1px !important;
}

.u-p-1 {
  margin: 1px !important;
}

.u-mt-2 {
  margin-top: 2px !important;
}

.u-mb-2 {
  margin-bottom: 2px !important;
}

.u-ml-2 {
  margin-left: 2px !important;
}

.u-mr-2 {
  margin-right: 2px !important;
}

.u-m-2 {
  margin: 2px !important;
}

.u-pt-2 {
  margin-top: 2px !important;
}

.u-pb-2 {
  margin-bottom: 2px !important;
}

.u-pl-2 {
  margin-left: 2px !important;
}

.u-pr-2 {
  margin-right: 2px !important;
}

.u-p-2 {
  margin: 2px !important;
}

.u-mt-3 {
  margin-top: 3px !important;
}

.u-mb-3 {
  margin-bottom: 3px !important;
}

.u-ml-3 {
  margin-left: 3px !important;
}

.u-mr-3 {
  margin-right: 3px !important;
}

.u-m-3 {
  margin: 3px !important;
}

.u-pt-3 {
  margin-top: 3px !important;
}

.u-pb-3 {
  margin-bottom: 3px !important;
}

.u-pl-3 {
  margin-left: 3px !important;
}

.u-pr-3 {
  margin-right: 3px !important;
}

.u-p-3 {
  margin: 3px !important;
}

.u-mt-4 {
  margin-top: 4px !important;
}

.u-mb-4 {
  margin-bottom: 4px !important;
}

.u-ml-4 {
  margin-left: 4px !important;
}

.u-mr-4 {
  margin-right: 4px !important;
}

.u-m-4 {
  margin: 4px !important;
}

.u-pt-4 {
  margin-top: 4px !important;
}

.u-pb-4 {
  margin-bottom: 4px !important;
}

.u-pl-4 {
  margin-left: 4px !important;
}

.u-pr-4 {
  margin-right: 4px !important;
}

.u-p-4 {
  margin: 4px !important;
}

.u-mt-5 {
  margin-top: 5px !important;
}

.u-mb-5 {
  margin-bottom: 5px !important;
}

.u-ml-5 {
  margin-left: 5px !important;
}

.u-mr-5 {
  margin-right: 5px !important;
}

.u-m-5 {
  margin: 5px !important;
}

.u-pt-5 {
  margin-top: 5px !important;
}

.u-pb-5 {
  margin-bottom: 5px !important;
}

.u-pl-5 {
  margin-left: 5px !important;
}

.u-pr-5 {
  margin-right: 5px !important;
}

.u-p-5 {
  margin: 5px !important;
}

.u-mt-6 {
  margin-top: 6px !important;
}

.u-mb-6 {
  margin-bottom: 6px !important;
}

.u-ml-6 {
  margin-left: 6px !important;
}

.u-mr-6 {
  margin-right: 6px !important;
}

.u-m-6 {
  margin: 6px !important;
}

.u-pt-6 {
  margin-top: 6px !important;
}

.u-pb-6 {
  margin-bottom: 6px !important;
}

.u-pl-6 {
  margin-left: 6px !important;
}

.u-pr-6 {
  margin-right: 6px !important;
}

.u-p-6 {
  margin: 6px !important;
}

.u-mt-7 {
  margin-top: 7px !important;
}

.u-mb-7 {
  margin-bottom: 7px !important;
}

.u-ml-7 {
  margin-left: 7px !important;
}

.u-mr-7 {
  margin-right: 7px !important;
}

.u-m-7 {
  margin: 7px !important;
}

.u-pt-7 {
  margin-top: 7px !important;
}

.u-pb-7 {
  margin-bottom: 7px !important;
}

.u-pl-7 {
  margin-left: 7px !important;
}

.u-pr-7 {
  margin-right: 7px !important;
}

.u-p-7 {
  margin: 7px !important;
}

.u-mt-8 {
  margin-top: 8px !important;
}

.u-mb-8 {
  margin-bottom: 8px !important;
}

.u-ml-8 {
  margin-left: 8px !important;
}

.u-mr-8 {
  margin-right: 8px !important;
}

.u-m-8 {
  margin: 8px !important;
}

.u-pt-8 {
  margin-top: 8px !important;
}

.u-pb-8 {
  margin-bottom: 8px !important;
}

.u-pl-8 {
  margin-left: 8px !important;
}

.u-pr-8 {
  margin-right: 8px !important;
}

.u-p-8 {
  margin: 8px !important;
}

.u-mt-9 {
  margin-top: 9px !important;
}

.u-mb-9 {
  margin-bottom: 9px !important;
}

.u-ml-9 {
  margin-left: 9px !important;
}

.u-mr-9 {
  margin-right: 9px !important;
}

.u-m-9 {
  margin: 9px !important;
}

.u-pt-9 {
  margin-top: 9px !important;
}

.u-pb-9 {
  margin-bottom: 9px !important;
}

.u-pl-9 {
  margin-left: 9px !important;
}

.u-pr-9 {
  margin-right: 9px !important;
}

.u-p-9 {
  margin: 9px !important;
}

.u-mt-10 {
  margin-top: 10px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-ml-10 {
  margin-left: 10px !important;
}

.u-mr-10 {
  margin-right: 10px !important;
}

.u-m-10 {
  margin: 10px !important;
}

.u-pt-10 {
  margin-top: 10px !important;
}

.u-pb-10 {
  margin-bottom: 10px !important;
}

.u-pl-10 {
  margin-left: 10px !important;
}

.u-pr-10 {
  margin-right: 10px !important;
}

.u-p-10 {
  margin: 10px !important;
}

.u-mt-4 {
  margin-top: 4px !important;
}

.u-mb-4 {
  margin-bottom: 4px !important;
}

.u-ml-4 {
  margin-left: 4px !important;
}

.u-mr-4 {
  margin-right: 4px !important;
}

.u-m-4 {
  margin: 4px !important;
}

.u-pt-4 {
  margin-top: 4px !important;
}

.u-pb-4 {
  margin-bottom: 4px !important;
}

.u-pl-4 {
  margin-left: 4px !important;
}

.u-pr-4 {
  margin-right: 4px !important;
}

.u-p-4 {
  margin: 4px !important;
}

.u-mt-8 {
  margin-top: 8px !important;
}

.u-mb-8 {
  margin-bottom: 8px !important;
}

.u-ml-8 {
  margin-left: 8px !important;
}

.u-mr-8 {
  margin-right: 8px !important;
}

.u-m-8 {
  margin: 8px !important;
}

.u-pt-8 {
  margin-top: 8px !important;
}

.u-pb-8 {
  margin-bottom: 8px !important;
}

.u-pl-8 {
  margin-left: 8px !important;
}

.u-pr-8 {
  margin-right: 8px !important;
}

.u-p-8 {
  margin: 8px !important;
}

.u-mt-12 {
  margin-top: 12px !important;
}

.u-mb-12 {
  margin-bottom: 12px !important;
}

.u-ml-12 {
  margin-left: 12px !important;
}

.u-mr-12 {
  margin-right: 12px !important;
}

.u-m-12 {
  margin: 12px !important;
}

.u-pt-12 {
  margin-top: 12px !important;
}

.u-pb-12 {
  margin-bottom: 12px !important;
}

.u-pl-12 {
  margin-left: 12px !important;
}

.u-pr-12 {
  margin-right: 12px !important;
}

.u-p-12 {
  margin: 12px !important;
}

.u-mt-16 {
  margin-top: 16px !important;
}

.u-mb-16 {
  margin-bottom: 16px !important;
}

.u-ml-16 {
  margin-left: 16px !important;
}

.u-mr-16 {
  margin-right: 16px !important;
}

.u-m-16 {
  margin: 16px !important;
}

.u-pt-16 {
  margin-top: 16px !important;
}

.u-pb-16 {
  margin-bottom: 16px !important;
}

.u-pl-16 {
  margin-left: 16px !important;
}

.u-pr-16 {
  margin-right: 16px !important;
}

.u-p-16 {
  margin: 16px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-ml-20 {
  margin-left: 20px !important;
}

.u-mr-20 {
  margin-right: 20px !important;
}

.u-m-20 {
  margin: 20px !important;
}

.u-pt-20 {
  margin-top: 20px !important;
}

.u-pb-20 {
  margin-bottom: 20px !important;
}

.u-pl-20 {
  margin-left: 20px !important;
}

.u-pr-20 {
  margin-right: 20px !important;
}

.u-p-20 {
  margin: 20px !important;
}

.u-mt-24 {
  margin-top: 24px !important;
}

.u-mb-24 {
  margin-bottom: 24px !important;
}

.u-ml-24 {
  margin-left: 24px !important;
}

.u-mr-24 {
  margin-right: 24px !important;
}

.u-m-24 {
  margin: 24px !important;
}

.u-pt-24 {
  margin-top: 24px !important;
}

.u-pb-24 {
  margin-bottom: 24px !important;
}

.u-pl-24 {
  margin-left: 24px !important;
}

.u-pr-24 {
  margin-right: 24px !important;
}

.u-p-24 {
  margin: 24px !important;
}

.u-mt-28 {
  margin-top: 28px !important;
}

.u-mb-28 {
  margin-bottom: 28px !important;
}

.u-ml-28 {
  margin-left: 28px !important;
}

.u-mr-28 {
  margin-right: 28px !important;
}

.u-m-28 {
  margin: 28px !important;
}

.u-pt-28 {
  margin-top: 28px !important;
}

.u-pb-28 {
  margin-bottom: 28px !important;
}

.u-pl-28 {
  margin-left: 28px !important;
}

.u-pr-28 {
  margin-right: 28px !important;
}

.u-p-28 {
  margin: 28px !important;
}

.u-mt-32 {
  margin-top: 32px !important;
}

.u-mb-32 {
  margin-bottom: 32px !important;
}

.u-ml-32 {
  margin-left: 32px !important;
}

.u-mr-32 {
  margin-right: 32px !important;
}

.u-m-32 {
  margin: 32px !important;
}

.u-pt-32 {
  margin-top: 32px !important;
}

.u-pb-32 {
  margin-bottom: 32px !important;
}

.u-pl-32 {
  margin-left: 32px !important;
}

.u-pr-32 {
  margin-right: 32px !important;
}

.u-p-32 {
  margin: 32px !important;
}

.u-mt-36 {
  margin-top: 36px !important;
}

.u-mb-36 {
  margin-bottom: 36px !important;
}

.u-ml-36 {
  margin-left: 36px !important;
}

.u-mr-36 {
  margin-right: 36px !important;
}

.u-m-36 {
  margin: 36px !important;
}

.u-pt-36 {
  margin-top: 36px !important;
}

.u-pb-36 {
  margin-bottom: 36px !important;
}

.u-pl-36 {
  margin-left: 36px !important;
}

.u-pr-36 {
  margin-right: 36px !important;
}

.u-p-36 {
  margin: 36px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-ml-40 {
  margin-left: 40px !important;
}

.u-mr-40 {
  margin-right: 40px !important;
}

.u-m-40 {
  margin: 40px !important;
}

.u-pt-40 {
  margin-top: 40px !important;
}

.u-pb-40 {
  margin-bottom: 40px !important;
}

.u-pl-40 {
  margin-left: 40px !important;
}

.u-pr-40 {
  margin-right: 40px !important;
}

.u-p-40 {
  margin: 40px !important;
}

.u-mt-44 {
  margin-top: 44px !important;
}

.u-mb-44 {
  margin-bottom: 44px !important;
}

.u-ml-44 {
  margin-left: 44px !important;
}

.u-mr-44 {
  margin-right: 44px !important;
}

.u-m-44 {
  margin: 44px !important;
}

.u-pt-44 {
  margin-top: 44px !important;
}

.u-pb-44 {
  margin-bottom: 44px !important;
}

.u-pl-44 {
  margin-left: 44px !important;
}

.u-pr-44 {
  margin-right: 44px !important;
}

.u-p-44 {
  margin: 44px !important;
}

.u-mt-48 {
  margin-top: 48px !important;
}

.u-mb-48 {
  margin-bottom: 48px !important;
}

.u-ml-48 {
  margin-left: 48px !important;
}

.u-mr-48 {
  margin-right: 48px !important;
}

.u-m-48 {
  margin: 48px !important;
}

.u-pt-48 {
  margin-top: 48px !important;
}

.u-pb-48 {
  margin-bottom: 48px !important;
}

.u-pl-48 {
  margin-left: 48px !important;
}

.u-pr-48 {
  margin-right: 48px !important;
}

.u-p-48 {
  margin: 48px !important;
}

.u-mt-52 {
  margin-top: 52px !important;
}

.u-mb-52 {
  margin-bottom: 52px !important;
}

.u-ml-52 {
  margin-left: 52px !important;
}

.u-mr-52 {
  margin-right: 52px !important;
}

.u-m-52 {
  margin: 52px !important;
}

.u-pt-52 {
  margin-top: 52px !important;
}

.u-pb-52 {
  margin-bottom: 52px !important;
}

.u-pl-52 {
  margin-left: 52px !important;
}

.u-pr-52 {
  margin-right: 52px !important;
}

.u-p-52 {
  margin: 52px !important;
}

.u-mt-56 {
  margin-top: 56px !important;
}

.u-mb-56 {
  margin-bottom: 56px !important;
}

.u-ml-56 {
  margin-left: 56px !important;
}

.u-mr-56 {
  margin-right: 56px !important;
}

.u-m-56 {
  margin: 56px !important;
}

.u-pt-56 {
  margin-top: 56px !important;
}

.u-pb-56 {
  margin-bottom: 56px !important;
}

.u-pl-56 {
  margin-left: 56px !important;
}

.u-pr-56 {
  margin-right: 56px !important;
}

.u-p-56 {
  margin: 56px !important;
}

.u-mt-60 {
  margin-top: 60px !important;
}

.u-mb-60 {
  margin-bottom: 60px !important;
}

.u-ml-60 {
  margin-left: 60px !important;
}

.u-mr-60 {
  margin-right: 60px !important;
}

.u-m-60 {
  margin: 60px !important;
}

.u-pt-60 {
  margin-top: 60px !important;
}

.u-pb-60 {
  margin-bottom: 60px !important;
}

.u-pl-60 {
  margin-left: 60px !important;
}

.u-pr-60 {
  margin-right: 60px !important;
}

.u-p-60 {
  margin: 60px !important;
}

.u-mt-64 {
  margin-top: 64px !important;
}

.u-mb-64 {
  margin-bottom: 64px !important;
}

.u-ml-64 {
  margin-left: 64px !important;
}

.u-mr-64 {
  margin-right: 64px !important;
}

.u-m-64 {
  margin: 64px !important;
}

.u-pt-64 {
  margin-top: 64px !important;
}

.u-pb-64 {
  margin-bottom: 64px !important;
}

.u-pl-64 {
  margin-left: 64px !important;
}

.u-pr-64 {
  margin-right: 64px !important;
}

.u-p-64 {
  margin: 64px !important;
}

.u-mt-68 {
  margin-top: 68px !important;
}

.u-mb-68 {
  margin-bottom: 68px !important;
}

.u-ml-68 {
  margin-left: 68px !important;
}

.u-mr-68 {
  margin-right: 68px !important;
}

.u-m-68 {
  margin: 68px !important;
}

.u-pt-68 {
  margin-top: 68px !important;
}

.u-pb-68 {
  margin-bottom: 68px !important;
}

.u-pl-68 {
  margin-left: 68px !important;
}

.u-pr-68 {
  margin-right: 68px !important;
}

.u-p-68 {
  margin: 68px !important;
}

.u-mt-72 {
  margin-top: 72px !important;
}

.u-mb-72 {
  margin-bottom: 72px !important;
}

.u-ml-72 {
  margin-left: 72px !important;
}

.u-mr-72 {
  margin-right: 72px !important;
}

.u-m-72 {
  margin: 72px !important;
}

.u-pt-72 {
  margin-top: 72px !important;
}

.u-pb-72 {
  margin-bottom: 72px !important;
}

.u-pl-72 {
  margin-left: 72px !important;
}

.u-pr-72 {
  margin-right: 72px !important;
}

.u-p-72 {
  margin: 72px !important;
}

.u-mt-76 {
  margin-top: 76px !important;
}

.u-mb-76 {
  margin-bottom: 76px !important;
}

.u-ml-76 {
  margin-left: 76px !important;
}

.u-mr-76 {
  margin-right: 76px !important;
}

.u-m-76 {
  margin: 76px !important;
}

.u-pt-76 {
  margin-top: 76px !important;
}

.u-pb-76 {
  margin-bottom: 76px !important;
}

.u-pl-76 {
  margin-left: 76px !important;
}

.u-pr-76 {
  margin-right: 76px !important;
}

.u-p-76 {
  margin: 76px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

.u-ml-80 {
  margin-left: 80px !important;
}

.u-mr-80 {
  margin-right: 80px !important;
}

.u-m-80 {
  margin: 80px !important;
}

.u-pt-80 {
  margin-top: 80px !important;
}

.u-pb-80 {
  margin-bottom: 80px !important;
}

.u-pl-80 {
  margin-left: 80px !important;
}

.u-pr-80 {
  margin-right: 80px !important;
}

.u-p-80 {
  margin: 80px !important;
}

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

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

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

.clearfix::after,
.u-clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*base*/
body {
  min-width: 980px;
  margin: 0 auto;
  padding: 0;
  -webkit-text-size-adjust: none;
  font-family: "ゴシックMB101 M", Meiryo, "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  background: #fff;
}
@media only screen and (max-width: 980px) {
  body {
    min-width: 320px;
  }
}

a {
  -webkit-transition: opacity ease 0.3s;
  transition: opacity ease 0.3s;
}
@media (min-width: 980px) {
  a:hover {
    opacity: 0.6;
  }
}

@media (min-width: 980px) {
  #tbgcHeader {
    -webkit-filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.1));
            filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.1));
  }
}

@media (min-width: 980px) {
  #tbgcHeaderInner {
    width: 100%;
    min-width: 980px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* --------------------------------------------------------------------------
 Common
---------------------------------------------------------------------------- */
/* item */
.sp_in {
  display: none;
}

.mb1em {
  margin-bottom: 1em;
}

.mb2em {
  margin-bottom: 2em;
}

.mb3em {
  margin-bottom: 3em;
}

.mt1em {
  margin-top: 1em;
}

.ml1em {
  margin-left: 1em;
}

.fc_yellow {
  color: #faee00;
}

.fc_orange {
  color: #E2720D;
}

.fc_nb {
  color: #003e54;
}

.fw_b {
  font-weight: bold;
}

.ta_c {
  text-align: center;
}

sup {
  font-size: 50%;
}

img.w100p {
  width: 100%;
}

.owndMedia {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
}
.u-hidden-sp {
  @media screen and (max-width: 767px) {
    display: none !important;
  }
}
.u-hidden-pc {
  @media screen and (min-width: 767px) {
    display: none !important;
  }
}
/* --------------------------------------------------------------------------
 page
---------------------------------------------------------------------------- */
/* リニューアル　index*/
#tbgcHeader {
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}
#tbgcHeaderInner:before, #tbgcHeaderInner:after {
  display: none;
}
#tbgcHeaderInner {
  background: none;
}
.l-breadcrumb {
    color: #808080;
}
.l-breadcrumb_list {
    display: block;
    padding: 8px;
    font-size: 10px;
    @media (min-width: 769px) {
        width: 1020px;
        max-width: 96%;
        margin: 0 auto;
    }
}
.owndMediaTop_head {
  .lead {
    margin-top: 48px;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    @media screen and (max-width: 767px) {
      margin-top: 20px;
      font-size: 14px;
      line-height: 2;
      span {
        display: block;
        margin-top: 8px;
        font-size: 16px;
        line-height: 1.625;
      }
    }
  }
}
.heroArea {
  width: 100%;
  background: center bottom / auto 100% no-repeat url(../img/mv_pattern.png),linear-gradient(45deg,#00b2fc 0%, #00329c 100%);
  @media screen and (max-width: 767px) {
    background: none;
  }
}
.heroArea_caption {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1020px;
  height: 260px;
  margin: 0 auto;
  background: center bottom / auto 100% no-repeat url(../img/mv_bg.png);
  vertical-align: middle;
  text-align: center;
  @media screen and (max-width: 767px) {
    height: auto;
    aspect-ratio: 1 / 0.56;
    padding: 0;
    background: center top / 100% auto no-repeat url(../img/mv_bg_sp.jpg);
  }
  
  .text-up {
    display: block;
    padding-top: 100px;
    padding-bottom: 8px;
    font-weight: bold;
    font-size: 38px;
    letter-spacing: 0.08em;
    line-height: 1;
    text-align: center;
    color: #338cda;
    border-bottom: 3px solid #338cda;
    @media screen and (max-width: 767px) {
      padding-top: 16vw;
      padding-bottom: 2.13vw;
      font-size: 5.3vw;
    }
  }
  .text-down {
    display: block;
    margin-top: 20px;
    font-weight: bold;
    font-size: 42px;
    letter-spacing: 0.08em;
    line-height: 1;
    text-align: center;
    color: #0b68b3;
    @media screen and (max-width: 767px) {
      margin-top: 4.4vw;
      font-size: 8vw;
      line-height: 1.2;
    }
    .text-no {
      display: inline;
      font-size: 38px;
      @media screen and (max-width: 767px) {
        font-size: 7.466vw;
      }
    }
  }
}
.owndMediaTop_container {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0 120px;
  width: 100%;
  margin: 64px auto 80px;
  @media screen and (max-width: 767px) {
    display: block;
    overflow: hidden;
    margin-top: 32px;
    margin-bottom: 72px;
    padding: 0 16px;
    width: auto;
  }
  &:before {
    content: '';
    z-index: -1;
    position: absolute;
    left: 0;
    right: calc(50% + 20px);
    margin: auto;
    bottom: 0;
    height: calc(100% - 40px);
    display: block;
    background: #EBF4FB;
    border-radius: 0 40px 40px 0;
    @media screen and (max-width: 767px) {
      content: none;
    }
  }
  &:after {
    content: '';
    z-index: -1;
    position: absolute;
    left: calc(50% + 20px);
    right: 0;
    margin: auto;
    bottom: 0;
    height: calc(100% - 40px);
    display: block;
    background: #EBF7F5;
    border-radius: 40px 0 0 40px;
    @media screen and (max-width: 767px) {
      content: none;
    }
  }
}
.owndMediaTop_container_block {
  position: relative;
  width: 450px;
  @media screen and (max-width: 767px) {
    width: 100%;
    padding: 32px 0 40px 0;
  }
  & + & {
    @media screen and (max-width: 767px) {
      margin-top: 24px;
    }
  }
  .thumb {
    overflow: hidden;
    border-radius: 20px;
    img {
      width: 100%;
      height: auto;
    }
  }
  .content {
    text-align: center;
    padding-bottom: 142px;
    @media screen and (max-width: 767px) {
      padding-bottom: 0;
    }

  }
  .subCaption {
    margin-top: 32px;
    font-size: 20px;
    @media screen and (max-width: 767px) {
      margin-top: 24px;
      font-size: 18px;
    }
  }
  .caption {
    position: relative;
    font-size: 30px;
    font-weight: bold;
    margin-top: 8px;
    padding-bottom: 14px;
    color: #333;
    @media screen and (max-width: 767px) {
      font-size: 24px;
    }
    &:after {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      display: inline-block;
      margin: 0 auto;
      height: 4px;
      width: 120px;
      background: #ccc;
      border-radius: 100px;
    }
  }
  .text-discription {
    margin-top: 20px;
    font-size: 16px;
    letter-spacing: 0.02em;
    line-height: 28px;
    color: #333;
    @media screen and (max-width: 767px) {
      display: inline-block;
      text-align: left;
      line-height: 1.75;
    }
  }
  &.kojin {
      .thumb {
        box-shadow: 0px 0px 15px rgba(11, 104, 179, 0.2);
        @media screen and (max-width: 767px) {
          box-shadow: 0px 0px 10px rgba(11, 104, 179, 0.2);
        }
      }
    @media screen and (max-width: 767px) {
      &:before {
        content: '';
        z-index: -1;
        position: absolute;
        left: -32px;
        right: 32px;
        margin: auto;
        top: 0;
        height: 100%;
        display: block;
        background: #EBF4FB;
        border-radius: 0 40px 40px 0;
      }
    }
    .subCaption {
      color:#0B68B3;
    }
    .caption {
      &:after {
        background: #B3D5F2;
      }
    }
  }
  &.hojin {
      .thumb {
        box-shadow: 0px 0px 15px rgba(0, 156, 132, 0.2);
        @media screen and (max-width: 767px) {
          box-shadow: 0px 0px 10px rgba(0, 156, 132, 0.2);
        }
      }
    @media screen and (max-width: 767px) {
      &:before {
        content: '';
        z-index: -1;
        position: absolute;
        left: 32px;
        right: -32px;
        margin: auto;
        top: 0;
        height: 100%;
        display: block;
        background: #EBF7F5;
        border-radius: 40px 0 0 40px;
      }
    }
    .subCaption {
      color:#009C84;
    }
    .caption {
      &:after {
        background: #A6DCD4;
      }
    }
  }
}
.linkButton {
  position: absolute;
  bottom: 56px;
  left: 0;
  right: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: auto;
  max-width: 310px;
  width: 77.777%;
  height: 62px;
  padding: 0 20px;
  background: #ccc;
  border-radius: 100px;
  font-size: 18px;
  font-weight: bold;
  line-height: 62px;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.3s ease;
  &:visited {
    color: #fff;
  }
  &:hover {
    @media screen and (max-width: 767px) {
      opacity: 0.7;
    }
  }
  @media screen and (max-width: 767px) {
    position: static;
    margin-top: 20px;
    max-width: 324px;
    width: 100%;
    padding: 0;
  }
  &:after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-bottom: 2px;
    line-height: 1;
    background: left top / 100% auto no-repeat url(../img/icon_blank.png);
    
  }
  .kojin & {
    background: #0B68B3;
    box-shadow: 0px 2px 8px rgba(11, 104, 179, 0.2);
  }
  .hojin & {
    background: #009C84;
    box-shadow: 0px 3px 8px rgba(0, 156, 132, 0.2);
  }
}