@charset "UTF-8";
/*==========================================
  Common
==========================================*/
/* base
==================================*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
ul,
li,
ol,
dl,
dd,
tr {
  font-size: 16px;
  line-height: 1.5;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

i {
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

.sp {
  display: none !important;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:visited {
  color: #000;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a:active {
  color: #000;
}

a.tel {
  pointer-events: none;
  cursor: default;
}

/* main
==================================*/
main {
  display: block;
  /*IE対策*/
}

/*　Retina対応時のCSS↓　*/
img {
  max-width: 100%;
  height: auto;
}

.sp_pointer {
  pointer-events: none;
}

/* header
==================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  height: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header a {
  color: #fff;
}

header a:visited {
  color: #fff;
}

header .header_inner {
  padding: 33px 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .header_inner nav .telNum {
  text-align: right;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .header_inner nav .telNum a {
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.01em;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  pointer-events: none;
}

header .header_inner nav .telNum a > img {
  margin-right: 3px;
}

header .header_inner nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 13px;
}

header .header_inner nav ul > li {
  margin-right: 27px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

header .header_inner nav ul > li a {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 3px solid transparent;
  padding-bottom: 8px;
  position: relative;
}

header .header_inner nav ul > li a:hover, header .header_inner nav ul > li a.here {
  color: #fff;
}

header .header_inner nav ul > li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background: #ad9d6f;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

header .header_inner nav ul > li a:hover::after, header .header_inner nav ul > li a.here::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

header .header_inner nav ul > li:nth-child(6) {
  margin-right: 0;
}

@media (max-width: 1050px) {
  header .header_inner nav ul > li {
    margin-right: 20px;
  }
  header .header_inner nav ul > li a {
    font-size: 14px;
  }
}

@media (max-width: 990px) {
  header .header_inner nav ul > li a {
    font-size: 13px;
  }
}

body.scroll header {
  background-color: #121e41;
  height: 80px;
}

body.scroll header .header_inner {
  padding: 24px 60px 0;
}

body.scroll header .header_inner .telNum {
  opacity: 0;
  height: 0;
}

body.scroll header .header_inner nav .wrap ul {
  margin-top: 22px;
}

body.scroll header .header_inner nav .wrap ul li a {
  padding-bottom: 14px;
}

/* footer
==================================*/
footer {
  background: #0d1735;
}

footer .container {
  padding: 75px 60px 40px;
  max-width: 1128px;
}

footer a {
  color: #fff;
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

footer a:visited {
  color: #fff;
}

footer a:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}

footer * {
  color: #fff;
}

footer dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
}

footer dl:last-child {
  margin-bottom: 0;
}

footer dl dt {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 204px;
          flex: 0 0 204px;
  max-width: 204px;
}

footer dl dd ul li {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  display: inline-block;
  padding-right: 18px;
  position: relative;
}

@media (max-width: 1050px) {
  footer dl dd ul li {
    font-size: 13px;
  }
}

footer dl dd ul li::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #4f5873;
  position: absolute;
  top: 0px;
  right: 7px;
}

footer dl dd ul li:last-child::before {
  display: none;
}

footer .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 56px;
}

footer .bottom .info_area {
  position: relative;
  padding-left: 76px;
  min-height: 57px;
  margin-bottom: 26px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 1px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

footer .bottom .info_area > a {
  width: 57px;
  height: 57px;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: none;
}

footer .bottom .info_area > a:hover {
  border-bottom: none;
  opacity: 0.7;
}

footer .bottom .info_area > a img {
  width: 57px;
  height: 57px;
}

footer .bottom .info_area p {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.03em;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  padding-top: 5px;
}

@media (max-width: 1050px) {
  footer .bottom .info_area p {
    font-size: 13px;
  }
}

footer .bottom .bottom-linkarea {
  position: relative;
  width: 100%;
  min-height: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 286px);
          flex: 0 0 calc(100% - 286px);
  max-width: calc(100% - 286px);
}

footer .bottom .bottom-linkarea > nav ul {
  margin-bottom: 8px;
}

footer .bottom .bottom-linkarea > nav ul li {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.03em;
  display: inline-block;
  padding-right: 18px;
  position: relative;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
}

@media (max-width: 1050px) {
  footer .bottom .bottom-linkarea > nav ul li {
    font-size: 13px;
  }
}

footer .bottom .bottom-linkarea > nav ul li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 6px;
  width: 2px;
  height: 100%;
  background-color: #5a647f;
  margin: auto;
}

footer .bottom .bottom-linkarea > nav ul li:last-child::before {
  display: none;
}

footer .bottom .bottom-linkarea p {
  font-size: 14px;
  line-height: 1.285;
  letter-spacing: 0.03em;
  color: #555a6a;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
}

@media (max-width: 1050px) {
  footer .bottom .bottom-linkarea p {
    font-size: 13px;
  }
}

footer .bottom .copy {
  position: relative;
  width: 100%;
  min-height: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 286px;
          flex: 0 0 286px;
  max-width: 286px;
}

footer .bottom .copy small {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #555a6a;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}

@media (max-width: 1050px) {
  footer .bottom .copy small {
    font-size: 11px;
  }
}

footer .contact-box .bg-wrapper {
  position: relative;
}

footer .contact-box .bg-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.45);
  display: block;
  z-index: 1;
}

footer .contact-box .bg-wrapper video {
  height: 292px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 0;
}

footer .contact-box .bg-wrapper .container {
  max-width: 1078px;
  padding: 115px 60px 107px;
  z-index: 2;
  position: relative;
}

footer .contact-box .bg-wrapper dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .contact-box .bg-wrapper dl dt {
  position: relative;
  width: 100%;
  min-height: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
  border-right: 1px solid #808589;
}

footer .contact-box .bg-wrapper dl dt > strong,
footer .contact-box .bg-wrapper dl dt > small {
  display: block;
}

footer .contact-box .bg-wrapper dl dt strong {
  font-size: 30px;
  line-height: 56px;
  letter-spacing: 0.08em;
  line-height: 1;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 700;
}

@media (max-width: 1050px) {
  footer .contact-box .bg-wrapper dl dt strong {
    font-size: 27px;
  }
}

footer .contact-box .bg-wrapper dl dt small {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  margin-top: 18px;
}

@media (max-width: 1050px) {
  footer .contact-box .bg-wrapper dl dt small {
    font-size: 13px;
  }
}

footer .contact-box .bg-wrapper dl dd {
  position: relative;
  width: 100%;
  min-height: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
  padding-left: 4.64%;
}

footer .contact-box .bg-wrapper dl dd .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: -2.98%;
  margin-right: -2.98%;
}

footer .contact-box .bg-wrapper dl dd .row > .col {
  position: relative;
  width: 100%;
  min-height: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 2.98%;
  padding-right: 2.98%;
}

footer .contact-box .bg-wrapper dl dd .row > .info-column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.133%;
          flex: 0 0 58.133%;
  max-width: 58.133%;
}

footer .contact-box .bg-wrapper dl dd .row > .info-column p {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
}

@media (max-width: 1050px) {
  footer .contact-box .bg-wrapper dl dd .row > .info-column p {
    font-size: 14px;
  }
}

footer .contact-box .bg-wrapper dl dd .row > .info-column .telNum {
  margin-top: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (max-width: 1160px) {
  footer .contact-box .bg-wrapper dl dd .row > .info-column .telNum {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

footer .contact-box .bg-wrapper dl dd .row > .info-column .telNum img {
  display: inline-block;
  margin-right: 8px;
}

footer .contact-box .bg-wrapper dl dd .row > .info-column .telNum strong {
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0.025em;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  display: inline-block;
}

@media (max-width: 1050px) {
  footer .contact-box .bg-wrapper dl dd .row > .info-column .telNum strong {
    font-size: 38px;
  }
}

footer .contact-box .bg-wrapper dl dd .row > .info-column .telNum strong a {
  white-space: nowrap;
}

footer .contact-box .bg-wrapper dl dd .row > .info-column .telNum small {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  display: inline-block;
  margin-left: 7px;
  white-space: nowrap;
}

@media (max-width: 1160px) {
  footer .contact-box .bg-wrapper dl dd .row > .info-column .telNum small {
    display: block;
    margin: 10px 0 0 35px;
  }
}

@media (max-width: 1050px) {
  footer .contact-box .bg-wrapper dl dd .row > .info-column .telNum small {
    font-size: 13px;
  }
}

footer .contact-box .bg-wrapper dl dd .row > .button-column {
  -webkit-box-flex: 41.867%;
      -ms-flex: 41.867%;
          flex: 41.867%;
  max-width: 41.867%;
}

footer .contact-box .bg-wrapper dl dd .row > .button-column .contact-button {
  background-color: #fff;
  max-width: 284px;
  width: 100%;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 0;
}

footer .contact-box .bg-wrapper dl dd .row > .button-column .contact-button .icon {
  margin-right: 11px;
}

footer .contact-box .bg-wrapper dl dd .row > .button-column .contact-button span {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  color: #1b2850;
  display: inline-block;
}

footer .contact-box .bg-wrapper dl dd .row > .button-column .contact-button:hover {
  background-color: #ad9d6f;
}

footer .contact-box .bg-wrapper dl dd .row > .button-column .contact-button:hover span {
  color: #fff;
}

footer .contact-box .bg-wrapper dl dd .row > .button-column .contact-button:hover .icon svg path {
  fill: #fff;
}

#pageTop {
  opacity: 0;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 888;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#pageTop.active {
  opacity: 1;
}

#pageTop a {
  display: block;
  width: 50px;
}

#pageTop a:hover {
  opacity: 0.7;
}

