@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:500,700&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Kosugi");
@import url("https://fonts.googleapis.com/css?family=Kosugi+Maru&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* Web Font */
/* Tools */
/* Base */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "YakuHanJPs", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: inherit;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  text-decoration: none;
  color: #000;
  transition: 0.2s ease;
}
a:active, a:visited {
  color: #000;
}
a:hover {
  opacity: 0.6;
}

main {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
}
@media all and (-ms-high-contrast: none) {
  main {
    display: block;
  }
}
@media screen and (max-width: 1000px) {
  main {
    margin-top: 60px;
  }
}

#wrapper {
  transition: 0.4s ease;
  opacity: 1;
}
#wrapper.is-loading {
  transition: 0.4s ease;
  opacity: 0;
}

#loading {
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20000;
  transition: 0.4s ease;
  background: rgba(255, 255, 255, 0);
  display: block;
}
#loading img {
  display: none;
  visibility: hidden;
}
#loading.is-loading {
  background: rgb(255, 255, 255);
  opacity: 1;
  visibility: visible;
}
#loading.is-loading img {
  display: block;
  visibility: visible;
  width: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -75px;
  margin-top: -25px;
  animation: bounceLogo 2.4s ease-in-out infinite;
}

@keyframes bounceLogo {
  0% {
    transform: translateY(0px) rotate(0) scale(0);
  }
  40% {
    transform: translateY(5px) rotate(5deg);
  }
  60% {
    transform: translateY(2px) rotate(-5deg) scale(1.2);
  }
}
/* Layout */
/* Module */
.site-header {
  display: flex;
  align-items: center;
  height: 100px;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 11;
  width: 100%;
  transition: 0.4s ease;
}
@media screen and (max-width: 1000px) {
  .site-header {
    padding-top: 0;
    padding-bottom: 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
  }
}
.site-header .inner {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .site-header .inner {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 1000px) {
  .site-header .inner {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.header-logo {
  margin-top: 5px;
}
.header-logo h1 img {
  transition: 3s ease;
}
@media screen and (max-width: 768px) {
  .header-logo h1 {
    display: flex;
    align-items: center;
  }
  .header-logo img {
    width: 120px;
  }
}

@media screen and (max-width: 1000px) {
  .header-navigation {
    display: none;
    visibility: hidden;
    opacity: 0;
    transform: scale(0, 0);
    transform-origin: top right;
    top: 56px;
    left: 0;
    display: block;
    background: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
  }
  .header-navigation ul {
    flex-direction: column;
    padding: 5vw;
  }
  .header-navigation ul li {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    margin-left: 0 !important;
  }
  .header-navigation ul li a {
    font-size: 2.4rem;
  }
}
.header-navigation {
  transition: 0.2s ease-in-out;
}
.header-navigation ul {
  display: flex;
}
.header-navigation ul li {
  margin-left: 30px;
}
.header-navigation ul li a {
  font-weight: bold;
  position: relative;
}
.header-navigation ul li a::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: -5px;
  left: 0;
  background: #000;
  transition: 0.4s ease;
}
@media all and (-ms-high-contrast: none) {
  .header-navigation ul li a::after {
    transition: none;
  }
}
.header-navigation ul li a:hover {
  opacity: 1;
}
.header-navigation ul li a:hover::after {
  width: 100%;
  transition: 0.4s ease;
}
.header-navigation.is-menu-show {
  visibility: visible;
  opacity: 1;
  transform: scale(1, 1);
}

.menu-contact a {
  color: #ee780c;
  display: flex;
  align-items: center;
}
.menu-contact a::before {
  content: "";
  margin-top: 3px;
  display: block;
  width: 21px;
  height: 0;
  padding-top: 15px;
  overflow: hidden;
  background-size: 21px 15px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/common/icon_mail_small.svg);
}
.menu-contact a span {
  margin-left: 0.5em;
}
@media screen and (max-width: 768px) {
  .menu-contact a span {
    margin-left: 0.25em;
  }
}
.menu-contact a::after {
  background: #ee780c !important;
}

#masthead.is-fixed {
  background: rgba(255, 255, 255, 0.9);
  height: 60px;
}
#masthead.is-fixed .inner {
  width: 100%;
}
#masthead.is-fixed h1 img {
  width: 120px;
}
#masthead.is-fixed .header-navigation ul li {
  margin-left: 2em;
}

.footer-contact {
  background: #ee780c url(../img/common/bg_or_dot.png);
  color: #fff;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .footer-contact {
    padding-top: 3rem;
    padding-bottom: 4.5rem;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
.footer-contact h3 {
  font-size: 2.6rem;
  margin-bottom: 45px;
  font-weight: bold;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 768px) {
  .footer-contact h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
.footer-contact ul {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .footer-contact ul {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .footer-contact ul {
    flex-direction: column;
  }
}
.footer-contact ul li {
  width: calc(50% - 10px);
}
@media screen and (max-width: 768px) {
  .footer-contact ul li {
    width: 100%;
  }
  .footer-contact ul li + li {
    margin-top: 1.5rem;
  }
}
.footer-contact ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  height: 105px;
  position: relative;
  border-bottom: 5px solid #D72F0A;
}
@media screen and (max-width: 768px) {
  .footer-contact ul li a {
    height: 80px;
  }
}
.footer-contact ul li a::after {
  position: absolute;
  right: 15px;
  bottom: 10px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 12px 12px;
  border-color: transparent transparent #ee780c transparent;
}
.footer-contact__tel a span {
  display: block;
  width: 358px;
  height: 0;
  padding-top: 31px;
  overflow: hidden;
  background-size: 358px 31px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/common/tel_num.svg);
}
@media screen and (max-width: 1000px) {
  .footer-contact__tel a span {
    display: block;
    width: 250.6px;
    height: 0;
    padding-top: 21.7px;
    overflow: hidden;
    background-size: 250.6px 21.7px;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
  }
}
.footer-contact__mail a {
  font-size: 3rem;
  color: #ee780c;
}
@media screen and (max-width: 1000px) {
  .footer-contact__mail a {
    font-size: 2rem;
  }
}
.footer-contact__mail a::before {
  content: "";
  display: block;
  width: 43px;
  height: 0;
  padding-top: 30px;
  overflow: hidden;
  background-size: 43px 30px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/common/icon_mail_large.svg);
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  .footer-contact__mail a::before {
    display: block;
    width: 30px;
    height: 0;
    padding-top: 21px;
    overflow: hidden;
    background-size: 30px 21px;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
  }
}

