@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  margin: 0;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

body {
  font-size: 12px;
  line-height: 1.5;
  font-family: "Meiryo", "メイリオ", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "MS PGothic", "ＭＳ Ｐゴシック", Osaka, Arial, sans-serif;
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-wrap: inherit;
}

a {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #18baed;
  text-decoration: none;
  opacity: 0.6;
  transition: all 0.3s ease;
}
a:active {
  outline: 0;
}
a:focus {
  outline: 0;
}

img {
  border: 0;
  width: 100%;
  height: auto;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

dl,
dt,
dd {
  margin: 0;
}

.clear {
  clear: both;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

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

.flex-box-wrap {
  display: flex;
  flex-wrap: wrap;
}

.flex-box-nowrap {
  display: flex;
  flex-wrap: nowrap;
}

.pc-view {
  display: block;
}
@media (max-width: 767px) {
  .pc-view {
    display: none;
  }
}

.sp-view {
  display: none;
}
@media (max-width: 767px) {
  .sp-view {
    display: block;
  }
}

section .inner {
  width: 960px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  section .inner {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-inline: 20px;
  }
}

header {
  border-top: 3px solid #000;
}
header .inner {
  width: 960px;
  margin: 0 auto;
}
header .header-box {
  display: flex;
  justify-content: space-between;
  padding-block-end: 15px;
}
header .header-box .h1-heading {
  margin: 0;
  padding: 0 0 0 30px;
  font-size: 12px;
  font-weight: 100;
  font-family: "BIZ UDPGothic", sans-serif;
}
header .header-box .h1-heading span {
  display: block;
  margin-block-start: 7px;
  font-size: 24px;
  font-weight: 600;
}
header .header-left {
  display: flex;
  align-items: center;
  padding: 15px 0 0;
}
header .header-left > .logo {
  padding-right: 30px;
  border-right: 1px solid #e5e5e5;
}
header .header-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
header .header-right__nav .list-box {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
header .header-right__nav .list-box .list-item {
  padding: 6px 24px;
  background: #000;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
header .main-nav .flex-box {
  display: flex;
  justify-content: end;
  gap: 35px;
}
header .main-nav ul li a {
  display: block;
  font-size: 14px;
}
@media (max-width: 767px) {
  header .main-nav .flex-box {
    gap: 0;
  }
  header .main-nav ul.flex-box {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #18baed;
    border-top: 1px solid #0f84a8;
  }
  header .main-nav ul > li {
    flex: 0 0 50%;
    text-align: center;
    border-bottom: 1px solid #0f84a8;
  }
  header .main-nav ul > li:nth-child(1) {
    border-right: 1px solid #000;
  }
  header .main-nav ul > li:nth-child(3) {
    border-right: 1px solid #000;
  }
  header .main-nav ul > li:nth-child(5) {
    display: none;
  }
  header .main-nav ul > li a {
    margin-left: 0px;
    padding: 8px 0;
    color: #fff;
  }
}
@media (max-width: 767px) {
  header .inner {
    width: 100%;
  }
  header .header-box {
    flex-direction: column;
    padding-block-end: 0;
  }
  header .header .h1-heading {
    flex: 3;
    padding: 10px 0 0 15px;
    font-size: 11px;
    font-weight: 100;
  }
  header .header .h1-heading span {
    font-size: 18px;
  }
  header .header-left {
    justify-content: stretch;
    padding: 20px 10px 10px;
    margin-bottom: 10px;
  }
  header .header-left .logo {
    width: 105px;
    padding-right: 15px;
  }
  header .header-left .logo img {
    max-width: 100%;
    height: 100%;
  }
  header .header-right__nav .list-box .list-item {
    width: 100%;
    padding: 16px 0;
    text-align: center;
  }
  header .header-nav {
    padding: 0 10px;
    margin-block-end: 15px;
  }
  header .header-nav > ul {
    justify-content: center;
  }
  header .header-nav > ul > li {
    width: 100%;
    margin-left: 0;
    margin-bottom: 5px;
    text-align: center;
  }
  header .header-nav > ul > li.sp-none {
    display: none;
    padding: 8px 15px;
    font-size: 13px;
    border-left: 1px solid #fff;
  }
  header .header-nav > ul > li.pc-none {
    display: block;
    padding: 8px 15px;
    font-size: 13px;
    border-left: 1px solid #fff;
  }
  header .header-nav > ul > li.pc-none > a {
    padding: 0px 0px;
  }
  header .header-nav > ul > li a {
    padding: 8px 0px;
  }
}

#page-top {
  position: fixed;
  bottom: 5%;
  right: 5%;
  font-size: 77%;
}
#page-top a {
  text-decoration: none;
  color: #18baed;
  width: 70px;
  padding: 20px 0;
  text-align: center;
  display: block;
  border-radius: 5px;
}
#page-top a:hover {
  text-decoration: none;
  color: #B1B1B1;
}
@media (max-width: 767px) {
  #page-top {
    right: 1%;
  }
}

