@charset "UTF-8";
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1s; }

.fadein.active {
  opacity: 1;
  transform: translate(0, 0); }

.slidedown {
  opacity: 0;
  transform: translate(0, -50px);
  transition: all 1s; }

.slidedown.active {
  opacity: 1;
  transform: translate(0, 0); }

.slidein {
  width: 100vw;
  overflow: hidden;
  opacity: 0;
  transform: translate(50px, 0);
  -webkit-transform: translate(50px, 0);
  transition: all 1s; }

.slidein.active {
  opacity: 1;
  transform: translate(0, 0); }

.slidein_v {
  opacity: 0;
  width: 100vw;
  overflow: hidden;
  transform: translate(50px, 0);
  -webkit-transform: translate(50px, 0);
  transition: all 1s; }

.slidein_v.active {
  opacity: 1;
  transform: translate(0, 0); }

html, body, div, p, header, footer, img span, ul, ol, li, section, header, footer,
table, th, td, h1, h2, h3, h4, h5, h6, a, form, input, textarea,
dl, dt, dd, iframe, figure {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: none; }

html {
  -webkit-font-smoothing: antialiased; }

body {
  line-height: 1.8;
  height: 100%;
  font-family: din-2014, source-han-sans-japanese, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #333; }
  @media (max-width: 768px) {
    body {
      overflow-x: hidden; } }

img {
  display: block;
  border: 0; }

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

ul.btn-group {
  text-align: center; }
  @media (max-width: 768px) {
    ul.btn-group {
      padding: 0 15px; } }
  ul.btn-group li {
    display: inline-block; }
    @media (max-width: 768px) {
      ul.btn-group li {
        display: block;
        margin-bottom: 10px; } }
    ul.btn-group li:not(:first-child) {
      margin-left: 20px; }
      @media (max-width: 768px) {
        ul.btn-group li:not(:first-child) {
          margin-left: 0; } }
    ul.btn-group li a.btn {
      display: block;
      min-width: 300px;
      font-size: 20px;
      height: 70px;
      line-height: 70px;
      border-radius: 35px;
      padding: 0 35px;
      /*&.btn-outline {
      	color: $main;
      	border: 2px solid $main;
      }*/ }
      @media (max-width: 768px) {
        ul.btn-group li a.btn {
          min-width: 200px;
          font-size: 16px;
          height: 44px;
          line-height: 44px;
          border-radius: 22px;
          padding: 0 22px; } }
      ul.btn-group li a.btn.btn-solid {
        background: #61C1BE;
        color: #FFF;
        transition: 0.5s;
        border: 2px solid #61C1BE; }
        ul.btn-group li a.btn.btn-solid:hover {
          background: transparent;
          color: #61C1BE;
          border: 2px solid #61C1BE; }

/**** BTN No. 3 ****/
.custom-btn {
  padding: 10px 25px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  background: transparent;
  outline: none !important;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #61C1BE; }
  @media (max-width: 768px) {
    .custom-btn {
      font-size: 14px; } }

strong.btn-bg {
  position: absolute;
  width: 300px;
  height: 70px;
  background: #61C1BE;
  left: -300px;
  top: 0;
  opacity: 0;
  transition: all .5s;
  transform: translate(0, 0);
  z-index: -1; }

.btn-3:hover strong.btn-bg {
  left: 0;
  opacity: 1;
  transform: translate(0, 0); }

.btn-3 {
  width: 300px;
  height: 70px;
  line-height: 70px;
  padding: 0;
  border: none;
  overflow: hidden; }
  @media (max-width: 768px) {
    .btn-3 {
      height: 44px;
      line-height: 44px; } }

.btn-3 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%; }

.btn-3:before,
.btn-3:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  background: #61C1BE;
  transition: all 0.3s ease; }

.btn-3:before {
  height: 0%;
  width: 2px;
  transition: all 1s; }

.btn-3:after {
  width: 0%;
  height: 2px;
  transition: all 1s; }

.btn-3.active:before {
  height: 100%; }

.btn-3.active:after {
  width: 100%; }

.btn-3 > span {
  transition: 1s; }

.btn-3 > span:hover {
  color: #FFF; }

.btn-3 > span:before,
.btn-3 > span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background: #61C1BE;
  transition: all 0.3s ease; }

.btn-3 > span:before {
  width: 2px;
  height: 0%;
  transition: all 1s; }

.btn-3 > span:after {
  width: 0%;
  height: 2px;
  transition: all 1s; }

.btn-3 > span.active:before {
  height: 100%; }

.btn-3 > span.active:after {
  width: 100%; }

hr {
  border: 0;
  border-top: 1px solid #61C1BE;
  margin: 50px 0; }
  @media (max-width: 768px) {
    hr {
      margin: 30px 0; } }

#spMenu {
  display: none; }
  @media (max-width: 768px) {
    #spMenu {
      display: block; } }
  #spMenu .menu-btn {
    position: fixed;
    top: 0px;
    right: 0px;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #61C1BE;
    z-index: 1200; }
  #spMenu .menu {
    border-top: 10px solid #61C1BE;
    position: fixed;
    top: 55px;
    right: 0;
    z-index: 1100;
    width: 100vw;
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(100vw);
    transition: transform .3s linear; }
  #spMenu .menu-item {
    width: 100%;
    height: auto;
    text-align: left;
    color: #fff;
    box-sizing: border-box;
    border-bottom: 1px solid #61C1BE; }
    #spMenu .menu-item .menu-child-sp {
      list-style: none;
      text-indent: 1em; }
      #spMenu .menu-item .menu-child-sp li a::before {
        content: "- ";
        display: inline; }
  #spMenu .menu.is-active {
    transform: translateX(0); }
  #spMenu .fa {
    font-size: 24px; }
  #spMenu a {
    padding: .5em 15px;
    display: block;
    color: #333; }
    #spMenu a.current {
      font-weight: 700; }

