@charset "UTF-8";
/***************************

foundation/base.scss

***************************/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word; }

html {
  /*overflow:auto;*/
  font-size: 12px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  overflow-x: hidden;
  font-size: 16px;
  color: #444D51;
  font-family: "Zen Kaku Gothic New", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 2.25;
  letter-spacing: .125rem;
  width: 100%;
  animation: fadein 2s ease 0s 1 normal; }

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -ms-transition: 1s; }

a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.75; }

a:active,
a:hover {
  outline-width: 0; }

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none; }

p {
  margin: 0; }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left; }

dl,
dt,
dd {
  margin: 0;
  padding: 0; }

figure {
  margin: 0; }

figcaption,
figure,
main {
  display: block; }

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

pre {
  font-family: monospace, monospace;
  font-size: 1em; }

b,
strong {
  font-weight: bolder; }

small {
  font-size: 80%; }

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle; }

input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0; }

button,
input {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: none; }

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

textarea {
  overflow: auto; }

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0; }

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit; }

[hidden] {
  display: none; }

address {
  font-style: normal; }

figure {
  margin: 0; }

table {
  border-collapse: collapse; }

.wrapper {
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 5%; }

@keyframes fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
 /***************************

layout/_header.scss

***************************/
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  height: 110px;
  padding: 0 48px 0 45px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  transition: .3s; }
  header #rectangle_12,
  header #path_5 {
    transition: .3s; }
  @media screen and (min-width: 769px) {
    header.is-top:not(.is-show) {
      color: #fff; }
      header.is-top:not(.is-show) .header__nav__item-contact a {
        border-color: #fff;
        color: #fff; }
      header.is-top:not(.is-show) #rectangle_12,
      header.is-top:not(.is-show) #path_5 {
        stroke: #fff; }
    header.is-show {
      background: #fff;
      height: 85px; } }
  header a {
    transition: .3s; }

.header__nav__item-contact a {
  border: 1px solid #DCE0E4;
  border-radius: 999px;
  width: 80px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center; }

@media screen and (min-width: 769px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px; }

  .header__nav__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto; } }
@media screen and (max-width: 1100px) {
  header {
    padding: 0 20px; }

  .header__nav {
    gap: 15px; } }
@media screen and (max-width: 768px) {
  header {
    height: 75px;
    background: #fff; }

  .header__nav__item {
    margin-bottom: 15px; }

  .header__nav__item-contact a {
    width: 100%; } }
.header__nav__item-contact-sp__item {
  display: none; }
  @media screen and (max-width: 768px) {
    .header__nav__item-contact-sp__item {
      display: block;
      margin-left: 10px; } }

/* Hamburger menu */
.gnav {
  line-height: 1.6;
  margin: 0; }

/* toggle button */
.header__toggleBtn {
  cursor: pointer;
  display: inline-block;
  background: none;
  border: none;
  outline: none;
  position: relative;
  padding: 13px 0;
  text-align: center;
  z-index: 9999; }

.header__toggleBtn__bar {
  position: relative;
  z-index: 9999;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: auto;
  margin-right: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block;
  width: 32px;
  height: 2px;
  background-color: #222;
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s; }
  .header__toggleBtn__bar:before, .header__toggleBtn__bar:after {
    position: absolute;
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    background-color: #222;
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    transition-property: background-color, transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s; }
  .header__toggleBtn__bar:before {
    top: -10px; }
  .header__toggleBtn__bar:after {
    top: 10px; }
  input[name='toggle']:checked + .header__toggleBtn__bar {
    background-color: transparent; }
    input[name='toggle']:checked + .header__toggleBtn__bar:before {
      transform: translateY(10px) rotate(45deg); }
    input[name='toggle']:checked + .header__toggleBtn__bar:after {
      transform: translateY(-10px) rotate(-45deg); }

input[name='toggle'] {
  display: none; }

@media screen and (min-width: 769px) {
  .gnav {
    display: block !important; }

  .header__toggleBtn {
    display: none; } }
@media screen and (max-width: 768px) {
  .gnav {
    position: absolute;
    left: 0;
    top: 75px;
    width: 100%;
    padding: 40px;
    background: #fff;
    border-bottom: 1px solid #E8E8E8;
    z-index: 6;
    transition: .5s; }
    .header:has(input[name='toggle']:not(:checked)) .gnav {
      transform: translateX(100%); } }
.folding-cover {
  display: none; }
  .header:has([name="toggle"]:checked) + .folding-cover {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    opacity: .2;
    z-index: 900; }

 /***************************

layout/_footer.scss

***************************/
footer {
  display: flex;
  flex-wrap: wrap; }

.footer__box {
  width: calc(100% / 3); }
  .footer__box:nth-of-type(n+2) {
    border-left: 1px solid #E8EDF2; }

.footer__box__inner {
  max-width: 470px;
  padding: 100px 15px;
  margin: 0 auto; }

.footer__hdg {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #D2DADE;
  margin-bottom: 30px; }

.footer__nav__item {
  margin-bottom: 10px;
  font-weight: 500; }

.footer__nav__item-small {
  font-size: 1.2rem; }

.footer__box--contact .footer__box__inner,
.footer__box--company .footer__box__inner {
  height: 100%;
  display: flex;
  flex-direction: column; }
  .footer__box--contact .footer__box__inner .btn-type01,
  .footer__box--company .footer__box__inner .btn-type01 {
    margin-top: auto; }

.footer__company {
  font-weight: bold; }

.footer__copy {
  font-family: "Poppins", sans-serif;
  font-size: .9rem;
  color: #aaa;
  font-weight: 500;
  margin-top: auto;
  display: block; }

@media screen and (max-width: 768px) {
  .footer__box {
    width: 100%; }
    .footer__box:nth-of-type(n+2) {
      border-left: none; }

  .footer__box__inner {
    padding: 30px 15px; }

  footer {
    padding: 40px 0; } }
/***************************

layout/_lity.scss

***************************/
/*! Lity - v2.3.1 - 2018-04-20
* http://sorgalla.com/lity/
* Copyright (c) 2015-2018 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }

.lity.lity-opened {
  opacity: 1; }

.lity.lity-closed {
  opacity: 0; }

.lity * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important; }

.lity-wrap:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em; }

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }

.lity-loading .lity-loader {
  opacity: 1; }

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important; }

.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease; }

.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8); }

.lity-content:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); }

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none; }

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0; }

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none; }

.lity-close:active {
  top: 1px; }

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0; }

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px; }

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch; }

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; }

.lity-hide {
  display: none; }

 /***************************

layout/_pager.scss

***************************/
.wp-pagenavi {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  gap: 15px;
  padding-right: 190px; }

.wp-pagenavi a, .wp-pagenavi span {
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  margin: 0;
  color: #929BA4;
  display: block;
  text-decoration: none;
  padding: 0; }

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  position: absolute;
  width: 50px; }

.wp-pagenavi .previouspostslink {
  right: 80px; }
  .wp-pagenavi .previouspostslink span {
    font-size: 14px;
    color: #444D51;
    text-align: right; }
    .wp-pagenavi .previouspostslink span:after {
      position: absolute;
      content: '';
      width: 8px;
      height: 13px;
      background: url(./img/common/wp-navi-prev.png);
      left: 0;
      top: 50%;
      translate: 0 -50%; }

.wp-pagenavi .nextpostslink {
  right: 0; }
  .wp-pagenavi .nextpostslink span {
    font-size: 14px;
    color: #444D51;
    text-align: left; }
    .wp-pagenavi .nextpostslink span:after {
      position: absolute;
      content: '';
      width: 8px;
      height: 13px;
      background: url(./img/common/wp-navi-next.png);
      right: 0;
      top: 50%;
      translate: 0 -50%; }

.wp-pagenavi span.current {
  color: #444D51;
  cursor: default; }

.wp-pagenavi a:hover {
  opacity: 0.8; }

@media screen and (max-width: 768px) {
  .wp-pagenavi .extend {
    display: none; }
    .wp-pagenavi .extend + .larger {
      display: none; } }
@media screen and (max-width: 350px) {
  .wp-pagenavi {
    padding-right: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }

  .wp-pagenavi .previouspostslink {
    right: inherit;
    left: 0; } }
.pager {
  margin: 20px 0 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: center; }

.pager a {
  color: #1f1f1f;
  font-size: 14px;
  margin: 5px;
  width: 3.5em;
  height: 3.5em;
  line-height: 3.5;
  display: block;
  text-decoration: none;
  padding: 0;
  background: #f4f4f4;
  opacity: 1; }

.pager .back a {
  width: 200px;
  padding: 0 20px;
  font-weight: bold;
  color: #FFF; }

@media screen and (max-width: 450px) {
  .pager .back a {
    width: auto; } }
 /***************************

layout/_breadcrumbs.scss

***************************/
.l-breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 10px 15px;
  font-size: 12px; }
  .l-breadcrumbs a {
    color: #fff;
    display: block; }

.l-breadcrumbs__item {
  position: relative; }
  .l-breadcrumbs__item:not(:first-of-type) {
    padding-left: 20px; }
    .l-breadcrumbs__item:not(:first-of-type):after {
      content: "";
      width: 4px;
      height: 4px;
      border-right: 1px solid #fff;
      border-bottom: 1px solid #fff;
      position: absolute;
      left: 8px;
      top: calc(50% - 4px);
      transform: rotate(-45deg); }
  .l-breadcrumbs__item:last-of-type {
    pointer-events: none;
    text-decoration: none; }

.l-pageTitle .l-breadcrumbs {
  position: absolute;
  bottom: 0;
  left: 0; }

 /***************************

layout/_page-title.scss

***************************/
.l-pageTitle {
  overflow: hidden;
  -webkit-perspective: 2000px;
  perspective: 2000px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: relative;
  height: 750px; }

.l-pageTitle:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  width: 180%;
  height: 200%;
  display: block;
  background: url(./img/about/page_title.jpg) no-repeat center/cover;
  transform: translate3d(-10%, -25%, -1000px);
  z-index: -1;
  min-height: 750px; }

.l-pageTitle__text {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  z-index: 1;
  transform: translate(calc(-50% - 43px), -50%); }

.l-pageTitle__hdg {
  font-size: 40px;
  font-weight: normal;
  line-height: 1.75;
  letter-spacing: 2px;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr; }

.l-pageTitle__hdg__en {
  display: block;
  font-family: 'Lexend Zetta', sans-serif;
  font-size: 12px;
  font-weight: 300; }

@media screen and (max-width: 768px) {
  .l-pageTitle__text {
    transform: translate(calc(-50% - 19px), -50%); } }
@media screen and (max-width: 450px) {
  .l-pageTitle {
    height: 530px; }

  .l-pageTitle:after {
    min-height: 530px; }

  .l-pageTitle__hdg {
    font-size: 30px; } }
.l-pageTitle.is-wedding,
.l-pageTitle.is-ryoutei {
  height: 100vh; }

@media screen and (max-width: 768px) {
  .l-pageTitle.is-wedding,
  .l-pageTitle.is-wedding {
    height: calc(100vh - 60px); } }