.footer-info {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 70px;
  padding-bottom: 55px;
}
@media screen and (max-width: 1000px) {
  .footer-info {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 1000px) {
  .footer-info {
    padding: 8vw 2vw;
  }
}
@media screen and (max-width: 768px) {
  .footer-info {
    align-items: flex-end;
  }
}
.footer-info__detail {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer-info__detail {
    flex-direction: column;
    width: 55%;
    align-items: flex-end;
    padding-right: 10px;
  }
}
.footer-info__detail__logo {
  margin-right: 50px;
  margin-bottom: 20px;
  width: 217px;
}
@media screen and (max-width: 768px) {
  .footer-info__detail__logo {
    width: 130px;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.footer-info__detail__logo h2 img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer-info__detail address {
    text-align: right;
  }
}
.footer-info__detail address h3 {
  margin-bottom: 30px;
  margin-bottom: 10px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .footer-info__detail address h3 img {
    width: 130px;
  }
}
.footer-info__detail address p {
  letter-spacing: 0.1em;
  line-height: 1.65;
}
@media screen and (max-width: 768px) {
  .footer-info__detail address p {
    font-size: 1.2rem;
  }
}
.footer-info__detail address small {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .footer-info__detail address small {
    font-size: 1.2rem;
  }
}
.footer-info__detail address ul {
  display: flex;
}
@media screen and (max-width: 1000px) {
  .footer-info__detail address ul {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .footer-info__detail address ul {
    align-items: flex-end;
  }
}
.footer-info__detail address ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 0.1em;
}
.footer-info__detail address ul li + li {
  padding-left: 0.5em;
}
@media screen and (max-width: 1000px) {
  .footer-info__detail address ul li + li {
    padding-left: 0;
  }
}
.footer-info__detail address ul li + li::before {
  content: "";
  width: 1px;
  height: 1.2em;
  background: #000;
  display: block;
  transform: rotate(45deg);
}
@media screen and (max-width: 1000px) {
  .footer-info__detail address ul li + li::before {
    display: none;
  }
}
.footer-info__detail address ul li + li span {
  display: block;
  margin-left: 0.5em;
}
@media screen and (max-width: 1000px) {
  .footer-info__detail address ul li + li span {
    margin-left: 0;
  }
}
.footer-info__navigation {
  width: 360px;
}
@media screen and (max-width: 1000px) {
  .footer-info__navigation {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .footer-info__navigation {
    width: 45%;
    padding-left: 10px;
  }
}
.footer-info__navigation ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-info__navigation ul li {
  width: 50%;
  margin-bottom: 20px;
  line-height: 1em;
  letter-spacing: 0.1em;
}
.footer-info__navigation ul li:nth-child(2n) {
  width: 42%;
}
@media screen and (max-width: 1000px) {
  .footer-info__navigation ul li:nth-child(2n) {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .footer-info__navigation ul li {
    width: 100%;
  }
}
.footer-info__navigation ul li a {
  font-size: 1.7rem;
}
@media screen and (max-width: 768px) {
  .footer-info__navigation ul li a {
    font-size: 1.4rem;
    font-weight: bold;
  }
}

.footer-map {
  width: 100%;
  height: 435px;
}
@media screen and (max-width: 768px) {
  .footer-map {
    height: 70vw;
  }
}
.footer-map iframe {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer-map iframe {
    height: 70vw;
  }
}

.footer-copy {
  background: #ee780c;
  color: #fff;
  text-align: center;
  padding-top: 1.5rem;
  padding-bottom: 4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .footer-copy {
    padding-bottom: 1.5rem;
  }
}

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

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

@media screen and (max-width: 768px) {
  .btn-more {
    display: flex;
    justify-content: center;
  }
  .btn-more.btn-more.pc-only {
    display: none;
  }
}
.btn-more a {
  position: relative;
  font-size: 1.4rem;
  background: #ee780c;
  color: #fff;
  padding: 0.7em 2.4em;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .btn-more a {
    font-weight: bold;
  }
}
.btn-more a::after {
  position: absolute;
  right: 5px;
  bottom: 5px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 8px 8px;
  border-color: transparent transparent #fff transparent;
}

.sec-works .swiper-button-next,
.sec-works .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 0 2px 3px rgba(0, 0, 0, 0.1);
  transition: 0.2s ease;
}
.sec-works .swiper-button-next:hover,
.sec-works .swiper-button-prev:hover {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .sec-works .swiper-button-next,
  .sec-works .swiper-button-prev {
    display: none;
  }
}
.sec-works .swiper-button-next::before,
.sec-works .swiper-button-prev::before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-left: 3px solid #000;
  border-bottom: 3px solid #000;
}
.sec-works .swiper-button-next:hover {
  transform: translateX(5px);
}
.sec-works .swiper-button-next::before {
  transform: translateX(-2px) rotate(225deg);
}
.sec-works .swiper-button-prev:hover {
  transform: translateX(-5px);
}
.sec-works .swiper-button-prev::before {
  transform: translateX(2px) rotate(45deg);
}

#menu-toggle {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
}
#menu-toggle span {
  width: 100%;
  height: 2px;
  background: #000;
  display: block;
  transition: 0.4s ease-in-out;
}
#menu-toggle.is-active {
  justify-content: center;
}
#menu-toggle.is-active span:first-child {
  transform: translateY(100%) rotate(45deg);
}
#menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
#menu-toggle.is-active span:last-child {
  transform: translateY(-100%) rotate(-45deg);
}
@media screen and (max-width: 1000px) {
  #menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.table {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  border-bottom: 2px solid #727171;
}
@media screen and (max-width: 1000px) {
  .table {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
.table table {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .table tr {
    display: flex;
    flex-direction: column;
  }
}
.table th {
  color: #727171;
  width: 10em;
}
.table th,
.table td {
  border-top: 2px solid #727171;
  padding: 0.75em 0.5em;
  text-align: left;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .table th,
  .table td {
    font-size: 1.6rem;
    padding-left: 0;
    padding-right: 0;
  }
}
.table th small,
.table td small {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .table th {
    padding-bottom: 0;
  }
  .table td {
    padding-top: 0;
    border-top: none;
  }
  .table th,
  .table td {
    width: 100%;
  }
  .table .no-border-top th {
    border-top: none;
    padding-top: 0;
  }
  .table .no-border-bottom td {
    border-bottom: none;
    padding-bottom: 0;
  }
}

#page-top {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  #page-top {
    bottom: 20px;
    right: 10px;
  }
}
#page-top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  background: #000;
  border-radius: 50%;
  box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #page-top a {
    width: 40px;
    height: 40px;
  }
}
#page-top a::before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: translateY(3px) rotate(-45deg);
  opacity: 1;
  transition: 0.4s ease;
}
#page-top a:hover::before {
  margin-top: -6px;
}
#page-top a span {
  display: none;
}

.pager-below {
  margin-bottom: 10rem;
}
.pager-below .wp-pagenavi {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .pager-below .wp-pagenavi {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .pager-below .wp-pagenavi {
    padding-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: left;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .pager-below .wp-pagenavi {
    width: 100%;
  }
}
.pager-below .wp-pagenavi span,
.pager-below .wp-pagenavi a {
  background: #fff;
  border: none;
  font-family: "YakuHanJPs", "Kosugi Maru", sans-serif;
  font-size: 2.2rem;
  font-weight: bold;
  margin-left: 5px;
  margin-right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 42px;
  font-size: 1.8rem;
  transition: 0.4s ease;
}
.pager-below .wp-pagenavi span::after,
.pager-below .wp-pagenavi a::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: #ee780c;
}
.pager-below .wp-pagenavi a:hover,
.pager-below .wp-pagenavi .current {
  position: relative;
  color: #ee780c;
  opacity: 1;
}
.pager-below .wp-pagenavi a:hover::after,
.pager-below .wp-pagenavi .current::after {
  width: 100%;
  transition: 0.2s ease-in-out;
}
.pager-below .wp-pagenavi .previouspostslink,
.pager-below .wp-pagenavi .nextpostslink {
  display: block;
  width: 42px;
  height: 0;
  padding-top: 42px;
  overflow: hidden;
  background-size: 42px 42px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/common/arrow_circle.svg);
}
.pager-below .wp-pagenavi .previouspostslink:hover,
.pager-below .wp-pagenavi .nextpostslink:hover {
  opacity: 0.7;
}
.pager-below .wp-pagenavi .previouspostslink::before, .pager-below .wp-pagenavi .previouspostslink::after,
.pager-below .wp-pagenavi .nextpostslink::before,
.pager-below .wp-pagenavi .nextpostslink::after {
  display: none;
}
.pager-below .wp-pagenavi .nextpostslink {
  transform: rotate(180deg);
}

.jumbotron {
  width: 100%;
  height: 38vw;
  max-height: 1080px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
  overflow: hidden;
  background: #fff url(../img/home/hero_pc.png) no-repeat center;
  background-size: cover;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1500px) {
  .jumbotron {
    height: 55vw;
  }
}
@media screen and (max-width: 768px) {
  .jumbotron {
    margin-bottom: 50px;
    background: #fff url(../img/home/hero_sp.png) no-repeat center;
    background-size: 100%;
    height: 166vw;
  }
}
.jumbotron .background-wrap {
  position: relative;
  top: 0;
  left: 0;
  z-index: -1;
  min-width: 100%;
  min-height: 100%;
  overflow: hidden;
  transition: 0.4s ease;
  max-height: 1080px;
}
.jumbotron .background-wrap .background-movie {
  position: relative;
  display: flex;
  justify-content: center;
  max-height: 1080px;
}
.jumbotron .background-wrap .background-movie::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
}
.jumbotron .background-wrap #background-movie-player {
  width: 250vh;
  height: 115vh;
  max-height: 1080px;
}
@media screen and (max-width: 768px) {
  .jumbotron .background-wrap #background-movie-player {
    width: 111vw;
    height: 80vw;
  }
}
.jumbotron__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  animation: bounce 1.5s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .jumbotron__scroll {
    display: none;
  }
}
.jumbotron__scroll a {
  display: block;
}