header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100vw;
  display: flex;
  flex-wrap: nowrap;
  padding: 30px;
  background: rgba(255, 255, 255, 0.8); }
  @media (max-width: 768px) {
    header {
      padding: 15px; } }
  header a#logo {
    margin-right: auto; }
    header a#logo img {
      width: 300px;
      height: auto; }
      @media (max-width: 768px) {
        header a#logo img {
          width: auto;
          height: 25px; } }
  header ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    list-style: none;
    line-height: 40px; }
    header ul li {
      margin-left: 30px;
      position: relative; }
      header ul li a {
        color: #61C1BE;
        transition: 0.5s;
        border-bottom: 2px solid transparent; }
        header ul li a:hover {
          border-bottom: 2px solid #61C1BE;
          padding-bottom: 5px; }
        header ul li a.current {
          color: #333;
          border-bottom: 2px solid #333;
          padding-bottom: 5px; }
      header ul li ul.menu-child {
        white-space: nowrap;
        display: block;
        position: absolute;
        width: fit-content;
        left: -10px; }
        header ul li ul.menu-child li {
          margin-left: 0;
          background: none; }
          header ul li ul.menu-child li a {
            background: #fff;
            display: flex;
            border-bottom: 2px solid #61C1BE;
            padding: 0 10px;
            justify-content: space-between; }
            header ul li ul.menu-child li a::after {
              content: "＞";
              margin-left: 30px; }
    @media (max-width: 768px) {
      header ul {
        display: none; } }

#firstview {
  position: relative;
  top: 100px;
  width: 100vw;
  height: calc(100vh - 100px);
  background: #FFF no-repeat center center;
  background-size: cover;
  margin-bottom: 100px; }
  @media (max-width: 768px) {
    #firstview {
      top: 55px;
      height: calc(100vh - 55px); } }
  #firstview #bg {
    width: 100vw;
    height: calc(100vh - 100px);
    border-bottom: 10px solid #61C1BE;
    border-top: 10px solid #61C1BE; }
    @media (max-width: 768px) {
      #firstview #bg {
        height: calc(100vh - 55px); } }
  #firstview #copy {
    width: 100vw;
    height: calc(100vh - 100px);
    display: table-cell;
    text-align: left;
    vertical-align: middle;
    color: #FFF;
    padding-left: 100px; }
    @media (max-width: 768px) {
      #firstview #copy {
        padding-left: 20px;
        padding-right: 20px; } }
    #firstview #copy img {
      width: 200px;
      display: inline;
      margin-bottom: 30px; }
    #firstview #copy p:first-child {
      font-size: 50px;
      font-family: source-han-serif-japanese, serif;
      line-height: 1.5;
      margin-bottom: 25px; }
      @media (max-width: 768px) {
        #firstview #copy p:first-child {
          font-size: 24px; } }
    #firstview #copy p:last-child {
      font-size: 20px; }
      @media (max-width: 768px) {
        #firstview #copy p:last-child {
          font-size: 14px; } }
      #firstview #copy p:last-child br {
        display: none; }
        @media (max-width: 768px) {
          #firstview #copy p:last-child br {
            display: block; } }