.l-pageTitleEx__hdg {
  ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  margin: 0 auto 25px;
  font-size: 20px;
  letter-spacing: 3px; }

.l-pageTitleEx__hdg__large {
  font-size: 52px;
  letter-spacing: .5em;
  margin-top: 10px; }

.l-pageTitleEx__hdg-en {
  text-align: center;
  font-family: 'Lexend Zetta', sans-serif;
  font-size: 12px;
  font-weight: normal; }

.l-pageTitle.is-wedding:after {
  background-image: url(./img/wedding/page_title.jpg); }

.l-pageTitle.is-ryoutei:after {
  background-image: url(./img/ryoutei/page_title.jpg); }

@media screen and (min-width: 769px) {
  .ryouteiPage .l-pageTitle,
  .l-header.is-wedding + main .l-pageTitle {
    height: 690px;
    margin-top: 60px; } }
 /***************************

layout/_faq.scss

***************************/
.faq01__dl {
  border-bottom: 1px dotted #bbb;
  margin: 0;
  padding: 0 50px 0px 0;
  position: relative; }

.faq01__dl:nth-of-type(1) {
  border-top: 1px dotted #bbb; }

.faq01__dl:after,
.faq01__dl:before {
  content: "";
  width: 1px;
  height: 15px;
  border-bottom: 1px solid #BABABA;
  border-right: 1px solid #BABABA;
  position: absolute;
  top: calc(50% - 12px);
  right: 20px;
  transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  -o-transition: .5s;
  -ms-transition: .5s; }

.faq01__dl:before,
.faq01__dl.is-open:after {
  transform: rotate(90deg); }

.faq01__dl__dt {
  position: relative;
  padding: 25px 0 25px 60px;
  font-size: 20px;
  font-weight: bold; }

.faq01__dl__dt:before {
  content: "Q.";
  font-family: 'Jost', sans-serif;
  color: #BD9F64;
  font-size: 24px;
  font-weight: 500;
  width: 48px;
  line-height: 48px;
  display: inline-block;
  text-align: center;
  position: absolute;
  left: 0;
  top: calc(50% - 26px); }

.faq01__dl__dd {
  position: relative;
  padding: 10px 0 30px 60px;
  font-size: 16px; }

.faq01__dl__dd:before {
  content: "A.";
  font-family: 'Jost', sans-serif;
  color: #BABABA;
  font-size: 24px;
  font-weight: 500;
  width: 48px;
  line-height: 48px;
  display: inline-block;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0; }

/***************************

object/component/_heading.scss

***************************/
 /***************************

object/component/_box.scss

***************************/
.container {
  max-width: 1230px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px; }

.container_l {
  max-width: 1630px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px; }

.container.is-rightOpen {
  width: 100%;
  margin-right: 0;
  max-width: none;
  padding-right: 0; }

.container.is-leftOpen {
  width: 100%;
  margin-left: 0;
  max-width: none;
  padding-left: 0; }

@media screen and (min-width: 1245px) {
  .container.is-rightOpen,
  .container.is-leftOpen {
    width: calc(100% - ((100% - 1230px) / 2)); } }
/***************************

object/component/_button.scss

***************************/
.btn-type01 {
  display: block;
  font-size: 1.4rem;
  line-height: 1.4;
  border-bottom: 1px solid #DCE0E4;
  position: relative;
  padding: 20px 65px 20px 0; }
.btn-type01:after {
  position: absolute;
  content: '\f054';
  font-family: "FontAwesome";
  color: transparent;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: #444D51;
  right: 0px;
  top: 50%;
  translate: 0 -50%;
  transition: all .4s;
  display: flex;
  justify-content: center;
  align-items: center;
  scale: 0.1;
  /*content: "";
  width: 6px;
  aspect-ratio: 1 / 1;
  background: #444D51;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 3px);
  right: 10px;*/
}
.btn-type01:hover:after {
  scale: 1;
  color: #fff;
}

.btn-type02 {
  display: inline-block;
  font-size: 1.4rem;
  position: relative;
  padding-right: 65px;
  font-weight: 500; }
  .btn-type02:after {
    position: absolute;
    content: '\f054';
    font-family: "FontAwesome";
    color: transparent;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: #444D51;
    right: 0px;
    top: 50%;
    translate: 0 -50%;
    transition: all .4s;
    display: flex;
    justify-content: center;
    align-items: center;
    scale: 0.1;
    transform-origin: left;
    /*content: "";
    width: 6px;
    aspect-ratio: 1 / 1;
    background: #444D51;
    border-radius: 50%;
    display: inline-block;
    margin-left: 10px;
    margin-bottom: 2px;*/ }
.btn-type02:hover:after {
  scale: 1;
  color: #fff;
}
.btn-long {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  gap: 10px;
  background: #EEF1F3;
  min-height: 120px; }
  .btn-long:after {
    content: '\f054';
    font-family: "FontAwesome";
    color: transparent;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: #444D51;
    transition: all .4s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    scale: 0.1;
    transform-origin: left;
    }
  .btn-long:hover {
    opacity: 1;
    background: #b2bbc5; }
.btn-long:hover:after {
  scale: 1;
  color: #fff;
}
.btn-white {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 5px 35px; }
  .btn-white:after {
    content: "";
    width: 6px;
    aspect-ratio: 1 / 1;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    margin-left: 10px;
    transition: 1s;
    margin-bottom: 2px; }
  .btn-white:hover {
    background: #fff;
    color: #444D51; }
    .btn-white:hover:after {
      background: #444D51; }

/***************************

object/component/_form.scss

***************************/
/***************************

object/object/project/_home.scss

***************************/
section[class^='top-'] {
  overflow-x: hidden;
  overflow-y: hidden; }

.top-mv {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 60px;
  border-bottom: 1px solid #E8EDF2;
  position: relative;
  overflow-x: hidden; }

@media screen and (min-width: 1645px) {
    .top-mv {
      width: calc(100% - ((100% - 1600px) / 2) + 15px);
      margin-right: 0;
      margin-left: auto;
      padding-left: 15px;
    } 
}
@media screen and (max-width: 768px) {
  .top-mv{
    padding-top: 75px;
  }
}

.top-mv__hdgWrap {
  display: flex;
  justify-content: center;
  /*position: absolute;
  bottom: 590px;
  left: 0;
  width: 100%;*/
  z-index: 5; }
  
.top-mv__hdgWrap {
  width: 17%; }
  @media screen and (max-width: 768px) {
    .top-mv__hdgWrap {
      width: 24%; }
    .top-mv__hdgWrap .container_l{
      padding: 0;
      writing-mode: vertical-rl;
    }
      }
  @media screen and (max-width: 450px) {
    .top-mv__hdgWrap {
      /*width: 110px;*/
      width: 125px;
      
    }
    
  }
/*  @media screen and (max-width: 1640px) {
    .top-mv__hdgWrap {
      bottom: calc(33vw + 90px); } }
  @media screen and (max-width: 768px) {
    .top-mv__hdgWrap {
      bottom: 430px; } }
  @media screen and (max-width: 450px) {
    .top-mv__hdgWrap {
      bottom: 380px; } }*/

.top-mv__hdg {
  line-height: 1.6;
  font-size: 1.8rem;
  font-weight: 500;
  /*margin-left: 6.5%;*/
  letter-spacing: 4px; }
  @media screen and (max-width: 1100px) {
    .top-mv__hdg {
      margin-left: 5.5%; } }
  @media screen and (max-width: 768px) {
    .top-mv__hdg {
      margin-left: 7.5%; } }
  @media screen and (max-width: 450px) {
    .top-mv__hdg {
      /*margin-left: 8.5%;*/
      margin-left: auto;
      margin-right: auto;} }

.top-mv__swiper {
  width: 79.5%;
  
  /*display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 15px 0;*/
  position: relative;
   }
/*.top-mv__swiper-slide__inner{
  padding-bottom: 55px;
}*/
.top-mv__swiper-slide__image01{
  height: calc(100vh - 75px);
  overflow: hidden;
  
}

@media screen and (max-width: 768px) {
  .top-mv__swiper {
    width: 72.5%;
  }
  .top-mv__swiper-slide__image01{
    height: calc(100vh - 140px);
  }
}
@media screen and (max-width: 450px) {
  .top-mv__swiper {
    width: calc(100% - 125px); 
  }    
}
.swiper-slide{
  width: 100%;
}

.top-mv__swiper-slide__image01 {
  /*height: calc(100vh - 75px);*/
  overflow: hidden; }
  .top-mv__swiper-slide__image01 img {
    height: 100%;
    /*width: auto;*/
    width: 100%;
    object-fit: cover;
    object-position: center; }

  .top-mv__swiper-slide__image01 img {
    transform: scale(1);
    transition: 20s; }
  .swiper-slide-active .top-mv__swiper-slide__image01 img {
    transform: scale(1.3); }



.top-mv__swiper-slide__info {
  width: 100%;
  line-height: 1.6;
  background: #fff; }

.top-mv__swiper-slide__info__ttl {
  font-size: 1.4rem;
  font-weight: bold; }

.top-mv__swiper-slide__info__date {
  font-size: 1.2rem;
  font-family: "Inter", sans-serif; }

.top-mv__swiper__pagerWrap {
  display: flex;
  align-items: center;
  max-width: 302px;
  width: 100%; }
  .top-mv__swiper__pagerWrap .top-mv__swiper-pagination,
  .top-mv__swiper__pagerWrap .swiper-button-prev,
  .top-mv__swiper__pagerWrap .swiper-button-next {
    position: static; }
  .top-mv__swiper__pagerWrap .swiper-button-next,
  .top-mv__swiper__pagerWrap .swiper-rtl .swiper-button-prev,
  .top-mv__swiper__pagerWrap .swiper-button-prev,
  .top-mv__swiper__pagerWrap .swiper-rtl .swiper-button-next {
    margin-top: 0; }
    .top-mv__swiper__pagerWrap .swiper-button-next:after,
    .top-mv__swiper__pagerWrap .swiper-rtl .swiper-button-prev:after,
    .top-mv__swiper__pagerWrap .swiper-button-prev:after,
    .top-mv__swiper__pagerWrap .swiper-rtl .swiper-button-next:after {
      font-size: 1.2rem;
      color: #444D51; }
  .top-mv__swiper__pagerWrap .top-mv__swiper-pagination {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto; }
  .top-mv__swiper__pagerWrap .swiper-pagination-bullet {
    width: 100%;
    max-width: 250px;
    height: 1px;
    background: #DCE0E4;
    border-radius: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 1; }
    .top-mv__swiper__pagerWrap .swiper-pagination-bullet:after {
      content: "";
      width: 0%;
      height: 1px;
      background: #444D51;
      position: absolute;
      left: 0;
      top: 0; }
  .top-mv__swiper__pagerWrap .swiper-pagination-bullet-active {
    z-index: 5; }
    .top-mv__swiper__pagerWrap .swiper-pagination-bullet-active:after {
      animation: mvMeter 6s forwards; }
  @media screen and (min-width: 769px) {
    .top-mv__swiper__pagerWrap {
      margin-left: auto;
      margin-right: 50px;
      margin-top: 13px;
      /*position: absolute;
      bottom: 60px;
      right: 50px;*/ } }
  @media screen and (max-width: 768px) {
    .top-mv__swiper__pagerWrap {
      margin: 13px 20px 0 auto; } }
      
@media screen and (max-width: 450px) {
  .top-mv__swiper-slide__image01 img[src$='main_image01.jpg'] {
    object-position: top 50% left 94%;
  }
  .top-mv__swiper-slide__image01 img[src$='main_image02.jpg'] {
    object-position: top 50% left 43%;
  }
  .top-mv__swiper-slide__image01 img[src$='main_image03.jpg'] {
    object-position: top 50% left 69%;
  }
}

@keyframes mvMeter {
  0% {
    width: 0%; }
  100% {
    width: 100%; } }
.topHdg-type01 {
  position: relative;
  margin-bottom: 30px; }
  @media screen and (min-width: 451px) {
    .topHdg-type01 {
      padding-left: 30px; } }

.topHdg-type01__jp {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.2; }
  @media screen and (min-width: 451px) {
    .topHdg-type01__jp {
      position: absolute;
      left: 0;
      top: 0; } }

@media screen and (min-width: 451px) {
  .topHdg-type01__jp__inner {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl; } }

.topHdg-type01__en {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #D2DADE; }
  @media screen and (min-width: 451px) {
    .topHdg-type01__en {
      text-align: right; } }

.topHdg-type01Next {
  margin-left: auto;
  width: max-content;
  padding-left: 30px; }

.topHdg-type02 {
  font-size: 1.3rem;
  font-weight: 500;
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px; }
  .topHdg-type02:before {
    content: "";
    width: 20px;
    height: 1px;
    background: #929BA4;
    position: absolute;
    left: 0;
    top: 50%; }

.top-what {
  padding-top: 230px; }
  .top-what .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
  @media screen and (max-width: 768px) {
    .top-what {
      padding-top: 120px; } }

.top-what__inner {
  position: relative; }

.top-what__text {
  position: relative;
  padding-left: 120px;
  max-width: 520px;
  width: 44%;
  font-size: 1.5rem;
  line-height: 2.5; }
  @media screen and (max-width: 1100px) {
    .top-what__text {
      padding-left: 70px;
      width: 47%; } }
  @media screen and (max-width: 768px) {
    .top-what__text {
      width: 100%;
      margin: 0 auto; } }
  @media screen and (max-width: 450px) {
    .top-what__text {
      padding-left: 45px; } }

.top-what__hdg-en {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #D2DADE;
  position: absolute;
  left: 0;
  top: 15px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl; }

.top-what__hdg {
  font-size: 2.2rem;
  font-weight: bold;
  font-family: "Zen Old Mincho", serif;
  margin-bottom: 40px;
  line-height: 2.5; }

.top-what__image01 {
  max-width: 540px;
  width: 45%; }
  .top-what__image01 img {
    position: relative;
    left: 33px; }
  @media screen and (max-width: 1100px) {
    .top-what__image01 {
      width: 48%; }
      .top-what__image01 img {
        left: 0px; } }
  @media screen and (max-width: 768px) {
    .top-what__image01 {
      width: 100%;
      margin: 30px auto 0; } }

.top-what__image02 {
  width: 100%;
  text-align: right;
  margin-top: 50px;
  position: relative; }
  .top-what__image02 img {
    position: relative;
    left: 78px;
    top: 55px;
    z-index: 2; }
  @media screen and (max-width: 768px) {
    .top-what__image02 {
      margin-top: 30px; }
      .top-what__image02 img {
        left: 10px;
        top: 20px; } }

.top-what__image03 {
  position: absolute;
  z-index: 3;
  top: -123px;
  right: -132px; }
  @media screen and (max-width: 768px) {
    .top-what__image03 {
      max-width: 35%;
      right: 20px;
      top: -70px; } }

.top-what__image04 {
  position: absolute;
  left: 0;
  bottom: 280px;
  z-index: 2; }
  @media screen and (max-width: 1500px) {
    .top-what__image04 {
      bottom: 100px; } }
  @media screen and (max-width: 768px) {
    .top-what__image04 {
      max-width: 30%; } }

.top-what__message {
  position: relative; }

.top-what__message__textWrap {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  max-width: 1230px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: row-reverse; }

.top-what__message__text {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "Zen Old Mincho", serif;
  padding-right: 45px; }
  @media screen and (max-width: 450px) {
    .top-what__message__text {
      padding-right: 25px; } }

@media screen and (max-width: 768px) {
  .top-what__message__image img {
    height: 350px;
    width: auto;
    object-fit: cover; } }

.top-service {
  padding: 290px 0 150px; }
  @media screen and (max-width: 768px) {
    .top-service {
      padding: 120px 0 70px; } }

.top-service__text {
  padding: 0 20px 30px 50px;
  z-index: 2; }
  @media screen and (min-width: 451px) {
    .top-service__text {
      max-width: 400px;
      background: #fff;
      padding: 80px 70px 0 15px;
      position: absolute;
      left: 0;
      bottom: 0; } }
  @media screen and (max-width: 1100px) {
    .top-service__text {
      bottom: auto;
      top: 167px; } }
  @media screen and (max-width: 450px) {
    .top-service__text {
      padding: 0 15px 30px 0; } }

.top-service__hdg {
  font-size: 2rem;
  line-height: 1.9;
  font-weight: 500;
  margin-bottom: 20px; }

.top-service__image {
  text-align: right;
  padding-left: 50px;
  margin-bottom: 120px; }
  @media screen and (max-width: 1100px) {
    .top-service__image img {
      height: 564px;
      width: auto;
      object-fit: cover;
      object-position: right; } }
  @media screen and (max-width: 450px) {
    .top-service__image {
      padding-left: 0; }
      .top-service__image img {
        height: auto; } }

.top-service__comic {
  min-height: 120px;
  background: url(./img/top/service_comic_bg.jpg) no-repeat center/cover;
  position: relative;
  padding: 15px 400px 15px 60px;
  border: 1px solid #D2DADE;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.2rem; }
  @media screen and (max-width: 768px) {
    .top-service__comic {
      padding: 30px 40px 0; } }

.top-service__comic__image {
  text-align: center; }
  @media screen and (min-width: 769px) {
    .top-service__comic__image {
      position: absolute;
      bottom: 0;
      right: 10px; } }
  @media screen and (max-width: 768px) {
    .top-service__comic__image {
      margin-top: 30px;
      width: calc(100% + 80px);
      position: relative;
      left: -40px;
      padding: 0 10px; } }

.top-service__comic__hdg {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6; }

.top-works {
  padding-top: 150px; }
  @media screen and (max-width: 768px) {
    .top-works {
      padding-top: 70px; } }

.top-works__list {
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 150px 0;
  padding-bottom: 300px;
  margin-top: 60px; }
  @media screen and (max-width: 768px) {
    .top-works__list {
      gap: 70px 0;
      padding-bottom: 200px; } }
  @media screen and (max-width: 450px) {
    .top-works__list {
      margin-top: 40px;
      padding-bottom: 150px; } }

.top-works__list__item {
  width: calc(50% - 20px);
  max-width: 740px; }
  @media screen and (min-width: 451px) {
    .top-works__list__item:nth-of-type(2n) {
      position: relative;
      top: 90px; } }
  @media screen and (min-width: 769px) {
    .top-works__list__item:nth-of-type(2n) {
      top: 190px; } }
  @media screen and (max-width: 450px) {
    .top-works__list__item {
      width: 100%; } }

.top-works__list__image {
  margin-bottom: 20px;
  overflow: hidden;
  position: relative; }
  .top-works__list__image:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #444D51;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: .5s; }
  .top-works__list__image img {
    transition: .5s; }
  .top-works__list__item:hover .top-works__list__image:before {
    opacity: .3; }
  .top-works__list__item:hover .top-works__list__image img {
    transform: scale(1.1); }
  .top-works__list__item:hover .top-works__list__image a {
    oapcity: 1; }

.top-works__list__hdg {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.6; }

.top-about {
  padding: 255px 0 185px;
  display: flex;
  justify-content: space-between;
  gap: 60px; }
  @media screen and (max-width: 768px) {
    .top-about {
      flex-direction: column;
      padding: 150px 0 90px; } }
  @media screen and (min-width: 451px) {
    .top-about .topHdg-type01 {
      margin-bottom: 180px; } }

.top-about__text {
  order: 2;
  display: flex;
  flex-direction: column;
  max-width: 520px; }
  @media screen and (min-width: 1101px) {
    .top-about__text {
      padding-left: 60px;
      margin-right: auto; } }
  @media screen and (max-width: 768px) {
    .top-about__text {
      margin: 0 auto;
      padding: 0 20px; } }

.top-about__image01 {
  order: 1; }
  @media screen and (max-width: 768px) {
    .top-about__image01 {
      order: 3; } }

.top-about__image02 {
  order: 3; }
  .top-about__image02 img {
    display: block; }
  @media screen and (max-width: 768px) {
    .top-about__image02 {
      order: 1;
      display: flex;
      justify-content: center; }
      .top-about__image02 img {
        max-width: 50%; } }

.top-about__hdg {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.9;
  margin-bottom: 30px;
  margin-top: auto; }

.top-about__btnWrap {
  border-top: 1px solid #DCE0E4;
  margin-top: 100px; }

.top-news__list__item a {
  display: flex;
  align-items: center;
  gap: 10px 20px;
  line-height: 1.4;
  border-bottom: 1px solid #DCE0E4;
  position: relative;
  padding: 20px 50px 20px 0; }
  .top-news__list__item a:after {
    content: "";
    width: 6px;
    aspect-ratio: 1 / 1;
    background: #444D51;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 3px);
    right: 35px; }
@media screen and (min-width: 769px) {
  .top-news__list__item a {
    min-height: 113px; } }
@media screen and (max-width: 768px) {
  .top-news__list__item a {
    flex-wrap: wrap; } }

.top-news {
  position: relative;
  padding: 0 0 50px;
  z-index: 2; }
  .top-news .container {
    position: relative;
    z-index: 2; }
  .top-news:after {
    content: "";
    background: #F6F8F9;
    position: absolute;
    right: 0;
    bottom: -70px;
    z-index: 1;
    width: calc(100% - ((100% - 1600px) / 2));
    height: calc(100% + 30px); }
  @media screen and (min-width: 451px) {
    .top-news .topHdg-type01 {
      margin-bottom: 170px; } }
  @media screen and (max-width: 450px) {
    .top-news:after {
      height: calc(100% - 50px);
      bottom: 0; } }

.top-news__list__item__date {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  width: 100px;
  flex: 0 0 100px; }

.top-news__list__item__cat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.2rem;
  width: 140px;
  flex: 0 0 140px; }
  .top-news__list__item__cat:before {
    content: "(";
    font-size: 1.4rem; }
  .top-news__list__item__cat:after {
    content: ")";
    font-size: 1.4rem; }

.top-news__list__item__title {
  font-size: 1.4rem;
  flex: 1 1 auto; }
  @media screen and (max-width: 768px) {
    .top-news__list__item__title {
      width: 100%; } }

.top-recruit {
  position: relative; }

.top-recruit__contents {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 70px 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 5;
  color: #fff;
  font-size: 1.6rem; }
  @media screen and (max-width: 450px) {
    .top-recruit__contents {
      padding: 0 60px; } }

.top-recruit__logo {
  margin-bottom: 25px; }

.top-recruit-swiperWrap {
  position: relative;
  z-index: 1;
  overflow: hidden; }
  .top-recruit-swiperWrap:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #445B73;
    opacity: 0.41;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2; }

.top-recruit-swiper .swiper-wrapper {
  transition-timing-function: linear; }

.top-recruit-swiper-slide {
  max-width: 880px; }
  @media screen and (max-width: 768px) {
    .top-recruit-swiper-slide img {
      height: 600px;
      width: auto;
      max-width: none;
      object-fit: cover; } }
  @media screen and (max-width: 450px) {
    .top-recruit-swiper-slide img {
      height: 400px; } }

/***************************

object/object/project/_contact.scss

***************************/
.contact-head-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px; }

.contact-head-content-text {
  max-width: 650px;
  width: 100%; }

.contact-head-content-tel {
  max-width: 360px;
  width: 100%; }

.contact-head-content-tel a {
  display: block;
  width: 100%;
  border-bottom: 1px solid #DCE0E4;
  padding: 20px 0;
  font-family: "Inter Tight", sans-serif;
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1.6;
  letter-spacing: 0.08em; }
  .contact-head-content-tel a span {
    font-size: 1.4rem; }

.contact-formWrap {
  max-width: 1600px;
  width: calc(100%  - 30px);
  margin: 100px auto 0;
  background: #F6F8F9;
  padding: 100px 20px 120px; }

.contact-form {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 90px; }

.contact-form-block:not(:last-child) {
  margin-bottom: 50px; }
.contact-form-block dt {
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-bottom: 20px; }
  .contact-form-block dt span {
    font-weight: 400;
    color: #FF004E;
    margin-left: 20px; }

.contact-form input[type=text],
.contact-form input[type=tel],
.contact-form input[type=email] {
  width: 100%;
  background: #fff;
  border: none;
  border-bottom: 1px solid #DCE0E4;
  padding: 25px 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.08em; }

.contact-form input::placeholder {
  color: #929BA4; }

.contact-form textarea {
  width: 100%;
  min-height: 360px;
  background: #fff;
  border: none;
  border-bottom: 1px solid #DCE0E4;
  padding: 25px 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.08em; }

.contact-form input[type=radio] {
  display: none; }

.privacy-checkbox input[type=checkbox] {
  display: none; }

.contact-form .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; }

.contact-form .wpcf7-list-item {
  width: calc((100% - 30px) / 4);
  background: #fff;
  border: 1px solid #DCE0E4;
  padding: 20px;
  display: inline-flex;
  align-items: center;
  margin-left: 0;}

.contact-form .wpcf7-list-item-label,
.privacy-checkbox .wpcf7-list-item-label {
  position: relative;
  display: block;
  padding: 0 0 0 40px;
  cursor: pointer;
  line-height: 2;
  font-size: 1.3rem;
  line-height: 1.4; }

.privacy-checkbox .wpcf7-list-item-label {
  font-weight: 500;
  display: inline-block; }

.contact-form .wpcf7-list-item-label::after,
.contact-form .wpcf7-list-item-label::before,
.privacy-checkbox .wpcf7-list-item-label::after,
.privacy-checkbox .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  display: block;
  transition: all 0.3s; }

.contact-form .wpcf7-list-item-label::after {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid #929BA4;
  border-radius: 50%; }

.privacy-checkbox .wpcf7-list-item-label::after {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid #929BA4;
  border-radius: 0; }

.contact-form .wpcf7-list-item-label::before {
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  width: 22px;
  height: 22px;
  background: #22993F;
  border-radius: 100%;
  opacity: 0;
  z-index: 1;
  border: 0; }

.privacy-checkbox .wpcf7-list-item-label::before {
  left: 8px;
  top: 3px;
  transform: rotate(-45deg);
  margin-top: 0;
  width: 15px;
  height: 8px;
  background: transparent;
  border-left: 2px solid #22993F;
  border-bottom: 2px solid #22993F;
  border-radius: 0;
  opacity: 0;
  z-index: 1; }

.contact-form input[type=radio]:checked + .wpcf7-list-item-label::before {
  opacity: 1; }

.privacy-checkbox input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  opacity: 1; }

.privacy-contentWrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto; }

.privacy-content {
  width: 100%;
  background: #fff;
  border: 1px solid #DCE0E4;
  padding: 25px 50px;
  margin-top: 40px;
  margin-bottom: 40px; }
  .privacy-content p {
    position: 0.08em; }
    .privacy-content p:not(:last-child) {
      margin-bottom: 20px; }

.privacy-checkbox {
  text-align: center;
  margin-bottom: 60px; }

.contact-form-submit {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto; }
  .contact-form-submit:after {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 20px;
    right: 50px;
    top: 50%;
    translate: 0 -50%;
    transition: all 0.6s; }
  .contact-form-submit:hover:after {
    width: 30px;
    height: 3px; }

.contact-form-submit input {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
  border: none;
  background: #444D51;
  color: #fff;
  text-align: center;
  padding: 30px 100px;
  display: block;
  width: 100%; }
  .contact-form-submit input:hover {
    cursor: pointer; }

@media screen and (max-width: 768px) {
  .contact-head-content {
    flex-wrap: wrap;
    gap: 30px; }

  .contact-head-content-text {
    max-width: 100%; }

  .contact-formWrap {
    margin-top: 70px;
    padding: 50px 20px 60px; }

  .contact-form {
    margin-bottom: 50px; }

  .contact-form-block:not(:last-child) {
    margin-bottom: 25px; }

  .contact-form-block dt {
    margin-bottom: 10px; }

  .contact-form .wpcf7-list-item {
    width: calc((100% - 10px) / 2); }

  .privacy-content {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 25px 30px; }

  .privacy-checkbox {
    margin-bottom: 30px; }

  .contact-form-submit input {
    padding: 20px 80px; } }
@media screen and (max-width: 450px) {
  .contact-form .wpcf7-list-item {
    width: 100%; } }
.thanks01 {
  width: 100%;
  padding: 60px 0 0;
  position: relative;
  border-top: 2px solid #E8EDF2; }
  .thanks01:after {
    position: absolute;
    content: '';
    width: 30px;
    height: 2px;
    background: #65696B;
    left: calc((100% - 1200px) / 2);
    top: -2px; }
  .thanks01 .btn-newsBack {
    margin-top: 150px; }

@media screen and (max-width: 1230px) {
  .thanks01:after {
    left: 15px; }
  .thanks01 .btn-newsBack {
    margin-top: 70px; } }
@media screen and (max-width: 768px) {
  .thanks01 {
    padding-top: 30px; } }
/***************************

object/project/undercommon.scss

***************************/
.subpage {
  width: 100%;
  padding: 0 20px;
  margin-top: 100px; }

.subpage-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto; }

.subpage-ttl {
  font-size: 3.6rem;
  letter-spacing: 0.08em;
  margin-top: 40px; }

.subpage-ttl__en {
  font-family: "Inter Tight", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: #D2DADE; }

/* pattern01 */
.pattern01 .subpage-inner {
  position: relative;
  padding-top: 100px;
  padding-bottom: 120px; }

/* pattern02 */
.pattern02 .subpage-inner {
  position: relative;
  padding-top: 100px;
  padding-bottom: 70px; }

.pattern02 .news-detail-info {
  margin-top: 10px; }

.pattern02 .news-detail-info div {
  display: flex;
  align-items: center;
  gap: 0 35px; }

.pattern02 .news-detail-info dt {
  font-family: "Inter Tight", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em; }

.pattern02 .news-detail-info dd {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: #444; }
  .pattern02 .news-detail-info dd:before {
    display: inline-block;
    content: '(';
    padding-right: 5px; }
  .pattern02 .news-detail-info dd:after {
    display: inline-block;
    content: ')';
    padding-left: 5px; }

/* pattern03 */
.pattern03 {
  padding: 0; }

.pattern03 .subpage-inner {
  position: relative;
  max-width: 100%;
  height: 480px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .pattern03 .subpage-inner .subpage-ttl__en,
  .pattern03 .subpage-inner .subpage-ttl {
    max-width: 1200px;
    width: 100%;
    color: #fff; }

.subpage-underLink {
  max-width: 1230px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px 30px;
  padding: 0 15px;
  margin: 110px auto 200px; }
  .subpage-underLink li {
    position: relative;
    padding-left: 20px; }
    .subpage-underLink li:before {
      position: absolute;
      content: '';
      width: 7px;
      height: 5px;
      left: 0;
      top: 50%;
      translate: 0 -50%;
      background: url(./img/common/underLink.png); }
    .subpage-underLink li span {
      position: relative;
      padding: 5px;
      display: inline-block;
      line-height: 1.6;}
      .subpage-underLink li span:before {
        position: absolute;
        content: '';
        width: 0;
        height: 2px;
        bottom: 0;
        left: 50%;
        background: #444D51;
        translate: -50% 0;
        transition: all .6s; }
    .subpage-underLink li a:hover span:before {
      width: 100%; }

@media screen and (max-width: 768px) {
  .subpage {
    margin-top: 75px; }

  .subpage-ttl {
    margin-top: 25px;
    font-size: clamp(25px, 4.7vw, 36px); }

  .pattern01 .subpage-inner {
    padding-top: 50px;
    padding-bottom: 60px; }

  .pattern02 .subpage-inner {
    padding-top: 50px;
    padding-bottom: 30px; }

  .pattern03 .subpage-inner {
    min-height: 235px;
    height: auto; }

  .subpage-underLink {
    margin-top: 60px;
    margin-bottom: 100px; } }
/*////////////////////////

fonts

////////////////////////*/
.bold {
  font-weight: bold; }

.ls_8 {
  letter-spacing: 0.08em; }

.ls_5 {
  letter-spacing: 0.05em; }

.lh_2 {
  line-height: 2; }

.lh_18 {
  line-height: 1.8; }

.lh_12 {
  line-height: 1.2; }

.lh_1 {
  line-height: 1; }

.fw300 {
  font-weight: 300; }

.fw400 {
  font-weight: 400; }

.fw500 {
  font-weight: 500; }

.fw600 {
  font-weight: 600; }

.fw700 {
  font-weight: 700; }

.fw800 {
  font-weight: 800; }

.fw900 {
  font-weight: 900; }

.ibm-plex-sans-jp {
  font-family: "IBM Plex Sans JP", sans-serif; }

.kosugi-maru {
  font-family: "Kosugi Maru", sans-serif; }

.inter-tight {
  font-family: "Inter Tight", sans-serif; }

.fz22 {
  font-size: 2.2rem; }

.fz20 {
  font-size: 2rem; }

/***************************

object/project/news.scss

***************************/
.news01 {
  position: relative;
  width: 100%;
  padding: 60px 0;
  border-top: 2px solid #E8EDF2; }
  .news01:after {
    position: absolute;
    content: '';
    width: 30px;
    height: 2px;
    background: #65696B;
    left: calc((100% - 1200px) / 2);
    top: -2px; }

.news-content_head {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
  gap: 20px 0; }

.news-cat-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 35px; }

.news-cat-list .current a {
  position: relative;
  pointer-events: none;
  text-decoration: underline;
  text-underline-offset: 4px;
}
/*  .news-cat-list .current a:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    left: 0;
    top: 50%;
    background: #444D51; }*/

.news-cat-list a {
  font-weight: 500;
  letter-spacing: 0.08em; }

.news-list {
  width: 100%; }

.news-list_item {
  width: 100%;
  padding: 25px 0;
  border-bottom: 2px solid #dce0e4; }
  .news-list_item a {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px 50px 20px 0; }
    .news-list_item a:after {
      position: absolute;
      content: '\f054';
      font-family: "FontAwesome";
      color: transparent;
      width: 60px;
      height: 60px;
      border-radius: 100%;
      background: #444D51;
      right: 10px;
      top: 50%;
      translate: 0 -50%;
      transition: all .4s;
      display: flex;
      justify-content: center;
      align-items: center;
      scale: 0.1; }
    .news-list_item a:hover:after {
      scale: 1;
      color: #fff; }
  .news-list_item .data {
    display: flex;
    width: 250px;
    gap: 10px 30px; }
    .news-list_item .data .day {
      font-family: "Inter Tight", sans-serif;
      font-size: 1.2rem;
      font-weight: 600;
      letter-spacing: 0.08em; }
    .news-list_item .data .cat {
      font-size: 1.2rem;
      letter-spacing: 0.08em; }
      .news-list_item .data .cat:before {
        display: inline-block;
        content: '(';
        padding-right: 5px; }
      .news-list_item .data .cat:after {
        display: inline-block;
        content: ')';
        padding-left: 5px; }
  .news-list_item .title {
    width: calc(100% - 250px); }

.pagenavi-area {
  margin-top: 80px; }

@media screen and (max-width: 1230px) {
  .news01:after {
    left: 15px; } }
@media screen and (max-width: 768px) {
  .news01 {
    padding: 30px 0; }

  .news-content_head {
    margin-bottom: 50px; }

  .news-list_item {
    padding: 10px 0; }
    .news-list_item a {
      flex-wrap: wrap;
      padding: 10px 50px 10px 0; }
      .news-list_item a:after {
        width: 42px;
        height: 42px;
        scale: 0.15; }
    .news-list_item .title {
      width: 100%; }

  .pagenavi-area {
    margin-top: 40px; } }
/* detail */
.news-detail01 {
  position: relative;
  padding-top: 110px;
  width: 100%;
  border-top: 2px solid #E8EDF2; }
  .news-detail01:after {
    position: absolute;
    content: '';
    width: 30px;
    height: 2px;
    background: #65696B;
    left: calc((100% - 1200px) / 2);
    top: -2px; }

.news-detail-editor {
  max-width: 900px;
  width: 100%;
  margin: 0 auto 150px; }
  .news-detail-editor p {
    letter-spacing: 0.08em;
    line-height: 2.2; }
  .news-detail-editor ul li {
    position: relative;
    padding-left: 25px; }
    .news-detail-editor ul li:before {
      position: absolute;
      content: '';
      width: 4px;
      height: 4px;
      border-radius: 20px;
      left: 5px;
      background: #444D51;
      top: 15px; }

.btn-pageLink {
  position: relative;
  display: inline-block;
  min-width: 320px;
  padding: 20px 50px 20px 0;
  border-bottom: 1px solid #dce0e4;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  font-weight: 500; }
  .btn-pageLink:after {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 20px;
    background: #444D51;
    right: 10px;
    top: 50%;
    translate: 0 -50%;
    transition: all .4s; }
  .btn-pageLink:hover:after {
    width: 30px;
    height: 3px; }
  .btn-pageLink p {
    overflow: hidden; }
  .btn-pageLink:hover span {
    display: inline-block;
    animation: BtnPageLink .8s ease-in-out both; }

@keyframes BtnPageLink {
  0% {
    translate: 0 0; }
  49.9% {
    translate: 0 -100%; }
  50% {
    translate: 0 100%; }
  100% {
    translate: 0 0; } }
.btn-blankLink {
  position: relative;
  display: inline-block;
  min-width: 320px;
  padding: 20px 50px 20px 0;
  border-bottom: 1px solid #dce0e4;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  font-weight: 500; }
  .btn-blankLink:after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    background: url(./img/common/link.png);
    right: 10px;
    top: 50%;
    translate: 0 -50%;
    transition: all .4s; }
  .btn-blankLink:hover:after {
    right: 15px; }
  .btn-blankLink p {
    overflow: hidden; }
  .btn-blankLink:hover span {
    display: inline-block;
    animation: BtnPageLink .8s ease-in-out both; }

.btn-newsBack {
  display: block;
  width: 100%;
  text-align: center;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: #444D51;
  background: #EEF1F3;
  padding: 40px 20px; }
  .btn-newsBack:before {
    display: inline-block;
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 20px;
    background: #444D51;
    vertical-align: middle;
    margin-right: 10px;
    transition: all .4s; }
  .btn-newsBack:hover:before {
    width: 30px;
    height: 3px; }

@media screen and (max-width: 1230px) {
  .news-detail01:after {
    left: 15px; } }
@media screen and (max-width: 768px) {
  .news-detail01 {
    padding-top: 60px; }

  .news-detail-editor {
    margin-bottom: 70px; }

  .btn-pageLink,
  .btn-blankLink {
    padding: 10px 50px 10px 0; }

  .btn-newsBack {
    padding: 20px 10px; } }
@media screen and (max-width: 375px) {
  .btn-pageLink,
  .btn-blankLink {
    width: 100%;
    min-width: auto; } }
/***************************

object/project/works.scss

***************************/
.works {
  overflow: hidden; }

.works01 {
  width: 100%;
  padding: 60px 0;
  position: relative;
  border-top: 2px solid #E8EDF2; }
  .works01:after {
    position: absolute;
    content: '';
    width: 30px;
    height: 2px;
    background: #65696B;
    left: calc((100% - 1200px) / 2);
    top: -2px; }

.works-content-list {
  width: 100%; }

.works-content-list-block:not(:last-child) {
  margin-bottom: 150px; }

.works-content-swiperWrap {
  margin-bottom: 50px; }

.works-content-swiper {
  overflow: visible;
  padding-bottom: 30px; }

.works-content__swiper__pagerWrap {
  display: flex;
  align-items: center;
  max-width: 152px;
  width: 100%; }
  .works-content__swiper__pagerWrap .works-content__swiper-pagination,
  .works-content__swiper__pagerWrap .swiper-button-prev,
  .works-content__swiper__pagerWrap .swiper-button-next {
    position: static; }
  .works-content__swiper__pagerWrap .swiper-button-next,
  .works-content__swiper__pagerWrap .swiper-rtl .swiper-button-prev,
  .works-content__swiper__pagerWrap .swiper-button-prev,
  .works-content__swiper__pagerWrap .swiper-rtl .swiper-button-next {
    margin-top: 0; }
    .works-content__swiper__pagerWrap .swiper-button-next:after,
    .works-content__swiper__pagerWrap .swiper-rtl .swiper-button-prev:after,
    .works-content__swiper__pagerWrap .swiper-button-prev:after,
    .works-content__swiper__pagerWrap .swiper-rtl .swiper-button-next:after {
      font-size: 1.2rem;
      color: #444D51; }
  .works-content__swiper__pagerWrap .works-content__swiper-pagination {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto; }
  .works-content__swiper__pagerWrap .swiper-pagination-bullet {
    width: 100%;
    max-width: 100px;
    height: 1px;
    background: #DCE0E4;
    border-radius: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 1; }
    .works-content__swiper__pagerWrap .swiper-pagination-bullet:after {
      content: "";
      width: 0%;
      height: 1px;
      background: #444D51;
      position: absolute;
      left: 0;
      top: 0; }
  .works-content__swiper__pagerWrap .swiper-pagination-bullet-active {
    z-index: 5; }
    .works-content__swiper__pagerWrap .swiper-pagination-bullet-active:after {
      animation: mvMeter 6s forwards; }
  @media screen and (min-width: 769px) {
    .works-content__swiper__pagerWrap {
      position: absolute;
      bottom: -10px;
      right: 0; } }
  @media screen and (max-width: 768px) {
    .works-content__swiper__pagerWrap {
      margin: 20px auto 0; }
    .works-content-swiper{
      padding-bottom: 20px;
    }
  }

.works-content-dataBlock {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 30px; }

.works-content-data {
  width: 50%; }

.works-content-data-name {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 1.2; }

.works-content-data-day {
  font-family: "Inter Tight", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: #444D51;
  margin-top: 5px; }

.works-content-data-tag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 25px; }
  .works-content-data-tag li {
    position: relative;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    line-height: 1.3; }
    .works-content-data-tag li:not(:last-child) {
      padding-right: 20px; }
      .works-content-data-tag li:not(:last-child):after {
        position: absolute;
        content: '/';
        right: 5px;
        top: 50%;
        translate: 0 -50%; }

.works-content-detail {
  max-width: 560px;
  width: 46%; }

.works-content-data-designer {
  margin-top: 10px; }
  .works-content-data-designer div {
    display: flex;
    gap: 10px; }
  .works-content-data-designer dt {
    font-family: "Inter Tight", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.08em; }
  .works-content-data-designer dd {
    font-size: 1.2rem;
    letter-spacing: 0.08em; }
    .works-content-data-designer dd a {
      text-decoration: underline; }

@media screen and (max-width: 1230px) {
  .works01:after {
    left: 15px; } }
@media screen and (max-width: 768px) {
  .works01 {
    padding: 30px 0; }

  .works-content-swiperWrap {
    margin-bottom: 0px; }

  .works-content-list-block:not(:last-child) {
    margin-bottom: 80px; }

  .works-content-dataBlock {
    flex-wrap: wrap; }

  .works-content-data {
    width: 100%; }

  .works-content-detail {
    max-width: 100%;
    width: 100%; } }
/***************************

object/project/company.scss

***************************/
.campany .subpage .subpage-inner {
  background: url(./img/company/main.jpg) no-repeat center center;
  background-size: 100% auto; }

.campany section:not(.subpage) {
  width: 100%;
  padding: 60px 0;
  position: relative;
  border-top: 2px solid #E8EDF2; }
  .campany section:not(.subpage):not(:last-child) {
    margin-bottom: 300px; }
  .campany section:not(.subpage):after {
    position: absolute;
    content: '';
    width: 30px;
    height: 2px;
    background: #65696B;
    left: calc((100% - 1200px) / 2);
    top: -2px; }

.company-message-imageWrap {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 100px auto;
  overflow: visible;
  height: 648px;
}

.company-message-imageWrap img {
  object-fit: cover;
  /*width: 100%;*/
  height: 100%;
  max-width: initial;
  object-position: 30%;
  width: calc(100vw - ((100vw - 1200px) / 2));
}

.company-message-imageWrap-txt-block{
  position: absolute;
  bottom: 65px;
  left: 8%;
  z-index: 1;
}

.company-message-imageWrap-catch{
  margin-bottom: 170px;
  font-weight: 500;
}

.company-message-commentWrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 25px 80px; }

.company-message-comment-block p {
  line-height: 2.5; }
  .company-message-comment-block p:not(:last-child) {
    margin-bottom: 25px; }

.company-identity-contentWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 170px 20px;
  gap: 30px 140px;
  margin-top: 100px;
  margin-bottom: 100px;
  background: url(./img/company/identity-back.jpg) no-repeat center center/cover;
  background-size: 100% 100%; }

.company-identity-content-text,
.company-identity-content-logo {
  max-width: 400px;
  width: 100%; }

.company-design-content-title div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px 20px; }
.company-design-content-title dt {
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4; }
.company-design-content-title dd {
  line-height: 2;
  letter-spacing: 0.08em; }

.company-design-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  margin-bottom: 40px; }

.company-design-content_item {
  max-width: 340px;
  width: 100%; }

.company-design-content_item_image {
  margin-bottom: 20px; }

.company-design-content-block {
  width: 100%;
  margin-top: 80px; }
  .company-design-content-block li {
    background: #fff;
    border: 1px solid #DCE0E4;
    border-radius: 5px;
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    gap: 20px; }
    .company-design-content-block li:not(:last-child) {
      margin-bottom: 20px; }

.company-design-content-block_text {
  max-width: 650px;
  width: 100%; }

.company-history {
  width: 100%;
  margin-top: 70px; }

.company-history-block {
  width: 100%;
  display: flex;
  padding: 25px 0;
  border-bottom: 1px solid #dce0e4; }
  .company-history-block dt {
    width: 240px;
    font-family: "Inter Tight", sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    line-height: 2; }
  .company-history-block dd {
    width: calc(100% - 240px);
    line-height: 2; }

.company-infomation {
  width: 100%;
  margin-top: 70px; }

.company-infomation-block {
  width: 100%;
  display: flex;
  padding: 25px 0;
  border-bottom: 1px solid #dce0e4; }
  .company-infomation-block dt {
    width: 250px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 2; }
  .company-infomation-block dd {
    width: calc(100% - 250px);
    line-height: 2; }

.company-infomation-addr li {
  display: flex;
  flex-wrap: wrap; }
  .company-infomation-addr li p:first-child {
    width: 170px; }
  .company-infomation-addr li p:last-child {
    width: calc(100% - 170px); }

.company-access-map {
  width: 100%; }

.company-access-map-block {
  margin-top: 100px; }

.access-mapWrap {
  position: relative;
  margin-top: 50px;
  padding-top: 50%; }
  .access-mapWrap iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; }

.access-addr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 40px; }

.btn-mapLink {
  display: block;
  position: relative;
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em; }
  .btn-mapLink:after {
    display: inline-block;
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 20px;
    background: #444D51;
    margin-left: 5px;
    vertical-align: middle;
    transition: all .6s; }
  .btn-mapLink:hover:after {
    width: 30px;
    height: 3px; }

@media screen and (max-width: 1920px) {
  .campany .subpage .subpage-inner {
    background-size: auto 100%; } }
@media screen and (max-width: 1230px) {
  .campany section:not(.subpage):after {
    left: 15px; } }
@media screen and (max-width: 1215px) {
  .company-message-imageWrap {
    padding-left: 15px; }
    .company-message-imageWrap img {
      max-width: 100%;
      width: 100%; } }
@media screen and (max-width: 768px) {
  .campany section:not(.subpage) {
    padding: 30px 0; }
    .campany section:not(.subpage):not(:last-child) {
      margin-bottom: 100px; }

  .company-message-imageWrap {
    margin: 50px auto; }

  .company-message-commentWrap {
    flex-wrap: wrap; }

  .company-identity-contentWrap {
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 80px 20px; }

  .company-identity-content-text,
  .company-identity-content-logo {
    max-width: 100%; }

  .company-identity-content-logo {
    text-align: center; }

  .company-design-content {
    flex-wrap: wrap;
    gap: 20px 0; }

  .company-design-content_item {
    max-width: 100%;
    width: 48%; }

  .company-design-content-block li {
    flex-wrap: wrap;
    padding: 25px 30px; }

  .company-history {
    margin-top: 40px; }

  .company-history-block {
    flex-wrap: wrap;
    gap: 5px;
    padding: 15px 0; }
    .company-history-block dt {
      width: 100%; }
    .company-history-block dd {
      width: 100%; }

  .company-infomation {
    margin-top: 40px; }

  .company-infomation-block {
    flex-wrap: wrap;
    gap: 5px;
    padding: 15px 0; }
    .company-infomation-block dt {
      width: 100%; }
    .company-infomation-block dd {
      width: 100%; }

  .company-access-map-block {
    margin-top: 50px; }

  .access-mapWrap {
    margin-top: 30px; }

  .access-addr {
    margin-top: 20px; } }

@media screen and (max-width: 550px) {
  .company-message-imageWrap {
    /*height: 300px;*/
    height: 400px;
  }

  .company-message-imageWrap img {
    object-position: 40%;
  }

  .company-message-imageWrap-catch{
    margin-bottom: 20px;
    font-size: clamp(2rem, 3vw, 2.6rem) !important;
  }

  .company-message-imageWrap-txt-block{
    text-shadow: 1px 1px 1px #fff;
  }
}
@media screen and (max-width: 450px) {
  .company-design-content_item {
    width: 100%; }

  .company-design-content_item_image img {
    width: 100%; }

  .company-infomation-addr li {
    display: block; }

  .access-mapWrap {
    padding-top: 70%; } }
.hdg_01 {
  position: relative;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2;
  padding-left: 30px; }
  .hdg_01:before {
    position: absolute;
    content: '';
    width: 20px;
    height: 1px;
    background: #929BA4;
    left: 0;
    top: 13px; }

/***************************

object/utility/display.scss

***************************/
.relative {
  position: relative; }

.inline {
  display: inline; }

.inline-block {
  display: inline-block; }

.block {
  display: block; }

.none {
  display: none; }

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.flex-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-row-rev {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }

.flex-col {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col;
  flex-direction: col; }

.flex-col-rev {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col-reverse;
  flex-direction: col-reverse; }

.flex-nowrap {
  -ms-flex-wrap: none;
  flex-wrap: nowrap; }

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse; }

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start; }

.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end; }

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around; }

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; }

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end; }

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline; }

.flex-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto; }

