@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+Antique:wght@400;500&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline; }

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

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

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

.pc-only {
  display: block; }
  @media screen and (max-width: 1024px) {
    .pc-only {
      display: none; } }

.sp-only {
  display: none; }
  @media screen and (max-width: 1024px) {
    .sp-only {
      display: block; } }

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

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

.bold {
  font-weight: bold; }

.mb2 {
  margin-bottom: 2rem; }

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

html {
  font-size: 16px; }
  @media screen and (max-width: 1024px) {
    html {
      font-size: 14px; } }

body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: 0.1rem;
  line-height: 1.6;
  color: #000;
  background: #F5F7FA;
  letter-spacing: 0.1rem; }

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

a {
  text-decoration: none;
  color: inherit; }

p + * {
  margin-top: 1rem; }

sup {
  vertical-align: super;
  font-size: smaller; }

small {
  font-size: 0.8rem; }

strong {
  font-weight: 500; }

.scroll-prevent {
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.container {
  width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative; }
  @media screen and (max-width: 1024px) {
    .container {
      padding: 0 30px;
      width: 100%;
      max-width: none;
      min-width: 0; } }

.btn_wrap {
  padding: 10px 0;
  box-sizing: border-box; }
  .btn_wrap.center {
    text-align: center; }
  .btn_wrap .btn {
    position: relative;
    display: inline-block; }
    .btn_wrap .btn::before {
      content: "";
      position: absolute;
      bottom: -7px;
      left: 0;
      background: #000;
      width: 100%;
      height: 1px; }
    .btn_wrap .btn button, .btn_wrap .btn input, .btn_wrap .btn .input_btn {
      background: none;
      border: none;
      cursor: pointer; }
    .btn_wrap .btn a, .btn_wrap .btn button, .btn_wrap .btn input, .btn_wrap .btn .input_btn {
      padding-right: 50px;
      transition: color 0.6s cubic-bezier(0.23, 1, 0.32, 1); }
      .btn_wrap .btn a::before, .btn_wrap .btn button::before, .btn_wrap .btn input::before, .btn_wrap .btn .input_btn::before {
        content: "";
        display: block;
        width: 10px;
        height: 11px;
        background: url(../images/common/icon_arrow.svg) no-repeat;
        background-size: contain;
        background-position: center;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        transition: right 0.3s ease,background 0.3s ease-out;
        z-index: 1; }
      .btn_wrap .btn a::after, .btn_wrap .btn button::after, .btn_wrap .btn input::after, .btn_wrap .btn .input_btn::after {
        content: "";
        width: 30px;
        height: 30px;
        box-sizing: border-box;
        border: 1px solid #000;
        display: block;
        position: absolute;
        right: 0px;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 4px;
        transition: border 0.3s ease,background 0.3s ease-out; }
    .btn_wrap .btn .input_btn input, .btn_wrap .btn .input_btn button {
      color: #000 !important;
      transition: color 0.3s ease; }
    .btn_wrap .btn:hover::before {
      width: 100%;
      animation: btn_hover_underline 0.3s linear forwards; }
@keyframes btn_hover_underline {
  0% {
    width: 0; }
  100% {
    width: 100%;
    background: #2cc0b3; } }
    .btn_wrap .btn:hover a, .btn_wrap .btn:hover button, .btn_wrap .btn:hover input, .btn_wrap .btn:hover .input_btn {
      color: #2cc0b3; }
      .btn_wrap .btn:hover a::before, .btn_wrap .btn:hover button::before, .btn_wrap .btn:hover input::before, .btn_wrap .btn:hover .input_btn::before {
        width: 10px;
        height: 11px;
        right: 5px;
        background: url(../images/common/icon_arrow_white.svg) no-repeat;
        background-size: contain;
        background-position: center; }
      .btn_wrap .btn:hover a::after, .btn_wrap .btn:hover button::after, .btn_wrap .btn:hover input::after, .btn_wrap .btn:hover .input_btn::after {
        background: #2cc0b3;
        border: #2cc0b3; }
    .btn_wrap .btn:hover .input_btn input, .btn_wrap .btn:hover .input_btn button {
      color: #2cc0b3 !important; }
  .btn_wrap .btn_map {
    position: relative;
    display: inline-block;
    text-align: center; }
    .btn_wrap .btn_map a {
      box-sizing: border-box;
      padding: 0.2rem 1rem;
      border: 1px solid #000;
      min-width: 250px;
      display: block;
      background: rgba(44, 192, 179, 0);
      transition: border 0.3s ease,background 0.3s ease,color 0.3s ease-out; }
      .btn_wrap .btn_map a::before {
        content: "";
        display: block;
        width: 10px;
        height: 10px;
        background: url(../images/common/icon_blank.svg) no-repeat;
        background-size: contain;
        background-position: center;
        position: absolute;
        right: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
        transition: background 0.3s ease-out;
        z-index: 1; }
      .btn_wrap .btn_map a:hover {
        background: #2cc0b3;
        border: 1px solid #2cc0b3;
        color: #fff; }
        .btn_wrap .btn_map a:hover::before {
          background: url(../images/common/icon_blank_white.svg) no-repeat;
          background-size: contain;
          background-position: center; }
  .btn_wrap .btn_cv {
    position: relative;
    display: inline-block; }
    .btn_wrap .btn_cv a {
      color: #fff;
      display: flex;
      align-items: center;
      gap: 2rem;
      background: #2cc0b3;
      padding: 1rem 8rem 1rem 4rem;
      transition: background 0.3s ease-out; }
      @media screen and (max-width: 1024px) {
        .btn_wrap .btn_cv a {
          flex-wrap: wrap; } }
      .btn_wrap .btn_cv a span {
        font-family: "Roboto Condensed", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        font-feature-settings: "palt";
        letter-spacing: -0.2rem;
        font-size: 4rem;
        font-weight: 600; }
        @media screen and (max-width: 1024px) {
          .btn_wrap .btn_cv a span {
            display: block; } }
      .btn_wrap .btn_cv a::before {
        content: "";
        display: block;
        width: 20px;
        height: 22px;
        background: url(../images/common/icon_arrow_white.svg) no-repeat;
        background-size: contain;
        background-position: center;
        position: absolute;
        right: 3rem;
        top: 50%;
        transform: translateY(-50%);
        transition: right 0.3s ease,background 0.3s ease-out;
        z-index: 1; }
      .btn_wrap .btn_cv a::after {
        content: "";
        width: 50px;
        height: 50px;
        box-sizing: border-box;
        border: 1px solid #fff;
        display: block;
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 50%;
        transition: opacity 0.3s ease,background 0.3s ease-out; }
    .btn_wrap .btn_cv:hover a {
      background: rgba(44, 192, 179, 0.8); }
      .btn_wrap .btn_cv:hover a::before {
        right: 1.8rem; }
      .btn_wrap .btn_cv:hover a::after {
        opacity: 0; }

header {
  background: rgba(245, 247, 250, 0.3);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 24px 0;
  backdrop-filter: blur(3px); }
  header .logo {
    text-align: center;
    margin: auto;
    width: 200px; }
    @media screen and (max-width: 1024px) {
      header .logo {
        text-align: left;
        margin: 0;
        width: 170px;
        padding-left: 1rem; } }
    header .logo a svg {
      width: 200px; }
      @media screen and (max-width: 1024px) {
        header .logo a svg {
          width: 170px; } }
      header .logo a svg path {
        fill: #000000; }
  header .global-nav {
    width: 100%;
    position: fixed;
    top: 80px;
    left: 0;
    bottom: auto;
    opacity: 0;
    height: calc(100svh - 80px);
    overflow-y: scroll;
    pointer-events: none; }
    header .global-nav > ul {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      width: 100%;
      flex-direction: column;
      justify-content: center; }
      @media screen and (max-width: 767px) {
        header .global-nav > ul {
          flex-wrap: wrap; } }
      header .global-nav > ul > li {
        width: 100%;
        position: relative;
        border-bottom: 1px solid #fff; }
        @media screen and (max-width: 767px) {
          header .global-nav > ul > li {
            width: 100%;
            max-width: none;
            min-width: auto; } }
        header .global-nav > ul > li > a {
          text-align: center;
          display: block;
          font-size: 1.2rem;
          font-weight: 500;
          padding: 35px 0;
          position: relative;
          transition: color 0.6s cubic-bezier(0.23, 1, 0.32, 1);
          color: #fff; }
          header .global-nav > ul > li > a span {
            font-family: "Roboto Condensed", sans-serif;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
            font-feature-settings: "palt";
            letter-spacing: -0.2rem;
            font-weight: 600;
            font-size: 3rem;
            display: block; }
  header .btn_menu {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 90px;
    height: 80px;
    z-index: 9999;
    transition: all 0.2s ease-out;
    padding: 25px;
    opacity: 1;
    pointer-events: auto;
    cursor: pointer; }
    @media screen and (max-width: 767px) {
      header .btn_menu {
        display: block; } }
    header .btn_menu::before {
      content: " ";
      width: 90px;
      height: 80px;
      position: absolute;
      right: 0px;
      top: 0px;
      background: rgba(176, 147, 195, 0);
      transition: all 0.2s ease-out;
      z-index: -1; }
    header .btn_menu span {
      display: block;
      background: black;
      width: 100%;
      height: 2px;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      -moz-transition: all 0.2s ease-out;
      -webkit-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out;
      margin: auto;
      margin-top: 14px; }
      header .btn_menu span::before {
        content: '';
        position: absolute;
        width: 40px;
        height: 2px;
        background: black;
        top: 27px;
        right: 25px;
        -moz-transition: all 0.2s ease-out;
        -webkit-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out; }
      header .btn_menu span::after {
        content: '';
        position: absolute;
        width: 40px;
        height: 2px;
        background: black;
        bottom: 27px;
        right: 25px;
        -moz-transition: all 0.2s ease-out;
        -webkit-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out; }
  header .btn_contact {
    display: block;
    position: absolute;
    top: 0px;
    right: 90px;
    width: 90px;
    height: 80px;
    z-index: 9999;
    transition: all 0.2s ease-out;
    padding: 25px;
    opacity: 1;
    pointer-events: auto; }
    @media screen and (max-width: 767px) {
      header .btn_contact {
        display: block; } }
  header.active .btn_menu {
    background: #000; }
    header.active .btn_menu span {
      background: none !important; }
      header.active .btn_menu span::before {
        -moz-transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
        top: 38px;
        right: 24px;
        background: #fff !important; }
      header.active .btn_menu span::after {
        -moz-transform: rotate(135deg);
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
        bottom: 40px;
        right: 24px;
        background: #fff !important; }
  header.active nav {
    opacity: 1;
    pointer-events: visible;
    background: rgba(43, 193, 179, 0.9);
    overscroll-behavior: contain;
    backdrop-filter: blur(3px); }
    header.active nav > ul > li ul {
      opacity: 1 !important;
      pointer-events: visible !important;
      position: static;
      width: 100% !important; }

main .overlay-bg {
  background-image: url("../images/common/bg.svg");
  background-size: auto;
  background-position: center;
  background-attachment: fixed;
  background-repeat: repeat;
  position: fixed;
  width: 100%;
  height: 100svh;
  mix-blend-mode: multiply;
  opacity: 0.02;
  pointer-events: none;
  z-index: 9999; }
main section {
  padding: 10rem 0; }
  @media screen and (max-width: 1024px) {
    main section {
      padding: 5rem 0; } }
  main section.bg_grey {
    background: #F0F1F5; }
main section + section {
  padding-top: 0; }
main section + section.bg_grey,
main section.bg_grey + section {
  padding-top: 10rem; }
  @media screen and (max-width: 1024px) {
    main section + section.bg_grey,
    main section.bg_grey + section {
      padding-top: 5rem; } }
main .image {
  border-radius: 8px;
  overflow: hidden;
  line-height: 0; }

footer {
  border-top: 1px solid #aaa;
  background: #F5F7FA;
  padding: 0; }
  footer #contact {
    background: url(../images/top/contact_bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    position: relative; }
    footer #contact::before {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      background: rgba(0, 0, 0, 0.5);
      transition: background 0.3s ease-out; }
    footer #contact a {
      display: block; }
      footer #contact a .container .two-column {
        padding: 7rem 0;
        display: flex;
        align-items: center; }
        @media screen and (max-width: 1024px) {
          footer #contact a .container .two-column {
            flex-direction: column; } }
        footer #contact a .container .two-column .left {
          width: 50%;
          position: relative; }
          @media screen and (max-width: 1024px) {
            footer #contact a .container .two-column .left {
              width: 100%; } }
          footer #contact a .container .two-column .left p {
            color: #fff; }
        footer #contact a .container .two-column .right {
          width: 50%;
          position: relative;
          border-left: 1px dotted #fff;
          padding: 3rem 12rem; }
          @media screen and (max-width: 1024px) {
            footer #contact a .container .two-column .right {
              width: 100%;
              padding: 0;
              border: none;
              padding-left: 6rem; } }
          footer #contact a .container .two-column .right::before {
            content: "";
            display: block;
            width: 20px;
            height: 22px;
            background: url(../images/common/icon_arrow_white.svg) no-repeat;
            background-size: contain;
            background-position: center;
            position: absolute;
            left: 5rem;
            top: 50%;
            transform: translateY(-50%);
            transition: right 0.3s ease,background 0.3s ease-out;
            z-index: 1; }
            @media screen and (max-width: 1024px) {
              footer #contact a .container .two-column .right::before {
                left: 2rem; } }
          footer #contact a .container .two-column .right::after {
            content: "";
            width: 50px;
            height: 50px;
            box-sizing: border-box;
            border: 1px solid #fff;
            display: block;
            position: absolute;
            left: 4rem;
            top: 50%;
            transform: translateY(-50%);
            border-radius: 50%;
            transition: border 0.3s ease,background 0.3s ease-out; }
            @media screen and (max-width: 1024px) {
              footer #contact a .container .two-column .right::after {
                left: 1rem; } }
          footer #contact a .container .two-column .right p:nth-child(1) {
            font-family: "Roboto Condensed", sans-serif;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
            font-feature-settings: "palt";
            letter-spacing: -0.2rem;
            font-weight: 600;
            font-size: 4rem;
            color: #fff; }
          footer #contact a .container .two-column .right p:nth-child(2) {
            color: #fff; }
    footer #contact:hover::before {
      background: rgba(44, 192, 179, 0.8); }
  footer #info {
    text-align: center;
    padding-top: 4rem; }
    footer #info p {
      font-size: 0.9rem; }

