@charset "UTF-8";	
/**{
	outline: solid red;
}*/
/* html */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.body-wrap{
	overflow-x: hidden;
}

html {
  line-height: 1.15;
  font-synthesis: none;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: 100%;
   scroll-padding-top: 90px;
}

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

em, b, strong {
  font-weight: 600;
  font-style: normal;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

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

iframe {
  vertical-align: bottom;
}

small {
  font-size: 85%;
  font-weight: inherit;
}

ruby {
  line-height: 2.5;
  margin-bottom: 0.5em;
}

rt {
  font-size: 60%;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.6;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
}

textarea {
  overflow: auto;
}

a {
  background: transparent;
    color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover,
a:active {
  color: inherit;
}

a:focus,
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}



@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #f2eee7;
    --color-bg-gray: #ebe7e0;
    --color-main: #fffe3e;
  }
}
html {
  font-size: 16px;
  line-height: 1.6;
  scroll-padding-top: 120px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  -webkit-tap-highlight-color: transparent;
}



:root {
  --color-text: #131313;
  --color-text-gray: #7e7c77;
  --color-line: rgba( 163, 159, 139, .4 );
  --color-bg: #DCD1C6;
  --color-bg-gray: #f1efeb;
  --color-main: #769CAF;
  --color-main2: #ff4d4d;
	--color-main3: #7E7D7D;
	 --scrollbar: 0;
}

$breakpoints: (
  'sm': (min-width: 576px),
  'md': (min-width: 768px),
  'lg': (min-width: 992px),
  'xl': (min-width: 1200px),
  'xxl': (min-width: 1400px)
) !default;