.flex-item0 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto; }

@media screen and (min-width: 769px) {
  .sp {
    display: none; } }
@media screen and (max-width: 768px) {
  .pc {
    display: none; } }
 /***************************

object/utility/_background.scss

***************************/
 /***************************

object/utility/_link.scss

***************************/
.link--under-line {
  text-decoration: underline; }

.link--under-line:hover {
  text-decoration: none; }

 /***************************

object/utility/_text.scss

***************************/
.fv {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 3px; }

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

.t-left {
  text-align: left; }

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

@media screen and (min-width: 451px) {
  .t-center_pc {
    text-align: center; }

  .t-left_pc {
    text-align: left; }

  .t-right_pc {
    text-align: right; } }
.vat {
  vertical-align: top; }

.vam {
  vertical-align: middle; }

.vab {
  vertical-align: bottom; }

.fs-10 {
  font-size: 10px; }

.fs-11 {
  font-size: 11px; }

.fs-12 {
  font-size: 12px; }

.fs-13 {
  font-size: 13px; }

.fs-14 {
  font-size: 14px; }

.fs-15 {
  font-size: 15px; }

.fs-16 {
  font-size: 16px; }

.fs-17 {
  font-size: 17px; }

.fs-18 {
  font-size: 18px; }

.fs-19 {
  font-size: 19px; }

