@font-face {
  src: url("font/Hiragino%20Kaku%20Gothic%20Std%20W8.otf.html") format("otf");
  font-family: "myfont";
}

fieldset,
legend,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  border-radius: 0;©
  margin: 0;
  outline: none;
  padding: 0;
}

input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"] {
  border: 1px solid #ccc;
  font-size: 16px;
  margin: 0;
  outline: none;
  padding: 4px;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="number"],
input[type="datetime"],
input[type="week"],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: 1px solid #ccc;
  border-radius: 0;
  font-size: 16px;
  margin-left: 0;
  margin-right: 0;
  outline: none;
  padding: 4px;
}

textarea {
  height: 100px;
  overflow: auto;
  width: 100%;
}

select {
  padding-right: 30px; /*
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");	
	background-repeat: no-repeat;
	background-size: 12px 12px;
	background-position: right 8px center;
	*/
}

.select {
  background: #fff;
  display: inline-block;
  overflow: hidden;
  position: relative;
}

.select select {
  background: none;
  border: 1px solid #ccc;
  cursor: pointer;
  padding-right: 24px;
  text-overflow: "";
  width: 100%;
}

.select::before {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666;
  content: "";
  height: 0;
  padding: 0;
  pointer-events: none;
  position: absolute;
  right: 8px;
  top: 13px;
  width: 0;
}

/* radio & checkbox */

input[type="radio"],
input[type="checkbox"] {
  display: none;
}

input[type="radio"] + span,
input[type="checkbox"] + span {
  color: #555;
  cursor: pointer;
  display: inline-block;
  /* font-size: 1.4rem; */
  line-height: 1;
  margin-left: 8px;
  padding: 10px 20px;
  position: relative;
  text-align: center;
}

input[type="radio"] + span::before,
input[type="checkbox"] + span::before {
  background: #fff;
  border: 1px solid #ccc;
  content: "";
  height: 16px;
  left: -8px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}

/* fieldset */

fieldset {
  border: 1px solid #ccc;
  padding: 8px 16px;
}

legend {
  padding: 0 8px;
}

/* button */

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  background: #efefef;
  border: 1px solid #999;
  border-radius: 0;
  color: #000;
  cursor: pointer;
  display: inline-block;
  font-size: 20px;
  margin: 0;
  padding: 10px 30px;
}

/* ブラウザ対策
---------------------------------------------------------------------------- */

/* Firefox */

/* IE */

select::-ms-expand {
  display: none;
}

/* webkit */

/* iOS */