body.is-active .slide-up,
body.is-active .slide-down,
body.is-active .slide-right,
body.is-active .slide-left {
  -webkit-transition: opacity 0.7s 0.2s, -webkit-transform 0.7s 0.2s;
  transition: opacity 0.7s 0.2s, -webkit-transform 0.7s 0.2s;
  transition: opacity 0.7s 0.2s, transform 0.7s 0.2s;
  transition: opacity 0.7s 0.2s, transform 0.7s 0.2s, -webkit-transform 0.7s 0.2s;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, main, nav, section, summary {
  display: block;
}
body {
  color: var(--color-text);
  background-color: var(--color-bg);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
	
}

h1, h2, h3, h4, h5, h6, strong, b {
  font-weight: 700;
}

@media (hover: hover) {
  a:hover {
    color: var(--color-text);
    text-decoration: none;
  }
}
img {
  vertical-align: middle;
}

ul {
  list-style: none;
}

hr {
  display: block;
  height: 0;
  border: 0;
  border-top: 1px var(--color-line) solid;
  margin: 3rem 0;
  padding: 0;
}

.hr-sm {
  margin: 2rem 0;
}


/* view */
.slide-up,
.slide-down,
.slide-right {
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.slide-up.is-view,
.slide-down.is-view,
.slide-right.is-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*herader*/

.global-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  pointer-events: none;
}
 .global-header__container {
    height: 90px;
  }

.global-header__container {
  position: relative;
  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;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

body.is-active .header-brand {
  -webkit-transition: opacity 0.4s 0.1s, -webkit-transform 0.4s 0.1s;
  transition: opacity 0.4s 0.1s, -webkit-transform 0.4s 0.1s;
  transition: transform 0.4s 0.1s, opacity 0.4s 0.1s;
  transition: transform 0.4s 0.1s, opacity 0.4s 0.1s, -webkit-transform 0.4s 0.1s;
}

.header-brand {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 0;
  letter-spacing: -0.4em;
  font-weight: normal;
  pointer-events: auto;
  z-index: 2;
}
.header-brand a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.global-nav {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  height: 100%;
  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;
}

.toggle-btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
  pointer-events: auto;
  z-index: 2;
  width: 40px;
  height: 40px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.toggle-btn__arr {
  position: absolute;
  bottom: 50%;
  right: 50%;
  border-right: 4px var(--color-text) solid;
  border-bottom: 4px var(--color-text) solid;
	
	
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}

  .toggle-btn__arr {
    width: 20px;
    height: 20px;
    border-width: 3px;
    margin-bottom: -9px;
  }

.toggle-menu {
  pointer-events: none;
  position: absolute;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
	 right: -9.5238%;
    left: -9.5238%;
}

  .toggle-menu__container {
    width: 100%;
  }
.toggle-menu__scroll {
  overflow: auto;
  margin-right: auto;
  margin-left: auto;
  max-height: 100vh;
  width: 100%;
  padding: 0;
}

.global-menu {
  background-color: var(--color-bg);
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
 padding: 95px 10% 2rem;
    width: 100%;
	 transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}

.crumbs {
  margin-bottom: 2.5rem;
}
.crumbs ul {
  display: block;
  list-style: none;
  white-space: nowrap;
  font-size: 0;
  letter-spacing: -0.4em;
}
.crumbs li {
  position: relative;
  display: inline-block;
  padding: 0 0.8rem;
  vertical-align: middle;
  font-size: 0.8rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--color-text);
}
.crumbs li:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.15rem;
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px var(--color-text) solid;
  border-right: 1px var(--color-text) solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
.crumbs li:first-child {
  padding-left: 0;
}
.crumbs .is-home {
  font-weight: 700;
}
.crumbs .is-current:after {
  display: none;
}

.blog-title{
	height:4rem;
}


.menu-list {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  width: 100%;
}
.menu-list:not(:last-child) {
  margin-bottom: 1.6rem;
}
.menu-list li {
  margin-bottom: 0.8rem;
  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;
  counter-increment: pagenum;
}
.menu-list .is-current {
  pointer-events: none;
  opacity: 0.5;
}
.menu-list a {
  position: relative;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  width: 100%;
  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;
}
.menu-list a:after {
  content: "";
  position: absolute;
  top: -8px;
  right: -18px;
  bottom: -8px;
  left: -18px;
  border: 10px var(--color-main) solid;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.menu-list .text-en {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1;
  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;
  width: 100%;
  font-weight: 500;
  z-index: 2;
}
.menu-list .text-en span {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 0.7rem;
}
.menu-list .text-en:after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-line);
}
.menu-list .text-ja {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-left: 0.7rem;
  font-size: 0.6rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  z-index: 2;
}

  .header-brand__text {
    display: block;
    font-size: 0.65rem;
	  font-weight: 500;
  letter-spacing: 0.1em;
  }
  .header-brand__key {
    display: block;
    margin-right: 0;
    margin-bottom: 0.1rem;
  }
.header-brand__url {
    display: block;
    font-size: 0.5rem;
  }

  .global-menu__ttl {
    width: 100%;
    text-align: left;
  }
  .menu-list .text-en {
    font-size: 1.4rem;
  }
  .menu-list .text-ja {
    font-size: 0.7rem;
  }
  .menu-list--sub .text-en {
    font-size: 1.2rem;
  }

/*herader*/

/*global*/
.global-main {
  position: relative;
  overflow: hidden;
}

.masa {
  position: relative;
}

.masa__container {
  position: relative;
  z-index: 2;
}

.masa__typo {
  position: relative;
}

body.is-active .typo-websitedesign {
  background-position-x: 0;
}

.typo-websitedesign{
	  position: absolute;
  bottom: 100%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
 color: var(--color-text);
	font-size: 25px;
    font-weight: bold;
    line-height: 2;
    width:760px;
	height:105px;
	 left: 1.7rem;
}

.catchcopy__typo-1 {
  display: inline-block;
  margin-bottom: 0.75rem;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, var(--color-main)), color-stop(50%, transparent));
  background-image: linear-gradient(to right, var(--color-main) 50%, transparent 50%);
  background-size: 202% 100%;
  background-position-x: 100%;
  -webkit-transition: background-position-x 0.7s 1s;
  transition: background-position-x 0.7s 1s;
	position: absolute;
    right: calc( 0px - -25px);
	-webkit-transform: rotate(-55deg);
    transform: rotate(-55deg);
	    border-radius: 4px;
}