.container {
  max-width: 1058px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sec .bg-wrapper {
  background-image: url(../images/company/hero-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 166px;
  padding-bottom: 66px;
  text-align: center;
}

.hero-sec .bg-wrapper strong {
  font-size: 46px;
  line-height: 1;
  letter-spacing: 0.2em;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 700;
  color: #fff;
  display: block;
}

.hero-sec .bg-wrapper small {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ad9d6f;
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  margin-top: 20px;
}

.breadcrumb {
  padding-top: 20px;
  margin-bottom: 75px;
}

.breadcrumb .container {
  padding-left: 60px;
  padding-right: 60px;
  max-width: inherit;
}

.breadcrumb ol li {
  display: inline-block;
  padding-right: 16px;
  position: relative;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #1b2850;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
}

.breadcrumb ol li > a {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #1b2850;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  border-bottom: 1px solid transparent;
}

.breadcrumb ol li > a:visited {
  color: #1b2850;
}

.breadcrumb ol li > a:hover {
  border-color: #1b2850;
}

.breadcrumb ol li::before {
  content: "";
  position: absolute;
  right: 4px;
  top: 0;
  bottom: 0;
  width: 5px;
  height: 5px;
  margin: auto;
  border-top: 1px solid #143aa8;
  border-right: 1px solid #143aa8;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.breadcrumb ol li:last-child::before {
  display: none;
}

.sec-ttl {
  text-align: center;
  margin-bottom: 45px;
}

.sec-ttl strong {
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.06em;
  display: inline-block;
  margin-bottom: 18px;
  overflow: hidden;
  color: #1b2850;
}

.sec-ttl strong i {
  display: inline-block;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
  opacity: 0;
  padding-bottom: 11px;
}

.sec-ttl strong::after {
  content: "";
  width: 0;
  background-color: #ad9d6f;
  height: 2px;
  display: block;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  position: relative;
  right: -100%;
}

.sec-ttl small {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.04em;
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  color: #828282;
  overflow: hidden;
}

.sec-ttl small i {
  display: inline-block;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
  opacity: 0;
}

.sec-ttl.move strong i {
  -webkit-transform: translate(0, 0%);
          transform: translate(0, 0%);
  opacity: 1;
}

.sec-ttl.move strong::after {
  width: 100%;
  right: 0;
}

.sec-ttl.move small i {
  -webkit-transform: translate(0, 0%);
          transform: translate(0, 0%);
  opacity: 1;
}

body:not(#Top) #product-box {
  padding: 35px 20px;
  background-color: #121e41;
}

body:not(#Top) #product-box > .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body:not(#Top) #product-box > .row > * {
  color: #fff;
}

body:not(#Top) #product-box > .row .col.ttl .product-ttl {
  margin-bottom: 26px;
}

body:not(#Top) #product-box > .row .col.ttl .product-ttl strong {
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 700;
  display: block;
  color: #fff;
}

body:not(#Top) #product-box > .row .col.ttl .product-ttl small {
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #555a6a;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  display: block;
  margin-top: 8px;
}

body:not(#Top) #product-box > .row .t-row .col {
  margin-bottom: 17px;
}

body:not(#Top) #product-box > .row > .col:not(.ttl) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

body:not(#Top) #product-box > .row > .col:not(.ttl) .search_box .t-row {
  margin-bottom: 20px;
  border-bottom: 1px solid #3a4975;
}

body:not(#Top) #product-box > .row > .col:not(.ttl) .search_box .t-row > .col > dl dt {
  margin-right: 15px;
  display: block;
  margin-bottom: 8px;
}

body:not(#Top) #product-box > .row > .col:not(.ttl) .search_box .t-row > .col > dl dd {
  display: block;
}

body:not(#Top) #product-box > .row > .col:not(.ttl) .search_box .t-row > .col > dl dd form .selec-wrap {
  position: relative;
  width: 100%;
  font-size: 16px;
  line-height: 1;
  color: #000;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  background-color: #fff;
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body:not(#Top) #product-box > .row > .col:not(.ttl) .search_box .t-row > .col > dl dd form .selec-wrap::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 4.5px 0 4.5px;
  border-color: #143aa8 transparent transparent
 transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  z-index: 1;
}

body:not(#Top) #product-box > .row > .col:not(.ttl) .search_box .t-row > .col > dl dd form .selec-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  line-height: 1;
  color: #000;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  padding: 12px 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

body:not(#Top) #product-box > .row > .col:not(.ttl) .search_box h4 {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.06em;
  margin-bottom: 15px;
}

body:not(#Top) #product-box > .row > .col:not(.ttl) .search_box .btn_search {
  margin-top: 12px;
  text-align: center;
}

body:not(#Top) #product-box > .row > .col:not(.ttl) .search_box .btn_search input {
  border-radius: 0;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #fff;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
  background-color: #143aa8;
  border: 2px solid #143aa8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 240px;
  width: 100%;
  height: 54px;
  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;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-left: auto;
  margin-right: auto;
}

body:not(#Top) #product-box > .row > .col:not(.ttl) .search_box .btn_search input:hover {
  background-color: #fff;
  color: #143aa8;
  border-radius: 0;
}

body:not(#Top) #product-box .checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

body:not(#Top) #product-box .control-group {
  display: inline-block;
  vertical-align: top;
  background: #fff;
  text-align: left;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 200px;
  height: 210px;
  margin: 10px;
}

body:not(#Top) #product-box .control {
  display: block;
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 50%;
}

body:not(#Top) #product-box .control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

body:not(#Top) #product-box .control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #fff;
}

body:not(#Top) #product-box .control--radio .control__indicator {
  border-radius: 50%;
}

body:not(#Top) #product-box .control input:checked ~ .control__indicator {
  background: #143aa8;
}

body:not(#Top) #product-box .control input:disabled ~ .control__indicator {
  background: #fff;
  opacity: 0.6;
  pointer-events: none;
}

body:not(#Top) #product-box .control__indicator:after {
  content: "";
  position: absolute;
  display: none;
}

body:not(#Top) #product-box .control input:checked ~ .control__indicator:after {
  display: block;
}

body:not(#Top) #product-box .control--checkbox .control__indicator:after {
  left: 6px;
  top: 1px;
  width: 5px;
  height: 12px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

body:not(#Top) #product-box .control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}

body:not(#Top) #product-box .control--radio .control__indicator:after {
  left: 7px;
  top: 7px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #fff;
}

body:not(#Top) #product-box .control--radio input:disabled ~ .control__indicator:after {
  background: #7b7b7b;
}

body:not(#Top) #product-box .select {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  width: 100%;
}

body:not(#Top) #product-box .select select {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  padding: 10px 15px;
  outline: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #7b7b7b;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

body:not(#Top) #product-box .select select::-ms-expand {
  display: none;
}

body:not(#Top) #product-box .select select:disabled {
  opacity: 0.5;
  pointer-events: none;
}

body:not(#Top) #product-box .select__arrow {
  position: absolute;
  top: 16px;
  right: 15px;
  width: 0;
  height: 0;
  pointer-events: none;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #7b7b7b transparent transparent transparent;
}

body:not(#Top) #product-box .select select:disabled ~ .select__arrow {
  border-top-color: #ccc;
}

body:not(#Top) #product-box + .category-list-box {
  margin-top: 60px;
}

.category-list-box {
  padding-left: 26px;
  border-left: 1px solid #d8d9df;
}

.category-list-box .category-ttl {
  margin-bottom: 30px;
}

.category-list-box .category-ttl strong {
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #1b2850;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 700;
  display: block;
}

.category-list-box .category-ttl small {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #828282;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  display: block;
  margin-top: 14px;
}

.category-list-box .list_s li {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.06em;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  color: #1b2850;
  position: relative;
  margin-bottom: 14px;
  padding-left: 18px;
}

.category-list-box .list_s li a {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.06em;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  color: #1b2850;
  border-bottom: 1px solid transparent;
  display: inline-block;
}

.category-list-box .list_s li a:visited {
  color: #1b2850;
}

.category-list-box .list_s li a:hover {
  border-bottom: 1px solid #1b2850;
}

.category-list-box .list_s li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 7px;
  height: 7px;
  margin: auto;
  border-top: 1px solid #b2a479;
  border-right: 1px solid #b2a479;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.not-item {
  color: #5e5e5e;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
}

.breadcrumb .container {
  max-width: inherit !important;
}

/* loader
==================================*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1001;
}

/* Animation
==================================*/
.c-anim-load,
.c-anim-load02,
.c-anim-up,
.c-anim-up01,
.c-anim-up02,
.c-anim-up03 {
  -webkit-transform: translate(0, 15px);
          transform: translate(0, 15px);
  opacity: 0;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.move {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.delay1 {
  -moz-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
}

.delay2 {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}

.delay3 {
  -moz-transition-delay: 900ms;
  -webkit-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
}

.delay4 {
  -moz-transition-delay: 1200ms;
  -webkit-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
}

.delay5 {
  -moz-transition-delay: 1500ms;
  -webkit-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
}

.delay6 {
  -moz-transition-delay: 1800ms;
  -webkit-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
}

.delay7 {
  -moz-transition-delay: 2100ms;
  -webkit-transition-delay: 2100ms;
  -o-transition-delay: 2100ms;
  -ms-transition-delay: 2100ms;
}

/*==========================================
  Layout
==========================================*/
/*==================================
  Top
==================================*/
#Top main .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#Top main .row > .col {
  position: relative;
  width: 100%;
  min-height: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#Top main .container {
  max-width: 1248px;
}

#Top main .top-ttl {
  text-align: center;
  margin-bottom: 45px;
  min-height: 88px;
}

#Top main .top-ttl strong {
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.06em;
  display: inline-block;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  color: #1b2850;
}

#Top main .top-ttl strong i {
  display: inline-block;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
  -webkit-transition-delay: .35s;
          transition-delay: .35s;
  opacity: 0;
  padding-bottom: 15px;
}

#Top main .top-ttl strong::after {
  content: "";
  width: 0;
  background-color: #ad9d6f;
  height: 2px;
  display: block;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
  position: relative;
  right: -100%;
}

#Top main .top-ttl small {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.04em;
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  color: #828282;
  overflow: hidden;
}

#Top main .top-ttl small i {
  display: inline-block;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition-delay: .35s;
          transition-delay: .35s;
  opacity: 0;
}

#Top main .top-ttl.move strong i {
  -webkit-transform: translate(0, 0%);
          transform: translate(0, 0%);
  opacity: 1;
}

#Top main .top-ttl.move strong::after {
  width: 100%;
  right: 0;
}

#Top main .top-ttl.move small i {
  -webkit-transform: translate(0, 0%);
          transform: translate(0, 0%);
  opacity: 1;
}

#Top main .link-button {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #fff;
  max-width: 236px;
  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;
  background-color: #143aa8;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  border: 2px solid #143aa8;
}