input[type="submit"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-decoration {
  display: none;
}

::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input[type="search"]::-webkit-search-decoration {
  -moz-appearance: none;
  -webkit-appearance: textfield;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  margin: 0;
  outline: none;
  padding: 0;
}

/* 挙動
---------------------------------------------------------------------------- */

/* hover */

input:hover,
textarea:hover,
select:hover {
  border-color: #666;
}

input[type="radio"] + span:hover,
input[type="checkbox"] + span:hover {
  color: #000;
}

input[type="radio"] + span:hover::before,
input[type="checkbox"] + span:hover::before {
  border-color: #000;
}

input[type="radio"] + span:hover::after,
input[type="checkbox"] + span:hover::after {
  background: #ccc;
  content: "";
  height: 8px;
  left: -4px;
  margin-top: -4px;
  position: absolute;
  top: 50%;
  width: 8px;
}

/* checked */

input[type="radio"]:checked + span,
input[type="checkbox"]:checked + span {
  color: #3498db;
}

input[type="radio"]:checked + span::before,
input[type="checkbox"]:checked + span::before {
  border-color: #3498db;
}

input[type="radio"]:checked + span::after,
input[type="checkbox"]:checked + span::after {
  background: #3498db;
  content: "";
  height: 8px;
  left: -4px;
  margin-top: -4px;
  position: absolute;
  top: 50%;
  width: 8px;
}

/* radio */

input[type="radio"] + span::before,
input[type="radio"] + span:hover::after,
input[type="radio"]:checked + span::after {
  border-radius: 50%;
}

/* button */

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover {
  background: #3498db;
  border-color: #3498db;
  color: #fff;
}

/* focus */

input:focus,
textarea:focus {
  border-color: #3498db;
}

input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus,
input[type="search"]:focus {
  outline-offset: -2px;
}

/* disabled */

input:disabled,
input:disabled:hover,
textarea:disabled,
textarea:disabled:hover {
  background: #eee;
  border-color: #ccc;
  cursor: not-allowed;
}

input[type="radio"]:disabled + span,
input[type="checkbox"]:disabled + span {
  color: #ccc;
  cursor: not-allowed;
}

input[type="radio"]:disabled + span::before,
input[type="checkbox"]:disabled + span::before {
  border-color: #ccc;
  cursor: not-allowed;
}

/* バリデーション */

/* placeholder */

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

/* リキッドレイアウト対応 */

html {
  font-size: 4.26667vw; /*
	@include mq("tab") {
		font-size: vw(strip-unit($l-inner), 16);
	}
	*/ /*
	@media (min-width: 1025px) and (max-width: 1365px) {
		font-size: vw(strip-unit($l-inner), 16);
	}

	//inner~max-screen
	@media (min-width: $l-inner) {
		font-size: 16px;
	}
	*/
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  overflow-wrap: break-word;
  overflow-x: hidden;
  position: relative;
  z-index: -9999;
}

/* Box sizing rules */

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

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

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

img {
  border: none;
  height: auto;
  max-width: 100%;
  vertical-align: top;
}

video,
iframe,
object {
  border: none;
  height: auto;
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

table {
  border: 1px solid;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  width: 100%;
}

th,
td {
  border: 1px solid;
  padding: 4px 6px;
  text-align: left;
  vertical-align: top;
}

blockquote,
q {
  quotes: none;
}

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

address {
  font-style: normal;
}

b,
strong {
  font-weight: 700;
}

form {
  margin: 0;
  padding: 0;
}

label {
  display: inline-block;
}

a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  touch-action: manipulation;
}

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

button,
select {
  text-transform: none;
}

select {
  cursor: pointer;
}

textarea {
  -ms-overflow-style: scrollbar;
  overflow: auto;
  resize: vertical;
}

dialog {
  background-color: inherit;
  border: solid;
  color: inherit;
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

dialog:not([is-open]) {
  display: none;
}

summary {
  cursor: pointer;
  display: list-item;
}

/* Remove all animations and transitions for people that prefer not to see them */

.is-sp {
  display: none;
}

.l-article {
  /*
    margin-top: 226px;
    */
  padding-top: 115px;
}

.l-case {
  margin-top: 100px;
}

.l-company {
  margin-top: 100px;
}

.l-contact {
  position: absolute;
  right: 0;
  top: 1.125rem;
  z-index: 101;
}

.l-costs {
  margin-top: 100px;
}

.l-cta {
  margin-top: 6.25rem;
  text-align: center;
}

.l-entry-tag {
  margin-top: 98px;
}

.l-inner {
  height: inherit;
  margin: 0 auto;
  max-width: 1970px;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.l-languages {
  margin-top: 100px;
}

.l-media {
  margin-top: 6.25rem;
}

.l-pagination {
  margin-top: 80px;
  text-align: center;
}

.l-question {
  /*
    margin-top: 100px;
    */
}

.l-reason {
  margin-top: -4.6875rem;
  padding-top: 4.375rem;
}

.l-reason--service {
  margin-top: 11.25rem;
}

.l-related {
  margin-top: 100px;
}

.l-team {
  margin-top: 144px;
}

/*

.c-btn {
    width: 260px;
    height: 50px;
    line-height: 46px;
    border-radius: 50px;
    background-color: #5863F8;
    text-align: center;
    font-weight: $font-weight-bold;
    font-size: 18px;
    color: #fff;
    display: block;
    position: relative;
    transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
}
.c-btn:hover {
    background-color: rgb(85, 93, 201);
}
.c-btn::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    top: 50%;
    transform: translateY(-50%);
    right: 24px;
    background: url(../img/btn-arrow-right.png) no-repeat center center / contain;
}
*/

.c-btn {
  background-color: #5863f8;
  border-radius: 3.125rem;
  color: #fff;
  display: block;
  font-weight: 700;
  position: relative;
  text-align: center;
  transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
  padding:1rem 4rem;
}

.c-btn:hover {
  background-color: #555dc9;
}

.c-btn::after {
  background: url(../img/btn-arrow-right.png) no-repeat center center/contain;
  content: "";
  height: 1.25rem;
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  width: 2rem;
}

.c-checkbox{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #f2f2f2;
  border: none;
  border-radius: 4px;
  box-shadow: none;
  cursor: pointer;
  display: inline-block !important;
  height: 18px;
  outline: none;
  width: 18px;
}

.c-checkbox:checked {
background: #F2F2F2;
border-radius: 4px;
width: 18px;
height: 18px;
}
.c-checkbox:checked::after {
  content: "";
  display: block;
  height: 5px;
  width: 10px;
  border-bottom: 2px solid #555dc9;
  border-left: 2px solid #555dc9;
  transform:translate(5px, 5px) rotate(-45deg);
}


/*
.c-contact-btn {
    display: block;
    font-size: 16px;
    font-weight: $font-weight-bold;
    color: #fff;
    width: 230px;
    height: 42px;
    line-height: 42px;
    background-color: #6FCF97;
    border-radius: 60px;
    box-shadow: 0 4px 4px rgba($color: #000000, $alpha: 0.10);
    text-align: center;
    transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
}
.c-contact-btn:hover {
    background-color: rgb(102, 194, 140);
}
*/

.c-contact-btn {
  background-color: #6fcf97;
  border-radius: 3.75rem;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
  color: #fff;
  display: block; /*
    font-size: rem(14);
    */
  font-weight: 700; /*
    width: 12.375rem;
    */
  text-align: center;
  transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
  padding: 0.4rem 2rem;
}

.c-contact-btn:hover {
  background-color: #66c28c;
}

.toppage {
  opacity : 0;
  transition : all 2s;
}
 
.toppage.active{
  opacity : 1;
}

/*
.c-cta {
    display: block;
    font-size: 24px;
    font-weight: $font-weight-bold;
    color: #5863F8;
    border-radius: 50px;
    background-color: #fff;
    width: 328px;
    height: 67px;
    line-height: 67px;
    text-align: center;
    transition:  opacity .3s ease 0s;
}
.c-cta:hover {
    opacity: .6;
}
*/

.c-cta {
  padding: 1rem 4rem;
  background-color: #fff;
  border-radius: 3.125rem;
  color: #5863f8;
  display: block;
  font-weight: 700;
  text-align: center;
  transition: opacity 0.3s ease 0s;
display: inline-block;
}

.c-cta:hover {
  opacity: 0.6;
}

/*
.c-input {
    width: 280px;
    height: 32px;
    appearance: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 6px !important;
    background-color: #F2F2F2 !important;
    padding-left: 13px !important;
    font-size: 14px !important;
    outline: none;
}
.c-input::placeholder {
    font-size: 14px;
    font-weight: $font-weight-base;
    color: #C4C4C4;
}
*/

.c-input {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-color: #f2f2f2 !important;
  border: none !important;
  border-radius: 0.375rem !important;
  box-shadow: none !important;
  font-size: 0.875rem;
  outline: none;
  padding-left: 0.8125rem !important;
  width: 100%;
}

.c-input::-moz-placeholder {
  color: #c4c4c4;
  font-size: 0.875rem;
  font-weight: 400;
}

.c-input::placeholder {
  color: #c4c4c4;
  font-size: 0.875rem;
  font-weight: 400;
}

.c-more-btn {
  border: 0.125rem solid #5863f8;
  border-radius: 3.125rem;
  color: #5863f8;
  display: block;
  font-weight: 700;
  position: relative;
  text-align: center;
  transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
  display: inline-block;
  padding:1rem 4rem;
}

.c-more-btn:hover {
  background-color: #5863f8;
  color: #fff;
}

.c-more-btn::after {
  background: url(../img/qa-btn-arrow.png) no-repeat center center/contain;
  content: "";
  height: 1.25rem;
  position: absolute;
  right: 1.1875rem;
  top: 50%;
  transform: translateY(-40%);
  transition: background-image 0.3s ease 0s;
  width: 2rem;
}

.c-more-btn:hover::after {
  background-image: url(../img/qa-btn-arrow-white.png);
}

/*
.c-section-title {
    text-align: center;
}
.c-section-title__en {
    font-weight: 800;
    font-size: 104px;
    color: #F9F9F9;
    display: block;
    font-family: 'myfont', sans-serif;
}
.c-section-title__en-languages {
    font-size: 84px;
    color: #fff;
}
.c-section-title__en-case {
    font-size: 77px;
}
.c-section-title__en-question {
    font-size: 73px;
}
.c-section-title__en--team {
    font-size: 71px;
}
.c-section-title__ja {
    display: block;
    font-weight: $font-weight-bold;
    font-size: 48px;
    color: #5863F8;
    margin-top: -91px;
}
*/

.c-section-title {
  text-align: center;
}

.c-section-title__en {
  color: #f9f9f9;
  display: block;
  font-family: "myfont", sans-serif;
  font-size: 6.5rem;
  font-weight: 800;
}

.c-section-title__en-languages {
  color: #fff;
  font-size: 5.25rem;
}

.c-section-title__en-case {
  font-size: 4.8125rem;
}

.c-section-title__en-question {
  font-size: 4.5625rem;
}

.c-section-title__en--team {
  color: #fff;
  font-size: 4.4375rem;
}

.c-section-title__en--media {
  color: #fff;
}

.c-section-title__ja {
  color: #5863f8;
  display: block;
  font-size: 3rem;
  font-weight: 700;
  margin-top: -5.6875rem;
}

.c-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #c4c4c4;
  border-radius: 6px;
  box-shadow: none;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  outline: none;
  padding-left: 13px;
  white-space: break-spaces;
  width: 100% !important;
}

.c-select:hover {
  border: 1px solid #c4c4c4;
}

/*
.c-submit-button {
    width: 280px;
    height: 58px;
    border-radius: 60px !important;
    background-color: #F9F9F9 !important;
    font-size: 18px !important;
    font-weight: 900;
    color: #C4C4C4 !important;
    padding: 0 !important;
    border: none !important;
    appearance: none;
    outline: none;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}
.c-submit-button.is-show {
    background-color: #6FCF97 !important;
    color: #fff !important;
}
*/

.c-submit-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #f9f9f9 !important;
  border: none !important;
  border-radius: 3.75rem !important;
  box-shadow: 0px 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
  color: #c4c4c4 !important;
  font-size: 1rem !important;
  font-weight: 900;
  height: 3.625rem;
  outline: none;
  padding: 0 !important;
  width: 17.5rem;
}

.c-submit-button.is-show {
  background-color: #6fcf97 !important;
  color: #fff !important;
}

.c-test {
  color: red;
  font-size: 3.125rem;
}

/*
.p-accordion {
    padding-left: 53px;
    border-radius: 10px;
    background-color: #F0F6FF;
    box-shadow: 0 4px 4px rgba($color: #000, $alpha: 0.25);
    padding-top: 35px;
    padding-bottom: 35px;
    cursor: pointer;
}
.p-accordion__head {
    font-size: 20px;
    font-weight: $font-weight-bold;
    position: relative;
}
.p-accordion__icon {
    position: absolute;
    width: 26px;
    height: 25px;
    top: 80%;
    transform: translateY(-50%);
    right: 29px;
}
.p-accordion__icon.is-open {
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
}
.p-accordion__body {
    font-size: 18px;
    font-weight: $font-weight-base;
    display: none;
    margin-top: 35px;
}
*/

.p-accordion {
  background-color: #f0f6ff;
  border-radius: 0.625rem;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
  cursor: pointer;
  padding-bottom: 2.1875rem;
  padding-left: 3.3125rem;
  padding-top: 2.1875rem;
}

.p-accordion__head {
  font-weight: 700;
  position: relative;
}

.p-accordion__icon {
  height: 1.5625rem;
  position: absolute;
  right: 1.8125rem;
  top: 80%;
  transform: translateY(-50%);
  width: 1.625rem;
}

.p-accordion__icon.is-open {
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}

.p-accordion__body {
  display: none;
  font-size: 1.125rem;
  font-weight: 400;
  margin-top: 2.1875rem;
  padding-right: 5rem;
}

/*
.p-article {
   
}
.p-article__inner {
    width: 1206px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.p-article__title-blog {
    font-weight: 900;
    font-size: 128px;
    color: #F0F6FF;
    margin-bottom: -94px;
}
.p-article__title {
    font-size: 48px;
    line-height: 1.5;
    font-weight: $font-weight-bold;
}
.p-article__meta {
    margin-top: 38px;
    display: flex;
}
.p-article__date {
    font-size: 18px;
    font-weight: $font-weight-base;
    margin-top: 6px;
}
.p-article__tags {
    margin-left: auto;
    display: flex;
    padding-left: 0 !important;
    margin-top: 0 !important;
    flex-wrap: wrap;
}
.p-article__tags::before {
    content: none !important;
}
.p-article__img {
    margin-top: 23px;
    width: 100%;
    position: relative;
}
.p-article__img::before {
    content: "";
    display: block;
    padding-top: calc(647 / 1206 * 100%);
}   
.p-article__img img {
    -o-object-position: center;
	height: 100%;
	left: 50%;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	object-fit: cover;
}
.p-article__img img {
    width: 100%;
}
.p-article h2 {
    margin-top: 100px;
    margin-bottom: 30px;
    font-weight: $font-weight-bold;
    font-size: 36px;
    color: #343434;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 23px;
    background-color: #F0F6FF;
    
    margin-left: calc(50% - 46vw);
    margin-right: calc(50% - 50vw);
	width: 92vw;
    
}
.p-article h3 {
    font-weight: $font-weight-bold;
    font-size: 24px;
    color: #5863F8;
    margin-top: 27px;
    margin-bottom: 30px;
}
.p-article p {
    line-height: 1.78;
    font-weight: $font-weight-base;
    font-size: 18px;
    margin-top: 30px;
}
.p-article h2 + p, .p-article h3 + p, .p-article h4 + p, .p-article h5 + p, .p-article h6 + p {
    margin-top: 0;
}
.p-article ul {
    padding-left: 23px;
    position: relative;
    margin-top: 60px;
}
.p-article ul + ul {
    margin-top: 81px;
}
.p-article ul::before {
    content: "";
    position: absolute;
    font-weight: 400;
    left: 0;
    top: 1px;
    background: url(../img/list1.png) no-repeat center center / contain;
    width: 18px;
    height: 27px;
}
.p-article ul li {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
}
.p-article ul li ul {
    padding-left: 23px;
    position: relative;
    margin-top: 10px;
}
.p-article ul li ul::before {
    content: "";
    position: absolute;
    width: 11px;
    height: 17px;
    top: -1px;
    left: 7px;
    background: url(../img/list2.png) no-repeat center center / contain;
}
.p-article ul li ul li {
    font-size: 16px;
    font-weight: $font-weight-base;
}
.p-article ul li ul li:not(:first-child) {
    margin-top: 7px;
}
.p-article ul li ul li ul {
    
}
.p-article ul li ul li ul li {
    font-size: 14px;
    font-weight: $font-weight-base;
}
.p-article ol {
    padding-left: 28px;
    position: relative;
    margin-top: 87px;
}
.p-article ol li {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    counter-increment: toc;
    position: relative;
}
.p-article ol li::before {
    background-color: #5863F8;
	border-radius: 50%;
	color: #fff;
	content: counter(toc);
	font-size: 12px;
	font-weight: 500;
	height: 17px;
	left: -28px;
	line-height: 16px;
	position: absolute;
	text-align: center;
	top: 6px;
	width: 17px;
	font-family: "Noto Sans JP", sans-serif;
}
.p-article ol li:not(:first-child) {
    margin-top: 30px;
}
.p-article ol li ol {
    list-style: none;
    padding-left: 23px;
    position: relative;
    margin-top:  12px;
}
.p-article ol li ol::before {
    content: "";
    position: absolute;
    width: 11px;
    height: 17px;
    top: -1px;
    left: 7px;
    background: url(../img/list2.png) no-repeat center center / contain;
}
.p-article ol li ol li {
    font-size: 16px;
    font-weight: $font-weight-base;
    position: relative;
    counter-increment: none;
}
.p-article ol li ol li:first-child::before {
    content: none;
}
.p-article ol li ol li:not(:first-child) {
    margin-top: 7px;
}
.p-article ol li ol li:not(:first-child)::before {
    content: "";
    position: absolute;
    width: 11px;
    height: 17px;
    top: -1px;
    left: -16px;
    background: url(../img/list2.png) no-repeat center center / contain;
    border-radius: 0;
}
.p-article ol li ol li ol {
    list-style: none;
}
.p-article ol li ol li ol li {
    font-size: 14px;
    font-weight: $font-weight-base;
}
#toc_container {
    margin-top: 95px;
    padding-top: 28px;
    padding-bottom: 50px;
    border-top: 3px solid #F0F6FF;
    border-bottom: 3px solid #F0F6FF;
    padding-left: 20px;
    width: 900px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-left: none;
    border-right: none;
    background-color: #fff;
}
#toc_container .toc_list {
    margin-top: 0;
    padding-left: 0;
}
#toc_container .toc_list::before {
    content: none;
}
#toc_container .toc_title {
    font-weight: $font-weight-bold;
    font-size: 32px;
    margin-bottom: 12px;
    text-align: left !important;
    padding-left: 38px !important;
    position: relative;
    margin-top: 0;
}
#toc_container .toc_title::before {
    content: "";
    position: absolute;
    top: 52%;
    transform: translateY(-50%);
    left: 0;
    width: 23px;
    height: 20px;
    background: url(../img/toc_bg.png) no-repeat center center / contain;
}
#toc_container > ul > li {
    counter-increment: toc;
    margin-bottom: 10px;
}
#toc_container > ul > li > a {
    padding-left: 27px;
    position: relative;
    font-size: 20px;
    display: inline-block;
}
#toc_container > ul > li > a::before {
    font-size: 20px;
    font-weight: 500;
    color: #5863F8;
    position: absolute;
    top: 0;
    left: 0;
    content: counter(toc);
    font-family: "Noto Sans JP", sans-serif;
}
#toc_container > ul > li > a::after {
    content: "";
    position: absolute;
    top: 21.3px;
    left: 12px;
    width: 2px;
    height: 2px;
    background: #5863F8;
    border-radius: 50%;
}
#toc_container > ul > li > ul {
    margin-top: 6px;
}
#toc_container > ul > li > ul > li {
    margin-bottom: 2px;
}
#toc_container > ul > li > ul > li > a {
    font-size: 20px;
    position: relative;
    padding-left: 15px;
    display: inline-block;
}
#toc_container > ul > li > ul > li > a::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    left: 0;
    height: 5px;
    min-width: initial;
    top: 15px;
    width: 5px;
    background-color: #5863F8;
}
#toc_container ul ul {
    margin-left: 1.7em;
}
#toc_container span.toc_toggle {
    display: none;
}

@media screen and (min-width: 768px) and (max-width: 1220px) {
    .p-article__inner {
        padding-left: 25px;
        padding-right: 25px;
    }
}
*/

.p-article__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: 75.375rem;
}

.p-article__title-blog {
  color: #f0f6ff;
  font-size: 8rem;
  font-weight: 900;
  margin-bottom: -5.875rem;
}

.p-article__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-article__meta {
  display: flex;
  margin-top: 2.375rem;
}

.p-article__date {
  font-size: 1.125rem;
  font-weight: 400;
  margin-top: 6px;
}

.p-article__tags {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  margin-top: 0 !important;
  padding-left: 0 !important;
}

.p-article__tags::before {
  content: none !important;
}

.p-article__img {
  margin-top: 1.4375rem;
  position: relative;
  width: 100%;
}

.p-article__img::before {
  content: "";
  display: block;
  padding-top: calc(647 / 1206 * 100%);
}

.p-article__img img {
  -o-object-position: center;
  -o-object-fit: cover;
  height: 100%;
  left: 50%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.p-article__img img {
  width: 100%;
}

.p-article h2 {
  background-color: #f0f6ff;
  color: #343434;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.875rem;
  margin-top: 6.25rem;
  padding-bottom: 1.875rem;
  padding-left: 1.4375rem;
  padding-top: 1.875rem; /*
    margin-left: calc(50% - 46vw);
    margin-right: calc(50% - 50vw);
	width: 92vw;
    */
}

.p-article h3 {
  color: #5863f8;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.875rem;
  margin-top: 1.6875rem;
}

.p-article p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.78;
  margin-top: 1.875rem;
}

.p-article h2 + p,
.p-article h3 + p,
.p-article h4 + p,
.p-article h5 + p,
.p-article h6 + p {
  margin-top: 0;
}

