@charset "UTF-8";
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;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

body {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  color: #000;
  word-break: break-all;
  letter-spacing: 0.05em;
}
body.is_fixed {
  overflow: hidden;
}

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

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

div,
a {
  box-sizing: border-box;
}

li {
  list-style: none;
}

section {
  box-sizing: border-box;
}

.enTxt {
  font-family: "Work Sans", sans-serif;
}

.enTxt2 {
  font-family: "EB Garamond", serif;
}

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

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

.fade-in {
  opacity: 0;
  /* 初期状態で透明 */
  transform: translateY(50px);
  /* 下に少しずらす */
  transition: opacity 1s 0.3s ease, transform 1s 0.3s ease;
  /* アニメーションの設定 */
}

.fade-in.show {
  opacity: 1;
  /* 表示 */
  transform: translateY(0);
  /* 元の位置 */
}

.acContents {
  height: 0;
  overflow: hidden;
  transition: 0.2s ease height;
}

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

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

.top {
  background-image: url(../../img/page/work-top.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 420px;
  padding: 0 20px;
}
.top.company {
  background-image: url(../../img/page/company-top.jpg);
}
.top.recruit {
  background-image: url(../../img/page/recruit-top.jpg);
}
.top.contact {
  background-image: url(../../img/page/contact-top.jpg);
	background-position:right;
}
.top__inner {
  max-width: 1026px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  height: 100%;
}
.top__inner h2 {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 36px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top__inner h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 600px) {
  .top__inner h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 450px) {
  .top__inner h2 {
    font-size: 24px;
  }
}
.top__inner h2::after {
  content: "WORKS";
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
  margin-top: 5px;
}
@media screen and (max-width: 450px) {
  .top__inner h2::after {
    font-size: 14px;
  }
}
.top__inner p {
  color: #fff;
  font-size: 14px;
  display: inline-block;
  position: absolute;
  bottom: 15px;
  left: 0;
}
.top__inner p a {
  color: #fff;
}

.acordion-item .acordion-content {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.acordion-item.active .acordion-content {
  max-height: 10000px;
}
.acordion-item.active .more-btn::before {
  transform: rotate(315deg);
}

.page-box .works {
  background-color: #fff;
}
.page-box .works__inner {
  padding: 50px 20px 0;
}
.page-box.single {
  padding-top: 80px;
}
.page-box .link {
  background-color: #fff;
}
.page-box .link__inner {
  padding: 0 20px;
}
.page-box .link__inner--box {
  height: 400px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .page-box .link__inner--box {
    flex-direction: column-reverse;
    height: auto;
  }
}
.page-box .link__inner--box-img {
  height: 400px;
}
.page-box .link__inner--box-img img {
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-box .contact {
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .page-box .contact {
    margin-bottom: 70px;
  }
}
.page-box .contact__inner {
  padding: 0 20px;
}

.page-company {
  background-image: url(../..//img/page/company-bg.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-company__inner {
  max-width: 1026px;
  margin: 0 auto;
  padding: 85px 20px 140px;
}
@media screen and (max-width: 768px) {
  .page-company__inner {
    padding: 40px 20px 70px;
  }
}
.page-company__inner-greeting {
  margin-bottom: 100px;
}
.page-company__inner-greeting h2 {
  font-size: 32px;
  color: #037fec;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .page-company__inner-greeting h2 {
    font-size: 38px;
  }
}
@media screen and (max-width: 600px) {
  .page-company__inner-greeting h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 450px) {
  .page-company__inner-greeting h2 {
    font-size: 22px;
  }
}
.page-company__inner-greeting h2::after {
  content: "GREETING";
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: 14px;
  margin-top: 10px;
  color: #000;
}
@media screen and (max-width: 450px) {
  .page-company__inner-greeting h2::after {
    font-size: 10px;
  }
}
.page-company__inner-greeting-box {
  border-radius: 8px;
  box-shadow: 0 0 8px #ccc;
  background-color: #fff;
  padding: 45px 65px;
}
@media screen and (max-width: 768px) {
  .page-company__inner-greeting-box {
    padding: 40px 20px;
  }
}
.page-company__inner-greeting-box-img {
  margin-bottom: 50px;
}
.page-company__inner-greeting-box h3 {
  margin-bottom: 45px;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .page-company__inner-greeting-box h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .page-company__inner-greeting-box h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 450px) {
  .page-company__inner-greeting-box h3 {
    font-size: 16px;
  }
}
.page-company__inner-greeting-box p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .page-company__inner-greeting-box p {
    font-size: 14px;
  }
}
@media screen and (max-width: 450px) {
  .page-company__inner-greeting-box p {
    font-size: 12px;
  }
}
.page-company__inner-greeting-box .owner {
  font-size: 16px;
  text-align: right;
  margin-bottom: 0;
}
.page-company__inner-greeting-box .owner .name {
  margin-left: 30px;
  vertical-align: bottom;
}
.page-company__inner-info {
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .page-company__inner-info {
    margin-bottom: 70px;
  }
}
.page-company__inner-info h2 {
  font-size: 32px;
  color: #037fec;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .page-company__inner-info h2 {
    font-size: 38px;
  }
}
@media screen and (max-width: 600px) {
  .page-company__inner-info h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 450px) {
  .page-company__inner-info h2 {
    font-size: 22px;
  }
}
.page-company__inner-info h2::after {
  content: "INFOMATION";
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: 14px;
  margin-top: 10px;
  color: #000;
}
@media screen and (max-width: 450px) {
  .page-company__inner-info h2::after {
    font-size: 10px;
  }
}
.page-company__inner-info-box dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  padding: 30px;
  border-top: 1px solid #037fec;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .page-company__inner-info-box dl {
    flex-direction: column;
    padding: 20px 10px;
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .page-company__inner-info-box dl {
    font-size: 16px;
  }
}
@media screen and (max-width: 450px) {
  .page-company__inner-info-box dl {
    font-size: 14px;
  }
}
.page-company__inner-info-box dl:last-of-type {
  border-bottom: 1px solid #037fec;
}
.page-company__inner-info-box dl dt {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .page-company__inner-info-box dl dt {
    width: 100%;
    margin-bottom: 20px;
  }
}
.page-company__inner-info-box dl dd {
  width: 80%;
}
.page-company__inner-info-box dl dd iframe {
  margin-top: 20px;
  max-width: 100%;
  max-height: 100%;
}
@media screen and (max-width: 768px) {
  .page-company__inner-info-box dl dd iframe {
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .page-company__inner-info-box dl dd {
    width: 100%;
  }
}

.page-recruit {
  background-image: url(../../img/page/company-bg.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-recruit__inner {
  max-width: 1026px;
  margin: 0 auto;
  padding: 85px 20px 140px;
}
@media screen and (max-width: 768px) {
  .page-recruit__inner {
    padding: 40px 20px 70px;
  }
}
.page-recruit__inner-message {
  margin-bottom: 100px;
}
.page-recruit__inner-message h2 {
  font-size: 32px;
  color: #037fec;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .page-recruit__inner-message h2 {
    font-size: 38px;
  }
}
@media screen and (max-width: 600px) {
  .page-recruit__inner-message h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 450px) {
  .page-recruit__inner-message h2 {
    font-size: 22px;
  }
}
.page-recruit__inner-message h2::after {
  content: "MESSAGE";
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: 14px;
  margin-top: 10px;
  color: #000;
}
@media screen and (max-width: 450px) {
  .page-recruit__inner-message h2::after {
    font-size: 10px;
  }
}
.page-recruit__inner-message-box {
  border-radius: 8px;
  box-shadow: 0 0 8px #ccc;
  background-color: #fff;
  padding: 70px;
}
@media screen and (max-width: 768px) {
  .page-recruit__inner-message-box {
    padding: 40px 6px;
  }
}
.page-recruit__inner-message-box p {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 450px) {
  .page-recruit__inner-message-box p {
    font-size: 15px;
    line-height: 1.7;
  }
}
.page-recruit__inner-req {
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .page-recruit__inner-req {
    margin-bottom: 70px;
  }
}
.page-recruit__inner-req h2 {
  font-size: 32px;
  color: #037fec;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .page-recruit__inner-req h2 {
    font-size: 38px;
  }
}
@media screen and (max-width: 600px) {
  .page-recruit__inner-req h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 450px) {
  .page-recruit__inner-req h2 {
    font-size: 22px;
  }
}
.page-recruit__inner-req h2::after {
  content: "REQUIREMENTS";
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: 14px;
  margin-top: 10px;
  color: #000;
}
@media screen and (max-width: 450px) {
  .page-recruit__inner-req h2::after {
    font-size: 10px;
  }
}
.page-recruit__inner-req-box {
  margin-bottom: 60px;
}
.page-recruit__inner-req-box dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  padding: 30px;
  border-top: 1px solid #037fec;
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .page-recruit__inner-req-box dl {
    flex-direction: column;
    padding: 20px 10px;
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .page-recruit__inner-req-box dl {
    font-size: 16px;
  }
}
@media screen and (max-width: 450px) {
  .page-recruit__inner-req-box dl {
    font-size: 14px;
  }
}
.page-recruit__inner-req-box dl:last-of-type {
  border-bottom: 1px solid #037fec;
}
.page-recruit__inner-req-box dl dt {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .page-recruit__inner-req-box dl dt {
    width: 100%;
    margin-bottom: 20px;
  }
}
.page-recruit__inner-req-box dl dd {
  width: 80%;
}
.page-recruit__inner-req-box dl dd span {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .page-recruit__inner-req-box dl dd span {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .page-recruit__inner-req-box dl dd span {
    font-size: 12px;
  }
}
@media screen and (max-width: 450px) {
  .page-recruit__inner-req-box dl dd span {
    font-size: 10px;
  }
}
.page-recruit__inner-req-box dl dd iframe {
  margin-top: 20px;
  max-width: 100%;
  max-height: 100%;
}
@media screen and (max-width: 768px) {
  .page-recruit__inner-req-box dl dd iframe {
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .page-recruit__inner-req-box dl dd {
    width: 100%;
  }
}
.page-recruit__inner-req a {
  font-size: 18px;
  display: inline-block;
  background-color: #0773d1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 50px;
  color: #fff;
  width: 30%;
  margin: 0 auto;
}
.page-recruit__inner-req a img {
  margin-right: 30px;
}
@media screen and (max-width: 450px) {
  .page-recruit__inner-req a img {
    width: 20px;
  }
}
@media screen and (max-width: 768px) {
  .page-recruit__inner-req a {
    width: 100%;
    height: 80px;
  }
}
@media screen and (max-width: 450px) {
  .page-recruit__inner-req a {
    height: 70px;
  }
}

.page-contact__inner {
  max-width: 1026px;
  margin: 0 auto;
  padding: 0 20px 130px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page-contact__inner {
    flex-direction: column;
    padding-bottom: 70px;
  }
}
.page-contact__inner .navi {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .page-contact__inner .navi {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.page-contact__inner .navi-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .page-contact__inner .navi-item {
    width: 33%;
  }
}
.page-contact__inner .navi-item .number {
  width: 50px;
  height: 50px;
  background-color: #0088fe;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
@media screen and (max-width: 650px) {
  .page-contact__inner .navi-item .number {
    font-size: 14px;
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 550px) {
  .page-contact__inner .navi-item .number {
    font-size: 12px;
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
}
.page-contact__inner .navi-item p {
  color: #0188fd;
  font-size: 16px;
}
@media screen and (max-width: 650px) {
  .page-contact__inner .navi-item p {
    font-size: 14px;
  }
}
@media screen and (max-width: 550px) {
  .page-contact__inner .navi-item p {
    font-size: 10px;
  }
}
.page-contact__inner form {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .page-contact__inner form {
    width: 100%;
  }
}
.page-contact__inner form .contact-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #e1e1e1;
  padding: 40px 0;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .page-contact__inner form .contact-item {
    flex-direction: column;
  }
}
.page-contact__inner form .contact-item:first-child {
  padding-top: 10px;
}
.page-contact__inner form .contact-item:last-of-type {
  border-bottom: none;
  align-items: flex-start;
  margin-bottom: 50px;
}
@media screen and (max-width: 450px) {
  .page-contact__inner form .contact-item:last-of-type {
    margin-bottom: 25px;
  }
}
.page-contact__inner form .contact-item .th {
  width: 40%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page-contact__inner form .contact-item .th {
    width: 100%;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 650px) {
  .page-contact__inner form .contact-item .th {
    font-size: 14px;
  }
}
.page-contact__inner form .contact-item .th span {
  color: #fff;
  font-size: 12px;
  background-color: #ec3947;
  padding: 5px 10px;
}
@media screen and (max-width: 768px) {
  .page-contact__inner form .contact-item .th span {
    margin-left: 30px;
  }
}
.page-contact__inner form .contact-item .td {
  width: 60%;
  color: #515151;
}
@media screen and (max-width: 768px) {
  .page-contact__inner form .contact-item .td {
    width: 100%;
  }
}
@media screen and (max-width: 650px) {
  .page-contact__inner form .contact-item .td {
    font-size: 14px;
  }
}
.page-contact__inner form .contact-item .td input,
.page-contact__inner form .contact-item .td select,
.page-contact__inner form .contact-item .td textarea {
  box-sizing: border-box;
  width: 100%;
  background-color: #f0f0f0;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
}
.page-contact__inner form button {
  cursor: pointer;
  font-size: 18px;
  display: inline-block;
  background-color: #0773d1;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 50px;
  color: #fff;
  width: 60%;
  transition: 0.3s;
}
.page-contact__inner form button:hover {
  opacity: 0.7;
}
.page-contact__inner form button img {
  margin-right: 30px;
}
@media screen and (max-width: 450px) {
  .page-contact__inner form button img {
    width: 15px;
  }
}
@media screen and (max-width: 768px) {
  .page-contact__inner form button {
    width: 100%;
    height: 80px;
  }
}
@media screen and (max-width: 450px) {
  .page-contact__inner form button {
    height: 60px;
    font-size: 12px;
  }
}

.tag {
  padding: 0 20px;
  width: 100%;
  overflow-x: auto;
}
.tag__inner {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 50px;
  margin-bottom: 50px;
  white-space: nowrap;
}
.tag__inner a {
  font-size: 14px;
  color: #000;
}
.tag__inner p {
  font-size: 14px;
  color: #000;
}

.d-box {
  padding: 0 20px;
}
.d-box .works__inner {
  max-width: 800px;
  padding: 0;
}
.d-box .works__inner .main {
  margin-bottom: 140px;
}
.d-box .works__inner .main iframe {
  width: 100%;
  height: 450px;
}
@media screen and (max-width: 600px) {
  .d-box .works__inner .main iframe {
    height: 220px;
  }
}
.d-box .works__inner .main img {
  width: 100%;
  margin-bottom: 30px;
  margin: 0 auto;
}
.d-box .works__inner .main h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #0773d1;
  font-size: 30px;
}
@media screen and (max-width: 600px) {
  .d-box .works__inner .main h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 400px) {
  .d-box .works__inner .main h2 {
    font-size: 22px;
  }
}
.d-box .works__inner .main .tag-box {
  background-color: #f2f2f2;
  padding: 20px;
  margin-bottom: 30px;
}
.d-box .works__inner .main .tag-box p {
  color: #333;
  font-size: 18px;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .d-box .works__inner .main .tag-box p {
    font-size: 14px;
  }
}
.d-box .works__inner .main .tag-box p .workstag__label {
  color: #fff;
  background-color: #0088fc;
  padding: 5px;
  margin-right: 20px;
  font-size: 14px;
  white-space: nowrap;
}
@media screen and (max-width: 600px) {
  .d-box .works__inner .main .tag-box p .workstag__label {
    font-size: 10px;
    margin-right: 10px;
  }
}
.d-box .works__inner .main .tag-box .workstag {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.d-box .works__inner .main .tag-box .workstag__tag {
  color: #333;
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  .d-box .works__inner .main .tag-box .workstag__tag {
    font-size: 14px;
  }
}
.d-box .works__inner .main .tag-box .workstag__tag span {
  color: #fff;
  background-color: #0088fc;
  padding: 5px;
  margin-right: 20px;
  font-size: 14px;
}
@media screen and (max-width: 600px) {
  .d-box .works__inner .main .tag-box .workstag__tag span {
    font-size: 10px;
    margin-right: 10px;
  }
}
.d-box .works__inner .main p {
  color: #333;
  margin-bottom: 30px;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .d-box .works__inner .main p {
    font-size: 14px;
  }
}
.d-box .works__inner .main h3 {
  font-size: 24px;
  color: #0773d1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .d-box .works__inner .main h3 {
    font-size: 20px;
  }
}
.d-box .works__inner .main h3::before {
  content: "";
  display: inline-block;
  background-color: #0773d1;
  width: 13px;
  height: 40px;
  margin-right: 20px;
}
.d-box .works__inner .main h4 {
  font-size: 20px;
  color: #0773d1;
  padding: 20px;
  background-color: #ecf6fe;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .d-box .works__inner .main h4 {
    font-size: 16px;
  }
}
.d-box .works__inner .main .more {
  display: block;
  text-align: center;
  background-color: #0188fd;
  border-radius: 30px;
  color: #fff;
  font-size: 18px;
  padding: 15px;
  margin-top: 100px;
  margin-bottom: 100px;
  border: 1px solid #fff;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 600px) {
  .d-box .works__inner .main .more {
    font-size: 14px;
    margin: 50px 0;
  }
}
.d-box .works__inner .main .more::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.d-box .works__inner .main .more:hover {
  background-color: #fff;
  color: #0188fd;
  border: 1px solid #0188fd;
}
.d-box .works__inner .main .more:hover::before {
  border-top-color: #0188fd;
  border-right-color: #0188fd;
}

.header {
  position: absolute;
  width: 100%;
  z-index: 1000;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 0 20px;
  height: 95px;
}
@media screen and (max-width: 600px) {
  .header__inner {
    height: 70px;
  }
}
@media screen and (max-width: 400px) {
  .header__inner {
    height: 50px;
  }
}
.header__inner--logo {
  margin-right: auto;
}
@media screen and (max-width: 600px) {
  .header__inner--logo img {
    width: 100px;
  }
}
@media screen and (max-width: 400px) {
  .header__inner--logo img {
    width: 80px;
  }
}
.header__inner--nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header__inner--nav {
    display: none;
  }
}
.header__inner--nav li {
  padding-right: 40px;
}
.header__inner--nav li a {
  color: #fff;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: 0.3s;
  font-weight: bold;
}
.header__inner--nav li a:hover {
  border-color: #0088fe;
}
.header__inner--splist {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__inner--splist {
    display: block;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
.header__inner--splist-hmb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  background-color: #fff;
  width: 95px;
  height: 100%;
}
@media screen and (max-width: 600px) {
  .header__inner--splist-hmb {
    gap: 10px;
    width: 70px;
  }
}
@media screen and (max-width: 400px) {
  .header__inner--splist-hmb {
    gap: 7px;
    width: 50px;
  }
}
.header__inner--splist-hmb.active span:nth-child(1) {
  transform: translateY(16px) rotate(45deg);
  width: 40px;
}
@media screen and (max-width: 600px) {
  .header__inner--splist-hmb.active span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
    width: 30px;
  }
}
@media screen and (max-width: 400px) {
  .header__inner--splist-hmb.active span:nth-child(1) {
    width: 30px;
    transform: translateY(9px) rotate(45deg);
  }
}
.header__inner--splist-hmb.active span:nth-child(2) {
  opacity: 0;
}
.header__inner--splist-hmb.active span:nth-child(3) {
  transform: translateY(-16px) rotate(-45deg);
  width: 40px;
}
@media screen and (max-width: 600px) {
  .header__inner--splist-hmb.active span:nth-child(3) {
    width: 30px;
    transform: translateY(-12px) rotate(-45deg);
  }
}
@media screen and (max-width: 400px) {
  .header__inner--splist-hmb.active span:nth-child(3) {
    width: 30px;
    transform: translateY(-9px) rotate(-45deg);
  }
}
.header__inner--splist span {
  display: block;
  height: 2px;
  width: 50px;
  background: linear-gradient(to right, #0772ce, #0088fe);
  border-radius: 2px;
  transition: 0.3s;
}
@media screen and (max-width: 600px) {
  .header__inner--splist span {
    width: 30px;
  }
}
@media screen and (max-width: 400px) {
  .header__inner--splist span {
    width: 30px;
  }
}
.header__inner--splist-mail {
  background: linear-gradient(to right, #0772ce, #0088fe);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 95px;
  border-radius: 0 0 0 16px;
}
@media screen and (max-width: 600px) {
  .header__inner--splist-mail {
    width: 70px;
  }
}
@media screen and (max-width: 400px) {
  .header__inner--splist-mail {
    width: 50px;
  }
}
@media screen and (max-width: 600px) {
  .header__inner--splist-mail img {
    width: 25px;
  }
}
@media screen and (max-width: 400px) {
  .header__inner--splist-mail img {
    width: 20px;
  }
}
.header__inner--mail {
  background: linear-gradient(to right, #0772ce, #0088fe);
  height: 100%;
  border-radius: 0 0 0 16px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header__inner--mail {
    display: none;
  }
}
.header__inner--mail a {
  color: #fff;
  padding: 0 30px;
  padding-left: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  font-weight: bold;
  border-radius: 0 0 0 16px;
  transition: 0.3s ease;
  border: 1px solid transparent;
}
.header__inner--mail a .wh {
  display: block;
}
.header__inner--mail a .bl {
  display: none;
}
.header__inner--mail a:hover {
  opacity: 1;
  background: #fff;
  color: #0088fe;
  border: 1px solid #0088fe;
}
.header__inner--mail a:hover .wh {
  display: none;
}
.header__inner--mail a:hover .bl {
  display: block;
}
.header__inner--mail a img {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
}
.header .on {
  display: none;
}
.header .off {
  display: block;
}
.header.is_active {
  background: #fff;
  position: fixed;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.header.is_active .header__inner--item a {
  color: #333;
}
.header.is_active .header__inner--splist-mail {
  background: linear-gradient(to right, #0772ce, #0088fe);
}
.header.is_active .header__inner--mail {
  background: linear-gradient(to right, #0772ce, #0088fe);
}
.header.is_active .on {
  display: block;
}
.header.is_active .off {
  display: none;
}

.header.active {
  background-color: #fff;
}
.header.active .header__inner--splist-hmb {
  background-color: #fff;
}
.header.active .on {
  display: block;
}
.header.active .off {
  display: none;
}

.drawerNav {
  background: #fff;
  display: none;
  position: fixed;
  top: 94px;
  right: 0;
  width: 100%;
  height: 100vh;
  transition: all 0.3s ease;
  overflow-y: auto;
  z-index: 999;
  padding: 80px 20px;
  transform: translateX(100%);
}
.drawerNav.active {
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .drawerNav {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .drawerNav {
    top: 70px;
  }
}
@media screen and (max-width: 400px) {
  .drawerNav {
    top: 48px;
  }
}
.drawerNav .footer__inner {
  padding: 0;
}
.drawerNav .footer__inner a {
  font-size: 20px;
  color: #0772ce;
}
.drawerNav ul {
  display: block;
}
.drawerNav li {
  width: 100%;
  margin-bottom: 40px;
}
.drawerNav li a {
  width: 100%;
  display: block;
}

.footer {
  position: relative;
  background: #fff;
}
.footer__inner {
  padding: 50px 20px;
}
.footer__inner--box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .footer__inner--box {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer__inner--box-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__inner--box-list {
    display: none;
  }
}
.footer__inner--box-list li {
  margin-left: 40px;
}
.footer__inner--box-list li a {
  color: #333;
  font-weight: bold;
}
.footer__inner p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .footer__inner p {
    font-size: 26px;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 600px) {
  .footer__inner p {
    font-size: 18px;
  }
}
@media screen and (max-width: 450px) {
  .footer__inner p {
    font-size: 14px;
  }
}
.footer__inner--splist {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .footer__inner--splist {
    display: flex;
    gap: 80px 0;
    margin-bottom: 100px;
  }
}
.footer__inner--splist li {
  width: 45%;
}
.footer__inner--splist li a {
  color: #333;
  font-weight: bold;
  font-size: 24px;
}
@media screen and (max-width: 600px) {
  .footer__inner--splist li a {
    font-size: 20px;
  }
}
@media screen and (max-width: 450px) {
  .footer__inner--splist li a {
    font-size: 16px;
  }
}
.footer__inner small {
  display: block;
  font-size: 12px;
  text-align: center;
}
.footer .cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}
.footer .cta.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.about {
  color: #fff;
  position: relative;
  z-index: 2;
}
.about__inner {
  max-width: 1026px;
  margin: 0 auto;
  padding: 140px 20px 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .about__inner {
    flex-direction: column-reverse;
  }
}
.about__inner--col {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .about__inner--col {
    width: 100%;
  }
}
.about__inner--col h2 {
  font-size: 36px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .about__inner--col h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 600px) {
  .about__inner--col h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 450px) {
  .about__inner--col h2 {
    font-size: 24px;
  }
}
.about__inner--col h2::after {
  content: "ABOUT";
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
  margin-top: 15px;
}
@media screen and (max-width: 450px) {
  .about__inner--col h2::after {
    font-size: 14px;
  }
}
.about__inner--col p {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .about__inner--col p {
    font-size: 26px;
  }
}
@media screen and (max-width: 600px) {
  .about__inner--col p {
    font-size: 18px;
  }
}
@media screen and (max-width: 450px) {
  .about__inner--col p {
    font-size: 14px;
  }
}
.about__inner--col p span {
  font-weight: bold;
  background: linear-gradient(transparent 70%, #5591c5 80%);
}
.about__inner--img {
  width: 35%;
}
@media screen and (max-width: 768px) {
  .about__inner--img {
    width: 100%;
    margin-bottom: 80px;
    text-align: center;
  }
}

.contact {
  color: #fff;
  background: #fff;
}
.contact__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 90px 20px;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    padding: 60px 20px;
  }
}
.contact__inner .box {
  background-image: url(../../img/top/contact.png);
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .contact__inner .box {
    background-image: url(../../img/top/contact-sp.png);
    background-size: cover;
  }
}
.contact__inner .box .contact__inner--box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1026px;
  margin: 0 auto;
  padding: 120px 20px;
}
@media screen and (max-width: 768px) {
  .contact__inner .box .contact__inner--box {
    flex-direction: column;
  }
}
.contact__inner .box .contact__inner--box-left {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .contact__inner .box .contact__inner--box-left {
    width: 100%;
  }
}
.contact__inner .box .contact__inner--box-left h2 {
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .contact__inner .box .contact__inner--box-left h2 {
    font-size: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 600px) {
  .contact__inner .box .contact__inner--box-left h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 450px) {
  .contact__inner .box .contact__inner--box-left h2 {
    font-size: 24px;
  }
}
.contact__inner .box .contact__inner--box-left h2::after {
  content: "CONTACT";
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
  margin-top: 15px;
}
@media screen and (max-width: 450px) {
  .contact__inner .box .contact__inner--box-left h2::after {
    font-size: 14px;
  }
}
.contact__inner .box .contact__inner--box-right {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .contact__inner .box .contact__inner--box-right {
    width: 100%;
  }
}
.contact__inner .box .contact__inner--box-right .container > a {
  flex-direction: column;
  justify-content: center;
  margin-bottom: 15px;
  align-items: flex-start;
  height: auto;
  padding: 0;
  background: transparent;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .contact__inner .box .contact__inner--box-right .container > a {
    background: #fff;
    align-items: center;
    margin-bottom: 5px;
  }
}
.contact__inner .box .contact__inner--box-right .container > a .tel {
  font-size: 56px;
  font-weight: bold;
  font-family: "Archivo Black", sans-serif;
}
@media screen and (max-width: 768px) {
  .contact__inner .box .contact__inner--box-right .container > a .tel {
    color: #0872cf;
    font-size: 52px;
  }
}
@media screen and (max-width: 600px) {
  .contact__inner .box .contact__inner--box-right .container > a .tel {
    font-size: 40px;
  }
}
@media screen and (max-width: 450px) {
  .contact__inner .box .contact__inner--box-right .container > a .tel {
    font-size: 30px;
  }
}
.contact__inner .box .contact__inner--box-right .container .time {
  margin-top: 10px;
  height: auto;
  text-align: left;
	display:flex;
	align-items:flex-start;
}
@media screen and (max-width: 768px) {
  .contact__inner .box .contact__inner--box-right .container .time {
    color: #0872cf;
    margin-bottom: 0;
	align-items:center;
	  
  }
}
@media screen and (max-width: 600px) {
  .contact__inner .box .contact__inner--box-right .container .time {
    font-size: 14px;
  }
}
@media screen and (max-width: 450px) {
  .contact__inner .box .contact__inner--box-right .container .time {
    font-size: 12px;
  }
}
.contact__inner .box .contact__inner--box-right .container .time span {
  font-size: 12px;
  background-color: #0773d1;
  margin-right: 8px;
  padding: 4px 4px;
	display:inline-block;
}
@media screen and (max-width: 768px) {
  .contact__inner .box .contact__inner--box-right .container .time span {
    color: #fff;
    background-color: #0872cf;
  }
}
@media screen and (max-width: 450px) {
  .contact__inner .box .contact__inner--box-right .container .time span {
    font-size: 10px;
  }
}
@media screen and (max-width: 768px) {
  .contact__inner .box .contact__inner--box-right .container {
    text-align: center;
    background-color: #fff;
    height: 110px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 450px) {
  .contact__inner .box .contact__inner--box-right .container {
    height: 80px;
    margin-bottom: 20px;
  }
}
.contact__inner .box .contact__inner--box-right a {
  font-size: 18px;
  display: inline-block;
  background: linear-gradient(to right, #0772ce, #0088fe);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 50px;
  color: #fff;
  width: 90%;
  position: relative;
  font-weight: bold;
}
.contact__inner .box .contact__inner--box-right a.btn {
  transition: 0.3s ease;
  border: 1px solid transparent;
}
.contact__inner .box .contact__inner--box-right a.btn .wh {
  display: block;
}
.contact__inner .box .contact__inner--box-right a.btn .bl {
  display: none;
}
.contact__inner .box .contact__inner--box-right a.btn:hover {
  opacity: 1;
  background: #fff;
  color: #0088fe;
  border: 1px solid #0088fe;
}
.contact__inner .box .contact__inner--box-right a.btn:hover .wh {
  display: none;
}
.contact__inner .box .contact__inner--box-right a.btn:hover .bl {
  display: block;
}
.contact__inner .box .contact__inner--box-right a img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 6%;
}
@media screen and (max-width: 450px) {
  .contact__inner .box .contact__inner--box-right a img {
    width: 15px;
  }
}
@media screen and (max-width: 768px) {
  .contact__inner .box .contact__inner--box-right a {
    width: 100%;
    height: 110px;
  }
}
@media screen and (max-width: 450px) {
  .contact__inner .box .contact__inner--box-right a {
    height: 60px;
    font-size: 13px;
  }
}

.contact__main {
  padding: 0 40px 110px;
}
@media screen and (max-width: 768px) {
  .contact__main {
    padding: 0 5.3333333333vw 13.3333333333vw;
  }
}
.contact__main--inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact__main--inner {
    display: block;
  }
}
.contact__main--form {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact__main--form {
    width: 100%;
    margin-top: 10.6666666667vw;
  }
}

.contact__flow {
  width: 30%;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .contact__flow {
    width: 100%;
    position: unset;
    margin-bottom: 30px;
  }
}
.contact__flow--item {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 17px;
  font-weight: 500;
  opacity: 0.4;
  color: #0088fe;
}
.contact__flow--item span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0088fe;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 23px;
}
.contact__flow--item + .contact__flow--item {
  margin-top: 41px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact__flow--item + .contact__flow--item {
    margin-top: 30px;
  }
}
.contact__flow--item + .contact__flow--item span {
  position: relative;
}
.contact__flow--item + .contact__flow--item span::before {
  content: "";
  width: 1px;
  height: 43px;
  left: 50%;
  transform: translateX(-50%);
  top: -86%;
  background: #0088fe;
  display: block;
  z-index: -1;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .contact__flow--item + .contact__flow--item span::before {
    top: -65%;
    height: 33px;
  }
}
.contact__flow--item.active {
  opacity: 1;
}

.smf-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70%;
  margin-left: auto;
  padding: 45px 0;
}
@media screen and (max-width: 768px) {
  .smf-item {
    width: 100%;
    padding: 20px 0;
    display: block;
  }
}
.smf-item + .smf-item {
  border-top: 1px solid #f0f0f0;
}
.smf-item.first {
  padding-top: 0 !important;
}
.smf-item.last {
  align-items: flex-start;
}
.smf-item.last .smf-item__col--label {
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .smf-item.last .smf-item__col--label {
    padding-top: 0;
  }
}

.smf-item__col--label {
  width: 28%;
}
@media screen and (max-width: 768px) {
  .smf-item__col--label {
    width: 100%;
    margin-bottom: 20px;
  }
}
.smf-item__col--label .required {
  color: #fff;
  font-size: 11px;
  background: #ec3947;
  padding: 6px 8px;
}

.smf-form .smf-select-control {
  width: 100%;
  display: block;
}

.smf-item__col--controls {
  width: 68%;
}
@media screen and (max-width: 768px) {
  .smf-item__col--controls {
    width: 100%;
  }
}
.smf-item__col--controls input,
.smf-item__col--controls .smf-select-control__control {
  background: #f0f0f0 !important;
  height: 50px;
  width: 100% !important;
  padding: 0 40px;
  border: none !important;
  border-radius: 5px;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif !important;
}
@media screen and (max-width: 768px) {
  .smf-item__col--controls input,
  .smf-item__col--controls .smf-select-control__control {
    padding: 0 20px;
  }
}
.smf-item__col--controls textarea {
  background: #f0f0f0 !important;
  height: 50px;
  width: 100%;
  padding: 0 40px;
  border: none !important;
  border-radius: 5px;
  font-family: "Noto Sans JP", sans-serif !important;
  box-sizing: border-box;
  height: 250px;
}
@media screen and (max-width: 768px) {
  .smf-item__col--controls textarea {
    padding: 0 20px;
    height: 170px;
  }
}

.smf-item__label__text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .smf-item__label__text {
    justify-content: flex-start;
    gap: 10px;
  }
}

.smf-action {
  margin-top: 90px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .smf-action {
    margin-top: 40px;
  }
}

.smf-button-control__control {
  font-family: "Noto Sans JP", sans-serif !important;
  width: 420px;
  margin: 0 auto;
  border: none !important;
  max-width: 100%;
  height: 80px;
  border-radius: 50px !important;
  color: #fff !important;
  font-size: 18px !important;
  background-image: none !important;
  background: linear-gradient(to right, #0772ce, #0088fe) !important;
  background-position: 95%;
  background-size: 42px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .smf-button-control__control {
    height: 60px;
    background-size: 30px;
    font-size: 16px !important;
    margin: 0 !important;
  }
}

.smf-form {
  position: relative;
}

.smf-button-control__control[data-action=back] {
  width: 280px !important;
  background: #fff !important;
  font-size: 16px !important;
  height: 70px !important;
  border: 1px solid #333 !important;
  color: #333 !important;
}
@media screen and (max-width: 768px) {
  .smf-button-control__control[data-action=back] {
    width: 100% !important;
    height: 60px !important;
    margin-bottom: 20px !important;
  }
}

form[data-screen=confirm] .contact__flow .contact__flow--item:nth-child(1) {
  opacity: 1 !important;
}
form[data-screen=confirm] .contact__flow .contact__flow--item:nth-child(2) {
  opacity: 1 !important;
}
form[data-screen=confirm] .required {
  display: none !important;
}

form[data-screen=complete] .contact__flow .contact__flow--item:nth-child(1) {
  opacity: 1 !important;
}
form[data-screen=complete] .contact__flow .contact__flow--item:nth-child(2) {
  opacity: 1 !important;
}
form[data-screen=complete] .contact__flow {
  opacity: 1 !important;
}
form[data-screen=complete] .required {
  display: none !important;
}

.thanks__title {
  text-align: center;
  margin: 120px auto 30px;
  font-size: 24px;
}

.thanks__message {
  text-align: center;
  line-height: 1.7;
}

.back_btn {
  margin: 50px auto 0;
  max-width: 100%;
  width: 200px;
  height: 50px;
  color: #050505 !important;
  font-weight: 500;
  line-height: 48px;
  font-size: 19px !important;
  background: #fff !important;
  text-align: center;
  border: 1px solid #050505 !important;
  border-radius: 1000px !important;
  display: block;
  font-family: "Josefin Sans", sans-serif;
}

.flow {
  color: #333;
}
.flow__inner {
  max-width: 1026px;
  margin: 0 auto;
  padding: 100px 20px 120px;
}
@media screen and (max-width: 768px) {
  .flow__inner {
    padding: 80px 20px 80px;
  }
}
.flow__inner--ttl {
  font-size: 36px;
  margin-bottom: 30px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .flow__inner--ttl {
    font-size: 40px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 600px) {
  .flow__inner--ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 450px) {
  .flow__inner--ttl {
    font-size: 22px;
  }
}
.flow__inner--ttl::after {
  content: "FLOW";
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
  margin-top: 15px;
}
@media screen and (max-width: 450px) {
  .flow__inner--ttl::after {
    font-size: 14px;
  }
}
.flow__inner .text {
  font-size: 18px;
  margin-bottom: 45px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .flow__inner .text {
    font-size: 26px;
  }
}
@media screen and (max-width: 600px) {
  .flow__inner .text {
    font-size: 18px;
  }
}
@media screen and (max-width: 450px) {
  .flow__inner .text {
    font-size: 14px;
  }
}
.flow__inner--box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .flow__inner--box {
    gap: 20px;
  }
}
.flow__inner--box-img {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .flow__inner--box-img {
    width: 18%;
  }
}
.flow__inner--box-col {
  width: 80%;
}
@media screen and (max-width: 768px) {
  .flow__inner--box-col {
    width: 82%;
  }
}
.flow__inner--box-col h3 {
  font-size: 26px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .flow__inner--box-col h3 {
    font-size: 22px;
    display: flex;
    align-items: center;
    line-height: 1.5;
  }
}
@media screen and (max-width: 600px) {
  .flow__inner--box-col h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 450px) {
  .flow__inner--box-col h3 {
    font-size: 16px;
  }
}
.flow__inner--box-col h3 span {
  color: #0773d1;
  font-size: 14px;
  font-family: "Archivo Black", sans-serif;
  background-color: #eee;
  font-weight: bold;
  border-radius: 16px;
  margin-right: 30px;
  padding: 5px 20px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .flow__inner--box-col h3 span {
    margin-right: 10px;
  }
}
@media screen and (max-width: 600px) {
  .flow__inner--box-col h3 span {
    font-size: 12px;
  }
}
@media screen and (max-width: 450px) {
  .flow__inner--box-col h3 span {
    font-size: 10px;
    padding: 3px 10px;
  }
}
.flow__inner--box-col p {
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .flow__inner--box-col p {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .flow__inner--box-col p {
    font-size: 14px;
  }
}
@media screen and (max-width: 450px) {
  .flow__inner--box-col p {
    font-size: 14px;
  }
}

.scroll {
  position: relative;
}
.scroll::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8));
}
@media screen and (max-width: 768px) {
  .scroll {
    background-image: none;
    background-attachment: unset;
    background: transparent;
  }
}

.fv__video {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.fv__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv {
  padding-top: 95px;
  color: #fff;
  position: relative;
  z-index: 2;
}
.fv__inner {
  max-width: 1026px;
  margin: 0 auto;
  padding: 150px 20px 180px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .fv__inner {
    padding: 150px 20px;
  }
}
.fv__inner--ttl {
  font-size: 86px;
  line-height: 1.2;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .fv__inner--ttl {
    font-size: 66px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 600px) {
  .fv__inner--ttl {
    font-size: 50px;
  }
}
@media screen and (max-width: 450px) {
  .fv__inner--ttl {
    font-size: 40px;
  }
}
.fv__inner--ttl span {
  font-size: 46px;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .fv__inner--ttl span {
    font-size: 66px;
    padding-left: 0;
  }
}
@media screen and (max-width: 600px) {
  .fv__inner--ttl span {
    font-size: 50px;
  }
}
@media screen and (max-width: 450px) {
  .fv__inner--ttl span {
    font-size: 40px;
  }
}
.fv__inner p {
  font-size: 18px;
  line-height: 1.5;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .fv__inner p {
    font-size: 26px;
    padding-left: 0;
  }
}
@media screen and (max-width: 600px) {
  .fv__inner p {
    font-size: 22px;
  }
}
@media screen and (max-width: 450px) {
  .fv__inner p {
    font-size: 18px;
  }
}

main {
  background: #fff;
}

.link {
  background-color: #eee;
}
.link__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 100px 20px;
}
@media screen and (max-width: 768px) {
  .link__inner {
    padding: 40px 20px;
  }
}
.link__inner--box {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .link__inner--box {
    flex-direction: column-reverse;
  }
}
.link__inner--box-col {
  width: 50%;
  background-color: #0088fe;
  border-radius: 20px 0 0 20px;
  padding: 40px 20px;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .link__inner--box-col {
    width: 100%;
    border-radius: 0 0 20px 20px;
  }
}
.link__inner--box-col.reverse {
  border-radius: 0 20px 20px 0;
}
@media screen and (max-width: 768px) {
  .link__inner--box-col.reverse {
    border-radius: 0 0 20px 20px;
  }
}
.link__inner--box-col h2 {
  font-size: 36px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .link__inner--box-col h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 600px) {
  .link__inner--box-col h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 450px) {
  .link__inner--box-col h2 {
    font-size: 24px;
  }
}
.link__inner--box-col h2::after {
  content: "COMPANY";
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
  margin-top: 15px;
}
@media screen and (max-width: 450px) {
  .link__inner--box-col h2::after {
    font-size: 14px;
  }
}
.link__inner--box-col h2.recruit::after {
  content: "RECRUIT";
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
  margin-top: 15px;
}
@media screen and (max-width: 450px) {
  .link__inner--box-col h2.recruit::after {
    font-size: 14px;
  }
}
.link__inner--box-col p {
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .link__inner--box-col p {
    font-size: 26px;
  }
}
@media screen and (max-width: 600px) {
  .link__inner--box-col p {
    font-size: 18px;
  }
}
@media screen and (max-width: 450px) {
  .link__inner--box-col p {
    font-size: 14px;
  }
}
.link__inner--box-col .more {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 20px;
  color: #fff;
  font-weight: bold;
  font-family: "Archivo Black", sans-serif;
  font-size: 16px;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .link__inner--box-col .more {
    bottom: 10px;
    right: 10px;
  }
}
.link__inner--box-col .more img {
  transition: 0.3s ease;
}
.link__inner--box-col .more:hover img {
  transform: translateX(5px);
}
.link__inner--box-img {
  width: 50%;
  overflow: hidden;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.link__inner--box-img.mr img {
  transform: translateX(2px) scale(1.05);
}
@media screen and (max-width: 768px) {
  .link__inner--box-img {
    width: 100%;
    border-radius: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}
.link__inner--box-img img {
  vertical-align: bottom;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .link__inner--box-img img {
    border-radius: 8px 8px 0 0;
  }
}
.link__inner--box-img:hover img {
  transform: scale(1.1);
}
.link__inner--box-img.mr:hover img {
  transform: translateX(2px) scale(1.15);
}
.link__inner--box:nth-child(2) {
  flex-direction: row-reverse;
}
.link__inner--box:nth-child(2) .link__inner--box-img {
  border-radius: 0;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
@media screen and (max-width: 768px) {
  .link__inner--box:nth-child(2) .link__inner--box-img {
    width: 100%;
    border-radius: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}
@media screen and (max-width: 768px) {
  .link__inner--box:nth-child(2) {
    flex-direction: column-reverse;
  }
}

.storenth {
  color: #333;
}
.storenth__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 135px 20px 120px;
}
@media screen and (max-width: 768px) {
  .storenth__inner {
    padding: 60px 20px 20px;
  }
}
.storenth__inner--ttl {
  font-size: 36px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .storenth__inner--ttl {
    font-size: 40px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 600px) {
  .storenth__inner--ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 450px) {
  .storenth__inner--ttl {
    font-size: 24px;
  }
}
.storenth__inner--ttl::after {
  content: "STORENTH";
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
  margin-top: 15px;
}
@media screen and (max-width: 450px) {
  .storenth__inner--ttl::after {
    font-size: 14px;
  }
}
.storenth__inner p {
  font-size: 18px;
  margin-bottom: 80px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .storenth__inner p {
    font-size: 26px;
  }
}
@media screen and (max-width: 600px) {
  .storenth__inner p {
    font-size: 18px;
  }
}
@media screen and (max-width: 450px) {
  .storenth__inner p {
    font-size: 14px;
  }
}
.storenth__inner--box {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 80px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .storenth__inner--box {
    flex-direction: column;
  }
}
.storenth__inner--box:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .storenth__inner--box:nth-child(even) {
    flex-direction: column;
  }
}
.storenth__inner--box:last-child {
  margin-bottom: 0;
}
.storenth__inner--box-img {
  position: relative;
  width: 40%;
}
@media screen and (max-width: 768px) {
  .storenth__inner--box-img {
    width: 100%;
  }
}
.storenth__inner--box-img-nmb {
  position: absolute;
  top: -40px;
  left: -15px;
  text-align: center;
	color:#0281ee;

  font-size: 14px;
  font-weight: bold;
  line-height: 1 !important;
  font-family: "Archivo Black", sans-serif;
}
.storenth__inner--box-img-nmb.reverse {
  right: -15px;
  left: auto;
}
@media screen and (max-width: 768px) {
  .storenth__inner--box-img-nmb.reverse {
    right: auto;
    left: -15px;
  }
}
.storenth__inner--box-img-nmb span {
  font-size: 76px;
}
.storenth__inner--box-col {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .storenth__inner--box-col {
    width: 100%;
  }
}
.storenth__inner--box-col h3 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .storenth__inner--box-col h3 {
    font-size: 36px;
    line-height: 2;
  }
  .storenth__inner--box-col h3.mb0 {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .storenth__inner--box-col h3 {
    font-size: 26px;
  }
}
@media screen and (max-width: 450px) {
  .storenth__inner--box-col h3 {
    font-size: 22px;
  }
}
.storenth__inner--box-col h3 > span {
  padding: 4px 20px 6px 2px;
  line-height: 1;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.storenth__inner--box-col h3 > span::after {
  content: "";
  width: 0;
  height: 100%;
  background-color: #333;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.7s 0.5s ease;
}
.storenth__inner--box-col h3 > span span {
  transition: 0.3s 1.3s ease;
  opacity: 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .storenth__inner--box-col h3 > span {
    padding: 5px;
  }
}
.storenth__inner--box-col h3.active span::after {
  width: 100%;
}
.storenth__inner--box-col h3.active > span span {
  opacity: 1;
}
.storenth__inner--box-col p {
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .storenth__inner--box-col p {
    font-size: 26px;
  }
}
@media screen and (max-width: 600px) {
  .storenth__inner--box-col p {
    font-size: 18px;
  }
}
@media screen and (max-width: 450px) {
  .storenth__inner--box-col p {
    font-size: 14px;
  }
}
.storenth__inner--box-col p span {
  font-weight: bold;
  position: relative;
  display: inline-block;
}
.storenth__inner--box-col p span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(transparent 70%, #5591c5 80%);
  transition: 0.3s 1s ease;
  z-index: -1;
}
.storenth__inner--box-col p span.active::after {
  width: 100%;
}

.works {
  background-color: #eee;
  color: #333;
}
.works__inner {
  max-width: 1026px;
  margin: 0 auto;
  padding: 130px 20px;
}
@media screen and (max-width: 768px) {
  .works__inner {
    padding: 60px 20px;
  }
}
.works__inner--ttl-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.works__inner--ttl-box h2 {
  font-size: 36px;
  margin-bottom: 30px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .works__inner--ttl-box h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 600px) {
  .works__inner--ttl-box h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 450px) {
  .works__inner--ttl-box h2 {
    font-size: 22px;
  }
}
.works__inner--ttl-box h2::after {
  content: "WORKS";
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
  margin-top: 15px;
}
@media screen and (max-width: 450px) {
  .works__inner--ttl-box h2::after {
    font-size: 14px;
  }
}
.works__inner--ttl-box .more {
  font-size: 20px;
  color: #0773d1;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Archivo Black", sans-serif;
}
.works__inner--ttl-box .more img {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .works__inner--ttl-box .more {
    display: none;
  }
}
.works__inner .text {
  margin-bottom: 50px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .works__inner .text {
    font-size: 26px;
  }
}
@media screen and (max-width: 600px) {
  .works__inner .text {
    font-size: 18px;
  }
}
@media screen and (max-width: 450px) {
  .works__inner .text {
    font-size: 14px;
  }
}
.works__inner .youtube {
  margin-bottom: 20px;
}
.works__inner--youtube {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 0;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .works__inner--youtube {
    flex-direction: column;
  }
}
.works__inner--youtube-card {
  width: 32%;
}
@media screen and (max-width: 768px) {
  .works__inner--youtube-card {
    width: 100%;
  }
}
.works__inner--youtube-card-img {
  margin-bottom: 15px;
  width: 100%;
}
.works__inner--youtube-card-video {
  margin-bottom: 15px;
  width: 100%;
}
.works__inner--youtube-card-video iframe {
  width: 100%;
  height: 220px;
  aspect-ratio: 1.6;
}
.works__inner--youtube-card-ttl {
  font-size: 22px;
  color: #0773d1;
  font-weight: bold;
  margin-bottom: 15px;
}
.works__inner--youtube-card p {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.5;
}
.works__inner--youtube-card .desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.works__inner--youtube-card span {
  font-size: 14px;
  margin-bottom: 30px;
  display: inline-block;
  margin-right: 25px;
  color: #333;
}
.works__inner--youtube-card .more {
  margin-right: 0;
  margin-bottom: 0;
  display: block;
  text-align: center;
  background-color: #fff;
  border-radius: 20px;
  color: #0773d1;
  font-weight: bold;
  font-family: "Archivo Black", sans-serif;
  padding: 10px;
  border: 1px solid #0773d1;
  position: relative;
  transition: 0.3s;
}
.works__inner--youtube-card .more::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #0773d1;
  border-right: 2px solid #0773d1;
  transform: rotate(45deg);
}
.works__inner--youtube-card .more:hover {
  background-color: #0773d1;
  color: #fff;
}
.works__inner--youtube-card .more:hover::before {
  border-top-color: #fff;
  border-right-color: #fff;
}
.works__inner .more-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 150px;
  background-color: #0773d1;
  border-radius: 20px;
  color: #fff;
  font-weight: bold;
  font-family: "Archivo Black", sans-serif;
  padding: 10px;
  border: 1px solid #0773d1;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}
.works__inner .more-btn::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
}
.works__inner .more-btn:hover {
  background-color: #fff;
  color: #0773d1;
}
.works__inner .more-btn:hover::before {
  border-top-color: #0773d1;
  border-right-color: #0773d1;
}
.works__inner .tiktok {
  margin-bottom: 20px;
}
.works__inner--tiktok {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 0;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .works__inner--tiktok {
    flex-direction: column;
  }
}
.works__inner--tiktok-card {
  width: 32%;
}
@media screen and (max-width: 768px) {
  .works__inner--tiktok-card {
    width: 100%;
  }
}
.works__inner--tiktok-card img {
  width: 100%;
}
.works__inner--tiktok-card-img {
  margin-bottom: 15px;
  width: 100%;
}
.works__inner--tiktok-card-video {
  margin-bottom: 15px;
  width: 100%;
}
.works__inner--tiktok-card-video iframe {
  height: 220px;
  width: 100%;
  aspect-ratio: 1.6;
}
.works__inner--tiktok-card-ttl {
  font-size: 22px;
  color: #0773d1;
  font-weight: bold;
  margin-bottom: 15px;
}
.works__inner--tiktok-card p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.works__inner--tiktok-card .desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.works__inner--tiktok-card span {
  font-size: 14px;
  margin-bottom: 30px;
  display: inline-block;
  margin-right: 25px;
  color: #333;
}
.works__inner--tiktok-card .more {
  margin-right: 0;
  margin-bottom: 0;
  display: block;
  text-align: center;
  background-color: #fff;
  border-radius: 20px;
  color: #0773d1;
  font-weight: bold;
  font-family: "Archivo Black", sans-serif;
  padding: 10px;
  border: 1px solid #0773d1;
  position: relative;
  transition: 0.3s;
}
.works__inner--tiktok-card .more::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #0773d1;
  border-right: 2px solid #0773d1;
  transform: rotate(45deg);
}
.works__inner--tiktok-card .more:hover {
  background-color: #0773d1;
  color: #fff;
}
.works__inner--tiktok-card .more:hover::before {
  border-top-color: #fff;
  border-right-color: #fff;
}
.works__inner .more-sp {
  font-size: 30px;
  color: #0773d1;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  font-family: "Archivo Black", sans-serif;
}
.works__inner .more-sp img {
  margin-left: 20px;
}
@media screen and (max-width: 600px) {
  .works__inner .more-sp img {
    width: 12px;
  }
}
@media screen and (max-width: 450px) {
  .works__inner .more-sp img {
    width: 10px;
  }
}
@media screen and (max-width: 768px) {
  .works__inner .more-sp {
    display: block;
    text-align: center;
  }
	.smf-action .smf-button-control+.smf-button-control {
		margin-left:0 !important;
	}
}
@media screen and (max-width: 600px) {
  .works__inner .more-sp {
    font-size: 24px;
  }
}
@media screen and (max-width: 450px) {
  .works__inner .more-sp {
    font-size: 20px;
  }
}

.tiktok-embed {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
}

blockquote {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
}/*# sourceMappingURL=style.css.map */