h1#policy {
  padding: 50px 0 0;
  font-size: 32px;
  font-family: source-han-serif-japanese, serif;
  font-weight: 400;
  text-align: center; }
  @media (max-width: 768px) {
    h1#policy {
      padding: 20px 20px 0;
      font-size: 16px;
      text-align: left; }
      h1#policy br {
        display: none; } }

.biz-list {
  padding: 0 0 50px; }
  @media (max-width: 768px) {
    .biz-list {
      padding: 0 15px 25px; } }
  .biz-list h2 {
    font-family: source-han-serif-japanese, serif;
    font-weight: 400;
    font-size: 24px;
    text-align: center; }
    @media (max-width: 768px) {
      .biz-list h2 {
        font-size: 16px; } }
  .biz-list ul {
    padding-top: 50px;
    margin: 0 auto;
    width: 1200px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    list-style: none; }
    @media (max-width: 768px) {
      .biz-list ul {
        padding-top: 20px;
        width: 100%;
        display: block; } }
    .biz-list ul li {
      width: 350px; }
      @media (max-width: 768px) {
        .biz-list ul li {
          width: 100%;
          margin-bottom: 25px; } }
      .biz-list ul li > div {
        width: 100%; }
        .biz-list ul li > div:hover img {
          transform: scale(1.1); }
        .biz-list ul li > div:hover a {
          border-bottom: 2px solid #61C1BE; }
        .biz-list ul li > div > div {
          width: 100%;
          height: 220px;
          overflow: hidden;
          margin-bottom: 10px; }
        .biz-list ul li > div img {
          width: 100%;
          height: 220px;
          transition: 0.5s; }
      .biz-list ul li > img {
        width: 100%;
        height: 220px;
        margin-bottom: 10px;
        object-fit: cover;
        font-family: 'object-fit: cover;'; }
      .biz-list ul li h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 5px; }
        .biz-list ul li h3::before {
          content: "\f0da";
          font-family: "Font Awesome 5 Free";
          margin-right: 10px; }
        @media (max-width: 768px) {
          .biz-list ul li h3 {
            font-size: 16px; } }
        .biz-list ul li h3 a {
          border-bottom: 2px solid transparent;
          transition: 0.5s; }
          .biz-list ul li h3 a:hover {
            border-bottom: 2px solid #61C1BE; }
      .biz-list ul li p {
        font-size: 15px; }
        @media (max-width: 768px) {
          .biz-list ul li p {
            font-size: 13px; } }

#information {
  padding-bottom: 50px; }
  @media (max-width: 768px) {
    #information {
      padding: 0 15px 15px; } }
  #information h2 {
    font-size: 30px;
    font-weight: 700;
    width: 1100px;
    margin: 0 auto; }
    @media (max-width: 768px) {
      #information h2 {
        width: 100%;
        font-size: 20px; } }
  #information table {
    display: block;
    width: 1100px;
    margin: 0 auto;
    border-collapse: collapse; }
    @media (max-width: 768px) {
      #information table {
        width: 100%; } }
    #information table tr:nth-child(2n+1) {
      background: #eee; }
    #information table tr td {
      padding: 10px 20px; }
      @media (max-width: 768px) {
        #information table tr td {
          display: block; } }
      #information table tr td:first-child {
        width: 150px; }
        @media (max-width: 768px) {
          #information table tr td:first-child {
            width: 100%;
            padding-bottom: 0; } }
        #information table tr td:first-child::after {
          content: "●";
          font-size: 5px;
          color: #999;
          vertical-align: middle;
          margin-left: 30px; }
          @media (max-width: 768px) {
            #information table tr td:first-child::after {
              display: none; } }
      #information table tr td:last-child {
        width: 1050px; }
        @media (max-width: 768px) {
          #information table tr td:last-child {
            width: 100%;
            padding-top: 0; } }
      #information table tr td a {
        border-bottom: 1px solid #61C1BE;
        transition: 0.5s; }
        #information table tr td a:hover {
          color: #61C1BE; }