.catchcopy__typo-2 {
  display: inline-block;
	margin-bottom: 1rem;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, var(--color-main3)), color-stop(50%, transparent));
  background-image: linear-gradient(to right, var(--color-main3) 50%, transparent 50%);
  background-size: 202% 100%;
  background-position-x: 100%;
  -webkit-transition: background-position-x 0.7s 1.5s;
  transition: background-position-x 0.7s 1.5s;
	
	position: absolute;
    bottom: 0.8rem;
    left: calc( 0px + 20px);
	-webkit-transform: rotate(-55deg);
    transform: rotate(55deg);
	    border-radius: 4px;
}

.catchcopy__typo-1 span {
	    width: 11rem;
  display: inline-block;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, var(--color-bg)), color-stop(50%, var(--color-text)));
  background-image: linear-gradient(to right, var(--color-bg) 50%, var(--color-text) 50%);
  -webkit-background-clip: text;
          background-clip: text;
  background-size: inherit;
  color: transparent;
  background-position-x: 100%;
  -webkit-transition: inherit;
  transition: inherit;
}

.catchcopy__typo-2 span {
	    width: 11rem;
  display: inline-block;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, var(--color-bg)), color-stop(50%, var(--color-text)));
  background-image: linear-gradient(to right, var(--color-bg) 50%, var(--color-text) 50%);
  -webkit-background-clip: text;
          background-clip: text;
  background-size: inherit;
  color: transparent;
  background-position-x: 100%;
  -webkit-transition: inherit;
  transition: inherit;
}

.catchcopy__typo-3 {
	    width: 11rem;
	 margin-top: 1.5rem;
    margin-left: 0.1rem;
  display: inline-block;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, var(--color-main2)), color-stop(50%, transparent));
  background-image: linear-gradient(to right, var(--color-main2) 50%, transparent 50%);
  background-size: 200% 100%;
  background-position-x: -100%;
  -webkit-transition: background-position-x 0.7s 2.5s;
  transition: background-position-x 0.7s 2s;
	position: absolute;
    left: -2.6rem;
	    border-radius: 4px;
}

.catchcopy__typo-3 span {
  display: inline-block;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, var(--color-bg)), color-stop(50%, var(--color-text)));
  background-image: linear-gradient(to right, var(--color-bg) 50%, var(--color-text) 50%);
  -webkit-background-clip: text;
          background-clip: text;
  background-size: inherit;
  color: transparent;
  background-position-x: -100%;
  -webkit-transition: inherit;
  transition: inherit;
}

body.is-active .catchcopy__typo-1 {
  background-position-x: 0;
}
body.is-active .catchcopy__typo-2 {
  background-position-x: 0;
}

body.is-active .catchcopy__typo-3 {
  background-position-x: 0;
}
body.is-active .catchcopy__typo-1 span {
  background-position-x: 0;
}
body.is-active .catchcopy__typo-2 span {
  background-position-x: 0;
}

body.is-active .catchcopy__typo-3 span {
  background-position-x: 0;
}

.masa__block-1 {
  position: relative;
  margin-bottom: 1rem;
  z-index: 2;
  border-width: 2.5px;
  border-bottom: 2.5px var(--color-text) solid;
  padding-bottom: 2rem;
	text-align: center;
}
.masa__block-1 img{
	width:80%;
}
  .masa__service {
    width: 90%;
    margin-bottom: 5rem;
    font-size: 0.6rem;
    letter-spacing: 0.01em;
	  overflow-wrap: break-word;
	line-height: 2;
	  margin-left:auto;
  }
  .masa__service .bg-span-black {
    background-color: transparent;
  }
.btn-share {
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px var(--color-line) solid;
  background-color: transparent;
     -moz-appearance: none;
          appearance: none;
  vertical-align: middle;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: var(--color-text);
  font-weight: 500;
  letter-spacing: 0.07em;
  cursor: pointer;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
}

.share-wrap {
  display: none;
}
.share-wrap.is-active {
  display: block;
	text-align: right;
}