.fs-20 {
  font-size: 20px; }

.fs-21 {
  font-size: 21px; }

.fs-22 {
  font-size: 22px; }

.fs-23 {
  font-size: 23px; }

.fs-24 {
  font-size: 24px; }

.fs-25 {
  font-size: 25px; }

.fs-26 {
  font-size: 26px; }

.fs-27 {
  font-size: 27px; }

.fs-28 {
  font-size: 28px; }

.fs-29 {
  font-size: 29px; }

.fs-30 {
  font-size: 30px; }

.fs-31 {
  font-size: 31px; }

.fs-32 {
  font-size: 32px; }

.fs-33 {
  font-size: 33px; }

.fs-34 {
  font-size: 34px; }

.fs-35 {
  font-size: 35px; }

.fs-36 {
  font-size: 36px; }

.f-bold {
  font-weight: bold; }

.f-normal {
  font-weight: 500; }

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

.indent--2 {
  text-indent: -2em;
  padding-left: 2em; }

.indent--3 {
  text-indent: -3em;
  padding-left: 3em; }

.indent--4 {
  text-indent: -4em;
  padding-left: 4em; }

.indent--5 {
  text-indent: -5em;
  padding-left: 5em; }

.fc--white {
  color: #fff; }

.fc--black {
  color: #444D51; }

.fc--red {
  color: red; }

.txtdeco-none {
  text-decoration: none; }

 /***************************

object/utility/spases.scss

***************************/
.m-0 {
  margin: 0; }

.mb-0 {
  margin-bottom: 0; }

.mb10 {
  margin-bottom: 10px; }

.mt-190 {
  margin-top: 190px; }

.mt-100 {
  margin-top: 100px; }

.mb-100 {
  margin-bottom: 100px; }

.mb150 {
  margin-bottom: 150px; }

.mb300 {
  margin-bottom: 10px; }

.mt-0 {
  margin-top: 0px; }

.mt-5 {
  margin-top: 5px; }

.mt-10 {
  margin-top: 10px; }

.mt-15 {
  margin-top: 15px; }

.mt-20 {
  margin-top: 20px; }

.mt-25 {
  margin-top: 25px; }

.mt-30 {
  margin-top: 30px; }

.mt-35 {
  margin-top: 35px; }

.mt-40 {
  margin-top: 40px; }

.mt-45 {
  margin-top: 45px; }

.mt-50 {
  margin-top: 50px; }

.mt-55 {
  margin-top: 55px; }

.mt-60 {
  margin-top: 60px; }

.mt-65 {
  margin-top: 65px; }

.mt-70 {
  margin-top: 70px; }

.mt-75 {
  margin-top: 75px; }

.mt-80 {
  margin-top: 80px; }

.mt-85 {
  margin-top: 85px; }

.mt-90 {
  margin-top: 90px; }

.mt-95 {
  margin-top: 95px; }

.mt-100 {
  margin-top: 100px; }

.mb-0 {
  margin-bottom: 0px; }

.mb-5 {
  margin-bottom: 5px; }

.mb-10 {
  margin-bottom: 10px; }

.mb-15 {
  margin-bottom: 15px; }

.mb-20 {
  margin-bottom: 20px; }

.mb-25 {
  margin-bottom: 25px; }

.mb-30 {
  margin-bottom: 30px; }

.mb-35 {
  margin-bottom: 35px; }

.mb-40 {
  margin-bottom: 40px; }

.mb-45 {
  margin-bottom: 45px; }

.mb-50 {
  margin-bottom: 50px; }

.mb-55 {
  margin-bottom: 55px; }

.mb-60 {
  margin-bottom: 60px; }

.mb-65 {
  margin-bottom: 65px; }

.mb-70 {
  margin-bottom: 70px; }

.mb-75 {
  margin-bottom: 75px; }

.mb-80 {
  margin-bottom: 80px; }

.mb-85 {
  margin-bottom: 85px; }

.mb-90 {
  margin-bottom: 90px; }

.mb-95 {
  margin-bottom: 95px; }

.mb-100 {
  margin-bottom: 100px; }

.mr-0 {
  margin-right: 0px; }

.mr-5 {
  margin-right: 5px; }

.mr-10 {
  margin-right: 10px; }

.mr-15 {
  margin-right: 15px; }

.mr-20 {
  margin-right: 20px; }

.mr-25 {
  margin-right: 25px; }

.mr-30 {
  margin-right: 30px; }

.mr-35 {
  margin-right: 35px; }

.mr-40 {
  margin-right: 40px; }

.mr-45 {
  margin-right: 45px; }

.mr-50 {
  margin-right: 50px; }

.mr-55 {
  margin-right: 55px; }

.mr-60 {
  margin-right: 60px; }

.mr-65 {
  margin-right: 65px; }

.mr-70 {
  margin-right: 70px; }

.mr-75 {
  margin-right: 75px; }

.mr-80 {
  margin-right: 80px; }

.mr-85 {
  margin-right: 85px; }

.mr-90 {
  margin-right: 90px; }

.mr-95 {
  margin-right: 95px; }

.mr-100 {
  margin-right: 100px; }

.ml-0 {
  margin-left: 0px; }

.ml-5 {
  margin-left: 5px; }

.ml-10 {
  margin-left: 10px; }

.ml-15 {
  margin-left: 15px; }

.ml-20 {
  margin-left: 20px; }

.ml-25 {
  margin-left: 25px; }

.ml-30 {
  margin-left: 30px; }

.ml-35 {
  margin-left: 35px; }

.ml-40 {
  margin-left: 40px; }

.ml-45 {
  margin-left: 45px; }

.ml-50 {
  margin-left: 50px; }

.ml-55 {
  margin-left: 55px; }

.ml-60 {
  margin-left: 60px; }

.ml-65 {
  margin-left: 65px; }

.ml-70 {
  margin-left: 70px; }

.ml-75 {
  margin-left: 75px; }

.ml-80 {
  margin-left: 80px; }

.ml-85 {
  margin-left: 85px; }

.ml-90 {
  margin-left: 90px; }

.ml-95 {
  margin-left: 95px; }

.ml-100 {
  margin-left: 100px; }

.p-0 {
  padding: 0; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pb-0 {
  padding-bottom: 0px; }

.pb-5 {
  padding-bottom: 5px; }

.pb-10 {
  padding-bottom: 10px; }

.pb-15 {
  padding-bottom: 15px; }

.pb-20 {
  padding-bottom: 20px; }

.pb-25 {
  padding-bottom: 25px; }

.pb-30 {
  padding-bottom: 30px; }

.pb-35 {
  padding-bottom: 35px; }

.pb-40 {
  padding-bottom: 40px; }

.pb-45 {
  padding-bottom: 45px; }

.pb-50 {
  padding-bottom: 50px; }

.pb-55 {
  padding-bottom: 55px; }

.pb-60 {
  padding-bottom: 60px; }

.pb-65 {
  padding-bottom: 65px; }

.pb-70 {
  padding-bottom: 70px; }

.pb-75 {
  padding-bottom: 75px; }

.pb-80 {
  padding-bottom: 80px; }

.pb-85 {
  padding-bottom: 85px; }

.pb-90 {
  padding-bottom: 90px; }

.pb-95 {
  padding-bottom: 95px; }

.pb-100 {
  padding-bottom: 100px; }

.pr-0 {
  padding-right: 0px; }

.pr-5 {
  padding-right: 5px; }

.pr-10 {
  padding-right: 10px; }

.pr-15 {
  padding-right: 15px; }

.pr-20 {
  padding-right: 20px; }

.pr-25 {
  padding-right: 25px; }

.pr-30 {
  padding-right: 30px; }

.pr-35 {
  padding-right: 35px; }

.pr-40 {
  padding-right: 40px; }

.pr-45 {
  padding-right: 45px; }

.pr-50 {
  padding-right: 50px; }

.pr-55 {
  padding-right: 55px; }

.pr-60 {
  padding-right: 60px; }

.pr-65 {
  padding-right: 65px; }

.pr-70 {
  padding-right: 70px; }

.pr-75 {
  padding-right: 75px; }

.pr-80 {
  padding-right: 80px; }

.pr-85 {
  padding-right: 85px; }

.pr-90 {
  padding-right: 90px; }

.pr-95 {
  padding-right: 95px; }

.pr-100 {
  padding-right: 100px; }

.pl-0 {
  padding-left: 0px; }

.pl-5 {
  padding-left: 5px; }

.pl-10 {
  padding-left: 10px; }

.pl-15 {
  padding-left: 15px; }

.pl-20 {
  padding-left: 20px; }

.pl-25 {
  padding-left: 25px; }

.pl-30 {
  padding-left: 30px; }

.pl-35 {
  padding-left: 35px; }

.pl-40 {
  padding-left: 40px; }

.pl-45 {
  padding-left: 45px; }

.pl-50 {
  padding-left: 50px; }

.pl-55 {
  padding-left: 55px; }

.pl-60 {
  padding-left: 60px; }

.pl-65 {
  padding-left: 65px; }

.pl-70 {
  padding-left: 70px; }

.pl-75 {
  padding-left: 75px; }

.pl-80 {
  padding-left: 80px; }

.pl-85 {
  padding-left: 85px; }

.pl-90 {
  padding-left: 90px; }

.pl-95 {
  padding-left: 95px; }

.pl-100 {
  padding-left: 100px; }

 /***************************

object/utility/_font.scss

***************************/
.fv {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 3px; }

.uppercase {
  text-transform: uppercase; }

.letterspace01 {
  letter-spacing: 2px; }

.letterspace02 {
  letter-spacing: 4px; }

.letterspace03 {
  letter-spacing: 1px; }

.lineheight01 {
  line-height: 1.3; }

.vertical {
  writing-mode: vertical-rl; }

.zen-kaku-gothic-new {
  font-family: "Zen Kaku Gothic New", sans-serif; }

.zen-old-mincho-regular {
  font-family: "Zen Old Mincho", serif; }

.inter {
  font-family: "Inter", sans-serif; }

.poppins {
  font-family: "Poppins", sans-serif; }


/************* 20250319 ADDED ***************/
.container_xs{
  width: min(100%, 930px);
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.l-height-250{
  line-height: 2.5;
}

.f-green{
  color: #22993F;
}

.f-gray{
  color: #D2DADE;
}

.wd-100{
  width: 100%;
}

.t-vertical{
  text-orientation: sideways;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
}

.grid{
  display: grid;
}

.grid-two-column{
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}

.grid-three-column{
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .grid-three-column{
    grid-template-columns: repeat(2, 1fr);
  }
}

.t-center .btn-pageLink{
  text-align: left;
}

.btn-triangle{
  display: block;
  font-size: 1.4rem;
  line-height: 1.4;
  border-top: 1px solid #DCE0E4;
  border-bottom: 1px solid #DCE0E4;
  position: relative;
  padding: 25px 0 25px 30px;
  width: min(100%, 420px);
  background: url(./img/common/underLink.png) no-repeat left center;

  & + .btn-triangle{
    border-top: none;
  }
}

.section-border{
  margin-top: 360px;
  padding: 60px 0 0;
  position: relative;
  border-top: 2px solid #E8EDF2;

  &::before{
    position: absolute;
    content: '';
    width: 30px;
    height: 2px;
    background: #65696B;
    left: calc((100% - 1200px) / 2);
    top: -2px;
  }

  &:not(:first-of-type){
    margin-top: 360px;
  }
}

.counter-reset{
  counter-reset: items;
}

.hdg-counter{
  font-size: 2rem;
  font-weight: 500;
  position: relative;
  padding-left: 35px;

  &::before{
    counter-increment: items;
    content: "("counter(items, decimal-leading-zero)")";
    display: block;
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 1.1rem;
  }
}

.list-line-item {
  width: 100%;
  display: flex;
  padding: 25px 0;
  border-bottom: 1px solid #dce0e4;
}

.list-line-item-ttl {
  width: 240px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 2;
}

.list-line-item-detail {
  width: calc(100% - 240px);
  line-height: 2;
}

.box-border{
  padding: 30px 40px;
  border: 1px solid #DCE0E4;
}

.footer{
  border-top: 1px solid #DCE0E4;
}

.main.-is-child{
  margin-bottom: 160px;
}

@media screen and (max-width: 1920px) {
  .subpage .subpage-inner.-is-mv{
    background-size: auto 100% !important;
  }
}

@media screen and (max-width: 1230px) {
  .section-border::before {
    left: 15px;
  }
}

@media screen and (max-width: 550px) {
  .main.-is-child{
    margin-bottom: 100px;
  }
  .section-border:not(:first-of-type){
    margin-top: 100px;
  }
  .list-line-item{
    flex-wrap: wrap;
  }
  .list-line-item-ttl,
  .list-line-item-detail{
    width: 100%;
  }
}

/***************************

Service

***************************/
.service {
  .subpage .subpage-inner {
    background: url(./img/service/main.jpg) no-repeat center center;
    background-size: 100% auto;
  }
}

.service-intro{
  margin-top: 250px;

  .btn-triangle:first-of-type{
    margin-top: 130px;
  }

  [data-img="1"]{
    margin-top: 30px;
  }

  [data-img="3"]{
    position: relative;
    top: 160px;

    img:nth-of-type(2){
      position: relative;
      bottom: 80px;
      left: -80px;
      z-index: 1;
      display: block;
    }
  }
}

.service__intro_block{
  gap: 120px;
}

.service__intro_txt_block{
  width: min(50%, 450px);
  position: relative;
  top: 220px;
}

.service__feature_block{
  &:not(:first-of-type){
    margin-top: 300px;
  }

  .grid-two-column{
    margin-bottom: 100px;
  }
}

.service__feature_catch_txt{
  margin: 100px 0 150px;
}

.service__flow_list{
  gap: 50px 60px;
}

.video-wrapper{
  position: relative;

  &::before{
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
  }

  &::after{
    content: url('./img/service/icn_play.svg');
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    z-index: 1;
    pointer-events: none;
    display: inline-block;
    transform: translateY(-50%);
  }
}

.service__flow_list{
  margin-top: 100px;
  gap: 100px 67px;
  grid-template-columns: repeat(3, 1fr);
}

.service__flow_item{
  position: relative;
  /*padding-left: 30px;*/

  .t-vertical{
    font-size: 1.2rem;
    position: absolute;
    top: 0;
    left: 0;
  }

  &:nth-child(2),
  &:nth-child(5){
    margin-top: 40px;
  }

  &:nth-child(3),
  &:nth-child(6){
    margin-top: 80px;
  }
}
.service__flow_item__image{
  width: max-content;
  max-width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}




@media screen and (max-width: 980px)and (min-width: 551px) {
  .service__flow_list{
    position: relative;
    &:before{
      content: "";
      width: 74%;
      max-width: 700px;
      height: 3px;
      background: url(./img/service/flow_border.png);
      position: absolute;
      left: 23.2%;
      top: 341px;
    }
    &:after{
      content: "";
      width: 74%;
      max-width: 700px;
      height: 3px;
      background: url(./img/service/flow_border.png);
      position: absolute;
      left: 23.2%;
      bottom: 342px;
    }
  }
  .service__flow_item{
    h4{
      position: relative;
      z-index: 2;
      height: 40.5px;
    }
    &:nth-of-type(1):after,
    &:nth-of-type(3):after,
    &:nth-of-type(5):after{
      content: "";
      width: 100%;
      height: 3px;
      background: url(./img/service/flow_border.png);
      position: absolute;
      left: 230px;
      top: 90px;
      transform-origin: left;
      transform: rotate(8deg);
    }
    &:nth-of-type(2):before,
    &:nth-of-type(4):before{
      content: "";
      width: 3px;
      height: 200px;
      background: url(./img/service/flow_border_v.png);
      position: absolute;
      right: 19px;
      top: 105px;
    }
    &:nth-of-type(2):after,
    &:nth-of-type(4):after{
      content: "";
      width: 110px;
      height: 3px;
      background: url(./img/service/flow_border.png);
      position: absolute;
      right: 19px;
      top: 90px;
      transform-origin: left;
      transform: rotate(8deg);
    }
    &:nth-of-type(3):before,
    &:nth-of-type(5):before{
      content: "";
      width: 3px;
      height: 145px;
      background: url(./img/service/flow_border_v.png);
      position: absolute;
      left: 50%;
      top: -50px;
    }
  }
}


@media screen and (min-width: 981px) {
  .service__flow_list{
    position: relative;
    &:before{
      content: "";
      width: 83%;
      max-width: 1000px;
      height: 3px;
      background: url(./img/service/flow_border.png);
      position: absolute;
      left: 15%;
      top: 50%;
    }
  }
  .service__flow_item{
    &:nth-of-type(1):after,
    &:nth-of-type(2):after,
    &:nth-of-type(4):after,
    &:nth-of-type(5):after{
      content: "";
      width: 100%;
      height: 3px;
      background: url(./img/service/flow_border.png);
      position: absolute;
      left: 230px;
      top: 90px;
      transform-origin: left;
      transform: rotate(8deg);
    }
    &:nth-of-type(3):before{
      content: "";
      width: 3px;
      height: 200px;
      background: url(./img/service/flow_border_v.png);
      position: absolute;
      right: 19px;
      top: 105px;
    }
    &:nth-of-type(3):after{
      content: "";
      width: 110px;
      height: 3px;
      background: url(./img/service/flow_border.png);
      position: absolute;
      right: 19px;
      top: 90px;
      transform-origin: left;
      transform: rotate(8deg);
    }
    &:nth-of-type(4):before{
      content: "";
      width: 3px;
      height: 145px;
      background: url(./img/service/flow_border_v.png);
      position: absolute;
      left: 50%;
      top: -50px;
    }
  }
}
@media screen and (max-width: 550px) {
  .service__flow_item{
    &:nth-of-type(n+2):before{
      content: "";
      width: 3px;
      height: 160px;
      background: url(./img/service/flow_border_v.png);
      position: absolute;
      left: 50%;
      top: -105px;
    }
  }
}

@media screen and (max-width: 1280px) {
  .service__intro_block{
    flex-wrap: wrap;
    gap: 30px 15%;

    [data-img="1"]{
      order: 1;
      width: 20%;
    }

    [data-img="2"]{
      order: 2;
      width: 20%;
    }

    [data-img="3"]{
      order: 3;
      width: 20%;
    }
  }
  .service__intro_txt_block{
    order: 4;
    width: 100%;
    padding: 0 15px;
    top: 0;
    margin-top: 130px;
  }
}

@media screen and (max-width: 980px) {
  .service__flow_list{
    grid-template-columns: repeat(2, 1fr);
  }
  .service__flow_item{
    &:nth-child(4),
    &:nth-child(6){
      margin-top: 40px;
    }

    &:nth-child(3),
    &:nth-child(5){
      margin-top: 0;
    }
  }
}

@media screen and (max-width: 768px) {
  .service-intro{
    margin-top: 100px;
  }
  .service__feature_txt_block{
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 550px) {
  .service__intro_block{
    [data-img="1"]{
      order: 2;
      width: 30%;
    }
    [data-img="2"]{
      order: 1;
      width: 100%;
      text-align: center;

      img{
        width: 30%;
      }
    }
    [data-img="3"]{
      width: 40%;
    }
  }
  .service__feature_block{
    &:not(:first-of-type){
      margin-top: 100px;
    }

    .grid-two-column{
      margin-bottom: 50px;
    }
    .grid-three-column{
      margin-bottom: 50px;
    }
  }
  .service__flow_list{
    grid-template-columns: 1fr;
  }
  .service__flow_item{
    margin-top: 0 !important;
  }
}

/***************************

Designer

***************************/
.designer {
  .subpage .subpage-inner {
    background: url(./img/designer/main.jpg) no-repeat center center;
    background-size: 100% auto;
  }
}

.designer-top{
  /*padding-top: 200px;*/
  padding-top: 110px;
}

.designer__text{
  font-size: 1.6rem;
  margin-bottom: 80px;
}
.designer__text:has(+ .designer__text){
  margin-bottom: 20px;
}

.designer__list{
  /*margin-top: 200px;*/
  gap: 112px 150px;
}

.designer__item{
  .grid-two-column{
    grid-template-columns: 1fr min(45%, 160px);
  }
}

.designer__item_name{
  margin-top: 8px;
  line-height: 1.3;
}

.designer__item_url{
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: 0;
  font-family: "Inter", sans-serif;
}

@media screen and (min-width: 769px) {
  .designer__item:nth-of-type(even){
    position: relative;
    top: 100px;
  }
}

@media screen and (max-width: 768px) {
  .designer-top{
    padding-top: 150px;
  }
  .designer__list{
    grid-template-columns: 1fr;
    /*margin-top: 150px;*/
  }
  .designer__text{
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 550px) {
  .designer__item{
    .grid-two-column{
      gap: 10px;
      grid-template-columns: 1fr;
    }
  }
  .designer__item__logo img{
    max-width: 170px;
  }
}

/***************************

Designer detail

***************************/
.designer-detail{
  .section-border{
    margin-top: 100px;
  }
}

.designer__detail_intro_block{
  grid-template-columns: min(40%, 400px) min(60%, 712px);
}

.designer__detail_work_item:not(:last-of-type){
  margin-bottom: 80px;
}

.designer__detail_info_block{
  margin: 120px 0 150px;
  grid-template-columns: 200px 1fr;
  gap: 30px 80px;

  .designer__item_url{
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 980px) {
  .designer__detail_intro_block{
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .designer__detail_work_item:not(:last-of-type){
    margin-bottom: 40px;
  }
  .designer__detail_info_block{
    margin: 70px 0 100px;
    grid-template-columns: 1fr;
  }
}

/***************************

Recruit

***************************/
.recruit {
  .subpage .subpage-inner {
    background: url(./img/recruit/main.jpg) no-repeat center center;
    background-size: 100% auto;
  }
  .swiper-container{
    margin-top: 100px;
    overflow: hidden;
  }
  .swiper-wrapper {
    transition-timing-function: linear;
  }
  .swiper-slide{
    max-width: 45%;
    width: max-content;
  }
  [data-slide-item="2"],
  [data-slide-item="4"],
  [data-slide-item="6"]{
    margin-top: 144px;
  }
  [data-slide-item="3"]{
    margin-top: 27px;
  }
  [data-slide-item="5"]{
    margin-top: 49px;
  }
}

.recruit-intro{
  margin-top: 0 !important;

  .zen-old-mincho-regular{
    margin-bottom: 100px;
  }
  .grid-two-column{
    grid-template-columns: min(100%, 250px) min(55%, 650px);
  }
  .hdg_01{
    margin: 150px 0 55px;
  }
  .btn-type01{
    width: min(100%, 320px);
  }
}
@media screen and (max-width: 768px) {
  .recruit-intro{
    .hdg_01{
      margin: 50px 0 55px;
    }
  }
}

.recruit__intro_list{
  margin-top: 100px;
  gap: 30px;
}

.recruit__intro_item{
  position: relative;
  text-align: center;

  &:nth-of-type(even){
    position: relative;
    top: 100px;
  }
}

.recruit__intro_item_inner{
  padding: 20px;
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-40%);
}

.recruit-info{
  .hdg_01{
    margin: 100px 0 55px;
  }
  .btn-type01{
    width: min(100%, 320px);
  }
}

@media screen and (max-width: 768px) {
  .recruit {
    .grid-two-column{
      grid-template-columns: 1fr;
    }
    [data-slide-item="2"],
    [data-slide-item="4"],
    [data-slide-item="6"]{
      margin-top: 70px;
    }
  }
  .recruit__intro_item{
    width: 100%;
    top: 0 !important;
  }
}

.service__anchor{
  background: #F6F8F9;
  justify-content: flex-start;
  padding: 30px 40px;
}

.designer__item__profileHdg{
  text-decoration: underline;
  font-size: 1.1rem;
  font-family: "Inter Tight", sans-serif;
  text-underline-offset: 5px;
  margin-bottom: 10px;
  margin-top: 30px;
}
.designer__item__profile{
  line-height: 1.6
}
.designer__item{
  .btn-type01{
    max-width: 345px;
    margin-top: 30px;
  }
}
.designer__item__hidden{
  display: none;
}
.recruit .subpage {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .recruit .subpage {
    margin-bottom: 60px;
  }
}

.service__feature_block{
  .btn-type01{
    display: inline-block;
    width: 100%;
    max-width: 320px;
    text-align: left;
  }
}