#Top main .link-button:hover {
  color: #143aa8;
  background-color: #fff;
}

#Top main .container {
  padding-left: 60px;
  padding-right: 60px;
}

#Top main .main-sec .container {
  padding-left: 0;
  padding-right: 0;
  max-width: inherit;
  position: relative;
}

#Top main .main-sec .container img {
  width: 100%;
}

#Top main .main-sec .container video {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  -o-object-position: top;
     object-position: top;
  font-family: 'object-fit: cover;';
  height: 600px;
}

@media (max-width: 1368px) {
  #Top main .main-sec .container video {
    height: 43.9238653vw;
  }
}

#Top main .main-sec .container #top-text {
  position: absolute;
  left: 60px;
  bottom: -2px;
  overflow: hidden;
}

@media all and (-ms-high-contrast: none) {
  #Top main .main-sec .container #top-text {
    bottom: -38px;
  }
}

#Top main .main-sec .container #top-text svg {
  display: block;
  z-index: 1;
  position: relative;
  opacity: 0;
}

#Top main .main-sec .container #top-text svg:first-child {
  margin-bottom: 22px;
}

#Top main .main-sec .container #top-text .start-anim {
  bottom: -155px;
  -webkit-transition: inherit;
  transition: inherit;
  opacity: 0;
}

#Top main .main-sec .container #top-text svg:not(.start-anim) {
  left: 0;
}

@media (max-width: 1367px) {
  #Top main .main-sec .container #top-text svg.start-anim {
    width: 59.59vw;
    height: auto;
  }
}

#Top main .main-sec .container #bottom-text {
  position: absolute;
  left: 189px;
  bottom: -105px;
  overflow: hidden;
  padding-top: 17px;
}

#Top main .main-sec .container #bottom-text .start-anim {
  z-index: 1;
  position: relative;
  -webkit-transition: inherit;
  transition: inherit;
  z-index: 1;
  bottom: 155px;
  opacity: 0;
}

@media (max-width: 1367px) {
  #Top main .main-sec .container #bottom-text {
    left: calc(13.836vw + 15px);
    bottom: -7.687vw;
  }
  #Top main .main-sec .container #bottom-text svg.start-anim {
    width: 55vw;
    height: auto;
  }
}

#Top main .main-sec .container .lastUpdate {
  max-width: 179px;
  width: 100%;
  height: 26px;
  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;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #c6c6c6;
  position: absolute;
  right: 0;
  bottom: -24px;
  background-color: #030b22;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}

#Top main .pickup-sec {
  padding: 225px 0 60px;
  background-color: #efeff2;
}

#Top main .pickup-sec .row {
  margin: 0 -10px -20px;
}

#Top main .pickup-sec .row > .col {
  padding: 0 10px 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

#Top main .pickup-sec .row > .col a {
  display: block;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#Top main .pickup-sec .row > .col a .card {
  background-color: #fff;
  padding: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
}

#Top main .pickup-sec .row > .col a .card .ttl {
  font-size: 24px;
  line-height: 33px;
  letter-spacing: 0.06em;
  color: #1b2850;
  padding-bottom: 13px;
  margin-bottom: 26px;
  border-bottom: 1px solid #ececec;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#Top main .pickup-sec .row > .col a .card > .ph-column {
  position: relative;
  width: 100%;
  min-height: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 37.43%;
          flex: 0 0 37.43%;
  max-width: 37.43%;
  padding-right: 4.88%;
  overflow: hidden;
}

#Top main .pickup-sec .row > .col a .card > .ph-column img {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#Top main .pickup-sec .row > .col a .card .text-column {
  position: relative;
  width: 100%;
  min-height: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 62.57%;
          flex: 0 0 62.57%;
  max-width: 62.57%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#Top main .pickup-sec .row > .col a .card .text-column p {
  letter-spacing: 0.06em;
  color: #5e5e5e;
  font-weight: 400;
  padding-bottom: 20px;
}

#Top main .pickup-sec .row > .col a .card .text-column .link-wrap {
  text-align: right;
}

#Top main .pickup-sec .row > .col a .card .text-column .link-wrap .arrow-link {
  line-height: 1;
  letter-spacing: 0.06em;
  color: #1b2850;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
  display: inline-block;
  padding-right: 28px;
  position: relative;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#Top main .pickup-sec .row > .col a .card .text-column .link-wrap .arrow-link::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: inline-block;
  width: 9px;
  height: 9px;
  margin: auto 10px;
  border-top: 2px solid #143aa8;
  border-right: 2px solid #143aa8;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#Top main .pickup-sec .row > .col a:hover .ph-column img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

#Top main .pickup-sec .row > .col a:hover .ttl {
  color: #143aa8;
}

#Top main .pickup-sec .row > .col a:hover .text-column .link-wrap .arrow-link::after {
  right: -10px;
}

#Top main .pickup-sec #product-box {
  padding: 55px;
  background-color: #121e41;
  margin-top: 38px;
}

#Top main .pickup-sec #product-box > .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#Top main .pickup-sec #product-box > .row > * {
  color: #fff;
}

#Top main .pickup-sec #product-box > .row .col.ttl {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 19.499%;
          flex: 0 0 19.499%;
  max-width: 19.499%;
}

#Top main .pickup-sec #product-box > .row .col.ttl .product-ttl strong {
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 700;
  display: block;
  color: #fff;
}

#Top main .pickup-sec #product-box > .row .col.ttl .product-ttl small {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #555a6a;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  display: block;
  margin-top: 17px;
}

#Top main .pickup-sec #product-box > .row > .col:not(.ttl) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80.5%;
          flex: 0 0 80.5%;
  max-width: 80.5%;
  padding-left: 48px;
  border-left: 1px solid #384161;
}

#Top main .pickup-sec #product-box > .row > .col:not(.ttl) .search_box .t-row {
  margin-bottom: 20px;
}

#Top main .pickup-sec #product-box > .row > .col:not(.ttl) .search_box .t-row > .col > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#Top main .pickup-sec #product-box > .row > .col:not(.ttl) .search_box .t-row > .col > dl dt {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  margin-right: 15px;
}

#Top main .pickup-sec #product-box > .row > .col:not(.ttl) .search_box .t-row > .col > dl dt > span {
  display: inline-block;
}

#Top main .pickup-sec #product-box > .row > .col:not(.ttl) .search_box .t-row > .col > dl dd form .selec-wrap {
  position: relative;
  max-width: 250px;
  width: 100%;
  font-size: 16px;
  line-height: 1;
  color: #000;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  background-color: #fff;
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#Top main .pickup-sec #product-box > .row > .col:not(.ttl) .search_box .t-row > .col > dl dd form .selec-wrap::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 4.5px 0 4.5px;
  border-color: #143aa8 transparent transparent transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  z-index: 1;
}

#Top main .pickup-sec #product-box > .row > .col:not(.ttl) .search_box .t-row > .col > dl dd form .selec-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  line-height: 1;
  color: #000;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  padding: 12px 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 250px;
}

#Top main .pickup-sec #product-box > .row > .col:not(.ttl) .search_box h4 {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.06em;
  margin-bottom: 15px;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
}

#Top main .pickup-sec #product-box > .row > .col:not(.ttl) .search_box .btn_search {
  margin-top: 12px;
  text-align: left;
}

#Top main .pickup-sec #product-box > .row > .col:not(.ttl) .search_box .btn_search input {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #fff;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
  background-color: #143aa8;
  border: 2px solid #143aa8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 240px;
  height: 54px;
  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;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  margin-left: 0;
}

#Top main .pickup-sec #product-box > .row > .col:not(.ttl) .search_box .btn_search input:hover {
  background-color: #fff;
  color: #143aa8;
}

#Top main .pickup-sec #product-box .checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#Top main .pickup-sec #product-box .control-group {
  display: inline-block;
  vertical-align: top;
  background: #fff;
  text-align: left;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 200px;
  height: 210px;
  margin: 10px;
}

#Top main .pickup-sec #product-box .control {
  display: block;
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 150px;
}

#Top main .pickup-sec #product-box .control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

#Top main .pickup-sec #product-box .control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #fff;
}

#Top main .pickup-sec #product-box .control--radio .control__indicator {
  border-radius: 50%;
}

#Top main .pickup-sec #product-box .control input:checked ~ .control__indicator {
  background: #143aa8;
}

#Top main .pickup-sec #product-box .control input:disabled ~ .control__indicator {
  background: #fff;
  opacity: 0.6;
  pointer-events: none;
}

#Top main .pickup-sec #product-box .control__indicator:after {
  content: '';
  position: absolute;
  display: none;
}

#Top main .pickup-sec #product-box .control input:checked ~ .control__indicator:after {
  display: block;
}

#Top main .pickup-sec #product-box .control--checkbox .control__indicator:after {
  left: 6px;
  top: 1px;
  width: 5px;
  height: 12px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#Top main .pickup-sec #product-box .control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}

#Top main .pickup-sec #product-box .control--radio .control__indicator:after {
  left: 7px;
  top: 7px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #fff;
}

#Top main .pickup-sec #product-box .control--radio input:disabled ~ .control__indicator:after {
  background: #7b7b7b;
}

#Top main .pickup-sec #product-box .select {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  width: 100%;
}

#Top main .pickup-sec #product-box .select select {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  padding: 10px 15px;
  outline: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #7b7b7b;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

#Top main .pickup-sec #product-box .select select::-ms-expand {
  display: none;
}

#Top main .pickup-sec #product-box .select select:disabled {
  opacity: 0.5;
  pointer-events: none;
}

#Top main .pickup-sec #product-box .select__arrow {
  position: absolute;
  top: 16px;
  right: 15px;
  width: 0;
  height: 0;
  pointer-events: none;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #7b7b7b transparent transparent transparent;
}

#Top main .pickup-sec #product-box .select select:disabled ~ .select__arrow {
  border-top-color: #ccc;
}

@media (max-width: 1170px) {
  #Top main .pickup-sec #product-box {
    padding: 30px;
  }
  #Top main .pickup-sec #product-box > .row > .col:not(.ttl) .search_box .t-row > .col > dl dt {
    font-size: 14px;
    width: 40%;
  }
  #Top main .pickup-sec #product-box .control {
    font-size: 14px;
  }
}