.btn-share .icon-share {
  width: 14px;
  height: 14px;
  fill: var(--color-text);
  margin-right: 0.5rem;
  -webkit-transition: fill 0.2s;
  transition: fill 0.2s;
}
.btn-share:active {
  background-color: var(--color-main);
  border-color: var(--color-main);
}

.position-stock{
	position: relative;
    width: 100px;
    margin: 0 auto;
}

/*global*/

/*svg*/
.fadein {
  opacity: 0;
}
body.is-active .fadein {
  opacity: 1;
  -webkit-transition: opacity 0.5s 0.2s;
  transition: opacity 0.5s 0.2s;
}
.masa__bg-1 {
  position: absolute;
  top: 220px;
  right: 50%;
  margin-right: 40px;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
  width: 400px;
  height: auto;
  z-index: 0;
  fill: var(--color-main);
  fill: none;
  stroke: var(--color-main);
  stroke-width: 15px;
}
.masa__bg-2 {
  position: absolute;
  top: 550px;
  left: 50%;
 margin-left: -40px;
   width: 500px;
  height: auto;
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  fill: var(--color-main);
  z-index: -1;
}
.masa__bg-3 {
     position: absolute;
    top: 1900px;
    right: 50%;
    margin-left: 180px;
    width: 800px;
    height: auto;
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
    fill: var(--color-main);
    z-index: 0;
}
/*svg*/

/*btn-area*/
@import "https://use.fontawesome.com/releases/v5.13.0/css/all.css";
.btn,
a.btn,
button.btn {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: var(--color-main);
  border-radius: 0.5rem;
}

a.btn-custom01 {
  margin-bottom: 0.5rem;
  padding: 0;
  border-radius: 0.75rem;
	width: 100%;
}

a.btn-custom01:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 100%;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0.75rem, -1rem);
  transform: translate3d(0, 0.75rem, -1rem);

  border: 4px solid #5c493A;
  border-radius: inherit;
  background:var(--color-main);
  -webkit-box-shadow: 0 0.6rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.6rem 0 0 rgba(0, 0, 0, 0.2);
}

.btn-custom01-front {
  position: relative;
  display: block;
  padding: 0.7rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 4px solid #5c493A;
  border-radius: inherit;
  background:var(--color-main);
	color:var(--color-text);
}

.fa-position-left {
  position: absolute;
  top: calc(50% - 0.5em);
  left: 1rem;
}

.fa-position-right {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1rem;
}

a.btn-custom01:hover {
  -webkit-transform: translate(0, 0.25rem);
  transform: translate(0, 0.25rem);
  background: #fff100;
}

