<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*
Theme Name:company
Theme URI:
Description:WordPressオリジナルテーマ
Template:
Author:author-name
Author URI:
Version:1.0.0
*/
/* -----------------------------------------------------------------
 Foundation
----------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Averia+Serif+Libre:wght@300&amp;family=Noto+Serif+JP:wght@300;400;500;600;700&amp;display=swap");
/* ----------------------
  animation
---------------------- */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes scrollLine {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  35% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  35.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  70%, 100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@keyframes scrollLine {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  35% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  35.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  70%, 100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@-webkit-keyframes wave {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
@keyframes wave {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
/*======================
  reset
======================*/
html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, a, img, dl, dt, dd, ol, ul, li, label, table, tbody, tr, th, td, figure {
  padding: 0;
  margin: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, figure, footer, header, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

a {
  text-decoration: none;
  color: #333;
  transition: 0.3s ease-in;
}

a:hover {
  opacity: 0.7;
  /*transition: .3s ease-in;*/
}

li {
  list-style: none;
}

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

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

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

tr, th, td {
  vertical-align: middle;
}

input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

/*======================
  base
======================*/
html {
  font-size: 62.5%;
  /* 1rem = 10px */
}

body {
  color: #000;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HGP明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.25;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow-x: hidden;
}
@media screen and (min-width: 960px) {
  body {
    font-size: 1.8rem;
    line-height: 2.25;
  }
}
body.backlayer {
  overflow: hidden;
}

/* -----------------------------------------------------------------
 Layout
----------------------------------------------------------------- */
/*=======================
  footer
=======================*/
.l-footer {
  position: relative;
  z-index: 1;
  margin-top: -10vw;
  padding: 41rem 0 10rem;
  background: transparent url(./data/img/common/footer_bg_sp.png) no-repeat center 0/cover;
}
@media screen and (min-width: 769px) {
  .l-footer {
    margin-top: -9vw;
    padding: 45rem 0 10rem;
    background: transparent url(./data/img/common/footer_bg.png) no-repeat center 0/cover;
  }
}
@media screen and (min-width: 960px) {
  .l-footer {
    margin-top: -6vw;
  }
}
.l-footer__copy-right {
  display: block;
  color: #fff;
  font-family: "Averia Serif Libre", cursive;
  font-size: 1.6rem;
  text-align: center;
}

/*=======================
  header
=======================*/
.l-header {
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 991;
  background: transparent;
}
@media screen and (min-width: 960px) {
  .l-header {
    height: 120px;
  }
}
.l-header__inner {
  position: relative;
  height: 100%;
  padding: 0 5.33vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 960px) {
  .l-header__inner {
    padding: 0 5rem;
  }
}
.l-header__logo {
  display: inline-block;
  width: 180px;
  margin: 0;
  line-height: 1;
}
.l-header__logo img {
  vertical-align: bottom;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .l-header__logo {
    width: 190px;
  }
}

.l-navbtn {
  display: inline-block;
  width: 40px;
  height: 70px;
  background: transparent;
  text-align: center;
  cursor: pointer;
  position: relative;
  z-index: 999;
}
@media screen and (min-width: 960px) {
  .l-navbtn {
    position: absolute;
    top: 50%;
    right: 5rem;
    transform: translateY(-50%);
  }
}
.l-navbtn__bar {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: 0.3s;
}
.l-navbtn__bar--top {
  transform: translate(-50%, -10px);
}
.l-navbtn__bar--middle {
  transform: translate(-50%, 0);
}
.l-navbtn__bar--bottom {
  transform: translate(-50%, 10px);
}

.l-gnav {
  display: none;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  padding: 5.5rem 4.5rem 5rem;
  border: 10px solid #26136f;
  background-color: white;
  z-index: 998;
  overflow-y: scroll;
}
@media screen and (min-width: 960px) {
  .l-gnav {
    padding: 0 4rem;
  }
}
@media screen and (min-width: 960px) {
  .l-gnav__wrap {
    width: 100%;
    max-width: 960px;
    padding: 0 3rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.l-gnav__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media screen and (min-width: 960px) {
  .l-gnav__list {
    margin: 0 auto;
    width: 50%;
    padding-left: 15%;
  }
}
.l-gnav__item {
  width: 100%;
  padding: 1em 0;
}
@media screen and (min-width: 960px) {
  .l-gnav__item {
    width: auto;
    padding: 8% 0;
  }
}
.l-gnav__link {
  display: block;
  color: #26136f;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
}
.l-gnav__link--tel {
  font-family: "Averia Serif Libre", cursive;
  letter-spacing: 0.1em;
}
.l-gnav__link--tel span {
  font-size: 2.4rem;
}
@media screen and (min-width: 960px) {
  .l-gnav__link--tel {
    margin-top: 4rem;
  }
}
.l-gnav__logo {
  margin-bottom: 2rem;
  width: 111px;
}
.l-gnav__logo img {
  width: 100%;
  vertical-align: bottom;
}
@media screen and (min-width: 960px) {
  .l-gnav__logo {
    width: 50%;
    margin: 0 0 2.7rem;
    text-align: center;
  }
  .l-gnav__logo img {
    width: 216px;
  }
}
.l-gnav__picture {
  display: none;
}
@media screen and (min-width: 960px) {
  .l-gnav__picture {
    display: block;
    position: absolute;
    bottom: 1rem;
    left: 0;
    width: 50%;
  }
}
.l-gnav__copy-right {
  margin-top: 2rem;
  font-family: "Averia Serif Libre", cursive;
  font-size: 1.6rem;
  color: #26136f;
}
@media screen and (min-width: 960px) {
  .l-gnav__copy-right {
    position: absolute;
    bottom: 1rem;
    width: 100%;
    font-size: 1.8rem;
    margin-top: 0;
    text-align: center;
  }
}

.is-open.l-navbtn {
  background: transparent;
}
.is-open.l-navbtn .l-navbtn__bar {
  background: #000;
}
.is-open.l-navbtn .l-navbtn__bar--top {
  transform: translate(-50%, 0) rotate(45deg);
}
.is-open.l-navbtn .l-navbtn__bar--middle {
  display: none;
}
.is-open.l-navbtn .l-navbtn__bar--bottom {
  transform: translate(-50%, 0) rotate(-45deg);
}

.is-fixed.l-header {
  background: rgba(0, 0, 0, 0.4);
  -webkit-animation: fadeIn 0.3s linear;
          animation: fadeIn 0.3s linear;
}

/*=======================
  main
=======================*/
.l-main {
  position: relative;
  display: block;
}

/* -----------------------------------------------------------------
 Component
----------------------------------------------------------------- */
.error404 .l-main {
  margin-top: 70px;
  padding: 5rem;
}
@media screen and (min-width: 769px) {
  .error404 .l-main {
    margin-top: 70px;
  }
}
@media screen and (min-width: 960px) {
  .error404 .l-main {
    margin-top: 120px;
  }
}

.c-404 {
  padding: 5rem 0;
}
@media screen and (min-width: 769px) {
  .c-404 {
    padding: 8rem 0;
  }
}
@media screen and (min-width: 960px) {
  .c-404 {
    padding: 10rem 0;
  }
}
.c-404 .e-tit {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
  .c-404 .e-tit {
    font-size: 4rem;
  }
}
@media screen and (min-width: 960px) {
  .c-404 .e-tit {
    font-size: 5rem;
  }
}
.c-404 .e-desc {
  line-height: 2;
  text-align: center;
}
.c-404 .e-link {
  display: block;
  margin-top: 1em;
  color: #0014FF;
  text-align: center;
  text-decoration: underline;
}
/*=======================
  breadcrumb
=======================*/
.c-breadcrumb {
  padding: 1.5rem 0 5rem;
}
@media screen and (min-width: 769px) {
  .c-breadcrumb {
    padding: 1.5rem 0 10rem;
  }
}
.c-breadcrumb__list {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 5.33vw;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.c-breadcrumb__item {
  text-align: right;
  font-size: 1.2rem;
  line-height: 1.4;
}
.c-breadcrumb__item:not(:last-child) {
  margin-right: 5px;
}

.c-btn {
  display: block;
  width: 160px;
  height: 60px;
  line-height: 58px;
  background: transparent;
  border: 1px solid #26136f;
  color: #26136f;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.c-btn::after {
  display: block;
  content: "";
  background: transparent url(./data/img/common/arrow.png) no-repeat center/contain;
  width: 60px;
  height: 100%;
  position: absolute;
  top: 50%;
  right: -35px;
  transform: translateY(-50%);
}
.c-btn--white {
  border: 1px solid #fff;
  color: #fff;
}
.c-btn--white::after {
  background: transparent url(./data/img/common/arrow_w.png) no-repeat center/contain;
}

.c-scroll-btn {
  display: block;
  z-index: 3;
  cursor: pointer;
  position: absolute;
  bottom: 80px;
  left: 4vw;
}
.c-scroll-btn &gt; .text {
  display: inline-block;
  color: #fff;
  font-size: 1.2rem;
  font-family: "Averia Serif Libre", cursive;
  letter-spacing: 0.1em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: sideways;
          text-orientation: sideways;
}
.c-scroll-btn &gt; .circle {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #fff;
  position: absolute;
  bottom: -10px;
  left: 10px;
}
.c-scroll-btn &gt; .line {
  display: inline-block;
  position: absolute;
  bottom: -140px;
  left: 14px;
  width: 1px;
  height: 130px;
  background: #000;
}
.c-scroll-btn &gt; .line::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-animation: scrollLine 2.5s cubic-bezier(1, 0, 0, 1) infinite;
          animation: scrollLine 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@media screen and (min-width: 769px) {
  .c-scroll-btn {
    bottom: 100px;
    left: 5%;
  }
  .c-scroll-btn &gt; .line {
    bottom: -110px;
    height: 100px;
  }
}

.c-to-top-btn {
  position: fixed;
  width: 50px;
  height: auto;
  bottom: 50px;
  right: 5.33vw;
  z-index: 10;
  cursor: pointer;
}
.c-to-top-btn img {
  width: 100%;
  vertical-align: bottom;
}
@media screen and (min-width: 769px) {
  .c-to-top-btn {
    bottom: 5%;
    right: 7.5%;
  }
}

.c-page-heading {
  padding: 20rem 0 18.5rem;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .c-page-heading {
    padding: 17rem 0 19rem;
  }
}
.c-page-heading__en {
  display: block;
  font-family: "Averia Serif Libre", cursive;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
  .c-page-heading__en {
    font-size: 2rem;
    margin-bottom: 1.5em;
  }
}
.c-page-heading__ja {
  display: block;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 769px) {
  .c-page-heading__ja {
    font-size: 3.6rem;
  }
}
.c-page-heading--company {
  background: transparent url(./data/img/company/mv_sp.jpg) no-repeat center 100%/cover;
}
@media screen and (min-width: 769px) {
  .c-page-heading--company {
    background: transparent url(./data/img/company/mv.jpg) no-repeat center 100%/cover;
  }
}
.c-page-heading--kisosansen-unagi {
  background: transparent url(./data/img/kisosansen-unagi/mv_sp.jpg) no-repeat center 100%/cover;
}
@media screen and (min-width: 769px) {
  .c-page-heading--kisosansen-unagi {
    background: transparent url(./data/img/kisosansen-unagi/mv.jpg) no-repeat center 100%/cover;
  }
}

.c-section-heading {
  position: relative;
}
.c-section-heading__en {
  display: block;
  font-family: "Averia Serif Libre", cursive;
  font-size: 4.4rem;
  font-weight: 300;
  line-height: 1.22;
  color: #cdd9ea;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .c-section-heading__en {
    font-size: 10rem;
    line-height: 1.1;
    margin-left: -4.7%;
  }
}
.c-section-heading__ja {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.67;
  color: #26136f;
  letter-spacing: 0.1em;
  position: relative;
  margin-left: 15px;
  padding-left: 60px;
}
.c-section-heading__ja::before {
  display: block;
  content: "";
  width: 40px;
  height: 1px;
  background: #26136f;
  position: absolute;
  top: 0.85em;
  left: 0;
}
@media screen and (min-width: 769px) {
  .c-section-heading__ja {
    font-size: 2.1rem;
    padding-left: 180px;
  }
  .c-section-heading__ja::before {
    width: 150px;
  }
}
.c-section-heading--company-message {
  margin-bottom: 6rem;
}
.c-section-heading--company-message .c-section-heading__en {
  font-size: 10vw;
}
@media screen and (min-width: 769px) {
  .c-section-heading--company-message {
    margin-bottom: 8.5rem;
  }
  .c-section-heading--company-message .c-section-heading__en {
    font-size: 10rem;
  }
}
@media screen and (min-width: 1200px) {
  .c-section-heading--company-message .c-section-heading__ja {
    position: absolute;
    right: -4.7%;
    bottom: 10px;
    margin: 0;
  }
}
.c-section-heading--kisosansen-unagi-history {
  margin-bottom: 4rem;
}
.c-section-heading--kisosansen-unagi-history .c-section-heading__en {
  font-size: 12vw;
}
.c-section-heading--kisosansen-unagi-history .c-section-heading__ja {
  font-size: 1.5rem;
}
@media screen and (min-width: 769px) {
  .c-section-heading--kisosansen-unagi-history {
    margin-bottom: 8.5rem;
  }
  .c-section-heading--kisosansen-unagi-history .c-section-heading__en {
    font-size: 10rem;
  }
  .c-section-heading--kisosansen-unagi-history .c-section-heading__ja {
    font-size: 2.1rem;
    margin-top: 1em;
  }
}

.c-section-heading-with-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #26136f;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .c-section-heading-with-line {
    align-items: baseline;
  }
}
.c-section-heading-with-line__ja {
  display: inline-block;
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.2;
  width: 100%;
  margin-bottom: 1.2rem;
}
@media screen and (min-width: 769px) {
  .c-section-heading-with-line__ja {
    font-size: 3.6rem;
    width: auto;
    margin-bottom: 0;
  }
}
.c-section-heading-with-line__en {
  display: inline-block;
  font-family: "Averia Serif Libre", cursive;
  font-size: 1.8rem;
  line-height: 1.5;
}
.c-section-heading-with-line__line {
  display: inline-block;
  width: 50px;
  margin: 0 1rem 0 0;
}
@media screen and (min-width: 769px) {
  .c-section-heading-with-line__line {
    width: 80px;
    margin: 0 1.5rem;
  }
}
.c-section-heading-with-line--company {
  margin-bottom: 5rem;
}
.c-section-heading-with-line--company .c-section-heading-with-line__en {
  font-size: 1.7rem;
}
@media screen and (min-width: 769px) {
  .c-section-heading-with-line--company {
    margin-bottom: 13rem;
  }
  .c-section-heading-with-line--company .c-section-heading-with-line__en {
    font-size: 1.8rem;
  }
}
.c-section-heading-with-line--kisosansen-unagi {
  margin-bottom: 5rem;
}
@media screen and (min-width: 769px) {
  .c-section-heading-with-line--kisosansen-unagi {
    margin-bottom: 13rem;
  }
}

.c-inner {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 5.33vw;
  padding-right: 5.33vw;
}
@media screen and (min-width: 769px) {
  .c-inner {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

/* -----------------------------------------------------------------
 Utility
----------------------------------------------------------------- */
.u-anchor {
  padding-top: 70px;
  margin-top: -70px;
}
@media screen and (min-width: 960px) {
  .u-anchor {
    padding-top: 120px;
    margin-top: -120px;
  }
}

.u-di-anchor {
  display: inline-block;
  padding-top: 70px;
  margin-top: -70px;
}
@media screen and (min-width: 960px) {
  .u-di-anchor {
    padding-top: 120px;
    margin-top: -120px;
  }
}

.u-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.u-pc-none {
  display: block;
}
@media screen and (min-width: 769px) {
  .u-pc-none {
    display: none;
  }
}

.u-sp-none {
  display: none;
}
@media screen and (min-width: 769px) {
  .u-sp-none {
    display: block;
  }
}

.u-only-sp {
  display: block;
}
@media screen and (min-width: 769px) {
  .u-only-sp {
    display: none;
  }
}

.u-only-pc {
  display: none;
}
@media screen and (min-width: 960px) {
  .u-only-pc {
    display: block;
  }
}

.u-fit-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.u-fit-img-e11 {
  position: absolute;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.u-flex {
  display: flex;
  box-sizing: border-box;
}

@media screen and (min-width: 769px) {
  .u-m-flex {
    display: flex;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 960px) {
  .u-l-flex {
    display: flex;
    box-sizing: border-box;
  }
}

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

.u-flex-jc-start {
  justify-content: flex-start;
}

.u-flex-jc-spbt {
  justify-content: space-between;
}

.u-flex-jc-spar {
  justify-content: space-around;
}

.u-flex-ai-center {
  align-items: center;
}

.u-flex-ai-stretch {
  align-items: stretch;
}

.u-iframe-parent {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.u-iframe-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 960px) {
  .u-invalid-tel a[href^="tel:"] {
    pointer-events: none;
  }
}

.u-over-inner-m {
  margin: 0 calc(50% - 50vw);
}

.u-over-inner-p {
  padding: 0 calc(50vw - 50%);
}

.u-p-relative {
  position: relative;
}

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

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

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

.u-tbl-scroll {
  overflow: auto;
  white-space: nowrap;
}
.u-tbl-scroll::-webkit-scrollbar {
  height: 3px;
}
.u-tbl-scroll::-webkit-scrollbar-trac {
  background: #F1F1F1;
}
.u-tbl-scroll::-webkit-scrollbar-thumb {
  background: #BCBCBC;
}

.u-text-indent {
  padding-left: 1em;
  text-indent: -1em;
}

/* -----------------------------------------------------------------
Project
----------------------------------------------------------------- */
/*====================================================
*
*	Home
*
====================================================*/
.p-front-mv {
  position: relative;
}
.p-front-mv::before {
  display: block;
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #f6f9ff;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .p-front-mv::before {
    height: 7px;
  }
}
.p-front-mv__content {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
.p-front-mv__content::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 769px) {
  .p-front-mv__content {
    height: 900px;
  }
}
.p-front-mv__copy {
  opacity: 0;
  transition: all 0.7s ease-in;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 97%;
  color: #fff;
  text-align: center;
}
.p-front-mv__copy.scroll-in {
  opacity: 1;
}
.p-front-mv__copy-en {
  font-family: "Averia Serif Libre", cursive;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
  .p-front-mv__copy-en {
    font-size: 2rem;
  }
}
.p-front-mv__copy-ja {
  font-size: 2.1rem;
  line-height: 1.63;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .p-front-mv__copy-ja {
    font-size: 3.6rem;
    line-height: 1.67;
  }
}
.p-front-mv__picture {
  -webkit-animation: fadeOut 3s linear 3s forwards;
          animation: fadeOut 3s linear 3s forwards;
  position: absolute;
  width: 100%;
  height: 100%;
}
.p-front-mv__picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-front-mv__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}

.p-waves {
  margin-top: -50px;
}
@media screen and (min-width: 769px) {
  .p-waves {
    margin-top: -100px;
  }
}
.p-waves__wave {
  position: relative;
  width: 100%;
  height: 50px;
  min-height: 50px;
  margin-bottom: -7px;
  /*Fix for safari gap*/
}
@media screen and (min-width: 769px) {
  .p-waves__wave {
    height: 100px;
  }
}
.p-waves__parallax &gt; use {
  -webkit-animation: wave 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
          animation: wave 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.p-waves__parallax &gt; use:nth-child(1) {
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
}
.p-waves__parallax &gt; use:nth-child(2) {
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}
.p-waves__parallax &gt; use:nth-child(3) {
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
  -webkit-animation-duration: 13s;
          animation-duration: 13s;
}
.p-waves__parallax &gt; use:nth-child(4) {
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
}

.p-front-heading {
  display: flex;
  align-items: center;
  color: #26136f;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
.p-front-heading .ja {
  display: inline-block;
  font-weight: 600;
}
.p-front-heading .icon {
  display: inline-block;
  width: 80px;
  margin: 0 1.5rem 0 1rem;
}
.p-front-heading .en {
  display: inline-block;
  font-family: "Averia Serif Libre", cursive;
}
@media screen and (min-width: 769px) {
  .p-front-heading {
    margin-bottom: 1.5em;
  }
}
@media screen and (max-width: 359px) {
  .p-front-heading {
    font-size: 1.45rem;
  }
}
.p-front-heading--about {
  flex-wrap: wrap;
}
.p-front-heading--about .ja {
  width: 100%;
}
.p-front-heading--about .icon {
  width: 50px;
}
.p-front-heading--about .en {
  font-size: 1.6rem;
}
@media screen and (min-width: 769px) {
  .p-front-heading--about {
    justify-content: flex-end;
  }
  .p-front-heading--about .ja {
    width: auto;
  }
  .p-front-heading--about .icon {
    width: 80px;
  }
  .p-front-heading--about .en {
    font-size: 1.8rem;
  }
}

.p-front-sub-heading {
  color: #26136f;
  font-family: "Averia Serif Libre", cursive;
  font-size: 4.8rem;
  line-height: 1.25;
  letter-spacing: 0.1em;
  z-index: 2;
  position: relative;
}
@media screen and (min-width: 769px) {
  .p-front-sub-heading {
    font-size: 7.2rem;
  }
}
@media screen and (max-width: 359px) {
  .p-front-sub-heading {
    font-size: 4.2rem;
  }
}
.p-front-sub-heading--about {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: sideways;
          text-orientation: sideways;
  position: absolute;
  top: 110px;
  left: 2vw;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .p-front-sub-heading--about {
    top: 72px;
    left: -7px;
  }
}

.p-front-message {
  overflow: hidden;
  position: relative;
  padding: 26rem 0 9rem;
  background: transparent url(./data/img/front/message_bg_sp.jpg) no-repeat center center/cover;
}
.p-front-message::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent url(./data/img/front/message_map.png) no-repeat 32.5% -22%/250%;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .p-front-message {
    padding: 29rem 0 20rem;
    background: transparent url(./data/img/front/message_bg.jpg) no-repeat center center/cover;
  }
  .p-front-message::before {
    background: transparent url(./data/img/front/message_map.png) no-repeat 15% 30%/940px auto;
  }
}
@media screen and (min-width: 769px) {
  .p-front-message__box {
    position: relative;
  }
}
@media screen and (min-width: 769px) {
  .p-front-message__body {
    margin-left: 60%;
  }
}
.p-front-message__body-heading {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
  .p-front-message__body-heading {
    line-height: 2.36;
    margin: 2em 0 1.5em;
  }
}
.p-front-message__description {
  line-height: 2.5;
  margin-bottom: 4rem;
}
@media screen and (min-width: 769px) {
  .p-front-message__description {
    line-height: 2.67;
    font-size: 1.8rem;
    margin-bottom: 9rem;
  }
}
.p-front-message__picture {
  margin: 13rem 0 4.5rem;
}
.p-front-message__picture img {
  width: 100%;
  vertical-align: bottom;
}
@media screen and (min-width: 769px) {
  .p-front-message__picture {
    width: 54%;
    margin: 0 0 0 -10%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
  }
}
.p-front-message__picture-ab {
  position: absolute;
  top: -200px;
  right: 0;
  width: 53%;
  max-width: 200px;
}
.p-front-message__picture-ab img {
  width: 100%;
  vertical-align: bottom;
}
@media screen and (min-width: 769px) {
  .p-front-message__picture-ab {
    top: -50px;
    right: -130px;
    width: 30%;
    max-width: 300px;
  }
}
.p-front-message__btn {
  position: relative;
  z-index: 2;
}

.p-front-about {
  padding: 8rem 0;
}
@media screen and (min-width: 769px) {
  .p-front-about {
    padding: 14rem 0 22rem;
  }
}
.p-front-about___inner {
  position: relative;
}
.p-front-about__picture {
  opacity: 0;
  transition: all 0.7s ease-in;
  position: relative;
  margin: 8.5rem -5.33vw 7rem 0;
  padding-left: 5.33vw;
}
.p-front-about__picture.scroll-in {
  opacity: 1;
}
.p-front-about__picture img {
  width: 100%;
  vertical-align: bottom;
}
@media screen and (min-width: 769px) {
  .p-front-about__picture {
    margin: 10rem 0;
    padding: 0;
  }
}

.p-front-about-item {
  opacity: 0;
  transition: all 0.7s ease-in;
  position: relative;
}
.p-front-about-item.scroll-in {
  opacity: 1;
}
.p-front-about-item:not(:last-child) {
  margin-bottom: 11rem;
}
.p-front-about-item:nth-child(odd) .p-front-about-item__picture {
  margin-left: 0;
  margin-right: -5.33vw;
}
@media screen and (min-width: 769px) {
  .p-front-about-item:nth-child(odd) .p-front-about-item__content {
    margin-right: 49%;
    width: 51%;
  }
  .p-front-about-item:nth-child(odd) .p-front-about-item__picture {
    margin: 0;
    width: 44%;
    right: 0;
  }
  .p-front-about-item:nth-child(even) .p-front-about-item__content {
    margin-left: 55%;
    width: 45%;
  }
  .p-front-about-item:nth-child(even) .p-front-about-item__picture {
    width: 63%;
    left: -16%;
  }
}
.p-front-about-item__picture {
  margin-bottom: 5.5rem;
  margin-left: -5.33vw;
}
.p-front-about-item__picture img {
  width: 100%;
  vertical-align: bottom;
}
@media screen and (min-width: 769px) {
  .p-front-about-item__picture {
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  .p-front-about-item__picture--first {
    position: absolute;
    right: 5.33vw;
    bottom: 10rem;
    width: 85%;
    margin-bottom: 0;
    max-width: 320px;
  }
  .p-front-about-item__picture--first img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-front-about-item__heading {
  padding: 6.5rem 0 0 6.5rem;
  margin-bottom: 5rem;
  line-height: 1;
  color: #26136f;
  position: relative;
}
.p-front-about-item__heading .num {
  display: inline-block;
  font-size: 6rem;
  font-family: "Averia Serif Libre", cursive;
  position: absolute;
  top: 0;
  left: 0;
}
.p-front-about-item__heading .num::before {
  display: block;
  content: "";
  width: 1px;
  height: 120px;
  background: #26136f;
  position: absolute;
  top: -5px;
  right: 10px;
  transform: rotate(45deg);
}
.p-front-about-item__heading .text {
  display: inline-block;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 769px) {
  .p-front-about-item__heading {
    padding: 7.5rem 0 0 8rem;
    margin-bottom: 6rem;
  }
  .p-front-about-item__heading .num {
    font-size: 7.2rem;
  }
  .p-front-about-item__heading .num::before {
    height: 136px;
    top: -5px;
    right: 8px;
  }
  .p-front-about-item__heading .text {
    font-size: 3.6rem;
  }
}
.p-front-about-item__box {
  position: relative;
  padding-left: 6.5rem;
}
@media screen and (min-width: 769px) {
  .p-front-about-item__box {
    padding-left: 11rem;
  }
}
.p-front-about-item__en-heading {
  position: absolute;
  top: 12px;
  left: 0;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: sideways;
          text-orientation: sideways;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #26136f;
}
@media screen and (min-width: 769px) {
  .p-front-about-item__en-heading {
    font-size: 1.8rem;
  }
}
.p-front-about-item__body-heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.2em;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 769px) {
  .p-front-about-item__body-heading {
    font-size: 2.1rem;
    line-height: 2.36;
  }
}
.p-front-about-item__description {
  margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
  .p-front-about-item__description {
    font-size: 1.6rem;
    line-height: 2.5;
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 768px) {
  .p-front-about-item__description--first {
    margin-bottom: 35rem;
  }
}

.p-front-customer {
  opacity: 0;
  transition: all 0.7s ease-in;
  padding: 15rem 0 14rem;
  background: transparent url(./data/img/front/customer_bg_sp.jpg) no-repeat center 0/cover;
}
.p-front-customer.scroll-in {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .p-front-customer {
    padding: 28rem 17rem;
    background: transparent url(./data/img/front/customer_bg.jpg) no-repeat center 0/cover;
  }
}
.p-front-customer__heading {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 0.75em;
}
.p-front-customer__heading .en {
  width: 100%;
  display: inline-block;
  font-family: "Averia Serif Libre", cursive;
  font-size: 4rem;
  letter-spacing: 0.1em;
}
.p-front-customer__heading .ja {
  display: inline-block;
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  margin-left: 28px;
  padding-left: 140px;
  position: relative;
}
.p-front-customer__heading .ja::before {
  display: block;
  content: "";
  width: 120px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  .p-front-customer__heading .en {
    width: auto;
    font-size: 5.2rem;
  }
  .p-front-customer__heading .ja {
    font-size: 1.8rem;
  }
}
.p-front-customer__body {
  padding-left: 28px;
}
@media screen and (min-width: 769px) {
  .p-front-customer__body {
    padding: 0;
  }
}
.p-front-customer__lead {
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}
@media screen and (min-width: 769px) {
  .p-front-customer__lead {
    letter-spacing: 0.2em;
    margin-bottom: 6rem;
  }
}

.p-company {
  overflow: hidden;
}

.p-company-message {
  padding-bottom: 14rem;
  background: transparent url(./data/img/company/bg_sp.jpg) no-repeat center 100%/cover;
}
@media screen and (min-width: 769px) {
  .p-company-message {
    padding-bottom: 23rem;
    background: transparent url(./data/img/company/bg.jpg) no-repeat center 100%/cover;
  }
}
.p-company-message__box {
  opacity: 0;
  transition: all 0.7s ease-in;
}
.p-company-message__box.scroll-in {
  opacity: 1;
}
.p-company-message__box:not(:last-child) {
  margin-bottom: 4rem;
}
@media screen and (min-width: 769px) {
  .p-company-message__box {
    position: relative;
  }
  .p-company-message__box:not(:last-child) {
    margin-bottom: 11rem;
  }
}
.p-company-message__box--fourth {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  .p-company-message__box--fourth {
    display: block;
  }
}
.p-company-message__heading {
  font-size: 3.2rem;
  font-weight: 600;
  color: #26136f;
  line-height: 1.875;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .p-company-message__heading {
    font-size: 3.6rem;
    text-align: left;
    line-height: 2;
    padding: 5rem 0;
  }
}
.p-company-message__picture img {
  width: 100%;
  vertical-align: bottom;
}
.p-company-message__picture--first {
  margin-bottom: 3rem;
}
@media screen and (min-width: 769px) {
  .p-company-message__picture--first {
    position: absolute;
    top: 50%;
    right: -16%;
    transform: translateY(-50%);
    width: 76%;
    max-width: 800px;
    margin-bottom: 0;
  }
}
.p-company-message__picture--second {
  margin-bottom: 3rem;
}
@media screen and (min-width: 769px) {
  .p-company-message__picture--second {
    position: absolute;
    top: 0;
    left: -4.7%;
    width: 37.7%;
    max-width: 400px;
    margin-bottom: 0;
  }
}
.p-company-message__picture--third {
  max-width: 600px;
  margin: 0 auto 3rem;
}
@media screen and (min-width: 769px) {
  .p-company-message__picture--third {
    margin: 0 auto 10rem;
  }
}
.p-company-message__picture--fourth {
  width: 100%;
  order: 1;
  margin-top: 3rem;
}
@media screen and (min-width: 769px) {
  .p-company-message__picture--fourth {
    position: absolute;
    top: 0;
    left: -16%;
    width: 68%;
    max-width: 720px;
    margin-top: 0;
  }
}
.p-company-message__description {
  padding: 0 0.7rem;
}
@media screen and (min-width: 769px) {
  .p-company-message__description {
    padding: 0;
    font-size: 1.6rem;
    line-height: 2.5;
  }
}
@media screen and (min-width: 769px) {
  .p-company-message__description--second {
    margin-left: 45%;
  }
}
.p-company-message__description--third {
  text-align: center;
  font-weight: bold;
  font-size: 1.7rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .p-company-message__description--third {
    font-size: 2.2rem;
    line-height: 2.3;
    letter-spacing: 0.2em;
  }
}
.p-company-message__description--fourth {
  width: 100%;
  order: 0;
}
@media screen and (min-width: 769px) {
  .p-company-message__description--fourth {
    margin-left: 62%;
    width: auto;
  }
}
.p-company-message__description p:not(:last-child) {
  margin-bottom: 2em;
}
.p-company-message__description p.bold {
  font-weight: bold;
}
.p-company-message__description p.sign {
  text-align: right;
  line-height: 1.85;
}
.p-company-message__description p.sign span {
  font-size: 1.8rem;
}

.p-company-about {
  padding: 8.5rem 0 11rem;
}
@media screen and (min-width: 769px) {
  .p-company-about {
    padding: 16rem 0 21rem;
  }
}
.p-company-about__content {
  opacity: 0;
  transition: all 0.7s ease-in;
}
.p-company-about__content.scroll-in {
  opacity: 1;
}
.p-company-about__content:not(:last-child) {
  margin-bottom: 8rem;
}
@media screen and (min-width: 769px) {
  .p-company-about__content:not(:last-child) {
    margin-bottom: 11rem;
  }
  .p-company-about__content:nth-child(2) {
    margin-bottom: 17rem;
  }
}
.p-company-about__content-name {
  font-size: 2.1rem;
  font-weight: bold;
  color: #26136f;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 5rem;
}
.p-company-about__table {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-company-about__table {
    width: 50%;
  }
}
.p-company-about__table tr {
  border-bottom: 1px solid #ddd;
}
.p-company-about__table tr:first-child {
  border-top: 1px solid #ddd;
}
.p-company-about__table tr th {
  display: block;
  font-weight: normal;
  text-align: left;
  padding: 1em 0 0;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .p-company-about__table tr th {
    display: table-cell;
    padding: 1em 0;
    width: 30%;
    vertical-align: top;
    font-size: 1.6rem;
  }
}
.p-company-about__table tr td {
  display: block;
  padding: 0 0 1em;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .p-company-about__table tr td {
    display: table-cell;
    padding: 1em 0;
    width: 70%;
    font-size: 1.6rem;
  }
}
.p-company-about__picute {
  margin-bottom: 10rem;
}
.p-company-about__picute img {
  width: 100%;
  vertical-align: bottom;
}
@media screen and (min-width: 769px) {
  .p-company-about__picute {
    margin-bottom: 0;
    position: absolute;
    top: 245px;
    right: 0;
    width: 41%;
    max-width: 440px;
  }
}
@media screen and (min-width: 769px) {
  .p-company-about__list {
    display: flex;
    flex-wrap: wrap;
  }
}

.p-company-about-partner-item {
  border: 1px solid #ddd;
  padding: 4rem 1.5rem;
  position: relative;
}
.p-company-about-partner-item:not(:last-child) {
  margin-bottom: 5rem;
}
@media screen and (min-width: 769px) {
  .p-company-about-partner-item {
    margin-bottom: 7rem !important;
    padding: 6rem 4.8rem;
    width: calc(50% - 30px);
  }
  .p-company-about-partner-item:nth-child(odd) {
    margin-right: 60px;
  }
}
.p-company-about-partner-item__heading {
  color: #26136f;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.2em;
  padding: 0 4px;
  background: #fff;
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  z-index: 1;
}
.p-company-about-partner-item__table {
  width: 100%;
}
.p-company-about-partner-item__table tr th {
  font-weight: normal;
  text-align: left;
  line-height: 2;
  vertical-align: top;
  width: 40%;
  font-size: 1.6rem;
}
@media screen and (min-width: 769px) {
  .p-company-about-partner-item__table tr th {
    width: 30%;
  }
}
.p-company-about-partner-item__table tr td {
  line-height: 2;
  width: 60%;
  font-size: 1.6rem;
}
@media screen and (min-width: 769px) {
  .p-company-about-partner-item__table tr td {
    width: 70%;
  }
}

.p-kisosansen-unagi {
  overflow: hidden;
}

.p-kisosansen-unagi-history {
  padding-bottom: 11rem;
  background: transparent url(./data/img/kisosansen-unagi/history_bg_sp.jpg) no-repeat center 100%/cover;
  position: relative;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-history {
    padding-bottom: 23rem;
    background: transparent url(./data/img/kisosansen-unagi/history_bg.jpg) no-repeat center 100%/cover;
  }
}
.p-kisosansen-unagi-history__picture {
  margin-left: -5.33vw;
}
.p-kisosansen-unagi-history__picture img {
  width: 100%;
  vertical-align: bottom;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-history__picture {
    margin-left: -16%;
    width: 75%;
    max-width: 800px;
  }
}
.p-kisosansen-unagi-history__list {
  margin-top: 5.5rem;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-history__list {
    margin-top: 9rem;
  }
}
.p-kisosansen-unagi-history__map {
  position: absolute;
  top: 240px;
  left: 50%;
  transform: translateX(-50%);
  width: 521px;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-history__map {
    top: -500px;
    transform: none;
    left: auto;
    right: -130px;
  }
}
@media screen and (min-width: 1024px) {
  .p-kisosansen-unagi-history__map {
    top: -560px;
    transform: none;
    left: auto;
    right: -130px;
  }
}

.p-kisosansen-unagi-history-item {
  opacity: 0;
  transition: all 0.7s ease-in;
}
.p-kisosansen-unagi-history-item.scroll-in {
  opacity: 1;
}
.p-kisosansen-unagi-history-item:not(:last-child) {
  margin-bottom: 9rem;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-history-item {
    position: relative;
  }
  .p-kisosansen-unagi-history-item:not(:last-child) {
    margin-bottom: 15rem;
  }
}
.p-kisosansen-unagi-history-item__heading {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1;
  color: #26136f;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-history-item__heading {
    margin-bottom: 10rem;
  }
}
.p-kisosansen-unagi-history-item__heading .num {
  display: block;
  font-family: "Averia Serif Libre", cursive;
}
.p-kisosansen-unagi-history-item__heading .num .episode {
  display: block;
  font-size: 1.6rem;
}
.p-kisosansen-unagi-history-item__heading .num .number {
  display: block;
  font-size: 7.2rem;
  line-height: 0.8em;
  margin-left: -7px;
}
.p-kisosansen-unagi-history-item__heading .line {
  display: inline-block;
  width: 55px;
  margin: 10px 15px 0;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-history-item__heading .line {
    width: 80px;
    margin: 10px 25px 0 20px;
  }
}
.p-kisosansen-unagi-history-item__heading .text {
  font-size: 2.2rem;
  line-height: 2;
  font-weight: bold;
  letter-spacing: 0.2em;
  margin: 1rem 0 3rem;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-history-item__heading .text {
    margin: 10px 0 0;
  }
}
.p-kisosansen-unagi-history-item__heading--m1 {
  flex-direction: column;
  justify-content: center;
}
.p-kisosansen-unagi-history-item__heading--m1 .line {
  transform: rotate(90deg);
  margin: 40px 0 20px;
}
.p-kisosansen-unagi-history-item__heading--m1 .text {
  margin-top: 2rem;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-history-item__heading--m1 {
    position: absolute;
    top: -480px;
    right: 7.5%;
  }
  .p-kisosansen-unagi-history-item__heading--m1 .line {
    margin: 60px 0 50px 0;
  }
  .p-kisosansen-unagi-history-item__heading--m1 .text {
    line-height: 2.5;
  }
}
@media screen and (min-width: 1024px) {
  .p-kisosansen-unagi-history-item__heading--m1 {
    top: -520px;
  }
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-history-item__heading--m3 {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-history-item__box {
    display: flex;
    justify-content: space-between;
  }
}
.p-kisosansen-unagi-history-item__picture {
  margin-bottom: 3rem;
}
.p-kisosansen-unagi-history-item__picture img {
  width: 100%;
  vertical-align: top;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-history-item__picture {
    margin-bottom: 0;
  }
}
.p-kisosansen-unagi-history-item__picture--m1 {
  width: 85%;
  margin: 0 auto 3rem;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-history-item__picture--m1 {
    order: 1;
    width: 26.4%;
    margin: 0;
  }
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-history-item__picture--m2 {
    order: 0;
    width: 37.7%;
  }
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-history-item__picture--m3 {
    order: 1;
    width: 50%;
  }
}
.p-kisosansen-unagi-history-item__body {
  font-size: 1.6rem;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-history-item__body--m1 {
    order: 0;
    width: 61.5%;
  }
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-history-item__body--m2 {
    order: 1;
    width: 53.7%;
  }
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-history-item__body--m3 {
    order: 0;
    width: 43%;
  }
}
.p-kisosansen-unagi-history-item__body p:not(:last-child) {
  margin-bottom: 2em;
}

.p-kisosansen-unagi-teamwork {
  overflow: hidden;
  padding: 10rem 0 11rem;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-teamwork {
    padding: 17rem 0 22rem;
  }
}
.p-kisosansen-unagi-teamwork__heading {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #26136f;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-teamwork__heading {
    justify-content: center;
  }
}
.p-kisosansen-unagi-teamwork__heading .ja {
  display: inline-block;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-teamwork__heading .ja {
    width: auto;
  }
}
.p-kisosansen-unagi-teamwork__heading .line {
  display: inline-block;
  width: 55px;
  margin-right: 8px;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-teamwork__heading .line {
    width: 85px;
    margin: 0 25px 0 20px;
  }
}
.p-kisosansen-unagi-teamwork__heading .en {
  display: inline-block;
  font-family: "Averia Serif Libre", cursive;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
.p-kisosansen-unagi-teamwork__heading .en-large {
  margin-top: 0.5rem;
  width: 100%;
  font-family: "Averia Serif Libre", cursive;
  font-size: 12vw;
  letter-spacing: 0.1em;
  line-height: 1.25em;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-teamwork__heading .en-large {
    font-size: 7.2rem;
    text-align: center;
  }
}
.p-kisosansen-unagi-teamwork__box {
  opacity: 0;
  transition: all 0.7s ease-in;
  width: calc(100% + 5vw);
  margin: 5rem 0 8rem -2.5vw;
  border: 1px solid #000;
  padding: 7rem 1.5rem 10rem;
  position: relative;
}
.p-kisosansen-unagi-teamwork__box.scroll-in {
  opacity: 1;
}
.p-kisosansen-unagi-teamwork__box::after {
  display: block;
  content: "";
  width: 10px;
  height: 95px;
  background: transparent url(./data/img/common/line_vertical.png) no-repeat center 0/cover;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-teamwork__box {
    width: 100%;
    margin: 12rem 0 12rem;
    padding: 10rem 7.9% 18rem;
  }
}
@media screen and (min-width: 1250px) {
  .p-kisosansen-unagi-teamwork__box {
    width: calc(100% + 14%);
    margin-left: -7%;
  }
}
.p-kisosansen-unagi-teamwork__logo {
  width: 183px;
  margin: 0 auto;
}
.p-kisosansen-unagi-teamwork__logo img {
  width: 100%;
  vertical-align: bottom;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-teamwork__lead-box {
    position: relative;
  }
}
.p-kisosansen-unagi-teamwork__lead {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 5rem 0;
  font-size: 3rem;
  font-weight: 600;
  color: #26136f;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  height: 330px;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-teamwork__lead {
    margin: 8rem 0 10rem;
    font-size: 3.6rem;
    letter-spacing: 0.2em;
    height: 440px;
  }
}
.p-kisosansen-unagi-teamwork__staff-picture img {
  width: 100%;
  vertical-align: bottom;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-teamwork__staff-picture {
    position: absolute;
    top: 50%;
    left: calc(50% + 15px);
    transform: translate(-50%, -50%);
    width: 95%;
  }
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-teamwork__body {
    position: relative;
  }
}
.p-kisosansen-unagi-teamwork__description {
  padding: 0 0.8rem;
  margin: 6rem 0 5rem;
  font-size: 1.6rem;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-teamwork__description {
    padding: 0;
    margin: 0 auto;
    max-width: 420px;
    line-height: 2.5;
  }
}
.p-kisosansen-unagi-teamwork__description p:not(:last-child) {
  margin-bottom: 2em;
}
.p-kisosansen-unagi-teamwork__picture {
  display: none;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-teamwork__picture {
    display: block;
    position: absolute;
    top: 0;
    width: 17.5%;
    max-width: 180px;
  }
  .p-kisosansen-unagi-teamwork__picture--left {
    left: 0;
  }
  .p-kisosansen-unagi-teamwork__picture--right {
    right: 0;
  }
  .p-kisosansen-unagi-teamwork__picture img {
    width: 100%;
    vertical-align: bottom;
  }
}

.swiper-container.p-kisosansen-unagi-teamwork-sp-swiper {
  height: 64vw;
}
@media screen and (min-width: 769px) {
  .swiper-container.p-kisosansen-unagi-teamwork-sp-swiper {
    display: none !important;
  }
}
.swiper-container.p-kisosansen-unagi-teamwork-sp-swiper .swiper-wrapper {
  width: 74.6% !important;
}
.swiper-container.p-kisosansen-unagi-teamwork-sp-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.swiper-container.p-kisosansen-unagi-teamwork-sp-swiper .swiper-slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper-container.p-kisosansen-unagi-teamwork-sp-swiper .swiper-pagination-fraction {
  width: 40px;
  left: auto !important;
  right: 0 !important;
  bottom: 0 !important;
  font-family: "Averia Serif Libre", cursive;
  color: #26136f;
  line-height: 1;
}
.swiper-container.p-kisosansen-unagi-teamwork-sp-swiper .swiper-pagination-current {
  font-size: 2.4rem;
}
.swiper-container.p-kisosansen-unagi-teamwork-sp-swiper .swiper-pagination-total {
  font-size: 1.8rem;
  color: #b3aec3;
}
.swiper-container.p-kisosansen-unagi-teamwork-sp-swiper .swiper-scrollbar {
  width: 1px !important;
  height: 100px !important;
  background: #b3aec3;
  top: auto !important;
  bottom: 45px;
  right: 18px !important;
}
.swiper-container.p-kisosansen-unagi-teamwork-sp-swiper .swiper-scrollbar-drag {
  background: #26136f;
}

.p-kisosansen-unagi-teamwork-unagi {
  opacity: 0;
  transition: all 0.7s ease-in;
}
.p-kisosansen-unagi-teamwork-unagi.scroll-in {
  opacity: 1;
}
.p-kisosansen-unagi-teamwork-unagi__heading {
  font-size: 8vw;
  font-weight: 600;
  color: #26136f;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-bottom: 2rem;
  padding-top: 9rem;
  margin-top: -9rem;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-teamwork-unagi__heading {
    font-size: 3.6rem;
    text-align: center;
    margin-bottom: 9rem;
    padding-top: 17rem;
    margin-top: -17rem;
  }
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-teamwork-unagi__box {
    position: relative;
  }
}
.p-kisosansen-unagi-teamwork-unagi__description {
  line-height: 2.5;
  font-size: 1.6rem;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-teamwork-unagi__description {
    width: 45%;
  }
}
.p-kisosansen-unagi-teamwork-unagi__picture {
  margin-top: 4rem;
  margin-right: -5.33vw;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-teamwork-unagi__picture {
    margin: 0;
    width: 65%;
    max-width: 700px;
    position: absolute;
    top: 0;
    right: -16%;
  }
}

.p-kisosansen-unagi-teamwork-style {
  opacity: 0;
  transition: all 0.7s ease-in;
  margin-top: 7.5rem;
  border: 1px solid #ddd;
  padding: 5.5rem 3.5rem 4.5rem;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.p-kisosansen-unagi-teamwork-style.scroll-in {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-teamwork-style {
    margin-top: 11rem;
    padding: 6rem 9rem 4.5rem;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
}
.p-kisosansen-unagi-teamwork-style__heading {
  color: #26136f;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.2em;
  padding: 0 4px;
  background: #fff;
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 87%;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-teamwork-style__heading {
    width: 290px;
  }
}
.p-kisosansen-unagi-teamwork-style__box {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-teamwork-style__box {
    display: flex;
    width: 44%;
  }
}
.p-kisosansen-unagi-teamwork-style__type {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #f2f4fc;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: #26136f;
  text-align: center;
  line-height: 100px;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-teamwork-style__type {
    margin-right: 25px;
  }
}
.p-kisosansen-unagi-teamwork-style__description {
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-teamwork-style__description {
    line-height: 2.5;
    width: calc(100% - 125px);
  }
}
.p-kisosansen-unagi-teamwork-style__plus {
  width: 20px;
  margin: 2.5rem 0;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-teamwork-style__plus {
    margin: 0;
    width: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.p-kisosansen-unagi-jas {
  padding-bottom: 11rem;
  background: transparent url(./data/img/kisosansen-unagi/jas_bg_sp.jpg) no-repeat center 100%/cover;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-jas {
    padding-bottom: 24rem;
    background: transparent url(./data/img/kisosansen-unagi/jas_bg.jpg) no-repeat center 100%/cover;
  }
}
.p-kisosansen-unagi-jas__heading {
  position: relative;
  padding: 10rem 0 6.5rem;
  background: transparent url(./data/img/kisosansen-unagi/jas_heading_bg_sp.jpg) no-repeat center 0/cover;
}
.p-kisosansen-unagi-jas__heading::after {
  display: block;
  content: "";
  width: 100%;
  height: 0;
  padding-bottom: 10%;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: transparent url(./data/img/kisosansen-unagi/jas_heading_wave_sp.png) no-repeat center 100%/cover;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-jas__heading {
    padding: 28rem 0 25rem;
    background: transparent url(./data/img/kisosansen-unagi/jas_heading_bg.jpg) no-repeat center 0/cover;
  }
  .p-kisosansen-unagi-jas__heading::after {
    padding-bottom: 5%;
    background: transparent url(./data/img/kisosansen-unagi/jas_heading_wave.png) no-repeat center 100%/cover;
  }
}
.p-kisosansen-unagi-jas__heading .box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #fff;
  line-height: 2;
}
.p-kisosansen-unagi-jas__heading .box .ja {
  display: inline-block;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-jas__heading .box .ja {
    width: auto;
  }
}
.p-kisosansen-unagi-jas__heading .box .line {
  display: inline-block;
  width: 55px;
  margin-right: 8px;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-jas__heading .box .line {
    width: 85px;
    margin: 0 25px 0 20px;
  }
}
.p-kisosansen-unagi-jas__heading .box .en {
  display: inline-block;
  font-family: "Averia Serif Libre", cursive;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
.p-kisosansen-unagi-jas__heading .box .en-large {
  margin-top: 0.5rem;
  width: 100%;
  font-family: "Averia Serif Libre", cursive;
  font-size: 4.8rem;
  letter-spacing: 0.1em;
  line-height: 1.25em;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-jas__heading .box .en-large {
    font-size: 7.2rem;
  }
}
.p-kisosansen-unagi-jas__sub-heading {
  opacity: 0;
  transition: all 0.7s ease-in;
  font-size: 2.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  color: #26136f;
  line-height: 2;
  margin: 10rem 0 6rem;
}
.p-kisosansen-unagi-jas__sub-heading.scroll-in {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-jas__sub-heading {
    font-size: 3.6rem;
    margin: 14rem 0 8rem;
  }
}
.p-kisosansen-unagi-jas__list {
  max-width: 960px;
  margin: 0 auto;
}
.p-kisosansen-unagi-jas__item {
  opacity: 0;
  transition: all 0.7s ease-in;
}
.p-kisosansen-unagi-jas__item.scroll-in {
  opacity: 1;
}
.p-kisosansen-unagi-jas__item:not(:last-child) {
  margin-bottom: 10rem;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-jas__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .p-kisosansen-unagi-jas__item:not(:last-child) {
    margin-bottom: 10rem;
  }
}
.p-kisosansen-unagi-jas__item-picture {
  display: block;
}
.p-kisosansen-unagi-jas__item-picture img {
  width: 100%;
  vertical-align: bottom;
}
.p-kisosansen-unagi-jas__item-picture--m1 {
  width: 70%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-jas__item-picture--m1 {
    width: 20%;
    margin: 0;
  }
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-jas__item-picture--m2 {
    width: 33.3%;
    order: 0;
    margin-left: -20px;
  }
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-jas__item-picture--m3 {
    width: 33.3%;
    margin-right: -10px;
  }
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-jas__item-body--m1 {
    width: 73%;
  }
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-jas__item-body--m2 {
    width: 63.5%;
    order: 1;
  }
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-jas__item-body--m3 {
    width: 60%;
  }
}
.p-kisosansen-unagi-jas__item-description {
  font-size: 1.6rem;
  line-height: 2.5;
  margin-bottom: 6rem;
}
.p-kisosansen-unagi-jas__item-description p:not(:last-child) {
  margin-bottom: 2em;
}
.p-kisosansen-unagi-jas__item-heading {
  font-size: 2.1rem;
  font-weight: 600;
  color: #26136f;
  line-height: 1.7;
  letter-spacing: 0.2em;
  margin-bottom: 2.5rem;
}
.p-kisosansen-unagi-jas-info {
  opacity: 0;
  transition: all 0.7s ease-in;
  margin-top: 7rem;
}
.p-kisosansen-unagi-jas-info.scroll-in {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-jas-info {
    margin-top: 8rem;
  }
}
.p-kisosansen-unagi-jas-info__heading {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-jas-info__heading {
    margin-bottom: 7rem;
  }
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-jas-info__list {
    display: flex;
    flex-wrap: wrap;
  }
}
.p-kisosansen-unagi-jas-info__item {
  border: 1px solid #ddd;
  padding: 2.8rem 2.5rem 2.5rem;
  position: relative;
}
.p-kisosansen-unagi-jas-info__item:not(:last-child) {
  margin-bottom: 5rem;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-jas-info__item {
    margin-bottom: 7rem !important;
    padding: 3rem 3rem 3.5rem;
    width: calc(25% - 30px);
  }
  .p-kisosansen-unagi-jas-info__item:not(:nth-child(4n)) {
    margin-right: 40px;
  }
}
.p-kisosansen-unagi-jas-info__item-num {
  color: #26136f;
  font-family: "Averia Serif Libre", cursive;
  font-size: 2.4rem;
  line-height: 1;
  padding: 0 6px;
  background: #edf1f6;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.p-kisosansen-unagi-jas-info__item-description {
  font-size: 1.6rem;
  line-height: 1.875;
}

.p-kisosansen-unagi-customer {
  padding: 11rem 0 13rem;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-customer {
    padding: 17rem 0 24rem;
  }
}
.p-kisosansen-unagi-customer__content {
  opacity: 0;
  transition: all 0.7s ease-in;
}
.p-kisosansen-unagi-customer__content.scroll-in {
  opacity: 1;
}
.p-kisosansen-unagi-customer__content:not(:last-child) {
  margin-bottom: 8rem;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-customer__content:not(:last-child) {
    margin-bottom: 11rem;
  }
}
.p-kisosansen-unagi-customer__content-name {
  font-size: 2.1rem;
  font-weight: bold;
  color: #26136f;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 5rem;
}
.p-kisosansen-unagi-customer__content-text {
  margin-top: -2rem;
}
.p-kisosansen-unagi-customer__table {
  width: 100%;
}
.p-kisosansen-unagi-customer__table tr {
  display: block;
  padding: 1.5em 0;
  border-bottom: 1px solid #ddd;
}
.p-kisosansen-unagi-customer__table tr:first-child {
  border-top: 1px solid #ddd;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-customer__table tr {
    display: table-row;
    padding: 0;
  }
}
.p-kisosansen-unagi-customer__table tr th {
  display: block;
  font-weight: normal;
  text-align: left;
  color: #26136f;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-customer__table tr th {
    display: table-cell;
    padding: 1.5em 0;
    width: 30%;
    vertical-align: top;
    font-size: 1.6rem;
  }
}
.p-kisosansen-unagi-customer__table tr td {
  display: block;
  padding-left: 1em;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-customer__table tr td {
    display: table-cell;
    padding: 1.5em 0;
    font-size: 1.6rem;
  }
  .p-kisosansen-unagi-customer__table tr td:nth-child(2) {
    width: 35%;
  }
  .p-kisosansen-unagi-customer__table tr td:nth-child(3) {
    width: 17.5%;
  }
  .p-kisosansen-unagi-customer__table tr td:nth-child(4) {
    width: 17.5%;
  }
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-customer__list {
    display: flex;
    flex-wrap: wrap;
  }
}
.p-kisosansen-unagi-customer__link {
  margin-top: 1rem;
  width: 120px;
  height: 30px;
  line-height: 28px;
  border: 1px solid #ddd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.p-kisosansen-unagi-customer__link img {
  width: 16px;
  margin-right: 5px;
}
.p-kisosansen-unagi-customer__link span {
  font-size: 1.4rem;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-customer__link {
    margin-top: 0;
  }
}
.p-kisosansen-unagi-customer__link--item {
  margin-top: 1rem;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-customer__link--item {
    margin-top: 1.5rem;
  }
}

.p-kisosansen-unagi-customer-item {
  border: 1px solid #ddd;
  padding: 4rem 2rem 2.5rem;
  position: relative;
}
.p-kisosansen-unagi-customer-item:not(:last-child) {
  margin-bottom: 5rem;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-customer-item {
    margin-bottom: 0 !important;
    padding: 6rem 4.8rem;
    width: calc(50% - 30px);
  }
  .p-kisosansen-unagi-customer-item:nth-child(odd) {
    margin-right: 60px;
  }
}
.p-kisosansen-unagi-customer-item__heading {
  color: #26136f;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.2em;
  padding: 0 4px;
  background: #fff;
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  z-index: 1;
}
.p-kisosansen-unagi-customer-item__table {
  width: 100%;
}
.p-kisosansen-unagi-customer-item__table tr th {
  font-weight: normal;
  text-align: left;
  line-height: 2;
  vertical-align: top;
  width: 17.5%;
  font-size: 1.6rem;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-customer-item__table tr th {
    width: 30%;
  }
}
.p-kisosansen-unagi-customer-item__table tr td {
  line-height: 2;
  width: 87.5%;
  font-size: 1.6rem;
}
@media screen and (min-width: 769px) {
  .p-kisosansen-unagi-customer-item__table tr td {
    width: 70%;
  }
}
.p-kisosansen-unagi-customer-item__description {
  font-size: 1.6rem;
  margin-top: 1rem;
}
/*# sourceMappingURL=style.css.map */</pre></body></html>