footer #footerBox {
  padding: 50px 0;
  border-top: 10px solid #61C1BE;
  border-bottom: 10px solid #61C1BE;
  text-align: center;
  color: #61C1BE; }
  @media (max-width: 768px) {
    footer #footerBox {
      padding: 20px 0; } }
  footer #footerBox img {
    width: 500px;
    margin: 0 auto 20px; }
    @media (max-width: 768px) {
      footer #footerBox img {
        width: 250px;
        margin-bottom: 10px; } }
  footer #footerBox p#ftAddress {
    margin-bottom: 30px; }
  footer #footerBox ul#pagelist {
    display: block;
    margin: 30px auto 0;
    width: 800px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    list-style: none;
    text-align: left;
    font-size: 14px; }
    @media (max-width: 768px) {
      footer #footerBox ul#pagelist {
        width: 300px;
        display: block;
        column-count: 2;
        column-gap: 0;
        margin-top: 10px;
        font-size: 12px; } }
    footer #footerBox ul#pagelist li {
      position: relative; }
      footer #footerBox ul#pagelist li::before {
        content: "> "; }
      footer #footerBox ul#pagelist li a {
        font-size: 15px;
        color: #333;
        border-bottom: 1px solid #61C1BE;
        transition: 0.5s; }
        footer #footerBox ul#pagelist li a:hover {
          color: #61C1BE; }
      footer #footerBox ul#pagelist li ul.menu-child {
        position: absolute;
        white-space: nowrap;
        display: block;
        width: fit-content;
        left: 10px;
        list-style: none; }
footer p#copyright {
  text-align: center;
  font-size: 14px;
  color: #61C1BE;
  padding: 50px 0; }
  @media (max-width: 768px) {
    footer p#copyright {
      padding: 20px 15px;
      font-size: 10px; } }

#toTop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  text-align: center;
  background: #61C1BE;
  width: 60px;
  height: 60px;
  line-height: 70px;
  border-radius: 10px; }
  #toTop i {
    color: #FFF; }

#main h1 {
  width: 100%;
  height: 200px;
  position: relative;
  top: 100px;
  font-size: 50px;
  text-align: center;
  vertical-align: middle;
  color: #FFF;
  padding-top: 70px;
  line-height: 100%;
  margin-bottom: 100px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-blend-mode: multiply;
  background-color: rgba(102, 102, 102, 0.5); }
  #main h1 span {
    display: block;
    font-size: 18px; }
  @media (max-width: 768px) {
    #main h1 {
      height: 100px;
      font-size: 24px;
      top: 55px;
      padding-top: 30px;
      margin-bottom: 55px; }
      #main h1 span {
        font-size: 13px; } }