@keyframes bounce {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  100% {
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
  }
}
.front-message {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  height: calc(100vh - 100px);
  z-index: 11;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 4rem;
}
@media screen and (max-width: 1000px) {
  .front-message {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .front-message {
    display: none;
  }
}
.front-message h2 {
  width: 220px;
}
.front-message h2 a {
  border-radius: 100px;
  border: 2px solid #fff;
  display: block;
  padding: 1rem 4rem 0.5rem;
  background-color: rgba(255, 255, 255, 0.2);
}
.front-message h2 a:hover {
  background-color: #ee780c;
  border: 2px solid #ee780c;
  opacity: 1;
}
.front-message h2 a img {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .front-message h2 {
    font-size: 5vw;
  }
}

#main-content {
  margin-top: -100px;
  padding-top: 100px;
  width: 100%;
  display: block;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .sec-works {
    padding-bottom: 5rem;
  }
}
.sec-works .heading {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .sec-works .heading {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .sec-works .heading {
    margin-bottom: 2rem;
  }
}
.sec-works h2 {
  display: block;
  width: 240px;
  height: 0;
  padding-top: 45px;
  overflow: hidden;
  background-size: 240px 45px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/home/ttl_works.svg);
}
@media screen and (max-width: 768px) {
  .sec-works h2 {
    display: block;
    width: 168px;
    height: 0;
    padding-top: 31px;
    overflow: hidden;
    background-size: 168px 31px;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
  }
}
.sec-works__row {
  display: flex;
  justify-content: center;
  padding-bottom: 50px !important;
  margin-bottom: 50px !important;
}
@media screen and (max-width: 768px) {
  .sec-works__row {
    margin-bottom: 1.5rem !important;
  }
}
.sec-works__row figure {
  width: 100%;
  display: block;
  position: relative;
}
.sec-works__row figure figcaption {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.75);
  font-size: 1.8rem;
  font-weight: bold;
  transition: 0.4s ease;
}
.sec-works__row figure figcaption span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec-works__row figure figcaption span::before {
  content: "";
  display: block;
  width: 25px;
  height: 22px;
  background: url(../img/common/icon-more-link.svg) no-repeat center center;
  margin-right: 0.5em;
}
.sec-works__row figure img {
  width: 100%;
  display: block;
}
.sec-works__row .title {
  position: relative;
  padding: 19px;
}
.sec-works__row .title::after {
  position: absolute;
  right: 5px;
  bottom: 5px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 12px 12px;
  border-color: transparent transparent #ee780c transparent;
}
.sec-works__row .title h3 {
  font-size: 1.7rem;
  font-weight: bold;
  padding-bottom: 0.5em;
}
.sec-works__row .title p {
  letter-spacing: 0.085em;
  margin-bottom: 0.5em;
}
.sec-works__row .cat ul li {
  font-size: 1.2rem;
  border: 1px solid #000;
  display: inline-block;
  border-radius: 1.5em;
  padding: 0.25em 1.25em;
}
.sec-works__row article {
  padding-top: 10px;
}
.sec-works__row article a {
  width: 100%;
  display: block;
}
.sec-works__row article a:hover {
  opacity: 1;
  box-shadow: 0 3px 5px 3px rgba(0, 0, 0, 0.1);
}
.sec-works__row article a:hover figcaption {
  opacity: 1;
  visibility: visible;
}
.sec-message {
  padding-top: 60px;
  padding-bottom: 100px;
  background: #ee780c url(../img/common/bg_or_dot.png);
}
@media screen and (max-width: 768px) {
  .sec-message {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.sec-message .heading {
  color: #fff;
  text-align: center;
  margin-bottom: 46px;
}
@media screen and (max-width: 768px) {
  .sec-message .heading {
    padding-left: 2vw;
    padding-right: 2vw;
    margin-bottom: 4rem;
  }
}
.sec-message .heading h2 {
  font-size: 2.7rem;
  font-weight: bold;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .sec-message .heading h2 {
    font-size: 6vw;
    line-height: 12vw;
  }
}
.sec-message .heading h2 strong {
  font-size: 132%;
}
.sec-message .heading h2 small {
  font-size: 75%;
}
.sec-message .heading p {
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.085em;
}
@media screen and (max-width: 768px) {
  .sec-message .heading p br {
    display: none;
  }
}
.sec-message .content {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .sec-message .content {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 1000px) {
  .sec-message .content {
    flex-direction: column;
  }
}
.sec-message__each {
  width: 32%;
  background: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 38px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sec-message__each::after {
  position: absolute;
  left: 50%;
  bottom: -23px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 24px 24px 0;
  border-color: transparent #fff transparent transparent;
  transform: translateX(-50%);
}
@media screen and (max-width: 1000px) {
  .sec-message__each::after {
    left: auto;
    right: -24px;
    top: 60%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0 0;
    border-color: #fff transparent transparent transparent;
  }
}
.sec-message__each:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1000px) {
  .sec-message__each {
    padding: 2rem 1rem;
    width: 80%;
    margin-bottom: 2rem;
  }
  .sec-message__each:nth-child(2n) {
    margin-left: auto;
  }
  .sec-message__each:nth-child(2n)::after {
    left: -10px;
    right: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 20px 20px 0;
    border-color: transparent #fff transparent transparent;
  }
}
.sec-message__each p {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .sec-message__each p {
    font-size: 1.6rem;
  }
}
.sec-message__each p strong {
  font-size: 153%;
  color: #ee780c;
  line-height: 1.5em;
  letter-spacing: 0.1em;
}

.sec-about {
  padding-top: 100px;
  padding-bottom: 100px;
  background: url(../img/home/bg_about.jpg) no-repeat center center;
  background-size: cover;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .sec-about {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    margin-bottom: 0;
  }
}
.sec-about .heading {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .sec-about .heading {
    margin-bottom: 2.5rem;
  }
}
.sec-about .heading h2 {
  display: block;
  width: 210px;
  height: 0;
  padding-top: 80px;
  overflow: hidden;
  background-size: 210px 80px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/home/ttl_about.svg);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .sec-about .heading h2 {
    display: block;
    width: 147px;
    height: 0;
    padding-top: 56px;
    overflow: hidden;
    background-size: 147px 56px;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
  }
}
.sec-about .content {
  padding-left: 5vw;
  padding-right: 5vw;
}
.sec-about__menu {
  max-width: 1010px;
  display: flex;
  flex-wrap: wrap;
  background: #efefef;
  padding: 0.5px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .sec-about__menu {
    padding: 0.5px;
  }
}
.sec-about__menu li {
  width: 33.333%;
  background: #efefef;
  padding: 0.5px;
  display: block;
  position: relative;
  z-index: 9;
}
.sec-about__menu li:hover {
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .sec-about__menu li {
    width: 100%;
  }
}
.sec-about__menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-size: 2rem;
  padding: 1.25em;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .sec-about__menu li a {
    padding: 0.75em;
    font-size: 1.8rem;
  }
}
.sec-about__menu li a::after {
  position: absolute;
  right: 8px;
  bottom: 8px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 12px 12px;
  border-color: transparent transparent #ee780c transparent;
}
.sec-about__menu li a:hover, .sec-about__menu li a.current {
  color: #fff;
  background: #ee780c;
  opacity: 1;
  position: relative;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.2);
}
.sec-about__menu li a:hover::after, .sec-about__menu li a.current::after {
  border-color: transparent transparent #fff transparent;
}

