@charset "UTF-8";
/* ------------------------
  reset
------------------------ */
html,
body {
  height: 100%;
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}

pre,
textarea {
  overflow: auto;
}

[hidden],
audio:not([controls]),
template {
  display: none;
}

details,
main,
summary {
  display: block;
}

input[type=number] {
  width: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

progress {
  display: inline-block;
}

small {
  font-size: 75%;
}

sub,
sup {
  position: relative;
  vertical-align: baseline; 
  font-size: 75%;
  line-height: 0;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

textarea {
  resize: vertical;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

img {
  border: 0; 
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  min-height: 1.5em;
  color: inherit;
  font-family: inherit; 
  font-weight: inherit;
  font-style: inherit;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer; 

  -webkit-appearance: button;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0; 
  border: 0;
}

input {
  line-height: normal;
}

code,
kbd,
pre,
samp {
  font-family: monospace,monospace;
}

ol,
ul {
  list-style: none;
}

select {
     -moz-appearance: none;
  -webkit-appearance: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

fieldset {
  border: 0;
}

b,
strong {
  font-weight: normal;
}

/* ------------------------
  Print Styles
------------------------ */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

/* Slider */
.slick-slider {
  display: block;
  box-sizing: border-box;
  position: relative;

  will-change: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
   -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  display: block;
  overflow: hidden;
  position: relative;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-track {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  margin-right: auto; 
  margin-left: auto;
}

.slick-track:before,
.slick-track:after {
  content: ""; 
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  border: 1px solid transparent; 
  height: auto;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* ------------------------
  Base Settings
------------------------ */
html {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 17px;
  }
}

body {
  position: relative; 
  background-color: #fcfcfc;
  word-wrap: break-word;
  color: #252350;
  font-family: "TsuAOldMinPr6M-CochinProR", serif;
  font-weight: normal;
  line-height: 1.75;

  -webkit-font-smoothing: antialiased;
          font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: none;
  color: #252350;

  text-underline-offset: 2px;
}
a:visited {
  color: #252350;
}
a:hover {
  text-decoration: none; 
  color: #252350;
}
a:active {
  text-decoration: none; 
  color: #252350;
}
a[href^="tel:"]:hover {
  color: #252350;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    cursor: text; 
    text-decoration: none;
  }
}

::-moz-selection {
  background-color: #252350;
  color: #fcfcfc;
  text-shadow: none;
}

::selection {
  background-color: #252350;
  color: #fcfcfc;
  text-shadow: none;
}

*[data-js-fadein] {
  opacity: 0;
  top: 5px;
  transition: opacity 0.5s ease-out 0.1s, top 0.5s ease-out 0.1s;
}
*[data-js-fadein].is-active {
  opacity: 1;
  top: 0;
}

.main {
  position: relative;
  margin-bottom: 6rem;
}

/* ------------------------
  Corsor
------------------------ */
@media screen and (min-width: 768px) {
  body,
  a,
  button,
  input[type="button"],
  input[type="reset"],
  input[type="submit"] {
    cursor: none !important;
  }
  .cursor,
  .chaser {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    cursor: none; 
    pointer-events: none;
  }
  .cursor {
    z-index: 1001; 
    width: 6px;
    height: 6px;
    background-color: #aca399;
  }
  .chaser {
    display: flex;
    opacity: 0.3; 
    z-index: 1000;
    border: #aca399 1px solid;
    width: 30px;
    height: 30px;
    transition: -webkit-transform cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s;
    transition: transform cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s;
    transition: transform cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s, -webkit-transform cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s;
    text-align: center;

    justify-content: center;
    align-items: center;
  }
  .chaser.is-active {
    opacity: 1;
    width: calc(30px + 10px);
    height: calc(30px + 10px);
    transition: opacity 0.1s ease-out, width 0.1s ease-out, height 0.1s ease-out;
  }
}

.a-brandName__en {
  display: block;
  font-family: "BaskervilleMTPro-Regular", serif;
  font-size: 0.7rem;
  line-height: 1.1;
}

.a-brandName__ja {
  display: block;
  font-size: 1.75rem;
}

.a-imgCropper {
  display: none;
  position: absolute;
  z-index: 2;
}
.a-imgCropper.-top {
  top: -1px;
  left: 0;
  width: 100%;
  height: 4px;
  background-image: url(../img/imgCropper-top.svg);
  background-repeat: repeat-x;
  background-position-x: left;
  background-position-y: top;
  background-size: auto 4px;
}
.a-imgCropper.-right {
  top: 0;
  right: -1px;
  width: 4px;
  height: 100%;
  background-image: url(../img/imgCropper-right.svg);
  background-repeat: repeat-y;
  background-position-x: left;
  background-position-y: top;
  background-size: 4px auto;
}
.a-imgCropper.-bottom {
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 4px;
  background-image: url(../img/imgCropper-bottom.svg);
  background-repeat: repeat-x;
  background-position-x: left;
  background-position-y: top;
  background-size: auto 4px;
}
.a-imgCropper.-left {
  top: 0;
  left: -1px;
  width: 4px;
  height: 100%;
  background-image: url(../img/imgCropper-left.svg);
  background-repeat: repeat-y;
  background-position-x: left;
  background-position-y: top;
  background-size: 4px auto;
}
.-topCrop .a-imgCropper.-top,
.-rightCrop .a-imgCropper.-right,
.-bottomCrop .a-imgCropper.-bottom,
.-leftCrop .a-imgCropper.-left {
  display: block;
}

.a-loading {
  opacity: 0;
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 1s linear 1s; 
  background-color: #fcfcfc;
  pointer-events: none;
}
.a-loading.is-active {
  opacity: 1;
}

.a-menuBtn {
  display: block;
  position: fixed;
  z-index: 20; 
  bottom: calc(calc(100vw / 13) + constant(safe-area-inset-bottom));
  bottom: calc(calc(100vw / 13) + env(safe-area-inset-bottom));
  left: calc((calc(100vw / 13) * 11) - 12px);
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  background-color: #fcfcfc;
}
.a-menuBtn span {
  display: block;
  position: relative;
  left: 10px;
  border-top: #252350 1px solid; 
  width: 30px;
  transition: opacity 0.1s ease-out, top 0.1s ease-out;
}
.a-menuBtn span::after {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  right: 0;
  border-width: 0 2px 1px 2px;
  border-style: solid;
  border-color: transparent transparent #252350 transparent; 
  width: 0;
  height: 0;
}
.a-menuBtn span.i1 {
  top: 18px;
}
.a-menuBtn span.i2 {
  top: 25px;
}
.a-menuBtn span.i3 {
  top: 32px;
}
.is-shownavi .a-menuBtn span.i1 {
  opacity: 0; 
  top: 20px;
}
.is-shownavi .a-menuBtn span.i2 {
  top: 25px;
}
.is-shownavi .a-menuBtn span.i3 {
  opacity: 0; 
  top: 30px;
}
@media screen and (min-width: 768px) {
  .a-menuBtn {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 0;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

.a-pageTitle {
  letter-spacing: 0.1em;
  color: #252350; 
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R", serif;
  font-size: 1.5rem;
  line-height: 100%;

  -webkit-writing-mode: vertical-rl;

      -ms-writing-mode: tb-rl;

          writing-mode: vertical-rl;
}
#home .a-pageTitle {
  color: #fcfcfc;
}
#brands .a-pageTitle {
  color: #252350;
}
@media screen and (min-width: 768px) {
  #brands .a-pageTitle,
  #sakaishokai .a-pageTitle,
  #sowado .a-pageTitle,
  #serisunawachisakau .a-pageTitle {
    color: #fcfcfc !important;
  }
}

.a-sectionTitle__en {
  display: block;
  font-family: "BaskervilleMTPro-Regular", serif;
  font-size: 1.1rem;
  line-height: 1.1;
}

.a-sectionTitle__ja {
  display: block; 
  font-family: "TsukuGoPr5-R-AvenirNextLTPro-Regular", serif;
  font-size: 0.7rem;
}

.a-textLink__en {
  display: block;
  font-family: "BaskervilleMTPro-Regular", serif;
  font-size: 0.7rem;
  line-height: 1.1;
}

.a-textLink__ja {
  display: block;
  position: relative;
  border-top: #252350 1px solid;
}
.a-textLink__ja::after {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  right: 0;
  border-width: 0 2px 1px 2px;
  border-style: solid;
  border-color: transparent transparent #252350 transparent; 
  width: 0;
  height: 0;
}

.m-brandProfile__data dt {
  font-family: "TsukuGoPr5-R-AvenirNextLTPro-Regular", serif; 
  font-size: 0.7rem;
}

.m-brandProfile__data dd {
  margin-bottom: 0.5rem;
}
.m-brandProfile__data dd:last-child {
  margin-bottom: 0;
}
.m-brandProfile__data dd.-icons a {
  margin-right: 0.5rem;
}

.m-brandThumbnail {
  position: relative;
}
.m-brandThumbnail__logo {
  margin-bottom: 2rem; 
  text-align: center;
}
.m-brandThumbnail__logo svg {
  display: block;
  margin: 0 auto;
  width: calc(calc(100vw / 13) * 5);
  max-width: 200px; 
  height: auto;
}
.-shizen .m-brandThumbnail__logo svg {
  max-width: 30px;
}
.-serisunawachisakau .m-brandThumbnail__logo svg {
  max-width: 120px;
}
.m-brandThumbnail__img {
  position: relative;
  margin-bottom: 2rem; 
  width: calc(calc(100vw / 13) * 12);
  height: calc(calc(100vw / 13) * 13);
}
.m-brandThumbnail__img img {
  width: 100%;
  height: 100%;

  -o-object-fit: cover;

     object-fit: cover;
}
.-right .m-brandThumbnail__img {
  margin-left: calc(100vw / 13);
}
.m-brandThumbnail__links {
  padding: 0 calc(100vw / 13);
}
.m-brandThumbnail__links__item {
  margin-bottom: 1rem;
}
.m-brandThumbnail__links__item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .m-brandThumbnail__logo {
    position: absolute;
    top: auto;
    right: calc(calc(100vw / 25) * 2);
    bottom: 80px;
    margin-bottom: 0; 
    width: calc(calc(100vw / 25) * 8);
    text-align: right;
  }
  .m-brandThumbnail__logo svg {
    margin: 0 0 0 auto;
    width: calc(calc(100vw / 25) * 4);
    height: auto;
  }
  .-right .m-brandThumbnail__logo {
    right: auto;
    left: calc(calc(100vw / 25) * 2);
  }
  .-sakaishokai .m-brandThumbnail__logo {
    bottom: 200px;
  }
  .-sowado .m-brandThumbnail__logo {
    bottom: 130px;
  }
  .-shizen .m-brandThumbnail__logo {
    bottom: 130px;
  }
  .-serisunawachisakau .m-brandThumbnail__logo {
    bottom: 130px;
  }
  .-serisunawachisakau .m-brandThumbnail__logo svg {
    width: calc(calc(100vw / 25) * 2);
  }
  .m-brandThumbnail__img {
    margin-bottom: 0; 
    width: calc(calc(100vw / 25) * 14);
    height: calc(calc(100vw / 25) * 8);
  }
  .-right .m-brandThumbnail__img {
    margin-left: 0;
    margin-left: calc(calc(100vw / 25) * 11);
  }
  .m-brandThumbnail__links {
    position: absolute;
    right: calc(calc(100vw / 25) * 2);
    bottom: 0;
    padding: 0;
    width: calc(calc(100vw / 25) * 8);
  }
  .-right .m-brandThumbnail__links {
    right: auto;
    left: calc(calc(100vw / 25) * 2);
  }
}

.m-compayProfile__name {
  margin-bottom: 1rem; 
  font-size: 1.2rem;
}

.m-compayProfile__data dt {
  font-family: "TsukuGoPr5-R-AvenirNextLTPro-Regular", serif; 
  font-size: 0.7rem;
}

.m-compayProfile__data dd {
  margin-bottom: 0.5rem;
}
.m-compayProfile__data dd:last-child {
  margin-bottom: 0;
}
.m-compayProfile__data dd.-icons a {
  margin-right: 0.5rem;
}

.m-imageConteiner {
  position: relative; 
  width: 100%;
  height: 100%;
}

.m-imageContainerHorizontalScroll {
  position: relative; 
  width: 100%;
  height: 100%;
}

.m-imageConteinerSingle {
  position: relative;
  width: 100%;
  height: 100%;
}
.m-imageConteinerSingle img {
  width: 100%;
  height: 100%;

  -o-object-fit: cover;

     object-fit: cover;
}

.m-imageSlider {
  z-index: 1; 
  width: 100%;
  height: 100%;
}
.m-imageSlider__item {
  width: 100%;
  height: 100%;
}
.m-imageSlider__item img {
  width: 100%;
  height: 100%;

  -o-object-fit: cover;

     object-fit: cover;
}
.m-imageSlider .slick-list {
  height: 100%;
}
.m-imageSlider .slick-list .slick-track {
  height: 100%;
}
.m-imageSlider .slick-list .slick-track .slick-slide {
  height: 100%;
}
.m-imageSlider .slick-list .slick-track .slick-slide * {
  height: 100%;
}

.m-newsList__item {
  margin-bottom: 1rem;
}
.m-newsList__item:last-child {
  margin-bottom: 0;
}
.m-newsList__item__date {
  display: block; 
  font-family: "TsukuGoPr5-R-AvenirNextLTPro-Regular", serif;
  font-size: 0.7rem;
}
.m-newsList__item__title {
  position: relative;
  border-top: #252350 1px solid;
}
.m-newsList__item__title::after {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  right: 0;
  border-width: 0 2px 1px 2px;
  border-style: solid;
  border-color: transparent transparent #252350 transparent; 
  width: 0;
  height: 0;
}

.m-pager__list {
  display: flex;
  flex-direction: row;
  box-sizing: border-box; 
  width: 100%;

  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.m-pager__list__item {
  margin: 0 5px 0 0;
}
.m-pager__list__item a {
  padding: 0.25rem 0.5rem; 
  border-top: #252350 1px solid;
  text-align: left;
  font-family: "TsukuGoPr5-R-AvenirNextLTPro-Regular", serif;
  font-size: 0.7rem;
}
.m-pager__list__item:last-child a {
  position: relative;
  border-top: #252350 1px solid;
}
.m-pager__list__item:last-child a::after {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  right: 0;
  border-width: 0 2px 1px 2px;
  border-style: solid;
  border-color: transparent transparent #252350 transparent; 
  width: 0;
  height: 0;
}

.m-profile__name span {
  display: block;
  font-family: "TsukuGoPr5-R-AvenirNextLTPro-Regular", serif; 
  font-size: 0.7rem;
}

.m-profile__name b {
  display: block;
  font-size: 1.2rem;
}

.o-brandList__subject {
  margin-bottom: 1rem; 
  font-family: "TsukuGoPr5-R-AvenirNextLTPro-Regular", serif;
  font-size: 0.7rem;
}

.o-brandList__list__item {
  margin-bottom: 2rem;
}
.o-brandList__list__item a {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  position: relative;
  padding: 1rem 0 0 0; 
  border-top: #252350 1px solid;
  width: 100%;

  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}
.o-brandList__list__item a::after {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  right: 0;
  border-width: 0 2px 1px 2px;
  border-style: solid;
  border-color: transparent transparent #252350 transparent; 
  width: 0;
  height: 0;
}
.o-brandList__list__item__name {
  width: calc(calc(100vw / 13) * 7);
}
.o-brandList__list__item__name__ja {
  display: block;
}
.o-brandList__list__item__name__en {
  display: block;
  letter-spacing: 0.1em; 
  font-family: "BaskervilleMTPro-Regular", serif;
  font-size: 0.7rem;
}
.o-brandList__list__item__logo {
  padding: 0.3rem 0 0 0; 
  width: calc(calc(100vw / 13) * 4);
  text-align: center;
}
.o-brandList__list__item__logo svg {
  margin: 0 auto;
}
.-shizen .o-brandList__list__item__logo svg {
  width: 16px;
  height: auto;
}

@media screen and (min-width: 768px) {
  .o-brandList {
    width: calc(calc(100vw / 25) * 19);
  }
  .o-brandList__list {
    display: flex;
    flex-direction: row;
    box-sizing: border-box; 
    width: 100%;

    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
  .o-brandList__list__item {
    width: calc(calc(100vw / 25) * 9);
  }
}

.o-contactform .wpcf7-not-valid-tip {
  margin-top: 0.25rem; 
  font-family: "TsukuGoPr5-R-AvenirNextLTPro-Regular", serif;
  font-size: 0.7rem;
}

.o-contactform__input {
  margin-bottom: 2rem;
}
.o-contactform__input__dt {
  margin-bottom: 0.5rem; 
  font-family: "TsukuGoPr5-R-AvenirNextLTPro-Regular", serif;
  font-size: 0.7rem;
}
.o-contactform__input__dd {
  margin-bottom: 1rem;
}
.o-contactform__input__dd:last-child {
  margin-bottom: 0;
}
.o-contactform__input__dd input:not([type="radio"]),
.o-contactform__input__dd textarea {
  display: block;
  box-sizing: border-box; 
  width: 100%;
}
.o-contactform__input__dd .wpcf7-form-control.wpcf7-radio {
  display: flex;
}
.o-contactform__input__dd .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  margin: 0 0 0 0;
}
.o-contactform__input__dd .wpcf7-form-control.wpcf7-radio .wpcf7-list-item label {
  display: flex;
  margin-right: 0.75rem; 

  flex-wrap: nowrap;
  align-items: center;
}
.o-contactform__input__dd .wpcf7-form-control.wpcf7-radio .wpcf7-list-item label input {
  margin-right: 0.25rem;
}

.o-contactform__submit input {
  display: block;
  box-sizing: border-box;
  padding: 0.25rem 0; 
  border-width: 1px;
  width: 100%;
  background-color: #fcfcfc;
}

.t-recruit__form .wpcf7 .ajax-loader {
  display: block; 
  margin: 1rem auto 0;
  background-color: #252350;
}

.t-recruit__form .wpcf7 form.invalid .wpcf7-response-output,
.t-recruit__form .wpcf7 form.unaccepted .wpcf7-response-output {
  margin: 1rem 0 0 0;
  padding: 1rem;
  padding: 0.5rem;
  border: none;
  width: 100%;
  background-color: #252350;
  text-align: center; 
  color: #fcfcfc;
  font-family: "TsukuGoPr5-R-AvenirNextLTPro-Regular", serif;
  font-size: 0.7rem;
}

.o-footer__recruit {
  margin-bottom: 4rem; 
  padding: 0 calc(100vw / 13);
}
.o-footer__recruit .a-sectionTitle {
  margin-bottom: 1rem;
}
.o-footer__recruit__text {
  margin-bottom: 2rem;
}
.recruit .o-footer__recruit,
#recruit .o-footer__recruit {
  display: none;
}

.o-footer .a-pagetop {
  margin: 0 auto;
  text-align: center;
}

.o-footer__contents {
  position: relative;
  margin-top: 2rem;
  padding: 3rem calc(100vw / 13);
  background-color: #252350;
  color: #fcfcfc;
}
.o-footer__contents::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-image: url(../img/imgCropper-top.svg);
  background-repeat: repeat-x;
}
.o-footer__contents .o-brandList__list__item a {
  border-top: #fcfcfc 1px solid;
}
.o-footer__contents .o-brandList__list__item a::after {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  right: 0;
  border-width: 0 2px 1px 2px;
  border-style: solid;
  border-color: transparent transparent #fcfcfc transparent; 
  width: 0;
  height: 0;
}
.o-footer__contents .o-brandList__list__item__name {
  color: #fcfcfc;
}
.o-footer__contents .o-brandList__list__item__logo svg path {
  fill: #fcfcfc;
}
.o-footer__contents .o-brandList__list__item__logo svg path[fill=white] {
  fill: #252350;
}
.o-footer__contents__copyright {
  font-size: 1rem;
}
.o-footer__contents__copyright__ja {
  display: block;
}
.o-footer__contents__copyright__ja a {
  color: #fcfcfc;
}
.o-footer__contents__copyright__en {
  display: block;
  letter-spacing: 0.1em; 
  font-family: "BaskervilleMTPro-Regular", serif;
  font-size: 0.7rem;
}

@media screen and (min-width: 768px) {
  .o-footer__recruit {
    margin-left: calc(calc(100vw / 25) * 2);
    padding: 6rem 0 0 0;
    width: calc(calc(100vw / 25) * 9);
  }
}

.o-header {
  position: fixed;
  z-index: 10;
  bottom: 0;
  bottom: calc((calc(100vw / 13) *2) + 50px + constant(safe-area-inset-bottom));
  bottom: calc((calc(100vw / 13) *2) + 50px + env(safe-area-inset-bottom));
  left: calc((calc(100vw / 13) * 11));
  width: 1.5rem;
}
.o-header .a-pageTitle {
  transition: opacity 0.3s linear;
}
.o-header.is-hide .a-pageTitle {
  opacity: 0; 

  will-change: opacity;
}
@media screen and (min-width: 768px) {
  .o-header {
    top: 50vh;
    right: auto;
    bottom: auto;
    left: calc(calc(100vw / 25) * 24);
    -webkit-transform: none;
            transform: none;
  }
}

.o-homeBrandList__item {
  margin-bottom: 4rem;
}

@media screen and (min-width: 768px) {
  .o-homeBrandList {
    overflow-x: hidden;
  }
  .o-homeBrandList__item {
    margin-bottom: 6rem;
  }
}

.o-navi {
  visibility: hidden;
  box-sizing: border-box;
  position: fixed;
  z-index: 19;
  top: 0;
  left: 0;
  padding: calc(100vw / 13) calc(100vw / 13) 0;
  width: 100%;
  height: 100%;
  transition: visibility 0s linear 0.2s; 
  pointer-events: none;
}
.is-shownavi .o-navi {
  visibility: visible;
  overflow: auto; 
  transition: visibility 0s linear 0s;
  pointer-events: all;
}
.o-navi::before {
  content: "";
  opacity: 0;
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.25s ease-out 0s; 
  background-color: #fcfcfc;
}
.is-shownavi .o-navi::before {
  opacity: 1;
  transition: opacity 0.15s ease-out 0s;
}
.o-navi .o-brandList {
  opacity: 0;
  position: relative;
  z-index: 1;
  left: 10px;
  transition: opacity 0.1s ease-out 0s, left 0.1s ease-out 0.1s;
}
.is-shownavi .o-navi .o-brandList {
  opacity: 1;
  left: 0;
  transition: opacity 0.2s ease-out 0s, left 0.2s ease-out 0s;
}
.o-navi__sublink {
  opacity: 0;
  position: relative;
  z-index: 1;
  left: 10px;
  padding-bottom: 2rem;
  transition: opacity 0.1s ease-out 0s, left 0.1s ease-out 0.1s;
}
.is-shownavi .o-navi__sublink {
  opacity: 1;
  left: 0;
  transition: opacity 0.2s ease-out 0s, left 0.2s ease-out 0s;
}
.o-navi__sublink__item {
  text-align: center;
}
.o-navi__sublink__item a {
  font-family: "TsukuGoPr5-R-AvenirNextLTPro-Regular", serif; 
  font-size: 0.7rem;
}
.o-navi__copyright {
  display: block;
  opacity: 0;
  position: relative;
  z-index: 1;
  padding-bottom: 55px;
  transition: opacity 0.1s ease-out 0s; 
  text-align: center;
  font-size: 0.7rem;
}
.is-shownavi .o-navi__copyright {
  opacity: 1;
  transition: opacity 0.2s ease-out 0s;
}
@media screen and (min-width: 768px) {
  .o-navi {
    padding: 0 calc(calc(100vw / 25) * 2); 
    width: calc(calc(100vw / 25) * 21);
  }
  .o-navi::after {
    content: "";
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    right: -3px;
    width: 4px;
    height: 100%;
    transition: opacity 0.2s ease-out 0s; 
    background-image: url(../img/imgCropper-left.svg);
    background-repeat: repeat-y;
    background-position-x: left;
    background-position-y: top;
  }
  .is-shownavi .o-navi::after {
    opacity: 1;
    transition: opacity 0.1s ease-out 0s;
  }
  .o-navi .o-brandList {
    top: calc(50% - 162px);
    left: -10px;
    width: calc(calc(100vw / 25) * 17);
  }
  .o-navi .o-brandList__list__item {
    width: calc(calc(100vw / 25) * 8);
  }
  .o-navi__sublink {
    position: absolute;
    top: calc(75%);
    left: calc(calc(100vw / 25) * 14 - 10px);
    padding-bottom: 0;
    width: calc(calc(100vw / 25) * 6);
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .is-shownavi .o-navi__sublink {
    left: calc(calc(100vw / 25) * 14);
  }
  .o-navi__sublink__item {
    text-align: left;
  }
  .o-navi__copyright {
    position: absolute;
    bottom: calc(calc(100vw / 25) / 2);
    left: calc(calc(100vw / 25) * 14);
    padding-bottom: 0;
    width: calc(calc(100vw / 25) * 6);
    text-align: left;
  }
}

.t-privacypolicy__texts {
  padding: calc(var(--vh) - (calc(100vw / 13)) * 2) calc(100vw / 13) 0 calc(100vw / 13);
}
.t-privacypolicy__texts > p:first-child {
  margin-bottom: 6rem;
}
.t-privacypolicy__texts > * {
  margin-bottom: 2rem;
}
.t-privacypolicy__texts > *:last-child {
  margin-bottom: 0;
}
.t-privacypolicy__texts > * ol,
.t-privacypolicy__texts > * ul {
  margin-bottom: 2rem;
}
.t-privacypolicy__texts > * li {
  margin-bottom: 1rem;
}
.t-privacypolicy__texts > * li ol {
  margin-top: 1rem;
}
.t-privacypolicy__texts > h2 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.t-privacypolicy__texts ol {
  padding-left: 1em;
}
.t-privacypolicy__texts ol li {
  list-style: decimal;
  list-style-position: outside;
}
.t-privacypolicy__texts .tR {
  text-align: right;
}

.t-privacypolicy__back {
  padding: 6rem calc(100vw / 13) 0;
}

@media screen and (min-width: 768px) {
  .t-privacypolicy__texts {
    margin: 0 0 0 calc(calc(100vw / 25) * 2); 
    padding: calc(50vh - 20px) 0 0 0;
    width: calc(calc(100vw / 25) * 9);
  }
  .t-privacypolicy__texts > p:first-child {
    margin-bottom: 6rem; 
    padding-right: 0;
  }
  .t-privacypolicy__back {
    margin: 0 0 0 calc(calc(100vw / 25) * 2); 
    padding: 6rem 0 0 0;
    width: calc(calc(100vw / 25) * 9);
  }
}

.t-brand {
  position: relative;
}
.t-brand__mainvisual {
  width: calc((100vw / 13) * 10); 
  height: calc(var(--vh) - ((100vw / 13) * 4));
}
.t-brand__name {
  display: flex;
  flex-direction: row;
  box-sizing: border-box; 
  padding: 6rem calc(calc(100vw / 13) *2) 0 calc(100vw / 13);
  width: 100%;

  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}
.t-brand__name .a-brandName {
  width: calc((100vw / 13) * 5);
}
.t-brand__name__logo {
  width: calc((100vw / 13) * 4);
  text-align: right;
}
.t-brand__name__logo svg {
  width: 100%;
  max-width: 200px;
  height: auto;
}
.t-brand.serisunawachisakau .t-brand__name__logo {
  width: calc((100vw / 13) * 3);
}
.t-brand.serisunawachisakau .t-brand__name__logo svg {
  max-width: 100px;
}
.t-brand__copy {
  padding: 4rem calc(100vw / 13) 0;
}
.t-brand__copy > p {
  position: relative; 
  margin-bottom: 1rem;
}
.t-brand__news {
  padding: 6rem calc(100vw / 13) 0;
}
.t-brand__news .a-sectionTitle {
  margin-bottom: 1rem;
}
.t-brand__images {
  padding: 6rem 0 0 0;
}
.t-brand__images .m-imageContainerHorizontalScroll {
  height: calc((100vw / 13) * 8);
}
.t-brand__profile {
  padding: 3rem calc(100vw / 13) 0;
}
.t-brand__back {
  padding: 6rem calc(100vw / 13) 0;
}
@media screen and (min-width: 768px) {
  .t-brand__mainvisual {
    position: absolute;
    position: sticky;
    z-index: 0; 
    top: 0;
    right: 0;
    left: calc(calc(100vw / 25) * 15);
    width: calc(calc(100vw / 25) * 10);
    height: calc(100vh);
  }
  .t-brand__mainvisual .a-imgCropper.-top {
    display: none;
  }
  .t-brand__mainvisual .a-imgCropper.-left {
    display: block;
  }
  .t-brand__mainvisual .a-imgCropper.-bottom {
    display: none;
  }
  .t-brand__mainvisual .a-imgCropper.-right {
    display: none;
  }
  .t-brand__name {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    position: relative;
    margin: -50vh 0 0 calc(calc(100vw / 25) * 2);
    padding: 0 0 0 0;
    width: 100%;
    width: calc(calc(100vw / 25) * 9); 

    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
  }
  .t-brand__name .a-brandName {
    width: calc(calc(100vw / 25) * 5);
  }
  .t-brand__name__logo {
    width: calc(calc(100vw / 25) * 3);
  }
  .t-brand__name__logo svg {
    width: 100%;
    max-width: 200px;
    height: auto;
  }
  .t-brand .serisunawachisakau .t-brand__name__logo {
    width: calc(calc(100vw / 25) * 2);
  }
  .t-brand .serisunawachisakau .t-brand__name__logo svg {
    max-width: 130px;
  }
  .t-brand__copy {
    margin: 0 0 0 calc(calc(100vw / 25) * 2); 
    padding: 6rem 0 0 0;
    width: calc(calc(100vw / 25) * 9);
  }
  .t-brand__news {
    margin: 0 0 0 calc(calc(100vw / 25) * 2); 
    padding: 6rem 0 0 0;
    width: calc(calc(100vw / 25) * 9);
  }
  .t-brand__images {
    margin: 0 0 0 calc(calc(100vw / 25) * 2); 
    padding: 6rem 0 0 0;
    width: calc(calc(100vw / 25) * 9);
  }
  .t-brand__images .m-imageContainerHorizontalScroll {
    height: calc(calc(100vw / 25) * 6);
  }
  .t-brand__images .m-imageContainerHorizontalScroll .a-imgCropper.-top {
    display: block;
  }
  .t-brand__images .m-imageContainerHorizontalScroll .a-imgCropper.-left {
    display: block;
  }
  .t-brand__images .m-imageContainerHorizontalScroll .a-imgCropper.-bottom {
    display: block;
  }
  .t-brand__images .m-imageContainerHorizontalScroll .a-imgCropper.-right {
    display: block;
  }
  .t-brand__profile {
    margin: 0 0 0 calc(calc(100vw / 25) * 2); 
    padding: 3rem 0 0 0;
    width: calc(calc(100vw / 25) * 9);
  }
  .t-brand__back {
    margin: 0 0 0 calc(calc(100vw / 25) * 2); 
    padding: 6rem 0 0 0;
    width: calc(calc(100vw / 25) * 9);
  }
}

.t-entry {
  position: relative;
}
.t-entry__contents {
  padding: calc(var(--vh) - (calc(100vw / 13) * 2) - 13px) calc(100vw / 13) 0 calc(100vw / 13);
}
.t-entry__contents__title {
  margin-bottom: 0.5rem; 
  padding-right: calc(calc(100vw / 13) + 50px);
  font-family: "FOT-筑紫Aオールド明朝 Pr6 L", serif;
  font-size: 1.75rem;
  font-weight: normal;
}
.t-entry__contents__meta {
  margin-bottom: 2rem;
}
.t-entry__contents__meta__date {
  display: block; 
  font-family: "TsukuGoPr5-R-AvenirNextLTPro-Regular", serif;
  font-size: 0.7rem;
}
.t-entry__contents__meta__cateogry {
  display: block; 
  font-family: "TsukuGoPr5-R-AvenirNextLTPro-Regular", serif;
  font-size: 0.7rem;
}
.t-entry__contents__data > p {
  margin-bottom: 2rem;
}
.t-entry__contents__data .m-imageConteinerSingle {
  margin-bottom: 2rem;
}
.t-entry__contents__data *:last-child {
  margin-bottom: 0;
}
.t-entry__contents__data__links__list__item {
  margin-bottom: 0.5rem;
}
.t-entry__contents__data__links__list__item:last-child {
  margin-bottom: 0;
}
.t-entry__contents__data__links__list__item a {
  text-decoration: underline;
}
.t-entry__contents .m-pager {
  margin-top: 2rem;
}
.t-entry__back {
  padding: 6rem calc(100vw / 13) 0;
}
@media screen and (min-width: 768px) {
  .t-entry__contents {
    margin: 0 0 0 calc(calc(100vw / 25) * 2); 
    padding: calc(50vh - 20px) 0 0 0;
    width: calc(calc(100vw / 25) * 9);
  }
  .t-entry__contents__title {
    padding-right: 0;
  }
  .t-entry__back {
    margin: 0 0 0 calc(calc(100vw / 25) * 2); 
    padding: 6rem 0 0 0;
    width: calc(calc(100vw / 25) * 9);
  }
}

.t-home__mainvisual {
  height: calc(var(--vh) - (100vw / 13) - 60px);
}

.t-home__copy {
  padding: 4rem calc(100vw / 13) 0;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R", serif;
}
.t-home__copy p {
  position: relative; 
  margin-bottom: 1rem;
}
.t-home__copy__images {
  display: none;
}

.t-home__news {
  padding: 6rem calc(100vw / 13) 0;
}
.t-home__news .a-sectionTitle {
  margin-bottom: 1rem;
}

.t-home__brands {
  padding: 6rem 0 0;
}
.t-home__brands .a-sectionTitle {
  margin-bottom: 1rem;
  padding: 0 calc(100vw / 13);
}

.t-home__profile {
  padding: 6rem 0 0;
}
.t-home__profile .a-sectionTitle {
  margin-bottom: 1rem;
  padding: 0 calc(100vw / 13);
}
.t-home__profile .m-imageConteinerSingle {
  /*calc(calc(100vw / 13) * 6);*/
  margin-bottom: 1rem; 
  width: 100%;
  height: auto;
}
.t-home__profile .m-profile {
  padding: 0 calc(100vw / 13);
}

.t-home__company {
  padding: 6rem calc(100vw / 13) 0;
}
.t-home__company .a-sectionTitle {
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .t-home__mainvisual {
    display: none;
  }
  .t-home__copy {
    position: relative;
    padding: 0;
    font-size: 1.1rem;
  }
  .t-home__copy__block {
    position: relative;
  }
  .t-home__copy__block__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    min-height: 21em; 
    -webkit-transform: translate(-50%, -50%); 
            transform: translate(-50%, -50%);

    -webkit-writing-mode: vertical-rl;

        -ms-writing-mode: tb-rl;

            writing-mode: vertical-rl;
  }
  .t-home__copy__block:nth-child(1) {
    width: calc(calc(100vw / 25) * 13); 
    height: 100vh;
  }
  .t-home__copy__block:nth-child(1) .t-home__copy__block__inner {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .t-home__copy__block:nth-child(2) {
    width: calc(calc(100vw / 25) * 17); 
    height: calc(calc(100vw / 25) * 10);
  }
  .t-home__copy__block:nth-child(3) {
    width: calc(calc(100vw / 25) * 16); 
    height: calc(calc(100vw / 25) * 13);
  }
  .t-home__copy__images {
    display: block;
    position: absolute;
    top: 0; 
    right: 0;
  }
  .t-home__copy__images__item {
    position: relative;
  }
  .t-home__copy__images__item img {
    width: 100%;
    height: 100%;

    -o-object-fit: cover;

       object-fit: cover;
  }
  .t-home__copy__images__item:nth-child(1) {
    z-index: 0; 
    width: calc(calc(100vw / 25) * 12);
    height: calc(100vh + 3px);
  }
  .t-home__copy__images__item:nth-child(2) {
    z-index: 1; 
    margin-top: -3px;
    margin-left: calc(calc(100vw / 25) * 4);
    width: calc(calc(100vw / 25) * 8);
    height: calc( (calc(100vw / 25) * 10) + 6px);
  }
  .t-home__copy__images__item:nth-child(3) {
    z-index: 0;
    margin-top: -3px; 
    margin-left: calc(calc(100vw / 25) * 3);
    width: calc(calc(100vw / 25) * 9);
    height: calc(calc(100vw / 25) * 13);
  }
  .t-home__news {
    margin-left: calc(calc(100vw / 25) * 2);
    padding: 6rem 0 0 0;
    width: calc(calc(100vw / 25) * 9);
  }
  .t-home__pcwapper {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    padding: 6rem calc(calc(100vw / 25) * 2) 0; 
    width: 100%;

    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-end;
  }
  .t-home__profile {
    margin: 0;
    padding: 0;
    width: calc(calc(100vw / 25) * 9);
  }
  .t-home__profile .a-sectionTitle {
    padding: 0;
  }
  .t-home__profile .m-imageConteinerSingle {
    height: auto;
    /*calc(calc(100vw / 25) * 5);*/
  }
  .t-home__profile .m-imageConteinerSingle .a-imgCropper {
    display: block;
  }
  .t-home__profile .m-profile {
    padding: 0;
  }
  .t-home__company {
    margin: 0;
    padding: 0;
    width: calc(calc(100vw / 25) * 8);
  }
}

.t-news {
  position: relative;
}
.t-news__news {
  padding: calc(var(--vh) - (calc(100vw / 13) * 2) - 13px) calc(100vw / 13) 0 calc(100vw / 13);
}
.t-news__news .m-pager {
  margin-top: 2rem;
}
.t-news__back {
  padding: 6rem calc(100vw / 13) 0;
}
@media screen and (min-width: 768px) {
  .t-news__news {
    margin: 0 0 0 calc(calc(100vw / 25) * 2); 
    padding: calc(50vh - 20px) 0 0 0;
    width: calc(calc(100vw / 25) * 9);
  }
  .t-news__back {
    margin: 0 0 0 calc(calc(100vw / 25) * 2); 
    padding: 6rem 0 0 0;
    width: calc(calc(100vw / 25) * 9);
  }
}

.t-recruit {
  position: relative;
}
.t-recruit__texts {
  padding: calc(var(--vh) - (calc(100vw / 13)) * 2) calc(100vw / 13) 0 calc(100vw / 13);
}
.t-recruit__texts__main {
  margin-bottom: 0.5rem;
}
.t-recruit__texts__main .m-imageConteinerSingle {
  margin-bottom: 2.5rem;
}
.t-recruit__texts__main p {
  margin-bottom: 1rem;
}
.t-recruit__texts__main p:last-child {
  margin-bottom: 0;
}
.t-recruit__texts__sub {
  font-family: "TsukuGoPr5-R-AvenirNextLTPro-Regular", serif; 
  font-size: 0.7rem;
}
.t-recruit__texts__sub p {
  margin-bottom: 0.5rem;
}
.t-recruit__texts__sub p:last-child {
  margin-bottom: 0;
}
.t-recruit__texts__sub p a {
  text-decoration: underline;

  text-underline-offset: 2px;
}
.t-recruit__form {
  padding: 6rem calc(100vw / 13) 0;
}
.t-recruit__back {
  padding: 6rem calc(100vw / 13) 0;
}
@media screen and (min-width: 768px) {
  .t-recruit__texts {
    margin: 0 0 0 calc(calc(100vw / 25) * 2); 
    padding: calc(50vh - 20px) 0 0 0;
    width: calc(calc(100vw / 25) * 9);
  }
  .t-recruit__form {
    margin: 0 0 0 calc(calc(100vw / 25) * 2); 
    padding: 6rem 0 0 0;
    width: calc(calc(100vw / 25) * 9);
  }
  .t-recruit__back {
    margin: 0 0 0 calc(calc(100vw / 25) * 2); 
    padding: 6rem 0 0 0;
    width: calc(calc(100vw / 25) * 9);
  }
}