@media (max-width: 1080px) {
  #Top main .pickup-sec #product-box {
    padding: 30px 20px;
    background-color: #121e41;
    margin-top: 38px;
  }
  #Top main .pickup-sec #product-box > .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
  }
  #Top main .pickup-sec #product-box > .row > * {
    color: #fff;
  }
  #Top main .pickup-sec #product-box > .row .col.ttl {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  #Top main .pickup-sec #product-box > .row .col.ttl .product-ttl {
    text-align: center;
  }
  #Top main .pickup-sec #product-box > .row .col.ttl .product-ttl strong {
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0.08em;
    font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
    font-weight: 700;
    display: block;
    color: #fff;
  }
  #Top main .pickup-sec #product-box > .row .col.ttl .product-ttl small {
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #555a6a;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    display: block;
    margin-top: 8px;
  }
  #Top main .pickup-sec #product-box > .row > .col:not(.ttl) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    border-left: 0;
  }
  #Top main .pickup-sec #product-box > .row > .col:not(.ttl) .search_box .t-row {
    margin-bottom: 20px;
    padding-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
  }
  #Top main .pickup-sec #product-box > .row > .col:not(.ttl) .search_box .t-row > .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
  }
  #Top main .pickup-sec #product-box > .row > .col:not(.ttl) .search_box .t-row > .col > dl {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
  #Top main .pickup-sec #product-box > .row > .col:not(.ttl) .search_box .t-row > .col > dl dt {
    margin-right: 15px;
    display: block;
    margin-bottom: 8px;
  }
  #Top main .pickup-sec #product-box > .row > .col:not(.ttl) .search_box .t-row > .col > dl dd {
    display: block;
  }
  #Top main .pickup-sec #product-box > .row > .col:not(.ttl) .search_box .t-row > .col > dl dd form .selec-wrap {
    position: relative;
    width: 100%;
    font-size: 16px;
    line-height: 1;
    color: #000;
    font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
    font-weight: 400;
    background-color: #fff;
    position: relative;
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: 100%;
  }
  #Top main .pickup-sec #product-box > .row > .col:not(.ttl) .search_box .t-row > .col > dl dd form .selec-wrap::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 4.5px 0 4.5px;
    border-color: #143aa8 transparent transparent transparent;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    z-index: 1;
  }
  #Top main .pickup-sec #product-box > .row > .col:not(.ttl) .search_box .t-row > .col > dl dd form .selec-wrap select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    line-height: 1;
    color: #000;
    font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
    font-weight: 400;
    padding: 12px 18px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
  }
  #Top main .pickup-sec #product-box > .row > .col:not(.ttl) .search_box h4 {
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.06em;
    margin-bottom: 15px;
  }
  #Top main .pickup-sec #product-box > .row > .col:not(.ttl) .search_box .btn_search {
    margin-top: 12px;
    text-align: center;
  }
  #Top main .pickup-sec #product-box > .row > .col:not(.ttl) .search_box .btn_search input {
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.06em;
    color: #fff;
    font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
    font-weight: 500;
    background-color: #143aa8;
    border: 2px solid #143aa8;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 240px;
    height: 54px;
    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;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    margin-left: auto;
    margin-right: auto;
  }
  #Top main .pickup-sec #product-box > .row > .col:not(.ttl) .search_box .btn_search input:hover {
    background-color: #fff;
    color: #143aa8;
  }
  #Top main .pickup-sec #product-box .checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #Top main .pickup-sec #product-box .control-group {
    display: inline-block;
    vertical-align: top;
    background: #fff;
    text-align: left;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 200px;
    height: 210px;
    margin: 10px;
  }
  #Top main .pickup-sec #product-box .control {
    display: block;
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  #Top main .pickup-sec #product-box .control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
  #Top main .pickup-sec #product-box .control__indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #fff;
  }
  #Top main .pickup-sec #product-box .control--radio .control__indicator {
    border-radius: 50%;
  }
  #Top main .pickup-sec #product-box .control input:checked ~ .control__indicator {
    background: #143aa8;
  }
  #Top main .pickup-sec #product-box .control input:disabled ~ .control__indicator {
    background: #fff;
    opacity: 0.6;
    pointer-events: none;
  }
  #Top main .pickup-sec #product-box .control__indicator:after {
    content: '';
    position: absolute;
    display: none;
  }
  #Top main .pickup-sec #product-box .control input:checked ~ .control__indicator:after {
    display: block;
  }
  #Top main .pickup-sec #product-box .control--checkbox .control__indicator:after {
    left: 6px;
    top: 1px;
    width: 5px;
    height: 12px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #Top main .pickup-sec #product-box .control--checkbox input:disabled ~ .control__indicator:after {
    border-color: #7b7b7b;
  }
  #Top main .pickup-sec #product-box .control--radio .control__indicator:after {
    left: 7px;
    top: 7px;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: #fff;
  }
  #Top main .pickup-sec #product-box .control--radio input:disabled ~ .control__indicator:after {
    background: #7b7b7b;
  }
  #Top main .pickup-sec #product-box .select {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    width: 100%;
  }
  #Top main .pickup-sec #product-box .select select {
    display: inline-block;
    width: 100%;
    cursor: pointer;
    padding: 10px 15px;
    outline: 0;
    border: 0;
    border-radius: 0;
    background: #fff;
    color: #7b7b7b;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  #Top main .pickup-sec #product-box .select select::-ms-expand {
    display: none;
  }
  #Top main .pickup-sec #product-box .select select:disabled {
    opacity: 0.5;
    pointer-events: none;
  }
  #Top main .pickup-sec #product-box .select__arrow {
    position: absolute;
    top: 16px;
    right: 15px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-style: solid;
    border-width: 8px 5px 0 5px;
    border-color: #7b7b7b transparent transparent transparent;
  }
  #Top main .pickup-sec #product-box .select select:disabled ~ .select__arrow {
    border-top-color: #ccc;
  }
}

#Top main .case-sec {
  padding-top: 105px;
  padding-bottom: 100px;
}

#Top main .case-sec .row {
  margin: 0 -24px -55px;
}

#Top main .case-sec .row > .col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding: 0 24px 55px;
}

#Top main .case-sec .row > .col a:hover .ph img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

#Top main .case-sec .row > .col a:hover h3 {
  color: #143aa8;
  border-bottom: 1px solid #143aa8;
}

#Top main .case-sec .row > .col .ph {
  margin-bottom: 20px;
  overflow: hidden;
}

#Top main .case-sec .row > .col .ph img {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  width: 100%;
  height: 255px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

@media (max-width: 1366px) {
  #Top main .case-sec .row > .col .ph img {
    height: 18.67vw;
  }
}

#Top main .case-sec .row > .col .date {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #143aa8;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

#Top main .case-sec .row > .col h3 {
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  display: inline;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#Top main .case-sec .row > .col p {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #5e5e5e;
  margin-top: 11px;
}

@media all and (-ms-high-contrast: none) {
  #Top main .main-sec .container .main_image {
    height: 600px;
    position: relative;
  }
  #Top main .main-sec .container #bgVideo {
    position: absolute;
    top: 0;
    z-index: -1;
    height: auto;
  }
  footer .contact-box .bg-wrapper {
    overflow: hidden;
  }
  footer .contact-box .bg-wrapper video {
    height: auto;
    z-index: 0;
    top: -18vw;
  }
  footer .contact-box .bg-wrapper dl dd .row > .info-column .telNum strong {
    display: block;
  }
}

@media all and (min-width: 1368px) and (-ms-high-contrast: none) {
  #Top main .main-sec .container #top-text {
    bottom: -2px;
  }
  #Top main .main-sec .container #bottom-text {
    bottom: -105px;
  }
}

@media (max-width: 1367px) {
  #Top main .main-sec .container #top-text {
    bottom: -2px;
  }
  #Top main .main-sec .container .main_image {
    height: 43.9238653vw;
    position: relative;
  }
  #Top main .main-sec .container #top-text svg.start-anim {
    height: 5.84795322vw;
  }
  #Top main .main-sec .container #bottom-text {
    left: calc(13.836vw + 15px);
    bottom: -7.687vw;
  }
  #Top main .main-sec .container #bottom-text svg.start-anim {
    height: 6.36vw;
  }
}

/*==================================
  Top
==================================*/
#Company main .container {
  padding-left: 60px;
  padding-right: 60px;
}

#Company main .link-button {
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
  max-width: 236px;
  width: 100%;
  height: 50px;
  background-color: #143aa8;
  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;
  margin: 0 auto;
  border: 2px solid #143aa8;
}

#Company main .link-button:hover {
  color: #143aa8;
  background-color: #fff;
}

#Company main .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#Company main .row > .col {
  position: relative;
  width: 100%;
  min-height: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#Company main .about-sec .bg-color {
  background-color: #eaeaed;
}

#Company main .about-sec .bg-color .catch {
  margin-top: 80px;
  margin-bottom: 58px;
}

#Company main .about-sec .bg-color .catch .catch-top {
  text-align: center;
  margin-bottom: 12px;
}

#Company main .about-sec .bg-color .catch .catch-top small {
  font-size: 18px;
  line-height: 1.667;
  letter-spacing: 0.14em;
  color: #1b2850;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
}

#Company main .about-sec .bg-color .catch .catch-top span {
  font-size: 24px;
  line-height: 1.667;
  letter-spacing: 0.14em;
  color: #1b2850;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
}

#Company main .about-sec .bg-color .catch .catch-middle img {
  width: 100%;
}

#Company main .about-sec .bg-color .catch .bottom-catch {
  text-align: center;
  margin-top: 20px;
}

#Company main .about-sec .bg-color .catch .bottom-catch strong {
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.14em;
  color: #1b2850;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
}

#Company main .about-sec .bg-color .philosophy-list > .card {
  background-color: #fff;
  margin-bottom: 10px;
  padding: 29px 58px;
}

#Company main .about-sec .bg-color .philosophy-list > .card dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#Company main .about-sec .bg-color .philosophy-list > .card dl dt,
#Company main .about-sec .bg-color .philosophy-list > .card dl dd {
  position: relative;
  width: 100%;
  min-height: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 108px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#Company main .about-sec .bg-color .philosophy-list > .card dl dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
}