footer .inner {
  display: flex;
  justify-content: center;
  padding-block: 40px;
  background: #f7f7f7;
}
footer .footer-box {
  display: flex;
  justify-content: space-between;
  width: 960px;
}
footer .footer-box__left {
  width: 530px;
}
footer .footer-box__left .address {
  display: flex;
  align-items: flex-start;
  padding-inline: 0 20px;
  margin-bottom: 20px;
}
footer .footer-box__left .address .logo {
  width: 143px;
  margin-right: 30px;
}
footer .footer-box__left .address .company p {
  font-size: 12px;
  line-height: 1.6;
}
footer .footer-box__left .address .company p b {
  font-size: 18px;
}
footer .footer-box__left .address .company p small {
  display: inline-block;
  font-size: 12px;
  line-height: 1.2;
}
footer .footer-box__left .contact__list {
  display: flex;
  gap: 10px;
  margin-block-end: 10px;
}
footer .footer-box__left .contact__list .list__item {
  width: 170px;
  padding-block: 5px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
footer .footer-box__left .contact__list .list__item a {
  color: #fff;
}
footer .footer-box__left .lead {
  font-size: 12px;
}
footer .footer-box__right {
  width: 400px;
}
footer .footer-box__right .footer-menu__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px 0;
}
footer .footer-box__right .footer-menu__list .list__item {
  width: 180px;
  padding-inline: 10px 0;
  background: url("/assets/img/icon-arrow02.webp") no-repeat 0 center;
}
footer .footer-box__right .footer-menu__list .list__item a {
  font-size: 14px;
}
footer .footer-box__copyright {
  background: #fff;
  padding-block: 20px 30px;
}
footer .footer-box__copyright .copy-right {
  text-align: center;
}
@media (max-width: 767px) {
  footer .footer-box {
    flex-direction: column;
    width: 100%;
    padding-inline: 20px;
  }
  footer .footer-box__left {
    width: 100%;
  }
  footer .footer-box__left .address {
    gap: 20px;
    padding: 0;
  }
  footer .footer-box__left .address .logo {
    width: 100px;
    margin-right: 0;
  }
  footer .footer-box__left .contact__list {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  footer .footer-box__left .contact__list .list__item {
    width: 48%;
    padding-block: 15px;
  }
  footer .footer-box__left .contact__list .list__item:first-of-type {
    width: 100%;
  }
  footer .footer-box__left .lead {
    margin-block-start: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
  }
  footer .footer-box__right {
    width: 100%;
    margin-block-start: 20px;
  }
  footer .footer-box__right .footer-menu__list {
    justify-content: space-between;
    gap: 10px 0;
  }
  footer .footer-box__right .footer-menu__list .list__item {
    width: 48%;
    padding-inline: 10px 0;
  }
  footer .footer-box__right .footer-menu__list .list__item a {
    font-size: 15px;
  }
}

section .inner .heading {
  font-size: 24px;
  text-align: center;
}
section .inner .heading::after {
  content: "";
  display: block;
  margin-block-start: 15px;
  padding: 6px 0 0;
  background: linear-gradient(90deg, #4CC9FE 0% 50%, #D6E4E5 50%);
  background-repeat: no-repeat;
  background-size: 50px 6px;
  background-position: bottom;
}

.container {
  margin-bottom: 50px;
}

.page-heading {
  display: flex;
  align-items: center;
  height: 214px;
  margin-block-end: 50px;
  background-color: #000;
  background-position: center 0;
  background-repeat: no-repeat;
}
.page-heading .inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.page-heading__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 960px;
  margin: 0 auto;
}
.page-heading__lead {
  color: #fff;
}
.page-heading__lead h2 {
  font-size: 24px;
}
.page-heading__lead p {
  margin-block-start: 10px;
  font-size: 16px;
}
.page-banner .inner {
  margin-block: 50px 100px;
}
.page-banner__list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.page-banner__list__item {
  width: 300px;
}
.page-banner__list__item picture {
  width: 100%;
}
.page-banner__list__item picture img {
  width: 300px;
  height: 120px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .page-heading .inner {
    display: flex;
    align-items: center;
    padding-inline: 20px 0;
  }
  .page-heading__box {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }
  .page-heading__lead {
    width: 240px;
    margin-block-start: 20px;
    color: #fff;
  }
  .page-heading__lead h2 {
    font-size: 24px;
  }
  .page-heading__lead p {
    margin-block-start: 5px;
    font-size: 14px;
  }
  .page-banner .inner {
    margin-block: 50px;
  }
  .page-banner__list {
    flex-direction: column;
    align-items: center;
  }
  .page-banner__list__item {
    width: 100%;
  }
  .page-banner__list__item picture img {
    width: 100%;
    height: auto;
  }
}

.page-title-img h2 {
  position: absolute;
  top: 50%;
  right: 0%;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  color: #fff;
  font-size: 24px;
  font-weight: 100;
}
.page-title-img h2 > span {
  display: block;
  font-size: 16px;
}
.page-title-img h2 + p {
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  margin-bottom: 0;
}
.page-title-contact, .page-title-partner, .page-title-privecy {
  background-image: url("/assets/img/common/page-title-bg01.webp");
}
.page-title-works {
  background-image: url("/assets/img/common/page-title-bg02.webp");
}
.page-title-company {
  background-image: url("/assets/img/common/page-title-bg03.webp");
}
@media (max-width: 767px) {
  .page-title-img h2 {
    top: -20%;
    left: 0%;
    -webkit-transform: translate(0%, -20%);
    transform: translate(0%, -20%);
    padding: 0 10px;
    font-size: 18px;
  }
  .page-title-img h2 > span {
    font-size: 14px;
  }
  .page-title-img h2 + p {
    top: -150%;
    left: 0%;
    -webkit-transform: translate(0%, -150%);
    transform: translate(0%, -150%);
    padding: 0 10px;
  }
  .page-title-img h2 + p > img {
    max-width: 100%;
    height: auto;
  }
}