/* web fonts
---------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&display=swap&subset=japanese');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');

/* reset
---------------------------------------------------------- */
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, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

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

caption, th {
  text-align: left;
}

img {
  vertical-align: middle;
}

/* basic setting
---------------------------------------------------------- */
body {
  /* font-family: "Noto Sans JP", sans-serif; */
  font-family: "Cormorant Garamond", serif;
  color: #231815;
  font-size: 18px;
  line-height: 1.6;
}

body * {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

input, button, textarea, select {
  color: #161f3e;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
}

textarea {
  vertical-align: top;
}

*:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

a:hover {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* common class
---------------------------------------------------------- */
@media only screen and (min-width: 641px) {
  .pc-non {
    display: none !important;
  }
}
@media only screen and (max-width: 640px) {
  .sp-non {
    display: none !important;
  }
}
.font-num {
  font-family: "Noto Serif JP", serif;
}

.flex {
  display: flex;
  gap: 30px;
  .item {
    flex: 1;
  }
}

.mb-0 {
  margin-bottom: 0;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-60 {
  margin-top: 50px;
}
.mt-80 {
  margin-top: 80px;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pt-160 {
  padding-top: 160px;
}

@media screen and (max-width: 640px){
  .mt-40-sp {
    margin-top: 50px;
  }
  .mt-50-sp {
    margin-top: 50px;
  }
  .pt-60-sp {
    padding-top: 60px;
  }
}

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

.color-red {
  color: #d7000f;
}

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

.hover-opacity {
  transition: 0.2s;
}
@media only screen and (min-width: 641px) {
  .hover-opacity:hover {
    opacity: 0.8;
  }
}
.hover-scale.-arrow:after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 14px;
  height: 14px;
  background: url(../img/ico_arrow_link.svg) no-repeat center;
}
.hover-scale__box {
  position: relative;
  overflow: hidden;
}
.hover-scale__box:before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 2;
  width: 50px;
  height: 52px;
  background: url(../img/line_scale_right.png) no-repeat right top/contain;
}
.hover-scale__box:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 2;
  width: 50px;
  height: 52px;
  background: url(../img/line_scale_left.png) no-repeat left bottom/contain;
}
.hover-scale__box img {
  transition: 0.5s;
}
@media (hover: hover) {
  .hover-scale:hover .hover-scale__box img {
    transform: scale(1.1);
  }
}
.hover-scale__box.-no-line:before,
.hover-scale__box.-no-line:after {
  display: none;
}

.container-l {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.js-parallax-target {
  z-index: -1;
  opacity: 0;
}
.js-parallax-target.is-half {
  clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
}
.js-parallax-target.is-active {
  z-index: 1;
  opacity: 1;
}

.l-content {
  display: flex;
  justify-content: space-between;
  gap: 35px;
}
@media screen and (min-width: 751px){
  .l-content.-reverse {
    flex-direction: row-reverse;
  }
}
.l-content__text {
  flex: 1;
}
.l-content__img {
  width: 45%;
}
.l-content__text > *:first-child {
  margin-top: 0;
}
.l-content__text p {
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 16px;
}
.l-content__text h1 {
  font-size: 40px;
  letter-spacing: 0.15em;
  margin-top: 2em;
  margin-bottom: 1em;
}
.l-content__text h2 {
  font-size: 30px;
  letter-spacing: 0.15em;
  margin-top: 2em;
  margin-bottom: 1em;
}
.l-content__text h3 {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  border-left: 7px solid #d7000f;
  padding-left: 10px;
  margin-top: 2em;
  margin-bottom: 1em;
}
.l-content__text ul {
  margin-bottom: 2em;
  font-size: 16px;
  list-style: disc;
  margin-left: 1em;
}
.l-content__text ol {
  margin-bottom: 2em;
  font-size: 16px;
  list-style: decimal;
  margin-left: 1em;
}
.l-content__text hr {
  margin: 2em 0;
}
.l-content__text table {
	width: 100%;
  margin-bottom: 2em;
  border-collapse: collapse;
  border-spacing: 0;
}
.l-content__text table th {
	background-color: #eee;
	padding: 8px;
  border: 1px solid #AAAAAA;
  font-size: 16px;
}
.l-content__text table td {
	padding: 8px;
  border: 1px solid #AAAAAA;
  font-size: 16px;
}
.l-content__text img{
  height: auto!important;
}
.content_grid{
  display: grid;
  gap: 20px
}
.content_grid.content_grid_col2,
.content_grid.content_grid_col3{
  grid-template-columns: 100%;
}
.content_grid img{
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 751px){
  .content_grid.content_grid_col2{
    grid-template-columns: repeat(2,1fr);
  }
  .content_grid.content_grid_col3{
    grid-template-columns: repeat(3,1fr);
  }
}
/* modules
---------------------------------------------------------- */
.title-primary {
  text-align: center;
  position: relative;
}
.title-primary .en {
  font-size: 59px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.15em;
  padding-left: 0.075em;
  display: block;
  line-height: 1.2;
}
.title-primary .ja {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.3em;
  padding-left: 0.15em;
  display: block;
}
.title-secondary .en {
  font-size: 14px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.05em;
  display: block;
}
.title-secondary .ja {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: block;
}

.title-redline {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  border-left: 7px solid #d7000f;
  padding-left: 10px;
}

.text-primary {
  font-size: 18px;
  letter-spacing: 0.05em;
}
.text-medium {
  font-size: 18px;
}

.btn-primary {
  display: inline-block;
  width: 198px;
  border: 1px solid #231815;
  color: inherit;
  text-decoration: none;
  font-size: 16px;
  padding: 12px 0;
  text-align: center;
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: transparent;
  cursor: pointer;
}
.btn-primary:hover {
  border-color: #d7000f;
  background-color: #d7000f;
  color: #fff;
}

.btn-primary-large {
  -webkit-appearance: none;
  display: inline-block;
  width: 198px;
  border: 1px solid #231815;
  color: inherit;
  text-decoration: none;
  font-size: 16px;
  padding: 12px 0;
  text-align: center;
  background-color: #fff;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.btn-primary:hover {
  border-color: #d7000f;
  background-color: #d7000f;
  color: #fff;
}
.btn-support {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 64px;
  border: 1px solid #231815;
  font-size: 16px;
  letter-spacing: 0.05em;
  padding: 0 40px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s, color 0.2s;
}
.btn-support:hover {
  border-color: #231815;
  background-color: #231815;
  color: #fff;
}
.btn-small {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 198px;
  height: 45px;
  border: 1px solid #231815;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s, color 0.2s;
}
.btn-small:hover {
  border-color: #231815;
  background-color: #231815;
  color: #fff;
}
.btn-full {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 45px;
  border: 1px solid #231815;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s, color 0.2s;
}
.btn-full:hover {
  border-color: #231815;
  background-color: #231815;
  color: #fff;
}

/* header
---------------------------------------------------------- */
.header {
  position: relative;
}
.header__inner {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px 0 34px;
  background-color: #fff;
  z-index: 100;
}
.header__logo {
  a {
    display: flex;
    align-items: center;
    gap: 24px;
    text-decoration: none;
    color: inherit;
  }
  img {
    width: 202px;
  }
}
.header__desc {
  font-size: 12px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.15em;
}
.headerRight {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.headerRight__top {
  display: flex;
  align-items: center;
}
.headerSubnavi__list {
  display: flex;
}
.headerSubnavi__list li {
  margin-left: 24px;
}
.headerSubnavi__list li a {
  font-size: 13px;
  text-decoration: none;
  color: inherit;
}
.headerSubnavi__list li a:hover {
  text-decoration: underline;
}
.header__search {
  margin-left: 18px;
}
.header__search img {
  width: 11px;
}
.btn-search {
  -webkit-appearance: none;
  padding: 0;
  border-style: none;
  background-color: transparent;
}
.headerLang {
  margin-left: 24px;
}
.headerLang__list {
  display: flex;
}
.headerLang__button {
  display: inline-block;
  text-align: center;
  width: 28px;
  height: 16px;
  line-height: 1;
  padding-top: 2px;
  font-size: 12px;
  text-decoration: none;
  background-color: #d6d7d7;
  border-style: none;
  color: #fff;
}
.headerLang__button.is-active {
  background-color: #d7000f;
}
@media (hover: hover) {
  .headerLang__button {
    transition: 0.2s;
    cursor: pointer;
  }
  .headerLang__button:hover {
    opacity: 0.8;
  }
}
.headerRight__bottom {
  
}
.headerNavi__list {
  display: flex;
  margin-right: -15px;
}
.headerNavi__list li {
  font-size: 15px;
}
.headerNavi__list a[href="#"] {
  cursor: default;
}
.headerNavi__list li > a {
  font-size: 14px;
  white-space: nowrap;
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 6px 12px;
  position: relative;
  z-index: 1;
  transition: .3s;
}
.headerNavi__list li:hover > a {
  color: #fff;
}
.headerNavi__list li > a:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #231815;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}
.headerNavi__list li.has-child > a:after {
  height: 50px;
}
.headerNavi__list li:hover > a:after {
  opacity: 1;
}
.spNavi {
  display: none;
}
.subnavi {
  position: absolute;
  top: 88px;
  left: 0px;
  width: 100%;
  background-color: #231815;
  z-index: 10;
  height: 225px;
  padding-top: 38px;
  display: none;
}
.subnavi.-large {
  height: 245px;
  padding-top: 26px;
}
.subnaviList {
  display: flex;
  justify-content: center;
  gap: 18px;
}
.subnaviList__item {
  width: 192px;
}
.subnaviList__text {
  font-size: 15px;
  color: #fff;
}

.menu {
  display: none;
}
.breadcrumb {
  position: absolute;
  top: 105px;
  right: 50px;
  font-size: 12px;
  z-index: 5;
}
.breadcrumb.-white {
  color: #fff;
}
.breadcrumb__list {
  display: flex;
}
.breadcrumb__list li:after {
  content: " - ";
}
.breadcrumb__list li:last-child:after {
  content: "";
}
.breadcrumb a {
  color: inherit;
}

/* footer
---------------------------------------------------------- */
.footer {
  background-color: #231815;
  color: #fff;
  padding: 66px 0 50px;
  position: relative;
  z-index: 2;
}
.footer:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 2;
  width: 50px;
  height: 52px;
  background: url(../img/line_scale_left.png) no-repeat left bottom/contain;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.footer__left {
  width: 43.2%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.footer__logo {
  width: 336px;
  margin: 0 auto;
}
.footerSns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 64px;
}
.footerSns li {
  margin: 0 18px;
}
.copyright {
  font-size: 12px;
  font-family: "Cinzel", serif;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  text-align: center;
  letter-spacing: 0;
}
.footerNavi {
  display: flex;
}
.footerNavi__left {
  margin-right: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid #fff;
}
.footerNavi__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid #fff;
}
.footerNavi__list {
  padding: 11px 0;
  border-bottom: 1px solid #fff;
}
.footerNavi__list li {
  font-size: 13px;
  line-height: 1.69;
}
.footerNavi__list li:first-child,
.footerNavi__list li.large {
  font-size: 15px;
  font-weight: 500;
}

.l-worksList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 14px -22px 0;
}
.l-worksList__item {
  width: calc(33.33% - 44px);
  margin: 0 22px;
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.l-worksList__item:after {
  content: "";
  background: url(../img/ico_arrow_link.svg) no-repeat center;
  width: 14px;
  height: 14px;
  position: absolute;
  bottom: 6px;
  right: 0px;
}
.l-worksList__img {
  width: 100%;
  aspect-ratio: 267 / 170;
  background-color: #fff;
}
.l-worksList__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-worksList__info {
  margin-top: 8px;
}
.l-worksList__title {
  font-size: 16px;
}

/* main
---------------------------------------------------------- */
.main {
  padding: 88px 0 160px;
}
.home .main,
.product .main,
.pleasure .main,
.coastal .main,
.domestic .main,
.special .main {
  padding: 0;
}

/* page
---------------------------------------------------------- */
.pageHeader {
  margin-top: 100px;
  position: relative;
}
.pageHeader__title {
  position: relative;
}
.pageHeader__title.-tag .en:after {
  content: "";
  background: url(../img/ico_tag.svg) no-repeat center/contain;
  display: inline-block;
  width: 46px;
  height: 46px;
  margin-left: 72px;
  position: relative;
  top: 1px;
}
.pageHeader__title.-search .en:after {
  content: "";
  background: url(../img/ico_search.svg) no-repeat center/contain;
  display: inline-block;
  width: 45px;
  height: 45px;
  margin-left: 15px;
  position: relative;
  top: 1px;
}
.pageHeader__title.-introduction .en:after {
  content: "";
  background: url(../img/ico_gear.svg) no-repeat center/contain;
  display: inline-block;
  width: 72px;
  height: 53px;
  margin-left: 15px;
  position: relative;
  top: 5px;
}
.pageHeader__title.-faq .en:after {
  content: "";
  background: url(../img/ico_faq.svg) no-repeat center/contain;
  display: inline-block;
  width: 46px;
  height: 46px;
  margin-left: 72px;
  position: relative;
  top: 1px;
}
.pageHeader__title.-news .en:after {
  content: "";
  background: url(../img/ico_world.svg) no-repeat center/contain;
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-left: 15px;
  position: relative;
  top: 1px;
}
.pageHeader__title.-contact .en:after {
  content: "";
  background: url(../img/ico_mail.svg) no-repeat center/contain;
  display: inline-block;
  width: 48px;
  height: 36px;
  margin-left: 72px;
  position: relative;
  top: 1px;
}
.pageHeader__title.-sitemap .en:after {
  content: "";
  background: url(../img/ico_pin.svg) no-repeat center/contain;
  display: inline-block;
  width: 44px;
  height: 66px;
  margin-left: 52px;
  position: relative;
  top: 1px;
}
.pageHeader__title.-pp .en:after {
  content: "";
  background: url(../img/ico_pp.svg) no-repeat center/contain;
  display: inline-block;
  width: 54px;
  height: 58px;
  margin-left: 52px;
  position: relative;
  top: 1px;
}
.pageHeader__title.-pp_social .en:after {
  content: "";
  background: url(../img/ico_pp.svg) no-repeat center/contain;
  display: inline-block;
  width: 54px;
  height: 58px;
  margin-left: 52px;
  position: relative;
  top: 1px;
}
.pageHeader__title.-pp_information .en:after {
  content: "";
  background: url(../img/ico_pp.svg) no-repeat center/contain;
  display: inline-block;
  width: 54px;
  height: 58px;
  margin-left: 52px;
  position: relative;
  top: 1px;
}
.pageHeader__title.-cf .en:after {
  content: "";
  background: #fff url(../img/ico_funds.svg) no-repeat center/contain;
  display: inline-block;
  width: 54px;
  height: 58px;
  padding-left: 52px;
  position: relative;
  top: 1px;
}
.pageHeader__title.-company .en:after {
  content: "";
  background: url(../img/ico_company.svg) no-repeat center/contain;
  display: inline-block;
  width: 52px;
  height: 55px;
  margin-left: 52px;
  position: relative;
  top: 1px;
}
.pageHeader__title.-recruit .en:after {
  content: "";
  background: url(../img/ico_shake.svg) no-repeat center/contain;
  display: inline-block;
  width: 100px;
  height: 62px;
  margin-left: 56px;
  position: relative;
  top: 11px;
}
.pageHeader__title .en {
  font-size: 59px;
  letter-spacing: 0.05em;
  font-family: "Cinzel", serif;
  line-height: 1.1;
  display: block;
  position: relative;
}
.pageHeader__title .ja {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.3em;
  display: block;
}

.homeHero {
  position: fixed;
  top: 88px;
  left: 0px;
  width: 100%;
  height: 100dvh;
  z-index: 1;
}
.homeHeroSlider .slick-prev {
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 2;
  transform: translateY(-50%);
  width: 20px;
  height: 30px;
  background: url(../img/home/arrow_prev.svg) no-repeat center;
}
.homeHeroSlider .slick-next {
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 2;
  transform: translateY(-50%);
  width: 20px;
  height: 30px;
  background: url(../img/home/arrow_next.svg) no-repeat center;
}
.homeHeroSlider__item {
  position: relative;
  overflow: hidden;
}
.homeHeroSlider__img {
  width: 100%;
  height: 38.25vw;
}
.homeHeroSlider__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homeHeroSlider__item .beyond-logo {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  img {
    width: auto;
    height: 65.5%;
    position: relative;
    left: calc(50% - (100vh - 256px - 88px) * 0.8);
  }
}

@media screen and (min-width: 641px){
  .homeHeroSlider__img.-beyond {
    display: flex;
    justify-content: center;
    img {
      height: 100%;
      width: auto;
      object-fit: cover;
    }
  }
}
.homeHeroSlider__item img.img-scale {
  transition: transform 11s linear;
}
.add-animation img.img-scale {
  transform: scale(1.1);
}
.homeHeroSlider__info {
  position: absolute;
  left: 40px;
  bottom: 36px;
  color: #fff;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}
.homeHeroSlider__copy {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  pointer-events: none;
}
.homeHeroSlider__en {
  font-size: 59px;
  font-family: "Cinzel", serif;
}
.homeHeroSlider__large {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
}
.homeHeroSlider__medium {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.1;
}
.homeHeroSlider__small {
  font-size: 18px;
  line-height: 1.45;
  margin-top: 20px;
}
.homeNew {
  margin-top: calc(38.25vw + 88px);
  background-color: #fff;
  padding-top: 85px;
  position: relative;
  z-index: 2;
}
.homeNew__title {
  padding-top: 56px;
}
.homeNew__title:before {
  content: "";
  width: 46px;
  height: 46px;
  background: url(../img/ico_propeller.svg) no-repeat center;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.homeNew__read {
  text-align: center;
  margin-top: 12px;
}
.homeNewList {
  display: flex;
  justify-content: center;
  margin-top: 56px;
  position: relative;
  z-index: 2;
}
.homeNewList__item {
  width: calc(33.33% - 34px);
  max-width: 410px;
  margin: 0 17px;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.homeNewList__item:after {
  content: "";
  background: url(../img/ico_arrow_link.svg) no-repeat center;
  width: 14px;
  height: 14px;
  position: absolute;
  bottom: 10px;
  right: 0px;
}
.homeNewList__info {
  margin-top: 8px;
}
.homeNewList__title .en {
  font-size: 14px;
  font-family: "Cinzel", serif;
  display: block;
}
.homeNewList__title .ja {
  font-size: 23px;
  font-weight: 500;
  display: block;
}
.homeNew__propeller {
  overflow: hidden;
  position: absolute;
  top: -132px;
  right: 0px;
  width: 700px;
}
.homeNew__propeller span {
  display: block;
  position: relative;
  right: -198px;
}
.homeNew__propeller span.is-active {
  animation: propeller 80s linear infinite;
}
@keyframes propeller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(720deg);
  }
}
.homeService {
  padding-top: 130px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.homeService__title {
  padding-top: 64px;
}
.homeService__title:before {
  content: "";
  width: 64px;
  height: 58px;
  background: url(../img/ico_tools.svg) no-repeat center;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.homeService__read {
  text-align: center;
  margin-top: 12px;
}
.homeServiceList {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
.homeServiceList__item {
  width: calc(50% - 34px);
  max-width: 634px;
  margin: 0 17px;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.homeServiceList__item:after {
  content: "";
  background: url(../img/ico_arrow_link.svg) no-repeat center;
  width: 14px;
  height: 14px;
  position: absolute;
  bottom: 10px;
  right: 0px;
}
.homeServiceList__info {
  margin-top: 8px;
}
.homeServiceList__title .en {
  font-size: 14px;
  font-family: "Cinzel", serif;
  display: block;
}
.homeServiceList__title .ja {
  font-size: 23px;
  font-weight: 500;
  display: block;
}
.homeNews {
  padding-top: 150px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.homeNews__title {
  padding-top: 60px;
}
.homeNews__title:before {
  content: "";
  width: 48px;
  height: 48px;
  background: url(../img/ico_world.svg) no-repeat center;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.homeNews__read {
  text-align: center;
  margin-top: 12px;
}
.homeNewsList {
  max-width: 748px;
  margin: 36px auto 0;
}
.homeNewsList__item {
  padding: 20px 0 20px 16px;
  position: relative;
  border-bottom: 1px solid #d6d7d7;
}
.homeNewsList__item:last-child {
  border-bottom: none;
}
.homeNewsList__item a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding-right: 48px;
}
.homeNewsList__item a:hover .homeNewsList__title {
  text-decoration: underline;
}
.homeNewsList__item a:after {
  content: "";
  background: url(../img/ico_arrow_link.svg) no-repeat center;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
}
.homeNewsList__time {
  width: 92px;
  font-size: 14px;
  font-family: "Cinzel", serif;
}
.homeNewsList__cat {
  font-size: 13px;
  background-color: #231815;
  color: #fff;
  margin-right: 6px;
  padding: 0 6px;
  min-width: 75px;
  text-align: center;
}
.homeNewsList__title {
  flex: 1;
  font-size: 18px;
}
.homeNews__btn {
  margin-top: 48px;
  text-align: center;
}
.homeShips {
  height: 290px;
  background-color: #fff;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.homeShips__item {
  position: absolute;
}
.homeShips__item.-item01 {
  width: 506px;
  bottom: -5px;
  right: -680px;
  animation: ship-run 120s linear infinite;
  animation-delay: -50s;
}
.homeShips__item.-item02 {
  width: 658px;
  bottom: -5px;
  right: -680px;
  animation: ship-run 120s linear infinite;
  animation-delay: -80s;
}
.homeShips__item.-item03 {
  width: 664px;
  bottom: -10px;
  right: -680px;
  animation: ship-run 120s linear infinite;
  animation-delay: 0s;
}
.homeShips__item.-item04 {
  width: 260px;
  bottom: -15px;
  right: -680px;
  animation: ship-run 60s linear infinite;
  animation-delay: -10s;
}
.homeShips__item.-item05 {
  width: 260px;
  bottom: 0px;
  right: -680px;
  animation: ship-run 40s linear infinite;
  animation-delay: -15s;
}
.homeShips__item.-item06 {
  width: 224px;
  bottom: 0px;
  right: -680px;
  animation: ship-run 40s linear infinite;
  animation-delay: -10s;
}
@keyframes ship-run {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(calc((100vw + 680px) * -1));
  }
}
.homeMovie {
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.homeMovie video {
  width: 100%;
}
.homePickup {
  padding-top: 108px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.homePickup__title {
  padding-top: 60px;
}
.homePickup__title:before {
  content: "";
  width: 48px;
  height: 48px;
  background: url(../img/ico_check_cercle.svg) no-repeat center;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.homePickupList {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
.homePickupList__item {
  width: calc(33.33% - 34px);
  max-width: 410px;
  margin: 0 17px;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.homePickupList__item:after {
  content: "";
  background: url(../img/ico_arrow_link.svg) no-repeat center;
  width: 14px;
  height: 14px;
  position: absolute;
  bottom: 6px;
  right: 0px;
}
.homePickupList__thumb {
  width: 100%;
  aspect-ratio: 410 / 274;
  background-color: #fff;
}
.homePickupList__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homePickupList__info {
  margin-top: 10px;
  position: relative;
}
.homePickupList__date {
  font-size: 14px;
  font-family: "Noto Serif JP", serif;
}
.homePickupList__cat {
  font-size: 13px;
  background-color: #231815;
  color: #fff;
  padding: 0 6px;
  position: absolute;
  top: 2px;
  right: 0px;
}
.homePickupList__title {
  padding-right: 24px;
}
.homePickup__btn {
  margin-top: 48px;
  text-align: center;
}
.homeSpecial {
  padding-top: 200px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.homeSpecial__title {
  padding-top: 68px;
}
.homeSpecial__title:before {
  content: "";
  width: 68px;
  height: 68px;
  background: url(../img/ico_compass.svg) no-repeat center;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.homeSpecial__read {
  text-align: center;
  margin-top: 12px;
}
.homeSpecialList {
  max-width: 1334px;
  margin: 50px auto;
}
.homeSpecialList .homeSpecialList__item a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 0 17px;
  height: 274px;
  transition: width 1s;
}
.homeSpecialList .homeSpecialList__item img {
  width: 100%;
  height: 274px;
  object-fit: cover;
}
.homeSpecialList .slick-next {
  position: absolute;
  top: 45%;
  right: 24px;
  z-index: 2;
  transform: translateY(-50%);
  width: 20px;
  height: 30px;
  background: url(../img/home/arrow_next.svg) no-repeat center;
}
.homeSpecialList .slick-prev {
  position: absolute;
  top: 45%;
  left: 24px;
  z-index: 2;
  transform: translateY(-50%);
  width: 20px;
  height: 30px;
  background: url(../img/home/arrow_prev.svg) no-repeat center;
}
.homeSpecialList__info {
  margin-top: 8px;
  position: relative;
  padding-right: 24px;
}
.homeSpecialList__info:after {
  content: "";
  background: url(../img/ico_arrow_link.svg) no-repeat center;
  width: 14px;
  height: 14px;
  position: absolute;
  bottom: 5px;
  right: 0px;
}
.homeSpecialList__title .en {
  font-size: 14px;
  font-family: "Cinzel", serif;
  display: block;
}
.homeSpecialList__title .ja {
  font-size: 16px;
  font-weight: 500;
  display: block;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}
.homeSpecial__btn {
  margin-top: 48px;
  text-align: center;
}
.homeLinks {
  padding-top: 180px;
  background-color: #fff;
  display: flex;
  position: relative;
  z-index: 2;
}
.homeLinks__left {
  width: 54%;
}
.homeLinks__right {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}
.homeLinks__item {
  position: relative;
  display: block;
}
.homeLinks__item img {
  transform: scale(1.01);
}
.homeLinks__left .homeLinks__item,
.homeLinks__left .homeLinks__item .hover-scale__box,
.homeLinks__left .homeLinks__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homeLinks__right .homeLinks__item {
  width: 50%;
}
.homeLinks__title {
  pointer-events: none;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}
.homeLinks__title .en {
  font-size: 30px;
  font-family: "Cinzel", serif;
  display: block;
  letter-spacing: 0.15em;
  padding-left: 0.075em;
}
.homeLinks__title .ja {
  font-size: 16px;
  font-weight: 500;
  display: block;
  letter-spacing: 0.3em;
  padding-left: 0.15em;
}
.tagArchives {
  margin-top: 72px;
  border-top: 1px solid #dbdbdb;
}
.tagArchivesSec {
  padding: 50px 0px 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dbdbdb;
}
.tagArchivesSec__title {
  width: 31.4%;
}
.tagArchivesSec__title .en {
  font-size: 14px;
  font-family: "Cinzel", serif;
  display: block;
}
.tagArchivesSec__title .ja {
  font-size: 23px;
  font-weight: 500;
  display: block;
  letter-spacing: 0.15em;
}
.tagArchivesSec__right {
  width: 71.6%;
}
.tagArchivesList {
  display: flex;
  flex-wrap: wrap;
  margin: -10px -12px;
}
.tagArchivesList li {
  width: calc(25% - 24px);
  margin: 10px 12px;
}
.tagArchivesList li a {
  font-size: 13px;
  display: block;
  width: 100%;
  height: 100%;
  letter-spacing: 0.15em;
  padding: 2px 0.025em 2px 0.1em;
  color: inherit;
  text-decoration: none;
  background-color: #f2f3f3;
  text-align: center;
  font-weight: 500;
  transition: opacity 0.2s;
}
.tagArchivesList li a:hover {
  opacity: 0.8;
}
.searchArchivesList {
  padding-top: 30px;
  margin: 0 -27px;
  display: flex;
  flex-wrap: wrap;
}
.searchArchivesList__item {
  display: block;
  width: calc(33.33% - 54px);
  margin: 30px 27px 0;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.searchArchivesList__thumb {
  width: 100%;
  aspect-ratio: 267 / 170;
  background-color: #fff;
}
.searchArchivesList__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.searchArchivesList__item:after {
  content: "";
  background: url(../img/ico_arrow_link.svg) no-repeat center;
  width: 14px;
  height: 14px;
  position: absolute;
  bottom: 6px;
  right: 0px;
}
.searchArchivesList__info {
  margin-top: 8px;
}
.searchArchivesList__title {
  font-size: 16px;
}
.searchTag {
  margin-top: 48px;
}
.searchTag__tag {
  display: inline-block;
  font-size: 17.46px;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 2px 0.025em 2px 0.1em;
  min-width: 196px;
  background-color: #f2f3f3;
  text-align: center;
}
.catNavi {
  padding: 18px 0;
  position: fixed;
  top: 88px;
  left: 0px;
  z-index: 3;
  background-color: rgba(207,207,207,0.8);
  width: 100%;
}
.catNavi__list {
  display: flex;
  justify-content: center;
}
.catNavi__list li {
  font-size: 12px;
  padding: 0 30px;
  position: relative;
  color: inherit;
}
.catNavi__list li:after {
  content: "|";
  position: absolute;
  right: 0px;
  top: 0px;
}
.catNavi__list a {
  text-decoration: none;
  color: inherit;
}
.catNavi__list li:last-child:after {
  content: "";
}
.productHero {
  margin-top: 88px;
  position: relative;
}
.productHero__bg {
  height: calc(100dvh - 88px);
  overflow: hidden;
}
.productHero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 20s linear;
}
.productHero__bg.is-active img {
  transform: scale(1.1);
}
.productHero__title {
  position: absolute;
  top: 50%;
  left: 8.2%;
  transform: translateY(-50%);
  color: #fff;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}
.productHero__title:before {
  content: "";
  width: 55px;
  height: 42px;
  background: url(../img/ico_wave.svg) no-repeat center;
  display: block;
  margin-bottom: 10px;
}
.productHero__title .en {
  font-size: 59px;
  line-height: 1.1;
  font-family: "Cinzel", serif;
  display: block;
}
.productHero__title .ja {
  font-size: 20px;
  font-weight: 500;
  display: block;
  letter-spacing: 0.3em;
}
.productSec {
  margin: 84px auto 0;
  max-width: 1000px;
  padding-bottom: 140px;
}
.productSec__title {
  font-size: 20px;
  font-weight: 500;
  padding-left: 10px;
  border-left: 7px solid #d7000f;
}
.productSec__text {
  font-size: 18px;
  margin-top: 16px;
}
.productSec__img {
  max-width: 940px;
  margin: 68px auto 0;
}
.productContent {
  position: relative;
  overflow: hidden;
}
.productContentHeader {
  position: absolute;
  width: 100%;
  height: calc(100dvh - 88px);
  top: 0px;
  left: 0px;
  z-index: 1;
}
@media screen and (min-width: 641px){
  .is-fixed .productContentHeader {
    position: fixed;
    top: 88px;
    z-index: 1;
  }
  .is-bottom .productContentHeader {
    position: absolute;
    top: auto;
    bottom: 0px;
  }
}
.productContentHeader__inner {
  width: 100%;
  max-width: 1000px;
  position: absolute;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}
.productContentHeader__inner.-black {
  color: #231815;
  text-shadow: none;
}
.productContentHeader__title {
  padding-left: 10px;
  border-left: 7px solid #d7000f;
  position: relative;
  display: inline-block;
}
.productContentHeader__title .large {
  font-size: 50px;
  display: block;
  line-height: 1.1;
  font-weight: 500;
}
.productContentHeader__title .small {
  font-size: 30px;
  display: block;
  line-height: 1.1;
  font-weight: 500;
}
.productContentHeader__text {
  font-size: 16px;
  margin-top: 12px;
  max-width: 590px;
  position: relative;
}
.productContentBottom {
  max-width: 1000px;
  margin: calc(100dvh - 88px + 200px) auto 0;
  background-color: #fff;
  padding: 50px;
  position: relative;
  z-index: 2;
}
.productArchiveList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -8px -22px;
}
.productArchiveList__item {
  width: calc(33.33% - 44px);
  margin: 8px 22px;
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.productArchiveList__item:after {
  content: "";
  background: url(../img/ico_arrow_link.svg) no-repeat center;
  width: 14px;
  height: 14px;
  position: absolute;
  bottom: 6px;
  right: 0px;
}
.productArchiveList__thumb {
  width: 100%;
  aspect-ratio: 267 / 170;
  background-color: #fff;
}
.productArchiveList__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productArchiveList__info {
  margin-top: 8px;
}
.productArchiveList__title {
  font-size: 16px;
}
.productArchive__btn {
  margin-top: 48px;
  text-align: center;
}
.productWorks {
  padding-top: 170px;
}
.productWorksList {
  margin: 20px -22px 0;
  display: flex;
}
.productWorksList__item {
  display: block;
  width: calc(33.33% - 44px);
  margin: 0 22px;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.productWorksList__item:after {
  content: "";
  background: url(../img/ico_arrow_link.svg) no-repeat center;
  width: 14px;
  height: 14px;
  position: absolute;
  bottom: 6px;
  right: 0px;
}
.productWorksList__thumb {
  width: 100%;
  aspect-ratio: 267 / 170;
  background-color: #fff;
}
.productWorksList__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productWorksList__info {
  margin-top: 8px;
}
.productWorksList__title {
  font-size: 16px;
}
@media screen and (min-width: 641px){
  .productArchive__first,
  .productArchive__next {
    display: none !important;
  }
}
.productSingleHero {
  position: relative;
}
.productSingleHero:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 2;
  width: 50px;
  height: 52px;
  background: url(../img/line_scale_left.png) no-repeat left bottom / contain;
}
.productSingleHero__title {
  font-size: 30px;
  letter-spacing: 0.3em;
  font-family: "Cinzel", serif;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 20px;
  right: 40px;
  color: #fff;
}
.productSingleContent {
  overflow: hidden;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.productSingleContent__block {
  margin: 50px auto 0;
  max-width: 1000px;
}
.productSingleContentRow {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.productSingleContent__title .en {
  font-size: 14px;
  font-family: "Cinzel", serif;
  display: block;
}
.productSingleContent__title .ja {
  font-size: 40px;
  font-size: 40px;
  letter-spacing: 0.15em;
  display: block;
}
.productSingleContentRow__left {
  width: 50%;
}
.productSingleContentRow__text {
  font-size: 14px;
}
.productSingleFeatures {
  padding-top: 40px;
  margin-top: 30px;
  border-top: 1px solid #d6d7d7;
}
.productSingleFeatures__text {
  margin-top: 20px;
  font-size: 14px;
}
.productSingleContentRow__right {
  width: 46.5%;
}
.productSingleContentSlider .slick-next {
  position: absolute;
  bottom: -32px;
  right: 0px;
  width: 10px;
  height: 14px;
  background: url(../img/product/arrow_next.svg) no-repeat center;
}
.productSingleContentSlider .slick-prev {
  position: absolute;
  bottom: -32px;
  right: 40px;
  width: 10px;
  height: 14px;
  background: url(../img/product/arrow_prev.svg) no-repeat center;
}
.productSingleTags {
  padding: 150px 0 100px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.productSingleTags__inner {
  margin: 0 auto 0;
  max-width: 1000px;
}
.list-tag {
  display: flex;
  flex-wrap: wrap;
  margin: -8px -22px;
}
.list-tag li {
  letter-spacing: 0.15em;
  margin: 8px 22px;
}
.list-tag a {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  padding: 2px 20px 2px calc(20px + 0.075em);
  font-size: 13px;
  background-color: #f2f3f3;
  transition: opacity 0.2s;
}
.list-tag a:hover {
  opacity: 0.8;
}
.productSingleContact {
  height: 100dvh;
  position: relative;
  overflow: hidden;
}
.productSingleContact__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  position: fixed;
}
.productSingleContact__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productSingleContact__inner {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.productSingleContact__title {
  font-size: 40px;
  font-family: "Cinzel", serif;
  color: #fff;
}
.productSingleContact__btn {
  margin-top: 16px;
  text-align: center;
}
.productSingleContact__btn a {
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  display: block;
  width: 278px;
  padding: 8px 0;
  text-align: center;
  border: 1px solid #fff;
}
.productOthers {
  padding: 100px 0 90px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.productOthers__inner {
  margin: 0 auto;
  max-width: 1000px;
}
.productOthers__block + .productOthers__block {
  margin-top: 80px;
}
.l-largeHero {
  position: relative;
  height: calc(100dvh - 88px);
}
.l-largeHero:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 2;
  width: 50px;
  height: 52px;
  background: url(../img/line_scale_left.png) no-repeat left bottom / contain;
}
.l-largeHero__bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.l-largeHero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 20s transform linear;
}
.l-largeHero__bg.is-active img {
  transform: scale(1.1);
}
.l-largeHero__inner {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.l-largeHero__title {
  margin-left: 8.2%;
  position: relative;
  color: #fff;
}
.coastal .l-largeHero__title:before {
  content: "";
  width: 100px;
  height: 35px;
  background: url(../img/coastal/ico_ship.svg) no-repeat center;
  display: block;
  margin-bottom: 10px;
}
.domestic .l-largeHero__title:before {
  content: "";
  width: 95px;
  height: 40px;
  background: url(../img/domestic/ico_ship.svg) no-repeat center;
  display: block;
  margin-bottom: 10px;
}
.pleasure .l-largeHero__title:before {
  content: "";
  width: 74px;
  height: 46px;
  background: url(../img/pleasure/ico_ship.svg) no-repeat center;
  display: block;
  margin-bottom: 10px;
}
.edge .l-largeHero__title:before {
  content: "";
  width: 54px;
  height: 48px;
  background: url(../img/ico_twincle.svg) no-repeat center;
  display: block;
  margin-bottom: 10px;
}
.after .l-largeHero__title:before {
  content: "";
  width: 63px;
  height: 57px;
  background: url(../img/after/ico_tools.svg) no-repeat center;
  display: block;
  margin-bottom: 10px;
}
.l-largeHero__title .small {
  font-family: "Cinzel", serif;
  display: block;
}
.l-largeHero__title .en {
  font-size: 59px;
  line-height: 1.1;
  font-family: "Cinzel", serif;
  display: block;
}
.l-largeHero__title .ja {
  font-size: 20px;
  font-weight: 500;
  display: block;
  letter-spacing: 0.3em;
}
.shipIntro {
  padding: 65px 0 180px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.shipIntro__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.shipIntro__text {
  font-size: 18px;
  margin-top: 20px;
}
.coastal .shipIntro__img {
  max-width: 982px;
  margin: 20px auto 0;
}
.domestic .shipIntro__img {
  max-width: 1032px;
  margin: 30px auto 0;
}
.pleasure .shipIntro__img {
  max-width: 718px;
  margin: 20px auto 0;
}
.shipIntroList {
  display: flex;
  flex-wrap: wrap;
  margin: 40px -27px 0;
}
.shipIntroList__item {
  width: calc(33.33% - 54px);
  margin: 20px 27px;
  display: block;
  text-decoration: none;
  color: inherit;
}
.shipIntroList__thumb {
  width: 100%;
  aspect-ratio: 267 / 170;
  background-color: #fff;
}
.shipIntroList__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shipIntroList__info {
  margin-top: 8px;
  position: relative;
}
.shipIntroList__info:after {
  content: "";
  background: url(../img/ico_arrow_link.svg) no-repeat center;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 6px;
  right: 0px;
}
.shipIntroList__cat {
  display: inline-block;
  min-width: 142px;
  background-color: #000000;
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 0 0.4em;
}
.shipIntroList__title {
  margin-top: 6px;
}
.shipIntroList__text {
  font-size: 14px;
  margin-top: 8px;
  letter-spacing: 0;
}
.shipIntro__btn {
  margin-top: 100px;
  text-align: center;
}
.shipImage {
  height: 100dvh;
}
.shipImage__bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
}
.shipImage__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shipSingleHero {
  position: relative;
}
.shipSingleHero:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 2;
  width: 50px;
  height: 52px;
  background: url(../img/line_scale_left.png) no-repeat left bottom / contain;
}
.shipSingleHero__title {
  font-size: 30px;
  letter-spacing: 0.3em;
  font-family: "Cinzel", serif;
  position: absolute;
  bottom: 20px;
  right: 40px;
  color: #fff;
}
.shipSingleContent {
  padding-top: 50px;
}
.shipSingleContent__title .en {
  font-size: 14px;
  font-family: "Cinzel", serif;
  display: block;
}
.shipSingleContent__title .ja {
  font-size: 40px;
  font-size: 40px;
  letter-spacing: 0.15em;
  display: block;
}
.shipSingleContent__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.shipSingleContent__left {
  width: 50%;
}
.shipSingleContent__text {
  font-size: 14px;
  margin-top: 12px;
}
.shipSingleContent__right {
  width: 46.5%;
}
.banners {
  padding: 160px 0 160px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.banners__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.bannersList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.bannersList__item {
  width: 46.1%;
  margin: 30px 0;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.bannersList__item:after {
  content: "";
  background: url(../img/ico_arrow_link_white.svg) no-repeat center;
  width: 14px;
  height: 14px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.bannersList__title {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  line-height: 1.2;
}
.bannersList__title .en {
  font-size: 25px;
  font-family: "Cinzel", serif;
  display: block;
  letter-spacing: 0.3em;
  padding-left: 0.15em;
}
.bannersList__title .ja {
  font-size: 16px;
  font-weight: 500;
  display: block;
}
.introductionArchive {
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid #dbdbdb;
}
.introductionArchive__block {
  margin-top: 100px;
}
.introductionArchive__block:first-child {
  margin-top: 0;
}
.introductionArchive__title .en {
  font-size: 14px;
  font-family: "Cinzel", serif;
  display: block;
}
.introductionArchive__title .ja {
  font-size: 23px;
  font-weight: 500;
  display: block;
  letter-spacing: 0.15em;
}
.introductionArchiveList {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -28px;
}
.introductionArchiveList__item {
  width: calc(33.33% - 56px);
  margin: 10px 28px;
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.introductionArchiveList__thumb {
  width: 100%;
  aspect-ratio: 267 / 170;
  background-color: #fff;
}
.introductionArchiveList__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.introductionArchiveList__info {
  margin-top: 8px;
  position: relative;
}
.introductionArchiveList__info:after {
  content: "";
  background: url(../img/ico_arrow_link.svg) no-repeat center;
  width: 14px;
  height: 14px;
  position: absolute;
  bottom: 6px;
  right: 0px;
}
.introductionArchiveList__title {
  font-size: 16px;
}
.introductionDetail {
  padding-top: 80px;
}
.introductionDetail__title .en {
  font-size: 14px;
  font-family: "Cinzel", serif;
  display: block;
}
.introductionDetail__title .ja {
  font-size: 40px;
  letter-spacing: 0.15em;
  display: block;
  font-weight: 500;
}
.introductionDetail__eyecatch {
  margin-top: 20px;
}
.thumb-line {
  position: relative;
}
.thumb-line:before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 2;
  width: 50px;
  height: 52px;
  background: url(../img/line_scale_right.png) no-repeat right top/contain;
}
.thumb-line:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 2;
  width: 50px;
  height: 52px;
  background: url(../img/line_scale_left.png) no-repeat left bottom/contain;
}
.introductionDetail__table {
  display: flex;
  margin-top: 15px;
}
.introductionDetail__table tr {
  border-bottom: 1px solid #d6d7d7;
}
.introductionDetail__table tr:last-child {
  border-bottom: none;
}
.introductionDetail__table th {
  padding: 15px 0;
  font-size: 14px;
  width: 120px;
  padding-right: 1em;
}
.introductionDetail__table td {
  padding: 15px 0;
  font-size: 14px;
}
.introductionDetailGallery {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -8px 0;
}
.introductionDetailGallery__item {
  width: calc(33.33% - 16px);
  margin: 20px 8px 0;
}
.introductionVoice {
  padding-top: 120px;
}
.introductionVoice__header {
  padding-left: 18px;
  border-left: 7px solid #d7000f;
}
.introductionVoice__title {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.15em;
}
.introductionVoice__subtitle {
  font-size: 23px;
  margin-top: 8px;
  letter-spacing: 0.15em;
  font-weight: 500;
}
.introductionVoice__name {
  margin-top: 20px;
  font-weight: 500;
  letter-spacing: 0.15em;
}
.introductionVoice__eyecatch {
  margin-top: 16px;
}
.introductionVoiceBlock {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 751px){
  .introductionVoiceBlock.-reverse {
    flex-direction: row-reverse;
  }
}
.introductionVoiceBlock__title {
  width: 100%;
  margin-bottom: 24px;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.15em;
  position: relative;
  padding-left: 38px;
}
.introductionVoiceBlock__title:before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #000000;
  position: absolute;
  top: 18px;
  left: 0px;
}
.introductionVoiceBlock__left {
  width: 49%;
}
.introductionVoiceBlock__text {
  font-size: 14px;
}
.introductionVoiceBlock__right {
  width: 49%;
}
.introductionOthers {
  margin-top: 120px;
}
.specialHero {
  margin-top: 88px;
  position: relative;
  height: calc(100dvh - 88px);
}
.specialHero__bg {
  height: calc(100dvh - 88px);
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.specialHero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.specialHero__title {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 8.2%;
  transform: translateY(-50%);
  color: #fff;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}
.specialHero__title:before {
  content: "";
  width: 68px;
  height: 68px;
  background: url(../img/ico_compass.svg) no-repeat center;
  display: block;
  margin-bottom: 10px;
}
.specialHero__title .en {
  font-size: 59px;
  line-height: 1.1;
  font-family: "Cinzel", serif;
  display: block;
}
.specialHero__title .ja {
  font-size: 20px;
  font-weight: 500;
  display: block;
  letter-spacing: 0.3em;
}
.specialMain {
  padding: 100px 0 120px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.specialCat__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -32px;
}
.specialCat__list li {
  width: calc(25% - 64px);
  margin: 0 32px 10px;
  text-align: center;
}
.specialCat__list li a {
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #231815;
  color: #231815;
  text-decoration: none;
  font-size: 16px;
}
.specialCat__list li a:hover,
.specialCat__list li a.is-current {
  background-color: #231815;
  color: #fff;
}
.specialArchive {
  margin-top: 120px;
}
.specialList {
  display: flex;
  flex-wrap: wrap;
  margin: -60px -28px 0;
}
.specialList__item {
  width: calc(33.33% - 56px);
  margin: 60px 28px 0;
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.specialList__item:after {
  content: "";
  background: url(../img/ico_arrow_link.svg) no-repeat center;
  width: 14px;
  height: 14px;
  position: absolute;
  bottom: 6px;
  right: 0px;
}
.specialList__thumb {
  width: 100%;
  aspect-ratio: 267 / 170;
  background-color: #fff;
}
.specialList__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.specialList__item a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.specialList__info {
  margin-top: 8px;
}
.specialList__title {
  padding-right: 20px;
}
.specialList__title .en {
  font-size: 14px;
  font-family: "Cinzel", serif;
  display: block;
}
.specialList__title .ja {
  font-size: 16px;
  display: block;
}
.l-smallHero {
  position: relative;
}
.l-smallHero:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 2;
  width: 50px;
  height: 52px;
  background: url(../img/line_scale_left.png) no-repeat left bottom / contain;
}
.l-smallHero__title {
  font-size: 30px;
  letter-spacing: 0.3em;
  font-family: "Cinzel", serif;
  position: absolute;
  bottom: 20px;
  right: 40px;
  color: #fff;
}
.l-smallHero__title.-shadow {
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}
.l-smallHero__title.-black {
  color: #231815;
}
.specialSingleHeader {
  margin-top: 85px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
.specialSingleHeader__left {
  width: 38%;
}
.specialSingleHeader__right {
  width: 60%;
}
.specialSingleHeader__title .small {
  font-family: "Cinzel", serif;
  font-size: 16px;
  letter-spacing: 0.15em;
}
.specialSingleHeader__title .large {
  font-family: "Cinzel", serif;
  font-size: 27px;
  letter-spacing: 0.15em;
  display: block;
}
.specialSingleHeader__name {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding-left: 12px;
  border-left: 7px solid #d7000f;
}
.specialSingleHeader__job {
  font-size: 16px;
  letter-spacing: .05em;
  margin-top: 12px;
}
.specialSingle__profile {
  margin-top: 40px;
  font-size: 14px;
  width: 100%;
}
.specialSingleFaq {
  margin-top: 60px;
}
.specialSingleFaq__title {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding-left: 38px;
  position: relative;
}
.specialSingleFaq__title:before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #000000;
  position: absolute;
  top: 18px;
  left: 0px;
}
.specialSingleFaqRow {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 641px){
  .-reverse .specialSingleFaqRow {
    flex-direction: row-reverse;
  }
}
.specialSingleFaqRow__text {
  width: 71%;
  font-size: 14px;
}
.specialSingleFaqRow__thumb {
  width: 26.8%;
}
.specialOthers {
  margin-top: 120px;
  padding-top: 90px;
  border-top: 1px solid #dbdbdb;
}
.specialOthers__title {
  margin-bottom: 20px;
}
.egdeContent {
  padding-top: 50px;
  padding-bottom: 120px;
  position: relative;
  z-index: 2;
  background-color: #fff;
}
.egdeContentOutline {
  margin-top: 30px;
  border: 1px solid #231815;
  padding: 40px 0 8px;
}
.egdeContentOutline__title {
  font-size: 34px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.05em;
  text-align: center;
}
.egdeContentOutline__img {
  max-width: 902px;
  margin: 40px auto 0;
}
.egdeContentRow {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.egdeParallax {
  height: 100dvh;
}
.egdeParallax__bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}
.egdeParallax__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.polishOutline {
  margin-top: 30px;
}
.polishOutlineGallery {
  display: flex;
  justify-content: space-between;
  margin: 0 -14px;
}
.polishOutlineGallery__item {
  margin: 0 14px;
}
.polishOutlineRow {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
}
.polishOutlineRow__left {
  padding-top: 40px;
  width: 55%;
}
.polishOutlineRow__right {
  width: 38%;
}
.polishOutlineRow__block {
  margin-top: 90px;
}
.polishOutlineRow__block:first-child {
  margin-top: 0;
}
.polishBtn {
  margin-top: 120px;
  display: flex;
  justify-content: center;
}
.retrofit__flex {
  display: flex;
  gap: 30px;
  .item {
    flex: 1;
  }
}
.faqCat {
  position: absolute;
  top: 0px;
  right: 0px;
  display: flex;
}
.faqCat li {
  margin-left: 24px;
}
.faqCat li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 198px;
  height: 50px;
  font-size: 14px;
  text-decoration: none;
  color: inherit;
  border: 1px solid #231815;
  transition: background-color 0.2s, color 0.2s;
}
.faqCat li a:hover {
  background-color: #231815;
  color: #fff;
}
.faqContent {
  padding-top: 80px;
}
.faqContent + .faqContent {
  margin-top: 60px;
}
.faqContent__title {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
.faqList li {
  padding: 30px 0;
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  font-size: 16px;
  letter-spacing: 0.15em;
  font-weight: 500;
}
.faqList__question {
  display: flex;
  padding-right: 80px;
  position: relative;
}
.faqList__question:after {
  content: "";
  background: url(../img/faq/ico_plus.svg) no-repeat center;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 2px;
  right: 22px;
}
.faqList__question.is-open:after {
  background: url(../img/faq/ico_minus.svg) no-repeat center;
}
.faqList__tag {
  width: 52px;
}
.faqList__text {
  width: calc(100% - 52px);
}
.faqList__answer {
  display: flex;
  padding-right: 80px;
  margin-top: 30px;
  display: none;
}
.afterIntro {
  padding-top: 120px;
  text-align: center;
  background-color: #fff;
  position: relative;
  z-index: 2;
  padding-bottom: 260px;
  overflow: hidden;
}
.afterIntro__bg {
  position: absolute;
  top: 673px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url(../img/after/bg_water.jpg) no-repeat center top / 100% auto;
}
@media screen and (max-width: 1400px){
  .afterIntro__bg {
    background-size: 1400px auto;
  }
}
.afterIntro__title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.afterIntro__read {
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-top: 20px;
}
.afterIntro__img {
  margin: 70px auto 0;
  max-width: 684px;
}
.afterIntro__link  {
  + .banners {
    padding-top: 60px;
  }
}
.afterIntro__link a {
  color: inherit;
  font-size: 16px;
  font-weight: 500;
}
.afterIntroList {
  display: flex;
  justify-content: space-between;
  text-align: left;
  margin-top: 140px;
}
.afterIntroList.-small {
  margin-top: 70px;
}
.afterIntroList__item {
  width: 45.6%;
}
.-small .afterIntroList__item {
  width: 30%;
}
.afterIntroList__text {
  padding-top: 10px;
  border-top: 1px solid #cfcfcf;
  margin-top: 8px;
}
.-small .afterIntroList__title {
  margin-right: -2em;
  font-weight: 500;
}
.-small .afterIntroList__text {
  font-size: 14px;
}
.afterSec {
  padding-top: 230px;
  position: relative;
  background-color: #fff;
  z-index: 2;
}
.afterParallax {
  height: 100dvh;
}
.afterParallax__bg {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.afterParallax__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#afterSupport {
  padding-bottom: 330px;
}
#afterMaintenance {
  padding-bottom: 500px;
}
#afterProposal {
  padding-bottom: 150px;
}
.afterSec__eyecatch {
  position: absolute;
  top: -158px;
  width: 1300px;
  left: calc(50% - 650px);
}
.afterSecRow {
  position: relative;
}
.afterSecRow__left {
  width: 58.8%;
}
.afterSecRow__right {
  position: absolute;
  right: 0px;
  top: -164px;
  width: 33.5%;
}
.afterSecRow__title {
  font-size: 59px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.05em;
}
.kakkoBlock {
  padding: 0 20px;
  position: relative;
}
.kakkoBlock:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 6px;
  height: 100%;
  border: 1px solid #231815;
  border-right-style: none;
}
.kakkoBlock:after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 6px;
  height: 100%;
  border: 1px solid #231815;
  border-left-style: none;
}
.list-square li {
  font-size: 18px;
  letter-spacing: .03em;
  margin-left: 1em;
  text-indent: -1em;
}
.list-square li:before {
  content: "■";
  color: #d7000f;
}
.afterEco {
  margin-top: 120px;
}
.afterEco__title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-bottom: 15px;
  border-bottom: 1px solid #231815;
}
.afterEcoList {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
.afterEcoList__item {
  width: calc(50% - 25px);
}
.afterEcoList__text {
  letter-spacing: 0.05em;
  margin-top: 10px;
}
.afterWorld {
  margin-top: 120px;
  display: flex;
}
.afterWorld__left {
  width: 52%;
}
.afterWorld__right {
  width: 48%;
}
.afterWorld__text {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #231815;
  font-size: 18px;
}
.afterWorldSupport {
  margin-top: 35px;
}
.afterWorldSupport__list li {
  margin-top: 25px;
  max-width: 414px;
}

.newsCat {
  margin-top: 60px;
}
.newsCat__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 66px;
}
.newsCat__list li {
  width: calc((100% - 198px) / 4);
}
.newsCat__list li a {
  display: flex;
  width: 100%;
  height: 44px;
  font-size: 14px;
  border: 1px solid #231815;
  color: inherit;
  text-decoration: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.newsCat__list li a:hover,
.newsCat__list li a.is-current {
  background-color: #231815;
  color: #fff;
}
.newsArchives {
  margin-top: 75px;
}
.newsArchivesList {
  border-top: 1px solid #dbdbdb;
}
.newsArchivesList__item {
  display: flex;
  align-items: center;
  padding: 35px 0;
  position: relative;
  padding-right: 60px;
  border-bottom: 1px solid #dbdbdb;
}
.newsArchivesList__item:after {
  content: "";
  background: url(../img/ico_arrow_link.svg) no-repeat center;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
}
.newsArchivesList__date {
  font-size: 14px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.05em;
  width: 90px;
}
.newsArchivesList__cat {
  margin-right: 13px;
}
.newsArchivesList__cat span {
  display: inline-block;
  min-width: 72px;
  font-size: 13px;
  text-align: center;
  color: #fff;
  background-color: #231815;
  padding: 0 0.4em;
}
.newsArchivesList__title {
  flex: 1;
}
.newsArchivesList__title a {
  color: inherit;
  text-decoration: none;
}
.newsArchivesList__title a:hover {
  text-decoration: underline;
}
.l-pager {
  margin-top: 130px;
  display: flex;
  flex-wrap: wrap;
}
.l-pager span,
.l-pager a {
  margin-right: 24px;
  text-decoration: none;
}
.l-pager span:last-child,
.l-pager a:last-child {
  margin-right: 0;
}
a.num,
span.dot {
  color: #bebfbf;
}
.newsDetail {
  padding-top: 120px;
}
.newsDetail__cat {
  display: inline-block;
  min-width: 66px;
  background-color: #000000;
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 0 0.4em;
}
.newsDetail__time {
  font-size: 14px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.05em;
}
.newsDetail__title {
  margin-top: 20px;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.newsDetail__content {
  margin-top: 40px;
}
.newsDetail__content p {
  margin-bottom: 4em;
  letter-spacing: 0.05em;
}
.newsDetail__content img{
  height: auto!important;
}
.news__back {
  text-align: center;
  margin-top: 60px;
}
.contact__read {
  margin-top: 40px;
  letter-spacing: 0.05em;
}
.contact__read + .contact__read {
  margin-top: 1em;
}
.contactNavi {
  max-width: 640px;
  margin: 100px auto 0;
}
.contactNavi dl + dl {
  margin-top: 60px;
}
.contactNavi dl dt {
  font-size: 20px;
  background-color: #000000;
  color: #fff;
  padding: 2px 18px;
  margin-bottom: 1em;
}
.contactNavi dl dd {
  color: #555352;
  font-size: 18px;
}
.contactNavi__item + .contactNavi__item {
  margin-top: 70px;
}
.contactNavi__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  height: 150px;
  border: 1px solid #000;
  color: inherit;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
}
.contactNavi__item a:after {
  content: "";
  background: url(../img/ico_arrow_link.svg) no-repeat center;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 45px;
  transform: translateY(-50%);
}
.contactBanners {
  margin-top: 135px;
  display: flex;
  justify-content: center;
  gap: 0 75px;
}
.contactBanners__item {
  position: relative;
}
.contactBanners__item:after {
  content: "";
  background: url(../img/ico_arrow_link_white.svg) no-repeat center;
  width: 14px;
  height: 14px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.contactBanners__text {
  position: absolute;
  top: 0px;
  left: 0px;
  pointer-events: none;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.contactBanners__text .en {
  font-size: 25px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.3em;
}
.contactBanners__text .ja {
  font-size: 16px;
  letter-spacing: 0.05em;
}
.contactHeader {
  margin-top: 90px;

}
.contactHeader__title {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.contact__layout {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
.contact__left {
  width: 36%;
}
.contact__right {
  width: 58%;
}
.contactForm__block + .contactForm__block {
  margin-top: 20px;
}
.contactForm__name {
  letter-spacing: 0.05em;
}
.contactForm__label {
  margin-top: 5px;
}
.form-text {
  width: 100%;
  height: 48px;
  border: 1px solid #dbdbdb;
  padding: 0 0.5em;
}
.form-text::placeholder {
  color: #dbdbdb;
}
.form-files {
  display: flex;
}
.form-files__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px 0 40px;
  border-left: 1px solid #dbdbdb;
}
.form-files__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-textarea {
  width: 100%;
  height: 200px;
  border: 1px solid #dbdbdb;
  padding: 0.25em 0.5em;
}
.contactForm__btn {
  margin-top: 140px;
}
.healthContent {
  padding-top: 60px;
}
.healthNavi {
  margin-top: 60px;
  display: flex;
  gap: 20px;
}
.healthNavi li {
  width: calc((100% - 80px) / 4);
}
.healthNavi li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  font-size: 14px;
  border: 1px solid #231815;
  color: inherit;
  text-decoration: none;
  flex-direction: column;
  text-align: center;
}
.healthContent__img {
  margin-top: 90px;
}
.healthSec {
  padding: 90px 0 90px;
}
.healthSec.healthEvaluate {
  padding-bottom: 0;
}
.healthSec + .healthSec {
  border-top: 1px solid #c4c4c4;
}
.healthGroup__row {
  display: flex;
}
.healthGroup__left {
  width: 44%;
}
.healthGroup__right {
  width: 48%;
}
.scrollable__swipe {
  display: none;
}
.healthGoal__table {
  width: 100%;
  border: 1px solid #231815;
}
.healthGoal__table thead {
  background-color: #f7f7f7;
}
.healthGoal__table th {
  padding: 5px 20px;
  vertical-align: middle;
  border: 1px solid #231815;
  font-size: 14px;
}
.healthGoal__table td {
  padding: 5px;
  vertical-align: middle;
  border: 1px solid #231815;
  font-size: 14px;
  text-align: center;
}
.healthGoal__table td.align-left {
  text-align: left;
}
.healthActivityList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
  margin-top: 20px;
}
.healthActivityList__item {
  width: 47.5%;
}
.healthActivityList__thumb {
  position: relative;
}
.healthActivityList__thumb .num {
  position: absolute;
  font-family: "Cinzel", serif;
  font-size: 127px;
  right: 10px;
  bottom: -50px;
  line-height: 1;
  color: #cfcfcf;
  mix-blend-mode: multiply;
}
.healthActivityList__title {
  font-size: 17px;
  margin-top: 10px;
}
.healthActivityList__list {
  margin-top: 10px;
  font-size: 14px;
  text-indent: -1em;
  padding-left: 1em;
}
.healthActivityList__list li:before {
  content: "・";
}
.healthEvaluate__row {
  display: flex;
  justify-content: space-between;
}
.healthEvaluate__row + .healthEvaluate__row {
  margin-top: 80px;
}
.healthEvaluate__left {
  width: 48%;
}
.healthEvaluate__right {
  width: 47.5%;
}
.healthEvaluate__subtitle {
  font-size: 17px;
}
.healthEvaluate__subtitle .date {
  font-size: 13px;
}
.susHero {
  text-align: center;
}
.susHero__title {
  text-align: center;
}
.susHero__title .en {
  font-size: 14px;
  font-family: "Cinzel", serif;
  letter-spacing: 0.15em;
  display: block;
}
.susHero__title .ja {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.15em;
  display: block;
}
.susHero__read {
  font-size: 18px;
  margin-top: 20px;
}
.susHero__bg {
  margin-top: -30px;
  position: relative;
  z-index: -1;
}
.susHero__bg img {
  width: 840px;
}
.susSec {
  margin-top: 120px;
}
.susSec + .susSec {
  padding-top: 120px;
  border-top: 1px solid #c4c4c4;
}
.susSec__title {
  text-align: center;
  margin-bottom: 120px;
}
.susSec__title .en {
  font-size: 13px;
  letter-spacing: 0.15em;
  font-family: "Cinzel", serif;
  display: block;
}
.susSec__title .ja {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.15em;
  display: block;
}
.susSec__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
}
.susSec__row:last-child {
  margin-bottom: 0;
}
.susSec__left {
  width: 48%;
}
.susSec__right {
  width: 48%;
}
.susSec__read {
  font-size: 13px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.susSec h3 + .text-medium {
  padding-top: 15px;
  border-top: 1px solid #c4c4c4;
}
.groupHeader {
  margin-top: 60px;
  margin-bottom: 60px;
}
.groupNavi {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
.groupNavi li {
  width: 142px;
}
.groupNavi li:first-child {
  width: 208px;
}
.groupNavi li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  border: 1px solid #231815;
  height: 132px;
  width: 100%;
}
.groupNavi .icon {
  height: 50px;
  display: flex;
  align-items: center;
}
.groupNavi .text {
  margin-top: 4px;
  height: 2.4em;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
}
.groupEyecatch {
  margin-top: 100px;
}
.gropSec__icon {
  height: 90px;
}
.gropSec__title {
  font-size: 30px;
}
.gropSec__h3 {
  margin-top: 36px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-bottom: 6px;
  border-bottom: 1px solid #c4c4c4;
}
.gropSecRow {
  display: flex;
}
.gropSec__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  gap: 1.5em;
  margin-top: 30px;
  list-style-type: disc;
}
.gropSec__list li {
  margin-left: 1em;
}
.groupRow {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
}
.groupRow .gropSec {
  width: 48%;
  padding-top: 50px;
  border-top: 1px solid #c4c4c4;
}
.techWrapper {
  display: flex;
}
.techLeft {
  width: 358px;
  background-color: #f7f7f7;
  padding-right: 64px;
}
.techLeft__wrapper {
  position: sticky;
  top: 88px;
  left: 0%;
}
.techRight {
  flex: 1;
  padding-top: 60px;
}
.tech__inner {
  max-width: 772px;
  margin: 0 auto;
}
.techLeft__navi {
  li {
    border-bottom: 1px solid #c4c4c4;
  }
  a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 30px 10px 10px;
    text-align: right;
    font-size: 12px;
    text-decoration: none;
    color: inherit;

    position: relative;
    height: 5em;
    &:after {
      content: "";
      background: url(../img/ico_arrow_link.svg) no-repeat center;
      width: 14px;
      height: 14px;
      position: absolute;
      top: 50%;
      right: 0px;
      transform: translateY(-50%);
    }
  }
}
.techLeft__banner {
  max-width: 184px;
  margin: 30px 0 0 auto;
}
.techLeft__top {
  display: block;
  margin-top: 48px;
  text-align: right;
  font-size: 13px;
  letter-spacing: 0.15em;
  font-family: "Cinzel", serif;
  text-decoration: none;
  color: inherit;
}
.techSec {
  margin-top: 30px;
  + .techSec {
    margin-top: 96px;
  }
}
.techLifeList {
  margin-left: 32px;
  border-left: 1px solid #c4c4c4;
  overflow: hidden;
  margin-top: 10px;
}
.techLifeList__item {
  margin-top: 36px;
  display: flex;
  position: relative;
  padding-left: 60px;
}
.techLifeList__item:before {
  content: "";
  width: 42px;
  height: 1px;
  background-color: #c4c4c4;
  position: absolute;
  top: 25px;
  left: 0px;
}
.techLifeList__item:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #c4c4c4;
  position: absolute;
  top: 22px;
  left: 40px;
}
.techLifeList__icon {
  text-align: center;
  width: 56px;
  margin-right: 15px;
}
.techLifeList__right {
  flex: 1;
}
.techLifeList__title {
  font-size: 20px;
  font-weight: 500;
}
.techLifeList__text {
  font-size: 14px;
  letter-spacing: 0.05em;
}
.techLifeList__cat {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  gap: 10px;
  li {
    flex: 1;
    border: 1px solid #231815;
    a {
      display: block;
      text-decoration: none;
      padding: 10px 0;
      font-size: 16px;
      text-align: center;
      color: inherit;
    }
  }
}
.techSec__row {
  display: flex;
  justify-content: space-between;
}
.techSec__left {
  width: 48%;
}
.techSec__right {
  width: 48%;
}
.techProduct {
  position: relative;
}
.techProduct__title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  .en {
    color: #fff;
    font-size: 17px;
    letter-spacing: 0.3em;
    font-family: "Cinzel", serif;
  }
  .ja {
    color: #fff;
    font-size: 13px;

    letter-spacing: 0.05em;
  }
}
.techGroup__row {
  display: flex;
}
.techBase {
  margin-top: 150px;
}
.techBase__title {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.15em;
}
.techBaseList {
  margin-top: 30px;
  display: flex;
  gap: 24px;
}
.techBaseList__item {
  width: calc((100% - 48px) / 3);
  position: relative;
}
.techBaseList__title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  .en {
    color: #fff;
    font-size: 17px;
    letter-spacing: 0.3em;
    font-family: "Cinzel", serif;
  }
  .ja {
    color: #fff;
    font-size: 12px;

    letter-spacing: 0.05em;
  }
}
.techBeyond {
  text-align: center;
}
.techBeyond__text {
  font-size: 28px;
  letter-spacing: 0.15em;
}
.philosophyNavi {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 120px;
  a {
    width: 300px;
    font-size: 16px;
    text-decoration: none;
    color: inherit;
    display: block;
    text-align: center;
    padding: 12px 0;
    border: 1px solid #231815;
  }
}
.philosophyOur {
  position: relative;
}
.philosophyOurTop {
  padding-top: 120px;
  padding-bottom: 38vw;
  position: sticky;
  top: 0px;
  left: 0px;
}
.philosophyOurBlock {
  margin-top: 70px;
}
.philosophyOurBlock__title {
  text-align: center;
  .en {
    font-size: 40px;
    letter-spacing: 0.3;
    display: block;
  }
  .ja {
    font-size: 20px;
    letter-spacing: 0.2em;
    display: block;
  }
}
.philosophyOurBlock__read {
  font-size: 18px;
  line-height: 2;
  text-align: center;
  margin-top: 10px;
}
.philosophyOurBlockList {
  display: flex;
  justify-content: center;
  padding-top: 84px;
  background: url(../img/philosophy/line_our.svg) no-repeat center top / 572px auto;
  margin-top: 30px;
  gap: 86px;
}
.philosophyOurBlockList__item {
  width: 200px;
}
.philosophyOurBlockList__title {
  text-align: center;
  .en {
    font-size: 30px;
    letter-spacing: 0.3em;
  }
  .ja {
    font-size: 14px;
    letter-spacing: 0.2em;
    display: block;
  }
}
.philosophyOurBlockList__text {
  font-size: 15px;
}
.philosophyConcept {
  padding-top: 120px;
}
.philosophyConceptList {
  margin-top: 100px;
  margin-left: 80px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.philosophyConceptList__item {
  display: flex;
  align-items: center;
}
.philosophyConceptList__title {
  display: inline-block;
  text-align: center;
  .en {
    display: block;
    font-size: 30px;
    letter-spacing: 0.3em;
  }
  .ja {
    display: block;
    font-size: 14px;
    letter-spacing: 0.2em;
  }
}
.philosophyConceptList__right {
  margin-left: 24px;
  flex: 1;
}
.philosophyConceptList__left {
  width: 240px;
  border-right: 1px solid #000000;
}
.philosophyBland {
  padding-top: 120px;
}
.philosophyBland__inner {
  display: flex;
}
.philosophyBland__left {
  width: 60%;
  padding-right: 38px;
}
.philosophyBland__right {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
.philosophyBeyond {
  padding: 120px 0 0;
}
.officeMap {
  padding-top: 100px;
}
.officeMap__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.officeMap__navi {
  display: flex;
  gap: 30px;
}
.officeMap__navi a {
  display: block;
  padding: 10px 0;
  width: 200px;
  font-size: 16px;
  text-decoration: none;
  color: inherit;
  border: 1px solid #231815;
  text-align: center;
}
.officeMap__map {
  overflow: hidden;
  position: relative;
}
.officeMap__img {
  display: none;
}
.officeMap__img.is-active {
  display: block;
}
.officeMap__cloud {
  position: absolute;
  top: -370px;
  left: -227px;
  width: 1563px;
  mix-blend-mode: screen;
  z-index: 3;
  animation: stream 300s linear infinite;
}
.officeMap__cloud .copy {
  position: absolute;
  left: 100%;
  width: 100%;
}
@keyframes stream {
  100% {
    transform: translateX(-100%);
  }
}
.officeLocation {
  padding-top: 60px;
  display: none;
}
.officeLocation.is-active {
  display: block;
}
.officeLocationList {
  margin-top: 50px;
}
.officeLocationList__item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
   + .officeLocationList__item {
    padding-top: 100px;
    margin-top: 100px;
    border-top: 1px solid #000;
   }
}
.officeLocationList__left {
  width: 50%;
}
.officeLocationList__right {
  width: 50%;
}
.officeLocationList__area {
  font-size: 20px;
  font-weight: 500;
}
.officeLocationList__table {
  dl {
    margin-top: 16px;
    display: flex;
    font-size: 16px;
  }
  dt {
    width: 72px;
    position: relative;
    &:after {
      content: "／";
      position: absolute;
      top: 0;
      right: 0px;
    }
  }
}
.officeLocationList__name {
  font-size: 16px;
  margin-top: 1em;
}
.manuIntro__row {
  display: flex;
  justify-content: space-between;
}
.manuIntro__left {
  width: 56%;
}
.manuIntro__right {
  width: 32%;
}

@media screen and (min-width: 641px){
  .officeLocationList.-small {
    display: flex;
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid #000;
  }
  .-small .officeLocationList__item {
    display: block;
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid #000;
    &:last-child {
      border-right: none;
      margin-right: 0;
      padding-right: 0;
    }
    + .officeLocationList__item {
      padding-top: 0;
      margin-top: 0;
      border-top: none;
    }
  }
  .officeLocationList.-world {
    display: flex;
    flex-wrap: wrap;
    gap: 48px 0;
  }
  .-world .officeLocationList__item {
    width: 33.33%;
    display: block;
    padding: 0;
    border-style: none;
    margin: 0;
  }
  .officeLocationList.-medium {
    display: flex;
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid #000;
  }
  .-medium .officeLocationList__item {
    display: block;
    width: 50%;
    + .officeLocationList__item {
      margin: 0;
      border-top-style: none;
      padding-top: 0;
      padding-left: 100px;
      border-left: 1px solid #000;
    }
  }
}

.profileNavi {
  display: flex;
  justify-content: center;
  gap: 120px;
  margin-top: 120px;
  a {
    width: 200px;
    font-size: 16px;
    text-decoration: none;
    color: inherit;
    display: block;
    text-align: center;
    padding: 12px 0;
    border: 1px solid #231815;
  }
}
.profileAbout {
  padding-top: 120px;
  display: flex;
  justify-content: space-between;
}
.profileAbout__left {
  width: 50%;
  padding-right: 40px;
}
.profileAbout__right {
  width: 50%;
}
.profileAbout__table {
  dl {
    margin-top: 16px;
    display: flex;
    font-size: 15px;
  }
  dt {
    width: 156px;
    position: relative;
    &:after {
      content: "／";
      position: absolute;
      top: 0;
      right: 0px;
    }
  }
  dd {
    font-size: 14px;
    line-height: 1.5;
    margin-left: 10px;

    flex: 1;
  }
}
.profileHistory {
  margin-top: 120px;
  padding-top: 100px;
  border-top: 1px solid #000;
}
.profileHistory__row {
  display: flex;
}
.profileHistory__navi {
  width: 196px;
  margin-top: 30px;
}
.profileHistory__navi li {
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
  cursor: pointer;
}
.profileHistory__navi li.is-active:before {
  content: "■";
  color: #d7000f;
  position: absolute;
  top: 0px;
  left: 0px;
}
.profileHistoryList {
  background: url(../img/profile/arrow_bottom.png) no-repeat 92px bottom,
    url(../img/profile/arrow_top.png) repeat-y 92px bottom;
  background-size: 15px auto, 15px auto;
  padding-bottom: 1px;
  display: none;
  &.is-active {
    display: block;
  }
}
.profileHistoryList__item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.profileHistoryList__year {
  width: 108px;
  font-size: 38px;
  line-height: 1;
  font-family: "Noto Serif JP", serif;
}
.profileHistoryList__text {
  width: 300px;
  ul {

  }
  li {
    padding-left: 24px;
    position: relative;
    &:before {
      content: "";
      position: absolute;
      left: -8px;
      top: 50%;
      transform: translateY(-50%);
      width: 14px;
      height: 14px;
      background-color: #d7000f;
    }
  }
}
.profileHistoryList__img {
  width: 150px;
  text-align: center;
  margin-left: 1em;
  figure {
    +figure {
      margin-top: 1em;
    }
  }
  figcaption {
    font-size: 13px;
  }
}
.sloganContent {
  text-align: center;
}
#about .sloganContent {
  padding-top: 180px;
  position: relative;
  z-index: 2;
  background-color: #fff;
  @media screen and (max-width: 640px){
    padding-top: 80px;
  }
  &:before {
    content: "";
    width: 100%;
    max-width: 1000px;
    height: 1px;
    background-color: #e9e9eb;
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    @media screen and (max-width: 640px){
      top: 40px;
      max-width: 85.6vw;
    }
  }
}
.sloganContent__title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.3em;
}
.sloganContent__h2 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.3em;
  margin-top: 50px;
}
.sloganContent__text {
  font-size: 18px;
  line-height: 1.9;
  margin-top: 20px;
}
.messageContent {
  padding-top: 60px;
  display: flex;
  justify-content: space-between;
}
.messageContent__left {
  width: 55%;
  padding-right: 36px;
}
.messageContent__right {
  width: 45%;
}
.messageContent__name {
  margin-top: 2em;
  font-size: 15px;
  .name {
    font-size: 18px;
    display: block;
    margin-top: 10px;
  }
}
.aboutContent {
  padding-top: 70px;
  text-align: center;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.aboutContent__title {
  font-size: 40px;
  font-weight: 500;
}
.aboutContent__text {
  margin-top: 60px;
  font-size: 18px;
  line-height: 1.8;
}
.aboutContent__img {
  margin-top: 40px;
}
.orderContent {
  padding-top: 60px;
}
.orderContent__row {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
.orderContent__left {
  width: 48%;
}
.orderContent__right {
  width: 48%;
}
.designIntro__row {
  display: flex;
  justify-content: space-between;
}
.designIntro__left {
  width: 42%;
}
.designIntro__right {
  flex: 1;
  text-align: center;
}
.designFem__img {
  margin: 30px auto 0;
  max-width: 763px;
  position: relative;
  &:after {
    content: "";
    width: 82px;
    height: 44px;
    background-color: #dbdcde;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    position: absolute;
    bottom: -75px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.designFem__row {
  display: flex;
  justify-content: space-between;
  margin-top: 160px;
}
.designFem__left {
  width: 52%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
}
.designFem__right {
  width: 46%;
}
.designFemPropella {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.sitemapArchives {
  margin-top: 70px;
}
.sitemapTable {
  td {
    width: 25%;
    height: 68px;
    padding: 0 20px;
    vertical-align: middle;
    border-top: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
    border-right: 1px solid #dbdbdb;
    &:last-child {
      border-right: none;
    }
    &.va-top {
      vertical-align: top;
      padding-top: 21px;
    }
    a {
      font-size: 14px;
      text-decoration: none;
      display: inline-block;
      padding-left: 1em;
      position: relative;
      letter-spacing: 0;
      color: inherit;
      &:before {
        content: "〉 ";
        position: absolute;
        left: 0px;
        top: 0;
      }
      &:hover {
        text-decoration: underline;
      }
    }
  }
}
.ppContent {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid #dbdbdb;
  hr {
    margin: 2em 0;
    border: none;
    border-top: 1px solid #dbdbdb;
  }
  ol {
    list-style: decimal;
    margin-left: 1em;
    li {
      font-size: 14px;
      + li {
        margin-top: 1em;
      }
    }
  }
  table {
    td {
      height: 68px;
      padding: 0 20px;
      vertical-align: middle;
      border-top: 1px solid #dbdbdb;
      border-bottom: 1px solid #dbdbdb;
      border-right: 1px solid #dbdbdb;
      font-size: 13px;
      letter-spacing: 0;
      &.-min {
        width: 22%;
      }
      &:first-child {
        padding-left: 0;
      }
      &:last-child {
        border-right: none;
        padding-right: 0;
      }
    }
  }
}
.ppContent__h2 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 60px;
  margin-bottom: 0.2em;
}
.companyLinks {
  margin-top: 80px;
  padding-top: 80px;
  padding-bottom: 160px;
  border-top: 1px solid #dbdbdb;
  display: flex;
  flex-wrap: wrap;
  gap: 100px 55px;
}
.companyLinks__item {
  width: calc((100% - 110px) / 3);
}
.companyLinks__info {
  position: relative;
  margin-top: 10px;
  .en {
    font-family: "Cinzel", serif;
    display: block;
    font-size: 13px;
    letter-spacing: 0.05em;
  }
  .ja {

    display: block;
    font-size: 16px;
    letter-spacing: 0.05em;
  }
  &:after {
    content: "";
    background: url(../img/ico_arrow_link.svg) no-repeat center;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 0;
    right: 0;
  }
}
.recruit__read {
  margin-top: 60px;
  padding-top: 20px;
  font-size: 14px;
  border-top: 1px solid #dbdbdb;
}
.recruitContent {
  height: 26.4vw;
  min-height: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 45px;
  position: relative;
}
.recruitContent:after {
  content: "";
  background: url(../webp/recruit/bg_recruit.webp) no-repeat center/cover;
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: opacity 2s;
}
.recruitContent.is-active:after {
  opacity: 1;
}
.recruitLinks {
  width: 100%;
  max-width: 1080px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
}
.recruitLinks__item a {
  display: flex;
  width: 424px;
  height: 96px;
  background-color: #fff;
  border: 1px solid #231815;
  color: inherit;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.recruitLinks__item a:hover {
  border-color: #d7000f;
  background-color: #d7000f;
  color: #fff;
}


@media screen and (min-width: 641px){
  .shipIntro__first,
  .shipIntro__next {
    display: none !important;
  }
}
@media screen and (max-width: 640px){
  .flex {
    flex-direction: column;
    gap: 18px;
  }
  .mt-10-sp {
    margin-top: 10px;
  }
  .mt-30-sp {
    margin-top: 30px;
  }
  .btn-primary {
    width: 135px;
    font-size: 14px;
    padding: 6px 0;
  }
  .btn-support {
    padding: 0 25px;
    height: 48px;
    font-size: 16px;
  }
  .btn-small {
    width: 212px;
    height: 48px;
    font-size: 10px;
  }
  .btn-full {
    padding: 0 25px;
    height: 48px;
    font-size: 13px;
  }
  .center-sp {
    margin: 0 auto;
  }
  .title-primary .en {
    font-size: 30px;
  }
  .title-primary .ja {
    font-size: 12px;
  }
  .title-secondary .en {
    font-size: 24px;
  }
  .title-secondary .ja {
    font-size: 20px;
  }
  .title-redline {
    font-size: 20px;
    border-width: 4px;
  }
  .title-redline.-small {
    font-size: 18px;
  }
  .text-primary {
    font-size: 14px;
  }
  .text-medium {
    font-size: 14px;
  }
  .hover-scale__box:before {
    width: 22px;
    height: 22px;
  }
  .hover-scale__box:after {
    width: 22px;
    height: 22px;
  }
  .container-l {
    padding: 0 7.2vw;
  }
  .l-content {
    flex-direction: column;
  }
  .l-content__img {
    width: 100%;
  }
  .header__inner {
    height: 50px;
    padding: 0 19px 0 16px;
  }
  .header__logo {
    gap: 12px;
    img {
      width: 127px;
    }
  }
  .header__desc {
    font-size: 8px;
    line-height: 1.2;
  }
  .headerRight {
    display: none;
  }
  .spNavi {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    padding-top: 54px;
    display: none;
  }
  .spNavi__wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    overflow: auto;
  }
  .spNavi__list {

    a {
      text-decoration: none;
      color: inherit;
    }
    dt {
      font-size: 14px;
      margin-bottom: 1em;
    }
    dd {
      font-size: 12px;
      margin-left: 1em;
      margin-bottom: 1em;
    }
  }
  .spNavi__close {
    position: absolute;
    top: 20px;
    right: 19px;
    width: 34px;
    height: 16px;
    span {
      width: 100%;
      height: 1px;
      background-color: #231815;
      position: absolute;
      &:nth-child(1) {
        top: 0px;
        right: 0px;
        transform: rotate(26deg);
        transform-origin: left top;
      }
      &:nth-child(2) {
        bottom: 0px;
        right: 0px;
        transform: rotate(-26deg);
        transform-origin: left bottom;
      }
    }
  }
  .spNavi__sub {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #231815;
    a {
      font-size: 12px;
  
      color: inherit;
      text-decoration: none;
    }
  }
  .spNavi__lang {
    display: flex;
    justify-content: flex-end;
    li {
      position: relative;
      top: -1.8em;
      a {
        font-size: 16px;
        color: #fff;
    
        text-decoration: none;
        background-color: #d6d7d7;
        width: 36px;
        display: block;
        text-align: center;
        &.is-active {
          background-color: #d7000f;
        }
      }
    }
  }
  .spNavi__logo {
    padding-bottom: 40px;
  }
  .menu {
    display: block;
    width: 34px;
    height: 7px;
    position: relative;
  }
  .menu span:nth-child(1) {
    width: 100%;
    height: 1px;
    background-color: #231815;
    position: absolute;
    top: 0px;
    right: 0px;
  }
  .menu span:nth-child(2) {
    width: 50%;
    height: 1px;
    background-color: #231815;
    position: absolute;
    bottom: 0px;
    right: 0px;
  }
  .breadcrumb {
    display: none;
  }
  .footer {
    padding: 34px 20px 12px;
  }
  .footer:after {
    width: 22px;
    height: 23px;
  }
  .footer__inner {
    flex-direction: column-reverse;
  }
  .footerNavi {
    display: grid;
    column-gap:30px;
  }
  .footerNavi__left
   {
    display: contents;
  }
  .footerNavi__right {
    display: contents;
  }
  .footerNavi .sp-block-01 {
    grid-row: 1 / 3;
	  grid-column: 1 / 2;
  }
  .footerNavi .sp-block-02 {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }
  .footerNavi .sp-block-03 {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
  }
  .footerNavi .sp-block-04 {
    grid-row: 3 / 4;
    grid-column: 1 / 3;
    border-top: 1px solid #fff;
  }
  .footerNavi__list li {
    font-size: 9px;
  }
  .footerNavi__list li:first-child,
  .footerNavi__list li.large {
    font-size: 10px;
  }
  .footerNavi__list.-border-non {
    border-style: none;
  }
  .footer__left {
    margin-top: 65px;
    width: 100%;
  }
  .footer__logo {
    width: 160px;
  }
  .footerSns {
    margin-top: 30px;
  }
  .footerSns li {
    margin: 0 12px;
  }
  .footerSns li img {
    width: 22px;
  }
  .footerSns li img.youtube {
    width: 24px;
  }
  .copyright {
    position: static;
    margin-top: 80px;
    font-size: 10px;
  }
  .l-worksList {
    margin: 14px 0 0;
    flex-direction: column;
  }
  .l-worksList__item {
    width: 100%;
    max-width: 410px;
    margin: 0 auto 30px;
    display: block;
  }
  .l-worksList__item:after {
    width: 13px;
    height: 13px;
    bottom: 6px;
    right: 0px;
  }
  .l-worksList__title {
    font-size: 12.5px;
  }
  .main {
    padding: 50px 0 50px;
  }
  .pageHeader {
    margin-top: 45px;
  }
  .pageHeader__title.-tag .en:after {
    width: 23px;
    height: 23px;
    margin-left: 38px;
  }
  .pageHeader__title.-search .en:after {
    width: 23px;
    height: 23px;
    margin-left: 15px;
  }
  .pageHeader__title.-introduction .en:after {
    width: 36px;
    height: 26px;
    margin-left: 14px;
    top: 2px;
  }
  .pageHeader__title.-contact .en:after {
    width: 36px;
    height: 26px;
    margin-left: 14px;
  }
  .pageHeader__title.-faq .en:after {
    width: 23px;
    height: 23px;
    margin-left: 30px;
  }
  .pageHeader__title.-news .en:after {
    width: 23px;
    height: 23px;
    margin-left: 15px;
  }
  .pageHeader__title.-recruit .en:after {
    width: 40px;
    height: 24px;
    margin-left: 30px;
    top: 4px;
  }
  .pageHeader__title .en {
    font-size: 30px;
  }
  .pageHeader__title.-introduction .en {
    letter-spacing: normal;
  }
  .pageHeader__title .ja {
    font-size: 10px;
  }
  .pageHeader__title.-sitemap .en:after {
    width: 29px;
    height: 44px;
    margin-left: 30px;
    vertical-align: -18px;
  }
  .pageHeader__title.-pp .en:after {
    width: 37px;
    height: 40px;
    margin-left: 0px;
    position: absolute;
    top: 12px;
    left: 191px;
  }
  .pageHeader__title.-pp_social .en:after {
    width: 37px;
    height: 40px;
    margin-left: 0px;
    position: absolute;
    top: 38px;
    left: 285px;
  }
  .pageHeader__title.-pp_information .en:after {
    width: 37px;
    height: 40px;
    margin-left: 0px;
    position: absolute;
    top: 53px;
    left: 285px;
  }
  .pageHeader__title.-cf .en:after {
    width: 37px;
    height: 40px;
    position: absolute;
    top: auto;
    bottom: -45px;
    left: auto;
    right: -22px;
  }
  .pageHeader__title.-company .en:after {
    width: 37px;
    height: 40px;
    margin-left: 0px;
    position: absolute;
    top: 18px;
    left: 206px;
  }
  .homeHero {
    top: 0px;
  }
  .homeHeroSlider__img {
    height: 100dvh;
  }
  .homeHeroSlider__item .beyond-logo {
    display: none;
  }
  .homeHeroSlider__copy {
    font-size: 22px;
  }
  .homeHeroSlider__info {
    left: 15px;
    bottom: 15px;
  }
  .homeHeroSlider__en {
    font-size: 24px;
  }
  .homeHeroSlider__large {
    font-size: 36px;
  }
  .homeHeroSlider__medium {
    font-size: 18px;
  }
  .homeHeroSlider__small {
    font-size: 12px;
  }
  .homeNew {
    margin-top: 100dvh;
    padding: 40px 7.8% 0;
  }
  .homeNew__title {
    padding-top: 30px;
  }
  .homeNew__title:before {
    width: 23px;
    height: 23px;
  }
  .homeNew__read {
    font-size: 10px;
  }
  .homeNew__propeller {
    width: 224px;
    top: -110px;
    right: 0px;
  }
  .homeNew__propeller span {
    right: -64px;
  }
  .homeNewList {
    margin-top: 30px;
    display: block;
  }
  .homeNewList__item {
    width: 100%;
    max-width: 410px;
    margin: 0 auto 30px;
    display: block;
  }
  .homeNewList__item:last-child {
    margin-bottom: 0;
  }
  .homeNewList__item:after {
    width: 9px;
    height: 9px;
    bottom: 6px;
    right: 0px;
  }
  .homeNewList__title .en {
    font-size: 9px;
  }
  .homeNewList__title .ja {
    font-size: 15px;
  }
  .homeService {
    padding: 67px 0 0;
  }
  .homeService__title {
    padding-top: 30px;
  }
  .homeService__title:before {
    width: 30px;
    height: 27px;
  }
  .homeService__read {
    font-size: 10px;
  }
  .homeServiceList {
    margin-top: 30px;
    display: block;
    padding: 0 7.8%;
  }
  .homeServiceList__item {
    width: 100%;
    max-width: 634px;
    margin: 0 auto 30px;
    display: block;
  }
  .homeServiceList__item:last-child {
    margin-bottom: 0;
  }
  .homeServiceList__item:after {
    width: 9px;
    height: 9px;
    bottom: 6px;
    right: 0px;
  }
  .homeServiceList__title .en {
    font-size: 9px;
  }
  .homeServiceList__title .ja {
    font-size: 15px;
  }
  .homeNews {
    padding: 67px 0 0;
  }
  .homeNews__title {
    padding-top: 30px;
  }
  .homeNews__title:before {
    width: 24px;
    height: 24px;
  }
  .homeNews__read {
    font-size: 10px;
  }
  .homeNewsList {
    margin-top: 30px;
    display: block;
    padding: 0 7.8%;
  }
  .homeNewsList__item {
    padding: 20px 0 20px 16px;
  }
  .homeNewsList__item:last-child {
    border-bottom: 1px solid #d6d7d7;
  }
  .homeNewsList__item a {
    padding-right: 30px;
    flex-wrap: wrap;
  }
  .homeNewsList__item a:after {
    width: 9px;
    height: 9px;
    bottom: 4px;
    top: auto;
    right: 0px;
  }
  .homeNewsList__time {
    width: 56px;
    font-size: 9px;
  }
  .homeNewsList__cat {
    font-size: 9px;
    padding: 0 4px;
    min-width: 52px;
  }
  .homeNewsList__title {
    font-size: 14px;
    width: 100%;
    flex: 0 0 auto;
    margin-top: 4px;
  }
  .homeNews__btn {
    margin-top: 40px;
  }
  .homeShips {
    height: 80px;
  }
  .homeShips__item.-item01 {
    width: 253px;
  }
  .homeShips__item.-item02 {
    width: 329px;
  }
  .homeShips__item.-item03 {
    width: 332px;
  }
  .homeShips__item.-item04 {
    width: 130px;
  }
  .homeShips__item.-item05 {
    width: 130px;
  }
  .homeShips__item.-item06 {
    width: 112px;
  }
  .homeMovie video {
    height: 500px;
    width: 100%;
    object-fit: cover;
  }
  .homePickup {
    padding: 67px 7.8% 0;
  }
  .homePickup__title {
    padding-top: 30px;
  }
  .homePickup__title:before {
    width: 23px;
    height: 23px;
  }
  .homePickupList {
    margin-top: 30px;
    display: block;
  }
  .homePickupList__item {
    width: 100%;
    max-width: 410px;
    margin: 0 auto 30px;
    display: block;
  }
  .homePickupList__item:last-child {
    margin-bottom: 0;
  }
  .homePickupList__item:after {
    width: 9px;
    height: 9px;
    bottom: 6px;
    right: 0px;
  }
  .homePickupList__info {
    margin-top: 10px;
  }
  .homePickupList__date {
    font-size: 9px;
  }
  .homePickupList__cat {
    font-size: 9px;
    padding: 0 4px;
  }
  .homePickupList__title {
    font-size: 9px;
  }
  .homeSpecial {
    padding: 67px 0 0;
  }
  .homeSpecial__title {
    padding-top: 30px;
  }
  .homeSpecial__title:before {
    width: 30px;
    height: 30px;
  }
  .homeSpecial__read {
    font-size: 10px;
  }
  .homeSpecialList {
    margin-top: 30px;
    display: block;
    padding: 0 7.8%;
  }
  .homeSpecialList .homeSpecialList__item a {
    width: auto;
    height: auto;
    padding: 0;
  }
  .homeSpecialList .homeSpecialList__item img {
    width: auto;
    height: auto;
  }
  .homeSpecialList .slick-prev {
    background: url(../img/home/arrow_prev_black.svg) no-repeat center;
    top: 37%;
    left: 2vw;
    width: 10px;
    height: 15px;
  }
  .homeSpecialList .slick-next {
    background: url(../img/home/arrow_next_black.svg) no-repeat center;
    top: 37%;
    right: 2vw;
    width: 10px;
    height: 15px;
  }
  .homeSpecialList__info:after {
    width: 9px;
    height: 9px;
    bottom: 6px;
    right: 0px;
  }
  .homeSpecialList__title .en {
    font-size: 9px;
  }
  .homeSpecialList__title .ja {
    font-size: 12px;
  }
  .homeLinks {
    padding-top: 100px;
    flex-direction: column;
  }
  .homeLinks__left {
    width: 100%;
  }
  .homeLinks__right {
    width: 100%;
  }
  .homeLinks__title .en {
    font-size: 18px;
    text-align: center;
  }
  .homeLinks__title .ja {
    font-size: 10px;
  }
  .tagArchives {
    margin-top: 36px;
  }
  .tagArchivesSec {
    padding: 15px 0 25px;
    display: block;
  }
  .tagArchivesSec__title {
    width: 100%;
  }
  .tagArchivesSec__title .en {
    font-size: 9px;
  }
  .tagArchivesSec__title .ja {
    font-size: 12.5px;
  }
  .tagArchivesSec__right {
    width: 100%;
    margin-top: 20px;
  }
  .tagArchivesList {
    margin: -8px 0;
    justify-content: space-between;
  }
  .tagArchivesList li {
    width: 44%;
    margin: 8px 0;
  }
  .tagArchivesList li a {
    font-size: 10px;
  }
  .searchTag {
    margin-top: 30px;
  }
  .searchTag__tag {
    font-size: 9px;
    min-width: 120px;
  }
  .searchArchivesList {
    padding-top: 4px;
    margin: 0 0;
  }
  .searchArchivesList__item {
    width: 100%;
    max-width: 410px;
    margin: 20px auto 0;
    display: block;
  }
  .searchArchivesList__item:after {
    width: 12px;
    height: 12px;
    bottom: 4px;
    right: 0px;
  }
  .searchArchivesList__title {
    font-size: 12.5px;
  }
  .catNavi {
    display: none;
  }
  .productHero {
    margin-top: 50px;
  }
  .productHero__bg {
    height: calc(100dvh - 50px);
  }
  .productHero__title:before {
    width: 27px;
    height: 20px;
  }
  .productHero__title .en {
    font-size: 30px;
  }
  .productHero__title .ja {
    font-size: 10px;
  }
  .productSec {
    margin: 30px 0 30px;
    padding: 0 7.8%;
  }
  .productSec__title {
    font-size: 20px;
    border-left-width: 4px;
  }
  .productSec__text {
    font-size: 14px;
    margin-top: 24px;
  }
  .productSec__img {
    margin-top: 25px;
  }
  .productContent {
    margin-top: 80px;
  }
  .productContentHeader {
    position: static;
    height: auto;
  }
  .productContentHeader__inner {
    position: static;
    margin-top: 30px;
    padding: 0 7.8%;
    transform: translate(0);
    color: #231815;
    text-shadow: none;
  }
  .productContentHeader__title {
    border-width: 4px;
  }
  .productContentHeader__title .large {
    font-size: 25px;
  }
  .productContentHeader__title .small {
    font-size: 15px;
  }
  .productContentHeader__text {
    font-size: 12px;
    margin-top: 12px;
  }
  .productContentBottom {
    margin-top: 40px;
    padding: 0 7.8%;
  }
  .productArchive__first {
    text-align: center;
  }
  .productArchive__next {
    text-align: center;
    margin-top: 15px;
    display: none;
  }
  .productArchiveList {
    margin: 0 0;
    flex-direction: column;
  }
  .productArchiveList__item {
    width: 100%;
    max-width: 410px;
    margin: 0 auto 30px;
    display: block;
    display: none;
  }
  .productArchiveList__item:after {
    width: 13px;
    height: 13px;
    bottom: 6px;
    right: 0px;
  }
  .productArchiveList__title {
    font-size: 12.5px;
  }
  .productWorks {
    padding-top: 100px;
  }
  .productWorksList {
    margin: 20px 0 0;
    flex-direction: column;
  }
  .productWorksList__item {
    width: 100%;
    max-width: 410px;
    margin: 0 auto 30px;
    display: block;
  }
  .productWorksList__item:after {
    width: 13px;
    height: 13px;
    bottom: 6px;
    right: 0px;
  }
  .productWorksList__info {
    margin-top: 8px;
  }
  .productWorksList__title {
    font-size: 12.5px;
  }
  .productSingleHero:after {
    width: 25px;
    height: 26px;
  }
  .productSingleHero__title {
    font-size: 15px;
    right: 20px;
    bottom: 20px;
  }
  .productSingleContent {
    padding: 25px 7.8% 0;
  }
  .productSingleContent__title .en {
    font-size: 9px;
  }
  .productSingleContent__title .ja {
    font-size: 20px;
  }
  .productSingleContentRow {
    flex-direction: column;
    margin-top: 10px;
  }
  .productSingleContentRow__left {
    width: 100%;
  }
  .productSingleContentRow__right {
    width: 100%;
    margin-top: 20px;
  }
  .productSingleContentRow__text {
    font-size: 10px;
  }
  .productSingleFeatures {
    padding-top: 20px;
    margin-top: 20px;
  }
  .productSingleFeatures__text {
    margin-top: 10px;
    font-size: 10px;
  }
  .productSingleFeatures .title-redline {
    font-size: 12.5px;
  }
  .productSingleContentSlider .slick-next {
    bottom: -16px;
    right: 0px;
    width: 6px;
    height: 9px;
  }
  .productSingleContentSlider .slick-prev {
    bottom: -16px;
    right: 25px;
    width: 6px;
    height: 9px;
  }
  .productSingleTags {
    padding: 65px 7.8% 87px;
  }
  .list-tag {
    margin: 0;
  }
  .list-tag li {
    margin: 8px 28px 8px 0;
    font-size: 9px;
  }
  .list-tag li a {
    padding: 2px 20px;
    font-size: 9px;
  }
  .productSingleContact__title {
    font-size: 25px;
  }
  .productSingleContact__btn {
    margin-top: 16px;
  }
  .productSingleContact__btn a {
    font-size: 16px;
    width: 260px;
    padding: 6px 0;
  }
  .productOthers {
    padding: 65px 7.8% 60px;
  }
  .productOthers__block + .productOthers__block {
    margin-top: 67px;
  }
  .l-largeHero__title {
    margin-left: 24px;
  }
  .coastal .l-largeHero__title:before {
    width: 50px;
    height: 17px;
  }
  .domestic .l-largeHero__title:before {
    width: 48px;
    height: 20px;
  }
  .pleasure .l-largeHero__title:before {
    width: 37px;
    height: 23px;
  }
  .edge .l-largeHero__title:before {
    width: 27px;
    height: 24px;
  }
  .after .l-largeHero__title:before {
    width: 32px;
    height: 28px;
  }
  .l-largeHero {
    height: 100dvh;
  }
  .l-largeHero:after {
    width: 25px;
    height: 26px;
  }
  .l-largeHero__title .small {
    font-size: 10px;
  }
  .l-largeHero__title .en {
    font-size: 30px;
  }
  .l-largeHero__title .ja {
    font-size: 10px;
  }
  .shipIntro__inner {
    padding: 0 7.8%;
  }
  .shipIntro__img {
    width: 100%;
    padding: 0 7.8%;
    margin-top: 20px;
  }
  .coastal .shipIntro__img {
    width: 100%;
    margin: 20px auto 0;
  }
  .domestic .shipIntro__img {
    width: 100%;
    margin: 20px auto 0;
  }
  .pleasure .shipIntro__img {
    width: 100%;
    margin: 20px auto 0;
  }
  .shipIntro {
    padding: 25px 0 50px;
  }
  .shipIntro__text {
    font-size: 14px;
    margin-top: 20px;
  }
  .shipIntroList {
    margin: 20px 0 0;
    flex-direction: column;
  }
  .shipIntroList__item {
    width: 100%;
    max-width: 410px;
    margin: 0 auto 30px;
    display: block;
    display: none;
  }
  .shipIntroList__info:after {
    width: 13px;
    height: 13px;
    top: 6px;
    right: 0px;
  }
  .shipIntroList__cat {
    font-size: 10px;
    min-width: 104px;
  }
  .shipIntroList__title {
    font-size: 12.5px;
  }
  .shipIntroList__text {
    font-size: 10px;
  }
  .shipIntro__first {
    padding-top: 50px;
    text-align: center;
  }
  .shipIntro__next {
    padding-top: 20px;
    text-align: center;
    display: none;
  }
  .shipIntro__btn {
    margin-top: 40px;
  }
  .shipSingleHero:after {
    width: 25px;
    height: 26px;
  }
  .shipSingleHero__title {
    font-size: 15px;
    right: 20px;
    bottom: 20px;
    text-align: right;
  }
  .shipSingleContent {
    padding-top: 22px;
  }
  .shipSingleContent__row {
    flex-direction: column;
    align-items: center;
  }
  .shipSingleContent__left {
    width: 100%;
  }
  .shipSingleContent__left .title-redline {
    font-size: 12.5px;
  }
  .shipSingleContent__title .en {
    font-size: 9px;
  }
  .shipSingleContent__title .ja {
    font-size: 20px;
  }
  .shipSingleContent__text {
    font-size: 10px;
    margin-top: 12px;
  }
  .shipSingleContent__right {
    width: 100%;
    margin-top: 20px;
  }
  .banners {
    padding: 50px 7.8% 50px;
  }
  .bannersList {
    display: block;
    margin: 0;
  }
  .bannersList__item {
    width: 100%;
    max-width: 410px;
    margin: 0 auto 20px;
    display: block;
  }
  .bannersList__item:last-child {
    margin-bottom: 0;
  }
  .bannersList__item:after {
    width: 13px;
    height: 13px;
    bottom: 6px;
    right: 6px;
  }
  .bannersList__title .en {
    font-size: 15px;
  }
  .bannersList__title .ja {
    font-size: 10px;
  }
  .introductionArchive {
    margin-top: 30px;
    padding-top: 20px;
  }
  .introductionArchive__block {
    margin-top: 50px;
  }
  .introductionArchive__title .en {
    font-size: 9px;
  }
  .introductionArchive__title .ja {
    font-size: 15px;
  }
  .introductionArchiveList {
    margin: 0 0;
    flex-direction: column;
  }
  .introductionArchiveList__item {
    width: 100%;
    max-width: 410px;
    margin: 25px auto 0px;
    display: block;
  }
  .introductionArchiveList__info:after {
    width: 13px;
    height: 13px;
    top: 6px;
    right: 0px;
  }
  .introductionArchiveList__title {
    font-size: 12.5px;
  }
  .introductionDetail {
    padding-top: 30px;
  }
  .introductionDetail__title .en {
    font-size: 9px;
  }
  .introductionDetail__title .ja {
    font-size: 20px;
  }
  .introductionDetail__eyecatch {
    margin-top: 20px;
  }
  .introductionDetail__table,
  .introductionDetail__table tbody,
  .introductionDetail__table tr {
    display: block;
  }
  .introductionDetail__table th {
    display: block;
    padding: 10px 0 0;
    font-size: 10px;
    width: 100%;
  }
  .introductionDetail__table td {
    display: block;
    padding: 8px 0 10px;
    font-size: 10px;
  }
  .introductionDetailGallery {
    display: block;
  }
  .introductionDetailGallery__item {
    width: 100%;
    max-width: 410px;
    margin: 20px auto 0;
    display: block;
  }
  .introductionVoice {
    padding-top: 50px;
  }
  .introductionVoice__header {
    padding-left: 10px;
    border-left: 4px solid #d7000f;
  }
  .introductionVoice__title {
    font-size: 20px;
  }
  .introductionVoice__subtitle {
    font-size: 12.5px;
    margin-top: 8px;
  }
  .introductionVoice__name {
    margin-top: 8px;
    font-size: 11px;
  }
  .introductionVoice__eyecatch {
    margin-top: 20px;
  }
  .introductionVoiceBlock {
    margin-top: 20px;
    flex-direction: column;
  }
  .introductionVoiceBlock__title {
    font-size: 12.5px;
    margin: 0;
    padding-left: 20px;
  }
  .introductionVoiceBlock__title:before {
    content: "";
    width: 15px;
    height: 1px;
    background-color: #000000;
    position: absolute;
    top: 10px;
    left: 0px;
  }
  .introductionVoiceBlock__left {
    width: 100%;
    margin-top: 8px;
  }
  .introductionVoiceBlock__text {
    font-size: 10px;
  }
  .introductionVoiceBlock__right {
    width: 100%;
    order: 1;
    margin-top: 16px;
  }
  .introductionTags {
    margin-top: 30px;
  }
  .introductionOthers {
    margin-top: 50px;
  }
  .specialHero {
    margin-top: 50px;
    height: calc(100dvh - 50px);
  }
  .specialHero__title:before {
    width: 34px;
    height: 34px;
  }
  .specialHero__title .en {
    font-size: 30px;
  }
  .specialHero__title .ja {
    font-size: 10px;
  }
  .specialMain {
    padding-top: 16px;
    padding-bottom: 60px;
  }
  .specialCat__list {
    justify-content: space-between;
    margin: 0 auto;
  }
  .specialCat__list li {
    width: calc(50% - 10px);
    margin: 16px 0 0;
  }
  .specialCat__list li a {
    height: 32px;
    font-size: 14px;
  }
  .specialArchive {
    margin-top: 40px;
  }
  .specialList {
    margin: 0 0;
    flex-direction: column;
  }
  .specialList__item {
    width: 100%;
    max-width: 410px;
    margin: 20px auto 0;
    display: block;
  }
  .specialList__item:first-child {
    margin-top: 0;
  }
  .specialList__item:after {
    width: 13px;
    height: 13px;
    bottom: 6px;
    right: 0px;
  }
  .specialList__title .en {
    font-size: 9px;
  }
  .specialList__title .ja {
    font-size: 12.5px;
  }
  .l-smallHero:after {
    width: 25px;
    height: 26px;
  }
  .l-smallHero__title {
    font-size: 15px;
    right: 20px;
    bottom: 20px;
    text-align: right;
  }
  .specialSingleHeader {
    margin-top: 30px;
    flex-direction: column;
  }
  .specialSingleHeader__left {
    order: 1;
    width: 100%;
  }
  .specialSingleHeader__right {
    order: 3;
    margin-top: 10px;
    width: 100%;
  }
  .specialSingleHeader__title .small {
    font-size: 9px;
  }
  .specialSingleHeader__title .large {
    font-size: 14.5px;
  }
  .specialSingleHeader__name {
    font-size: 20px;
    padding-left: 10px;
    border-left: 4px solid #d7000f;
  }
  .specialSingleHeader__job {
    font-size: 11px;
    margin-top: 8px;
  }
  .specialSingle__profile {
    order: 2;
    font-size: 10px;
    margin-top: 5px;
  }
  .specialSingleFaq {
    margin-top: 20px;
  }
  .specialSingleFaqRow {
    flex-direction: column;
  }
  .specialSingleFaqRow__text {
    width: 100%;
    font-size: 10px;
  }
  .specialSingleFaqRow__thumb {
    width: 100%;
    margin-top: 10px;
  }
  .specialSingleFaq__title {
    font-size: 12.5px;
    padding-left: 0;
  }
  .specialSingleFaq__title:before {
    display: none;
  }
  .thumb-line:before,
  .thumb-line:after {
    width: 25px;
    height: 26px;
  }
  .specialOthers {
    margin-top: 40px;
    padding-top: 0;
    border-top-style: none;
  }
  .egdeContent {
    padding-top: 22px;
    padding-bottom: 80px;
  }
  .egdeContentOutline {
    margin-top: 15px;
    padding: 20px 12px 40px 6px;
  }
  .egdeContentOutline__title {
    font-size: 17px;
  }
  .egdeContentRow {
    display: block;
  }
  .polishOutline {
    margin: 0;
  }
  .polishOutline {
    margin: 15px 0 0;
  }
  .polishOutlineRow {
    display: block;
    margin-top: 30px;
  }
  .polishOutlineRow__block {
    margin-top: 30px;
  }
  .polishOutlineRow__block:first-child {
    margin-top: 0;
  }
  .polishOutlineRow__left {
    padding: 0;
    width: 100%;
  }
  .polishOutlineRow__right {
    padding: 0;
    width: 100%;
    margin-top: 20px;
  }
  .polishBtn {
    margin-top: 50px;
  }
  .faqCat {
    position: static;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .faqCat li {
    margin: 0;
    width: calc(50% - 10px);
  }
  .faqCat li a {
    width: 100%;
    height: 34px;
    font-size: 11px;
  }
  .faqContent {
    padding-top: 40px;
  }
  .faqContent + .faqContent {
    margin-top: 30px;
  }
  .faqContent__title {
    font-size: 15px;
    margin-bottom: 18px;
  }
  .faqList__question {
    padding-right: 30px;
  }
  .faqList__question:after {
    width: 15px;
    height: 15px;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
  }
  .faqList li {
    padding: 15px 0;
  }
  .faqList__question {
    font-size: 12px;
    display: block;
  }
  .faqList__tag {
    width: 100%;
  }
  .faqList__text {
    width: 100%;
  }
  .faqList__answer {
    font-size: 12px;
    margin-top: 10px;
  }
  .afterIntro {
    padding: 30px 0 60px;
    text-align: left;
  }
  .afterIntro__title {
    font-size: 20px;
    border-left: 4px solid #d7000f;
    padding-left: 6px;
    margin: 0 7.8vw;
  }
  .afterSecRow__right {
    display: none;
  }
  .afterSecRow__title {
    font-size: 36px;
  }
  .afterIntro__read {
    font-size: 12px;
    margin: 10px 7.8vw 0;
  }
  .afterIntro__img {
    margin: 16vw 7.8vw 0;
  }
  .afterIntro__link {
    font-size: 11px;
    text-align: center;
    margin-top: 30px;
  }
  .afterIntro__bg {
    top: 104vw;
    height: calc(100% - 104vw);
    background-size: cover;
  }
  .afterIntroList {
    display: block;
    margin-top: 30px;
  }
  .afterIntroList__item {
    margin-top: 30px;
    width: 100%;
  }
  .-small .afterIntroList__item {
    width: 100%;
  }
  .-small .afterIntroList__title {
    font-size: 13px;
  }
  .afterIntroList__text,
  .-small .afterIntroList__text {
    font-size: 12px;
  }
  .afterSec__eyecatch {
    width: 100%;
    position: static;
  }
  .afterSec {
    padding-top: 0;
  }
  #afterSupport {
    padding: 0;
  }
  #afterMaintenance {
    padding: 85px 0 0;
  }
  #afterProposal {
    padding: 50px 0 40px;
  }
  .afterSecRow {
    margin-top: 30px;
  }
  .afterSecRow__left {
    width: 100%;
  }
  .list-square li {
    font-size: 14px;
  }
  .afterEco {
    margin-top: 70px;
    font-size: 15px;
  }
  .afterEcoList {
    display: block;
    margin: 0;
  }
  .afterEco__title {
    padding-bottom: 6px;
    font-size: 18px;
  }
  .afterEcoList__item {
    width: 100%;
    margin: 15px 0 0;
  }
  .afterEcoList__text {
    font-size: 12px;
    margin-top: 5px;
  }
  .afterWorld {
    margin-top: 40px;
    display: block;
  }
  .afterWorld__left {
    width: 100%;
  }
  .afterWorld__right {
    width: 100%;
    margin-top: 20px;
  }
  .afterWorld__text {
    font-size: 14px;
    margin-top: 10px;
    padding-top: 10px;
    border-style: none;
  }
  .afterWorldSupport__list li {
    margin-top: 16px;
  }
  .afterParallax {
    margin-top: 40px;
  }
  .newsCat {
    margin-top: 36px;
  }
  .newsCat__list {
    gap: 9px;
  }
  .newsCat li {
    margin: 0;
    width: calc((100% - 30px) / 3);
  }
  .newsArchives {
    margin-top: 54px;
  }
  .newsArchivesList__item {
    padding: 18px 0;
    padding-right: 36px;
    flex-wrap: wrap;
  }
  .newsArchivesList__item:after {
    width: 12px;
    height: 12px;
    right: 0px;
  }
  .newsArchivesList__title {
    width: 100%;
    font-size: 15px;
    flex: 0 0 100%;
  }
  .l-pager {
    margin-top: 60px;
  }
  .newsDetail {
    padding-top: 60px;
  }
  .newsDetail__title {
    font-size: 18px;
  }
  .newsDetail__content {
    margin-top: 20px;
  }
  .newsDetail__content p {
    font-size: 12px;
  }
  .contact__read {
    margin-top: 24px;
    font-size: 14px;
  }
  .contactNavi {
    margin-top: 78px;
  }
  .contactNavi dl dd {
    font-size: 16px;
  }
  .contactNavi__item + .contactNavi__item {
    margin-top: 40px;
  }
  .contactNavi__item a {
    height: 90px;
    font-size: 15px;
    border-radius: 12.5px;
  }
  .contactNavi__item a:after {
    width: 8px;
    height: 8px;
    right: 30px;
  }
  .contactBanners {
    margin-top: 80px;
    flex-direction: column;
    gap: 20px 0;
  }
  .contactBanners__item:after {
    width: 12px;
    height: 12px;
  }
  .contactBanners__text .en {
    font-size: 18px;
  }
  .contactBanners__text .ja {
    font-size: 10px;
  }
  .contactHeader {
    margin-top: 60px;
  }
  .contactHeader__title {
    font-size: 18px;
  }
  .contact__layout {
    margin-top: 36px;
    display: block;
  }
  .contact__left {
    width: 100%;
  }
  .contact__right {
    width: 100%;
    margin-top: 30px;
  }
  .contactForm__name {
    font-size: 12px;
  }
  .contactForm__label {
    font-size: 12px;
  }
  .form-text {
    height: 30px;
    font-size: 12px;
  }
  .form-textarea {
    height: 100px;
    font-size: 12px;
  }
  .form-files {
    display: block;
  }
  .form-files__left {
    width: 100%;
    margin-bottom: 10px;
  }
  .form-file {
    font-size: 12px;
  }
  .contactForm__btn {
    text-align: center;
    margin-top: 40px;
  }
  .healthContent {
    padding-top: 30px;
  }
  .healthNavi {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-top: 48px;
  }
  .healthNavi li {
    width: 250px;
  }
  .healthNavi li a {
    height: 60px;
    font-size: 12px;
  }
  .healthContent__img {
    margin-top: 54px;
  }
  .healthSec {
    padding: 60px 0;
  }
  .healthSec.healthEvaluate {
    padding-bottom: 0;
  }
  .healthGroup__row {
    flex-direction: column;
  }
  .healthGroup__left {
    width: 100%;
  }
  .healthGroup__right {
    width: 100%;
    margin-top: 20px;
  }
  .scrollable {
    overflow: auto;
    position: relative;
  }
  .scrollable__swipe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/ico_swipe.svg) no-repeat center/72px;
    background-color: rgba(35,24,21,0.6);
    pointer-events: none;
  }
  .healthMap__img {
    width: 800px;
  }
  .healthGoal__table {
    width: 1000px;
  }
  .healthActivityList {
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }
  .healthActivityList__item {
    width: 100%;
    max-width: 410px;
    margin: 0 auto 30px;
    display: block;
  }
  .healthEvaluate__row {
    flex-direction: column;
  }
  .healthEvaluate__left {
    width: 100%;
  }
  .healthEvaluate__right {
    width: 100%;
    margin-top: 20px;
  }
  .susHero {
    padding-top: 36px;
  }
  .susHero__title .en {
    font-size: 11px;
  }
  .susHero__title .ja {
    font-size: 24px;
  }
  .susHero__read {
    font-size: 14px;
    padding: 0 3.6vw;
  }
  .susSec {
    margin-top: 60px;
  }
  .susSec + .susSec {
    padding-top: 60px;
  }
  .susSec__title {
    margin-bottom: 72px;
  }
  .susSec__title .ja {
    font-size: 24px;
  }
  .susSec__title .en {
    font-size: 11px;
  }
  .susSec__row {
    margin-bottom: 40px;
    flex-direction: column;
    align-items: flex-start;
  }
  .susSec__left {
    width: 100%;
  }
  .susSec__right {
    width: 100%;
    margin-top: 20px;
  }
  .susSec__read {
    font-size: 11px;
  }
  .groupHeader {
    margin-top: 36px;
  }
  .groupNavi {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    li {
      width: calc((100% - 24px) / 3);
      &:first-child {
        width: calc((100% - 24px) / 3);
      }
      a {
        height: 98px;
      }
    }
    .icon {
      img {
        transform: scale(0.6);
      }
    }
    .text {
      font-size: 11px;
      margin-top: -4px;
      height: auto;
      line-height: 1;
    }
  }
  .groupEyecatch {
    margin-top: 24px;
  }
  .gropSec__icon {
    height: auto;
    margin-bottom: 10px;
  }
  .gropSec__title {
    font-size: 24px;
  }
  .gropSec__h3 {
    font-size: 15px;
  }
  .gropSecRow {
    flex-direction: column;
  }
  .gropSec__list {
    font-size: 14px;
  }
  .gropSec__list + .gropSec__list {
    margin-top: 1.5em;
  }
  .groupRow {
    flex-direction: column;
    margin-top: 56px;
    gap: 56px;
    .gropSec {
      width: 100%;
    }
  }
  .techWrapper {
    padding: 0 7.8%;
    margin-top: 36px;
    display: block;
  }
  .techLeft {
    display: none;
  }
  .techRight {
    padding-top: 0;
  }
  .techSec {
    margin-top: 60px;
  }
  .techLifeList__item {
    display: block;
    padding-left: 40px;
    &:before {
      width: 24px;
      top: 17px;
    }
    &:after {
      width: 5px;
      height: 5px;
      left: 22px;
      top: 15px;
    }
  }
  .techLifeList__cat {
    flex-direction: column;
    li {
      font-size: 12px;
    }
  }
  .techSec__row {
    flex-direction: column;
    gap: 20px;
  }
  .techSec__left {
    width: 100%;
  }
  .techSec__right {
    width: 100%;
  }
  .techLifeList__icon {
    text-align: left;
    width: 36px;
  }
  .techLifeList__title {
    font-size: 18px;
  }
  .techLifeList__text {
    font-size: 12px;
  }
  .techRow {
    flex-direction: column;
    gap: 20px;
  }
  .techRow__item {
    width: 100%;
  }
  .techGroup__row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .techBase__title {
    font-size: 24px;
    letter-spacing: normal;
    text-align: center;
  }
  .techBaseList {
    margin: 20px 0 0;
    flex-direction: column;
    gap: 20px;
  }
  .techBaseList__item {
    width: 100%;
    max-width: 410px;
    margin: 0 auto;
    display: block;
  }
  .techBeyond__text {
    font-size: 18px;
  }
  .philosophyNavi {
    margin-top: 50px;
    flex-direction: column;
    gap: 40px 0;
    align-items: center;
    a {
      width: 250px;
      font-size: 14px;
      padding: 20px 0;
    }
  }
  .philosophyOur {
    margin-top: 72px;
    padding-top: 54px;
    background: url(../img/philosophy/bg_our_sp.jpg) no-repeat center bottom/cover;
    padding-bottom: 84vw;
  }
  .philosophyOurTop {
    padding: 0;
    position: static;
  }
  .philosophyOurBlock {
    margin-top: 36px;
  }
  .philosophyOurBlock__title {
    text-align: left;
    .en {
      font-size: 30px;
    }
    .ja {
      font-size: 18px;
    }
  }
  .philosophyOurBlock__read {
    font-size: 14px;
    margin-top: 10px;
    text-align: left;
  }
  .philosophyOurtopBottom {
    display: none;
  }
  .philosophyOurBlockList {
    padding: 20px 0 0 27px;
    background-image: none;
    margin-top: 10px;
    border-left: 1px solid #000;
    margin-left: 24px;
    flex-direction: column;
    gap: 20px;
  }
  .philosophyOurBlockList__item {
    width: 100%;
  }
  .philosophyOurBlockList__title {
    text-align: left;
    border-bottom: 1px solid #000;
    line-height: 1.2;
    padding-bottom: 10px;
    margin-bottom: 10px;
    .en {
      font-size: 24px;
    }
    .ja {
      font-size: 12px;
    }
  }
  .philosophyConcept {
    padding-top: 50px;
  }
  .philosophyConceptList {
    flex-direction: column;
    gap: 20px;
    margin: 20px 0 0;
  }
  .philosophyConceptList__item {
    width: 100%;
    display: block;
  }
  .philosophyConceptList__left {
    width: 100%;
    border: none;
  }
  .philosophyConceptList__right {
    width: 100%;
    margin-left: 0;
  }
  .philosophyConceptList__title {
    display: block;
    text-align: left;
    border-bottom: 1px solid #000;
    line-height: 1.2;
    padding-bottom: 10px;
    margin-bottom: 10px;
    .en {
      font-size: 24px;
    }
    .ja {
      font-size: 12px;
    }
  }
  .philosophyBland {
    padding-top: 100px;
  }
  .philosophyBland__inner {
    flex-direction: column;
  }
  .philosophyBland__left {
    width: 100%;
    padding: 0;
  }
  .philosophyBland__right {
    margin-top: 36px;
    padding: 50px 0;
    width: 100%;
  }
  .officeMap {
    padding-top: 40px;
  }
  .officeMap__header {
    flex-direction: column-reverse;
    align-items: flex-start;
    margin-bottom: 24px;
  }
  .officeMap__navi {
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
    gap: 40px 0;
    align-items: center;
    width: 100%;
    a {
      width: 250px;
      font-size: 16px;
      padding: 20px 0;
    }
  }
  .officeMap__cloud {
    width: 760px;
    top: -170px;
  }
  .officeMap__img {
    position: static;
  }
  .officeMap__dummy {
    /* aspect-ratio: 540 / 564; */
    display: none;
  }
  .officeLocation {
    padding-top: 50px;
  }
  .officeLocationList {
    margin-top: 24px;
  }
  .officeLocationList.-small {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #000;
  }
  .officeLocationList__item {
    width: 100%;
    display: block;
    + .officeLocationList__item {
      padding-top: 30px;
      margin-top: 30px;
    }
  }
  .officeLocationList__left {
    width: 100%;
    padding: 0;
  }
  .officeLocationList__right {
    width: 100%;
    margin-top: 20px;
    padding: 0;
  }
  .officeLocationList__area {
    font-size: 15px;
  }
  .officeLocationList__table {
    dt {
      font-size: 14px;
    }
    dd {
      font-size: 14px;
    }
  }
  .profileNavi {
    margin-top: 50px;
    flex-direction: column;
    gap: 40px 0;
    align-items: center;
    a {
      width: 250px;
      font-size: 16px;
      padding: 20px 0;
    }
  }
  .profileAbout {
    padding-top: 100px;
    flex-direction: column;
  }
  .profileAbout__left {
    width: 100%;
    padding: 0;
  }
  .profileAbout__table {
    margin-top: 0;
    dl {
      display: block;
      padding: 10px 0;
      border-bottom: 1px solid #b2b2b2;
    }
    dt {
      width: 100%;
      font-size: 14px;
      &:after {
        display: none;
      }
    }
    dd {
      font-size: 14px;
      margin-left: 0;
    }
  }
  .profileAbout__right {
    margin-top: 30px;
    width: 100%;
  }
  .profileHistory {
    padding-top: 50px;
    margin-top: 0;
    border-top-style: none;
  }
  .profileHistory__row {
    flex-direction: column;
    gap: 50px;
  }
  .profileHistory__left {
    width: 100%;
    padding: 0;
  }
  .profileHistory__navi {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    li {
      font-size: 12px;
      padding-left: 1.2em;
    }
  }
  .profileHistory__right {
    width: 100%;
    padding: 0;
  }
  .profileHistoryList__year {
    font-size: 22px;
    width: 66px;
  }
  .profileHistoryList {
    background: url(../img/profile/arrow_bottom.png) no-repeat 50px bottom,
    url(../img/profile/arrow_top.png) repeat-y 50px bottom;
    background-size: 8px auto, 8px auto;
  }
  .profileHistoryList__item {
    margin-bottom: 30px;
  }
  .profileHistoryList__text {
    width: 54%;
    ul {
      li {
        font-size: 12px;
        padding-left: 0.5em;
        &:before {
          width: 8px;
          height: 8px;
          left: -12px;
          top: 50%;
          transform: translateY(-50%);
        }
      }
    }
  }
  .profileHistoryList__img {
    flex: 1;
    margin-left: 1em;
    figcaption {
      font-size: 10px;
    }
  }
  .sloganContent {
    text-align: left;
  }
  .sloganContent__title {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.3em;
  }
  .sloganContent__h2 {
    font-size: 18px;
    margin-top: 30px;
  }
  .sloganContent__text {
    font-size: 14px;
    line-height: 1.9;
    margin-top: 20px;
  }
  .messageContent {
    padding-top: 40px;

    display: block;
  }
  .messageContent__left {
    width: 100%;
    padding-right: 0px;
  }
  .messageContent__right {
    width: 100%;
    margin-top: 50px;
  }
  .messageContent__name {
    font-size: 14px;
    .name {
      font-size: 16px;
    }
  }
  .aboutContent {
    padding-top: 50px;
  }
  .aboutContent__title {
    font-size: 19px;
  }
  .aboutContent__text {
    margin-top: 40px;
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
    padding: 0 7.2vw;
  }
  .aboutContent__img {
    margin-top: 40px;
    img {
      width: 58%;
    }
  }
  .orderContent {
    margin-top: 30px;
  }
  .orderContent__row {
    margin-top: 30px;
    flex-direction: column;
    gap: 30px;
  }
  .orderContent__left {
    width: 100%;
  }
  .orderContent__right {
    width: 100%;
  }
  .manuIntro__row {
    display: block;
  }
  .manuIntro__left {
    width: 100%;
  }
  .manuIntro__right {
    width: 100%;
    max-width: 258px;
    margin: 30px auto 0;
  }
  .designIntro__row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .designIntro__left {
    width: 100%;
  }
  .designIntro__right {
    text-align: center;
  }
  .designFem__img {

  }
  .designFem__img:after {
    width: 40px;
    height: 20px;
    bottom: -36px;
  }
  .designFem__row {
    display: block;
    margin-top: 60px;
  }
  .designFem__left {
    width: 100%;
    padding: 0;
    border-style: none;
  }
  .designFem__right {
    width: 100%;
    margin-top: 30px;
  }
  .designFemPropella {
    flex-direction: column;
    gap: 12px;
  }
  .designFemPropella__item img {
    width: 100%;
    aspect-ratio: 540 / 272;
    object-fit: cover;
  }
  .sitemapTable {
    margin-top: 50px;
    td {
      height: 40px;
      width: 28%;
      padding: 0 4px;
      &.-home {
        width: 16%;
      }
      &.va-top {
        padding-top: 5px;
      }
      a {
        font-size: 10px;
      }
    }
  }
  .ppContent {
    margin-top: 50px;
    padding-top: 40px;
  }
  .ppContent.-cf {
    margin-top: 30px;
  }
  .ppContent__h2 {
    font-size: 15px;
    margin-top: 30px;
  }
  .ppContent table td {
    height: 90px;
    padding: 0 6px;
    font-size: 10px;
  }
  .companyLinks {
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 50px;
    flex-direction: column;
    gap: 30px;
  }
  .companyLinks__item {
    width: 100%;
    max-width: 410px;
    margin: 0 auto;
  }
  .recruitContent {
    height: 88vw;
    min-height: initial;
  }
  .recruitContent:after {
    background-image: url(../webp/recruit/bg_recruit_sp.webp);
  }
  .recruitLinks {
    flex-direction: column;
    gap: 50px;
  }
  .recruitLinks__item a {
    width: 254px;
    height: 56px;
    font-size: 12px;
  }
}

.ani-fade-up {
  opacity: 0;
  transform: translate(0, 60px);
  transition-duration: .6s;
  transition-timing-function: ease-in-out;
}
.ani-fade-left {
  opacity: 0;
  transform: translate(-60px, 0);
  transition-duration: .6s;
  transition-timing-function: ease-in-out;
}
.ani-fade-left.is-active {
  transform: translate(0,0);
  opacity: 1;
}
.ani-fade-up.is-active,
.ani-start-scroll.is-active .ani-fade-up {
  transform: translate(0,0);
  opacity: 1;
}

.ani-delay-1 {
  transition-delay: .2s;
}
.ani-delay-2 {
  transition-delay: .4s;
}
.ani-delay-3 {
  transition-delay: .6s;
}