@charset "UTF-8";
/* COMPASS
 * ----------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

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

a img {
  border: none;
}

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

/* BASE
 * ----------------------------------------------- */
/* MEDIA QUERIES
 * ----------------------------------------------- */
/* ADDITIONAL RESET
 * ----------------------------------------------- */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  font: inherit;
  line-height: 1;
}

input:focus,
button:focus,
select:focus {
  outline: 0;
}

/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Turn off scroll bars in IE unless needed */
textarea {
  overflow: auto;
  white-space: pre-line;
}

/* PRINTING
 * ----------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }

  html,
  body {
    margin: 0;
  }

  @page {
    margin: 0;
  }
  @page :left {
    margin: 0;
  }
  @page :right {
    margin: 0;
  }
  @page :first {
    margin-top: 0;
  }
}
/* GENERAL
 * ----------------------------------------------- */
body {
  color: #000;
  font-family: "dnp-shuei-gothic-gin-std", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, Verdana, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

main {
  position: relative;
}

.font-serif {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Times New Roman", "游明朝", YuMincho, "メイリオ", Meiryo, Georgia, serif;
}

.font-noto {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
}

.font-ryumin {
  font-family: "a-otf-ryumin-pr6n", serif;
}

.font-gothic {
  font-family: "a-otf-gothic-bbb-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.font-futogo {
  font-family: "a-otf-futo-go-b101-pr6n", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.font-lato {
  font-family: "Lato", sans-serif;
}

.font-lato-italic {
  font-family: "Lato Italic", sans-serif;
}

.font-shin {
  font-family: "a-otf-ud-shin-go-pr6n", sans-serif;
}

/* HELPERS
 * ----------------------------------------------- */
a {
  color: #000;
  text-decoration: none;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.container {
  overflow: hidden;
}

.trans {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: opacity 0.26s ease;
  -o-transition: opacity 0.26s ease;
  -webkit-transition: opacity 0.26s ease;
  transition: opacity 0.26s ease;
}
.trans:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

/* RESPONSIVE
 * ----------------------------------------------- */
@media print, (min-width: 768px) {
  body {
    position: static !important;
    top: auto !important;
  }

  .container {
    min-width: 1260px;
  }

  .wrapper {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }

  .sm {
    display: none !important;
  }

  .flex-desktop {
    display: flex;
    flex-wrap: wrap;
  }

  .image-common {
    width: auto;
  }
}
@media only screen and (max-width: 767px) {
  .md {
    display: none !important;
  }

  html {
    font-size: calc(100vw / 3.75);
  }

  body {
    font-size: 0.13rem;
  }

  .container {
    min-width: 320px;
  }

  .wrapper {
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }

  .flex-mobile {
    display: flex;
    flex-wrap: wrap;
  }

  .image-common {
    width: 100%;
  }
}
/* PARTS
 * ----------------------------------------------- */
/* COMMON HEADER
 * ----------------------------------------------- */
@media print, (min-width: 768px) {
  header {
    padding: 30px 0 16px;
    position: relative;
    z-index: 2000;
    background: #fff;
  }
  header .wrapper {
    align-items: flex-start;
  }
  header .header-menu {
    justify-content: flex-end;
  }
  header .header-menu > li {
    margin-left: 64px;
  }
  header .header-menu > li:first-child {
    margin-left: 0;
  }

  .header-group {
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 15px;
  }

  .header-link {
    letter-spacing: 0.075em;
    line-height: 1;
    margin-right: 26px;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  .header-link {
    padding-top: 2px;
  }
}
@media print, (min-width: 768px) {
  .header-link > li {
    padding: 0 26px;
    position: relative;
  }
  .header-link > li:after {
    content: "";
    width: 1px;
    top: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    border-right: 1px solid #10060d;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  .header-link > li:after {
    top: 1px;
    bottom: 2px;
  }
}
@media print, (min-width: 768px) {
  .header-link a {
    display: block;
    text-transform: uppercase;
  }

  .header-contact {
    background: #f7f9fa;
    color: #000;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.075em;
    text-align: center;
    width: 200px;
    border-radius: 18px;
    display: block;
    text-transform: uppercase;
    position: relative;
    border: 1px solid #e5e5e5;
    padding: 5px 12px;
    background-size: 200% 200%;
    transition: background-position 0.26s;
    background-image: linear-gradient(to right, #00b3e6 50%, #f7f9fa 0%);
    background-position: right;
  }
  .is-mac .header-contact {
    padding-bottom: 4px;
  }
  .header-contact > span {
    display: block;
    position: relative;
    z-index: 2;
    transition: ease 0.26s;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  .header-contact {
    padding-top: 9px;
    padding-bottom: 1px;
  }
}
@media print, (min-width: 768px) {
  .header-contact:hover {
    background-position: left;
  }
  .header-contact:hover > span {
    color: #fff;
  }
  .header-contact:hover:after {
    transition-delay: 0.23s;
    background-position: center 0;
  }
  .header-contact:after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 8px;
    height: 12px;
    background: url(../img/common/arrow_icon_02.png) no-repeat center bottom;
    transform: translateY(-50%);
  }

  .header-logo {
    width: 180px;
    margin-top: 30px;
  }
  .header-logo a {
    display: block;
  }
  .header-logo img {
    width: auto;
  }

  .header-text {
    line-height: 1;
    font-size: 11px;
    text-align: center;
    margin: 4px -20px 0;
    display: block;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  .header-text {
    margin-top: 7px;
  }
}

@media print, (min-width: 768px) {
  .header-right {
    flex: 1;
    padding-left: 20px;
  }

  .header-menu > li:hover .menu-link {
    color: #e51f1f;
  }
  .header-menu > li:hover .menu-link:after {
    transform: scale(1, 1);
  }
  .header-menu .menu-link {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.075em;
    color: #000;
    position: relative;
    display: block;
    transition: 0.26s ease;
    cursor: pointer;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  .header-menu .menu-link {
    padding-top: 8px;
  }
}
@media print, (min-width: 768px) {
  .header-menu .menu-link.is-active {
    color: #e51f1f;
  }
  .header-menu .menu-link.is-active:after {
    transform: scale(1, 1);
  }
  .header-menu .menu-link:after {
    content: "";
    left: 0;
    width: 100%;
    height: 2px;
    background: #e51f1f;
    position: absolute;
    bottom: -2px;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform 0.3s;
  }

  .header-site {
    position: fixed;
    left: 0;
    min-width: 1260px;
    width: 100%;
    z-index: 100;
    top: 0;
    background: #fff;
    border-top: 2px solid #f1f1f1;
    display: none;
  }
  .header-site .wrapper {
    align-items: center;
    justify-content: space-between;
    padding: 17px 0;
  }
  .header-site .header-menu > li {
    margin-left: 98px;
  }
  .header-site .header-menu > li:first-child {
    margin-left: 0;
  }
  .header-site .logo {
    width: 106px;
  }
  .header-site .mega {
    padding-top: 18px;
    margin-top: -18px;
  }
}
@media only screen and (max-width: 767px) {
  header {
    position: relative;
    z-index: 9;
  }
  header .wrapper {
    padding: 0.15rem 0.1rem 0.06rem;
  }
  header .header-logo {
    width: 2.1rem;
    text-align: center;
    margin: 0 auto;
    display: block;
  }
  header .header-logo img {
    width: 0.96rem;
    margin: 0 auto;
    display: block;
  }
  header .header-text {
    font-size: 0.11rem;
    white-space: nowrap;
  }

  .button-menu {
    position: absolute;
    right: 0;
    width: 0.58rem;
    height: 0.6rem;
    top: 50%;
    margin-top: -0.3rem;
  }
  .button-menu span {
    position: absolute;
    width: 0.18rem;
    left: 50%;
    margin-left: -0.09rem;
    height: 1px;
    background: #000;
  }
  .button-menu span:nth-child(1) {
    top: 0.23rem;
  }
  .button-menu span:nth-child(2) {
    top: 0.29rem;
  }
  .button-menu span:nth-child(3) {
    top: 0.35rem;
  }

  .navigation {
    border: 0.05rem solid #00b4e6;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 999;
    background: #fff;
    display: none;
  }
  .is-android .navigation {
    height: 100% !important;
  }
  .navigation .navigation-inner {
    overflow-y: auto;
    height: 100%;
  }
  .navigation .button-close {
    position: fixed;
    right: 0;
    top: 0.02rem;
    width: 0.58rem;
    height: 0.6rem;
  }
  .navigation .button-close:before {
    content: "";
    width: 0.18rem;
    position: absolute;
    background: #000;
    height: 1px;
    left: 50%;
    top: 50%;
    margin-left: -0.09rem;
    margin-top: -1px;
  }

  .navigation-menu {
    font-size: 0.15rem;
    letter-spacing: 0.2em;
    font-weight: 500;
    line-height: 1.5;
    padding: 0.25rem 0.5rem 0.5rem;
  }
  .navigation-menu .menu-sub {
    font-size: 0.13rem;
    margin-top: -0.03rem;
  }
  .navigation-menu .menu-sub a {
    display: block;
    padding: 0.07rem 0 0.07rem 0.2rem;
    position: relative;
  }
  .navigation-menu .menu-sub a:before {
    content: "";
    width: 0.1rem;
    height: 1px;
    top: 50%;
    background: #e51f1f;
    left: 0;
    position: absolute;
  }
  .navigation-menu .menu-item {
    display: block;
    padding: 0.1rem 0;
  }
  .navigation-menu strong {
    font-weight: bold;
  }
}
.mega {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 100;
  display: none;
  margin-top: -28px;
  padding-top: 28px;
}

.mega-inner {
  background: #e2e6ea;
  position: relative;
}
.mega-inner:after {
  content: "";
  position: absolute;
  left: 0;
  right: 50%;
  margin-right: 235px;
  background: #e27c77;
}
.mega-inner .wrapper {
  display: flex;
  align-items: center !important;
  position: relative;
  padding: 0;
  width: 1100px;
  margin: 0 auto;
}
.mega-inner .mega-right {
  flex: 1;
  padding: 40px 0 40px 42px;
}
.mega-inner .mega-left {
  width: 316px;
}
.mega-inner .mega-title {
  font-style: italic;
  color: #000;
  width: 170px;
  text-align: center;
}
.mega-inner .mega-title > span {
  display: block;
  line-height: 1.2;
}
.mega-inner .mega-title .english-text {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: -0.05em;
}
.mega-inner .mega-title .japan-text {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #8a8a8a;
  margin-top: 4px;
}
.mega-inner .mega-title .is-style {
  font-style: normal;
  letter-spacing: 0;
}

.mega-list {
  margin-left: -2px;
}
.mega-list .mega-item {
  width: 33.33333%;
  padding-left: 2px;
}
.mega-list a {
  display: block;
  position: relative;
}
.mega-list .mega-name {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.096em;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 5;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
}
.mega-list .mega-name > span {
  padding: 0 26px;
  display: block;
  position: relative;
}
.mega-list .mega-name > span:before, .mega-list .mega-name > span:after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  background: #fff;
  width: 20px;
}
.mega-list .mega-name > span:before {
  left: 0;
}
.mega-list .mega-name > span:after {
  right: 0;
}

/* COMMON FOOTER
 * ----------------------------------------------- */
@media print, (min-width: 768px) {
  .tel-common {
    pointer-events: none;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .tel-common {
    display: inline-block;
  }
}

footer {
  background: #055892;
}
footer * {
  letter-spacing: 0.05em;
}
footer a {
  color: #fff;
}

.footer-item {
  line-height: 1.65;
  color: #fff;
  position: relative;
}
.footer-item:before,.footer-item:after {
  content: "";
  position: absolute;
}

.footer-facebook {
  background: #fff;
  color: #011c2e;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}
.footer-facebook .facebook {
  color: #3b5a9a;
  background: url(../img/common/facebook_icon.png) no-repeat 0 center;
}

.copyright {
  display: block;
  color: #fff;
}

@media print, (min-width: 768px) {
  footer {
    padding: 20px 0 22px;
    font-size: 13px;
    font-family: "Noto Sans JP", sans-serif;
  }

  .footer-column .column {
    width: 152px;
    border-left: 1px solid #04436e;
    padding: 12px 10px 0;
  }
  .footer-column .column:last-child {
    border-right: 1px solid #04436e;
    width: 492px;
  }

  .footer-item {
    font-size: 14px;
    padding-left: 25px;
    font-weight: 500;
    display: inline-block;
  }
  .footer-item:before {
    width: 18px;
    height: 18px;
    background: url(../img/common/arrow_icon_01.png) no-repeat 0 0;
    left: 0;
    top: 3px;
  }

  .footer-menu {
    font-size: 12px;
    margin: 10px -10px 0 0;
    padding-left: 25px;
  }
  .footer-menu > li + li {
    margin-top: 8px;
  }
  .footer-menu .is-space {
    letter-spacing: 0;
  }

  .footer-link {
    margin: -12px -10px 0;
  }
  .footer-link > li {
    padding: 12px 10px;
    border-right: 1px solid #04436e;
  }
  .footer-link > li:nth-child(3) {
    border-right: none;
  }
  .footer-link > li:last-child {
    border: none;
    padding-top: 6px;
    padding-bottom: 20px;
  }
  .footer-link .is-last {
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }
  .footer-link .footer-item {
    letter-spacing: 0;
  }

  .footer-facebook {
    border: 1px solid #ececec;
    padding: 5px 10px;
  }
  .footer-facebook .facebook {
    font-size: 14px;
    padding-left: 10px;
    margin-left: 6px;
  }

  .copyright {
    border-top: 1px solid #04436e;
    padding: 20px 25px 0;
  }
}
@media only screen and (max-width: 767px) {
  footer {
    padding: 0 0 0.2rem;
    font-size: 0.13rem;
  }
  footer .wrapper {
    padding: 0;
  }

  .footer-column .column {
    padding: 0 0.35rem;
    border-bottom: 1px solid #04436e;
  }
  .footer-column .column:last-child {
    padding: 0;
    border-bottom: none;
  }

  .footer-item {
    font-size: 0.15rem;
    padding: 0.15rem 0;
    font-weight: bold;
    display: block;
  }
  .footer-item.is-has:before {
    width: 0.2rem;
    height: 1px;
    top: 50%;
    right: -0.14rem;
    background: #fff;
  }
  .footer-item.is-has:not(.active):after {
    width: 1px;
    height: 0.2rem;
    top: 33%;
    right: -5px;
    background: #fff;
  }

  footer .is-has + ul {
    display: none;
  }
  footer .is-has.active + ul {
      display: block;
  }

  .footer-menu {
    font-size: 0.14rem;
    margin-top: -0.13rem;
    padding-bottom: 0.12rem;
  }
  .footer-menu a {
    display: block;
    padding: 0.03rem 0.26rem 0.03rem 0.26rem;
    position: relative;
  }
  .footer-menu a:before {
    content: "";
    position: absolute;
    left: 0.02rem;
    width: 0.14rem;
    height: 1px;
    top: 50%;
    background: #fff;
  }

  .footer-link > li {
    border-bottom: 1px solid #04436e;
    padding: 0 0.35rem;
  }
  .footer-link > li:last-child {
    border: none;
  }
  .footer-link .column-facebook {
    border-top: 1px solid #04436e;
    margin: 0 -0.35rem;
    padding: 0.24rem 0.35rem 0.1rem;
  }

  .footer-facebook {
    padding: 0 0.12rem;
    font-family: "Noto Sans JP", sans-serif;
    justify-content: center;
  }
  .footer-facebook span {
    padding: 0.06rem 0 0.07rem;
  }
  .footer-facebook .facebook {
    font-size: 0.14rem;
    padding-left: 0.12rem;
    margin-left: 0.06rem;
    background-size: 0.07rem auto;
  }

  .copyright {
    font-family: "Noto Sans JP", sans-serif;
    padding: 0 0.2rem 0 0.35rem;
    letter-spacing: 0.03em;
  }
}
/* MODULES
 * ----------------------------------------------- */
/* COMMON BREADCRUMB
 * ----------------------------------------------- */
.breadcrumb-list {
  font-size: 13px;
  letter-spacing: 0.096em;
  font-weight: 300;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}
.breadcrumb-list a {
  color: #fff;
}
.breadcrumb-list > li {
  display: inline-block;
  position: relative;
  margin-right: 12px;
  padding-right: 25px;
}
.breadcrumb-list > li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.breadcrumb-list > li:last-child:before {
  display: none;
}
.breadcrumb-list > li:before {
  content: "";
  width: 8px;
  height: 12px;
  background: url(../img/common/arrow_icon_04.png) no-repeat center center;
  position: absolute;
  right: 0;
  top: 5px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .breadcrumb-list > li:before {
    top: 7px;
  }
}
.is-ipad .breadcrumb-list > li:before {
  top: 6px;
}
.is-firefox .breadcrumb-list > li:before {
  top: 7px;
}

/* COMMON PAGINATION
 * ----------------------------------------------- */
.list-pager {
  display: flex;
  flex-wrap: wrap;
}
.list-pager .page-numbers {
  border: 1px solid #f1f1f1;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.list-pager .current,
.list-pager .page-numbers:hover {
  background: #055892;
  color: #fff;
}
.list-pager .dots {
  border: none;
  min-width: 0 !important;
  color: #666 !important;
  background: none !important;
  box-shadow: none !important;
}

@media print, (min-width: 768px) {
  .list-pager {
    font-family: "Noto Sans JP", sans-serif;
  }
  .list-pager > li {
    margin: 0 10px 10px 0;
  }
  .list-pager .page-numbers {
    height: 41px;
    min-width: 46px;
    font-size: 14px;
    border-radius: 3px;
    transition: 0.26s ease;
    padding: 0 10px 2px;
    box-shadow: 0 2px 0 #f1f1f1;
  }
  .list-pager .page-button a {
    padding: 0 20px 2px;
  }
}
@media only screen and (max-width: 767px) {
  .list-pager {
    padding: 0 0.15rem;
  }
  .list-pager > li {
    margin-bottom: 0.1rem;
    padding: 0 0.05rem;
    width: 20%;
  }
  .list-pager .page-numbers {
    height: 0.4rem;
    width: 100%;
    font-size: 0.14rem;
    border-radius: 0.03rem;
    padding: 0 0.1rem;
    box-shadow: 0 0.02rem 0 #f1f1f1;
  }
  .list-pager .page-button-prev {
    margin-bottom: 0.18rem;
  }
  .list-pager .page-button-next {
    margin-top: 0.08rem;
  }
  .list-pager .page-button {
    width: 100% !important;
  }
  .list-pager .page-button a {
    padding: 0 0.2rem;
  }
}
/* COMMON TITLE
 * ----------------------------------------------- */
.title-primary > span {
  display: block;
  line-height: 1.5;
}
.title-primary .english-text {
  letter-spacing: -0.05em;
  font-weight: 700;
}
.title-primary .japan-text {
  font-weight: bold;
  letter-spacing: 0.096em;
}

@media print, (min-width: 768px) {
  .title-primary .english-text {
    font-size: 14px;
  }
  .title-primary .japan-text {
    font-size: 32px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .title-primary .english-text {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .title-primary .english-text {
    font-size: 0.13rem;
  }
  .title-primary .japan-text {
    font-size: 0.2rem;
  }
}
/* COMMON BANNER
 * ----------------------------------------------- */
.common-banner {
  position: relative;
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
}

.banner-title {
  color: #fff;
}
.banner-title .title-english {
  font-weight: 700;
}
.banner-title .title-japan {
  font-weight: bold;
}
.banner-title > span {
  letter-spacing: 0.096em;
  display: block;
}

.banner-text {
  color: #333;
}

.banner-tag-list .tag-text {
  background: #fff;
  color: #000;
  letter-spacing: 0.096em;
  line-height: 1.2;
  text-align: center;
  display: block;
}

@media print, (min-width: 768px) {
  .common-banner {
    height: 430px;
    background: no-repeat top center/cover;
  }

  .banner-content {
    padding: 22px 20px;
  }
  .banner-content .breadcrumb-list {
    margin-bottom: 50px;
  }

  .banner-title {
    margin-bottom: 15px;
  }
  .banner-title .title-english {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .banner-title .title-japan {
    font-size: 32px;
    margin-top: -7px;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  .banner-title .title-japan {
    margin-top: 0;
  }
}

@media print, (min-width: 768px) {
  .banner-text {
    width: 636px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.096em;
    line-height: 2.14;
  }
  .banner-text .image-text {
    margin: -8px 0 20px;
  }

  .banner-tag-list {
    margin-top: 14px;
  }
  .banner-tag-list > li {
    margin: 6px 6px 0 0;
    width: 150px;
  }
  .banner-tag-list .tag-text {
    font-size: 14px;
    padding: 6px 5px;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  .banner-tag-list .tag-text {
    padding-bottom: 2px;
    padding-top: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .common-banner:before {
    height: 1.55rem;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    background: no-repeat center 0/cover;
  }

  .banner-title {
    height: 1.55rem;
    padding: 0.4rem 0.2rem 0;
  }
  .banner-title .title-english {
    font-size: 0.13rem;
    margin-bottom: -0.02rem;
  }
  .banner-title .title-japan {
    font-size: 0.2rem;
  }

  .banner-text {
    padding: 0.17rem 0.2rem;
    background: #f5f4f4;
    font-size: 0.13rem;
    letter-spacing: 0.025em;
    line-height: 2;
  }
  .banner-text .image-text {
    margin: 0.02rem 0 0.06rem;
  }
  .banner-text .image-text img {
    width: 100%;
    display: block;
  }

  .banner-tag-list {
    margin: 14px 0 -0.32rem;
    border-left: 1px solid #e5e5e5;
  }
  .banner-tag-list > li {
    border: 1px solid #e5e5e5;
    border-top: none;
    border-left: none;
    width: 50%;
  }
  .banner-tag-list > li:nth-child(1), .banner-tag-list > li:nth-child(2) {
    border-top: 1px solid #e5e5e5;
  }
  .banner-tag-list .tag-text {
    font-size: 0.12rem;
    padding: 0.07rem 0.05rem;
    font-weight: 500;
  }
}
.button-primary {
  background: #f1f0ef;
  position: relative;
  overflow: hidden;
  font-weight: bold;
  display: block;
  letter-spacing: 0.25em;
  transition: 0.3s ease;
}
.button-primary:before {
  content: "";
  position: absolute;
  left: -110%;
  transition: 0.3s ease;
  height: 100%;
  top: 0;
  background: #e22329;
  width: 100%;
  z-index: 0;
}
.button-primary:hover {
  color: #fff;
}
.button-primary:hover:before {
  left: 0;
}
.button-primary:hover > span:after {
  background: #fff;
}
.button-primary > span {
  display: flex;
  align-items: center;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.button-primary > span:after {
  content: "";
  display: inline-block;
  background: #cbc8c5;
  height: 1px;
  transition: 0.3s ease;
}

@media print, (min-width: 768px) {
  .button-primary {
    font-size: 13px;
    letter-spacing: 0.25em;
  }
  .button-primary:before {
    content: "";
  }
  .button-primary > span {
    padding: 6px 0 6px 14px;
  }
  .button-primary > span:after {
    width: 100%;
    margin-left: 8px;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  .button-primary > span {
    padding-bottom: 9px;
  }
}

@media only screen and (max-width: 767px) {
  .button-primary {
    font-size: 0.12rem;
  }
  .button-primary > span {
    padding: 0.02rem 0.15rem;
  }
  .button-primary > span:after {
    width: 0.15rem;
    position: absolute;
    right: 0;
    top: 50%;
  }
}
.works-item {
  position: relative;
  display: block;
}
.works-item * {
  letter-spacing: 0.05em;
}
.works-item img {
  width: 100%;
  display: block;
}
.works-item:before, .works-item:after,
.works-item .more-text {
  opacity: 0;
  transition: opacity 0.26s ease;
}
.works-item:hover:before, .works-item:hover:after,
.works-item:hover .more-text,
.works-item:hover .works-photo:before {
  opacity: 1;
}
.works-item:before, .works-item:after {
  content: "";
  position: absolute;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.26s ease;
}
.works-item:before {
  border: 1px solid #fff;
  border-right: none;
}
.works-item:after {
  border-right: 1px solid #fff;
}
.works-item .more-text {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.works-item .works-name {
  position: absolute;
  background: #fff;
  text-align: center;
  line-height: 1.2;
  color: #000;
  z-index: 5;
}
.works-item .works-photo {
  position: relative;
}
.works-item .works-photo:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.26s ease;
}

@media print, (min-width: 768px) {
  .works-item:before {
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
  }
  .works-item:after {
    top: 10px;
    right: 10px;
    bottom: 30px;
  }
  .works-item .more-text {
    font-size: 14px;
  }
  .works-item .works-name {
    right: 10px;
    bottom: 0;
    min-width: 190px;
    font-size: 13px;
    padding: 3px 10px;
    max-width: calc(100% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  .works-item:before {
    left: 0.04rem;
    right: 0.04rem;
    top: 0.04rem;
    bottom: 0.04rem;
    border-color: rgba(255, 255, 255, 0.6);
    opacity: 1;
  }
  .works-item:after {
    top: 0.04rem;
    right: 0.04rem;
    bottom: 0.25rem;
    border-right-color: rgba(255, 255, 255, 0.6);
    opacity: 1;
  }
  .works-item .more-text {
    font-size: 0.1rem;
  }
}
@media only screen and (max-width: 767px) and (max-width: 374px) {
  .works-item .more-text {
    font-size: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .works-item .is-space {
    letter-spacing: -0.05em;
  }
  .works-item .works-name {
    right: 0.04rem;
    bottom: 0.04rem;
    min-width: 1.33rem;
    font-size: 0.1rem;
    padding: 0.02rem 0.05rem;
    max-width: calc(100% - .08rem);
  }
}
@media only screen and (max-width: 767px) and (max-width: 374px) {
  .works-item .works-name {
    font-size: 10px;
  }
}

.works-box-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.works-box-wrap:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
}
.works-box-wrap .works-inner {
  position: relative;
  z-index: 4;
  font-weight: bold;
  width: 100%;
}
.works-box-wrap .works-text {
  letter-spacing: 0.08em;
}
.works-box-wrap .text-group > span {
  letter-spacing: 0.074em;
}

@media print, (min-width: 768px) {
  .works-box-wrap:after {
    left: 2px;
    bottom: 2px;
  }
  .works-box-wrap .works-inner {
    padding: 25px 55px;
  }
  .works-box-wrap .works-text {
    font-size: 13px;
    margin-bottom: 2px;
  }
  .works-box-wrap .text-group {
    display: flex;
    align-items: flex-end;
    margin: 0 -20px 12px 0;
  }
  .works-box-wrap .text-large {
    font-size: 24px;
  }
  .works-box-wrap .text-small {
    font-size: 14px;
    padding: 0 0 4px 5px;
  }
}
@media only screen and (max-width: 767px) {
  .works-box-wrap:after {
    left: 1px;
    bottom: 1px;
  }
  .works-box-wrap .works-inner {
    padding: 0.05rem 0.2rem 0.05rem 0.3rem;
  }
  .works-box-wrap .works-text {
    font-size: 0.11rem;
    margin-bottom: 0.02rem;
  }
}
@media only screen and (max-width: 767px) and (max-width: 374px) {
  .works-box-wrap .works-text {
    font-size: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .works-box-wrap .text-group {
    margin-bottom: 0.15rem;
  }
  .works-box-wrap .text-group > span {
    display: block;
  }
  .works-box-wrap .text-large {
    font-size: 0.18rem;
    margin-bottom: -0.04rem;
  }
  .works-box-wrap .text-small {
    font-size: 0.12rem;
  }
  .works-box-wrap .button-primary {
    margin-left: -0.14rem;
  }
}
.partner-block {
  background: #f7f9fa;
}

.partner-item a {
  display: block;
}

@media print, (min-width: 768px) {
  .partner-block {
    padding: 42px 0;
  }
  .partner-block .slick-arrow {
    width: 30px;
    height: 40px;
    background: no-repeat center center;
    top: 50%;
    margin-top: -20px;
    position: absolute;
    z-index: 5;
  }
  .partner-block .slick-prev {
    background-image: url(../img/common/prev_btn.png);
    left: -36px;
  }
  .partner-block .slick-next {
    background-image: url(../img/common/next_btn.png);
    right: -36px;
  }
  .partner-block .partner-slide {
    margin: 0 -16px;
  }

  .partner-item {
    visibility: hidden;
    padding: 0 16px;
    width: 282px;
  }
  .slick-initialized .partner-item {
    visibility: visible;
  }
}
@media only screen and (max-width: 767px) {
  .partner-block {
    padding: 0.3rem 0.3rem;
  }

  .partner-item {
    margin-bottom: 0.1rem;
    padding-right: 1px;
  }
  .partner-item:last-child {
    margin-bottom: 0;
  }
  .partner-item img {
    width: 100%;
  }
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

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

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide:active, .slick-slide:focus {
  outline: none;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-arrow,
.slick-dots button {
  background-position: 0 0;
  background-repeat: no-repeat;
  text-indent: -1000px;
  overflow: hidden;
  padding: 0;
  border: none;
  background-color: transparent;
  outline: none;
  display: block;
  cursor: pointer;
}

.is-effect-scale {
  overflow: hidden;
}
.is-effect-scale .is-scale {
  transition: 0.8s cubic-bezier(0.16, 0.61, 0.43, 0.93);
  transform: scale(1);
  width: 100%;
  display: block;
}
.is-effect-scale:hover .is-scale {
  transform: scale(1.1);
}

/* PAGES
 * ----------------------------------------------- */
.section-top-keyvisual {
  position: relative;
}
.section-top-keyvisual .flex {
  align-items: flex-start;
}

.keyvisual-info {
  position: absolute;
}
.keyvisual-title,
.keyvisual-text {
  display: none;
}
@media print, (min-width: 768px) {
  .keyvisual-list > li:first-child {
    width: 66.444%;
  }
  .keyvisual-list > li:last-child {
    width: 33.556%;
    padding-left: 2px;
  }
  .keyvisual-list > li:last-child .keyvisual-photo {
    height: 652px;
  }

  .keyvisual-list-sub > li {
    width: 50%;
  }
  .keyvisual-list-sub > li:first-child {
    padding-right: 2px;
  }

  .keyvisual-list-second > li:first-child {
    width: 66.444%;
  }
  .keyvisual-list-second > li:last-child {
    width: 33.556%;
    padding-left: 2px;
  }

  .keyvisual-photo {
    height: 325px;
    background: no-repeat center 0/cover;
    margin-bottom: 2px;
  }
  .keyvisual-photo img {
    display: none;
  }

  .keyvisual-title {
    font-size: 36px;
    line-height: 1.7;
    color: #fff;
    letter-spacing: 0.025em;
    text-align: right;
    margin: 0 0 13px -25px;
    padding-right: 35px;
    text-shadow: 1px 1px 4px #797979;
  }

  .keyvisual-info {
    right: 21px;
    bottom: 21px;
    width: 393px;
  }
  .keyvisual-info .text {
    margin-right: -28px;
    display: block;
  }

  .keyvisual-text {
    width: 368px;
  }
}
@media only screen and (max-width: 767px) {
  .keyvisual-photo {
    background: no-repeat center 0/cover;
  }

  .keyvisual-right .keyvisual-photo {
    height: 2.87rem;
  }

  .keyvisual-list {
    padding: 0 1px;
  }
  .keyvisual-list img {
    width: 100%;
    display: block;
  }

  .keyvisual-row {
    margin-top: 1px;
  }
  .keyvisual-row img {
    display: none;
  }
  .keyvisual-row .keyvisual-list-sub {
    width: 49.8%;
  }
  .keyvisual-row .keyvisual-list-sub > li {
    margin-bottom: 1px;
  }
  .keyvisual-row .keyvisual-right {
    width: 50.2%;
    padding-left: 1px;
  }

  .keyvisual-list-sub > li {
    margin-bottom: 1px;
  }
  .keyvisual-list-sub .keyvisual-photo {
    height: 0.95rem;
  }

  .keyvisual-title {
    font-size: 0.2rem;
    line-height: 1.4;
    color: #fff;
    letter-spacing: 0.025em;
    text-align: right;
    margin-left: -0.25rem;
    padding-right: 0.13rem;
  }

  .keyvisual-info {
    right: 0.16rem;
    bottom: 0.26rem;
    width: 2.52rem;
  }
  .keyvisual-info .text {
    margin-right: -0.12rem;
    display: block;
  }

  .keyvisual-text {
    font-size: 0.14rem;
    letter-spacing: 0.05em;
    font-style: italic;
    color: #fff;
    white-space: nowrap;
    display: block;
    text-align: right;
    padding-right: 0.03rem;
  }
}
.title-top span {
  display: block;
}
.title-top .japan-text {
  display: flex;
  align-items: center;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.title-top .english-text {
  line-height: 1.4;
  color: #666;
  letter-spacing: 0.144em;
}

@media print, (min-width: 768px) {
  .title-top .japan-text {
    font-size: 29px;
    margin-bottom: 12px;
  }
  .title-top .japan-text img {
    margin-right: 2px;
    width: 123px;
  }
  .title-top .english-text {
    font-size: 14px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .title-top .japan-text > span {
    position: relative;
    top: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .title-top .japan-text {
    font-size: 0.18rem;
    margin-bottom: 0.06rem;
  }
  .title-top .japan-text img {
    margin-right: 0.02rem;
    width: 0.84rem;
  }
  .title-top .english-text {
    font-size: 0.12rem;
  }
}
.section-top-business {
  position: relative;
}
.section-top-business:after {
  content: "";
  position: absolute;
  right: 0;
  background: #eff2f4;
}
.section-top-business .wrapper {
  position: relative;
  z-index: 2;
}
.section-top-business .business-title {
  letter-spacing: 0.144em;
}
.section-top-business .business-title sup,
.section-top-business .business-title sub {
  position: relative;
}
.section-top-business .business-description {
  color: #333;
  letter-spacing: 0.05em;
}

.business-list .list-image > li {
  width: 50%;
}

.business-item {
  position: relative;
  display: block;
}
.business-item * {
  letter-spacing: 0.05em;
}
.business-item:hover:before, .business-item:hover:after {
  opacity: 1;
}
.business-item img {
  width: 100%;
}
.business-item:before, .business-item:after {
  content: "";
  position: absolute;
  transition: opacity 0.26s ease;
  opacity: 0;
}
.business-item:before {
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}
.business-item:after {
  border: 1px solid #e5e5e5;
  z-index: 3;
}
.business-item .name {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: 500;
  z-index: 3;
}
.business-item .text-small {
  letter-spacing: 0.025em;
  display: block;
}

@media print, (min-width: 768px) {
  .section-top-business {
    padding: 80px 0 76px;
  }
  .section-top-business:after {
    top: 76px;
    bottom: 0;
    left: 50%;
    margin-left: -188px;
  }
  .section-top-business .business-title {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .section-top-business .business-title sup,
  .section-top-business .business-title sub {
    font-size: 14px;
  }
  .section-top-business .business-title sup {
    top: -5px;
  }
  .section-top-business .business-title sub {
    bottom: -4px;
  }
  .section-top-business .business-description {
    margin-bottom: 40px;
    font-family: "Noto Sans JP", sans-serif;
  }
  .section-top-business .title-top {
    margin-bottom: 18px;
  }

  .business-list > li {
    width: 50%;
    padding-right: 1px;
  }
  .business-list > li .business-photo {
    height: 324px;
  }
  .business-list > li:last-child {
    padding-left: 1px;
  }
  .business-list > li:last-child .business-photo {
    height: 214px;
  }
  .business-list > li .photo-small {
    height: 108px !important;
  }
  .business-list .list-image {
    margin-left: -2px;
  }
  .business-list .list-image > li {
    padding: 0 0 2px 2px;
  }
  .business-list .business-photo {
    background: no-repeat center center/cover;
  }
  .business-list .business-photo img {
    display: none;
  }

  .business-item:after {
    left: 10px;
    top: 10px;
    right: 10px;
    bottom: 10px;
  }
  .business-item .name {
    padding: 10px;
    font-size: 20px;
  }
  .business-item .text-small {
    font-size: 12px;
    margin-top: -2px;
  }
}
@media only screen and (max-width: 767px) {
  .section-top-business {
    padding: 0.26rem 0 0.28rem;
  }
  .section-top-business:after {
    top: 0.35rem;
    bottom: 0;
    left: 0.74rem;
  }
  .section-top-business .business-title {
    font-size: 0.15rem;
    line-height: 1.73;
    margin-bottom: 0.1rem;
  }
  .section-top-business .business-title sup,
  .section-top-business .business-title sub {
    font-size: 0.12rem;
  }
  .section-top-business .business-title sup {
    top: -0.04rem;
  }
  .section-top-business .business-title sub {
    bottom: -0.04rem;
  }
  .section-top-business .business-description {
    margin-bottom: 0.03rem;
    font-size: 0.13rem;
    line-height: 2;
  }
  .section-top-business .title-top {
    margin-bottom: 0.06rem;
  }

  .business-list > li {
    margin-bottom: 1px;
  }
  .business-list .list-image {
    margin-left: -1px;
  }
  .business-list .list-image > li {
    padding: 0 0 1px 1px;
  }
  .business-list .list-image .business-photo {
    background: no-repeat center center/cover;
    height: 1.25rem;
  }
  .business-list .list-image .business-photo img {
    display: none;
  }
  .business-list .list-image .photo-small {
    height: 0.95rem;
  }

  .business-item:after {
    left: 0.04rem;
    top: 0.04rem;
    right: 0.04rem;
    bottom: 0.04rem;
  }
  .business-item .name {
    padding: 0.04rem;
    font-size: 0.15rem;
  }
  .business-item .text-small {
    font-size: 0.11rem;
    letter-spacing: 0;
    margin-top: -0.02rem;
  }
}
@media only screen and (max-width: 767px) and (max-width: 374px) {
  .business-item .text-small {
    font-size: 10px;
    letter-spacing: -0.05em;
  }
}

.works-list-button {
  align-items: flex-start;
}

.button-works {
  letter-spacing: 0.05em;
  text-align: center;
  overflow: hidden;
  position: relative;
  transition: 0.3s ease;
}
.button-works:before {
  content: "";
  left: -110%;
  top: 0;
  height: 100%;
  background: #000;
  position: absolute;
  width: 100%;
  transition: 0.3s ease;
}
.button-works:hover {
  color: #fff;
}
.button-works:hover:before {
  left: 0;
}
.button-works > span {
  position: relative;
  display: inline-block;
  z-index: 2;
}

.section-top-works .works_photo {
  margin: 20px 0 0 0;
}
.section-top-works .works_photo img {
  width: 100%;
  height: auto;
}


@media print, (min-width: 768px) {
  .section-top-works {
    padding: 88px 0 72px;
  }

  .works-list {
    margin: 30px 0 0 -2px;
  }
  .works-list > li {
    width: 25%;
    padding: 0 0 2px 2px;
  }

  .works-list-button {
    margin: -12px 0 0 77px;
  }
  .works-list-button > li {
    position: relative;
    width: 162px;
    margin-left: 30px;
    padding: 10px 5px 5px;
    text-align: center;
  }
  .works-list-button > li:first-child {
    margin-left: 0;
  }
  .works-list-button > li:after, .works-list-button > li:before {
    content: "";
    position: absolute;
    width: 10px;
    height: 6px;
  }
  .works-list-button > li:before {
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    left: 0;
    top: 0;
  }
  .works-list-button > li:after {
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    right: 0;
    bottom: 0;
  }

  .button-works {
    display: inline-block;
    min-width: 134px;
    font-size: 13px;
    padding: 6px;
  }
  .button-works > span {
    padding-right: 16px;
  }
  .button-works > span:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 12px;
    margin-top: -6px;
    background: url(../img/common/arrow_icon_03.png) no-repeat 0 0;
  }
  .button-works:hover > span:after {
    background-position: 0 bottom;
    transition-delay: 0.23s;
  }
  
  .section-top-works .works_photo {
    display: flex;
  }
  .section-top-works .works_photo div:nth-child(1),
  .section-top-works .works_photo div:nth-child(3) {
    flex: 1;
  }
  .section-top-works .works_photo div:nth-child(2) {
    flex: 2;
    padding: 0 2px;
  }
  .section-top-works .works_photo div:nth-child(2) a:nth-child(1) {
    padding: 0 0 2px 0;
    display: block;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 767px) {
  .section-top-works {
    padding: 0.25rem 0;
  }
  .section-top-works .title-top {
    margin-bottom: 0.22rem;
  }
  .section-top-works .title-top .english-text {
    font-size: 0.14rem;
  }

  .works-list {
    padding-right: 1px;
  }
  .works-list > li {
    width: 50%;
    padding: 0 0 1px 1px;
  }

  .works-list-button {
    margin: 0 0 0 -0.15rem;
    padding-bottom: 0.02rem;
  }
  .works-list-button > li {
    width: 50%;
    padding: 0 0 0.15rem 0.15rem;
  }

  .button-works {
    display: block;
    font-size: 0.12rem;
    padding: 0.03rem 0 0.04rem;
    background: #e5e5e5;
    position: relative;
  }
  .button-works:after {
    content: "";
    position: absolute;
    right: 0.09rem;
    margin-top: -0.06rem;
    top: 50%;
    width: 0.08rem;
    height: 0.12rem;
    background: url(../img/common/sp/arrow_icon_01.png) no-repeat 0 0/100% auto;
  }
  .button-works:hover:after {
    background-position: 0 bottom;
  }

  .section-top-works .works_photo {
    margin: 5px 0 0 0;
  }

  .button-works > span {
    letter-spacing: 0;
  }

  
  .section-top-works .works_photo {
    
  }
  .section-top-works .works_photo div:nth-child(2) {
    display: flex;
  }
  .section-top-works .works_photo div:nth-child(2) a:nth-child(3) {
    margin: 1px 0 1px 0;
    display: block;
  }
  .section-top-works .works_photo div:nth-child(2) a:nth-child(4) {
    margin: 1px 0 1px 1px;
  }
}
.section-top-news .wrapper .column-left {
  position: relative;
}

.news-title {
  font-style: italic;
}
.news-title > span {
  line-height: 1.2;
}
.news-title .english-text {
  letter-spacing: -0.025em;
  font-weight: bold;
}
.news-title .japan-text {
  letter-spacing: 0.4em;
  line-height: 1;
}

.all-view {
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: bold;
  color: #000;
  position: absolute;
  font-style: italic;
}
.all-view:after {
  content: "";
  position: absolute;
  right: 0;
  height: 1px;
  background: #000;
  top: 50%;
}

.news-list > li {
  border-bottom: 1px solid #e8e8e8;
}
.news-list > li:first-child {
  border-top: 1px solid #e8e8e8;
}

.news-item * {
  letter-spacing: 0.1em;
}
.news-item .news-date {
  color: #999;
  position: relative;
}
.news-item .news-date:before {
  content: "";
  background: #000;
  top: 50%;
  position: absolute;
  width: 1px;
}
.news-item .name-text {
  overflow-wrap: break-word;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .news-item .name-text {
    word-break: break-all;
  }
}

.tag {
  display: inline-block;
  line-height: 1.2;
  color: #fff;
  font-weight: 500;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
.tag.is-blue {
  background: #00b4e6;
}
.tag.is-red {
  background: #e51f1f;
}

@media print, (min-width: 768px) {
  .section-top-news {
    margin-bottom: 72px;
  }
  .section-top-news .wrapper {
    display: flex;
  }
  .section-top-news .wrapper .column-left {
    width: 200px;
    border-bottom: 1px solid #e8e8e8;
    border-top: 1px solid #e8e8e8;
    padding: 18px 0 0 26px;
  }
  .section-top-news .wrapper .column-right {
    flex: 1;
    padding-left: 75px;
  }

  .news-title > span {
    display: block;
  }
  .news-title .english-text {
    font-size: 26px;
    margin-bottom: 5px;
  }
  .news-title .japan-text {
    font-size: 12px;
    color: #8a8a8a;
  }

  .all-view {
    font-size: 12px;
    padding-right: 80px;
    left: 26px;
    bottom: 30px;
  }
  .all-view:after {
    width: 70px;
  }

  .news-list > li {
    padding: 24px 0;
  }

  .news-item {
    display: flex;
    align-items: flex-start;
  }
  .news-item .news-date {
    font-size: 13px;
    letter-spacing: 0;
    width: 108px;
    padding-left: 25px;
    margin-top: 1px;
  }
  .news-item .news-date:before {
    height: 12px;
    left: 15px;
    margin-top: -6px;
  }
  .news-item .news-text {
    font-size: 14px;
    width: 608px;
  }
  .news-item .news-tag {
    width: 90px;
    margin-top: 2px;
  }
  .news-item .tag {
    display: block;
  }

  .tag {
    min-width: 90px;
    font-size: 13px;
    letter-spacing: 0.05em;
    padding: 3px 2px 4px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .section-top-news .wrapper .column-left {
    padding-top: 26px;
  }

  .all-view {
    bottom: 22px;
  }

  .news-item .news-date {
    padding-top: 3px;
    letter-spacing: 0;
  }
  .news-item .news-date:before {
    margin-top: -8px;
  }

  .news-item .news-text {
    padding-top: 3px;
  }
}
@media only screen and (max-width: 767px) {
  .section-top-news {
    margin-bottom: 0.35rem;
  }
  .section-top-news .column-left {
    margin-bottom: 0.16rem;
  }

  .news-title > span {
    display: inline-block;
  }
  .news-title .english-text {
    font-size: 0.2rem;
    margin-right: 0.1rem;
  }
  .news-title .japan-text {
    font-size: 0.1rem;
    color: #666666;
    position: relative;
    letter-spacing: 0.2em;
    top: -0.02rem;
    font-style: normal;
  }
}
@media only screen and (max-width: 767px) and (max-width: 374px) {
  .news-title .japan-text {
    font-size: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .all-view {
    font-size: 0.12rem;
    padding-right: 0.4rem;
    right: 0;
    top: 0.07rem;
  }
  .all-view:after {
    width: 0.3rem;
  }

  .news-list > li {
    padding: 0.18rem 0;
  }

  .news-item .news-date {
    font-size: 0.12rem;
    display: inline-block;
    letter-spacing: 0;
    padding-left: 0.1rem;
    margin-left: 0.15rem;
  }
  .news-item .news-date:before {
    height: 0.12rem;
    left: 0;
    margin-top: -0.06rem;
  }
  .news-item .news-text {
    font-size: 0.13rem;
    line-height: 2;
    display: block;
    margin: 0.13rem 0 -0.05rem;
  }
  .news-item .news-tag {
    display: inline-block;
  }

  .tag {
    min-width: 0.9rem;
    font-size: 0.12rem;
    letter-spacing: 0.1em;
    padding: 0.03rem 0.15rem 0.04rem;
  }
}
.section-top-pick-up {
  background: #f7f9fa;
}
.section-top-pick-up .pick-up-title {
  letter-spacing: 0.1em;
  font-weight: bold;
  font-style: italic;
}

.pick-up-item {
  position: relative;
  display: block;
  overflow: hidden;
}
.pick-up-item:after, .pick-up-item:before {
  content: "";
  position: absolute;
  transition: opacity 0.26s ease;
  opacity: 0;
}
.pick-up-item:after {
  z-index: 10;
  border: 1px solid #fff;
}
.pick-up-item:before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9;
}
.pick-up-item:hover:after, .pick-up-item:hover:before {
  opacity: 1;
}
.pick-up-item:hover img {
  transform: scale(1.1);
}
.pick-up-item img {
  width: 100%;
  display: block;
  transition: 0.8s cubic-bezier(0.16, 0.61, 0.43, 0.93);
  transform: scale(1);
}

@media print, (min-width: 768px) {
  .section-top-pick-up {
    padding: 22px 0 48px;
  }
  .section-top-pick-up .pick-up-title {
    font-size: 26px;
    margin-bottom: 8px;
    text-align: center;
  }

  .pick-up-list {
    margin-left: -2px;
    padding-right: 2px;
  }
  .pick-up-list > li {
    width: 25%;
    padding: 0 0 2px 2px;
  }

  .pick-up-item:after {
    left: 10px;
    top: 10px;
    right: 10px;
    bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .section-top-pick-up {
    padding: 0.16rem 0 0.25rem;
  }
  .section-top-pick-up .pick-up-title {
    font-size: 0.2rem;
    margin-bottom: 0.05rem;
  }

  .pick-up-list {
    margin: 0 -0.2rem 0 -0.19rem;
  }
  .pick-up-list > li {
    width: 50%;
    padding: 0 1px 1px 0;
  }

  .pick-up-item:after {
    left: 0.04rem;
    top: 0.04rem;
    right: 0.04rem;
    bottom: 0.04rem;
  }
}
.access-title {
  font-style: italic;
}
.access-title span {
  line-height: 1.2;
}
.access-title .english-text {
  font-weight: bold;
}
.access-title .japan-text {
  line-height: 1;
}

.access-info .text {
  position: relative;
}
.access-info .text:after {
  content: "";
  position: absolute;
  width: 1px;
  background: #000;
}
.access-info address {
  display: inline;
}
.access-info .info {
  font-weight: 300;
}

.access-button {
  display: block;
}
.access-button:before {
  content: "";
  background: #e51f1f;
  position: absolute;
  right: 0;
  top: 50%;
  height: 2px;
  margin-top: -1px;
}

.access-list > li {
  width: 33.33333%;
}
.access-list .large {
  width: 100%;
}
.access-list img {
  display: block;
  width: 100%;
}

@media print, (min-width: 768px) {
  .section-top-access {
    padding: 68px 0 70px;
    align-items: flex-start;
  }
  .section-top-access .column {
    *zoom: 1;
    width: 50%;
  }
  .section-top-access .column:after {
    content: "";
    display: table;
    clear: both;
  }
  .section-top-access .column-inner {
    width: 526px;
    padding-right: 54px;
    float: right;
    position: relative;
  }
  .section-top-access .access-title {
    margin-bottom: 28px;
  }

  .access-title span {
    display: block;
  }
  .access-title .english-text {
    font-size: 26px;
    margin-bottom: 4px;
    letter-spacing: -0.05em;
  }
  .access-title .japan-text {
    font-size: 12px;
    letter-spacing: 0.2em;
    color: #8a8a8a;
  }

  .access-info * {
    letter-spacing: 0.05em;
  }
  .access-info .access {
    display: flex;
  }
  .access-info .text {
    width: 95px;
  }
  .access-info .text:after {
    right: 16px;
    top: 5px;
    height: 15px;
  }
  .access-info .info {
    color: #666;
    margin: 10px 0 15px;
  }

  .access-map {
    margin: 37px 0 0 -70px;
    width: 466px;
  }
  .access-map img {
    width: auto;
  }

  .access-button {
    position: absolute;
    bottom: -12px;
    right: 56px;
    z-index: 2;
    font-size: 13px;
    padding-right: 32px;
    display: block;
  }
  .access-button:before {
    width: 25px;
  }

  .access-list {
    margin-left: -2px;
  }
  .access-list > li {
    /* padding-left: 2px; */
  }
  .access-list .large {
    /* margin-bottom: 2px; */
  }
}
@media only screen and (max-width: 767px) {
  .section-top-access {
    padding: 0.22rem 0.2rem 0.26rem;
  }
  .section-top-access .access-title {
    margin-bottom: 0.08rem;
  }

  .access-title span {
    display: inline-block;
  }
  .access-title .english-text {
    font-size: 0.2rem;
    margin-right: 0.12rem;
    letter-spacing: -0.075em;
  }
  .access-title .japan-text {
    font-size: 0.1rem;
    letter-spacing: 0.1em;
    color: #666;
    position: relative;
    top: -1px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 374px) {
  .access-title .japan-text {
    font-size: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .access-info .access {
    letter-spacing: 0.03em;
    margin-right: -0.1rem;
  }
  .access-info .text {
    padding-right: 0.1rem;
    margin-right: 0.08rem;
  }
  .access-info .text:after {
    right: 0;
    top: 50%;
    height: 0.12rem;
    margin-top: -0.06rem;
  }
  .access-info .info {
    color: #666;
    margin: 0.06rem 0 0.08rem;
    letter-spacing: 0.05em;
  }

  .access-map {
    margin: 0 -0.2rem 0.18rem;
  }
  .access-map img {
    width: 100%;
    display: block;
  }

  .access-button {
    font-size: 0.13rem;
    letter-spacing: 0.05em;
    padding: 0.09rem 0.3rem 0.1rem;
    text-align: center;
    display: block;
    position: relative;
    background: #e5e5e5;
    margin-bottom: 0.26rem;
  }
  .access-button:before {
    width: 0.25rem;
  }

  .access-list {
    margin-left: -1px;
  }
  .access-list > li {
    padding-left: 1px;
  }
  .access-list .large {
    margin-bottom: 1px;
  }
}
.recruit-text {
  letter-spacing: 0.03em;
}

.recruit-button {
  letter-spacing: 0.1em;
  font-style: italic;
  position: relative;
  font-weight: bold;
  display: block;
  background: #fff;
  overflow: hidden;
}
.recruit-button:after {
  content: "";
  position: absolute;
  width: 100%;
  border: 1px solid #e8e8e8;
  top: 0;
  height: 100%;
  left: 0;
}
.recruit-button:before {
  content: "";
  position: absolute;
  left: -110%;
  transition: 0.3s ease;
  height: 100%;
  top: 0;
  background: #e51f1f;
  width: 100%;
  z-index: 0;
}
.recruit-button > span {
  display: block;
  position: relative;
  z-index: 2;
  transition: 0.3s ease;
  white-space: nowrap;
}
.recruit-button > span span {
  position: relative;
  z-index: 3;
  display: inline-block;
}
.recruit-button > span span:after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  height: 1px;
  background: #e51f1f;
  transition: 0.3s ease;
  z-index: 2;
}
.recruit-button:hover:before {
  left: 0;
}
.recruit-button:hover > span {
  color: #fff;
}
.recruit-button:hover > span > span:after {
  background: #fff;
}

.recruit-list img {
  width: 100%;
  display: block;
}

@media print, (min-width: 768px) {
  .section-top-recruit {
    display: flex;
    align-items: flex-start;
    margin-bottom: 70px;
  }
  .section-top-recruit .column-right {
    flex: 1;
    order: 1;
  }
  .section-top-recruit .column-left {
    width: 33.6%;
    order: 2;
  }
  .section-top-recruit .recruit-inner {
    width: 370px;
    margin-left: 45px;
    padding-top: 40px;
  }
  .section-top-recruit .access-title {
    margin-bottom: 32px;
  }

  .recruit-text {
    font-size: 20px;
    margin: 0 -5px 15px 0;
  }

  .recruit-description {
    line-height: 2.14;
    letter-spacing: 0.1em;
    margin-bottom: 46px;
    min-height: 98px;
    font-family: "Noto Sans JP", sans-serif;
  }

  .recruit-button {
    font-size: 14px;
    width: 273px;
    padding: 20px;
  }
  .recruit-button > span {
    display: block;
    overflow: hidden;
    position: relative;
    padding-right: 90px;
  }
  .recruit-button > span > span {
    padding-right: 12px;
  }
  .recruit-button > span > span:after {
    left: 100%;
    width: 150px;
  }

  .recruit-list {
    margin-left: -2px;
  }
  .recruit-list > li {
    width: 25%;
    padding: 0 0 2px 2px;
  }
  .recruit-list2 > li {
    width: 33%;
    padding: 0 0 2px 2px;
  }
}
@media only screen and (max-width: 767px) {
  .section-top-recruit {
    margin-bottom: 0.33rem;
  }
  .section-top-recruit .access-title {
    margin-bottom: 0.04rem;
  }
  .section-top-recruit .access-title .japan-text {
    font-style: normal;
  }
  .section-top-recruit .column-left {
    padding: 0 0.2rem;
  }

  .recruit-text {
    font-size: 0.18rem;
    margin: 0 -0.1rem 0.06rem 0;
  }

  .recruit-description {
    line-height: 2;
    font-size: 0.13rem;
    letter-spacing: 0.1em;
    margin: 0 -0.1rem 0.2rem 0;
  }

  .recruit-button {
    font-size: 0.14rem;
    width: 2.74rem;
    margin: 0 auto;
    padding: 0.2rem;
  }
  .recruit-button > span {
    overflow: hidden;
  }
  .recruit-button > span > span {
    padding-right: 0.1rem;
  }
  .recruit-button > span > span:after {
    width: 2rem;
    right: 0.16rem;
  }

  .recruit-list {
    margin: 0 1px 0.3rem 0;
  }
  .recruit-list > li {
    width: 50%;
    padding: 0 0 1px 1px;
  }
  .recruit-list > li:nth-child(1) {
    order: 1;
  }
  .recruit-list > li:nth-child(2) {
    order: 2;
  }
  .recruit-list > li:nth-child(3) {
    order: 5;
  }
  .recruit-list > li:nth-child(4) {
    order: 6;
  }
  .recruit-list > li:nth-child(5) {
    order: 3;
  }
  .recruit-list > li:nth-child(6) {
    order: 4;
  }
  .recruit-list > li:nth-child(7) {
    order: 7;
  }
  .recruit-list > li:nth-child(8) {
    order: 8;
  }
}


.sec_bnr50 {
  position: relative;
  z-index: 10;
  height: 214px;
}
.sec_bnr50 .bnr50 {
  position: absolute;
  z-index: 10;
  top: -50%;
}
.sec_bnr50+section {
  margin: -110PX 0 0 0;
}

@media (max-width: 750px) {
  .sec_bnr50 {
  height: 74.667vw;
  }
  .sec_bnr50 .bnr50 {
  position: absolute;
  z-index: 10;
  top: -13.333vw;
  padding-right: 0.2rem;
  }
  .sec_bnr50+section {
  margin: -13.333vw 0 0 0;
  }
}

/*# sourceMappingURL=top.css.map */