#Company main .about-sec .bg-color .philosophy-list > .card dl dt strong,
#Company main .about-sec .bg-color .philosophy-list > .card dl dt small {
  display: block;
}

#Company main .about-sec .bg-color .philosophy-list > .card dl dt strong {
  font-size: 30px;
  line-height: 1.45;
  letter-spacing: 0.08em;
  color: #1b2850;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 700;
}

#Company main .about-sec .bg-color .philosophy-list > .card dl dt small {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #828282;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  margin-top: 15px;
}

#Company main .about-sec .bg-color .philosophy-list > .card dl dd {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80%;
          flex: 0 0 80%;
  max-width: 80%;
  padding-left: 57px;
  border-left: 1px solid #ececec;
}

#Company main .about-sec .bg-color .philosophy-list > .card dl dd p {
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #5e5e5e;
}

#Company main .about-sec .bg-color .philosophy-list > .card dl dd > .square-dot li {
  font-size: 18px;
  text-indent: -1em;
  padding-left: 1em;
  position: relative;
  color: #5e5e5e;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
}

#Company main .about-sec .bg-color .philosophy-list > .card dl dd > .square-dot li:last-child {
  margin-bottom: 0;
}

#Company main .about-sec .bg-color .philosophy-list > .card dl dd > .square-dot li::before {
  content: "■";
  font-size: 8px;
  letter-spacing: 0.06em;
  color: #1b2850;
  padding-right: 0.5em;
  position: relative;
  top: -2px;
}

#Company main .about-sec .bg-color .flow-list {
  margin-top: 55px;
  padding-bottom: 46px;
  position: relative;
  counter-reset: number 0;
}

#Company main .about-sec .bg-color .flow-list::before {
  content: "";
  border-left: 1px dashed #b8bed2;
  height: calc(100% - 76px);
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
}

#Company main .about-sec .bg-color .flow-list > li {
  position: relative;
  padding-bottom: 18px;
}

#Company main .about-sec .bg-color .flow-list > li::after {
  content: "";
  width: 16px;
  height: 1px;
  background: #b8bed2;
  position: absolute;
  top: 12px;
  left: 0;
}

#Company main .about-sec .bg-color .flow-list > li .row .text-column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 62%;
          flex: 0 0 62%;
  max-width: 62%;
  padding-left: 76px;
}

#Company main .about-sec .bg-color .flow-list > li .row .text-column strong {
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #1b2850;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
  display: block;
  position: relative;
}

#Company main .about-sec .bg-color .flow-list > li .row .text-column strong::before {
  counter-increment: number 1;
  content: "0" counter(number);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -28px;
  margin: auto;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.08em;
  color: #143aa8;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}

#Company main .about-sec .bg-color .flow-list > li .row .text-column p {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #5e5e5e;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  margin-top: 18px;
}

#Company main .about-sec .bg-color .flow-list > li .row .ph-column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 38%;
          flex: 0 0 38%;
  max-width: 38%;
  padding-left: 50px;
}

#Company main .company-sec {
  padding: 97px 0 100px;
}

#Company main .company-sec table {
  width: 100%;
}

#Company main .company-sec table tr th {
  background-color: #f0f0f3;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #1b2850;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  padding: 20px 10px;
  width: 200px;
  border-bottom: 1px solid #fff;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#Company main .company-sec table tr td {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #5e5e5e;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  padding: 20px 40px;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#Company main .company-sec table tr td ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 -24px -27px;
}

#Company main .company-sec table tr td ul li {
  position: relative;
  width: 100%;
  min-height: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  padding: 0 24px 27px;
}

#Company main .company-sec table tr td ul li strong {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.06em;
  display: block;
  color: #5e5e5e;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  position: relative;
  padding-left: 0.75em;
}

#Company main .company-sec table tr td ul li strong::before {
  content: "■";
  font-size: 8px;
  line-height: 1;
  color: #1b2850;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  position: absolute;
  top: 4px;
  left: 0;
}

#Company main .company-sec table tr td ul li p {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #5e5e5e;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  margin-top: 4px;
}

#Company main .company-sec table tr td ul li p a {
  color: #5e5e5e;
}

#Company main .company-sec table tr td ul li p a:visited {
  color: #5e5e5e;
}

#Company main .company-sec table tr td ul.no-row {
  display: block;
}

#Company main .company-sec table tr td ul.no-row li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

#Company main .company-sec table tr td ul.no-row {
  display: block;
  -ms-flex-wrap: inherit;
      flex-wrap: inherit;
  margin: 0;
}

#Company main .company-sec table tr td ul.no-row li {
  padding: 0;
}

#Company main .company-sec table tr td ul.no-row li + li {
  margin-top: 27px;
}

#Company main .company-sec table tr.last-c th {
  border-bottom: 1px solid #f0f0f3;
}

#Company main .company-sec table tr.last-c td {
  border-bottom: 1px solid #ececec;
}

#Company main .company-sec table tr.last-c td .history-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 15px;
}

#Company main .company-sec table tr.last-c td .history-list > li:last-child {
  margin-bottom: 0;
}

#Company main .company-sec table tr.last-c td .history-list > li span {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #5e5e5e;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
}

#Company main .company-sec table tr.last-c td .history-list > li .age {
  min-width: 140px;
  display: inline-block;
}

#Company main .access-sec {
  padding: 0 0 98px;
}

#Company main .access-sec iframe {
  width: 100%;
  height: 550px;
}

#Company main .access-sec .link-wrap {
  margin-top: 29px;
}

/*==================================
  Contact
==================================*/
body {
  margin: 0;
}

main#Contact {
  /*------ Reset CSS ------*/
  /*------ Reset END ------*/
  /*------ Form Base ------*/
  background: #f1f1f4;
  /*------ Form Base END ------*/
}

main#Contact input[type="text"] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

main#Contact input[type="radio"] {
  display: none;
}

main#Contact input[type="radio"]:checked + label {
  background: #ff0000;
}

main#Contact input[type="checkbox"] {
  display: none;
}

main#Contact input[type="checkbox"]:checked + label {
  background: #ff0000;
}

main#Contact input:-ms-input-placeholder, main#Contact input:-ms-input-placeholder, main#Contact input::-ms-input-placeholder {
  color: #b7b7b7;
}

main#Contact input::-ms-input-placeholder, main#Contact input:-ms-input-placeholder, main#Contact input::-ms-input-placeholder {
  color: #b7b7b7;
}

main#Contact input::placeholder, main#Contact input:-ms-input-placeholder, main#Contact input::-ms-input-placeholder {
  color: #b7b7b7;
}

main#Contact button,
main#Contact input[type="button"],
main#Contact input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

main#Contact textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  border-radius: 0;
}

main#Contact select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}

main#Contact .container {
  max-width: 1048px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}

@-webkit-keyframes onAutoFillStart {
  from {
  }
  to {
  }
}

@keyframes onAutoFillStart {
  from {
  }
  to {
  }
}

main#Contact input:-webkit-autofill {
  -webkit-animation-name: onAutoFillStart;
          animation-name: onAutoFillStart;
  background: white !important;
  -webkit-transition: background-color 50000s ease-in-out 0s;
  transition: background-color 50000s ease-in-out 0s;
}

main#Contact input[type="text"]:focus,
main#Contact input[type="email"]:focus,
main#Contact input[type="tel"]:focus,
main#Contact input[type="search"]:focus,
main#Contact input[type="url"]:focus,
main#Contact textarea:focus {
  color: #000;
  background-color: #fff;
}

main#Contact .ERR {
  color: #cc0303;
}

main#Contact input[type="text"] {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.03em;
  padding: 11px 21px;
  border: 1px solid #fff;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  border: 1px solid #c6c6c6;
  max-width: 507px;
}

main#Contact input[type="text"].zip {
  max-width: 299px;
  width: 100%;
}

main#Contact input[name="email_s"],
main#Contact input[name="address"] {
  max-width: 100%;
}

main#Contact .zip-wrap {
  display: inline-block;
  position: relative;
  max-width: 299px;
  width: 100%;
  margin-right: 3px;
}

main#Contact .zip-wrap::before {
  content: "〒";
  font-size: 16px;
  color: #5e5e5e;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  position: absolute;
  top: 0.8em;
  left: 20px;
  margin: auto;
}

main#Contact .zip-wrap input {
  padding: 11px 21px 11px 44px;
  width: 100%;
}

main#Contact input[type="button"] {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: #1b2850;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  border-bottom: 1px solid #1b2850;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-left: 15px;
}

main#Contact input[type="button"]:hover {
  opacity: 0.6;
}

main#Contact input[type="checkbox"],
main#Contact input[type="radio"] {
  display: none;
  font-size: 0;
}

main#Contact input[type="checkbox"] + label,
main#Contact input[type="radio"] + label {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  color: #5e5e5e;
  padding-left: 27px;
  position: relative;
  margin-right: 27px;
  cursor: pointer;
  white-space: pre;
}

main#Contact input[type="checkbox"] + label::before,
main#Contact input[type="radio"] + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border: 1px solid #c8c8c8;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50%;
}

main#Contact input[type="checkbox"]:checked + label,
main#Contact input[type="radio"]:checked + label {
  background: none;
}

main#Contact input[type="checkbox"]:checked + label::after,
main#Contact input[type="radio"]:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 6px;
  width: 8px;
  height: 8px;
  background: #143aa8;
  border-radius: 50%;
}

main#Contact .select-box {
  overflow: hidden;
  width: 60%;
  text-align: center;
  position: relative;
  border-radius: 2px;
  background: #ffffff;
}

main#Contact .select-box select {
  font-size: 16px;
  color: #000;
  letter-spacing: .035em;
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  padding: 12px 38px 12px 21px;
}

main#Contact .select-box select::-ms-expand {
  display: none;
}

main#Contact .select-box::before {
  position: absolute;
  top: 1.25em;
  right: 21px;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
  pointer-events: none;
}

main#Contact textarea {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.03em;
  border: 1px solid #fff;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 12px 21px;
  min-height: 250px;
  border: 1px solid #c6c6c6;
}

main#Contact .overscroll {
  overflow-y: scroll;
  height: 237px;
  padding: 25px 21px;
  background: #fff;
}

main#Contact .overscroll ul > li {
  margin-bottom: 25px;
}

main#Contact .overscroll ul > li strong {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 5px;
}