a.btn-custom01:hover:before {
  -webkit-transform: translate3d(0, 0.5rem, -1rem);
  transform: translate3d(0, 0.5rem, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}



a.btn-custom01:active {
  -webkit-transform: translate(0rem, 0.75rem);
  transform: translate(0rem, 0.75rem);
}

a.btn-custom01:active:before {
  -webkit-transform: translate3d(0, 0, -1rem);
  transform: translate3d(0, 0, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}

.home-works__heading {
  height: 30px;
  position: relative;
  z-index: 2;
}
 
.home-works__ttl a {
  position: relative;
  border: 4px var(--color-text) solid;
  padding: 1rem 1.5rem;
  width: 400px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  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;
  z-index: 2;
  border-width: 3px;
}
  .home-works__ttl a {
    width: 320px;
  }
.tabAreaList{
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    /* max-width: 955px; */
    /* margin-left: 5rem; */
    /* flex-direction: row; */
    flex-wrap: wrap;
	padding-bottom: 7rem;
}

/*btn-area*/

/*home-works*/
.home-works {
  margin-bottom: 7rem;
text-align: center;
}

.home-works__heading {
  height: 30px;
  position: relative;
  z-index: 2;
}
 
.home-works__ttl a {
  position: relative;
  border: 4px var(--color-text) solid;
  padding: 1rem 1.5rem;
  width: 400px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  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;
  z-index: 2;
  border-width: 3px;
}
  .home-works__ttl a {
    width: 320px;
  }

.skill-ul li{
	width: 34%;
	text-align: center;
}

.worls-ul li img{
	height: auto;
}

.worls-ul li{
 padding-bottom: 30px;
	text-align: center;
}

li p{
	font-size:1rem;
	text-align:center;
}

.h3-title{
    font-size: 1.5rem;
    text-align: center;
    padding: 1rem;
}

.boder-wrap{
    border: solid 2px;
    position: relative;
    height: auto;
   /* width: 100vw;
    margin: 0 calc(50% - 70vw);*/
    padding: 3rem 3rem;
}


.skill-title{
    font-size: 1.5rem;
    text-align: center;
}
.skill-ul,.career-ul{
    display: flex;
    flex-direction: row;
    justify-content: center;
	flex-wrap: wrap;
}
.tab-content .career-ul{
	    flex-wrap: nowrap;
}

.career-wrap{
	margin-bottom:50px;
}
.career-img{
	width:75px;
}
.worls-ul{
	display: flex;
}
.areaclear{
		height: 0px;
   	  overflow: hidden;
		/* margin: 0 auto;*/
		    max-width: 955px;
   /* margin-left: auto;*/
	border-radius: 20px;
	}

.areaclear.active{
	height: auto;
    overflow: visible;
	background: rgba(255, 255, 255, 0.3);
	width:100vw;
	margin:calc(50% - 50vw);
	padding:1px 0;
	}
.home-blog__swiperworks {
  margin-bottom: 1rem;
}

.home-works__ttl {
  position: absolute;
  top: 0;
  left: 100%;
  -webkit-transform: rotate(90deg) translateX(-30px);
          transform: rotate(90deg) translateX(-30px);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

/*home-works*/

/*swiper-works2*/
.home-works__swiper {
  margin-bottom: 2rem;
  margin-left: 0;
}
.swiper-wrapper,
.swiper-slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.home-works__swiper .swiper-slide {
  overflow: hidden;
}

/*swiper-works2*/

/*home-blog*/

 .home-blog {
    margin-top: auto;
    margin-bottom: 5rem;
	  min-height: 380px;
  }

.home-blog__heading {
  height: 1rem;
  position: relative;
  z-index: 2;
}


.home-blog__ttl {
  position: absolute;
  bottom: 100%;
  left: 0;
  -webkit-transform: rotate(90deg) translateX(-45px);
          transform: rotate(90deg) translateX(-45px);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}
.home-blog__ttl a {
  position: relative;
  border: 4px var(--color-text) solid;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  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;
  z-index: 2;
	    border-width: 3px;
    padding: 1rem 1.5rem;
    width: 320px;
    background-color: transparent;
	  max-width: 991px;
}


.home-blog__ttl .text-en {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.home-blog__ttl .text-ja {
  font-size: 0.8rem;
}
  .home-blog__ttl .text-en {
    font-size: 2.2rem;
  }
 
.text-ja {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.03em;
}

  .home-blog__swiper {
    width: calc(100% - 65px);
  }

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

.link-text {
  display: inline-block;
  margin-bottom: 0.3rem;
  padding: 0.5rem 0.1rem;
  color: var(--color-text);
  font-weight: 700;
  text-align: center;
  text-decoration: none !important;
  border-bottom: 4px var(--color-text) solid;
  -webkit-transition: padding-bottom 0.2s, margin-bottom 0.2s;
  transition: padding-bottom 0.2s, margin-bottom 0.2s;
	    font-size: 1rem;
    border-bottom-width: 3px;
}

body.is-active .slide-up, body.is-active .slide-down, body.is-active .slide-right, body.is-active .slide-left {
    -webkit-transition: opacity 0.7s 0.2s, -webkit-transform 0.7s 0.2s;
    transition: opacity 0.7s 0.2s, -webkit-transform 0.7s 0.2s;
    transition: opacity 0.7s 0.2s, transform 0.7s 0.2s;
    transition: opacity 0.7s 0.2s, transform 0.7s 0.2s, -webkit-transform 0.7s 0.2s;
}
/*home-blog*/

/*about*/
.home-about {
  position: relative;
  margin-bottom: 5rem;
}

.home-about__ttl {
  position: relative;
  display: block;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 3rem;
  z-index: 2;
}

.text-en {
  font-family: "Inter", sans-serif;
    font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

.home-about__ttl .text-en {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}

 .home-about__ttl .text-en {
    display: block;
    font-size: 2.2rem;
    margin-bottom: 0.2rem;
  }
  .home-about__ttl .text-ja {
    font-size: 0.8rem;
  }
.home-about__info {
  position: relative;
 display: block;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 0.8rem;
  line-height: 2;
  z-index: 2;
}
 .home-about__info-text {
    margin-bottom: 1rem;
  }

.home-about__wrap {
  position: relative;
  border: 4px var(--color-text) solid;
  z-index: 2;
	    border-width: 3px;
    margin-bottom: 3rem;
	padding: 2rem 2rem;
}

.home-about__link-container {
position: relative;
    top: auto;
    left: auto;
    font-size: 0.8rem;
    line-height: 1.9;
    width: auto;
    -webkit-transform: none;
            transform: none;
    padding: 0 4px;
	padding-top: 3rem;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  z-index: 2;
}


.home-about__info p:not(:last-child) {
  margin-bottom: 0.5rem;
}


.home-about__link h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}
.home-about__link ul {
  font-size: 0;
  letter-spacing: -0.4em;
}
.home-about__link ul:not(:last-child) {
  margin-bottom: 1.5rem;
}
.home-about__link li {
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}
.home-about__link a {
  border-bottom: 1px var(--color-text) solid;
  padding-bottom: 0.1rem;
  -webkit-transition: background-color 0.2s, color 0.2s;
  transition: background-color 0.2s, color 0.2s;
}
.home-about__link a:after {
  display: none;
}

  .home-about__link {
    position: relative;
    height: auto;
  }



.home-about__bg {
  position: absolute;
left: auto;
	  top: -120px;
    right: 20%;
    stroke-width: 12px;
    width: 600px;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
    stroke: var(--color-main);
    fill: none;
  height: auto;
  z-index: 0;
}
/*about*/
/*contact*/
.contact-wrap {
  position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
  background-color: var(--color-main);
	   text-align: center;
}
  .g-basic {
    --bs-gutter-x: 3rem;
  }

.contact-wrap__ttl {
   margin-bottom: 1.5rem;
    font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
}

.contact-wrap__ttl a {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  border: 4px var(--color-text) solid;
	border-width: 3px;
}

.contact-wrap__text {
 margin-bottom: 2rem;
    font-size: 0.8rem;
  line-height: 2;
}
.contact-wrap__text a {
  text-decoration: underline;
}

/*contact*/


.content-wrap {
  max-width: 1200px;
  margin-right: 5%;
    margin-left: 5%;
}



.catchcopy {
    font-size: 1.5rem;
	 font-weight: 500;
  line-height: 1.2;
	text-align:center;
}

/*footer*/
.global-footer {
  background-color: var(--color-bg-gray);
}
.global-footer a {
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

/*footer*/

/*pageup*/
.pageup {
  position: fixed;
  right: 2rem;
    bottom: 2.2rem;
  width: 40px;
  height: 40px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  z-index: 100;
}

.pageup.is-active {
  opacity: 1;
  pointer-events: auto;
}

.pageup:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -8px;
  border-top: 2.5px var(--color-text) solid;
  border-right: 2.5px var(--color-text) solid;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
/*pageup*/

.masa__share {
    margin-top: 4.5rem;
}

  .masa__ttl .text-en {
    display: block;
    letter-spacing: 0.1em;
	    font-weight: 500;
  line-height: 1;
	  font-size: 1.5rem;
  }


.swiper-works{
	text-align:center;
}

.masa__block-2 {
    margin-bottom: 3rem;
}

.global-footer__copyright {
  font-size: 0.7rem;
	text-align:center;
}

.overlay {
  display: block;
  pointer-events: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--color-bg);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 0;
}


  .masa__ttl .text-ja {
    font-size: 0.8rem;
  }

.masa__ttl {
  display: block;
    margin-bottom: 2rem;
text-align:center;
}

  .masa__text {
    position: relative;
        font-size: 0.75rem;
    line-height: 1.7rem;
  }

.masa__text-container {
  width: 100%;

}
  .masa__text-container {
    max-height: 12.6rem;
    position: relative;
    overflow: hidden;
    -webkit-transition: max-height 0.7s;
    transition: max-height 0.7s;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(70%, var(--color-text)), to(transparent));
    background-image: linear-gradient(to bottom, var(--color-text) 70%, transparent 100%);
    -webkit-background-clip: text;
            background-clip: text;
    background-size: 100% auto;
    color: transparent;
  }
.masa__text-btn {
  margin-top: -0.5rem;
  display: block;
  position: relative;
  width: 100%;
  height: 40px;
  margin-right: auto;
  margin-left: auto;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  text-decoration: none !important;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  z-index: 3;
}
.masa__text-btn:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  margin-top: -8px;
  border-bottom: 2px var(--color-text) solid;
  border-left: 2px var(--color-text) solid;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}


.hr-sm {
  margin: 2rem 0;
}

.masa__text p:not(:last-child) {
  margin-bottom: 0.3rem;
}


.home-works__ttl .text-ja {
  font-size: 0.8rem;
}

.home-works__swiper .swiper-slide img {
  height: 320px;
  max-width: none;
  width: auto;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.home-blog__swiper .swiper-slide {
  overflow: hidden;
}
.articles__unit a {
  display: block;
  height: 100%;
}
  .articles__unit a:hover .articles__thumb {
    opacity: 0.9;
  }
.articles__thumb {
  position: relative;
  width: 100%;
 height: 380px;
  padding-bottom: 0;
  overflow: hidden;
  background-color: var(--color-bg);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.2s;
  transition: opacity 0.5s, -webkit-transform 0.2s;
  transition: transform 0.2s, opacity 0.5s;
  transition: transform 0.2s, opacity 0.5s, -webkit-transform 0.2s;
}


.overlay.is-active {
  pointer-events: auto;
  opacity: 0.95;
  z-index: 500;
}


.global-header.is-active .toggle-btn {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.global-header.is-active .toggle-menu {
  pointer-events: auto;
  opacity: 1;
}
.global-header.is-active .global-menu {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

	.form-search.is-active .input-search {
  width: calc(100% - 35px);
}
.works-filter a.is-active {
  pointer-events: none;
  border-bottom: 2px var(--color-text) solid;
}

body.is-active .works-filter a {
  -webkit-transition: opacity 0.2s, border-bottom 0.5s;
  transition: opacity 0.2s, border-bottom 0.5s;
}

  .masa__text.is-active:after {
    opacity: 0;
  }
  .masa__text.is-active .masa__text-container {
    display: block;
    -webkit-line-clamp: none;
    max-height: 150rem;
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--color-text)), to(var(--color-text)));
    background-image: linear-gradient(to bottom, var(--color-text) 0%, var(--color-text) 100%);
  }
  .masa__text.is-active .masa__text-btn:after {
    margin-top: -22px;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }

.global-header.is-down:not(.is-hometop) .header-brand {
  opacity: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*TAB-area*/
.career-border{
	width: 85%;
	border-top: 2.5px solid;
	padding-top:3rem;
}
.career-ul .career-li{
	width: 32%;
	text-align: center;
}

.career-ul .career-li p{
	font-size:0.7rem;
}

.career-ul{
	gap:5px;
}
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin:20px 0;
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 3px;
  background: var(--color-main);
  display: block;
  order: -1;
}
.tab-label {
  color: White;
  background: var(--color-main3);
  font-weight: bold;
  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
  white-space: nowrap;
  text-align: center;
  padding: 10px .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 1;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
  background: var(--color-main);
}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 15px 0px;
  opacity: 1;
  transition: .5s opacity;
  box-shadow: 0 0 3px rgba(0,0,0,.2);
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}


@media (min-width:567px) {
	:root{
			font-size:16px;
	}
	
	
	
	.masa__service {
		font-size:0.7rem;
		margin-bottom: 7rem;
	}
	.tabAreaList {
		padding-bottom: 10rem;
	}
	a.btn-custom01 {
		width: 40%;
	}
	.skill-ul li img{
		width:100px;
	}
	.worls-ul li img{
		width:300px;
	}
	.home-works__swiper .swiper-slide {
    text-align: center;
}
	.home-works__swiper .swiper-slide {
		overflow:inherit;
	}
	.typo-websitedesign {
		font-size:30px;
		left:4.3rem;
	}
	
	.catchcopy__typo-1 {
		right: calc( 0px - -20px);
		
	}
	.catchcopy{
		font-size:2rem;
	}
	
	
	.catchcopy__typo-1 span,.catchcopy__typo-2 span,.catchcopy__typo-3 {
		width: 14rem;
	}
	
		.catchcopy__typo-2{
		left: calc( 0px + 10px);
		bottom: 1.4rem;
		
	}
	
.catchcopy__typo-3 {
		left:-4.3rem;
		
	}
}
@media (min-width:768px) {
	
	
	
}
@media (min-width:992px) {
	.body-wrap{
		overflow-x: hidden;
	}
	.toggle-menu__container {
		width:inherit;
	}
	.global-menu{
	    padding: 7.8rem 2rem 2rem;
    background-color: var(--color-bg);
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    width: 320px;
}
	.masa__service {
    width: 50%;
    margin-bottom: 8rem;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 2.2;
    overflow-wrap: break-word;
	margin-left:inherit;
}
	.toggle-menu {
		right:inherit;
    left: inherit;
	}
	.masa__bg-1 {
		margin-right: 100px;
		    top: 210px;
    right: 56%;
	}
	.masa__bg-2 {
		left: 65%;
	}
	.position-stock {
		margin-right: 24rem;
	}
	.typo-websitedesign {
    font-size: 2.3rem;
    left: 6.3rem;
		    width: 880px;
}
	.masa__block-2 {
	width:100vw;
    position: relative;
    border: 4px var(--color-text) solid;
    margin-bottom: 7rem;
    margin-left: -7rem;
    padding: 4rem 3rem;
    z-index: 2;
}
	.masa__ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-end;
    margin-bottom: 3rem;
    width:750px;
    gap: 45px;
}
	#career{
    display: flex;
    flex-direction: column;
    align-items:flex-start;
    margin-top:-100px;
	}
