@charset "UTF-8";
/* ================================
リセットCSS
================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  margin: 0;
}

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

dd {
  margin-left: 0;
}

a {
  display: inline-block;
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  word-wrap: break-word;
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

textarea {
  overflow: auto;
  resize: none;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

label[for] {
  cursor: pointer;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

picture {
  display: inline-block;
}

img {
  max-width: 100%;
  object-fit: cover;
}

span {
  display: inline-block;
}

/* ================================
基本設定
================================ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}
@media screen and (max-width: 600px) {
  html {
    font-size: 14px;
    scroll-padding-top: 60px;
  }
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #303033;
}

a, button {
  transition: all 0.2s linear;
}
a:hover, button:hover {
  opacity: 0.7;
}

/* ================================
ボタン
================================ */
/*--- ボタンラッパー ---*/
.c-btn__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 0.625rem;
}

/*--- ボタン ---*/
.c-btn {
  display: inline-block;
  min-width: 200px;
  height: 48px;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  background-color: #0E9884;
  border-radius: 9999px;
}
.c-btn > span {
  width: 100%;
  height: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.625rem;
}
.c-btn--wh {
  color: #0E9884;
  background-color: #fff;
  border: 1px solid #0E9884;
}
.c-btn--trial > span::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  aspect-ratio: 1/1;
  background: url(../img/cmn/mail_ico.svg) no-repeat center center/contain;
}
.c-btn--dl > span::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  aspect-ratio: 1/1;
  background: url(../img/cmn/doc_ico.svg) no-repeat center center/contain;
}
.c-btn--dl.c-btn--wh > span::before {
  background: url(../img/cmn/doc_ico--grn.svg) no-repeat center center/contain;
}
.c-btn--sm {
  min-width: initial;
  height: 40px;
  font-size: 0.875rem;
  padding: 0 1em;
}

/* ================================
レスポンシブ設定
================================ */
.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

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

/* ================================
見出し
================================ */
.c-heading {
  color: #437F75;
  font-size: 1.875rem;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .c-heading {
    font-size: 5vw;
  }
}
.c-heading::before {
  content: attr(data-en);
  display: block;
  font-size: 1.125rem;
  margin: 0 auto 0.625rem auto;
}
@media screen and (max-width: 768px) {
  .c-heading::before {
    font-size: 2.6vw;
  }
}

.c-heading2 {
  font-size: 2rem;
  margin-bottom: 4.25rem;
  text-align: center;
  color: #437F75;
}
@media screen and (max-width: 768px) {
  .c-heading2 {
    font-size: 5vw;
  }
}
#about .c-heading2 {
  margin-bottom: 0.625rem;
}
#solution .c-heading2 {
  margin-bottom: 0.625rem;
}

/* ================================
テキスト装飾
================================ */
/*--- テキストリンク ---*/
.c-link-text {
  color: #0E9884;
  text-decoration: underline;
}

/* ================================
コンテナー・インナー
================================ */
/*--- 全体ラッパー ---*/
.l-wrapper {
  position: relative;
}

/*--- コンテンツラッパー ---*/
.l-content-wrapper {
  position: relative;
  width: calc(100% - 320px);
  overflow-x: hidden;
}
@media screen and (max-width: 1280px) {
  .l-content-wrapper {
    width: calc(100% - 250px);
  }
}
@media screen and (max-width: 1024px) {
  .l-content-wrapper {
    width: 100%;
  }
}
#thanks .l-content-wrapper {
  width: 100%;
}

/*--- メインコンテナー ---*/
.l-content-container {
  margin-top: 70px;
}
@media screen and (max-width: 600px) {
  .l-content-container {
    margin-top: 60px;
  }
}

/*--- 下部固定エリア ---*/
.l-sticky-area {
  display: none;
}
.l-sticky-area__btn {
  min-width: 200px;
}
@media screen and (max-width: 1024px) {
  .l-sticky-area {
    position: fixed;
    z-index: 100;
    bottom: 0;
    left: 0;
    display: flex;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem;
  }
}

@media screen and (max-width: 600px) {
  .l-sticky-area button, .l-sticky-area a {
    width: 48%;
    min-width: 0;
  }
}
/*--- インナー ---*/
.l-inner {
  max-width: 960px;
  width: calc(100% - 3rem);
  padding-top: 5rem;
  padding-bottom: 5rem;
  margin: 0 auto;
}
.l-inner--lg {
  max-width: calc(100% - 3rem);
}
@media screen and (max-width: 768px) {
  .l-inner {
    width: calc(100% - 40px);
    padding-bottom: 1.25rem;
  }
  .l-inner--lg {
    max-width: calc(100% - 24px);
  }
}