#content {
  padding-bottom: 100px; }
  @media (max-width: 768px) {
    #content {
      padding-top: 0;
      padding-bottom: 50px; } }
  #content.content-message {
    width: 800px;
    margin: 0 auto; }
    @media (max-width: 768px) {
      #content.content-message {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px; } }
    #content.content-message #message-photo {
      width: 300px;
      margin: 0 auto 50px;
      border-radius: 20px; }
      @media (max-width: 768px) {
        #content.content-message #message-photo {
          max-width: 300px; } }
    #content.content-message #message-content {
      column-count: 2;
      column-gap: 50px;
      text-align: justify;
      margin-bottom: 50px; }
      @media (max-width: 768px) {
        #content.content-message #message-content {
          column-count: 1;
          font-size: 14px; } }
    #content.content-message #message-name {
      text-align: center; }
      #content.content-message #message-name img:first-child {
        width: 300px;
        margin: 0 auto 30px; }
        @media (max-width: 768px) {
          #content.content-message #message-name img:first-child {
            max-width: 200px;
            margin-bottom: 15px; } }
      #content.content-message #message-name img:last-child {
        width: 163px;
        margin: 0 auto; }
      #content.content-message #message-name span#yakushoku {
        display: block;
        font-size: 16px; }
        @media (max-width: 768px) {
          #content.content-message #message-name span#yakushoku {
            font-size: 13px; } }
      #content.content-message #message-name span#name {
        font-size: 28px;
        font-family: source-han-serif-japanese, serif; }
        @media (max-width: 768px) {
          #content.content-message #message-name span#name {
            font-size: 18px; } }
    #content.content-message iframe {
      width: 800px;
      height: 450px;
      display: block;
      margin: 100px auto 0; }
      @media (max-width: 768px) {
        #content.content-message iframe {
          width: calc(100% - 20px);
          height: 60vw;
          margin-top: 50px; } }
  #content.content-about {
    width: 1000px;
    margin: 0 auto; }
    @media (max-width: 768px) {
      #content.content-about {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px; } }
    #content.content-about div.content-about-honsha {
      width: 1000px;
      margin-bottom: 100px; }
      @media (max-width: 768px) {
        #content.content-about div.content-about-honsha {
          width: 100%;
          margin-bottom: 30px; } }
    #content.content-about div.content-about-eigyosho {
      display: flex;
      flex-wrap: nowrap;
      justify-content: space-between;
      margin-bottom: 100px; }
      @media (max-width: 768px) {
        #content.content-about div.content-about-eigyosho {
          display: block;
          width: 100%; } }
      #content.content-about div.content-about-eigyosho div {
        width: 450px; }
        @media (max-width: 768px) {
          #content.content-about div.content-about-eigyosho div {
            width: 100%; }
            #content.content-about div.content-about-eigyosho div:first-child {
              margin-bottom: 30px; } }
    #content.content-about div h2 {
      color: #61C1BE;
      font-size: 21px; }
      @media (max-width: 768px) {
        #content.content-about div h2 {
          font-size: 18px; } }
    #content.content-about div > table {
      border-collapse: collapse;
      font-size: 15px;
      width: 100%;
      border-top: 1px solid #ccc; }
      @media (max-width: 768px) {
        #content.content-about div > table {
          font-size: 13px; } }
      #content.content-about div > table tr {
        border-bottom: 1px solid #ccc; }
        #content.content-about div > table tr th, #content.content-about div > table tr td {
          padding: 5px 15px 5px 0;
          vertical-align: top; }
        #content.content-about div > table tr th {
          white-space: nowrap;
          text-align: left; }
        @media (max-width: 768px) {
          #content.content-about div > table tr td table td {
            display: block; }
            #content.content-about div > table tr td table td:first-child {
              padding-top: 0;
              padding-bottom: 0; }
            #content.content-about div > table tr td table td:last-child {
              padding-top: 0; } }
      #content.content-about div > table iframe {
        width: 100%;
        height: 300px;
        margin-top: 10px; }
  #content.content-history {
    width: 1000px;
    margin: 0 auto; }
    @media (max-width: 768px) {
      #content.content-history {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px; } }
    #content.content-history h2 {
      color: #61C1BE;
      font-size: 21px; }
      @media (max-width: 768px) {
        #content.content-history h2 {
          font-size: 18px; } }
    #content.content-history table {
      border-collapse: collapse;
      font-size: 15px;
      width: 100%;
      border-top: 1px solid #ccc; }
      @media (max-width: 768px) {
        #content.content-history table {
          font-size: 13px; } }
      #content.content-history table tr {
        border-bottom: 1px solid #ccc; }
        #content.content-history table tr th, #content.content-history table tr td {
          padding: 5px 15px 5px 0;
          vertical-align: top; }
        #content.content-history table tr th {
          width: 50px;
          white-space: nowrap;
          text-align: right;
          margin-right: 0; }
          @media (max-width: 768px) {
            #content.content-history table tr th {
              display: inline-block;
              width: auto;
              padding: 5px 0 0; }
              #content.content-history table tr th:empty {
                display: none; } }
        @media (max-width: 768px) {
          #content.content-history table tr td {
            display: block;
            width: 100%;
            padding: 0 0 5px; } }
      #content.content-history table iframe {
        width: 100%;
        height: 300px;
        margin-top: 10px; }
  #content.content-suppliers {
    width: 1200px;
    margin: 0 auto; }
    @media (max-width: 768px) {
      #content.content-suppliers {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px; } }
    #content.content-suppliers h2 {
      color: #61C1BE;
      font-size: 21px;
      margin-bottom: 25px;
      padding-top: 100px; }
      @media (max-width: 768px) {
        #content.content-suppliers h2:not(:first-child) {
          margin-top: 20px;
          padding-top: 55px; } }
      @media (max-width: 768px) {
        #content.content-suppliers h2 {
          margin-bottom: 10px;
          font-size: 18px; } }
    #content.content-suppliers ul {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      font-size: 15px; }
      @media (max-width: 768px) {
        #content.content-suppliers ul {
          display: block;
          font-size: 14px;
          list-style: disc;
          padding-left: 20px; } }
      #content.content-suppliers ul li {
        width: 370px;
        margin-right: 30px;
        margin-bottom: 30px;
        text-align: center; }
        @media (max-width: 768px) {
          #content.content-suppliers ul li {
            width: 100%;
            margin-right: 0;
            margin-bottom: 5px;
            text-align: left; } }
        #content.content-suppliers ul li a {
          padding: 10px 0;
          display: block;
          color: #333;
          text-decoration: none;
          border: 1px solid #333;
          border-radius: 10px;
          transition: 0.5s; }
          #content.content-suppliers ul li a:hover {
            background: #61C1BE;
            color: #FFF;
            border: 1px solid #61C1BE; }
          @media (max-width: 768px) {
            #content.content-suppliers ul li a {
              display: inline;
              padding: 0;
              border: 0;
              border-bottom: 1px solid #61C1BE;
              border-radius: 0; }
              #content.content-suppliers ul li a:hover {
                background: transparent;
                border: 0;
                color: #61C1BE; } }
    #content.content-suppliers p {
      font-size: 15px; }
      #content.content-suppliers p a {
        color: #333;
        border-bottom: 1px solid #61C1BE;
        transition: 0.5s; }
        #content.content-suppliers p a:hover {
          color: #61C1BE; }
  #content.content-contact {
    width: 800px;
    margin: 0 auto; }
    @media (max-width: 768px) {
      #content.content-contact {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px; } }
    #content.content-contact p {
      margin-bottom: 50px;
      text-align: center; }
      @media (max-width: 768px) {
        #content.content-contact p {
          text-align: left;
          margin-bottom: 25px;
          font-size: 13px; } }
      #content.content-contact p a {
        color: #333;
        border-bottom: 1px solid #61C1BE;
        transition: 0.5s; }
        #content.content-contact p a:hover {
          color: #61C1BE; }
    #content.content-contact ul {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      justify-content: center; }
      @media (max-width: 768px) {
        #content.content-contact ul {
          display: block; } }
      #content.content-contact ul li {
        width: 350px;
        margin: 0 25px 50px; }
        @media (max-width: 768px) {
          #content.content-contact ul li {
            width: 100%;
            margin: 0 0 25px; } }
        #content.content-contact ul li h2 {
          color: #61C1BE;
          font-size: 21px; }
          @media (max-width: 768px) {
            #content.content-contact ul li h2 {
              font-size: 18px; } }
        #content.content-contact ul li table {
          width: 100%;
          border-collapse: collapse;
          font-size: 15px;
          border-top: 2px solid #333;
          border-bottom: 2px solid #333; }
          @media (max-width: 768px) {
            #content.content-contact ul li table {
              font-size: 13px; } }
          #content.content-contact ul li table tr {
            border-bottom: 1px solid #ccc; }
            #content.content-contact ul li table tr th, #content.content-contact ul li table tr td {
              padding: 10px 0;
              vertical-align: top; }
            #content.content-contact ul li table tr th {
              padding-right: 10px; }
            #content.content-contact ul li table tr a {
              color: #333;
              border-bottom: 1px solid #61C1BE;
              transition: 0.5s; }
              #content.content-contact ul li table tr a:hover {
                color: #61C1BE; }
  #content.content-business {
    width: 100%;
    margin: 0 auto; }
    #content.content-business .business-set {
      display: flex;
      flex-wrap: nowrap;
      padding-top: 100px; }
      @media (max-width: 768px) {
        #content.content-business .business-set {
          display: block;
          padding-bottom: 25px;
          padding-top: 30px; } }
      #content.content-business .business-set:nth-child(even) {
        flex-direction: row-reverse; }
      #content.content-business .business-set:last-child {
        padding-bottom: 0; }
      #content.content-business .business-set img.business-image {
        width: 50%;
        height: 500px;
        object-fit: cover;
        font-family: 'object-fit: cover;'; }
        @media (max-width: 768px) {
          #content.content-business .business-set img.business-image {
            width: 100%;
            height: 25vh; } }
      #content.content-business .business-set video.business-image {
        width: 50%;
        height: auto; }
        @media (max-width: 768px) {
          #content.content-business .business-set video.business-image {
            width: 100%;
            height: auto; } }
      #content.content-business .business-set .business {
        width: 50%;
        padding: 0 100px; }
        @media (max-width: 768px) {
          #content.content-business .business-set .business {
            width: 100%;
            padding: 25px 15px 15px; } }
        #content.content-business .business-set .business h2 {
          font-size: 30px;
          color: #333;
          line-height: 100%;
          margin-bottom: 20px; }
          @media (max-width: 768px) {
            #content.content-business .business-set .business h2 {
              font-size: 18px; } }
        #content.content-business .business-set .business p {
          color: #666;
          font-size: 14px;
          text-align: justify;
          margin-bottom: 50px; }
          @media (max-width: 768px) {
            #content.content-business .business-set .business p {
              margin-bottom: 15px;
              font-size: 13px; } }
        #content.content-business .business-set .business h3 {
          font-size: 14px;
          margin-top: 25px; }
          @media (max-width: 768px) {
            #content.content-business .business-set .business h3 {
              font-size: 13px; } }
          #content.content-business .business-set .business h3::before {
            content: "● "; }
          #content.content-business .business-set .business h3 + p {
            margin-bottom: 0; }
        #content.content-business .business-set .business table {
          border-collapse: collapse;
          border-top: 1px solid #ccc;
          font-size: 14px;
          margin-bottom: 0;
          width: 100%; }
          @media (max-width: 768px) {
            #content.content-business .business-set .business table {
              font-size: 13px; } }
          #content.content-business .business-set .business table tr {
            border-bottom: 1px solid #ccc; }
            #content.content-business .business-set .business table tr th {
              color: #603813;
              text-align: left;
              white-space: nowrap;
              padding-right: 20px;
              vertical-align: top; }
            #content.content-business .business-set .business table tr td a {
              border-bottom: 1px solid #61C1BE;
              color: #333;
              transition: 0.5s; }
              #content.content-business .business-set .business table tr td a:hover {
                color: #61C1BE; }
        #content.content-business .business-set .business a.btn {
          width: 300px;
          background: #61C1BE;
          color: #FFF;
          font-size: 20px;
          text-align: center;
          display: block;
          margin: 50px auto 0;
          height: 44px;
          line-height: 40px;
          border-radius: 22px;
          border: 2px solid #61C1BE;
          transition: 0.5s; }
          #content.content-business .business-set .business a.btn:hover {
            background: transparent;
            color: #61C1BE;
            border: 2px solid #61C1BE; }
          @media (max-width: 768px) {
            #content.content-business .business-set .business a.btn {
              width: 250px;
              font-size: 15px;
              margin: 20px auto 0;
              height: 40px;
              line-height: 40px;
              border-radius: 20px; } }
        #content.content-business .business-set .business ul#sns, #content.content-business .business-set .business ul.sns-list {
          padding-top: 15px;
          list-style: none; }
          #content.content-business .business-set .business ul#sns li, #content.content-business .business-set .business ul.sns-list li {
            display: inline-block;
            margin-right: 15px; }
            #content.content-business .business-set .business ul#sns li a img, #content.content-business .business-set .business ul.sns-list li a img {
              width: 32px;
              transition: 0.5s; }
              #content.content-business .business-set .business ul#sns li a img:hover, #content.content-business .business-set .business ul.sns-list li a img:hover {
                opacity: 0.8; }
        #content.content-business .business-set .business ul.sns-list {
          width: fit-content;
          margin-left: auto; }
        #content.content-business .business-set .business ul#apps {
          list-style: none;
          margin-top: 15px; }
          #content.content-business .business-set .business ul#apps li {
            display: inline-block;
            margin-right: 20px;
            height: 40px; }
            #content.content-business .business-set .business ul#apps li a img {
              height: 40px; }