.p-article ul {
  margin-top: 3.75rem;
  padding-left: 1.4375rem;
  position: relative;
}

.p-article ul + ul {
  margin-top: 5.0625rem;
}

.p-article ul::before {
  background: url(../img/list1.png) no-repeat center center/contain;
  content: "";
  font-weight: 400;
  height: 1.6875rem;
  left: 0;
  position: absolute;
  top: 0.0625rem;
  width: 1.125rem;
}

.p-article ul li {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-article ul li ul {
  margin-top: 0.625rem;
  padding-left: 1.4375rem;
  position: relative;
}

.p-article ul li ul::before {
  background: url(../img/list2.png) no-repeat center center/contain;
  content: "";
  height: 1.0625rem;
  left: 0.4375rem;
  position: absolute;
  top: -0.0625rem;
  width: 0.6875rem;
}

.p-article ul li ul li {
  font-size: 1rem;
  font-weight: 400;
}

.p-article ul li ul li:not(:first-child) {
  margin-top: 0.4375rem;
}

.p-article ul li ul li ul li {
  font-size: 0.875rem;
  font-weight: 400;
}

.p-article ol {
  margin-top: 5.4375rem;
  padding-left: 1.75rem;
  position: relative;
}

.p-article ol li {
  counter-increment: toc;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
}

.p-article ol li::before {
  background-color: #5863f8;
  border-radius: 50%;
  color: #fff;
  content: counter(toc);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  height: 1.0625rem;
  left: -1.75rem;
  line-height: 1rem;
  position: absolute;
  text-align: center;
  top: 0.375rem;
  width: 1.0625rem;
}

.p-article ol li:not(:first-child) {
  margin-top: 1.875rem;
}

.p-article ol li ol {
  list-style: none;
  margin-top: 0.75rem;
  padding-left: 1.4375rem;
  position: relative;
}

.p-article ol li ol::before {
  background: url(../img/list2.png) no-repeat center center/contain;
  content: "";
  height: 1.0625rem;
  left: 0.4375rem;
  position: absolute;
  top: -0.0625rem;
  width: 0.6875rem;
}

.p-article ol li ol li {
  counter-increment: none;
  font-size: 1rem;
  font-weight: 400;
  position: relative;
}

.p-article ol li ol li:first-child::before {
  content: none;
}

.p-article ol li ol li:not(:first-child) {
  margin-top: 0.4375rem;
}

.p-article ol li ol li:not(:first-child)::before {
  background: url(../img/list2.png) no-repeat center center/contain;
  border-radius: 0;
  content: "";
  height: 1.0625rem;
  left: -1rem;
  position: absolute;
  top: -0.0625rem;
  width: 0.6875rem;
}

.p-article ol li ol li ol {
  list-style: none;
}

.p-article ol li ol li ol li {
  font-size: 0.875rem;
  font-weight: 400;
}

#toc_container {
  background-color: #fff;
  border-bottom: 0.1875rem solid #f0f6ff;
  border-left: none;
  border-right: none;
  border-top: 0.1875rem solid #f0f6ff;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5.9375rem;
  max-width: 100%;
  padding-bottom: 3.125rem;
  padding-left: 1.25rem;
  padding-top: 1.75rem;
  width: 56.25rem;
}

#toc_container .toc_list {
  margin-top: 0;
  padding-left: 0;
}

#toc_container .toc_list::before {
  content: none;
}

#toc_container .toc_title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  margin-top: 0;
  padding-left: 2.375rem !important;
  position: relative;
  text-align: left !important;
}

#toc_container .toc_title::before {
  background: url(../img/toc_bg.png) no-repeat center center/contain;
  content: "";
  height: 1.25rem;
  left: 0;
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  width: 1.4375rem;
}

#toc_container > ul > li {
  counter-increment: toc;
  margin-bottom: 0.625rem;
}

#toc_container > ul > li > a {
  display: inline-block;
  font-size: 1.25rem;
  padding-left: 1.6875rem;
  position: relative;
}

#toc_container > ul > li > a::before {
  color: #5863f8;
  content: counter(toc);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  left: 0;
  position: absolute;
  top: 0;
}

#toc_container > ul > li > a::after {
  background: #5863f8;
  border-radius: 50%;
  content: "";
  height: 0.125rem;
  left: 0.75rem;
  position: absolute;
  top: 1.33125rem;
  width: 0.125rem;
}

#toc_container > ul > li > ul {
  margin-top: 0.375rem;
}

#toc_container > ul > li > ul > li {
  margin-bottom: 0.125rem;
}

#toc_container > ul > li > ul > li > a {
  display: inline-block;
  font-size: 1.25rem;
  padding-left: 0.9375rem;
  position: relative;
}

#toc_container > ul > li > ul > li > a::before {
  background-color: #5863f8;
  border-radius: 50%;
  content: "";
  height: 0.3125rem;
  left: 0;
  min-width: initial;
  position: absolute;
  top: 0.9375rem;
  width: 0.3125rem;
}

#toc_container ul ul {
  margin-left: 1.7em;
}

#toc_container span.toc_toggle {
  display: none;
}

.archive {
  background-color: #f0f6ff;
}

/*
.p-blog {
    margin-top: 180px;
    background-color: #F0F6FF;
    background: url(../img/blog_bg.png) no-repeat center center / cover;
}
.p-blog__inner {
    position: relative;
}
.p-blog__title {
}
.p-blog__title span {
    display: block;
}
.p-blog__title--en {
    font-size: 104px;
    font-weight: $font-weight-bold;
    color: #fff;
}
.p-blog__title--ja {
    font-size: 48px;
    color: #5863F8;
    font-weight: $font-weight-bold;
    line-height: 1;
    margin-top: -72px;
}
.p-blog__items-wrapper {
    margin-top: 80px;
}
.p-blog__items {
    width: 991px;
    max-width: 100%;
}
.p-blog__item:not(:first-child) {
    margin-top: 30px;
}
.p-blog__recommend {
    width: 270px;
}
*/

/*
@media screen and (min-width: 1367px) {
    .p-blog__recommend {
        position: absolute;
        top: 222px;
        right: 0;
    }
    .p-blog__title {
        width: 1416px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 25px;
        padding-right: 25px;
    }
    .p-blog__inner {
        
    }
    .p-blog__items-wrapper {
        width: 1416px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 25px;
        padding-right: 25px;
    }
    .p-blog__inner {
        padding-left: 0;
    }
}
*/

/*

@media screen and (max-width: 1366px) {
    .p-blog__items-wrapper {
        display: flex;
        padding-left: 62px;
    }
    .p-blog__recommend {
        margin-left: 42px;
    }
    .p-blog__title {
        padding-left: 62px;
    }
}
*/

.p-blog {
  background: url(../img/blog_bg.png) no-repeat center center/cover;
  background-color: #f0f6ff;
  margin-top: 80px;
}

.p-blog__inner {
  position: relative;
}

.p-blog__title span {
  display: block;
}

.p-blog__title--en {
  color: #fff;
  font-size: 6.5rem;
  font-weight: 700;
}

.p-blog__title--ja {
  color: #5863f8;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-top: -4.5rem;
}

.p-blog__items-wrapper {
  margin-top: 5rem;
}

.p-blog__items {
  max-width: 100%;
  width: 61.9375rem;
}

.p-blog__item:not(:first-child) {
  margin-top: 1.875rem;
}

.p-blog__recommend {
  width: 16.875rem;
}

.p-blog__items-wrapper {
  display: flex;
  padding-left: 3.875rem;
}

.p-blog__recommend {
  margin-left: 2.625rem;
}

.p-blog__title {
  padding-left: 3.875rem;
}

.p-blog__recommend {
  position: absolute;
  right: 0;
  top: 13.875rem;
}

.p-blog__title {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem; /*
    width: rem(1416);
    */
  width: 79.5rem;
}

.p-blog__items-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem; /*
    width: rem(1416);
    */
  width: 79.5rem;
}

.p-blog__inner {
  padding-left: 0;
}

/*
.p-box-block::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 36px;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: url(../img/box-arrow.png) no-repeat center center / contain;
}
*/

/*
.p-box-block {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 4px rgba($color: #000, $alpha: 0.25);
    position: relative;
}
.p-box-block a {
    display: block;
    height: inherit;
    transition: opacity .3s ease 0s;
}
.p-box-block a:hover {
    opacity: .6;
}
.p-box-block--01 {
    background: #fff url(../img/box1.png) no-repeat center center / cover;
}
.p-box-block--02 {
    background: #fff url(../img/box2.png) no-repeat center center / cover;
}
.p-box-block__copy {
    font-weight: $font-weight-bold;
    font-size: 36px;
    line-height: 1.5;
    position: absolute;
    top: 50%;
    left: 47%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}
.p-box-block::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 36px;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: url(../img/box-arrow.png) no-repeat center center / contain;
}
*/

.p-box-block {
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
  position: relative;
  position: relative;
}

.p-box-block a {
  display: block;
  height: inherit;
  transition: opacity 0.3s ease 0s;
}

.p-box-block a:hover {
  opacity: 0.6;
}

.p-box-block--01 {
  background: #fff url(../img/box1.png) no-repeat center center/cover;
}

.p-box-block--02 {
  background: #fff url(../img/box2.png) no-repeat center center/cover;
}

.p-box-block__copy {
  font-size: 2.25rem;
  font-weight: 700;
  left: 47%;
  line-height: 1.5;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.p-box-block::after {
  background: url(../img/box-arrow.png) no-repeat center center/contain;
  content: "";
  height: 2.1875rem;
  position: absolute;
  right: 2.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.1875rem;
}

/*
.p-box {
    background-color: #F0F6FF;
    padding-top: 82px;
    padding-bottom: 100px;
}
.p-box__inner {
    width: 1206px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.p-box__items {
    display: flex;
}
.p-box__item {
    width: calc(50% - 56px / 2);
    height: 350px;
}
.p-box__item:not(:first-child) {
    margin-left: 56px;
}


@media screen and (min-width: 768px) and (max-width: 1250px) {
    .p-box__inner {
        padding-left: 25px;
        padding-right: 25px;
    }
}
*/

.p-box {
  background-color: #f0f6ff;
  padding-bottom: 6.25rem;
  padding-top: 5.125rem;
}

.p-box__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: 75.375rem;
}

.p-box__items {
  display: flex;
}

.p-box__item {
  height: 21.875rem;
  width: calc(50% - 3.5rem / 2);
}

.p-box__item:not(:first-child) {
  margin-left: 3.5rem;
}

/*
.p-case-card {
    padding: 40px 45px 40px 48px;
    background-color: #fff;
}
.p-case-card__img {

}
.p-case-card__head {
    font-weight: $font-weight-bold;
    font-size: 32px;
    margin-top: 17px;
}
.p-case-card__company {
    font-weight: 500;
    font-size: 20px;
}
.p-case-card__text {
    font-weight: $font-weight-base;
    font-size: 16px;
    line-height: 1.5;
    margin-top: 18px;
}
.p-case-card__role {
    margin-top: 37px;
    display: flex;
    align-items: center;
}
.p-case-card__role span {
    margin-bottom: 18px;
    font-weight: $font-weight-bold;
    font-size: 14px;
}
.p-case-card__tags {
    display: flex;
    align-items: center;
    margin-left: 14px;
}
.p-case-card__tag {
    margin-right: 18px;
    margin-bottom: 18px;
}
.p-case-card__product {
    margin-top: 5px;
}
*/

.p-case-card {
  background-color: #fff;
  padding: 2.5rem 2.8125rem 2.5rem 3rem;
}

.p-case-card__head {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1.0625rem;
}

.p-case-card__company {
  font-size: 1.25rem;
  font-weight: 500;
}

.p-case-card__text {
  font-weight: 400;
  line-height: 1.5;
  margin-top: 1.125rem;
}

.p-case-card__role {
  align-items: center;
  display: flex;
  margin-top: 2.3125rem;
}

.p-case-card__role span {
  font-size: 0.875rem;
  font-weight: 700;
}

.p-case-card__tags {
  align-items: center;
  display: flex;
  margin-left: 8px;
}

.p-case-card__tag {
  margin-bottom: 1.125rem;
  margin-right: 1.125rem;
}

.p-case-card__product {
  margin-top: 1.3125rem;
}