main#Contact .overscroll ul > li p {
  font-size: 14px;
  line-height: 1.42;
}

main#Contact .overscroll ul > li > ol {
  margin-top: 5px;
}

main#Contact .overscroll ul > li > ol li {
  text-indent: -1.25em;
  padding-left: 1.25em;
}

main#Contact .overscroll ul > li:first-child strong {
  margin-bottom: 20px;
}

main#Contact .overscroll ul > li:last-child {
  margin-bottom: 0;
}

main#Contact .submit_area {
  margin-top: 40px;
  text-align: center;
}

main#Contact .submit_area span input[type="submit"] {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
  color: #fff;
  background-color: #143aa8;
  max-width: 240px;
  cursor: pointer;
  width: 100%;
  height: 54px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #143aa8;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

main#Contact .submit_area span:hover {
  background: none;
}

main#Contact .submit_area span:hover input[type="submit"] {
  color: #143aa8;
  background-color: #fff;
}

main#Contact .submit_area ul.koumoku {
  max-width: 590px;
  margin: 20px auto 0;
  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;
}

main#Contact .submit_area ul.koumoku li {
  margin-top: 0;
  width: 100%;
  position: relative;
  min-height: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

main#Contact .submit_area ul.koumoku li.right, main#Contact .submit_area ul.koumoku li.left {
  float: none;
}

main#Contact .submit_area ul.koumoku li input[type="submit"] {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
  color: #fff;
  background-color: #143aa8;
  max-width: 240px;
  cursor: pointer;
  width: 100%;
  height: 54px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #143aa8;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

main#Contact .submit_area ul.koumoku li:hover {
  background: none;
}

main#Contact .submit_area ul.koumoku li:hover input[type="submit"] {
  color: #143aa8;
  background-color: #fff;
}

main#Contact .btn_back {
  margin-top: 25px;
  text-align: center;
}

main#Contact .btn_back input {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: #fff;
  background-color: #143aa8;
  max-width: 240px;
  cursor: pointer;
  width: 100%;
  height: 54px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #143aa8;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

main#Contact .btn_back input:hover {
  color: #143aa8;
  background-color: #fff;
}

main#Contact .contact_back {
  margin-top: 25px;
  text-align: center;
}

main#Contact .contact_back a {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: #fff;
  background-color: #143aa8;
  max-width: 240px;
  cursor: pointer;
  width: 100%;
  height: 54px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #143aa8;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  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;
  margin-left: auto;
  margin-right: auto;
}

main#Contact .contact_back a:hover {
  color: #143aa8;
  background-color: #fff;
}

main#Contact .container {
  margin: auto;
}

main#Contact .container p > a {
  background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)) 0 100%/0 1px no-repeat;
  background: linear-gradient(#000, #000) 0 100%/0 1px no-repeat;
  background-size: 100% 1px;
  padding-bottom: 2px;
  display: inline;
}

main#Contact .container p > a:hover {
  color: #704f00;
  background: -webkit-gradient(linear, left top, left bottom, from(#704f00), to(#704f00)) 0 100%/0 1px no-repeat;
  background: linear-gradient(#704f00, #704f00) 0 100%/0 1px no-repeat;
  background-size: 100% 1px;
}

main#Contact .need {
  color: #961212;
}

main#Contact table {
  display: block;
}

main#Contact table tbody {
  display: block;
}

main#Contact table tr {
  display: block;
  margin-bottom: 30px;
}

main#Contact table tr th {
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: #1b2850;
  display: block;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
  text-align: left;
  margin-bottom: 13px;
}

main#Contact table tr th .need {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  display: inline-block;
  margin-left: 12px;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
}

main#Contact table tr td {
  display: block;
}

main#Contact table tr td .text02 {
  margin-top: 8px;
}

main#Contact .check-list {
  padding-top: 5px;
  padding-left: 0;
  margin-bottom: 10px;
}

main#Contact .check-list li {
  display: inline-block;
}

main#Contact .form_wrap > p {
  margin-top: 0 !important;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: 500;
}

main#Contact .form-sec {
  padding-bottom: 100px;
}

main#Contact .form-sec .breadcrumb {
  margin-bottom: 80px;
}

main#Contact .form-sec .breadcrumb .container {
  max-width: 1368px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 58px;
  padding-right: 58px;
}

main#Contact .form-sec .about-catch {
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #1b2850;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
  margin-bottom: 15px;
}

main#Contact .form-sec .about-catch + p {
  font-size: 16px;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  color: #5e5e5e;
}

main#Contact .form-sec .telWrap {
  margin-top: 34px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px dashed #b8bed2;
}

main#Contact .form-sec .telWrap p:not(.telNum) {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  color: #5e5e5e;
}

main#Contact .form-sec .telWrap .telNum {
  margin-top: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

main#Contact .form-sec .telWrap .telNum img {
  display: inline-block;
  margin-right: 8px;
  max-width: 21px;
  height: auto;
}

main#Contact .form-sec .telWrap .telNum strong {
  font-size: 37px;
  line-height: 1;
  letter-spacing: 0.025em;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  display: inline-block;
  color: #1b2850;
}

main#Contact .form-sec .telWrap .telNum strong a {
  color: #1b2850;
}

main#Contact .form-sec .telWrap .telNum small {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  display: inline-block;
  margin-left: 7px;
  color: #5e5e5e;
}

main#Contact.sfm2 .form-sec > .form_wrap > p {
  color: #5e5e5e;
  margin-bottom: 25px;
}

main#Contact.sfm2 p {
  color: #5e5e5e;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
}

main#Contact.sfm3 p {
  color: #5e5e5e;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  text-align: center;
}

main#Contact .checkbox > p {
  text-indent: -1.25em;
  padding-left: 1.25em;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
}

/*==================================
  Case
==================================*/
#Case main {
  background-color: #eeeef0;
  padding-bottom: 100px;
}

#Case main .container {
  max-width: 1250px;
  padding-left: 60px;
  padding-right: 60px;
}

#Case main .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#Case main .row > .col {
  position: relative;
  width: 100%;
  min-height: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#Case main .row > .col.content-column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70.7%;
          flex: 0 0 70.7%;
  max-width: 70.7%;
}

#Case main .row > .col.side-column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 29.3%;
          flex: 0 0 29.3%;
  max-width: 29.3%;
}

#Case main .breadcrumb {
  margin-bottom: 72px;
}

#Case main .top-catch {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-bottom: 25px;
  color: #5e5e5e;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
}

#Case main #mainbox {
  padding-right: 4%;
}

#Case main ul.row {
  margin: 0 -24px;
}

#Case main ul.row .col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  max-width: 50%;
  padding: 0 24px 57px;
}

#Case main ul.row .col .ph {
  margin-bottom: 16px;
  overflow: hidden;
}

#Case main ul.row .col .ph img {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  width: 100%;
  height: 255px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

@media (max-width: 1366px) {
  #Case main ul.row .col .ph img {
    height: 18.67vw;
  }
}

#Case main ul.row .col .date {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  display: block;
  color: #143aa8;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  margin-bottom: 2px;
}

#Case main ul.row .col .ttl {
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #1b2850;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#Case main ul.row .col p {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #5e5e5e;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  margin-top: 12px;
}

#Case main ul.row .col a:hover .ph img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

#Case main ul.row .col a:hover .ttl {
  color: #143aa8;
  border-bottom: 1px solid #143aa8;
}

#Case main .pagenation {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#Case main .pagenation .wp-pagenavi {
  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;
}

#Case main .pagenation .wp-pagenavi .pages,
#Case main .pagenation .wp-pagenavi .extend,
#Case main .pagenation .wp-pagenavi .first,
#Case main .pagenation .wp-pagenavi .last {
  display: none;
}

#Case main .pagenation .wp-pagenavi .page,
#Case main .pagenation .wp-pagenavi .current {
  background-color: #fff;
  width: 38px;
  height: 38px;
  font-size: 14px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  color: #143aa8;
  letter-spacing: 0.06em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 5px;
  margin-right: 5px;
}

#Case main .pagenation .wp-pagenavi .page:hover {
  background-color: #143aa8;
  color: #fff;
}

#Case main .pagenation .wp-pagenavi .current {
  color: #fff;
  background-color: #143aa8;
}

#Case main .pagenation .wp-pagenavi .nextpostslink,
#Case main .pagenation .wp-pagenavi .previouspostslink {
  background-color: #fff;
  width: 38px;
  height: 38px;
  font-size: 14px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  color: #143aa8;
  letter-spacing: 0.06em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 5px;
  margin-right: 5px;
  position: relative;
}

#Case main .pagenation .wp-pagenavi .nextpostslink::before,
#Case main .pagenation .wp-pagenavi .previouspostslink::before {
  content: "";
  position: absolute;
  left: 0;
  right: 3px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 7px;
  height: 7px;
  border-top: 2px solid #143aa8;
  border-right: 2px solid #143aa8;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#Case main .pagenation .wp-pagenavi .nextpostslink:hover,
#Case main .pagenation .wp-pagenavi .previouspostslink:hover {
  background-color: #143aa8;
}

#Case main .pagenation .wp-pagenavi .nextpostslink:hover::before,
#Case main .pagenation .wp-pagenavi .previouspostslink:hover::before {
  border-color: #fff;
}

#Case main .pagenation .wp-pagenavi .previouspostslink::before {
  left: 4px;
  right: 0;
  -webkit-transform: scale(-1, 1) rotate(45deg);
          transform: scale(-1, 1) rotate(45deg);
}

#Case main.detail .pageBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}

#Case main.detail .pageBox > div {
  font-size: 14px;
  line-height: 1;
  position: relative;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
}

#Case main.detail .pageBox > div.list {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 0 20px;
}

#Case main.detail .pageBox > div.list a {
  text-align: center;
  width: 240px;
  height: 54px;
  font-size: 16px;
  margin: 0;
  display: inline-block;
  border: 2px solid #143aa8;
  background: #143aa8;
  color: #fff;
  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;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
}

#Case main.detail .pageBox > div.list a:hover {
  color: #143aa8;
  background: #fff;
}

#Case main.detail .pageBox > div.prev a,
#Case main.detail .pageBox > div.next a {
  border: none;
  width: auto;
  padding: 0;
  margin: 0;
  padding-top: 4px;
}