@keyframes zoom {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(1.1); } }
@keyframes underline {
  0% {
    width: 0%; }
  100% {
    width: 100%; } }
header {
  border-bottom: 1px solid #aaa; }

main {
  /*title START*/
  /*title END*/
  /* モーダル共通 */ }
  main section.line {
    position: relative;
    padding-top: 2rem; }
    main section.line::before {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 0%;
      height: 1px;
      background: #aaa;
      transition: width 1.0s 1.0s ease-out; }
  main h2 {
    font-size: 2rem;
    margin-bottom: 5rem; }
    main h2.line {
      position: relative;
      padding-top: 2rem; }
      main h2.line::before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 1px;
        background: #aaa;
        transition: width 1.0s 1.0s ease-out; }
      main h2.line::after {
        content: "";
        display: block;
        position: absolute;
        top: 4px;
        left: 0;
        width: 0%;
        height: 1px;
        background: #aaa;
        transition: width 1.0s 1.0s ease-out; }
  main h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem; }
  main .inner {
    margin: 5rem 0;
    box-sizing: border-box;
    padding-left: 2rem;
    position: relative; }
    main .inner::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      display: block;
      width: 1px;
      height: 0%;
      background: #aaa;
      transition: height 1.0s 1.0s ease-out; }
    main .inner.reverse {
      padding-left: 0;
      padding-right: 2rem; }
      main .inner.reverse::before {
        left: auto;
        right: 0; }
  main .table-list > ul > li {
    margin-bottom: 4rem; }
    main .table-list > ul > li:last-child {
      margin-bottom: 0; }
    main .table-list > ul > li > ul {
      display: flex;
      gap: 5%; }
      @media screen and (max-width: 1024px) {
        main .table-list > ul > li > ul {
          flex-wrap: wrap; } }
      main .table-list > ul > li > ul > li:nth-child(1) {
        width: 25%;
        font-weight: bold; }
        @media screen and (max-width: 1024px) {
          main .table-list > ul > li > ul > li:nth-child(1) {
            width: 100%;
            margin-bottom: 1rem; } }
      main .table-list > ul > li > ul > li:nth-child(2) {
        width: 70%; }
        @media screen and (max-width: 1024px) {
          main .table-list > ul > li > ul > li:nth-child(2) {
            width: 100%; } }
  main .disc {
    list-style-type: disc; }
    main .disc li {
      margin-left: 1rem;
      box-sizing: border-box;
      margin-bottom: 1rem; }
  main .rayout {
    display: flex;
    gap: 4%; }
    @media screen and (max-width: 1024px) {
      main .rayout {
        gap: 0;
        flex-wrap: wrap; } }
    main .rayout > .left {
      width: 48%; }
      @media screen and (max-width: 1024px) {
        main .rayout > .left {
          width: 100%;
          margin-bottom: 3rem; } }
    main .rayout > .right {
      width: 48%; }
      @media screen and (max-width: 1024px) {
        main .rayout > .right {
          width: 100%; } }
    main .rayout.l3-r7 .left {
      width: 28%; }
      @media screen and (max-width: 1024px) {
        main .rayout.l3-r7 .left {
          width: 100%; } }
    main .rayout.l3-r7 .right {
      width: 68%; }
      @media screen and (max-width: 1024px) {
        main .rayout.l3-r7 .right {
          width: 100%; } }
    main .rayout.l1-r9 .left {
      width: 8%; }
      @media screen and (max-width: 1024px) {
        main .rayout.l1-r9 .left {
          width: 100%; } }
    main .rayout.l1-r9 .right {
      width: 88%; }
      @media screen and (max-width: 1024px) {
        main .rayout.l1-r9 .right {
          width: 100%; } }
    main .rayout.center {
      align-items: center; }
    main .rayout.reverse .left {
      order: 2; }
      @media screen and (max-width: 1024px) {
        main .rayout.reverse .left {
          order: 1; } }
    main .rayout.reverse .right {
      order: 1; }
      @media screen and (max-width: 1024px) {
        main .rayout.reverse .right {
          order: 2; } }
    main .rayout.col3 {
      gap: 2%; }
      @media screen and (max-width: 1024px) {
        main .rayout.col3 {
          gap: 0; } }
      main .rayout.col3 > div {
        width: 32.3333%; }
        @media screen and (max-width: 1024px) {
          main .rayout.col3 > div {
            width: 100%;
            margin-bottom: 5rem; } }
      main .rayout.col3.border {
        gap: 0; }
        main .rayout.col3.border > div {
          width: 33.3333%;
          box-sizing: border-box;
          position: relative;
          padding: 0 1.5rem; }
          @media screen and (max-width: 1024px) {
            main .rayout.col3.border > div {
              width: 100%;
              padding: 2rem 0; } }
          main .rayout.col3.border > div::before {
            content: "";
            display: block;
            width: 1px;
            height: 100%;
            background: #aaa;
            position: absolute;
            top: 0;
            left: 0; }
            @media screen and (max-width: 1024px) {
              main .rayout.col3.border > div::before {
                width: 100%;
                height: 1px; } }
          main .rayout.col3.border > div:last-child::after {
            content: "";
            display: block;
            width: 1px;
            height: 100%;
            background: #aaa;
            position: absolute;
            top: 0;
            right: 0; }
            @media screen and (max-width: 1024px) {
              main .rayout.col3.border > div:last-child::after {
                width: 100%;
                height: 1px;
                top: auto;
                right: auto;
                left: 0;
                bottom: 0; } }
    main .rayout.col4 {
      gap: 2%; }
      main .rayout.col4 > div {
        width: 25%; }
        @media screen and (max-width: 1024px) {
          main .rayout.col4 > div {
            width: 49%;
            margin-bottom: 2rem; } }
  main .list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1%; }
    @media screen and (max-width: 1024px) {
      main .list ul {
        gap: 2%; } }
    main .list ul li {
      width: 24%; }
      @media screen and (max-width: 1024px) {
        main .list ul li {
          width: 49%; } }
      main .list ul li .image {
        border-radius: 8px;
        overflow: hidden;
        line-height: 0;
        aspect-ratio: 1 / 1; }
        main .list ul li .image picture, main .list ul li .image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center;
          display: block;
          transform-origin: center;
          transition: transform 0.3s ease-out; }
      main .list ul li p {
        text-align: center;
        font-weight: 500;
        padding: 10px 0;
        transition: color 0.3s ease-out; }
      main .list ul li:hover .image picture, main .list ul li:hover .image img {
        transform: scale(1.2); }
      main .list ul li:hover p {
        color: #2cc0b3; }
      main .list ul li.works {
        width: 32.3333%; }
        @media screen and (max-width: 1024px) {
          main .list ul li.works {
            width: 31.3333%; } }
  main .text-icon {
    display: inline-block;
    padding: 0.1rem 0.5rem;
    color: #fff;
    border-radius: 4px;
    margin-left: 1rem;
    font-size: 0.8rem; }
    main .text-icon.dust {
      background: #5CA36F; }
    main .text-icon.pra {
      background: #5C77A3; }
    main .text-icon.required {
      background: #FF1249; }
  main .fade-in {
    opacity: 0;
    transition: opacity 0.5s ease,filter 0.5s ease-out;
    filter: blur(20px); }
  main .fade-in.active {
    opacity: 1;
    filter: blur(0px); }
    main .fade-in.active.title::before {
      width: 100%; }
    main .fade-in.active.title::after {
      width: 100%; }
    main .fade-in.active.line {
      padding-top: 10rem; }
      @media screen and (max-width: 1024px) {
        main .fade-in.active.line {
          padding-top: 5rem; } }
      main .fade-in.active.line::before {
        width: 100%; }
    main .fade-in.active h2.line::before {
      width: 100%; }
    main .fade-in.active h2.line::after {
      width: 100%; }
    main .fade-in.active .inner::before {
      height: 100%; }
    main .fade-in.active .list + h3 {
      margin-top: 5rem; }
  main .title {
    padding-top: 200px;
    text-align: center; }
    main .title .circle {
      opacity: 1;
      animation: spin 5s linear infinite;
      transform-origin: center;
      display: inline-block;
      text-align: center;
      margin-left: auto;
      /* 回転（ずっと回る） */ }
@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
    main .title .ttl p {
      text-align: center;
      display: block;
      font-family: "Roboto Condensed", sans-serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
      font-feature-settings: "palt";
      letter-spacing: -0.2rem;
      font-size: 8rem;
      font-weight: 600;
      line-height: normal; }
      @media screen and (max-width: 1024px) {
        main .title .ttl p {
          font-size: 4rem; } }
    main .title .ttl h1 {
      text-align: center;
      margin-bottom: 60px;
      line-height: normal;
      margin-top: 0;
      font-size: 1.4rem; }
    @media screen and (max-width: 1024px) {
      main .title .ttl.p2 {
        padding-top: 5rem; } }
    main .title .ttl.p2 p {
      text-align: center;
      font-family: "Zen Kaku Gothic Antique", sans-serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
      font-feature-settings: "palt";
      letter-spacing: 0.1rem;
      font-size: 1rem; }
    main .title .ttl.p2 h1 {
      text-align: center;
      display: block;
      font-size: 3rem; }
    main .title .message p {
      text-align: center;
      font-weight: bold;
      font-size: 1.8rem; }
      main .title .message p:nth-child(2) {
        line-height: 1.0;
        font-size: 1.3rem; }
    main .title .mv-swiper {
      width: 100%;
      overflow: hidden; }
      main .title .mv-swiper .swiper-wrapper {
        transition-timing-function: linear !important; }
      main .title .mv-swiper .swiper-slide {
        width: 25% !important;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center; }
        main .title .mv-swiper .swiper-slide img {
          width: 100% !important;
          height: auto;
          object-fit: cover;
          display: block; }
    main .title.line {
      position: relative;
      padding-bottom: 2rem; }
      main .title.line::before {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 1px;
        background: #aaa;
        transition: width 1.0s 1.0s ease-out; }
      main .title.line::after {
        content: "";
        display: block;
        position: absolute;
        bottom: 4px;
        left: 0;
        width: 0%;
        height: 1px;
        background: #aaa;
        transition: width 1.0s 1.0s ease-out; }
  @media screen and (max-width: 1024px) {
    main #product_detail {
      padding-top: 10rem; } }
  main #product_detail .viewer {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 5rem; }
    main #product_detail .viewer .main-slider {
      width: 100%;
      margin-bottom: 1rem;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      background: #000;
      border-radius: 8px; }
      main #product_detail .viewer .main-slider .swiper-slide {
        background: #000; }
        main #product_detail .viewer .main-slider .swiper-slide picture, main #product_detail .viewer .main-slider .swiper-slide img {
          width: 100%;
          height: 100%;
          display: block;
          object-fit: contain; }
    main #product_detail .viewer .thumb-list {
      display: flex;
      flex-wrap: wrap;
      gap: 6px; }
      @media screen and (max-width: 1024px) {
        main #product_detail .viewer .thumb-list {
          gap: 1%; } }
      main #product_detail .viewer .thumb-list .thumb {
        width: calc(12.5% - 6px);
        cursor: pointer;
        background: #2cc0b3;
        border-radius: 4px;
        aspect-ratio: 1 / 1;
        overflow: hidden; }
        @media screen and (max-width: 1024px) {
          main #product_detail .viewer .thumb-list .thumb {
            width: 32.3333%;
            margin-bottom: 1%; } }
        main #product_detail .viewer .thumb-list .thumb picture, main #product_detail .viewer .thumb-list .thumb img {
          width: 100%;
          height: 100%;
          display: block;
          border-radius: 4px;
          opacity: 1.0;
          object-fit: cover;
          object-position: center;
          transition: opacity 0.3s ease-out; }
        main #product_detail .viewer .thumb-list .thumb.active picture, main #product_detail .viewer .thumb-list .thumb.active img {
          opacity: 0.5; }
  main #product_detail .movie h2 {
    font-size: 1.2rem; }
    @media screen and (max-width: 1024px) {
      main #product_detail .movie h2 {
        margin-bottom: 2rem; } }
  main #product_detail .movie video {
    width: 100%; }
  main #product_detail .block {
    margin-bottom: 2rem; }
    main #product_detail .block p:first-child {
      font-size: 1.2rem; }
    main #product_detail .block p:last-child {
      margin-top: 0; }
    main #product_detail .block h1 {
      margin-top: 0;
      font-size: 3rem; }
      @media screen and (max-width: 1024px) {
        main #product_detail .block h1 {
          font-size: 2rem; } }
  main #company_message {
    padding-top: 0; }
  main #company_value .rayout {
    display: block;
    margin-top: 5rem; }
    main #company_value .rayout ul {
      display: flex; }
      @media screen and (max-width: 1024px) {
        main #company_value .rayout ul {
          flex-wrap: wrap; } }
      main #company_value .rayout ul li {
        width: 25%;
        box-sizing: border-box;
        position: relative;
        padding: 2rem; }
        @media screen and (max-width: 1024px) {
          main #company_value .rayout ul li {
            width: 100%;
            padding: 2rem 0; } }
        main #company_value .rayout ul li::before {
          content: "";
          display: block;
          width: 1px;
          height: 100%;
          background: #aaa;
          position: absolute;
          left: 0;
          top: 0; }
          @media screen and (max-width: 1024px) {
            main #company_value .rayout ul li::before {
              width: 100%;
              height: 1px; } }
        main #company_value .rayout ul li:last-child::after {
          content: "";
          display: block;
          width: 1px;
          height: 100%;
          background: #aaa;
          position: absolute;
          right: 0;
          top: 0; }
          @media screen and (max-width: 1024px) {
            main #company_value .rayout ul li:last-child::after {
              width: 100%;
              height: 1px;
              top: auto;
              right: auto;
              left: 0;
              bottom: 0; } }
        main #company_value .rayout ul li p:first-child {
          font-weight: bold;
          font-size: 1.3rem;
          text-align: center;
          margin-bottom: 3rem; }
          @media screen and (max-width: 1024px) {
            main #company_value .rayout ul li p:first-child {
              margin-bottom: 1rem; } }
  main #company_progress .progress > ul {
    position: relative;
    /*
    &::before{
    	content:"";
    	display:block;
    	height:0%;
    	width:1px;
    	background:#aaa;
    	position:absolute;
    	left:5%;
    	top:0;
    	z-index: -1;
    	transition:height 3.0s 1.0s ease-out;
    }
    */ }
    main #company_progress .progress > ul > li > ul {
      display: flex;
      align-items: center; }
      @media screen and (max-width: 1024px) {
        main #company_progress .progress > ul > li > ul {
          flex-wrap: wrap; } }
      main #company_progress .progress > ul > li > ul::before {
        content: "";
        display: block;
        height: 0%;
        width: 1px;
        background: #aaa;
        position: absolute;
        left: 5%;
        top: 0;
        z-index: -1;
        transition: height 0.5s 1.0s ease-out; }
        @media screen and (max-width: 1024px) {
          main #company_progress .progress > ul > li > ul::before {
            display: none; } }
      main #company_progress .progress > ul > li > ul > li {
        position: relative; }
        main #company_progress .progress > ul > li > ul > li:nth-child(1) {
          width: 10%;
          text-align: center; }
          @media screen and (max-width: 1024px) {
            main #company_progress .progress > ul > li > ul > li:nth-child(1) {
              width: 100%;
              margin-top: 6rem; } }
          main #company_progress .progress > ul > li > ul > li:nth-child(1) p {
            font-family: "Roboto Condensed", sans-serif;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
            font-feature-settings: "palt";
            letter-spacing: -0.2rem;
            font-weight: 600;
            font-size: 3rem;
            color: #fff; }
            main #company_progress .progress > ul > li > ul > li:nth-child(1) p::before {
              content: "";
              background: #2BC1B3;
              display: block;
              width: 100px;
              height: 100px;
              position: absolute;
              left: 50%;
              top: 50%;
              transform: translate(-50%, -50%);
              z-index: -1;
              border-radius: 50%; }
        main #company_progress .progress > ul > li > ul > li:nth-child(2) {
          width: 10%; }
          @media screen and (max-width: 1024px) {
            main #company_progress .progress > ul > li > ul > li:nth-child(2) {
              display: none; } }
          main #company_progress .progress > ul > li > ul > li:nth-child(2) .dot {
            width: 100%;
            height: 5px;
            display: block;
            background-image: radial-gradient(circle, #aaa 2.5px, transparent 2.5px);
            background-position: left top;
            background-repeat: repeat-x;
            background-size: 25px 5px; }
        main #company_progress .progress > ul > li > ul > li:nth-child(3) {
          width: 30%;
          box-sizing: border-box;
          padding: 2rem; }
          @media screen and (max-width: 1024px) {
            main #company_progress .progress > ul > li > ul > li:nth-child(3) {
              width: 100%;
              padding: 2rem 0; } }
          main #company_progress .progress > ul > li > ul > li:nth-child(3) p {
            text-align: center;
            font-weight: bold; }
        main #company_progress .progress > ul > li > ul > li:nth-child(4) {
          width: 50%; }
          @media screen and (max-width: 1024px) {
            main #company_progress .progress > ul > li > ul > li:nth-child(4) {
              width: 100%; } }
    main #company_progress .progress > ul > li.active > ul::before {
      height: 100%; }
    main #company_progress .progress > ul > li.active:last-child > ul::before {
      height: 50%; }
  main #sdgs_tr-400 .contents .inner {
    margin-bottom: 0; }
  @media screen and (max-width: 1024px) {
    main #sdgs_tr-400 .contents .left {
      order: 2;
      margin-bottom: 0; } }
  main #sdgs_tr-400 .contents .left .ttl h3 {
    margin-top: 0;
    font-size: 2rem; }
  main #sdgs_tr-400 .contents .left h4 {
    margin-top: 4rem;
    margin-bottom: 1.5rem; }
  main #sdgs_tr-400 .contents .left .rayout div .image {
    margin-bottom: 1rem; }
  main #sdgs_tr-400 .contents .left .rayout div p:first-child {
    text-align: center;
    font-weight: bold; }
  main #sdgs_tr-400 .contents .left .rayout div p:last-child {
    font-size: 0.7rem; }
  @media screen and (max-width: 1024px) {
    main #sdgs_tr-400 .contents .right {
      order: 1;
      margin-bottom: 5rem; } }
  main #sdgs_tr-400 .contents .right .image {
    text-align: center; }
    main #sdgs_tr-400 .contents .right .image picture, main #sdgs_tr-400 .contents .right .image img {
      max-height: 660px; }
  main #sdgs_sec2 .rayout div h2 {
    text-align: center;
    margin-bottom: 5rem; }
    @media screen and (max-width: 1024px) {
      main #sdgs_sec2 .rayout div h2 {
        margin-bottom: 3rem; } }
  main #sdgs_sec2 .rayout div .image {
    margin-bottom: 1rem; }
  main #sdgs_sec2 .rayout div ul li {
    padding-left: 2rem;
    position: relative; }
    main #sdgs_sec2 .rayout div ul li::before {
      display: block;
      font-family: "Roboto Condensed", sans-serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
      font-feature-settings: "palt";
      letter-spacing: -0.2rem;
      font-weight: 600;
      position: absolute;
      left: 6px;
      top: 2px;
      color: #fff; }
    main #sdgs_sec2 .rayout div ul li::after {
      content: "";
      display: block;
      width: 20px;
      height: 20px;
      background: #2BC1B3;
      border-radius: 50%;
      position: absolute;
      left: 0;
      top: 4px;
      z-index: -1; }
    main #sdgs_sec2 .rayout div ul li:nth-child(1)::before {
      content: "1"; }
    main #sdgs_sec2 .rayout div ul li:nth-child(2)::before {
      content: "2"; }
    main #sdgs_sec2 .rayout div ul li:nth-child(3)::before {
      content: "3"; }
  main #sdgs_sec3 h2 {
    text-align: center;
    margin-bottom: 0; }
  main #sdgs_sec3 .patents {
    text-align: center;
    margin-bottom: 5rem; }
    @media screen and (max-width: 1024px) {
      main #sdgs_sec3 .patents {
        margin-bottom: 3rem; } }
    main #sdgs_sec3 .patents span {
      display: inline-block;
      background: #CCCCCC;
      padding: 0.2rem 1rem; }
  main #sdgs_sec3 .image {
    margin-bottom: 1rem; }
  main #sdgs_sec3 ul li {
    padding-left: 2rem;
    position: relative; }
    main #sdgs_sec3 ul li::before {
      display: block;
      font-family: "Roboto Condensed", sans-serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
      font-feature-settings: "palt";
      letter-spacing: -0.2rem;
      font-weight: 600;
      position: absolute;
      left: 6px;
      top: 2px;
      color: #fff; }
    main #sdgs_sec3 ul li::after {
      content: "";
      display: block;
      width: 20px;
      height: 20px;
      background: #2BC1B3;
      border-radius: 50%;
      position: absolute;
      left: 0;
      top: 4px;
      z-index: -1; }
    main #sdgs_sec3 ul li:nth-child(1)::before {
      content: "1"; }
  main #sdgs_sec4 .rayout {
    margin-bottom: 5rem; }
  main #sdgs_sec4 .image {
    margin-bottom: 1rem; }
  main #sdgs_etc .message {
    margin-bottom: 5rem; }
    main #sdgs_etc .message p {
      font-size: 1.4rem;
      font-weight: bold; }
  main #recruit_fun ul li {
    margin-bottom: 3rem; }
  main #recruit_department ul li {
    margin-bottom: 3rem; }
    @media screen and (max-width: 1024px) {
      main #recruit_department ul li .left {
        margin-bottom: 0rem; } }
    @media screen and (max-width: 1024px) {
      main #recruit_department ul li .left .image {
        max-width: 150px;
        margin: auto; } }
  main #recruit_application .inner {
    margin-bottom: 10rem; }
  main .mw_wp_form_input .form_input {
    display: block; }
  main .mw_wp_form_input .form_confirm {
    display: none; }
  main .mw_wp_form_confirm .form_input {
    display: none; }
  main .mw_wp_form_confirm .form_confirm {
    display: block; }
  main form #contact_form .table-list {
    margin: 10rem 0; }
  main form #contact_form ul li p small {
    font-weight: normal; }
  main form #contact_form ul li input[type=text], main form #contact_form ul li input[type=email], main form #contact_form ul li select, main form #contact_form ul li textarea {
    width: 100%;
    border-radius: 4px;
    padding: 0.5rem;
    border: 1px solid #aaa;
    font-size: 1.2rem; }
  main form #contact_form ul li input[type=file] {
    display: block;
    margin-bottom: 1rem; }
  main form #contact_form ul li .mwform-zip-field input[type=text],
  main form #contact_form ul li .mwform-tel-field input[type=text] {
    width: auto; }
  main form #contact_form ul li .mwform-file-delete {
    display: none; }
  main .wp-block-table td, main .wp-block-table th {
    border: none; }
  main #contact_faq .inner > ul > li {
    border-bottom: 1px solid #aaa;
    padding-bottom: 3rem;
    margin-bottom: 3rem; }
    main #contact_faq .inner > ul > li ul li {
      padding-left: 3rem;
      box-sizing: border-box; }
      main #contact_faq .inner > ul > li ul li.question {
        font-size: 1.4rem;
        font-weight: bold;
        position: relative;
        font-weight: bold;
        cursor: pointer;
        padding-right: 24px; }
        main #contact_faq .inner > ul > li ul li.question::before {
          content: "";
          position: absolute;
          left: 0;
          top: 3px;
          background: url(../images/contact/icon_q.svg) no-repeat;
          background-size: contain;
          background-position: center;
          width: 30px;
          height: 30px; }
        main #contact_faq .inner > ul > li ul li.question::after {
          content: "";
          position: absolute;
          right: 0;
          top: 0;
          line-height: 1;
          transition: transform 0.3s ease;
          background: url(../images/contact/icon_arrow.svg) no-repeat;
          background-size: contain;
          background-position: center;
          width: 30px;
          height: 30px;
          transform: rotate(180deg); }
        main #contact_faq .inner > ul > li ul li.question.active::after {
          content: "";
          transform: rotate(360deg); }
      main #contact_faq .inner > ul > li ul li.answer {
        display: none;
        padding-top: 8px;
        color: #333;
        line-height: 1.6;
        position: relative; }
        main #contact_faq .inner > ul > li ul li.answer::before {
          content: "";
          position: absolute;
          left: 0;
          top: 5px;
          background: url(../images/contact/icon_a.svg) no-repeat;
          background-size: contain;
          background-position: center;
          width: 30px;
          height: 30px; }
  main .modal {
    display: flex;
    position: fixed;
    z-index: 9998;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease-out; }
    main .modal.active {
      opacity: 1;
      visibility: visible; }
    main .modal-content {
      background: #fff;
      padding: 20px;
      max-width: 600px;
      width: 90%;
      border-radius: 8px;
      position: relative; }
      main .modal-content #modalBody .modal-inner .ttl {
        font-size: 2rem; }
      main .modal-content #modalBody .modal-inner .image {
        width: 100%;
        margin-bottom: 1rem;
        aspect-ratio: 1 / 1;
        overflow: hidden;
        background: #000;
        border-radius: 8px; }
        main .modal-content #modalBody .modal-inner .image picture, main .modal-content #modalBody .modal-inner .image img {
          width: 100%;
          height: 100%;
          display: block;
          object-fit: contain; }
    main .modal-close {
      position: absolute;
      top: 10px;
      right: 10px;
      cursor: pointer;
      font-size: 20px;
      font-weight: bold; }

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