.sec-newsblog {
  margin-bottom: 100px;
  padding-top: 4.5rem;
}
@media screen and (max-width: 768px) {
  .sec-newsblog {
    margin-bottom: 4.5rem;
  }
}
.sec-newsblog .heading {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .sec-newsblog .heading {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .sec-newsblog .heading {
    margin-bottom: 2.5rem;
  }
}
.sec-newsblog .heading h2 {
  display: block;
  width: 426px;
  height: 0;
  padding-top: 50px;
  overflow: hidden;
  background-size: 426px 50px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/home/ttl_news.svg);
}
@media screen and (max-width: 768px) {
  .sec-newsblog .heading h2 {
    display: block;
    width: 298px;
    height: 0;
    padding-top: 35px;
    overflow: hidden;
    background-size: 298px 35px;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
  }
}
.sec-newsblog__list {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1000px) {
  .sec-newsblog__list {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
.sec-newsblog__list li {
  width: 49%;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .sec-newsblog__list li {
    width: 100%;
    padding-bottom: 1em;
    margin-bottom: 1em;
  }
  .sec-newsblog__list li:nth-child(4), .sec-newsblog__list li:nth-child(5), .sec-newsblog__list li:nth-child(6) {
    display: none;
  }
}
.sec-newsblog__list li::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #727171;
  transition: 0.2s ease;
}
.sec-newsblog__list li:hover::after {
  background: #ee780c;
  height: 4px;
}
.sec-newsblog__list a {
  display: flex;
  justify-content: space-between;
}
.sec-newsblog__list a figure {
  width: 200px;
  height: 120px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .sec-newsblog__list a figure {
    width: 140px;
    height: 100px;
  }
}
.sec-newsblog__list a .meta {
  width: calc(100% - 220px);
}
@media screen and (max-width: 768px) {
  .sec-newsblog__list a .meta {
    width: calc(100% - 160px);
  }
}
.sec-newsblog__list a .meta .date {
  line-height: 1em;
  font-family: "YakuHanJPs", "Kosugi", sans-serif;
  font-size: 1.8rem;
  display: block;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .sec-newsblog__list a .meta .date {
    margin-bottom: 4px;
  }
}
.sec-newsblog__list a .meta .cat {
  font-size: 1.2rem;
  border: 1px solid #000;
  display: inline-block;
  border-radius: 1.5em;
  padding: 0.25em 1.25em;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .sec-newsblog__list a .meta .cat {
    margin-bottom: 5px;
    padding: 0.15em 1em;
    font-size: 1rem;
  }
}
.sec-newsblog__list a .meta .title {
  display: block;
}

.sec-company {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  margin-bottom: 100px;
}
@media screen and (max-width: 1000px) {
  .sec-company {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .sec-company {
    margin-bottom: 4.5rem;
  }
}
.sec-company__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec-company__ttl {
    width: 100%;
    height: 60px;
  }
}
.sec-company__ttl h3 {
  display: block;
  width: 292px;
  height: 0;
  padding-top: 45px;
  overflow: hidden;
  background-size: 292px 45px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/home/ttl_company.svg);
}
@media screen and (max-width: 768px) {
  .sec-company__ttl h3 {
    display: block;
    width: 204px;
    height: 0;
    padding-top: 31px;
    overflow: hidden;
    background-size: 204px 31px;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
  }
}
.sec-company__ttl::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 12px 12px;
  border-color: transparent transparent #ee780c transparent;
}
.sec-company__bnr a {
  display: flex;
  justify-content: space-between;
  background: #f4f4f4;
}
@media screen and (max-width: 768px) {
  .sec-company__bnr a {
    flex-direction: column;
  }
}
.sec-company__bnr a figure,
.sec-company__bnr a span {
  height: 120px;
}
@media screen and (max-width: 768px) {
  .sec-company__bnr a figure,
  .sec-company__bnr a span {
    width: 100%;
    height: auto;
  }
}
.sec-company__bnr a figure {
  background: url(../img/home/img_company.jpg) no-repeat center center;
  background-size: cover;
  width: 45%;
}
@media screen and (max-width: 768px) {
  .sec-company__bnr a figure {
    height: 100px;
    width: 100%;
  }
}
.sec-company__bnr a span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec-instagram {
  background: #f4f4f4;
  padding-top: 60px;
  padding-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .sec-instagram {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}
.sec-instagram + .sec-instagram {
  padding-top: 0;
}
.sec-instagram .heading {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec-instagram .heading {
    margin-left: 5vw;
    margin-right: 5vw;
  }
}
.sec-instagram .heading h2 {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 35px;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .sec-instagram .heading h2 {
    margin-bottom: 2rem;
    font-size: 5vw;
  }
}
.sec-instagram .heading h2::before {
  content: "";
  display: block;
  width: 32px;
  height: 0;
  padding-top: 32px;
  overflow: hidden;
  background-size: 32px 32px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background: url(../img/home/icon_instagram.svg) no-repeat center;
  margin-right: 0.5rem;
}
@media screen and (max-width: 768px) {
  .sec-instagram .heading h2::before {
    display: block;
    width: 24px;
    height: 0;
    padding-top: 24px;
    overflow: hidden;
    background-size: 24px 24px;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
  }
}
.sec-instagram .heading h2 a {
  display: inline-block;
}
.sec-instagram__row {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .sec-instagram__row {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
.sec-instagram__row figure {
  width: 100%;
  height: 0;
  overflow: hidden;
  background: #aaa;
}

.sec-instagram__row figure {
  padding-top: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.instagram-feed a {
  width: 24.5%;
}

.instagram-feed a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1000px) {
  .instagram-feed a {
    width: calc(50% - 5px);
  }
}
.instagram-feed {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .instagram-feed {
    flex-wrap: wrap;
  }
}
.instagram-feed figure {
  background-size: cover;
  position: relative;
}
.instagram-feed figure figcaption {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  transition: 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease-in-out;
}
@media screen and (max-width: 768px) {
  .instagram-feed figure figcaption {
    font-size: 1.2rem;
  }
}
.instagram-feed figure figcaption::before {
  content: "";
  display: block;
  width: 25px;
  height: 22px;
  background: url(../img/common/icon-more-link.svg) no-repeat center center;
}
@media screen and (max-width: 768px) {
  .instagram-feed figure figcaption::before {
    display: block;
    width: 17px;
    height: 0;
    padding-top: 15px;
    overflow: hidden;
    background-size: 17px 15px;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
  }
}
.instagram-feed figure figcaption span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5em;
}
.instagram-feed a {
  display: block;
}
.instagram-feed a:hover {
  opacity: 1;
}
.instagram-feed a:hover figcaption {
  opacity: 1;
  visibility: visible;
}
.instagram-feed__each {
  width: 23.5%;
}
@media screen and (max-width: 768px) {
  .instagram-feed__each {
    width: 50%;
  }
}
.instagram-feed__each figure {
  height: 0;
  padding-top: 100%;
}

#front-message {
  padding-top: 60px;
  margin-top: -60px;
}

.emergency {
  border-top: 1px solid #eebbb9;
  background-color: #fcebeb;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 999;
}

.emergency .inner {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 3px 0;
}

.emergency a {
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emergency a::after {
  content: "";
  display: block;
  width: 14px;
  height: 13px;
  background: url(../img/common/icon-more-link_bk.svg) no-repeat center center;
  margin-right: 0.5em;
}

.jumbotron-page {
  width: 100%;
  height: 200px;
  display: flex;
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .jumbotron-page {
    flex-direction: column;
    margin-bottom: 8vw;
  }
}
.jumbotron-page__bg {
  background: url(../img/page/company/ttl_company_img.jpg) no-repeat center center;
  background-size: cover;
  display: block;
  width: 44%;
}
@media screen and (max-width: 768px) {
  .jumbotron-page__bg {
    width: 100%;
    height: 24vw;
  }
}
.jumbotron-page__title {
  background: #ee780c;
  width: 56%;
  margin-left: auto;
  display: flex;
  align-items: center;
  padding-left: 7rem;
}
@media screen and (max-width: 768px) {
  .jumbotron-page__title {
    width: 100%;
    padding: 5vw;
  }
}
.jumbotron-page__title h1 {
  display: block;
  width: 197px;
  height: 0;
  padding-top: 79px;
  overflow: hidden;
  background-size: 197px 79px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/page/company/ttl_company.svg);
}
@media screen and (max-width: 768px) {
  .jumbotron-page__title h1 {
    display: block;
    width: 137px;
    height: 0;
    padding-top: 55px;
    overflow: hidden;
    background-size: 137px 55px;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
  }
}

.sec-company-detail {
  padding-bottom: 9rem;
}
@media screen and (max-width: 768px) {
  .sec-company-detail {
    padding-left: 5vw;
    padding-right: 5vw;
    padding-bottom: 5rem;
  }
}
.sec-company-detail .heading {
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .sec-company-detail .heading {
    margin-bottom: 2rem;
  }
}
.sec-company-detail .heading h2 {
  font-size: 3.4rem;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .sec-company-detail .heading h2 {
    text-align: left;
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-company-detail .content .table {
    padding-left: 0;
    padding-right: 0;
  }
}

.sec-ceo-message {
  background: #efefef;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .sec-ceo-message {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }
}
.sec-ceo-message .heading {
  text-align: center;
  margin-bottom: 6rem;
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .sec-ceo-message .heading {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .sec-ceo-message .heading {
    margin-bottom: 3rem;
  }
}
.sec-ceo-message .heading h2 {
  font-size: 3.4rem;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .sec-ceo-message .heading h2 {
    text-align: left;
    font-size: 3rem;
  }
}
.sec-ceo-message .content {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .sec-ceo-message .content {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
.sec-ceo-message__read {
  text-align: center;
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .sec-ceo-message__read {
    text-align: left;
    margin-bottom: 5rem;
  }
}
.sec-ceo-message__read p {
  font-size: 1.7rem;
  line-height: 2.2;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 768px) {
  .sec-ceo-message__read p {
    font-size: 1.6rem;
  }
}
.sec-ceo-message__read p + p {
  margin-top: 2.75em;
}
@media screen and (max-width: 768px) {
  .sec-ceo-message__read p + p {
    margin-top: 1em;
  }
  .sec-ceo-message__read p + p br {
    display: none;
  }
}
.sec-ceo-message__profile {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding-bottom: 3rem;
}
@media screen and (max-width: 1000px) {
  .sec-ceo-message__profile {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 1000px) {
  .sec-ceo-message__profile {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .sec-ceo-message__profile {
    padding-left: 0;
    padding-right: 0;
    flex-direction: column;
  }
}
.sec-ceo-message__profile figure {
  width: 26%;
  display: flex;
  align-items: flex-start;
  background-image: url(../img/page/company/ceo_img.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .sec-ceo-message__profile figure {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    margin-bottom: 3rem;
    background-image: url(../img/page/company/ceo_img_sp.jpg);
    height: 0;
    padding-top: 50%;
    background-size: cover;
  }
}
.sec-ceo-message__profile figure img {
  width: 100%;
}
.sec-ceo-message__profile .text {
  width: 68%;
  border-top: 2px solid #727171;
  border-bottom: 2px solid #727171;
  box-sizing: border-box;
  padding-top: 2rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .sec-ceo-message__profile .text {
    width: 100%;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .sec-ceo-message__profile .text {
    padding-top: 1em;
    padding-bottom: 1.5em;
  }
}
.sec-ceo-message__profile .text h3 {
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.075em;
  margin-bottom: 0.75em;
}
@media screen and (max-width: 768px) {
  .sec-ceo-message__profile .text h3 {
    font-size: 2.2rem;
  }
}
.sec-ceo-message__profile .text h3 small {
  font-size: 1.9rem;
}
@media screen and (max-width: 768px) {
  .sec-ceo-message__profile .text h3 small {
    font-size: 1.6rem;
  }
}
.sec-ceo-message__profile .text p {
  font-size: 1.4rem;
  line-height: 1.75;
  letter-spacing: 0.11em;
}
.sec-ceo-message__profile .text p + p {
  margin-top: 1.5em;
}

.sec-company-name {
  background: url(../img/common/bg_or_dot.png);
  padding-top: 9rem;
  padding-bottom: 8rem;
  margin-bottom: 8rem;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .sec-company-name {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .sec-company-name {
    padding-top: 3rem;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 5rem;
  }
}
.sec-company-name__text {
  width: 56%;
  padding-top: 1rem;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 768px) {
  .sec-company-name__text {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.sec-company-name__text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .sec-company-name__text h3 {
    letter-spacing: -0.045em;
  }
}
.sec-company-name__text p {
  line-height: 2.4;
  letter-spacing: 0;
}
.sec-company-name .heading {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1000px) {
  .sec-company-name .heading {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
.sec-company-name .heading h2 {
  font-size: 3.4rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .sec-company-name .heading h2 {
    font-size: 3rem;
  }
}
.sec-company-name .content {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .sec-company-name .content {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .sec-company-name .content {
    flex-direction: column;
  }
}
.sec-company-name .content figure {
  width: 40%;
  background-image: url(../img/page/company/company_name.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .sec-company-name .content figure {
    width: 100%;
    height: 0;
    padding-top: 50%;
  }
}
.sec-company-name .content figure img {
  width: 100%;
}

.jumbotron-page__bg--about {
  background-image: url(../img/page/about/ttl_about_img.jpg);
}

.jumbotron-page__title--about h1 {
  display: block;
  width: 211px;
  height: 0;
  padding-top: 79px;
  overflow: hidden;
  background-size: 211px 79px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/page/about/ttl_about.svg);
}
@media screen and (max-width: 768px) {
  .jumbotron-page__title--about h1 {
    display: block;
    width: 147px;
    height: 0;
    padding-top: 55px;
    overflow: hidden;
    background-size: 147px 55px;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
  }
}

.sec-about-index {
  margin-top: 2rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .sec-about-index {
    margin-top: 0;
    margin-bottom: 5rem;
    margin-left: 5vw;
    margin-right: 5vw;
  }
  .sec-about-index .sec-about__menu {
    border-left: 0.5px solid #efefef;
    border-right: 0.5px solid #efefef;
  }
}

.sec-service + .sec-service {
  margin-top: 10rem;
}
.sec-service .heading {
  margin-bottom: 4rem;
}
.sec-service .heading h2 {
  font-size: 2.8rem;
  font-weight: bold;
  background: #ee780c;
  color: #fff;
  text-align: center;
  display: block;
  letter-spacing: 0.05em;
  padding-top: 1.7rem;
  padding-bottom: 1.7rem;
  margin-bottom: 9rem;
}
@media screen and (max-width: 768px) {
  .sec-service .heading h2 {
    font-size: 2.2rem;
    margin-bottom: 4rem;
    text-align: left;
  }
}
.sec-service .heading h2 span {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .sec-service .heading h2 span {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
.sec-service .heading h3 {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.035em;
}
@media screen and (max-width: 1000px) {
  .sec-service .heading h3 {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .sec-service .heading h3 {
    font-size: 2rem;
    text-align: left;
  }
  .sec-service .heading h3 br {
    display: none;
  }
}
.sec-service__read {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 8rem;
}
@media screen and (max-width: 1000px) {
  .sec-service__read {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .sec-service__read {
    flex-direction: column;
    margin-bottom: 4rem;
  }
}
.sec-service__read .text {
  width: 80%;
  line-height: 2em;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec-service__read .text {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.sec-service__read figure {
  width: 38%;
}
@media screen and (max-width: 768px) {
  .sec-service__read figure {
    width: 100%;
  }
}
.sec-service__read figure img {
  width: 100%;
}
.sec-service__strength {
  background: url(../img/common/bg_or_dot.png);
  padding: 4rem 2rem 2rem;
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  margin-bottom: 10rem;
}
@media screen and (max-width: 1000px) {
  .sec-service__strength {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .sec-service__strength {
    margin-left: 5vw;
    margin-right: 5vw;
    margin-bottom: 4rem;
    width: calc(100% - 10vw);
    padding: 4vw 2vw 1vw;
  }
}
.sec-service__strength .text {
  padding-left: 2rem;
  padding-right: 2rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .sec-service__strength .text {
    padding: 3.5vw;
    margin-bottom: 4vw;
  }
}
.sec-service__strength .text h3 {
  color: #fff;
  font-size: 3.1rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .sec-service__strength .text h3 {
    font-size: 2.4rem;
  }
}
.sec-service__strength .text p {
  color: #fff;
  line-height: 2;
}
.sec-service__strength__each {
  background: #fff;
  padding: 3rem 4rem;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .sec-service__strength__each {
    padding: 4vw;
  }
}
.sec-service__strength__each h4 {
  color: #ee780c;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 0.45em;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sec-service__strength__each h4 {
    align-items: flex-start;
    font-size: 1.6rem;
  }
  .sec-service__strength__each h4 span {
    width: calc(100% - 30px);
  }
}
.sec-service__strength__each h4::before {
  content: "";
  width: 20px;
  height: 20px;
  background: #ee780c;
  display: block;
  margin-right: 0.85rem;
}
@media screen and (max-width: 768px) {
  .sec-service__strength__each h4::before {
    margin-top: 0.45em;
    width: 1.6rem;
    height: 1.6rem;
  }
}
.sec-service__strength__each p {
  line-height: 2;
}
.sec-service__faq {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  margin-bottom: 6rem;
}
@media screen and (max-width: 1000px) {
  .sec-service__faq {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .sec-service__faq {
    margin-bottom: 3rem;
  }
}
.sec-service__faq h3 {
  text-align: center;
  font-size: 3.1rem;
  margin-bottom: 3.5rem;
  font-weight: bold;
  font-size: 3.1rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .sec-service__faq h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}
.sec-service__faq__each {
  border-bottom: 2px solid #727171;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.sec-service__faq__each:last-child {
  border-bottom: none;
}
.sec-service__faq__each h4 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #ee780c;
  letter-spacing: 0.065em;
  margin-bottom: 0.5rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .sec-service__faq__each h4 {
    font-size: 1.6rem;
  }
}
.sec-service__faq__each p {
  line-height: 2em;
}

.sec-works--about .heading {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .sec-works--about .heading {
    margin-bottom: 1rem;
  }
}
.sec-works--about .heading h2 {
  background: none;
  height: auto;
  width: auto;
  font-size: 3.1rem;
  padding: 0;
  margin: 0;
  color: #000;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .sec-works--about .heading h2 {
    font-size: 2.4rem;
  }
}

.scroll-anchor {
  padding-top: 60px;
  margin-top: -60px;
}

.jumbotron-page__bg--contact {
  background-image: url(../img/page/contact/ttl_contact_img.jpg);
}

.jumbotron-page__title--contact h1 {
  display: block;
  width: 199px;
  height: 0;
  padding-top: 79px;
  overflow: hidden;
  background-size: 199px 79px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/page/contact/ttl_contact.svg);
}
@media screen and (max-width: 768px) {
  .jumbotron-page__title--contact h1 {
    display: block;
    width: 139px;
    height: 0;
    padding-top: 55px;
    overflow: hidden;
    background-size: 139px 55px;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
  }
}

.sec-contact-message {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 1000px) {
  .sec-contact-message {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .sec-contact-message {
    flex-direction: column;
    margin-top: 0;
    padding-bottom: 4rem;
  }
}
.sec-contact-message__tel {
  width: 43%;
  text-align: left;
}
@media screen and (max-width: 1000px) {
  .sec-contact-message__tel {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.sec-contact-message__tel h2,
.sec-contact-message__tel ul {
  color: #ee780c;
  font-weight: bold;
}
.sec-contact-message__tel h2 {
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .sec-contact-message__tel h2 {
    margin-bottom: 2rem;
  }
}
.sec-contact-message__tel ul {
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .sec-contact-message__tel ul {
    font-size: 9vw;
  }
}
.sec-contact-message__tel ul li {
  margin-bottom: 0.5rem;
  line-height: 1em;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 768px) {
  .sec-contact-message__tel ul li {
    margin-bottom: 1rem;
  }
}
.sec-contact-message__tel ul li a {
  color: #ee780c;
}
.sec-contact-message__tel small {
  font-size: 1.4rem;
}
.sec-contact-message__notice {
  width: 57%;
}
@media screen and (max-width: 768px) {
  .sec-contact-message__notice {
    width: 100%;
  }
}
.sec-contact-message__notice h2 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #ee780c;
  margin-bottom: 1.75rem;
}
@media screen and (max-width: 768px) {
  .sec-contact-message__notice h2 {
    margin-bottom: 1rem;
  }
}
.sec-contact-message__notice p {
  font-size: 1.4rem;
  line-height: 2.8em;
}
.sec-contact-message--thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 15rem;
  margin-top: -15rem;
}
@media screen and (max-width: 768px) {
  .sec-contact-message--thanks {
    padding-top: 20vw;
    margin-top: -20vw;
  }
}
.sec-contact-message--thanks .sec-contact-message__notice {
  margin-bottom: 3rem;
}
.sec-contact-message--thanks .sec-contact-message__tel {
  text-align: center;
}

.sec-contact-form {
  background: url(../img/common/bg_gray_dot.gif);
  padding-top: 10rem;
  padding-bottom: 9rem;
}
@media screen and (max-width: 768px) {
  .sec-contact-form {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.sec-contact-form input[type=text],
.sec-contact-form input[type=tel],
.sec-contact-form input[type=email],
.sec-contact-form textarea {
  font-size: 1.8rem;
  border: 1px solid #B1B2B2;
  width: 100%;
  padding: 0.85em;
  border-radius: 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .sec-contact-form input[type=text],
  .sec-contact-form input[type=tel],
  .sec-contact-form input[type=email],
  .sec-contact-form textarea {
    padding: 0.5em;
    font-size: 1.6rem;
  }
}
.sec-contact-form input[type=text]::placeholder,
.sec-contact-form input[type=tel]::placeholder,
.sec-contact-form input[type=email]::placeholder,
.sec-contact-form textarea::placeholder {
  color: #B1B2B2;
}
.sec-contact-form select {
  font-size: 1.8rem;
  width: 100%;
  background: url(../img/common/select.png) no-repeat right 10px center, linear-gradient(#f6f6f6 50%, #bdbdbd 100%);
  padding: 1em 4px 1em 1em;
  appearance: none;
}
.sec-contact-form select::-ms-expand {
  display: none;
}
@media screen and (max-width: 768px) {
  .sec-contact-form select {
    background-size: contain;
    padding: 0.5em;
    font-size: 1.6rem;
  }
}
.sec-contact-form .wpcf7-response-output {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  background: #fff;
  text-align: center;
  padding: 1em;
}
@media screen and (max-width: 1000px) {
  .sec-contact-form .wpcf7-response-output {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.form-item-each {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .form-item-each {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .form-item-each {
    flex-direction: column;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
}
.form-item-each::before, .form-item-each::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 100%;
  background: #fff;
}
.form-item-each::before {
  bottom: 1px;
  background: #B1B2B2;
}
.form-item-each__title {
  width: 240px;
  padding-top: 0.75em;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .form-item-each__title {
    width: 100%;
    padding-top: 0;
    padding-left: 0.25em;
    padding-bottom: 0.5em;
  }
}
.form-item-each__content {
  width: calc(100% - 300px);
  padding-right: 1.5rem;
}
@media screen and (max-width: 768px) {
  .form-item-each__content {
    width: 100%;
    padding-right: 0;
  }
}

.label-required {
  background: #d40000;
  color: #fff;
  font-size: 1.1rem;
  margin-right: 0.75em;
  padding: 0.1em 0.25em;
  border-radius: 3px;
}

.form-item-submit {
  text-align: center;
  margin-top: 7rem;
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .form-item-submit {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .form-item-submit {
    margin-top: 3rem;
  }
}
.form-item-submit input[type=submit] {
  font-size: 2.1rem;
  font-weight: bold;
  color: #fff;
  background: #ee780c url(../img/common/icon_mail_wh.svg) no-repeat 100px center;
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
  max-width: 400px;
  width: 100%;
  padding: 0.7em;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .form-item-submit input[type=submit] {
    background-position-x: 25%;
  }
}
.form-item-submit .ajax-loader {
  margin-top: 2rem !important;
}

.google-form-wrap {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 640px;
}
.google-form-wrap iframe {
  width: 100%;
}

#accordion {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 11px;
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 800px;
}
@media screen and (max-width: 1000px) {
  #accordion {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
#accordion dt {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  padding: 0.5em 1em;
  align-items: center;
  cursor: pointer;
}
#accordion dt .title {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 10px - 42px);
  margin-right: 10px;
}
#accordion dt::after {
  content: "";
  width: 42px;
  height: 42px;
  display: block;
  background-image: url(../img/common/acc.png);
  background-repeat: no-repeat;
  background-color: #fff;
  border-radius: 50%;
  background-position: center center;
  transform: rotate(45deg);
  transition: 0.4s ease;
}
#accordion dt .out::after {
  content: "詳しく見る";
  position: relative;
  display: block;
  top: 1px;
}
#accordion dt.ac::after {
  transform: rotate(0);
}
#accordion dt.ac .out::after {
  content: "閉じる";
}
#accordion dd {
  font-size: 1.4rem;
  line-height: 2.2;
  background-color: #fff;
  border-top: 2px solid #DEDFDF;
  padding: 30px;
}
#accordion dd h4 {
  font-size: 2.2rem;
  border-bottom: 2px solid #000;
  margin-bottom: 1em;
  font-weight: bold;
  line-height: 1.45;
  padding-bottom: 0.5em;
}
#accordion dd h5 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.45;
}
#accordion dd p + h4, #accordion dd p + h5 {
  padding-top: 2em;
}
#accordion dd ul {
  margin-top: 0.5em;
  margin-bottom: 1em;
}
#accordion dd ul li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#accordion dd ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #000;
  display: block;
  border-radius: 50%;
  margin-top: 0.85em;
}
#accordion dd ul li span {
  width: calc(100% - 1rem);
}
#accordion dd ul li + li {
  margin-top: 0.5em;
}
#accordion dd ul + h5 {
  padding-top: 1em;
}

.jumbotron-page__bg--works {
  background-image: url(../img/page/works/ttl_works_img.jpg);
}

.jumbotron-page__title--works h1 {
  display: block;
  width: 150px;
  height: 0;
  padding-top: 79px;
  overflow: hidden;
  background-size: 150px 79px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/page/works/ttl_works.svg);
}
@media screen and (max-width: 768px) {
  .jumbotron-page__title--works h1 {
    display: block;
    width: 105px;
    height: 0;
    padding-top: 55px;
    overflow: hidden;
    background-size: 105px 55px;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
  }
}

.sec-works-menu {
  margin-bottom: 10rem;
  padding-left: 5vw;
  padding-right: 5vw;
}
@media screen and (max-width: 768px) {
  .sec-works-menu {
    margin-bottom: 5rem;
  }
}
.sec-works-menu .sec-about__menu li:first-child {
  width: 100%;
}

.sec-works-archive {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  max-width: 1030px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  .sec-works-archive {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .sec-works-archive {
    flex-direction: column;
  }
}
.sec-works-archive figure {
  width: 100%;
  height: 0;
  padding-top: 66.6%;
  display: block;
  position: relative;
  background-size: cover;
}
.sec-works-archive figure figcaption {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.75);
  font-size: 1.8rem;
  font-weight: bold;
  transition: 0.4s ease;
}
.sec-works-archive figure figcaption span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec-works-archive figure figcaption span::before {
  content: "";
  display: block;
  width: 25px;
  height: 22px;
  background: url(../img/common/icon-more-link.svg) no-repeat center center;
  margin-right: 0.5em;
}
.sec-works-archive figure img {
  width: 100%;
  display: block;
}
.sec-works-archive .title {
  position: relative;
  padding: 19px;
}
.sec-works-archive .title::after {
  position: absolute;
  right: 5px;
  bottom: 5px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 12px 12px;
  border-color: transparent transparent #ee780c transparent;
}
.sec-works-archive .title h3 {
  font-size: 1.7rem;
  font-weight: bold;
  padding-bottom: 0.5em;
}
.sec-works-archive .title p {
  letter-spacing: 0.085em;
  margin-bottom: 0.5em;
}
.sec-works-archive .cat ul li {
  font-size: 1.2rem;
  border: 1px solid #000;
  display: inline-block;
  border-radius: 1.5em;
  padding: 0.25em 1.25em;
}
.sec-works-archive article {
  padding-top: 10px;
  width: 33.3%;
  padding-right: 10px;
  padding-left: 10px;
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .sec-works-archive article {
    width: 100%;
    margin-bottom: 3vw;
  }
}
.sec-works-archive article a {
  width: 100%;
  display: block;
}
.sec-works-archive article a:hover {
  opacity: 1;
  box-shadow: 0 3px 5px 3px rgba(0, 0, 0, 0.1);
}
.sec-works-archive article a:hover figcaption {
  opacity: 1;
  visibility: visible;
}

.jumbotron-page__bg--newsblog {
  background-image: url(../img/page/newsblog/ttl_newsblog_img.jpg);
}

.jumbotron-page__title--newsblog h1 {
  display: block;
  width: 268px;
  height: 0;
  padding-top: 79px;
  overflow: hidden;
  background-size: 268px 79px;
  background-position: 0 0;
  background-repeat: no-repeat;
  font-size: 0;
  background-image: url(../img/page/newsblog/ttl_newsblog.svg);
}
@media screen and (max-width: 768px) {
  .jumbotron-page__title--newsblog h1 {
    display: block;
    width: 187px;
    height: 0;
    padding-top: 55px;
    overflow: hidden;
    background-size: 187px 55px;
    background-position: 0 0;
    background-repeat: no-repeat;
    font-size: 0;
  }
}

.sec-category-nav {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  margin-bottom: 4rem;
}
@media screen and (max-width: 1000px) {
  .sec-category-nav {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
.sec-category-nav li {
  display: inline-block;
  margin-right: 0.25em;
  margin-bottom: 0.5em;
}
.sec-category-nav li a {
  font-size: 1.4rem;
  border: 1px solid #000;
  border-radius: 1.5em;
  padding: 0.25em 1.25em;
  display: block;
}
.sec-category-nav li a.current {
  background: #000;
  color: #fff;
}

.tag-archive-title {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1000px) {
  .tag-archive-title {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.no-entry {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding-top: 40px;
}
.no-entry p {
  font-size: 2.4rem;
  color: #ee780c;
  border: 2px solid #ee780c;
  padding: 0.5em 1em;
}
@media screen and (max-width: 768px) {
  .no-entry p {
    font-size: 2rem;
  }
}

.sec-news-single,
.sec-works-single {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 728px;
}
@media screen and (max-width: 768px) {
  .sec-news-single,
  .sec-works-single {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.heading--single {
  border: 1px solid #dcdddd;
  padding: 1.8rem 3rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .heading--single {
    padding: 2vw 5vw;
  }
}
.heading--single .date {
  font-size: 1.8rem;
  color: #727171;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .heading--single .date {
    margin-bottom: 0.5rem;
  }
}
.heading--single .category {
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .heading--single .category {
    margin-bottom: 0.5rem;
  }
}
.heading--single .category ul li {
  font-size: 1.2rem;
  border: 1px solid #000;
  display: inline-block;
  border-radius: 1.5em;
  padding: 0.25em 1.25em;
}
.heading--single .title {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .heading--single .title {
    margin-bottom: 2rem;
  }
}
.heading--single .title h1 {
  font-size: 3rem;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .heading--single .title h1 {
    font-size: 2.2rem;
  }
}

.btn-sns {
  display: flex;
}
@media screen and (max-width: 768px) {
  .btn-sns {
    flex-wrap: wrap;
  }
}
.btn-sns .sns {
  margin-right: 1rem;
}
.btn-sns .sns-facebook {
  margin-top: -7px;
}

.content--single .main-image {
  margin-bottom: 4rem;
}
.content--single .main-image img {
  width: 100%;
}
.content--single .main-image figcaption {
  font-size: 1.4rem;
}

.blog-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid #ee780c;
  border-bottom: 2px solid #ee780c;
  padding: 2rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .blog-author {
    flex-direction: column;
    margin-bottom: 4rem;
  }
}
.blog-author figure {
  width: 143px;
}
.blog-author figure img {
  border-radius: 50%;
  width: 100%;
}
.blog-author__read {
  width: calc(100% - 180px);
}
.blog-author__read p {
  font-size: 1.4rem;
  font-weight: normal;
}
.blog-author__read__title {
  color: #ee780c;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  font-weight: bold !important;
}
.blog-author__read__title img {
  margin-right: 0.5em;
}
@media screen and (max-width: 768px) {
  .blog-author__read__title {
    justify-content: center;
    margin-bottom: 0;
  }
}
.blog-author__read__name {
  font-weight: bold;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}
.blog-author__read__name small {
  font-size: 1.4rem;
  margin-right: 1em;
}
@media screen and (max-width: 768px) {
  .blog-author__read__name {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .blog-author__read {
    width: 100%;
  }
}

.other-entry {
  margin-bottom: 12rem;
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .other-entry {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .other-entry {
    margin-bottom: 2rem;
  }
}
.other-entry h2 {
  background: #ee780c;
  color: #fff;
  padding: 0.5em 1em;
  margin: 0 0 3rem;
  font-size: 2.4rem;
  text-align: left;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .other-entry h2 {
    margin-bottom: 0;
  }
}
.other-entry .sec-blog-feed__inner {
  margin-left: -0.5em;
  margin-right: -0.5em;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .other-entry .sec-blog-feed__inner {
    margin-bottom: 2rem;
  }
}
.other-entry .sec-blog-feed__each {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .other-entry .sec-blog-feed__each {
    width: 100%;
  }
}
.other-entry .sec-newsblog {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .other-entry .sec-newsblog {
    padding-top: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .other-entry .sec-newsblog__list {
    padding-left: 0;
    padding-right: 0;
  }
}

.btn-go-index {
  margin-bottom: 14rem;
}
.btn-go-index a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  background: #ee780c;
  color: #fff;
  width: 300px;
  font-size: 2rem;
  padding: 0.5em 1em;
  border-radius: 10px;
  position: relative;
}
.btn-go-index a::before {
  position: absolute;
  left: 10px;
  bottom: 8px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 0 10px;
  border-color: transparent transparent transparent #fff;
}
ul.pager-single {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 728px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10rem;
}
@media screen and (max-width: 1000px) {
  ul.pager-single {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 768px) {
  ul.pager-single {
    flex-direction: column;
  }
}
ul.pager-single li {
  width: 48%;
  display: flex;
}
@media screen and (max-width: 768px) {
  ul.pager-single li {
    width: 100%;
  }
}
ul.pager-single li a {
  font-weight: bold;
  font-size: 1.8rem;
  display: flex;
  align-items: flex-start;
}
ul.pager-single li span {
  width: calc(100% - 3rem);
}
ul.pager-single li .arrow {
  display: block;
  width: 30px;
  height: 30px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
ul.pager-single li .arrow::before {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateX(-2px) rotate(45deg);
}
ul.pager-single li.next {
  justify-content: flex-start;
  margin-right: auto;
}
ul.pager-single li.next .arrow {
  margin-right: 0.5em;
}
ul.pager-single li.next .arrow::before {
  transform: translateX(2px) rotate(-135deg);
}
ul.pager-single li.prev {
  justify-content: flex-end;
  margin-left: auto;
}
ul.pager-single li.prev .arrow {
  margin-left: 0.5em;
}

.tag-list {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5rem;
}
.tag-list__title {
  font-size: 1.2rem;
  margin-right: 0.5em;
  margin-top: 0.5em;
}
.tag-list ul li {
  display: inline-block;
}
.tag-list ul li a {
  color: #000;
  border: 1px solid #c9caca;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 0.2em 0.75em;
  transition: 0.4s ease;
  border-radius: 4px;
  display: block;
}

.sec-works-single .client-name {
  font-size: 2.1rem;
  border-bottom: 3px solid #ee780c;
  font-weight: bold;
  display: inline-block;
  line-height: 2.3;
  margin-bottom: 2rem;
}
.sec-works-single .heading--single {
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .sec-works-single .heading--single {
    margin-bottom: 3rem;
  }
}
.sec-works-single .content--single {
  margin-bottom: 11rem;
}
@media screen and (max-width: 768px) {
  .sec-works-single .content--single {
    margin-bottom: 4rem;
  }
}
.sec-works-single .content--single .main-image {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .sec-works-single .content--single .main-image {
    margin-bottom: 0;
  }
}
.sec-works-single .content--single .sub-image {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .sec-works-single .content--single .sub-image {
    margin-bottom: 2rem;
  }
}
.sec-works-single .content--single figure img {
  width: 100%;
}

.sec-works-detail__url {
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-bottom: 1.5rem;
}
.sec-works-detail__url a {
  color: #ee780c;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
}
.sec-works-detail .table {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 2.2rem;
}
.sec-works-detail .table th {
  width: 6em;
  font-size: 1.4rem;
}
.sec-works-detail .table th,
.sec-works-detail .table td {
  padding-left: 0.25em;
  padding-right: 0.25em;
}
@media screen and (max-width: 768px) {
  .sec-works-detail .table th,
  .sec-works-detail .table td {
    width: 100%;
  }
}

.sec-works-description {
  line-height: 2.4;
  letter-spacing: 0.125em;
}

.sec-works-archive-related {
  margin-bottom: 4rem;
}
.sec-works-archive-related .heading {
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  margin-bottom: 5rem;
}
@media screen and (max-width: 1000px) {
  .sec-works-archive-related .heading {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .sec-works-archive-related .heading {
    margin-bottom: 2rem;
  }
}
.sec-works-archive-related .heading h3 {
  background: #ee780c;
  color: #fff;
  font-size: 2.4rem;
  padding: 0.5em 1em;
  letter-spacing: 0.04em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .sec-works-archive-related .heading h3 {
    font-size: 1.8rem;
    padding: 0.5em;
  }
}
.sec-works-archive-related .btn-more {
  text-align: center;
  margin-top: -4rem;
}
@media screen and (max-width: 768px) {
  .sec-works-archive-related .btn-more {
    margin-top: 2rem;
  }
}
.sec-works-archive-related .btn-more a {
  font-size: 1.7rem;
  padding: 1em;
  width: 300px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .sec-works-archive-related .btn-more a {
    font-size: 1.4rem;
    width: auto;
    padding-left: 2em;
    padding-right: 2em;
  }
}

/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

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

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

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

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

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

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

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

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

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

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

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

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

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

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

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

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

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

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

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #ee780c;
}

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

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

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

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

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

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

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

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

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

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

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

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

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

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

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

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

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

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

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

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

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

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

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

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

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

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

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

.flexble-parts {
  font-size: 1.7rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .flexble-parts {
    font-size: 1.6rem;
  }
}
.flexble-parts p + p {
  margin-top: 1.8em;
}
@media screen and (max-width: 768px) {
  .flexble-parts p + p {
    margin-top: 1em;
  }
}

.flexble-parts__read {
  margin-bottom: 9rem;
  font-weight: 400;
}
.flexble-parts__read strong {
  font-weight: 900;
}
.flexble-parts__read a {
  border-bottom: 2px solid #ee780c;
  color: #ee780c;
}
.flexble-parts__read blockquote {
  border-left: 4px solid #B1B2B2;
  padding-left: 1em;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  .flexble-parts__read {
    margin-bottom: 5rem;
  }
}
.flexble-parts__read + .flexble-parts__images-row {
  margin-top: -3rem;
}
.flexble-parts__read + .flexble-parts__pdf {
  margin-top: -3rem;
}
@media screen and (max-width: 768px) {
  .flexble-parts__read + .flexble-parts__pdf {
    margin-top: -1rem;
  }
}
.flexble-parts__read p {
  font-weight: normal;
}

.flexble-parts__title--01 {
  border-bottom: 4px solid #ee780c;
  color: #ee780c;
  text-align: left;
  padding: 0;
  font-size: 2.8rem;
  padding-bottom: 0.5em;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .flexble-parts__title--01 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }
}
.flexble-parts__title--01 span {
  background: none;
}

.flexble-parts__title--02 {
  font-size: 2rem;
  background: #e2e4e4;
  padding: 0.85em 1.5em;
  margin-bottom: 4rem;
  font-weight: bold;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .flexble-parts__title--02 {
    padding: 0.5em 0.75em;
    font-size: 1.7rem;
  }
}

.flexble-parts__title--03 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.flexble-parts__single-image {
  margin-bottom: 3rem;
}
.flexble-parts__single-image img {
  width: 100%;
}
.flexble-parts__single-image figcaption {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .flexble-parts__single-image {
    margin-bottom: 2rem;
  }
}

.flexble-parts__images-row {
  margin-bottom: 6rem;
  display: flex;
  justify-content: space-between;
  margin-left: -1rem;
  margin-right: -1rem;
}
.flexble-parts__images-row img {
  width: 100%;
}
.flexble-parts__images-row figure {
  padding-left: 1rem;
  padding-right: 1rem;
}
.flexble-parts__images-row figcaption {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .flexble-parts__images-row {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 2rem;
    flex-direction: column;
  }
  .flexble-parts__images-row figure {
    padding: 0;
  }
  .flexble-parts__images-row figure + figure {
    margin-top: 2rem;
  }
}

.flexble-parts__single-image-read {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .flexble-parts__single-image-read {
    flex-direction: column;
  }
}
.flexble-parts__single-image-read figure,
.flexble-parts__single-image-read .read {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .flexble-parts__single-image-read figure,
  .flexble-parts__single-image-read .read {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .flexble-parts__single-image-read figure {
    margin-bottom: 2rem;
  }
}
.flexble-parts__single-image-read figure img {
  width: 100%;
}
.flexble-parts__single-image-read figcaption {
  font-size: 1.4rem;
}
.flexble-parts__single-image-read .read p {
  font-weight: normal;
  line-height: 2.15;
}
.flexble-parts__single-image-read.right figure {
  order: 2;
}
@media screen and (max-width: 768px) {
  .flexble-parts__single-image-read.right figure {
    order: 1;
  }
}
.flexble-parts__single-image-read.right .read {
  order: 1;
}
@media screen and (max-width: 768px) {
  .flexble-parts__single-image-read.right .read {
    order: 2;
  }
}

.flexble-parts__border {
  border: none;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ee780c;
  margin-bottom: 11rem;
  margin-top: 11rem;
}
@media screen and (max-width: 768px) {
  .flexble-parts__border {
    margin-bottom: 4rem;
    margin-top: 2rem;
  }
}

.flexble-parts__pdf {
  margin-bottom: 8.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .flexble-parts__pdf {
    margin-bottom: 4rem;
  }
}
.flexble-parts__pdf__read {
  font-size: 1.4rem;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .flexble-parts__pdf__read {
    text-align: left;
  }
}
.flexble-parts__pdf__button a {
  background: #ee780c;
  border-bottom: 4px solid #c66300;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 68%;
  margin-left: auto;
  margin-right: auto;
  padding: 1.2rem 1.5rem;
  position: relative;
  border-radius: 10px;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .flexble-parts__pdf__button a {
    width: 100%;
    position: static;
  }
}
.flexble-parts__pdf__button a::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 2em;
}
@media screen and (max-width: 768px) {
  .flexble-parts__pdf__button a::after {
    position: static;
    width: 8px;
    height: 8px;
    right: 1em;
  }
}
.flexble-parts__pdf__button a span {
  font-size: 2.2rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .flexble-parts__pdf__button a span {
    font-size: 1.6rem;
  }
}

.flexble-parts__talk {
  margin-bottom: 13rem;
}
@media screen and (max-width: 768px) {
  .flexble-parts__talk {
    margin-bottom: 4rem;
  }
}
.flexble-parts__talk__each {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.flexble-parts__talk__each + .flexble-parts__talk__each {
  margin-top: 4rem;
}
.flexble-parts__talk__image {
  width: 100px;
  margin-left: 1.5rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .flexble-parts__talk__image {
    margin-left: 0;
  }
}
.flexble-parts__talk__image img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .flexble-parts__talk__image {
    width: 50px;
  }
  .flexble-parts__talk__image img {
    width: 50px;
    height: 50px;
  }
}
.flexble-parts__talk__read {
  width: calc(100% - 155px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .flexble-parts__talk__read {
    width: calc(100% - 70px);
  }
}
.flexble-parts__talk__read::before {
  position: absolute;
  top: 31px;
  left: -22px;
  content: "";
  width: 23px;
  height: 26px;
  display: block;
  background: url("../img/common/icon_fukidashi.svg.svg") no-repeat 0 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .flexble-parts__talk__read::before {
    width: 15px;
    height: 15px;
    background-size: 100%;
    left: -10px;
    top: 25px;
  }
}
.flexble-parts__talk__read span {
  border: 4px solid #ee780c;
  background: #fff;
  display: block;
  padding: 1em 1.5em;
  border-radius: 10px;
  letter-spacing: 0.025em;
}

.flexble-parts__point {
  border: 1px solid #dcdddd;
  margin-bottom: 7rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .flexble-parts__point {
    position: static;
    padding: 1em;
    margin-bottom: 4rem;
  }
}
.flexble-parts__point span {
  position: absolute;
  background: #fff;
  left: 20px;
  top: -1em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 768px) {
  .flexble-parts__point span {
    position: static;
    padding: 0;
    font-size: 1.4rem;
  }
}
.flexble-parts__point__title {
  padding: 1em;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .flexble-parts__point__title {
    font-size: 2rem;
    padding: 0;
    font-size: 1.7rem;
  }
}

.flexble-parts__relation-post {
  margin-bottom: 7rem;
}
@media screen and (max-width: 768px) {
  .flexble-parts__relation-post {
    margin-bottom: 4rem;
  }
}
.flexble-parts__relation-post a {
  display: flex;
  justify-content: space-between;
  border: 1px solid #dcdddd;
  padding: 1em;
}
.flexble-parts__relation-post figure {
  width: 140px;
  padding: 0;
}
.flexble-parts__relation-post figure img {
  width: 100%;
}
.flexble-parts__relation-post__read {
  width: calc(100% - 170px);
  display: flex;
  flex-direction: column;
}
.flexble-parts__relation-post__read .title {
  font-weight: bold;
  letter-spacing: 0.2em;
}
.flexble-parts__relation-post__read .name {
  color: #ee780c;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .flexble-parts__relation-post figure {
    display: block;
    width: 100px;
  }
  .flexble-parts__relation-post__read {
    width: calc(100% - 120px);
  }
}

.flexble-parts__list {
  background: #e2e4e4;
  padding: 2em 2.7em;
  margin-bottom: 6rem;
  letter-spacing: 0.17em;
}
@media screen and (max-width: 768px) {
  .flexble-parts__list {
    padding: 1em;
    margin-bottom: 4rem;
  }
}
.flexble-parts__list .title {
  font-weight: bold;
  display: block;
  margin-bottom: 2.5rem;
  font-size: 1.7rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .flexble-parts__list .title {
    margin-bottom: 1rem;
  }
}
.flexble-parts__list ul li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.flexble-parts__list ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  background: #ee780c;
  margin-top: 0.75em;
  margin-right: 0.5em;
}
.flexble-parts__list ul li span {
  width: calc(100% - 15px);
}
.flexble-parts__list ul li + li {
  margin-top: 1em;
}

.flexble-parts__link {
  margin-bottom: 4em;
  letter-spacing: 0.1em;
}
.flexble-parts__link .title {
  font-size: 1.4rem;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .flexble-parts__link .title {
    margin-bottom: 0.5em;
    font-size: 1.2rem;
  }
}
.flexble-parts__link .title::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12.1px 7px 0 7px;
  border-color: #000 transparent transparent transparent;
  margin-right: 0.5em;
}
.flexble-parts__link a {
  border: 3px solid #ee780c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 1em 1em 1.5em;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .flexble-parts__link a {
    font-size: 1.6rem;
  }
}
.flexble-parts__link a::before {
  content: "";
  height: 0;
  padding-top: 38px;
  width: 28px;
  display: block;
  overflow: hidden;
  background: url("../img/common/icon_link.svg") no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  .flexble-parts__link a::before {
    width: 20px;
    padding-top: 28px;
  }
}
.flexble-parts__link a span {
  width: calc(100% - 50px);
}
@media screen and (max-width: 768px) {
  .flexble-parts__link a span {
    width: calc(100% - 30px);
  }
}

.flexble-parts__youtube {
  margin-bottom: 4em;
}
.flexble-parts__youtube .video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.flexble-parts__youtube .video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .flexble-parts__youtube iframe {
    width: 100%;
  }
}

.flexble-parts__googlemap {
  margin-bottom: 8rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .flexble-parts__googlemap {
    margin-bottom: 4rem;
  }
}
.flexble-parts__googlemap .googlemap {
  height: 477px;
}
@media screen and (max-width: 768px) {
  .flexble-parts__googlemap .googlemap {
    height: 80vw;
  }
}
.flexble-parts__googlemap__link {
  position: absolute;
  left: 0;
  bottom: 0;
}
.flexble-parts__googlemap__link a {
  color: #fff;
}
.flexble-parts__googlemap__link a img {
  margin-right: 0.5em;
}
.flexble-parts__googlemap__link a span {
  background: #ee780c;
  padding: 0.25em 1em;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .flexble-parts__googlemap iframe {
    width: 100%;
  }
}/*# sourceMappingURL=output.css.map */