#bc {
  padding: 15px 30px;
  margin-bottom: 50px;
  font-size: 14px;
  background: #eee; }
  @media (max-width: 768px) {
    #bc {
      padding: 10px 15px;
      font-size: 12px;
      margin-bottom: 25px; } }
  #bc a {
    color: #333;
    border-bottom: 1px solid #61C1BE;
    transition: 0.5s; }
    #bc a:hover {
      color: #61C1BE; }

#biz-new {
  padding: 100px 0; }
  @media (max-width: 768px) {
    #biz-new {
      padding: 30px 15px; } }
  #biz-new h2 {
    text-align: center;
    font-size: 60px; }
    @media (max-width: 768px) {
      #biz-new h2 {
        font-size: 30px;
        line-height: 1.2; } }
    #biz-new h2 span {
      font-size: 20px;
      display: block; }
      @media (max-width: 768px) {
        #biz-new h2 span {
          font-size: 14px; } }
  #biz-new #biz-new-list {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 30px; }
    @media (max-width: 768px) {
      #biz-new #biz-new-list {
        flex-direction: column;
        margin: 20px auto;
        gap: 15px; } }
    #biz-new #biz-new-list .biz-new-box {
      width: 50%;
      min-height: 400px;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      display: flex;
      align-items: flex-end;
      padding: 15px;
      transition: .5s; }
      @media (max-width: 768px) {
        #biz-new #biz-new-list .biz-new-box {
          width: 100%;
          min-height: 50vw;
          padding: 10px; } }
      #biz-new #biz-new-list .biz-new-box:hover {
        transform: translateX(-5px) translateY(-5px);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); }
      #biz-new #biz-new-list .biz-new-box:first-child {
        background-image: url("../images/home-biz-new-02.png"); }
      #biz-new #biz-new-list .biz-new-box:last-child {
        background-image: url("../images/home-biz-new-01.png"); }
      #biz-new #biz-new-list .biz-new-box div {
        background-color: rgba(255, 255, 255, 0.7);
        padding: 25px 15px;
        width: 100%;
        background-image: url("../images/biz-new-arrow.png");
        background-position: right 30px center;
        background-repeat: no-repeat;
        background-size: 20px auto; }
        @media (max-width: 768px) {
          #biz-new #biz-new-list .biz-new-box div {
            padding: 15px 10px;
            background-position: right 10px center; } }
        #biz-new #biz-new-list .biz-new-box div h3 {
          font-size: 34px;
          line-height: 1;
          margin-bottom: 20px; }
          @media (max-width: 768px) {
            #biz-new #biz-new-list .biz-new-box div h3 {
              font-size: 20px;
              margin-bottom: 10px; } }
        #biz-new #biz-new-list .biz-new-box div p {
          font-size: 23px;
          line-height: 1; }
          @media (max-width: 768px) {
            #biz-new #biz-new-list .biz-new-box div p {
              font-size: 14px; } }
          #biz-new #biz-new-list .biz-new-box div p span {
            font-size: 12px; }
            @media (max-width: 768px) {
              #biz-new #biz-new-list .biz-new-box div p span {
                font-size: 10px; } }

#logo-sub {
  width: 500px;
  margin: 0 auto; }
  @media (max-width: 768px) {
    #logo-sub {
      width: 250px;
      max-width: 70%; } }

ul.biz-link {
  padding-left: 1em; }
  ul.biz-link li a {
    border-bottom: 1px solid #61C1BE; }

.linkarea {
  cursor: pointer; }