/*	
	.career-border .text-en{
		border-top:4px solid;
	}*/
	.tab-wrap{
	width:100%;	
	}
	.career-border {
		border-top:0px;
	}
	.masa__block-1 {
		border-bottom:none;
	}
	
	.masa__ttl .text-en {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
}
	.masa__ttl .text-ja {
    font-size: 1rem;
}
	
	.masa__text {
		width:750px;
		font-size: 0.95rem;
    line-height: 2.1;
	}
	.share-wrap.is-active {
    text-align: left;	
	}
	.masa__text-btn {display:none;}
	
	.masa__text-container {
    width: 100%;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 3rem;
    -moz-column-gap: 3rem;
    column-gap: 3rem;
	overflow: inherit;
		max-height:inherit;
		color:inherit;
}
	
	.tabAreaList{
		flex-wrap: nowrap
	}
	.areaclear{
		max-width:inherit;
	}
	
	.boder-wrap{
		padding:2rem 3rem 5rem 3rem;
		border:solid 4px;
	}
	.skill-title {
	font-size: 2.5rem;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
	}
	
	.career-img{
	width:150px;
}
	.career-ul .career-li p{
	font-size:1.2rem;
}
	
}
@media (min-width:1200px) {
	.toggle-menu {
		right:7rem;
	}
	.position-stock {
		margin-left: 12rem;
	}
	.content-wrap {
		margin-right: auto;
    margin-left: auto;
	}
	.areaclear{
	 margin:0 auto!important;
	 max-width: 1200px !important;
		width: 100%!important;
	}
	.tabAreaList {
		padding-bottom: 4rem;
	}
	.masa__block-2 {
		padding:4rem 4rem;
	}
}
@media (min-width:1400px) {

}