#Case main.detail .pageBox > div.prev a:hover,
#Case main.detail .pageBox > div.next a:hover {
  color: #143aa8;
}

#Case main.detail .pageBox > div.prev {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

#Case main.detail .pageBox > div.prev a {
  padding-left: 24px;
  position: relative;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
}

#Case main.detail .pageBox > div.prev a::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  width: 7px;
  height: 7px;
  margin: auto;
  border-top: 2px solid #143aa8;
  border-right: 2px solid #143aa8;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#Case main.detail .pageBox > div.prev a:hover::before {
  left: 10px;
}

#Case main.detail .pageBox > div.next {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

#Case main.detail .pageBox > div.next a {
  padding-right: 24px;
  position: relative;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
}

#Case main.detail .pageBox > div.next a::before {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  width: 7px;
  height: 7px;
  margin: auto;
  border-top: 2px solid #143aa8;
  border-right: 2px solid #143aa8;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#Case main.detail .pageBox > div.next a:hover::before {
  right: 10px;
}

#Case main.detail .wp_content p {
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
}

#Case main.detail .title_s {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: #1b2850;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
  border-bottom: 1px dashed #b8bed2;
  padding-bottom: 18px;
}

#Case main.detail .title_s span {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #143aa8;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  margin-bottom: 2px;
  display: block;
}

#Case main.detail .category-area {
  margin-top: 20px;
  margin-bottom: 40px;
}

#Case main.detail .category-area dl {
  padding: 7px 26px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#Case main.detail .category-area dl:last-child {
  margin-top: 5px;
}

#Case main.detail .category-area dl dt {
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0.08em;
  color: #1b2850;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 700;
  min-width: 124px;
  border-right: 1px solid #ececec;
}

#Case main.detail .category-area dl dd {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #5e5e5e;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  padding-left: 28px;
}

/*==================================
  Catalogue
==================================*/
#Catalogue main {
  background-color: #eeeef0;
  padding-bottom: 100px;
}

#Catalogue main .container {
  max-width: 1250px;
  padding-left: 60px;
  padding-right: 60px;
}

#Catalogue main .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#Catalogue main .row > .col {
  position: relative;
  width: 100%;
  min-height: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#Catalogue main .row > .col.content-column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70.7%;
          flex: 0 0 70.7%;
  max-width: 70.7%;
}

#Catalogue main .row > .col.side-column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 29.3%;
          flex: 0 0 29.3%;
  max-width: 29.3%;
}

#Catalogue main .breadcrumb {
  margin-bottom: 80px;
}

#Catalogue main .title_s {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: #1b2850;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
  margin-bottom: 18px;
}

#Catalogue main ul.txt_indent {
  text-indent: -1.4em;
  padding-left: 1.4em;
  margin-bottom: 60px;
}

#Catalogue main ul.txt_indent li {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #5e5e5e;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
}

#Catalogue main .tit_blue {
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: #1b2850;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 15px;
  position: relative;
}

#Catalogue main .tit_blue .right {
  float: none;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
}

#Catalogue main .tit_blue .right a {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
  color: #fff;
  background-color: #143aa8;
  padding: 3px 14px;
  display: block;
  border: 2px solid #143aa8;
}

#Catalogue main .tit_blue .right a:hover {
  color: #143aa8;
  background-color: #fff;
}

#Catalogue main #mainbox {
  padding-right: 50px;
}

#Catalogue main .productsarea {
  margin: 0 -5px -10px;
  padding-bottom: 35px;
}

#Catalogue main .productsarea > p {
  color: #5e5e5e;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
}

#Catalogue main .productsarea > .col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 5px 10px;
}

#Catalogue main .productsarea > .col .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background-color: #fff;
  padding: 14px 20px 14px 14px;
}

#Catalogue main .productsarea > .col .card .img-column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 31.75%;
          flex: 0 0 31.75%;
  max-width: 31.75%;
  overflow: hidden;
}

#Catalogue main .productsarea > .col .card .img-column img {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#Catalogue main .productsarea > .col .card .text-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 5%;
  padding-right: 10.1%;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 68.25%;
          flex: 0 0 68.25%;
  max-width: 68.25%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#Catalogue main .productsarea > .col .card .text-column::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 7px;
  height: 7px;
  margin: auto;
  border-top: 2px solid #143aa8;
  border-right: 2px solid #143aa8;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#Catalogue main .productsarea > .col .card .text-column .products {
  margin-bottom: 8px;
}

#Catalogue main .productsarea > .col .card .text-column .products a {
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: #656e8a;
  background-color: #f0f0f3;
  padding: 3px 10px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  display: inline-block;
}

#Catalogue main .productsarea > .col .card .text-column .products a:hover {
  background-color: #cfcfe2;
}

#Catalogue main .productsarea > .col .card .text-column .name a {
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0.06em;
  color: #1b2850;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border-bottom: 1px solid transparent;
}

#Catalogue main .productsarea > .col .card.hover .img-column img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

#Catalogue main .productsarea > .col .card.hover .text-column .name a {
  border-bottom: 1px solid #1b2850;
}

#Catalogue main .pagenation {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#Catalogue main .pagenation .wp-pagenavi {
  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;
}

#Catalogue main .pagenation .wp-pagenavi .pages,
#Catalogue main .pagenation .wp-pagenavi .extend,
#Catalogue main .pagenation .wp-pagenavi .first,
#Catalogue main .pagenation .wp-pagenavi .last {
  display: none;
}

#Catalogue main .pagenation .wp-pagenavi .page,
#Catalogue main .pagenation .wp-pagenavi .current {
  background-color: #fff;
  width: 38px;
  height: 38px;
  font-size: 14px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  color: #143aa8;
  letter-spacing: 0.06em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 5px;
  margin-right: 5px;
}

#Catalogue main .pagenation .wp-pagenavi .page:hover {
  background-color: #143aa8;
  color: #fff;
}

#Catalogue main .pagenation .wp-pagenavi .current {
  color: #fff;
  background-color: #143aa8;
}

#Catalogue main .pagenation .wp-pagenavi .nextpostslink,
#Catalogue main .pagenation .wp-pagenavi .previouspostslink {
  background-color: #fff;
  width: 38px;
  height: 38px;
  font-size: 14px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  color: #143aa8;
  letter-spacing: 0.06em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 5px;
  margin-right: 5px;
  position: relative;
}

#Catalogue main .pagenation .wp-pagenavi .nextpostslink::before,
#Catalogue main .pagenation .wp-pagenavi .previouspostslink::before {
  content: "";
  position: absolute;
  left: 0;
  right: 3px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 7px;
  height: 7px;
  border-top: 2px solid #143aa8;
  border-right: 2px solid #143aa8;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#Catalogue main .pagenation .wp-pagenavi .nextpostslink:hover,
#Catalogue main .pagenation .wp-pagenavi .previouspostslink:hover {
  background-color: #143aa8;
}

#Catalogue main .pagenation .wp-pagenavi .nextpostslink:hover::before,
#Catalogue main .pagenation .wp-pagenavi .previouspostslink:hover::before {
  border-color: #fff;
}

#Catalogue main .pagenation .wp-pagenavi .previouspostslink::before {
  left: 4px;
  right: 0;
  -webkit-transform: scale(-1, 1) rotate(45deg);
          transform: scale(-1, 1) rotate(45deg);
}

#Catalogue main.Detail .Part td[width="33%"] a {
  border-bottom: 0;
}

#Catalogue main.Detail .pageBox {
  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;
  margin-top: 40px;
}

#Catalogue main.Detail .pageBox > div {
  font-size: 14px;
  line-height: 1;
  position: relative;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
}

#Catalogue main.Detail .pageBox > div.list {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 0 20px;
}

#Catalogue main.Detail .pageBox > div.list a {
  text-align: center;
  width: 240px;
  height: 54px;
  font-size: 16px;
  margin: 0;
  display: inline-block;
  border: 2px solid #143aa8;
  background: #143aa8;
  color: #fff;
  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;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
}

#Catalogue main.Detail .pageBox > div.list a:hover {
  color: #143aa8;
  background: #fff;
}

#Catalogue main.Detail .pageBox > div.prev a,
#Catalogue main.Detail .pageBox > div.next a {
  border: none;
  width: auto;
  padding: 0;
  margin: 0;
  padding-top: 4px;
}

#Catalogue main.Detail .pageBox > div.prev a:hover,
#Catalogue main.Detail .pageBox > div.next a:hover {
  color: #143aa8;
}

#Catalogue main.Detail .pageBox > div.prev {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

#Catalogue main.Detail .pageBox > div.prev a {
  padding-left: 24px;
  position: relative;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
}

#Catalogue main.Detail .pageBox > div.prev a::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  width: 7px;
  height: 7px;
  margin: auto;
  border-top: 2px solid #143aa8;
  border-right: 2px solid #143aa8;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#Catalogue main.Detail .pageBox > div.prev a:hover::before {
  left: 10px;
}

#Catalogue main.Detail .pageBox > div.next {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

#Catalogue main.Detail .pageBox > div.next a {
  padding-right: 24px;
  position: relative;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
}

#Catalogue main.Detail .pageBox > div.next a::before {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  width: 7px;
  height: 7px;
  margin: auto;
  border-top: 2px solid #143aa8;
  border-right: 2px solid #143aa8;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#Catalogue main.Detail .pageBox > div.next a:hover::before {
  right: 10px;
}

#Catalogue main.Detail .title_s {
  font-size: 24px;
  line-height: 1.1666;
  letter-spacing: 0.08em;
  border-bottom: 1px dashed #b8bed2;
  padding-bottom: 16px;
}

#Catalogue main.Detail .print_c {
  margin-bottom: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#Catalogue main.Detail .print_c .btn {
  display: inline-block;
  margin-left: 10px;
}

#Catalogue main.Detail .print_c .btn a {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #5e5e5e;
  background-color: #fff;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
  padding: 0 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: none;
  height: 40px;
}

#Catalogue main.Detail .print_c .btn.yt a {
  padding:0 18px 0 44px;
  background:url(../images/catalogue/yt.svg) #fff no-repeat 17px 50%;
  background-size: 20px 14px ;
}