/*
.p-case__inner {
    width: 1673px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.p-case__items--wrapper {
    position: relative;
    margin-top: 83px;
}
.p-case__items--wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 580px;
    background: url(../img/bcg_img.png) no-repeat center center / cover;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
.p-case__items {
    display: flex;
    width: 1206px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.p-case__item {
    width: 580px;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 4px rgba($color: #000, $alpha: 0.10);
    z-index: 1;
}
.p-case__item:not(:first-child) {
    margin-left: 46px;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
    .p-case__inner {
        padding-left: 25px;
        padding-right: 25px;
    }
}
*/

.p-case__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  position: relative;
  width: 104.5625rem;
}

.p-case__items--wrapper {
  margin-top: 5.1875rem;
  position: relative;
}

.p-case__items--wrapper::before {
  background: url(../img/bcg_img.png) no-repeat center center/cover;
  content: "";
  height: 36.25rem;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.p-case__items {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  position: relative;
  width: 75.375rem;
}

.p-case__item {
  border-radius: 1.25rem;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
  max-width: 100%;
  width: 36.25rem;
  z-index: 1;
}

.p-case__item:not(:first-child) {
  margin-left: 2.875rem;
}

.p-code__inner {
  background-color: #f0f6ff;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding-bottom: 40px;
  padding-top: 15px;
  width: 1125px;
}

.p-code__number {
  background-color: #5863f8;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  width: 56px;
}

.p-code__items {
  margin-top: 0 !important;
  padding-left: 66px !important;
  position: relative;
  width: calc(100% - 56px);
}

.p-code__items::before {
  content: none !important;
}

.p-code__items::after {
  background-color: #5863f8;
  content: "";
  height: calc(100% + 55px);
  left: 0;
  position: absolute;
  top: -15px;
  width: 56px;
}

.p-code__item {
  counter-increment: toc;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.p-code__item::before {
  color: #fff;
  content: counter(toc);
  font-size: 16px;
  font-weight: 700;
  left: -42px;
  position: absolute;
  top: 0;
}

.hljs {
  background-color: #f0f6ff;
  padding: 0;
}

.hljs-ln {
  border: none;
}

.hljs-ln-line.hljs-ln-numbers {
  background-color: #5863f8;
  border: none;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  position: relative;
  text-align: center;
  width: 56px;
}

.hljs-ln-line.hljs-ln-code {
  border: none;
  display: inline-block;
  width: calc(100% - 56px);
}

table.hljs-ln tr:first-child .hljs-ln-line.hljs-ln-numbers {
  padding-top: 15px;
}

table.hljs-ln tr:last-child .hljs-ln-line.hljs-ln-numbers {
  padding-bottom: 20px;
}

table.hljs-ln tr:first-child .hljs-ln-line.hljs-ln-code {
  padding-top: 15px;
}

table.hljs-ln tr:last-child .hljs-ln-line.hljs-ln-code {
  padding-bottom: 20px;
}

td.hljs-ln-line.hljs-ln-numbers::before {
  background: #5863f8;
  bottom: -1px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}

pre {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 80px auto 0;
  max-width: 100%;
  width: 1125px;
}

/*
.blogcard {
    border-radius: 8px;
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.1);
    margin-top: 80px;
}
.blogcard a {
    display: flex;
    flex-direction: row-reverse;
    padding: 24px 40px;
    transition: opacity .3s ease 0s;
}
.blogcard a:hover {
    opacity: .6;
}
.blogcard_content {
    width: calc(100% - 312px);
}
.blogcard_thumbnail {
    width: 260px;
    margin-left: 52px;
    position: relative;
}
.blogcard_thumbnail::before {
    content: "";
    display: block;
    padding-top: calc(146 / 260 * 100%);
}
.blogcard_thumbnail img {
    -o-object-position: center;
	height: 100%;
	left: 50%;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	object-fit: cover;
	-o-object-fit: cover;
}
.blogcard_title {
    font-size: 22px;
    font-weight: $font-weight-bold;
    line-height: 1.5;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
}
.blogcard_excerpt {
    margin-top: 4px;
    font-size: 16px;
    line-height: 1.8;
    font-weight: $font-weight-base;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
}
*/

.blogcard {
  border-radius: 0.5rem;
  box-shadow: 0px 0px 0.25rem 0.0625rem rgba(0, 0, 0, 0.1);
  margin-top: 5rem;
}

.blogcard a {
  display: flex;
  flex-direction: row-reverse;
  padding: 1.5rem 2.5rem;
  transition: opacity 0.3s ease 0s;
}

.blogcard a:hover {
  opacity: 0.6;
}

.blogcard_content {
  width: calc(100% - 19.5rem);
}

.blogcard_thumbnail {
  margin-left: 3.25rem;
  position: relative;
  width: 16.25rem;
}

.blogcard_thumbnail::before {
  content: "";
  display: block;
  padding-top: calc(146 / 260 * 100%);
}

.blogcard_thumbnail img {
  -o-object-position: center;
  -o-object-fit: cover;
  height: 100%;
  left: 50%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.blogcard_title {
  font-family: "Roboto", sans-serif;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.blogcard_excerpt {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 0.25rem;
}

/*
.p-company {

}
.p-company__inner {
    padding-left: 25px;
    padding-right: 25px;
}
.p-company__content {
    margin-top: 83px;
    width: 810px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.p-company__info {

}
*/

.p-company__inner {
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
}

.p-company__content {
  margin-left: auto;
  margin-right: auto;
  margin-top: 5.1875rem;
  max-width: 100%;
  width: 50%;
  text-align: center;
}

.p-company__info.p-explain {
  text-align: left;

}

#contact-sp {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
}

@media screen and (max-width: 768px) {
  #contact-sp {
	  position: relative;
	  z-index:0;
	}
}

/*
.p-contact-form {
    margin-top: 29px;
}
.p-contact-form__dl {

}
.p-contact-form__row {

}
.p-contact-form__row:not(:first-child) {
    margin-top: 20px;
}
.p-contact-form__label {
    font-size: 14px;
    font-weight: 500;
}
.p-contact-form__label label {
    cursor: pointer;
}
.p-contact-form__input {
    margin-top: 5px;
}
.p-contact-form__input--select {
    position: relative;
}
.p-contact-form__input--select::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: url(../img/select-contact-arrow.png) no-repeat center center / contain;
    right: 12.5px;
    top: 50%;
    transform: translateY(-50%);
}
.p-contact-form__check {
    margin-top: 20px;
}
.p-contact-form__check label {
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-contact-form__check span {
    font-size: 12px !important;
    font-weight: $font-weight-base;
    color: #000 !important;
    padding: 0 !important;
}
.p-contact-form__check a {
    text-decoration: underline;
}
input[type="checkbox"] + span::before {
    display: none;
}
input[type="checkbox"]:checked + span::after {
    display: none;
}
input[type="checkbox"] + span:hover::after {
    display: none;
}
.p-contact-form__button {
    margin-top: 20px;
    text-align: center;
}
.p-contact-form__explain {
    text-align: center;
    font-size: 12px;
    font-weight: $font-weight-base;
    color: #C4C4C4;
    margin-top: 11px;
}
*/

.p-contact-form {
  margin-top: 1.8125rem;
}

.p-contact-form__row:not(:first-child) {
  margin-top: 1.25rem;
}

.p-contact-form__label {
  font-weight: 500;
}

.p-contact-form__label label {
  cursor: pointer;
}

.p-contact-form__input {
  margin-top: 0.3125rem;
}

.p-contact-form__input--select {
  position: relative;
}

.p-contact-form__input--select::after {
  background: url(../img/select-contact-arrow.png) no-repeat center
    center/contain;
  content: "";
  height: 0.75rem;
  position: absolute;
  right: 0.78125rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.75rem;
}

.p-contact-form__check {
  margin-top: 1.25rem;
}

.p-contact-form__check label {
  align-items: center;
  display: flex;
  justify-content: center;
}

.p-contact-form__check span {
  color: #000 !important;
  font-weight: 400;
  padding: 0 !important;
}

.p-contact-form__check a {
  text-decoration: underline;
}

input[type="checkbox"] + span::before {
  display: none;
}

input[type="checkbox"]:checked + span::after {
  display: none;
}

input[type="checkbox"] + span:hover::after {
  display: none;
}

.p-contact-form__button {
  margin-top: 1.25rem;
  text-align: center;
}

.p-contact-form__explain {
  color: #c4c4c4;
  font-weight: 400;
  margin-top: 0.6875rem;
  text-align: center;
}

/*
.p-contact {
    padding-top: 36px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    background-color: #fff;
    border: 5px solid #5863F8;
    border-right: none;
    border-radius: 10px 0 0 10px;
    
    display: none;
    
    width:360px;
    
    width: 31.75rem;
    
}
.p-contact.is-show {
    display: block;
}
.p-contact__inner {

}
.p-contact__title {
    font-size: 24px;
    font-weight: $font-weight-bold;
    color: #5863F8;
    padding-bottom: 18px;
    position: relative;
    text-align: center;
}
.p-contact__title::after {
    content: "";
    position: absolute;
    width: 78px;
    height: 3px;
    background-color: #5863F8;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}
.p-contact__form {

}
*/

.p-contact {
  background-color: #fff;
  border: 0.3125rem solid #5863f8;
  border-radius: 0.625rem 0 0 0.625rem;
  border-right: none;
  padding-bottom: 2.5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-top: 2.25rem; /*
    display: none;
    */
  width: 32vw; /*
    width: 31.75rem;
    */
}

.p-contact.is-show {
  display: block;
}

.p-contact__title {
  color: #5863f8;
  font-weight: 700;
  padding-bottom: 1.125rem;
  position: relative;
  text-align: center;
}

.p-contact__title::after {
  background-color: #5863f8;
  bottom: 0;
  content: "";
  height: 0.1875rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 4.875rem;
}

/*
.p-costs {

}
.p-costs__inner {

}
.p-costs__items {
    width: 1162px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    display: flex;
    justify-content: center;
}
.p-costs__item {
    width: rem(530);
    max-width: 100%;
}
.p-costs__item:not(:first-child) {
    margin-left: rem(52);
}
.p-costs__btn {
    display: flex;
    justify-content: center;
    margin-top: 80px;
}
*/

.p-costs__items {
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5rem;
  max-width: 100%;
  width: 90%;
  gap:3.25rem
}

.p-costs__item {
  max-width: 100%;
  width: 36rem;
}

.p-costs__btn {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}

/*
.p-cta {
    padding-top: 76px;
    padding-bottom: 76px;
    background: url(../img/cta_bg.png) no-repeat center center / cover;
}
.p-cta__link {
   margin-left: auto;
   margin-right: auto;
}
*/

.p-cta {
  background: url(../img/cta_bg.png) no-repeat center center/cover;
  padding-bottom: 4.75rem;
  padding-top: 4.75rem;
}

.p-cta__link {
  margin-left: auto;
  margin-right: auto;
}

.p-drawer-content {
  background: #fff;
  height: 100%;
  opacity: 0;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 100%;
  z-index: 298;
}

.p-drawer-content.is-active {
  opacity: 1;
  visibility: visible;
}

.p-drawer-content__content {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.p-drawer-content li:not(:first-child) {
  margin-top: 30px;
}

.p-drawer-content a {
  display: block;
  font-size: 20px;
  font-weight: 700;
}

.p-drawer-content__logo {
  left: 20px;
  position: absolute;
  top: 26px;
  display: none;
}

.p-drawer-content__contact {
  margin-top: 50px;
}

.p-drawer-icon {
  display: none;
  position: fixed;
  right: 10px;
  top: 31px;
  z-index: 300;
}

.p-drawer-icon__bars {
  display: block;
  height: 30px;
  position: relative;
  width: 30px;
  transform: translateX(-3vw);
}

.p-drawer-icon__bar1,
.p-drawer-icon__bar2,
.p-drawer-icon__bar3 {
  background-color: #000;
  height: 2px;
  left: 0;
  opacity: 0.6;
  position: absolute;
  transition: all 0.3s ease 0s;
  width: 30px;
}

.p-drawer-icon__bar1 {
  top: 0;
}

.p-drawer-icon__bar2 {
  top: 9px;
}

.p-drawer-icon__bar3 {
  top: 18px;
}

.p-drawer-icon.is-active .p-drawer-icon__bar1 {
  top: 9px;
  transform: rotate(-45deg);
}

.p-drawer-icon.is-active .p-drawer-icon__bar2 {
  display: none;
}

.p-drawer-icon.is-active .p-drawer-icon__bar3 {
  top: 9px;
  transform: rotate(45deg);
}

/*
.p-entry-tag {
    padding-top: 18px;
    border-top: 1px solid #000;
    display: flex;
    align-items: center;
    width: 1210px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.p-entry-tag__left {
    font-weight: $font-weight-bold;
    font-size: 24px;
    white-space: nowrap;
}
.p-entry-tag__items {
    display: flex;
    margin-left: 48px;
    margin-top: -18px;
    flex-wrap: wrap;
}
.p-entry-tag__item {
    margin-top: 18px;
    margin-right: 18px;
    margin-left: 0 !important;
    margin-bottom: 0 !important;
}
*/

.p-entry-tag {
  align-items: center;
  border-top: 0.0625rem solid #000;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding-top: 1.125rem;
  padding-bottom: 2.225rem;
  width: 75.625rem;
}

.p-entry-tag__left {
  font-size: 1.5rem;
  font-weight: 700;
  white-space: nowrap;
}

.p-entry-tag__items {
  display: flex;
  flex-wrap: wrap;
  margin-left: 3rem;
  margin-top: -1.125rem;
}

.p-entry-tag__item {
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 1.125rem;
  margin-top: 1.125rem;
}

/*
.p-explain {

}
.p-explain__block {
    display: flex;
    align-items: center;
}
.p-explain__block:not(:first-child) {
    margin-top: 43px;
}
.p-explain__header {
    font-size: 20px;
    font-weight: 500;
    width: 180px;
}
.p-explain__description {
    font-weight: $font-weight-base;
    font-size: 20px;
    width: calc(100% - 180px);
}
*/

.p-explain__block {
  align-items: center;
  display: flex;
  gap:80px;
}

.p-explain__block:not(:first-child) {
  margin-top: 2.6875rem;
}

.p-explain__header {
  font-weight: 500;
  width: 11.25rem;
}

.p-explain__description {
  font-weight: 400;
  width: calc(100% - 11.25rem);
}

/*
.p-footer {
    padding-top: 40px;
    padding-bottom: 30px;
    background-color: #fff;
}
.p-footer__inner {
    padding-left: rem(25);
    padding-right: rem(25);
}
.p-footer__nav {

}
.p-footer__nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-footer__nav li:not(:first-child) {
    margin-left: rem(80);
}
.p-footer__nav a {
    display: block;
    color: #343434;
    font-size: rem(15);
}
.p-footer__nav a:hover {
    text-decoration: underline;
}
.p-footer__logo {
    margin-top: 40px;
    text-align: center;
}
.p-footer__logo img {
    width: rem(120);
}
.p-footer__copy {
    text-align: center;
    margin-top: 20px;
    color: #4F4F4F;
    font-weight: 500;
    font-size: 14px;
}
*/

.p-footer {
  background-color: #fff;
  padding-bottom: 1.875rem;
  padding-top: 2.5rem;
}

.p-footer__inner {
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
}

.p-footer__nav ul {
  align-items: center;
  display: flex;
  justify-content: center;
}

.p-footer__nav li:not(:first-child) {
  margin-left: 5rem;
}

.p-footer__nav a {
  color: #343434;
  display: block;
  font-size: 0.9375rem;
}

.p-footer__nav a:hover {
  text-decoration: underline;
}

.p-footer__logo {
  margin-top: 2.5rem;
  text-align: center;
}

.p-footer__logo img {
  width: 7.5rem;
}

.p-footer__copy {
  color: #4f4f4f;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1.25rem;
  text-align: center;
}

/*
.p-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 80px;
    background-color: #fff;
    z-index: 100;
    box-shadow: 0 4px 4px rgba($color: #000, $alpha: 0.25);
}
.p-header__inner {
    display: flex;
    align-items: center;
    height: inherit;
    margin-left: auto;
    margin-right: auto;
    width: 1253px;
    max-width: 100%;
    padding-left: 25px;
    padding-right: 25px;
}
.p-header__logo {
    margin-top: -6px;
}
.p-header__logo a {
    display: block;
    transition: opacity .3s ease 0s;
}
.p-header__logo a:hover {
    opacity: .6;
}
.p-header__nav {
    margin-left: auto;
}
.p-header__nav ul {
    display: flex;
}
.p-header__nav li {

}
.p-header__nav li:not(:first-child) {
    margin-left: 7px;
}
.p-header__nav a {
    display: block;
    font-weight: $font-weight-bold;
    font-size: 16px;
    border-radius: 999px;
    transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
    padding: 10px 15px;
}
.p-header__nav a:hover {
    background-color: rgb(242, 242, 242);
}
.p-header__contact {
    margin-left: 37px;
}
*/

.p-header__contact.is-top {
  position: fixed;
  right: 6.25rem;
  transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
}

.p-header__contact.is-top.is-show {
  opacity: 1;
  visibility: visible;
}

.p-header {
  background-color: #fff;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}

.p-header__inner {
  align-items: center;
  display: flex;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding:1rem 0;
  width: 90%;
}

.p-header__logo {
  margin-top: -0.375rem;
  max-width: 150px;
}

.p-header__logo a {
  display: flex;
  transition: opacity 0.3s ease 0s;
}

.p-header__logo a:hover {
  opacity: 0.6;
}

.p-header__nav {
  margin-left: 2rem;
}

.p-header__nav.is-top {
  margin-left: 5rem;
}

.p-header__nav ul {
  display: flex;
  line-height: 0;
}

.p-header__nav li:not(:first-child) {
  margin-left: 0.4375rem;
}

.p-header__nav a {
  border-radius: 62.4375rem;
  display: block;
  font-weight: 700;
  padding: 0.625rem 0.9375rem;
  transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
}

.p-header__nav a:hover {
  background-color: #f2f2f2;
}

.p-header__contact {
  margin-left: 2.3125rem;
}

/*
.p-header__contact.is-show {
    opacity: 1;
    visibility: visible;
}
*/

.p-languages-block {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 20px;
  font-weight: 400;
  height: 80px;
  line-height: 80px;
  text-align: center;
}

.p-languages-block span {
  padding-left: 36px;
  position: relative;
}

.p-languages-block img {
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.p-languages-block--01 img {
  left: -18px;
  width: 50px;
}

.p-languages-block--02 img {
  left: -4px;
  width: 38px;
}

.p-languages-block--03 img {
  left: -10px;
  width: 42px;
}

.p-languages-block--04 img {
  width: 28px;
}

.p-languages-block--05 img {
  left: -6px;
  width: 39px;
}

.p-languages-block--06 img {
  left: -9px;
  width: 36px;
}

/*
.p-languages {
    padding-top: 100px;
    padding-bottom: 100px;
    background: url(../img/languages_bg.png) no-repeat center center / cover;
    background-color: #F0F6FF;
}
.p-languages__inner {

}
.p-languages__explain {
    margin-top: 85px;
    font-size: 24px;
    font-weight: $font-weight-base;
    line-height: 1.8;
    width: 976px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.p-languages__items {
    margin-top: 70px;
    display: flex;
    flex-wrap: wrap;
    width: 1113px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.p-languages__item {
    width: calc(33.333333% - 30px * 2 / 3);
}
.p-languages__item:not(:nth-child(3n + 1)) {
    margin-left: 30px;
}
.p-languages__item:nth-child(n + 4) {
    margin-top: 30px;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
    .p-languages__inner {
        padding-left: 25px;
        padding-right: 25px;
    }
}
*/

.p-languages {
  background: url(../img/languages_bg.png) no-repeat center center/cover;
  background-color: #f0f6ff;
  padding-bottom: 6.25rem;
  padding-top: 6.25rem;
}

.p-languages__explain {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5.3125rem;
  max-width: 100%;
  width: 61rem;
}

.p-languages__items {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4.375rem;
  max-width: 100%;
  width: 69.5625rem;
}

.p-languages__item {
  width: calc(33.333333% - 1.875rem * 2 / 3);
}

.p-languages__item:not(:nth-child(3n + 1)) {
  margin-left: 1.875rem;
}

.p-languages__item:nth-child(n + 4) {
  margin-top: 1.875rem;
}

/*
.p-media-card {
    
    padding: 21px 40px 9px 36px;
    display: flex;
    align-items: flex-start;
    
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    position: relative;
    z-index: 1;
}
.p-media-card__img {
    width: 295px;
    position: relative;
}
.p-media-card__img::before {
    content: "";
    display: block;
    padding-top: calc(166 / 295 * 100%);
}
.p-media-card__img img {
    -o-object-position: center;
	height: 100%;
	left: 50%;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	object-fit: cover;
	-o-object-fit: cover;
}
.p-media-card__body {
    width: calc(100% - 341px);
    margin-left: 46px;
}
.p-media-card__title {
    font-size: 20px;
    font-weight: $font-weight-bold;
    line-height: 1.5;
}
.p-media-card__title a {
    display: block;
    transition:  opacity .3s ease 0s;
}
.p-media-card__title a:hover {
    opacity: .6;
}
.p-media-card__meta {
    display: flex;
    align-items: center;
    
    position: relative;
    top: 73px;
    
    margin-top: 73px;
}
.p-media-card__date {
    font-size: 18px;
    font-weight: $font-weight-base;
    white-space: nowrap;
}
.p-media-card__tags {
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
}
.p-media-card__tag {
    margin-left: 18px;
    margin-bottom: 18px;
}
.p-media-card__tag a {
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    border-radius: 4px;
    background-color: #E76868;
    transition: opacity .3s ease 0s;
}
.p-media-card__tag a:hover {
    opacity: .7;
*/

.p-media-card {
  align-items: flex-start; /*
    box-shadow: 0 4px 4px rgba($color: #000, $alpha: 0.25);
    */
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0px 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
  display: flex; /*
    padding: 21px 40px 21px 36px;
    */
  padding: 16px 30px;
  position: relative;
  z-index: 1;
}

.p-media-card__img a {
  display: block;
  transition: opacity 0.3s ease 0s;
}

.p-media-card__img a:hover {
  opacity: 0.6;
}

.p-media-card__img {
  position: relative;
  width: 18.4375rem;
}

.p-media-card__img::before {
  content: "";
  display: block;
  padding-top: calc(166 / 295 * 100%);
}

.p-media-card__img img {
  -o-object-position: center;
  -o-object-fit: cover;
  height: 100%;
  left: 50%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.p-media-card__body {
  margin-left: 2.875rem;
  width: calc(100% - 21.3125rem);
}

.p-media-card__title {
  font-weight: 700;
  line-height: 1.5;
}

.p-media-card__title a {
  display: block;
  transition: opacity 0.3s ease 0s;
}

.p-media-card__title a:hover {
  opacity: 0.6;
}

.p-media-card__meta {
  align-items: center;/*
    position: relative;
    top: 73px;
    */
  margin-top: 8px;
}

.p-media-card__date {
  font-size: 1.125rem;
  font-weight: 400;
  white-space: nowrap;
}

.p-media-card__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  margin-left: auto;
  margin-top: 20px;
}

.p-media-card__tag {
  margin-bottom: 1.125rem;
  margin-left: 1.125rem;
}

.p-media-card__tag a {
  background-color: #e76868;
  border-radius: 0.25rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  transition: opacity 0.3s ease 0s;
}

.p-media-card__tag a:hover {
  opacity: 0.7;
}

/*
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .p-media-card__meta {
        margin-top: 30px;
        display: block;
    }
    .p-media-card__tags {
        margin-top: 24px;
        justify-content: left;
    }
    .p-media-card__tag {
        margin-left: 0;
        margin-right: 18px;
    }
} 
*/

/*
.p-media {
    padding-top: 100px;
    padding-bottom: 100px;
    background: url(../img/media_bg.png) no-repeat center center / cover;
    background-color: #F0F6FF;
}
.p-media__inner {
    width: 1100px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.p-media__items {
    margin-top: 85px;
}
.p-media__item:not(:first-child) {
    margin-top: 30px;
}
.p-media__btn {
    margin-top: 80px;
}
.p-media__btn a {
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
    .p-media__inner {
        padding-left: 25px;
        padding-right: 25px;
    }
}
*/

.p-media {
  background: url(../img/media_bg.png) no-repeat center center/cover;
  background-color: #f0f6ff;
  padding-bottom: 6.25rem;
  padding-top: 6.25rem;
}

.p-media__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: 68.75rem;
}

.p-media__items {
  margin-top: 5.3125rem;
}

.p-media__item:not(:first-child) {
  margin-top: 1.875rem;
}

.p-media__btn {
  margin-top: 5rem;
  text-align: center;
}

.p-media__btn a {
  margin-left: auto;
  margin-right: auto;
}

/*

.p-mv {
    width: 100%;
    height: 910px;
    position: relative;
    background: url(../img/main-view.png) no-repeat center center / cover;
}
.p-mv__copy {
    font-weight: $font-weight-bold;
    font-size: 60px;
    line-height: 1.5;
    position: absolute;
    top: 45%;
    transform: translate(-50%, -50%);
    left: 50%;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
    width: 1267px;
}
.p-mv__copy span {
    color: #5863F8;
}

@media screen and (min-width: 1367px) {
    .p-mv {
        height: 1040px;
    }
}
*/

.p-mv {
  background: url(../img/main-view.png) no-repeat center center/cover;
  height: 65rem;
  position: relative;
  width: 100%;
}

.p-mv__copy {
  font-size: 3.5vw;
  font-weight: 700;
  left: 50%;
  line-height: 1.5;
  max-width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 80%;
}

.p-mv__copy span {
  color: #5863f8;
}

/*
@media screen and (min-width: 768px) and (max-width: 1000px) {
    .p-mv__copy {
        font-size: 42px;
        left: 70px;
    }
} 
*/

.p-pagination {
  font-size: 15px;
}

.p-pagination .page-numbers {
  margin-right: 15px;
}

.page-numbers.current {
  color: #5863f8;
}

/*
.p-point {
    display: flex;
}
.p-point--reverse {
    flex-direction: row-reverse;
}
.p-point__body {
    width: 673px;
    
    width: 59.112rem;
    
    max-width: 100%;
}
.p-point__title {
    margin-top: -82px;
}
.p-point__body--03 {
    width: 710px;
}
.p-point__number {
    font-weight: 800;
    font-size: 128px;
    color: #F0F6FF;
}
.p-point__number--02 {
    text-align: right;
}
.p-point__title span {
    display: block;
}
.p-point__title--ja {
    font-weight: $font-weight-bold;
    font-size: 36px;
}
.p-point__title--en {
    font-weight: $font-weight-bold;
    font-size: 18px;
    color: #D9D9D9;
}
.p-point__text {
    margin-top: 21px;
    font-weight: $font-weight-base;
    line-height: 1.8;
    font-size: 18px;
}
.p-point__img {
    max-width: 100%;
}
.p-point__img--01 {
    width: 511px;
    
    width: 44.891rem;
    
    margin-left: 19px;
}
.p-point__img--01 img {
    margin-top: 108px;
}
.p-point__img--02 {
    width: 480px;
    margin-right: 53px;
}
.p-point__img--02 img {
    margin-top: 73px;
}
.p-point__img--03 {
    width: 440px;
    margin-left: 56px;
}
.p-point__img--03 img {
    margin-top: 96px;
}
.p-point__img::before {

}
.p-point__img img {

}
.p-point__img-case--01 {
    width: 481px;
    margin-left: 52px;
}
.p-point__img-case--02 {
    width: 534px;
    margin-right: 8px;
}
*/

.p-point {
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.p-point--reverse {
  flex-direction: row-reverse;
}

.p-point__body {
  /*
    width: 59.112rem;
    */
  max-width: 100%;
  width: 50rem;
}

.p-point__title {
  margin-top: -5.125rem;
}

.p-point__body--03 {
  width: 44.375rem;
}

.p-point__number {
  color: #f0f6ff;
  font-size: 8rem;
  font-weight: 800;
}

.p-point__number--02 {
  text-align: right;
}

.p-point__title span {
  display: block;
}

.p-point__title--ja {
  font-size: 2.25rem;
  font-weight: 700;
}

.p-point__title--en {
  color: #d9d9d9;
  font-size: 18px;
  font-weight: 700;
}

.p-point__text {
  font-weight: 400;
  line-height: 1.8;
  margin-top: 1.3125rem;
}

.p-point__img {
  max-width: 100%;
}

.p-point__img--01 {
  /*
    width: 44.891rem;
    */
  margin-left: 1.1875rem;
  width: 50rem;
}

.p-point__img--01 img {
  margin-top: 6.75rem;
}

.p-point__img--02 {
  margin-right: 3.3125rem;
  width: 50rem;
}

.p-point__img--02 img {
  margin-top: 4.5625rem;
}

.p-point__img--03 {
  margin-left: 3.5rem;
  width: 50rem;
}

.p-point__img--03 img {
  margin-top: 6rem;
}

.p-point__img-case--01 {
  margin-left: 3.25rem;
  width: 30.0625rem;
}

.p-point__img-case--02 {
  margin-right: 0.5rem;
  width: 33.375rem;
}

.p-price {
  background-color: #f0f6ff;
  border-radius: 0.5rem;
  padding: 2.5rem 1.875rem 2.5rem 2.25rem;
}

.p-price__head {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3.6875rem;
  text-align: center;
}

.p-price tr {
  display: block;
  position: relative;
}

.p-price__job {
  width: 15.9375rem;
}

.p-price__operation {
  margin-left: 1.25rem;
  width: 6.25rem;
}

.p-price__cost {
  margin-left: 1.25rem;
  width: 3.125rem;
}

.p-price__price {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  border: none !important;
  box-shadow: none !important;
  font-size: 1rem;
  outline: none !important;
  padding: 0 !important;
  text-align: right;
}

.p-price table {
  border: none;
}

.p-price__tr {
  margin-top: 0.9375rem;
}

.p-price th {
  font-size: 1rem;
  font-weight: 700;
}

.p-price th,
.p-price td {
  border: none;
  display: inline-block;
  padding: 0;
}

.p-price__volume {
  background-color: #fff;
  border-radius: 0.625rem;
  display: block;
  position: relative;
  width: 15.9375rem;
}

.p-price__volume select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0.625rem;
  box-shadow: none;
  font-size: 1rem;
  font-weight: 400;
  outline: none;
  padding-left: 1.125rem;
  position: relative;
  white-space: break-spaces;
  width: 15.9375rem;
  z-index: 1;
}

.p-price__volume::after {
  background: url(../img/price-arrow.png) no-repeat center center/contain;
  content: "";
  height: 0.8125rem;
  position: absolute;
  right: 0.9375rem;
  top: 53%;
  transform: translateY(-50%);
  width: 0.8125rem;
}

.p-price__goods {
  background-color: #fff;
  border-radius: 0.625rem;
  margin-left: 1.25rem;
  position: relative;
  width: 6.25rem;
}

.p-price__goods::after {
  background: url(../img/price-arrow.png) no-repeat center center/contain;
  content: "";
  height: 0.8125rem;
  position: absolute;
  right: 0.9375rem;
  top: 53%;
  transform: translateY(-50%);
  width: 0.8125rem;
}

.p-price__goods select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0.625rem;
  box-shadow: none;
  font-size: 1rem;
  font-weight: 400;
  outline: none;
  padding-left: 1.125rem;
  position: relative;
  white-space: break-spaces;
  width: 8rem;
  z-index: 1;
}

.p-price__price-td {
  margin-left: 0.5rem;
  position: relative;
  vertical-align: sub;
}

.p-price__total {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  border: none !important;
  box-shadow: none !important;
  font-size: 1.25rem !important;
  font-weight: 800;
  outline: none !important;
  padding: 0 !important;
  text-align: right;
}

.p-price__total-td {
  font-size: 1.25rem;
  font-weight: 800;
  margin-left: auto;
}

.p-price__total-strong strong {
  font-size: 1.25rem;
}

.p-price__tr-total {
  border-top: 0.0625rem solid #000;
  display: flex !important;
  margin-top: 1.8125rem;
  padding-top: 1.25rem;
}

.p-price__buttons {
  margin-top: 1.25rem;
}

.button-add {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  box-shadow: none;
  color: #5863f8;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  outline: none;
  padding: 0;
}

.button-add:hover {
  background: transparent;
  color: #5863f8;
}

td.p-price__price-td div {
  display: inline-block;
}

.p-price__total-td div {
  display: inline-block;
}

.p-price__header {
  display: flex;
  font-size: 1rem;
  font-weight: 700;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.button-remove {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: 2px solid #5863f8;
  border-radius: 50%;
  box-shadow: none;
  color: #5863f8;
  font-size: 12px;
  font-weight: 700;
  height: 15px;
  line-height: 0;
  margin: 0;
  outline: none;
  padding: 0;
  position: absolute;
  right: -23px;
  top: 4px;
  width: 15px;
}

.button-remove:hover {
  background: transparent;
  border: 2px solid #5863f8;
  color: #5863f8;
}

/*
.p-product {
    padding: rem(20) rem(40) rem(20) rem(20);
    background-color: #f9f9f9;
    display: flex;
    position: relative;
}
.p-product::after {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background: url(../img/product-arrow.png) no-repeat center center / contain;
    top: 50%;
    transform: translateY(-50%);
    right: 13px;
}
.p-product__img {
    width: 191px;
    position: relative;
}
.p-product__img::before {
    content: "";
    display: block;
    padding-top: calc(120 / 190.57 * 100%);
}
.p-product__img img {
    -o-object-position: center;
	height: 100%;
	left: 50%;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	object-fit: cover;
	-o-object-fit: cover;
}
.p-product__body {
    width: calc(100% - 218px);
    margin-left: 27px;
}
.p-product__head {
    font-size: 14px;
    font-weight: $font-weight-base;
    line-height: 1.5;
}
.p-product__company {
    font-size: 14px;
    font-weight: $font-weight-base;
    margin-top: 34px;
}
*/

.p-product {
  background-color: #f9f9f9;
  display: flex;
  padding: 1.25rem 2.5rem 1.25rem 1.25rem;
  position: relative;
}

.p-product::after {
  background: url(../img/product-arrow.png) no-repeat center center/contain;
  content: "";
  height: 1.625rem;
  position: absolute;
  right: 0.8125rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.625rem;
}

.p-product__img {
  position: relative;
  width: 11.9375rem;
}

.p-product__img::before {
  content: "";
  display: block;
  padding-top: calc(120 / 190.57 * 100%);
}

.p-product__img img {
  -o-object-position: center;
  -o-object-fit: cover;
  height: 100%;
  left: 50%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.p-product__body {
  margin-left: 1.6875rem;
  width: calc(100% - 13.625rem);
}

.p-product__head {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-product__company {
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 2.125rem;
}

/*

.p-question {
    padding-top: 100px;
}
.p-question__inner {
    width: 1113px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.p-question__items {
    margin-top: 86px;
}
.p-question__item:not(:first-child) {
    margin-top: 22px;
}
.p-question__btn {
    margin-top: 77px;
}
.p-question__btn a {
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
    .p-question__inner {
        padding-left: 25px;
        padding-right: 25px;
    }
}

*/

.p-question {
  padding-top: 100px;
}

.p-question__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: 60%;
}

.p-question__items {
  margin-top: 5.375rem;
}

.p-question__item:not(:first-child) {
  margin-top: 1.375rem;
}

.p-question__btn {
  margin-top: 4.8125rem;
  text-align: center;
}

.p-question__btn a {
  margin-left: auto;
  margin-right: auto;
}

/*
.p-reason {

}
.p-reason__inner {
    width: 1206px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.p-reason__items {
    margin-top: 56px;
}
.p-reason__item {

}
.p-reason__item:not(:first-child) {
    margin-top: 77px;
}
.p-reason__item.p-point:nth-child(3) {
    margin-top: 61px;
}
.p-reason__btn {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 768px) and (max-width: 1220px) {
    .p-reason__inner {
        padding-left: 25px;
        padding-right: 25px;
    }
}

*/

.p-reason__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: 70%;
}

.p-reason__items {
  margin-top: 3.5rem;
}

.p-reason__item:not(:first-child) {
  margin-top: 4.8125rem;
  align-items: center;
}

.p-reason__item.p-point:nth-child(3) {
  margin-top: 3.8125rem;
  align-items: center;
}

.p-reason__btn {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}

/*
.p-recommend-tag {
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 2;
}
*/

.p-recommend-tag {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}

/*
.p-recommend {
    background-color: #fff;
    border-radius: 8px 0 0 8px;
    border: 5px solid #5863F8;
    border-right: none;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 62px;
    height: min-content;
}
.p-recommend__title {
    font-weight: 900;
    font-size: 20px;
    color: #5863F8;
}
.p-recommend__items {
    margin-top: 24px;
}
.p-recommend__item {

}
.p-recommend__item:not(:first-child) {

}
*/

.p-recommend {
  background-color: #fff;
  border: 0.3125rem solid #5863f8;
  border-radius: 0.5rem 0 0 0.5rem;
  border-right: none;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  padding-bottom: 3.75rem;
  padding-left: 3.875rem;
  padding-top: 3.75rem;
}

.p-recommend__title {
  color: #5863f8;
  font-size: 1.25rem;
  font-weight: 900;
}

.p-recommend__items {
  margin-top: 1.5rem;
}

/*
.p-related {
    background-color: #F0F6FF;
    padding-top: 100px;
    padding-bottom: 20px;
}
.p-related__inner {
    width: 1126px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.p-related__items {
    margin-top: 91px;
}
.p-related__item:not(:first-child) {
    margin-top: 30px;
}

@media screen and (min-width: 1367px) {
    .p-related {

    }
    .p-related__inner {
        position: relative;
        z-index: 1;
    }
    .p-related__inner::before {
        content: "";
        position: absolute;
        width: 845px;
        height: 660px;
        top: 0;
        left: -35%;
        background: url(../img/related_bg-left.png) no-repeat center center / contain;
    }
    .p-related__inner::after {
        content: "";
        position: absolute;
        width: 462px;
        height: 403px;
        bottom: 0;
        right: -27%;
        background: url(../img/related_bg-right.png) no-repeat center center / contain;
    }
}

@media screen and (max-width: 1366px) {
    .p-related {
        background: url(../img/related_bg.png) no-repeat center 0 / cover;
    }
}


@media screen and (min-width: 768px) and (max-width: 1220px) {
    .p-related__inner {
        padding-left: 25px;
        padding-right: 25px;
    }
}

*/

.p-related {
  background-color: #f0f6ff;
  padding-bottom: 1.25rem;
  padding-top: 6.25rem;
}

.p-related__inner {
  margin-left: auto;
  margin-right: auto; /*
    width: 76.375rem;
    */
  max-width: 100%;
  position: relative;
  width: 70.375rem;
}

.p-related__inner::before {
  background: url(../img/related_bg-left.png) no-repeat center center/contain;
  content: "";
  height: 41.25rem;
  left: -35%;
  position: absolute;
  top: 0;
  width: 52.8125rem;
  z-index: -1;
}

.p-related__inner::after {
  background: url(../img/related_bg-right.png) no-repeat center center/contain;
  bottom: 0;
  content: "";
  height: 25.1875rem;
  position: absolute;
  right: -27%;
  width: 28.875rem;
}

.p-related__items {
  margin-top: 5.6875rem;
}

.p-related__item:not(:first-child) {
  margin-top: 1.875rem;
}

/*
.p-role {

}
.p-role__img {
    text-align: center;
}
.p-role__img--client img {
    width: 167px;
}
.p-role__name {
    font-size: 20px;
    font-weight: $font-weight-bold;
    margin-top: 26px;
}
.p-role__name--mt {
    margin-top: 9px;
}
.p-role__explain {
    font-size: 16px;
    line-height: 1.8;
    font-weight: $font-weight-base;
}
*/

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

.p-role__img--client img {
  width: 10.4375rem;
}

.p-role__name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 1.625rem;
}

.p-role__name--mt {
  margin-top: 0.5625rem;
}

.p-role__explain {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.p-tag {
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 11px;
  transition: opacity 0.3s ease 0s;
}

.p-tag:hover {
  opacity: 0.7;
}

.p-tag--red {
  background-color: #e76868;
}

.p-tag--orange {
  background-color: #e7a568;
}

.p-tag--blue {
  background-color: #688ce7;
}
.p-tag--green {
  background-color: #81d742;
}

/*
.p-team-block {
    border-radius: 20px;
    background-color: #fff;
    padding-top: 40px;
    padding-bottom: 50px;
    box-shadow: 0 4px 4px rgba($color: #000, $alpha: 0.25);
}
.p-team-block__head {
    font-size: 32px;
    font-weight: $font-weight-bold;
    text-align: center;
}
.p-team-block__role {
    width: 337px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}
.p-team-block__items {
    margin-top: 30px;
    display: flex;
    padding-left: 46px;
    padding-right: 43px;
}
.p-team-block__item {
    width: calc(33.333333% - 52px * 2 / 3);
}
.p-team-block__item:not(:first-child) {
    margin-left: 52px;
}
*/

.p-team-block {
  background-color: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
  padding-bottom: 3.125rem;
  padding-top: 2.5rem;
}

.p-team-block__head {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.p-team-block__role {
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.875rem;
  width: 21.0625rem;
}

.p-team-block__items {
  display: flex;
  margin-top: 1.875rem;
  padding-left: 2.875rem;
  padding-right: 2.6875rem;
}

.p-team-block__item {
  width: calc(33.333333% - 3.25rem * 2 / 3);
}

.p-team-block__item:not(:first-child) {
  margin-left: 3.25rem;
}

/*
.p-team {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #F0F6FF;
    background: url(../img/team_bg.png) no-repeat center center / cover;
}
.p-team__block {
    width: 1206px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.p-team__block:not(:first-child) {
    margin-top: 30px;
}
.p-team__wrapper {
    margin-top: 80px;
    position: relative;
}
.p-team__wrapper::after {
    content: "";
    position: absolute;
    width: 168px;
    height: 90px;
    background: url(../img/cycle.png) no-repeat center center / contain;
    top: 51.5%;
    left: 50%;
    transform: translate(-50%, -50%);
}


@media screen and (min-width: 768px) and (max-width: 1220px) {
    .p-team__inner {
        padding-left: 25px;
        padding-right: 25px;
    }
}
*/

.p-team {
  background: url(../img/team_bg.png) no-repeat center center/cover;
  background-color: #f0f6ff;
  padding-bottom: 6.25rem;
  padding-top: 6.25rem;
}

.p-team__block {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: 75.375rem;
}

.p-team__block:not(:first-child) {
  margin-top: 1.875rem;
}

.p-team__wrapper {
  margin-top: 5rem;
  position: relative;
}

.p-team__wrapper::after {
  background: url(../img/cycle.png) no-repeat center center/contain;
  content: "";
  height: 5.625rem;
  left: 50%;
  position: absolute;
  top: 51.5%;
  transform: translate(-50%, -50%);
  width: 10.5rem;
}

.p-test {
  color: red;
  font-size: 3.125rem;
}


.top-cta {
  display: none;
}




@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media screen and (min-width: 379px) and (max-width: 574px) {
  .p-team__wrapper::after {
    height: 60px;
    top: 31.5%;
    width: 112px;
  }
}

@media screen and (min-width: 575px) and (max-width: 1150px) {
  .p-team__wrapper::after {
    height: 60px;
    top: 30%;
    width: 112px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1920px) {
  html {
    font-size: 0.83333vw;
  }
}

@media screen and (min-width: 768px) and (max-width: 1220px) {
  .p-article__inner {
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }

  .p-entry-tag {
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }

  .p-reason__inner {
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }

  .p-team__inner {
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
  .p-box__inner {
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .p-case__inner {
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }

  .p-languages__inner {
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }

  .p-media__inner {
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }

  .p-question__inner {
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1059px) {
  .p-product {
    display: block;
  }

  .p-product::after {
    bottom: 18px;
    top: auto;
    transform: translateY(0);
  }

  .p-product__img {
    width: 100%;
  }

  .p-product__body {
    margin-left: 0;
    margin-top: 24px;
    width: 100%;
  }

}

@media screen and (min-width: 769px) and (max-width: 800px) {
  .p-team__wrapper::after {
    top: 49%;
  }
}

@media screen and (min-width: 1367px) {
  .p-mv {
  }
}

@media screen and (min-width: 1440px) {
  .u-hidden-pc {
    display: none;
  }
}

@media screen and (min-width: 1921px) and (max-width: 2560px) {
  html {
    font-size: 0.625vw;
  }
  
  .p-contact {
    width: 41.75rem;
  }
  
  .p-mv {
    height: 90rem;
  }
}

@media screen and (max-width: 1023px) {
  .l-inner {
    max-width: 33.75rem;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }

  .c-test {
    color: green;
    font-size: 1.875rem;
  }
}

@media screen and (max-width: 1150px) {
  html {
    font-size: 16px;
  }

  .is-sp {
    display: block;
  }

  .is-pc {
    display: none;
  }

  .l-article {
    padding-top: 90px;
  }

  .l-blog {
    margin-top: 130px;
  }

  .l-case {
    margin-top: 50px;
  }

  .l-company {
    margin-top: 50px;
  }

  .l-contact {
    margin-top: 20px;
    position: relative;
    top: 0;
    z-index: 99;
  }

  .l-cta {
    margin-top: 50px;
  }

  .l-languages {
    margin-top: 50px;
  }

  .l-media {
    margin-top: 50px;
  }

  .l-mv {
  }

  .l-pagination {
    margin-top: 50px;
  }

  /*
    .l-question {
        margin-top: 50px;
    }
    */

  .l-reason--service {
    margin-top: 120px !important;
  }

  .l-reason {
    margin-top: 60px;
    padding-top: 0;
  }

  .l-team {
    margin-top: 72px;
  }

  .c-contact-btn {
    font-size: 16px !important;
    width: 230px;
  }

  .top-cta{
    font-size: 1rem;
    background-color: #6fcf97;
    border-radius: 3.75rem;
    box-shadow: 0 0.25rem 0.25rem rgb(0 0 0 / 10%);
    color: #fff;
    display: block;
    font-weight: 700;
    text-align: center;
    transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
    padding: 0.75rem 2rem;
    width: 80%;
    max-width: 280px;
    margin-top: 15px;
  }

  .top-cta:hover {
    opacity: 0.6;
  }

  .c-input {
    max-width: 100%;
  }

  .c-section-title__en {
    font-size: 1.9375rem;
  }

  .c-section-title__en--service {
    color: #fff;
  }

  .c-section-title__ja {
    font-size: 1.75rem;
    margin-top: -1.75rem;
  }

  .c-select {
    max-width: 100%;
  }

  .c-submit-button {
    width: 240px;
  }

  .p-accordion {
    padding-left: 15px;
    padding-right: 30px;
  }

  .p-accordion__head {
    font-size: 18px;
  }

  .p-accordion__body {
    padding-right: 2%;
    font-size: 18px;
    margin-top: 20px;
  }

  .p-accordion__icon {
    height: 15px;
    right: -19px;
    top: 68%;
    width: 15px;
  }

  .p-article__inner {
    max-width: 580px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }

  .p-article__title-blog {
    font-size: 106px;
    margin-bottom: -85px;
  }

  .p-article__title {
    font-size: 24px;
  }

  .p-article__meta {
    display: block;
  }

  .p-article__img {
    margin-top: 40px;
  }

  #toc_container {
    margin-top: 60px;
    padding-bottom: 32px;
  }

  .p-article h2 {
    font-size: 22px;
    margin-top: 70px;
    padding-bottom: 20px;
    padding-top: 20px;
  }

  .p-article h3 {
    font-size: 20px;
  }

  .p-article ul {
    margin-top: 35px;
  }

  .p-article ul + ul {
    margin-top: 40px;
  }

  .p-article ol {
    margin-top: 43px;
  }

  #toc_container .toc_title {
    font-size: 20px;
    padding-left: 23px !important;
  }

  #toc_container .toc_title::before {
    top: 53%;
    width: 13px;
  }

  .p-blog__inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    width: 580px;
  }

  .p-blog__recommend {
    margin-left: 0;
    margin-top: 33px;
    position: relative;
    top: 0;
    width: 100%;
  }

  .p-blog__items {
    margin-top: 40px;
  }

  .p-blog__title {
    padding-left: 0;
  }

  .p-blog__title--en {
    font-size: 72px;
  }

  .p-blog__title--ja {
    font-size: 32px;
    margin-top: -50px;
  }

  .p-blog__items-wrapper {
    display: block;
    margin-top: 60px;
    padding-left: 0;
    padding-right: 0;
  }

  .p-box-block__copy {
    font-size: 16px;
  }

  .p-box-block::after {
    height: 11px;
    right: 16px;
    width: 11px;
  }

  .p-box-block--01 {
    background: #fff url(../img/box_sp.png) no-repeat center center/cover;
  }

  .p-box-block--02 {
    background: #fff url(../img/box_sp.png) no-repeat center center/cover;
  }

  .p-box {
    padding-bottom: 40px;
    padding-top: 50px;
  }

  .p-box__inner {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    width: 580px;
  }

  .p-box__items {
    display: block;
  }

  .p-box__item {
    height: 64px;
    width: 100%;
  }

  .p-box__item:not(:first-child) {
    margin-left: 0;
    margin-top: 20px;
  }

  .p-case-card {
    /*
        padding: 20px 22px 20px 24px;
        */
    padding: 30px;
  }

  .p-case-card__head {
    font-size: 22px;
  }

  .p-case-card__company {
    font-size: 18px;
  }

  .p-case-card__text {
    margin-top: 13px;
  }

  .p-case-card__role {
    align-items: baseline;
    margin-top: 21px;
  }

  .p-case-card__role span {
    white-space: nowrap;
  }

  .p-case-card__tags {
    flex-wrap: wrap;
    gap:15px;
  }

  .p-case-card__tag {
    margin-bottom: 10px;
    margin-right: 10px;
  }

  .p-case-card__product {
    margin-top: 15px;
  }

  .p-case__inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 580px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }

  .p-case__items--wrapper {
    margin: 41px calc(50% - 50vw) 0;
    padding: 0 calc(50vw - 50% + 8px);
    width: 100vw;
  }

  .p-case__items {
    display: block;
  }

  .p-case__item {
    width: 100%;
  }

  .p-case__item:not(:first-child) {
    margin-left: 0;
    margin-top: 30px;
  }

  .blogcard {
    margin-top: 50px;
  }

  .blogcard a {
    display: block;
    padding: 30px 20px;
  }

  .blogcard_content {
    margin-top: 18px;
    width: 100%;
  }

  .blogcard_thumbnail {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }

  .blogcard_title {
    font-size: 16px;
    line-height: 1.5;
  }

  .blogcard_excerpt {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 18px;
  }

  pre {
    margin-top: 50px;
  }

  .p-company__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .p-company__content {
    margin-top: 41px;
    width: 90%;
  }

  .p-contact {
    border-radius: 10px;
    border-right: 5px solid #5863f8;
    margin-left: auto;
    margin-right: auto;
    padding: 38px 20px;
    width: 90%;
  }

  .p-costs__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .p-costs__items {
    display: block;
    max-width: 335px;
  }

  .p-costs__item {
    width: 100%;
  }

  .p-costs__item:not(:first-child) {
    margin-left: 0;
    margin-top: 30px;
  }

  .p-costs__btn {
    margin-top: 40px;
  }

  .p-cta {
    padding-bottom: 38px;
    padding-top: 38px;
  }

  .p-drawer-icon {
    display: block;
  }

  .p-entry-tag {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
  }

  .p-entry-tag__items {
    margin-left: 0;
    margin-top: 20px;
  }

  .p-entry-tag__left {
    font-size: 21px;
  }

  .p-explain__block {
    align-items: baseline;
    gap:0px;
  }

  .p-explain__header {
    font-size: 18px;
    width: 130px;
  }

  .p-explain__description {
    font-size: 18px;
    width: calc(100% - 130px);
  }

  .p-footer__nav ul {
    display: block;
    text-align: center;
  }

  .p-footer__nav li:not(:first-child) {
    margin-left: 0;
    margin-top: 20px;
  }

  .p-header__inner {
  }

  .p-header__nav {
    display: none;
  }

  .p-languages {
    padding-bottom: 50px;
    padding-top: 50px;
  }

  .p-languages__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .p-languages__items {
    margin-top: 35px;
  }

  .p-languages__item {
    width: calc(50% - 15px / 2);
  }

  .p-languages__item:nth-child(2n + 1) {
    margin-left: 0 !important;
  }

  .p-languages__item:nth-child(2n) {
    margin-left: 15px;
  }

  .p-languages__item:not(:nth-child(3n + 1)) {
    margin-left: 15px;
  }

  .p-languages__item:nth-child(n + 3) {
    margin-top: 15px;
  }

  .p-languages__item:nth-child(n + 4) {
    margin-top: 15px;
  }

  .p-languages__explain {
    font-size: 20px;
    margin-top: 40px;
  }

  .p-media-card {
    display: block;
    padding: 30px 20px;
  }

  .p-media-card__img {
    width: 100%;
  }

  .p-media-card__body {
    margin-left: 0;
    width: 100%;
  }

  .p-media-card__title {
    font-size: 16px;
    margin-top: 18px;
  }

  .p-media-card__date {
    font-size: 14px;
  }

  .p-media-card__meta {
    display: block;
    margin-top: 8px;
    top: 0;
  }

  .p-media-card__tags {
    justify-content: left;
    margin-left: 0;
  }

  .p-media-card__tag {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 18px;
    margin-top: 20px;
  }

  .p-media {
    padding-bottom: 50px;
    padding-top: 50px;
  }

  .p-media__inner {
    padding-left: 20px;
    padding-right: 20px;
    width: 580px;
  }

  .p-media__items {
    margin-top: 42px;
  }

  .p-media__btn {
    margin-top: 40px;
  }

  .p-mv {
    background: url(../img/main-view_sp.png) no-repeat top center/cover;
    background-color: #F0F6FF;
    height: 420px;
    background-size: cover;
  }

  .p-mv__copy {
    top:36%;
    font-size: 7vw;
    left: 50%;
    line-height: 1.5;
    padding-left: 0;
    padding-right: 0;
    padding-top: 275px;
    width: 91%;
  }

  .p-pagination {
    font-size: 18px;
  }

  .p-point {
    display: block;
  }

  .p-point__number {
    font-size: 60px;
  }

  .p-point__title {
    margin-top: -51px;
  }

  .p-point__title--ja {
    font-size: 24px;
  }

  .p-point__title--en {
    font-size: 16px;
    line-height: 1;
  }

  .p-point__text {
    font-size: 16px;
  }

  .p-point__img {
    margin: 20px auto 0 auto;
  }

  .p-point__img--01 {
    margin-left: 0;
    width: 100%;
  }

  .p-point__img--01 img {
    margin-top: 0;
  }

  .p-point__img--02 {
    margin-right: 0;
    width: 100%;
  }

  .p-point__img--02 img {
    margin-top: 0;
  }

  .p-point__img--03 {
    margin-left: 0;
    width: 100%;
  }

  .p-point__img--03 img {
    margin-top: 0;
  }

  .p-point__img-case--01 {
    margin: 20px auto 0 auto;
  }

  .p-point__number--02 {
    text-align: left;
  }

  .p-price {
    padding: 30px 15px 30px 15px;
  }

  .p-price__job {
    /*
        width: 130px;
        */
    width: calc(50% - 15px / 2);
  }

  .p-price__head {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .p-price__operation {
    margin-left: 15px; /*
        width: 79px;
        */
    width: calc(50% - 15px / 2);
  }

  .p-price__volume select {
    font-size: 13px;
    padding-left: 10px;
    white-space: break-spaces; /*
        width: 130px;
        */
    width: 100%;
  }

  .p-price__goods select {
    font-size: 13px;
    height: 50px;
    padding-left: 10px; /*
        width: 79px;
        */
    width: 100%;
  }

  .p-price tr {
    display: flex;
    flex-wrap: wrap;
  }

  .p-price__volume {
    /*
        width: 130px;
        */
    width: calc(50% - 15px / 2);
  }

  .p-price__goods {
    margin-left: 15px; /*
        width: 79px;
        */
    width: calc(50% - 15px / 2);
  }

  .p-price__cost {
    margin-left: 15px;
  }

  .p-price__price-td {
    display: flex !important;
    margin-left: 0;
    margin-top: 12px;
    width: 100%;
  }

  .p-price__tr {
    margin-top: 10px;
  }

  .p-price__header {
    font-size: 14px;
  }

  .p-price__buttons {
    margin-top: 12px;
  }

  .button-add {
    font-size: 14px;
  }

  .p-price__tr-total {
    margin-top: 20px;
  }

  .p-price__tr-total {
    margin-top: 20px;
    padding-top: 14px;
  }

  .p-price__total-strong strong {
    font-size: 18px;
  }

  .p-price__total-td {
    font-size: 18px;
  }

  .p-price__goods::after {
    right: 9px;
  }

  .button-remove {
    bottom: 0;
    right: 0;
    top: auto;
  }

  .p-product {
    display: block;
    padding: 20px;
  }

  .p-product::after {
    bottom: 21px;
    top: auto;
    transform: translateY(0);
  }

  .p-product__img {
    width: 100%;
  }

  .p-product__body {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }

  .p-product__company {
    margin-top: 15px;
  }

  .p-question {
    padding-top: 50px;
  }

  .p-question__inner {
    padding-left: 20px;
    padding-right: 20px;
    width: 580px;
  }

  .p-question__items {
    margin-top: 43px;
  }

  .p-question__btn {
    margin-top: 38px;
  }

  .p-reason__inner {
  width: 90%;
  }

  .p-reason__items {
    margin-top: 28px;
  }

  .p-reason__item:not(:first-child) {
    margin-top: 32px;
  }

  .p-reason__btn {
    margin-top: 40px;
  }

  .p-recommend-tag {
    color: #000;
    display: inline-block;
    position: relative;
  }

  .p-recommend-tag::before {
    background-color: #000;
    bottom: 5px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
  }

  .p-recommend {
    background: transparent;
    background-color: #fff;
    border: none;
    border: 3px solid #5863f8;
    border-radius: 0;
    border-radius: 8px;
    padding: 0;
    padding-bottom: 16px;
    padding-top: 16px;
    position: relative;
    text-align: center;
  }

  .p-recommend__title {
    color: #5863f8;
    font-size: 1.125rem;
    font-weight: 700;
    position: relative;
  }

  .p-recommend__title.is-sp::after {
    background: url(../img/box-arrow.png) no-repeat center center/contain;
    content: "";
    height: 20px;
    position: absolute;
    margin-left: 20px;
    top: 6px;
    width: 10px;
    transform: rotate(90deg);
  }

  .p-recommend__title.is-sp.active::after{
    transform: rotate(270deg);
  }
  /*
    .p-recommend__items-wrapper {
        font-weight: 700;
        font-size: rem(18);
        color: #5863F8;
        background-color: #fff;
        padding-top: 16px;
        padding-bottom: 16px;
        border:  3px solid #5863F8;
        border-radius: 8px;
        text-align: center;
        margin-top: 3px;
    }
    */

  .p-recommend__items {
    background-color: #fff;
    color: #5863f8;
    display: none;
    font-size: 1.125rem;
    font-weight: 700;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
  }

  .p-related {
    padding-top: 50px;
  }

  .p-related__inner {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    width: 580px;
  }

  .p-related__items {
    margin-top: 45px;
  }

  .p-role__name {
    font-size: 18px;
    margin-top: 18px;
  }

  .p-role__explain {
    font-size: 14px;
    margin-top: 6px;
  }

  .p-team-block {
    padding: 30px 30px 40px 30px;
  }

  .p-team-block__head {
    font-size: 28px;
  }

  .p-team-block__items {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }

  .p-team-block__item {
    width: 100%;
  }

  .p-team-block__item:not(:first-child) {
    margin-left: 0;
    margin-top: 30px;
  }

  .p-team-block__role {
    width: 100%;
  }

  .p-team {
    padding-bottom: 50px;
    padding-top: 50px;
  }

  .p-team__inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 580px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .p-team__wrapper {
    margin-top: 50px;
  }

  .p-test {
    color: green;
    font-size: 1.875rem;
  }

  .u-hidden-sp {
    display: none;
  }
  .p-contact__title {
font-size: 1.25rem;
  }

  .wrapper {
    overflow: hidden;
  }


}

@media screen and (max-width: 375px) {
  .p-team__wrapper::after {
    height: 60px;
    top: 29.5%;
    width: 112px;
  }
}

@media screen and (max-width: 1150px) and (min-width:500px){
  .p-mv {
    background: url(../img/main-view_tb.png) no-repeat top center/cover;
    background-color: #F0F6FF;
    /* height: 70vh; */
    background-size: cover;
  }
  .p-mv__copy {
    top: 30%;
    font-size: 4vw;
    left: 50%;
    line-height: 1.5;
    padding-left: 0;
    padding-right: 0;
    width: 91%;
  }
  .top-cta{
    font-size: 1rem;
    background-color: #6fcf97;
    border-radius: 3.75rem;
    box-shadow: 0 0.25rem 0.25rem rgb(0 0 0 / 10%);
    color: #fff;
    display: block;
    font-weight: 700;
    text-align: center;
    transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
    padding: 0.5rem 2rem;
    width: 45%;
    margin-top: 15px;
  }

  .p-company__content {
    margin-top: 41px;
    width: 50vw;
  }


}

@media screen and (max-width: 768px) and (min-width:501px){

  .p-company__content {
    margin-top: 41px;
    width: 75vw;
  }

}