/* ================================
グローバルナビ
================================ */
.l-global-nav {
  display: flex;
  align-items: center;
  gap: 2rem 2rem;
}
.l-global-nav__menu {
  display: flex;
  align-items: flex-end;
  column-gap: 2rem;
}
.l-global-nav__menu-item > a {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (min-width: 1025px) {
  .l-global-nav__btn-wrap {
    flex-wrap: nowrap;
    column-gap: 12px;
    column-gap: 0.8333333333vw;
  }
}
@media screen and (max-width: 1280px) {
  .l-global-nav {
    column-gap: 1rem;
  }
  .l-global-nav__menu {
    column-gap: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .l-global-nav {
    position: fixed;
    top: 70px;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    max-width: 375px;
    width: 100%;
    height: calc(100vh - 70px);
    padding: 2rem 1.5rem;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    background-color: #EFF8F6;
  }
  .l-global-nav__menu {
    flex-wrap: wrap;
  }
  .l-global-nav__menu-item {
    width: 100%;
    border-bottom: 1px solid #0E9884;
  }
  .l-global-nav__menu-item > a {
    padding: 1em 0;
  }
  .l-global-nav__btn {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .l-global-nav {
    top: 60px;
    height: calc(100vh - 60px);
  }
}
.l-global-nav .l-global-nav__tel {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

/* ================================
ヘッダー
================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: calc(100% - 320px);
  height: 70px;
  background-color: #fff;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.08);
}
#thanks .l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 70px;
  background-color: #fff;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.08);
}
.l-header__inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 32px;
  column-gap: 2.2222222222vw;
  padding-top: 0;
  padding-bottom: 0;
}
.l-header__logo {
  width: 17.5rem;
}
.l-header__toggle {
  display: none;
  position: relative;
  z-index: 1000;
  width: 40px;
  aspect-ratio: 1/1;
  cursor: pointer;
  background-color: #0E9884;
  border-radius: 50%;
}
.l-header__toggle > span {
  position: absolute;
  left: 10px;
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background-color: #fff;
  border-radius: 1.5px;
  transition: all 0.2s linear;
}
.l-header__toggle > span:nth-of-type(1) {
  top: 16px;
}
.l-header__toggle > span:nth-of-type(2) {
  bottom: 16px;
}
.l-header__toggle.is-active > span:nth-of-type(1) {
  transform: translateY(3px) rotate(45deg);
}
.l-header__toggle.is-active > span:nth-of-type(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}
@media screen and (max-width: 1280px) {
  .l-header {
    width: calc(100% - 250px);
  }
}
@media screen and (max-width: 1024px) {
  .l-header {
    width: 100%;
  }
  .l-header__toggle {
    display: block;
  }
  .l-header__nav {
    display: none;
  }
  .l-header__nav.is-active {
    display: flex;
  }
}
@media screen and (max-width: 600px) {
  .l-header {
    height: 60px;
  }
}

/* ================================
フッター
================================ */
.l-footer {
  text-align: center;
  background-color: #0E9884;
}
.l-footer__inner {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.l-footer__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1.25rem;
}
.l-footer__menu-item {
  color: #f7f6f9;
  font-size: 0.75rem;
}
.l-footer__logo {
  display: inline-block;
  height: 1.875rem;
}
@media screen and (max-width: 1024px) {
  .l-footer__inner {
    padding-bottom: 6.75rem;
  }
}

/* ================================
メインビジュアル
================================ */
.p-mv {
  position: relative;
  width: 100%;
  background: url(../img/mv_bg2.png) no-repeat top right/cover;
  padding: 0 0 4rem;
}
.p-mv__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.p-mv__cnt {
  position: relative;
  padding-top: 2rem;
  margin-bottom: 7%;
  width: 50%;
  white-space: nowrap;
  z-index: 1;
}
.p-mv__cnt::after {
  display: block;
  width: 100%;
  content: "コンテライズはIT導入補助金2024の導入支援事業者です。";
  text-align: right;
  font-size: 1.1vw;
  font-weight: 700;
  position: absolute;
  top: 115%;
}
.p-mv__deadline {
  background-color: #fff744;
  padding: 0.5rem 1.5rem;
  text-align: center;
  font-weight: 900;
}
.p-mv__deadline p {
  font-size: 1.6vw;
}
.p-mv__deadline p span {
  color: #015ebe;
}
.p-mv__figure {
  margin-bottom: -3%;
}
.p-mv__intro {
  color: #47464A;
  line-height: 1.8;
  font-weight: 700;
}
.p-mv__catch {
  width: 90%;
  font-size: 3.6vw;
  font-weight: 900;
  font-style: italic;
  transform: rotate(-8deg);
  padding-left: 5.8vw;
  line-height: 1;
}
.p-mv__catch .right {
  display: block;
  text-align: right;
}
.p-mv__catch .marker-y {
  font-size: 2.4vw;
  background: linear-gradient(transparent 70%, #fff843 70%);
}
.p-mv__catch .small {
  font-size: 1.8vw;
}
.p-mv__catch .large {
  font-size: 7vw;
  line-height: 1.3;
}
.p-mv-point {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  color: #47464A;
  font-size: 18px;
  font-size: 2vh;
  font-weight: 700;
  margin-left: -55px;
  margin-left: -6.1111111111vh;
}
.p-mv-point__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2.9vw;
}
.p-mv-point__list::before {
  display: block;
  content: "※インボイス枠";
  font-size: 1vw;
  position: absolute;
  top: 118%;
  right: 0;
  transform: translateX(50%);
}
@media screen and (max-width: 768px) {
  .p-mv-point__list::before {
    right: 50%;
  }
}
.p-mv-point__list-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 8vw;
  font-size: 1vw;
  font-weight: 700;
  aspect-ratio: 1/1;
  background: rgb(231, 240, 253);
  background: linear-gradient(145deg, rgb(231, 240, 253) 28%, rgb(143, 191, 245) 100%);
  border: 1px solid #0E9884;
  border-radius: 50%;
  padding: 0.5em;
  text-align: center;
}
.p-mv-point__list-item > p:first-of-type {
  font-size: 1.1vw;
  text-align: center;
  line-height: 1.2;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.p-mv-point__list-item p:nth-of-type(2) {
  font-size: 4vw;
  line-height: 1;
  padding-left: 0.2em;
}
.p-mv-point__list-item small {
  font-size: 1vw;
}
.p-mv-point__list + .p-mv-point__list {
  margin-top: -0.5rem;
}
.p-mv__img {
  position: absolute;
  top: 11%;
  left: 38%;
  width: 62%;
}
.p-mv__img img {
  width: 100%;
}
.p-mv__img .list-bottom {
  position: absolute;
  bottom: -0.3vw;
  right: 11vw;
}
@media screen and (max-width: 1024px) {
  .p-mv {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media screen and (max-width: 980px) {
  .p-mv {
    height: auto;
    min-height: calc(100vh - 70px);
    padding: 2.5rem 0 0;
  }
  .p-mv .p-mv-point__list {
    gap: 5.7vw;
  }
  .p-mv .p-mv-point__list-item {
    font-size: 2.5vw;
  }
  .p-mv__flex {
    flex-direction: column;
    position: relative;
  }
  .p-mv__cnt {
    position: relative;
    width: 100%;
    padding-top: 0;
    margin-bottom: 70%;
  }
  .p-mv__cnt .marker-wh {
    font-size: 2.8rem;
  }
  .p-mv__cnt .marker-y {
    font-size: 9vw;
  }
  .p-mv__cnt .marker-y:nth-of-type(2) {
    font-size: 7vw;
  }
  .p-mv__cnt .small {
    font-size: 5vw;
  }
  .p-mv__cnt .large {
    font-size: 22vw;
    line-height: 1.3;
  }
  .p-mv__cnt::after {
    font-size: 2.6vw;
    top: 340%;
  }
  .p-mv__catch {
    padding-left: 0;
    line-height: 1.8;
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-55%) rotate(-8deg);
    transform-origin: top;
  }
  .p-mv__img {
    padding: 0 2.5%;
    position: static;
    transform: translateX(0);
    margin-bottom: 15%;
    width: 100%;
  }
  .p-mv-point {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
    color: #47464A;
    font-size: 18px;
    font-size: 2vh;
    font-weight: 700;
    margin-left: -55px;
    margin-left: -6.1111111111vh;
  }
  .p-mv-point__list {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2.7vw;
    width: 72%;
  }
  .p-mv-point__list::before {
    font-size: 2vw;
  }
  .p-mv-point__list-item {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    width: 30%;
    align-items: center;
    font-weight: 700;
    aspect-ratio: 1/1;
    background: rgb(231, 240, 253);
    background: linear-gradient(145deg, rgb(231, 240, 253) 46%, rgb(143, 191, 245) 100%);
    border: 1px solid #0E9884;
    border-radius: 50%;
  }
  .p-mv-point__list-item > span {
    text-align: center;
    line-height: 1.2;
  }
  .p-mv-point__list-item p:first-of-type {
    font-size: 3.8vw;
  }
  .p-mv-point__list-item p:nth-of-type(2) {
    font-size: 8vw;
  }
  .p-mv__deadline {
    width: 100%;
  }
  .p-mv__deadline p {
    font-size: 5.6vw;
  }
  .p-mv .list-bottom {
    bottom: -6vw;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ================================
お申込みフォーム
================================ */
.p-app__inner {
  padding: 5rem 1.5rem;
}
.p-app__heading {
  color: #437F75;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 1025px) {
  .p-app {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 60;
    width: 320px;
    height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    box-shadow: -4px 0px 4px rgba(0, 0, 0, 0.04);
  }
  .p-app__inner {
    padding: 6vh 1rem 3vh 1rem;
  }
  .p-app__list {
    margin-bottom: 24px;
    margin-bottom: 2.6666666667vh;
  }
  .p-app__heading {
    font-size: 1rem;
    margin-bottom: 24px;
    margin-bottom: 2.6666666667vh;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .p-app {
    width: 250px;
  }
}
@media screen and (max-width: 600px) {
  .p-app__inner {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.p-app-form label.error {
  color: #f03b13;
  font-size: 0.75rem;
}
.p-app-form__list {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 1.625rem auto;
}
.p-app-form__ttl {
  font-size: 0.875rem;
}
.p-app-form__ttl.is-required::after {
  content: "*";
  color: #f03b13;
  font-weight: 700;
  margin-left: 5px;
}
.p-app-form__ttl + .p-app-form__cnt {
  margin-top: 0.5rem;
}
.p-app-form__cnt + .p-app-form__ttl {
  margin-top: 1rem;
}
.p-app-form__textbox {
  width: 100%;
  height: 3rem;
  font-size: 0.875rem;
  border: 1px solid #ACABAF;
  border-radius: 4px;
  background-color: #fff;
  padding: 0 1rem;
}
.p-app-form__control {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
}
.p-app-form__agree {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  font-size: 0.875rem;
}
.p-app-form__agree > input[type=checkbox] {
  border: 1px solid #ACABAF;
}
.p-app-form__agree + label.error {
  margin-top: -1.375rem;
}
@media screen and (min-width: 1025px) {
  .p-app-form__list {
    margin-bottom: 26px;
    margin-bottom: 2.8888888889vh;
  }
  .p-app-form__ttl + .p-app-form__cnt {
    margin-top: 8px;
    margin-top: 0.8888888889vh;
  }
  .p-app-form__cnt + .p-app-form__ttl {
    margin-top: 16px;
    margin-top: 1.7777777778vh;
  }
  .p-app-form__control {
    row-gap: 32px;
    row-gap: 3.5555555556vh;
  }
}

/* ================================
SDGs
================================ */
.p-sdgs {
  padding-top: 1.5625rem;
  padding-bottom: 1.5625rem;
}
.p-sdgs__head {
  display: flex;
  align-items: center;
  gap: 1rem 1rem;
  margin-bottom: 0.75rem;
}
.p-sdgs__head-img {
  height: 1.875rem;
}
.p-sdgs__head-txt {
  color: #47464A;
  font-size: 0.75rem;
}
.p-sdgs__slider {
  display: none;
  margin-right: -24px;
}
.p-sdgs__slider.slick-initialized {
  display: block;
}
.p-sdgs__logo {
  display: block;
  width: 8.75rem;
  aspect-ratio: 140/48;
  background-color: #FAFAFA;
  border-radius: 0.5rem;
  margin: 0 0.375rem;
}
.p-sdgs__logo > img {
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
  padding: 0.625rem;
}
@media screen and (min-width: 769px) {
  .p-sdgs {
    padding-top: 25px;
    padding-top: 2.7777777778vh;
    padding-bottom: 25px;
    padding-bottom: 2.7777777778vh;
  }
  .p-sdgs__head-text {
    font-size: 12px;
    font-size: 1.3333333333vh;
  }
}
@media screen and (max-width: 600px) {
  .p-sdgs__head {
    flex-direction: column;
  }
}

/* ================================
こんなECサイト制作できます
================================ */
@media screen and (max-width: 768px) {
  .p-service {
    padding-bottom: 3.125rem;
  }
}
.p-service__list1 {
  display: flex;
  max-width: 56.25rem;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch;
  gap: 30px;
  margin: 0 auto 12.5rem;
}
@media screen and (max-width: 768px) {
  .p-service__list1 {
    display: block;
    margin-bottom: 0.625rem;
  }
}
.p-service__list2 {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  gap: 20px;
  border-radius: 2rem;
  margin: 0 auto 4.0625rem;
}
@media screen and (max-width: 768px) {
  .p-service__list2 {
    flex-wrap: wrap;
    margin-bottom: 1.875rem;
  }
}
.p-service__list3 {
  flex: 3;
  height: 100%;
  min-height: 0%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-service__list3 {
    flex-wrap: wrap;
    flex-direction: row;
  }
}
.p-service__item1 {
  position: relative;
  background-color: #eef9f7;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.p-service__item1:first-of-type {
  flex: 0 1 100%;
}
.p-service__item1:not(:first-of-type) {
  flex: 0 1 calc((100% - 60px) / 3);
}
@media screen and (max-width: 768px) {
  .p-service__item1:not(:last-of-type) {
    margin-bottom: 1.875rem;
  }
}
.p-service__item2 {
  flex: 0 1 calc((100% - 60px) / 3);
  background-color: #fff;
  padding: 1.9375rem 0.9375rem;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .p-service__item2 {
    padding: 1.25rem 0.3125rem;
  }
  .p-service__item2:not(:last-of-type) {
    flex: 0 1 calc((100% - 20px) / 2);
  }
  .p-service__item2:last-of-type {
    flex: 0 1 100%;
  }
}
.p-service__item3 {
  position: relative;
  padding-left: 1em;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-service__item3 {
    font-size: 3.4vw;
  }
  .p-service__item2:last-of-type .p-service__item3 {
    flex: 0 1 50%;
  }
}
.p-service__item3::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.p-service__title1 {
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
  color: #fff;
  background-color: #437F75;
  line-height: 3;
  border: 5px solid #437F75;
  border-radius: 2rem 2rem 0 0;
}
@media screen and (max-width: 768px) {
  .p-service__title1 {
    font-size: 5vw;
    line-height: 1.4;
    padding: 0.5em;
    border-radius: 1.7rem 1.7rem 0 0;
  }
}
.p-service__title2 {
  font-size: 2rem;
  text-align: center;
  font-weight: 500;
  color: #437F75;
  line-height: 1.2;
  margin-bottom: 2rem;
  flex: 1;
  height: 100%;
  min-height: 0%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-service__title2 {
    font-size: 5.5vw;
    margin-bottom: 1.25rem;
  }
}
.p-service__title3 {
  font-size: 1.625rem;
  text-align: center;
  font-weight: 500;
  color: #fff;
  background-color: #437F75;
  line-height: 1.2;
  padding: 0.5em 0;
  border: 5px solid #437F75;
  border-radius: 2rem 2rem 0 0;
  flex: 1;
  height: 100%;
  min-height: 0%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-service__title3 {
    font-size: 4vw;
  }
}
.p-service__bottom {
  position: relative;
  padding: 4.125rem 2.5rem;
  border: 5px solid #437F75;
  border-radius: 0 0 2rem 2rem;
}
.p-service__bottom:after {
  display: block;
  width: 55%;
  aspect-ratio: 1/1;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 88%;
  transform: translateX(-50%);
}
.p-service__item1:nth-of-type(2) .p-service__bottom:after {
  background-image: url("../img/service_img1.png");
}
.p-service__item1:nth-of-type(3) .p-service__bottom:after {
  background-image: url("../img/service_img2.png");
}
.p-service__item1:nth-of-type(4) .p-service__bottom:after {
  background-image: url("../img/service_img3.png");
}
@media screen and (max-width: 768px) {
  .p-service__bottom:after {
    width: 23%;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  .p-service__bottom {
    position: relative;
    padding: 2.5rem 0.625rem;
  }
  .p-service__item1:not(:first-of-type) .p-service__bottom {
    padding: 1.875rem 20% 1.875rem 5%;
  }
}
.p-service__txt1 {
  font-size: 1.125rem;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-service__txt1 {
    font-size: 4vw;
  }
  .p-service__item1:not(:first-of-type) .p-service__txt1 {
    text-align: right;
  }
}
.p-service__txt2 {
  font-size: 1.125rem;
  text-align: right;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-service__txt2 {
    font-size: 0.75rem;
  }
}
.p-service__blue {
  color: #1165ba;
}
.p-service__light-blue {
  color: #33b5df;
}
.p-service__mid {
  font-size: 140%;
  line-height: 1;
}
.p-service__large {
  font-size: 200%;
  line-height: 1;
}
.p-service__figure1 {
  width: 15%;
  aspect-ratio: 45/95;
  margin: 0 32% 0 53%;
}
@media screen and (max-width: 768px) {
  .p-service__figure1 {
    width: 6.5%;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2rem;
  }
}

/* ================================
こんなお悩みはありませんか？
================================ */
.p-problem {
  background: url(../img/problem_bg.svg) repeat-x center bottom/auto 100%;
}
.p-problem__inner {
  padding-top: 3.75rem;
  padding-bottom: 7.5rem;
}
.p-problem__head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.p-problem__head-txt {
  display: inline-block;
  color: #0E9884;
  font-size: 1.25rem;
  font-weight: 700;
  border-bottom: 2px solid #0E9884;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.p-problem__head-ttl {
  color: #437F75;
  font-size: 2rem;
}
.p-problem__cnt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.875rem 1.875rem;
}
.p-problem__cnt::before {
  content: "";
  display: inline-block;
  width: 14.375rem;
  aspect-ratio: 230/255;
  background: url(../img/problem_img.png) no-repeat center center/contain;
}
.p-problem__list {
  padding-bottom: 1.5625rem;
}
.p-problem__list > li {
  font-size: 1.125rem;
  font-weight: 700;
  text-indent: -1.75rem;
  padding-left: 1.75rem;
}
.p-problem__list > li::before {
  content: "";
  display: inline-block;
  width: 1.125rem;
  aspect-ratio: 1/1;
  vertical-align: middle;
  background: url(../img/problem-list_ico.svg) no-repeat center center/contain;
  margin-right: 0.625rem;
}
.p-problem__list > li:not(:last-child) {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 600px) {
  .p-problem__head-ttl {
    font-size: 24px;
  }
  .p-problem__cnt {
    flex-direction: column;
  }
  .p-problem__cnt::before {
    width: 150px;
  }
}

/* ================================
IT導入補助金とは？
どんな人が補助金対象者になる？
IT導入補助金でいくらもらえるの？
================================ */
.p-about {
  padding-top: 0;
}
.p-about::before {
  content: "";
  display: block;
  width: 9.25rem;
  aspect-ratio: 148/48;
  background: url(../img/arrow_green2.svg) no-repeat center center/contain;
  margin: 2.5rem auto;
}
.p-about__txt {
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-about__item:first-of-type .p-about__txt {
    text-align: left;
  }
}
.p-about__item {
  margin-bottom: 3.125rem;
}
.p-about__item:nth-of-type(2) {
  margin-bottom: 6.25rem;
}
.p-about__figure {
  margin: 5rem 10rem;
}
.p-about__table {
  width: 100%;
}
.p-about__th, .p-about__td {
  text-align: center;
  font-size: 1.125rem;
  line-height: 5;
  vertical-align: middle;
  border: 2px solid #fff;
}
@media screen and (max-width: 768px) {
  .p-about__th, .p-about__td {
    font-size: 3.3vw;
  }
}
.p-about__th {
  background-color: #ebeef3;
}
.p-about__td {
  background-color: #f7f9fa;
}
.p-about__tr:first-of-type .p-about__td {
  font-weight: 700;
}

/* ================================
補助金申請できるECシステム
申請作業が複雑で難しそう？
================================ */
@media screen and (max-width: 768px) {
  .p-target {
    padding-bottom: 3.125rem;
  }
}
.p-target__heading {
  max-width: 56.25rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  background-color: #437F75;
  color: #fff;
  border-radius: 1rem;
  line-height: 2;
  margin: 0 auto 3.3125rem;
}
@media screen and (max-width: 768px) {
  .p-target__heading {
    font-size: 6vw;
  }
}
.p-target__txt {
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-target__txt {
    font-size: 4vw;
  }
}
.p-target__img1 {
  max-width: 56.25rem;
  padding: 3.5rem 7rem;
  border: 5px solid #437F75;
  border-radius: 2rem;
  margin: 3.125rem auto 14.1875rem;
}
@media screen and (max-width: 768px) {
  .p-target__img1 {
    padding: 3.125rem;
    margin-bottom: 3.125rem;
  }
}
.p-target__img2 {
  max-width: 56.25rem;
  margin: 0 auto;
}

/* ================================
利用時の具体的な流れ
================================ */
.p-flow {
  background: url("../img/flow_bg.png") top/cover;
}
@media screen and (max-width: 768px) {
  .p-flow {
    padding-bottom: 10%;
  }
}
.p-flow__heading {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto 3.125rem;
  font-size: 2rem;
  text-align: center;
  color: #437F75;
}
@media screen and (max-width: 768px) {
  .p-flow__heading {
    font-size: 5vw;
    margin: 0 auto 6.875rem;
  }
}
.p-flow__heading::before, .p-flow__heading::after {
  display: block;
  content: "";
  width: 2em;
  height: 4px;
  background-color: #437F75;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-flow__heading::before, .p-flow__heading::after {
    display: none;
  }
}
.p-flow__heading::before {
  left: -3em;
}
.p-flow__heading::after {
  right: -3em;
}
.p-flow__list {
  width: 100%;
  max-width: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.p-flow__list:first-of-type {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-flow__list:first-of-type {
    display: none;
  }
}
.p-flow__list:first-of-type .p-flow__item:first-of-type::before {
  display: none;
}
.p-flow__list:nth-of-type(2) {
  margin-left: auto;
  margin-right: 5%;
  margin-bottom: 6.8125rem;
}
@media screen and (max-width: 768px) {
  .p-flow__list:nth-of-type(2) {
    display: none;
  }
}
.p-flow__list:last-of-type {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-flow__list:last-of-type {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 1.875rem;
  }
  .p-flow__list:last-of-type .p-flow__item:first-of-type::before {
    display: none;
  }
}
.p-flow__item {
  position: relative;
  flex: 0 1 calc((100% - 6rem) / 3);
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 8px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4375rem;
}
@media screen and (max-width: 768px) {
  .p-flow__item {
    flex: 0 1 calc((100% - 4.5rem) / 2);
    gap: 0.625rem;
  }
}
.p-flow__item::before {
  display: block;
  content: "";
  width: 1.3125rem;
  height: 4.375rem;
  background: url("../img/arrow_green3.png") no-repeat top/contain;
  position: absolute;
  top: 50%;
  left: -3.1875rem;
  transform: translateY(-50%);
}
.p-flow__item:nth-of-type(odd) {
  background-color: #cde5be;
}
.p-flow__item:nth-of-type(even) {
  background-color: #eaffdc;
}
.p-flow__txt {
  color: #437F75;
  font-size: 1.125rem;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-flow__txt {
    font-size: 3.4vw;
  }
}
.p-flow__figure {
  width: 4.375rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-flow__figure {
    width: 30%;
  }
}
.p-flow__figure2 {
  width: 23%;
  margin: 0 auto 3.625rem;
}
.p-flow__result {
  width: 100%;
  max-width: 56.25rem;
  margin: 0 auto;
  background-color: #eaffdc;
  border: 0.625rem solid #fff;
  border-radius: 1.875rem;
}
.p-flow__text {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  font-size: 2rem;
  color: #0E9884;
  font-weight: 700;
  line-height: 3;
}
@media screen and (max-width: 768px) {
  .p-flow__text {
    font-size: 5vw;
  }
}
.p-flow__text::before {
  display: block;
  content: "";
  width: 5.8125rem;
  aspect-ratio: 1/1;
  background: url("../img/flow_icon7.png") no-repeat top/contain;
  position: absolute;
  top: 50%;
  right: calc(100% + 1.875rem);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-flow__text::before {
    width: 20%;
  }
}
.p-flow__text::after {
  display: block;
  content: "";
  width: 11.125rem;
  aspect-ratio: 152/117;
  background: url("../img/flow_icon8.png") no-repeat top/contain;
  position: absolute;
  top: 50%;
  left: calc(100% + 5.9375rem);
}
@media screen and (max-width: 768px) {
  .p-flow__text::after {
    width: 30%;
    top: 60%;
    left: 100%;
  }
}

/* ================================
コンテライズが選ばれる7つの理由
================================ */
.p-reason__inner {
  padding-bottom: 3.125rem;
}
@media screen and (max-width: 600px) {
  .p-reason__inner {
    padding-bottom: 5rem;
  }
}
.p-reason__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4%;
}
.p-reason__item:not(:last-of-type) {
  margin-bottom: 3.375rem;
}
.p-reason__item:nth-of-type(even) {
  flex-direction: row-reverse;
}
.p-reason__item:nth-of-type(2) {
  padding-left: 4%;
}
.p-reason__item:nth-of-type(2) .p-reason__img {
  flex: 0 1 46%;
}
.p-reason__item:nth-of-type(2) .p-reason__cnt {
  flex: 0 1 46%;
}
.p-reason__item:nth-of-type(4) {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}
.p-reason__item:nth-of-type(4) .p-reason__img {
  flex: 0 1 47%;
}
.p-reason__item:nth-of-type(4) .p-reason__cnt {
  flex: 0 1 45%;
}
.p-reason__item:nth-of-type(6) {
  padding-left: 4%;
}
.p-reason__item:nth-of-type(6) .p-reason__img {
  flex: 0 1 46%;
}
.p-reason__item:nth-of-type(6) .p-reason__cnt {
  flex: 0 1 46%;
}
.p-reason__item:nth-of-type(7) {
  gap: 8%;
}
.p-reason__item:nth-of-type(7) .p-reason__img {
  flex: 0 1 44%;
}
.p-reason__item:nth-of-type(7) .p-reason__cnt {
  flex: 0 1 48%;
}
@media screen and (max-width: 768px) {
  .p-reason__item {
    display: block;
  }
}
.p-reason__img {
  flex: 0 1 40%;
}
@media screen and (max-width: 768px) {
  .p-reason__img {
    width: 70%;
    margin: 0 auto 1rem;
  }
}
.p-reason__cnt {
  flex: 0 1 56%;
}
.p-reason__num {
  position: relative;
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.p-reason__num::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 2rem;
  height: 1px;
  background-color: #0E9884;
}
@media screen and (max-width: 768px) {
  .p-reason__num {
    width: fit-content;
    margin: 0 auto;
  }
  .p-reason__num::after {
    left: 50%;
    bottom: 0.5em;
    transform: translateX(-50%);
  }
}
.p-reason__ttl {
  font-size: 1.4375rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-reason__ttl {
    font-size: 4vw;
    text-align: center;
  }
}
.p-reason__txt {
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-reason__txt {
    font-size: 3vw;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .p-reason {
    column-gap: 1.25rem !important;
  }
}

/* ================================
よくあるご質問
================================ */
.p-faq-block__q, .p-faq-block__a {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 1rem;
  padding: 0.75rem 2.5rem;
  font-size: 1.25rem;
}
.p-faq-block__q::before, .p-faq-block__a::before {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}
.p-faq-block__q {
  border: 1px solid #0E9884;
  border-radius: 9999px;
}
.p-faq-block__q::before {
  content: "Q.";
  -webkit-text-stroke: 1px #0E9884;
}
.p-faq-block__q::after {
  content: "＋";
  color: #0E9884;
  font-size: 1rem;
  margin-left: auto;
}
.p-faq-block__a::before {
  content: "A.";
  -webkit-text-stroke: 1px #E47147;
}
.p-faq-block.is-open .p-faq-block__q::after {
  content: "―";
}
.p-faq-block + .p-faq-block {
  margin-top: 1rem;
}
@media screen and (max-width: 600px) {
  .p-faq-block__q, .p-faq-block__a {
    padding: 0.75rem 1.25rem;
  }
}

/* ================================
サイト制作後の運用も安心
================================ */
.p-sol {
  padding-top: 0;
}
.p-sol::before {
  content: "";
  display: block;
  width: 9.25rem;
  aspect-ratio: 148/48;
  background: url(../img/arrow_green2.svg) no-repeat center center/contain;
  margin: 2.5rem auto;
}
.p-sol__desc {
  font-size: 1.125rem;
  text-align: center;
  font-weight: 500;
  margin-bottom: 7.75rem;
}
@media screen and (max-width: 768px) {
  .p-sol__desc {
    font-size: 3.3vw;
    margin-bottom: 1.875rem;
  }
  .p-sol__desc:first-of-type {
    text-align: left;
  }
}
.p-sol__figure {
  width: 17%;
  margin: 0.9375rem auto;
}
@media screen and (max-width: 768px) {
  .p-sol__figure {
    width: 30%;
  }
}
.p-sol__list {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 2.5rem 2.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-sol__list {
    display: block;
  }
}
.p-sol__item {
  width: calc(30% - 1.25rem);
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .p-sol__item {
    width: 70%;
    margin: 6.25rem auto 0;
  }
}
.p-sol__item:nth-of-type(1)::before {
  top: -5.875rem;
  width: 93%;
  aspect-ratio: 273/147;
  background: url(../img/sol_img01.png) no-repeat center center/contain;
}
.p-sol__item:nth-of-type(2)::before {
  top: -3.875rem;
  width: 63%;
  aspect-ratio: 186/115;
  background: url(../img/sol_img02.png) no-repeat center center/contain;
}
.p-sol__item:nth-of-type(3)::before {
  top: -5.875rem;
  width: 59%;
  aspect-ratio: 175/147;
  background: url(../img/sol_img03.png) no-repeat center center/contain;
}
.p-sol__link {
  font-size: 1.4375rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-sol__link {
    font-size: 2.7vw;
  }
}
.p-sol__link a {
  color: #1c70e7;
}
.p-sol__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 0.75rem;
  background-color: #EFF8F6;
  border-radius: 50%;
  padding: 1.875rem;
}
.p-sol__item::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
}
.p-sol__ttl {
  color: #437F75;
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
}
.p-sol__txt {
  line-height: 1.8;
  text-decoration: underline;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-sol__txt {
    font-size: 3vw;
  }
}

/* ================================
会社概要
================================ */
.p-company__inner {
  max-width: 740px;
}
.p-company__table {
  width: 100%;
  table-layout: fixed;
  margin-bottom: 2.5rem;
}
.p-company__table tr {
  border-bottom: 1px solid #ACABAF;
}
.p-company__table th, .p-company__table td {
  padding: 1.5rem 0;
}
.p-company__table th {
  width: 10rem;
  font-size: 0.875rem;
}
.p-company__map {
  position: relative;
  max-width: 620px;
  width: 100%;
  aspect-ratio: 620/350;
  margin: 0 auto;
}
.p-company__map > iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 600px) {
  .p-company__table th {
    width: 100px;
  }
}

/* ================================
CTA
================================ */
.p-cta {
  text-align: right;
  border: 1px solid #0E9884;
  border-radius: 4px;
  background: url(../img/cta_bg.jpg) no-repeat top right/cover;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  padding: 2.1875rem 2.5rem;
}
.p-cta__inner {
  display: inline-block;
}
.p-cta__heading {
  font-size: 16px;
  text-align: center;
  margin-bottom: 1.25rem;
}
.p-cta__cnt {
  display: flex;
  align-items: center;
  gap: 1.25rem 2.5rem;
}
.p-cta__item {
  text-align: center;
}
.p-cta__item-txt {
  position: relative;
  color: #0E9884;
  padding: 0 1.25rem;
  margin-bottom: 0.5rem;
}
.p-cta__item-txt::before, .p-cta__item-txt::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: #0E9884;
}
.p-cta__item-txt::before {
  left: 0;
  transform: rotate(-35deg);
}
.p-cta__item-txt::after {
  right: 0;
  transform: rotate(35deg);
}
@media screen and (max-width: 600px) {
  .p-cta {
    text-align: center;
    background-position: center center;
  }
  .p-cta__cnt {
    flex-direction: column;
  }
}

/* ================================
メール送信完了ページ
================================ */
.l-thanks {
  padding-top: 5rem;
}

.p-thanks__h1 {
  font-size: 2rem;
  text-align: center;
  color: #437F75;
  margin-bottom: 2.5rem;
}
.p-thanks__txt {
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.p-thanks__txt span {
  font-weight: 700;
}

/* ================================
調整用
================================ */
/*--- 背景 ---*/
.u-bg--gry {
  background-color: #FAFAFA;
}
.u-bg--grn {
  background-color: #EFF8F6;
}

/*--- 画像 ---*/
.u-img--cover > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.u-img--contain > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*--- フォントウェイト ---*/
.u-fw--700 {
  font-weight: 700;
}

/*--- 表示・非表示 ---*/
.u-display--lg {
  display: none;
}
@media screen and (max-width: 1280px) {
  .u-display--lg {
    display: block;
  }
}
.u-display-md {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-display-md {
    display: block;
  }
}
.u-display--sm {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-display--sm {
    display: block;
  }
}
.u-display--xs {
  display: none;
}
@media screen and (max-width: 600px) {
  .u-display--xs {
    display: block;
  }
}

@media screen and (max-width: 1280px) {
  .u-hidden--lg {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-hidden--md {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .u-hidden--sm {
    display: none !important;
  }
}
@media screen and (max-width: 600px) {
  .u-hidden--xs {
    display: none !important;
  }
}/*# sourceMappingURL=styles.css.map */