#Catalogue main.Detail .print_c .btn.yt a:hover  {
  background:url(../images/catalogue/yt_w.svg) #143aa8 no-repeat 17px 50%;
  background-size: 20px 14px ;
}

#Catalogue main.Detail .print_c .btn a svg {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  margin-right: 5px;
}

#Catalogue main.Detail .print_c .btn a:hover {
  color: #fff;
  background-color: #143aa8;
}

#Catalogue main.Detail .print_c .btn a:hover svg path {
  fill: #fff;
}

#Catalogue main.Detail .scroll-wrap {
  overflow: scroll;
}

#Catalogue main.Detail .wp_content img {
  max-width: inherit;
  height: inherit;
}

#Catalogue main.Detail .wp_content p,
#Catalogue main.Detail .wp_content pre,
#Catalogue main.Detail .wp_content blockquote,
#Catalogue main.Detail .wp_content ul,
#Catalogue main.Detail .wp_content li,
#Catalogue main.Detail .wp_content ol,
#Catalogue main.Detail .wp_content dl,
#Catalogue main.Detail .wp_content dd,
#Catalogue main.Detail .wp_content tr {
  font-size: 16px;
  line-height: 1.5;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  color: #5e5e5e;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

#Catalogue main.Detail .wp_content .tit_blue {
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: #1b2850;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 15px;
  position: relative;
}

#Catalogue main.Detail .wp_content .tit_blue .right {
  float: none;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
}

#Catalogue main.Detail .wp_content .tit_blue .right a {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
  color: #fff;
  background-color: #143aa8;
  padding: 3px 14px;
  display: block;
  border: 2px solid #143aa8;
}

#Catalogue main.Detail .wp_content .tit_blue .right a:hover {
  color: #143aa8;
  background-color: #fff;
}

#Catalogue main.Detail .wp_content p.com {
  background: #fff;
  padding: 5px;
  margin-bottom: 10px;
}

#Catalogue main.Detail .wp_content table {
  border-collapse: separate;
  border-spacing: 2px;
}

#Catalogue main.Detail .wp_content table td {
  vertical-align: top;
}

#Catalogue main.Detail .wp_content .tbl_draw {
  border: 1px solid #dedede;
  border-bottom: 0;
  border-right: 0;
}

#Catalogue main.Detail .wp_content .tbl_draw tr {
  background-color: #fff;
}

#Catalogue main.Detail .wp_content .tbl_draw td,
#Catalogue main.Detail .wp_content .tbl_draw th {
  border: 1px solid #dedede;
  border-top: 0;
  border-left: 0;
  text-align: center;
  font-size: 14px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

#Catalogue main.Detail .wp_content .tbl_draw th {
  background: #5f5f5f;
  color: #fff;
}

#Catalogue main.Detail .wp_content .tbl_draw td {
  white-space: nowrap;
  padding-top: 3px;
  padding-bottom: 3px;
  vertical-align: middle;
}

#Catalogue main.Detail .wp_content .tbl_draw th.bg_dgray {
  width: 60px;
}

#Catalogue main.Detail .wp_content .tbl_draw .bg_lightblue {
  background: #e3edf7;
  text-align: center;
}

#Catalogue main.Detail .wp_content .tbl_draw .bg_pink {
  background: #ffeeee;
  text-align: center;
}

#Catalogue main.Detail .wp_content .tbl_draw .bg_pink a {
  border-bottom: 0;
}

#Catalogue main.Detail .wp_content .tbl_draw .bg_pink a img {
  margin-top: 0;
  margin-bottom: 0;
}

#Catalogue main.Detail .wp_content table.tblList tr th {
  padding-right: 20px;
  vertical-align: top;
}

#Catalogue main.Detail .wp_content table.tblList tr td {
  display: table-cell;
  vertical-align: inherit;
}

#Catalogue main.Detail .wp_content ol {
  list-style-type: decimal;
}

#Catalogue main.Detail .wp_content ol li {
  padding-left: 1em;
  text-indent: -1em;
  list-style: decimal inside !important;
}

#Catalogue main.Detail .wp_content a {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #143aa8;
  border-bottom: 1px solid #143aa8;
}

#Catalogue main.Detail .tbl_draw {
  border: 1px solid #dedede;
  border-bottom: 0;
  border-right: 0;
}

#Catalogue main.Detail .tbl_draw td,
#Catalogue main.Detail .tbl_draw th {
  border: 1px solid #dedede;
  border-top: 0;
  border-left: 0;
  text-align: center;
}

#Catalogue main.Detail .tbl_draw td {
  white-space: nowrap;
  padding-top: 3px;
  padding-bottom: 3px;
}

#Catalogue main.Detail .tbl_draw th {
  background: #5f5f5f;
  color: #fff;
}

#Catalogue main.Detail table.tbl_draw th.left_th {
  width: 80px;
}

#Catalogue main.Detail .tbl_draw th.bg_dgray {
  width: 60px;
}

#Catalogue main.Detail .tbl_draw th.sehin {
  width: 150px;
}

#Catalogue main.Detail .tbl_draw th.name {
  width: 100px;
  text-align: center;
}

#Catalogue main.Detail .tbl_draw th.tani {
  width: 60px;
  text-align: center;
}

#Catalogue main.Detail .bg_lightblue {
  background: #e3edf7;
  text-align: center;
}

#Catalogue main.Detail .bg_pink {
  background: #ffeeee;
  text-align: center;
}

#Catalogue main.Detail .bg_lightbrown {
  background: #f7f4e3;
  text-align: center;
}

#Catalogue main.Detail table.tblSekou tr td {
  vertical-align: top;
}

#Catalogue main .table-wrapper {
  overflow-x: scroll;
}

#Catalogue main .table-wrapper + .scroll_support {
  color: #143aa8;
  font-size: 0.8em;
  margin-bottom: 0.75em;
}

/*==================================
  Recruit
==================================*/
#Recruit main {
  padding-bottom: 98px;
}

#Recruit main .bg-color {
  background-image: url(../images/common/bg-image.jpg);
  background-repeat: repeat;
  background-size: 384px 384px;
  background-position: center;
}

#Recruit main p {
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 400;
  color: #5e5e5e;
  letter-spacing: 0.06em;
}

#Recruit main section .container {
  max-width: 1050px;
  padding-left: 60px;
  padding-right: 60px;
}

#Recruit main .link-wrap {
  text-align: center;
}

#Recruit main .link-wrap .link-button {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.06em;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
  color: #fff;
  height: 50px;
  width: 236px;
  background-color: #143aa8;
  border: 2px solid #143aa8;
  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;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  margin: 18px auto 40px;
}

#Recruit main .link-wrap .link-button span {
  padding-right: 19px;
  position: relative;
  display: inline-block;
}

#Recruit main .link-wrap .link-button span::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../images/common/blank.svg);
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
  width: 10px;
  height: 10px;
}

#Recruit main .link-wrap .link-button:hover {
  color: #143aa8;
  background-color: #fff;
}

#Recruit main .about-sec {
  padding-bottom: 92px;
}

#Recruit main .about-sec .catch {
  max-width: 904px;
  margin-left: auto;
  margin-right: auto;
}

#Recruit main .about-sec .catch-text {
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.14em;
  color: #1b2850;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
  text-align: center;
  margin-bottom: 18px;
}

#Recruit main .works-sec {
  padding-bottom: 60px;
}

#Recruit main .works-sec .container > p {
  text-align: center;
}

#Recruit main .works-sec .container .list-area {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#Recruit main .works-sec .container .list-area .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 -15px;
}

#Recruit main .works-sec .container .list-area .row .col {
  position: relative;
  width: 100%;
  min-height: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px 30px;
}

#Recruit main .works-sec .container .list-area .row .col .card {
  background-color: #fff;
  padding: 40px;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#Recruit main .works-sec .container .list-area .row .col .card .ph {
  margin-bottom: 35px;
}

#Recruit main .works-sec .container .list-area .row .col .card .ttl {
  font-size: 0;
  line-height: 1;
  margin-bottom: 16px;
}

#Recruit main .works-sec .container .list-area .row .col .card .ttl strong {
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #1b2850;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
  color: #1b2850;
  display: inline-block;
}

#Recruit main .works-sec .container .list-area .row .col .card .ttl small {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #143aa8;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  display: inline-block;
  margin-left: 18px;
}

#Recruit main .education-sec {
  padding: 98px 0 0;
}

#Recruit main .education-sec .container {
  max-width: 904px;
  margin-left: auto;
  margin-right: auto;
}

#Recruit main .education-sec .link-wrap .link-button {
  margin-top: 40px;
}

/*==================================
  Other
==================================*/
#Other main p {
  color: #5e5e5e;
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
}

#Other main .privacy-area.container {
  max-width: 1250px;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 100px;
}

#Other main .privacy-area > p {
  margin-bottom: 35px;
}

#Other main .privacy-area .privacy-list {
  counter-reset: number 0;
}

#Other main .privacy-area .privacy-list li {
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 25px;
}

#Other main .privacy-area .privacy-list li::before {
  counter-increment: number 1;
  content: counter(number) ".";
  font-family: YakuHanJP,
 'Noto Sans JP',
 sans-serif;
  font-weight: 500;
  color: #143aa8;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

#Other main .sitemap-area.container {
  max-width: 1250px;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 100px;
}

#Other main .sitemap-area > ul > li {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ececec;
}

#Other main .sitemap-area > ul > li:last-child {
  border-bottom: 0;
}

#Other main .sitemap-area > ul > li dl dd {
  margin-top: 16px;
}

#Other main .sitemap-area > ul > li dl dd > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#Other main .sitemap-area > ul > li dl dd > ul li {
  display: inline-block;
  margin-bottom: 18px;
  margin-right: 20px;
}

#Other main .sitemap-area > ul > li dl dd > ul li a {
  border-bottom: 1px solid #5e5e5e;
  padding-bottom: 4px;
}

#Other main .sitemap-area > ul > li dl dd > ul li a:hover {
  color: #143aa8;
  border-color: #143aa8;
}

#Other main .sitemap-area .link-button {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #fff;
  max-width: 236px;
  height: 44px;
  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;
  background-color: #143aa8;
  margin-left: 0;
  border: 2px solid #143aa8;
}

#Other main .sitemap-area .link-button:hover {
  background-color: #fff;
  color: #143aa8;
}
