@charset "UTF-8";
/* =======================================
 base style
======================================= */
html {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
@media only screen and (min-width: 769px) {
  html {
    font-size: clamp(10px, 1.333vw, 16px);
  }
}
@media only screen and (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  html {
    font-size: clamp(10px, 3.733vw, 16px);
  }
}

h1,
h2,
h3,
h4,
h5,
dl,
dt,
dd,
ul,
ol,
li {
  font-size: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

ul,
ol,
li {
  list-style: none;
}

body {
  background: #fff;
  line-height: 1;
  margin: auto;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
}
@media only screen and (min-width: 1200px) {
  body {
    min-width: 1200px;
  }
}
@media only screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}

img {
  width: 100%;
  backface-visibility: hidden;
}

a {
  text-decoration: none;
  animation: all 1s ease-in-out;
}
a:hover {
  opacity: 0.9;
  animation: all 1s ease-in-out;
}

.l-main_ctx {
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 769px) {
  .l-main_ctx {
    margin-top: 4.375em;
  }
}
@media only screen and (max-width: 768px) {
  .l-main_ctx {
    margin-top: 13.333%;
  }
}

.l-inner_ctx {
  margin: auto;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .l-inner_ctx {
    width: 100vw;
    max-width: 1200px;
  }
}
@media only screen and (max-width: 768px) {
  .l-inner_ctx {
    padding: 0 4.667%;
  }
}

@media only screen and (min-width: 769px) {
  .l-header_pc {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: block;
    background-color: #000;
    height: 4.375em;
  }
  .l-header_pc .l-inner_ctx {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .l-header_pc .l-header_logo {
    margin-right: auto;
  }
  .l-header_pc .l-header_logo img {
    width: 12.5em;
  }
  .l-header_pc .l-header_nav {
    display: flex;
    align-items: center;
  }
  .l-header_pc .l-header_nav ul {
    display: flex;
  }
  .l-header_pc .l-header_nav ul li {
    position: relative;
  }
  .l-header_pc .l-header_nav ul li a {
    color: #fff;
    font-size: 0.938em;
    letter-spacing: 0.1em;
    padding: 0 1.6em 0 1.333em;
  }
  .l-header_pc .l-header_nav ul li:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0.3em;
    transform: translateY(-50%);
    height: 0.67em;
    background-color: #fff;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    width: 0.33em;
  }
  .l-header_pc .l-header_btn {
    display: flex;
    align-items: center;
  }
  .l-header_pc .l-header_btn .l-tel a img {
    width: 12.5em;
  }
  .l-header_pc .l-header_btn .l-contact a img {
    width: 10.625em;
  }
}

@media only screen and (max-width: 768px) {
  .l-header_sp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: block;
  }
  .l-header_sp_bar {
    background-color: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  .l-header_sp_bar .l-inner_ctx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6vw;
    height: 13.333vw;
  }
  .l-header_sp_bar .l-header_logo img {
    width: 33.333vw;
  }
  .l-header_sp .l-hamburger_btn {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 5.333vw;
    height: 4vw;
    gap: 1.6vw;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    touch-action: manipulation;
    position: relative;
    z-index: 1000;
  }
  .l-header_sp .l-hamburger_btn span {
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 0.533vw;
    border-radius: 0.267vw;
    transform-origin: center;
    will-change: transform, opacity;
  }
  .l-header_sp .l-hamburger_btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(1vw, 2vw);
  }
  .l-header_sp .l-hamburger_btn.active span:nth-child(2) {
    opacity: 0;
  }
  .l-header_sp .l-hamburger_btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(1vw, -2vw);
  }
}
.l-header_sp_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  will-change: opacity, visibility;
}
.l-header_sp_menu.active {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s linear 0s, opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.l-header_sp_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  top: 13.333vw;
}
.l-header_sp_content {
  position: absolute;
  z-index: 1000;
  margin-top: 13.333vw;
  right: 0;
  width: 80vw;
  background-color: #1a1a1a;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 6.667vw 6.667vw 12vw;
}
.l-header_sp_menu.active .l-header_sp_content {
  transform: translateX(0);
}
.l-header_sp_nav {
  margin-bottom: 10.667vw;
}
.l-header_sp_nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-header_sp_nav ul li {
  border-bottom: 1px solid #ffffff;
  padding: 4.667vw 2.667vw;
}
.l-header_sp_nav ul li a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 3.867vw;
  gap: 3.2vw;
}
.l-header_sp_nav ul li a::before {
  content: "";
  font-size: 3.733vw;
  color: #999999;
  background-image: url(../img/header/h_arrow_sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.333vw;
  height: 2.667vw;
}
.l-header_sp_btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4vw;
}
.l-header_sp_btn a {
  display: block;
  width: 66.667vw;
}

.l-footer {
  background-color: #f2f2f2;
}
@media only screen and (max-width: 768px) {
  .l-footer {
    padding-bottom: 20vw;
  }
}
@media only screen and (min-width: 769px) {
  .l-footer .l-inner_ctx {
    padding: 0 6.25em;
  }
}
.l-footer_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 769px) {
  .l-footer_top {
    padding: 3.75em 0;
  }
}
@media only screen and (max-width: 768px) {
  .l-footer_top {
    flex-direction: column;
    padding-top: 10vw;
    gap: 6.133vw;
  }
}
@media only screen and (min-width: 769px) {
  .l-footer_logo img {
    width: 22em;
  }
}
@media only screen and (max-width: 768px) {
  .l-footer_logo img {
    width: 61.6vw;
  }
}
.l-footer_btn {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 769px) {
  .l-footer_btn {
    gap: 0.625em;
  }
}
@media only screen and (max-width: 768px) {
  .l-footer_btn {
    flex-direction: column;
    gap: 5.333vw;
  }
}
@media only screen and (min-width: 769px) {
  .l-footer_btn .l-tel a img {
    width: 17.5em;
  }
}
@media only screen and (max-width: 768px) {
  .l-footer_btn .l-tel a img {
    width: 73.333vw;
  }
}
@media only screen and (min-width: 769px) {
  .l-footer_btn .l-contact a img {
    width: 17.5em;
  }
}
@media only screen and (max-width: 768px) {
  .l-footer_btn .l-contact a img {
    width: 73.333vw;
  }
}
.l-footer_content {
  display: flex;
  justify-content: flex-start;
}
@media only screen and (min-width: 769px) {
  .l-footer_content {
    padding: 0 0 3.125em;
    gap: 4.75em;
  }
}
@media only screen and (max-width: 768px) {
  .l-footer_content {
    flex-direction: column;
    padding: 10.667vw 0;
    gap: 5.333vw;
  }
}
.l-footer_company {
  width: 100%;
}
.l-footer_company h3 {
  color: #000000;
  font-weight: 700;
}
@media only screen and (min-width: 769px) {
  .l-footer_company h3 {
    font-size: 1.25em;
    margin-bottom: 1em;
  }
}
@media only screen and (max-width: 768px) {
  .l-footer_company h3 {
    font-size: 3.733vw;
    margin-bottom: 2.667vw;
  }
}
.l-footer_company p {
  color: #333333;
}
@media only screen and (min-width: 769px) {
  .l-footer_company p {
    font-size: 0.875em;
    line-height: 2.143em;
  }
}
@media only screen and (max-width: 768px) {
  .l-footer_company p {
    font-size: 2.667vw;
    line-height: 5.333vw;
  }
}
.l-footer_nav {
  display: flex;
}
@media only screen and (min-width: 769px) {
  .l-footer_nav {
    gap: 1.25em;
  }
}
@media only screen and (max-width: 768px) {
  .l-footer_nav {
    gap: 2.933vw;
  }
}
.l-footer_nav_col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-footer_nav_col ul li {
  border-bottom: 1px solid #cccccc;
}
@media only screen and (min-width: 769px) {
  .l-footer_nav_col ul li {
    width: 11.875em;
    margin-bottom: 1.25em;
    padding-bottom: 1.25em;
  }
}
@media only screen and (max-width: 768px) {
  .l-footer_nav_col ul li {
    width: 28vw;
    margin-bottom: 2.667vw;
    padding-bottom: 2.667vw;
  }
}
.l-footer_nav_col ul li:last-child {
  margin-bottom: 0;
}
.l-footer_nav_col ul li a {
  color: #333333;
  text-decoration: none;
  display: flex;
  align-items: center;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .l-footer_nav_col ul li a {
    font-size: 1.063em;
    gap: 0.471em;
  }
}
@media only screen and (max-width: 768px) {
  .l-footer_nav_col ul li a {
    font-size: 2.4vw;
    gap: 1.2vw;
  }
}
.l-footer_nav_col ul li a::before {
  content: "";
  display: inline-block;
}
@media only screen and (min-width: 769px) {
  .l-footer_nav_col ul li a::before {
    background: url("../img/footer/arrow.png") no-repeat center center;
    background-size: contain;
    width: 0.313em;
    height: 0.625em;
  }
}
@media only screen and (max-width: 768px) {
  .l-footer_nav_col ul li a::before {
    background: url("../img/footer/arrow.png") no-repeat center center;
    background-size: contain;
    width: 0.8vw;
    height: 1.6vw;
  }
}
.l-footer_bottom {
  background-color: #333333;
  color: #ffffff;
}
@media only screen and (min-width: 769px) {
  .l-footer_bottom .l-inner_ctx {
    padding: 1.25em 0;
  }
}
@media only screen and (max-width: 768px) {
  .l-footer_bottom .l-inner_ctx {
    padding: 3.333vw 0;
  }
}
.l-footer_bottom .l-copyright {
  text-align: center;
  margin: 0;
  font-weight: 300;
}
@media only screen and (min-width: 769px) {
  .l-footer_bottom .l-copyright {
    font-size: 0.813em;
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 768px) {
  .l-footer_bottom .l-copyright {
    font-size: 1.867vw;
    letter-spacing: 0.1vw;
  }
}

@media only screen and (min-width: 769px) {
  .c-breadcrumbs {
    padding: 1.25em 0;
  }
}
@media only screen and (max-width: 768px) {
  .c-breadcrumbs {
    padding: 2.667vw 0;
  }
}
.c-breadcrumbs_list {
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}
@media only screen and (min-width: 769px) {
  .c-breadcrumbs_list {
    margin: 0 6.25em;
  }
}
.c-breadcrumbs_item {
  position: relative;
  display: flex;
  align-items: center;
  color: #333333;
}
.c-breadcrumbs_item:not(:last-child)::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (min-width: 769px) {
  .c-breadcrumbs_item:not(:last-child)::after {
    width: 0.25em;
    height: 0.5em;
    margin: 0 0.5em;
    background: url("../img/common/breadcrumb_arrow.png") no-repeat center;
    background-size: contain;
  }
}
@media only screen and (max-width: 768px) {
  .c-breadcrumbs_item:not(:last-child)::after {
    width: 0.667vw;
    height: 2vw;
    margin: 0 2vw;
    background: url("../img/common/breadcrumb_arrow.png") no-repeat center;
    background-size: contain;
  }
}
.c-breadcrumbs_link {
  color: #666666;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  text-decoration: underline;
}
@media only screen and (min-width: 769px) {
  .c-breadcrumbs_link {
    font-size: 0.875em;
    gap: 0.25em;
  }
}
@media only screen and (max-width: 768px) {
  .c-breadcrumbs_link {
    font-size: 3.2vw;
    line-height: 5.333vw;
    gap: 1.333vw;
  }
}
@media only screen and (min-width: 769px) {
  .c-breadcrumbs_home_icon {
    width: 1em;
    height: 0.813em;
  }
}
@media only screen and (max-width: 768px) {
  .c-breadcrumbs_home_icon {
    width: 3.2vw;
    height: 2.667vw;
  }
}
.c-breadcrumbs_current {
  color: #333333;
  font-weight: 400;
}
@media only screen and (min-width: 769px) {
  .c-breadcrumbs_current {
    font-size: 0.875em;
    line-height: 2;
  }
}
@media only screen and (max-width: 768px) {
  .c-breadcrumbs_current {
    font-size: 3.2vw;
    line-height: 5.333vw;
  }
}

@media only screen and (min-width: 769px) {
  .p-hero {
    margin-top: 4.375em;
  }
}
@media only screen and (max-width: 768px) {
  .p-hero {
    margin-top: 13.333vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-hero .p-archive_hero {
    width: 4.625em;
  }
}
@media only screen and (max-width: 768px) {
  .p-hero .p-archive_hero {
    width: 14.667vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-hero .p-download_hero {
    width: 5.188em;
  }
}
@media only screen and (max-width: 768px) {
  .p-hero .p-download_hero {
    width: 16.667vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-hero .p-contact_hero {
    width: 4.375em;
  }
}
@media only screen and (max-width: 768px) {
  .p-hero .p-contact_hero {
    width: 13.867vw;
  }
}

.p-hero {
  background-color: #0068b6;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .p-hero {
    height: 12.5em;
  }
}
@media only screen and (max-width: 768px) {
  .p-hero {
    height: 34.667vw;
  }
}
.p-hero .p-hero_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 769px) {
  .p-hero .p-hero_inner {
    gap: 1.25em;
  }
}
@media only screen and (max-width: 768px) {
  .p-hero .p-hero_inner {
    gap: 4vw;
  }
}
.p-hero_title {
  color: #ffffff;
  font-weight: 500;
  margin: 0;
}
@media only screen and (min-width: 769px) {
  .p-hero_title {
    font-size: 2.5em;
  }
}
@media only screen and (max-width: 768px) {
  .p-hero_title {
    font-size: 6.667vw;
  }
}

@media only screen and (min-width: 769px) {
  .p-heading {
    margin-top: 4.375em;
  }
}
@media only screen and (max-width: 768px) {
  .p-heading {
    margin-top: 13.333vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-heading.p-company_heading {
    height: 15.625em;
    background: url(../img/hero/pc_heading_bg.jpg) no-repeat top center;
    background-size: 125em auto;
  }
}
@media only screen and (max-width: 768px) {
  .p-heading.p-company_heading {
    height: 40vw;
    background: url(../img/hero/sp_heading_bg.jpg) no-repeat top center;
    background-size: 100%;
  }
}
.p-heading.p-company_heading .p-heading_inner {
  background: url(../img/hero/heading_about.png) no-repeat;
}
@media only screen and (min-width: 769px) {
  .p-heading.p-company_heading .p-heading_inner {
    width: 62.5em;
    height: 15.625em;
    background-position: center;
    background-size: 45.875em 9.063em;
  }
}
@media only screen and (max-width: 768px) {
  .p-heading.p-company_heading .p-heading_inner {
    width: 100%;
    height: 40vw;
    background-position: center 4.063em;
    background-size: 97.867vw 19.333vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-heading.p-contents_heading {
    height: 29.375em;
    background: url(../img/hero/pc_contents_heading_bg.jpg) no-repeat top center;
    background-size: 125em auto;
  }
}
@media only screen and (max-width: 768px) {
  .p-heading.p-contents_heading {
    height: 96vw;
    background: url(../img/hero/sp_contents_heading_bg.jpg) no-repeat top center;
    background-size: 100%;
  }
}
.p-heading.p-contents_heading .p-heading_inner {
  background: url(../img/hero/heading_contents.png) no-repeat;
}
@media only screen and (min-width: 769px) {
  .p-heading.p-contents_heading .p-heading_inner {
    width: 62.5em;
    height: 29.375em;
    background-position: center 5.313em;
    background-size: 53.5em 6.75em;
  }
}
@media only screen and (max-width: 768px) {
  .p-heading.p-contents_heading .p-heading_inner {
    width: 100%;
    height: 96vw;
    background-position: center 5.313em;
    background-size: 98.8vw 14vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-heading .c-breadcrumbs {
    padding: 0.75em 0 0 !important;
  }
}
@media only screen and (max-width: 768px) {
  .p-heading .c-breadcrumbs {
    padding: 2.667vw 0 0 !important;
  }
}
@media only screen and (min-width: 769px) {
  .p-heading .c-breadcrumbs .c-breadcrumbs_list {
    margin: 0 !important;
  }
}
@media only screen and (max-width: 768px) {
  .p-heading .c-breadcrumbs .c-breadcrumbs_list {
    margin: 0 4.667vw !important;
  }
}
.p-heading .p-heading_inner {
  margin: 0 auto;
}
.p-heading .p-heading_inner .p-heading_title {
  color: #333;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media only screen and (min-width: 769px) {
  .p-heading .p-heading_inner .p-heading_title {
    font-size: 2.5em;
    padding-top: 1.875em;
  }
}
@media only screen and (max-width: 768px) {
  .p-heading .p-heading_inner .p-heading_title {
    font-size: 6.667vw;
    padding-top: 13.333vw;
  }
}
.p-heading .p-heading_inner .p-heading_text {
  line-height: 1.66;
  text-align: center;
  letter-spacing: 0.08em;
}
@media only screen and (min-width: 769px) {
  .p-heading .p-heading_inner .p-heading_text {
    font-size: 1.125em;
    margin-top: 4.167em;
  }
}
@media only screen and (max-width: 768px) {
  .p-heading .p-heading_inner .p-heading_text {
    font-size: 3.2vw;
    margin-top: 14vw;
  }
}
.p-heading .p-heading_inner .p-heading_text span {
  color: #0068B6;
}

@media only screen and (min-width: 769px) {
  .p-top .p-fv {
    background: url("../img/top/fv_bg_251201.jpg") no-repeat 50% 0%;
    background-size: 125em auto;
    height: 46.875em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-fv {
    background: url("../img/top/fv_bg_sp_251201.jpg") no-repeat 50% 0;
    background-size: 100vw auto;
    height: 136vw;
  }
}
.p-top .p-fv_txt {
  position: absolute;
}
@media only screen and (min-width: 769px) {
  .p-top .p-fv_txt {
    width: 42.5em;
    top: 3.75em;
    left: 6.125em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-fv_txt {
    width: 89.6vw;
    top: 6.667vw;
    left: 4vw;
  }
}
.p-top .p-fv_sub {
  position: absolute;
  width: 100%;
  font-weight: 500;
}
@media only screen and (min-width: 769px) {
  .p-top .p-fv_sub {
    top: 21.938em;
    left: 7.063em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-fv_sub {
    top: 85.867vw;
    left: 12vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-fv_sub img {
    width: 40.438em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-fv_sub img {
    width: 71.067vw;
  }
}
.p-top .p-fv_sub p {
  color: #FFF;
  position: relative;
}
.p-top .p-fv_sub p strong {
  font-size: 130%;
}
@media only screen and (min-width: 769px) {
  .p-top .p-fv_sub p {
    font-size: 1.688em;
    left: 1.667em;
    letter-spacing: 0.08em;
    top: 1.407em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-fv_sub p {
    font-size: 4.533vw;
    left: 5.333vw;
    top: 6.133vw;
    letter-spacing: 0.06em;
  }
}
.p-top .p-fv_cost {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
}
@media only screen and (min-width: 769px) {
  .p-top .p-fv_cost {
    top: 23.375em;
    left: 52.313em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-fv_cost {
    top: 53.333vw;
    left: 64vw;
  }
}
.p-top .p-fv_cost p:first-child {
  color: #0068b6;
}
@media only screen and (min-width: 769px) {
  .p-top .p-fv_cost p:first-child {
    font-size: 1.063em;
    margin-bottom: 0.235em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-fv_cost p:first-child {
    font-size: 3.2vw;
    margin-bottom: 1.333vw;
  }
}
.p-top .p-fv_cost p:nth-child(2) {
  color: #0068b6;
}
@media only screen and (min-width: 769px) {
  .p-top .p-fv_cost p:nth-child(2) {
    font-size: 1.5em;
    margin-bottom: 0.417em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-fv_cost p:nth-child(2) {
    font-size: 4.267vw;
    margin-bottom: 1.6vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-fv_cost img {
    width: 9.375em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-fv_cost img {
    width: 25.6vw;
  }
}
.p-top .p-fv_cta {
  position: absolute;
  width: 100%;
  font-weight: 500;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 769px) {
  .p-top .p-fv_cta {
    top: 34.875em;
    left: 8.438em;
    gap: 1.563em;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-fv_cta .p-fv_cta_txt {
    width: 9.813em;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-fv_cta a {
    width: 41.125em;
  }
}
.p-top {
  /*
  .client {
    @include media(pc) {
      padding: round-decimal((12 / $font_size_pc * 1em), 3) 0;
    }
    @include media(sp) {
      padding: round-decimal((12 / $sp_width * 100vw), 3) 0;
    }

    &_slider {
      .swiper-wrapper {
        transition-timing-function: linear !important;
      }

      .swiper-slide {
        @include media(pc) {
          margin: 0 round-decimal((6 / $font_size_pc * 1em), 3);
          width: round-decimal((126 / $font_size_pc * 1em), 3);
        }
        @include media(sp) {
          margin: 0 round-decimal((6 / $sp_width * 100vw), 3);
          width: round-decimal((126 / $sp_width * 100vw), 3);
        }
      }
    }
  }
  */
}
.p-top .p-logo-slider {
  overflow: hidden;
  width: 100%;
}
.p-top .p-logo-slider .p-logo-slider-inner {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: marquee 130s linear infinite;
}
.p-top .p-logo-slider .p-logo-slider-inner .p-logo-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media only screen and (min-width: 769px) {
  .p-top .p-logo-slider .p-logo-slider-inner .p-logo-list {
    padding: 0.75em 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-logo-slider .p-logo-slider-inner .p-logo-list {
    padding: 1.6vw 0;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-logo-slider .p-logo-slider-inner .p-logo-list li {
    width: 7.875em;
    margin: 0 0.375em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-logo-slider .p-logo-slider-inner .p-logo-list li {
    width: 16.8vw;
    margin: 0 0.8vw;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.p-top .p-works {
  background-color: #f2f2f2;
}
@media only screen and (min-width: 769px) {
  .p-top .p-works {
    padding: 3.125em 0 2.188em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-works {
    padding: 6.667vw 0 9.333vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-works .l-inner_ctx {
    padding: 0 6.25em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-works .l-inner_ctx {
    padding: 0;
  }
}
.p-top .p-works_title {
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  .p-top .p-works_title {
    width: 56.5em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-works_title {
    width: 81.867vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-works_list {
    margin-top: 3.125em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-works_list {
    overflow: visible;
    margin-top: 6.667vw;
    padding: 0 7.333vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-works_list .swiper-wrapper {
    justify-content: center;
    gap: 2%;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-works_list .p-item {
    margin: 0 !important;
    width: 32% !important;
  }
}
.p-top .p-works_list .p-item_img {
  aspect-ratio: 16/11;
  margin: 0;
}
@media only screen and (min-width: 769px) {
  .p-top .p-works_list .p-item_img {
    margin-bottom: 0.938em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-works_list .p-item_img {
    margin-bottom: 5.333vw;
  }
}
.p-top .p-works_list .p-item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 769px) {
  .p-top .p-works_list .swiper-button-prev,
  .p-top .p-works_list .swiper-button-next {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-works_list .swiper-button-prev,
  .p-top .p-works_list .swiper-button-next {
    background: #0068b6;
    border-radius: 1.333vw;
    height: 6.667vw;
    width: 6.667vw;
    margin-top: 0;
    top: 26vw;
  }
  .p-top .p-works_list .swiper-button-prev::after,
  .p-top .p-works_list .swiper-button-next::after {
    background: #fff;
    content: "";
    font-size: 0;
    height: 2.667vw;
    width: 1.333vw;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-works_list .swiper-button-prev {
    left: 0.933vw;
  }
  .p-top .p-works_list .swiper-button-prev::after {
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-works_list .swiper-button-next {
    right: 0.933vw;
  }
  .p-top .p-works_list .swiper-button-next::after {
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
}
.p-top .p-works_list .p-tax_list {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 769px) {
  .p-top .p-works_list .p-tax_list {
    gap: 0.625em;
    margin-bottom: 0.938em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-works_list .p-tax_list {
    gap: 2.667vw;
    margin-bottom: 2.667vw;
  }
}
.p-top .p-works_list .p-tax_list li {
  background: #fff;
  border: 1px solid;
  letter-spacing: 0.08em;
  padding: 0 0.5em;
  white-space: nowrap;
}
@media only screen and (min-width: 769px) {
  .p-top .p-works_list .p-tax_list li {
    font-size: 1.063em;
    line-height: 1.529;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-works_list .p-tax_list li {
    font-size: 3.733vw;
    line-height: 1.571;
  }
}
.p-top .p-works_list .p-tax_list li.p-industry {
  border-color: #cb141d;
  color: #cb141d;
}
.p-top .p-works_list .p-tax_list li.p-area {
  border-color: #0068b6;
  color: #0068b6;
}
.p-top .p-works_list .p-tax_list li.p-epco {
  border-color: #896412;
  color: #896412;
}
.p-top .p-works_list .p-item_txt p {
  color: #333333;
  letter-spacing: 0.08em;
  text-decoration: underline;
}
@media only screen and (min-width: 769px) {
  .p-top .p-works_list .p-item_txt p {
    font-size: 1.063em;
    line-height: 1.941;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-works_list .p-item_txt p {
    font-size: 3.6vw;
    line-height: 2;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-works .p-btn {
    margin-top: 1.563em;
    margin-left: 13.125em;
    width: 34.5em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-works .p-btn {
    margin-top: 6vw;
    margin-left: 6vw;
    width: 88.8vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-trouble {
    background: url("../img/top/trouble_bg.jpg") no-repeat 50% 0%;
    background-size: 125em auto;
    height: 55em;
    padding-top: 3.375em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-trouble {
    background-color: #ffffff;
    padding-top: 14vw;
  }
}
.p-top .p-trouble_title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 769px) {
  .p-top .p-trouble_title {
    margin-bottom: 3.5em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-trouble_title {
    margin-bottom: 9.333vw;
  }
}
.p-top .p-trouble_title .p-bg {
  position: absolute;
}
@media only screen and (min-width: 769px) {
  .p-top .p-trouble_title .p-bg {
    width: 55.375em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-trouble_title .p-bg {
    width: 86.133vw;
  }
}
.p-top .p-trouble_title p {
  color: #333333;
  text-align: center;
  font-weight: 700;
}
@media only screen and (min-width: 769px) {
  .p-top .p-trouble_title p {
    font-size: 2.25em;
    line-height: 1.667em;
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-trouble_title p {
    font-size: 5.333vw;
    line-height: 8vw;
    letter-spacing: 0.05em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-trouble_bg {
    margin: auto;
    width: 50.667vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-trouble_list {
    margin-left: 7.813em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-trouble_list {
    margin-top: 4vw;
    margin-bottom: 8.933vw;
  }
}
.p-top .p-trouble_list .p-title {
  display: flex;
  align-items: center;
  font-weight: 700;
}
@media only screen and (min-width: 769px) {
  .p-top .p-trouble_list .p-title {
    height: 3.75em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-trouble_list .p-title {
    background-color: #cdd5dd;
    height: 10.667vw;
  }
}
.p-top .p-trouble_list .p-title p {
  color: #062b54;
}
@media only screen and (min-width: 769px) {
  .p-top .p-trouble_list .p-title p {
    font-size: 1.438em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-trouble_list .p-title p {
    font-size: 4.267vw;
    padding-left: 4vw;
  }
}
.p-top .p-trouble_list ul {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 769px) {
  .p-top .p-trouble_list ul {
    margin-top: 1.25em;
    gap: 0.125em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-trouble_list ul {
    margin-top: 6.133vw;
    gap: 2.667vw;
  }
}
.p-top .p-trouble_list ul li {
  display: flex;
  align-items: flex-start;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .p-top .p-trouble_list ul li {
    gap: 0.625em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-trouble_list ul li {
    gap: 2.667vw;
  }
}
.p-top .p-trouble_list ul li p {
  line-height: 1.6;
  color: #333333;
  font-weight: 500;
}
@media only screen and (min-width: 769px) {
  .p-top .p-trouble_list ul li p {
    font-size: 1.125em;
    letter-spacing: 0.05em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-trouble_list ul li p {
    font-size: 3.6vw;
    line-height: 5.333vw;
    letter-spacing: 0.05vw;
  }
}
.p-top .p-trouble_list ul li::before {
  content: "";
  display: inline-block;
  background-image: url("../img/top/trouble_check.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .p-top .p-trouble_list ul li::before {
    width: 1.25em;
    height: 0.938em;
    top: 0.375em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-trouble_list ul li::before {
    width: 4vw;
    height: 2.933vw;
    top: 1.333vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-trouble_list.p-first {
    margin-bottom: 3.625em;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-trouble_list.p-second {
    margin-bottom: 2em;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-why_change {
    background: url("../img/top/why_change_bg.jpg") no-repeat 50% 0%;
    background-size: 125em auto;
    height: 88.75em;
    padding-top: 4.375em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-why_change {
    background: url("../img/top/why_change_bg_sp.jpg") no-repeat 50% 0;
    background-size: 100vw auto;
    height: 447.067vw;
    padding-top: 15.333vw;
  }
}
.p-top .p-why_change_title {
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .p-top .p-why_change_title {
    padding: 0 6.25em;
  }
}
.p-top .p-why_change_title h2 {
  font-weight: 500;
  color: #fff;
  text-align: center;
  border-bottom: 1px solid #fff;
}
@media only screen and (min-width: 769px) {
  .p-top .p-why_change_title h2 {
    font-size: 2.25em;
    padding-bottom: 0.417em;
    letter-spacing: 0.04em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-why_change_title h2 {
    font-size: 5.2vw;
    line-height: 8vw;
    padding-bottom: 6.4vw;
    letter-spacing: 0.3vw;
  }
}
.p-top .p-why_change_sub {
  text-align: center;
  width: 100%;
  color: #fff;
}
@media only screen and (min-width: 769px) {
  .p-top .p-why_change_sub {
    padding-top: 2.5em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-why_change_sub {
    padding-top: 5.6vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-why_change_sub p {
    font-size: 1.375em;
    line-height: 1.727em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-why_change_sub p {
    font-size: 3.6vw;
    line-height: 7.2vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-why_change_content {
    background: url("../img/top/why_change_content_bg.png") no-repeat 50% 0%;
    background-size: 62.5em 36.25em;
    height: 36.25em;
    margin-top: 3.125em;
    padding: 0 6.25em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-why_change_content {
    background: url("../img/top/why_change_content_bg_sp.png") no-repeat 50% 0;
    background-size: 90.667vw 213.333vw;
    height: 213.333vw;
    margin-top: 8vw;
  }
}
.p-top .p-why_change_content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (min-width: 769px) {
  .p-top .p-why_change_content ul {
    padding: 0 3.125em;
    gap: 5.313em 6.25em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-why_change_content ul {
    flex-direction: column;
    padding: 0 5.333vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-why_change_content ul li {
    width: 25em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-why_change_content ul li {
    padding: 6.667vw 0;
    width: 80vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-why_change_content_title {
    height: 3.75em;
    margin-bottom: 3.125em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-why_change_content_title {
    height: 22.667vw;
  }
}
.p-top .p-why_change_content_title p {
  color: #fff;
  text-align: left;
  display: flex;
  align-items: center;
  align-content: center;
}
@media only screen and (min-width: 769px) {
  .p-top .p-why_change_content_title p {
    font-size: 1.625em;
    height: 2.308em;
    padding-left: 1.923em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-why_change_content_title p {
    font-size: 4.8vw;
    height: 22.667vw;
    line-height: 7.2vw;
    padding-left: 8vw;
  }
}
.p-top .p-why_change_content_item .p-title {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 769px) {
  .p-top .p-why_change_content_item .p-title {
    margin-bottom: 1.563em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-why_change_content_item .p-title {
    margin-bottom: 2.133vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-why_change_content_item .p-title img {
    width: 5em;
    height: 5em;
    margin-right: 1.25em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-why_change_content_item .p-title img {
    width: 16vw;
    height: 16vw;
    margin-right: 4vw;
  }
}
.p-top .p-why_change_content_item .p-title p {
  color: #0068b6;
  font-weight: 700;
}
@media only screen and (min-width: 769px) {
  .p-top .p-why_change_content_item .p-title p {
    font-size: 1.438em;
    line-height: 1.478em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-why_change_content_item .p-title p {
    font-size: 4.267vw;
    line-height: 6vw;
    letter-spacing: 0.1vw;
  }
}
.p-top .p-why_change_content_item .p-txt p {
  color: #333;
}
@media only screen and (min-width: 769px) {
  .p-top .p-why_change_content_item .p-txt p {
    font-size: 1.125em;
    line-height: 1.667em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-why_change_content_item .p-txt p {
    font-size: 3.6vw;
    line-height: 7.2vw;
  }
}
.p-top .p-why_change_point {
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  .p-top .p-why_change_point {
    background: url("../img/top/why_change_point_bg.png") no-repeat 50% 0%;
    background-size: 63em 26.938em;
    width: 63em;
    height: 26.938em;
    margin-top: 3.563em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-why_change_point {
    background: url("../img/top/why_change_point_bg_sp.png") no-repeat 50% 0;
    background-size: 90.667vw 129.333vw;
    width: 90.667vw;
    height: 129.333vw;
    margin-top: 11.333vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-why_change_point_title {
    padding-top: 6.063em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-why_change_point_title {
    padding-top: 16vw;
  }
}
.p-top .p-why_change_point_title h2 {
  color: #0068b6;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .p-top .p-why_change_point_title h2 {
    font-size: 2.188em;
    letter-spacing: 0.04em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-why_change_point_title h2 {
    font-size: 5.467vw;
    line-height: 7.333vw;
    letter-spacing: 0.4vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-why_change_point_content {
    padding-top: 3.438em;
    padding-left: 4.875em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-why_change_point_content {
    margin: 0 auto;
    width: 77.333vw;
    padding-top: 48vw;
  }
}
.p-top .p-why_change_point_content p {
  color: #333333;
}
@media only screen and (min-width: 769px) {
  .p-top .p-why_change_point_content p {
    font-size: 1.375em;
    line-height: 2em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-why_change_point_content p {
    font-size: 3.6vw;
    line-height: 7.2vw;
    letter-spacing: 0.4vw;
  }
}
.p-top .p-why_change_point_content p span {
  color: #0068b6;
}
.p-top .p-quality {
  position: relative;
}
@media only screen and (min-width: 769px) {
  .p-top .p-quality {
    background: url("../img/top/quality_bg.jpg") no-repeat 50% 0%;
    background-size: 125em auto;
    height: 67.5em;
    padding-bottom: 3.75em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-quality {
    background: url("../img/top/quality_bg_sp.jpg") no-repeat 50% 0;
    background-size: 100vw auto;
    height: 282.667vw;
  }
}
.p-top .p-quality_content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
@media only screen and (min-width: 769px) {
  .p-top .p-quality_content {
    height: 31.25em;
    gap: 4.125em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-quality_content {
    flex-direction: column;
    align-items: flex-start;
    height: 169.333vw;
    gap: 20vw;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-quality_title {
    margin-left: 8vw;
  }
}
.p-top .p-quality_title p:first-child {
  color: #0068b6;
  display: inline-block;
  font-weight: 700;
}
@media only screen and (min-width: 769px) {
  .p-top .p-quality_title p:first-child {
    font-size: 1.313em;
    margin-bottom: 1.667em;
    padding-left: 0.81em;
    letter-spacing: 0.2em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-quality_title p:first-child {
    font-size: 4.8vw;
    margin-bottom: 6.667vw;
    padding-left: 4vw;
  }
}
.p-top .p-quality_title p:nth-child(2) {
  color: #fff;
  font-weight: 700;
}
@media only screen and (min-width: 769px) {
  .p-top .p-quality_title p:nth-child(2) {
    font-size: 3.75em;
    margin-bottom: 0.667em;
    line-height: 1.183em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-quality_title p:nth-child(2) {
    font-size: 10vw;
    line-height: 11.6vw;
    margin-bottom: 6.667vw;
    letter-spacing: 0.4vw;
  }
}
.p-top .p-quality_title p:last-child {
  color: #fff;
  font-weight: 400;
  line-height: 1.6;
}
@media only screen and (min-width: 769px) {
  .p-top .p-quality_title p:last-child {
    font-size: 1.125em;
    line-height: 1.667em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-quality_title p:last-child {
    font-size: 3.6vw;
    line-height: 7.2vw;
    letter-spacing: 0.4vw;
  }
}
.p-top .p-quality_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 769px) {
  .p-top .p-quality_list {
    gap: 1.25em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-quality_list {
    align-self: flex-end;
    gap: 5.333vw;
  }
}
.p-top .p-quality_list li {
  color: #333333;
  background: #fff;
  position: relative;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
@media only screen and (min-width: 769px) {
  .p-top .p-quality_list li {
    padding: 1.25em 2.5em;
    border-radius: 0.625em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-quality_list li {
    display: flex;
    align-items: center;
    min-height: 17.333vw;
    width: 86.667vw;
    padding: 2.667vw 5.333vw 2.667vw 6.667vw;
    border-radius: 1.333vw;
  }
}
.p-top .p-quality_list li p {
  font-weight: 500;
}
@media only screen and (min-width: 769px) {
  .p-top .p-quality_list li p {
    font-size: 1.313em;
    line-height: 1.619em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-quality_list li p {
    font-size: 3.6vw;
    line-height: 5.867vw;
    letter-spacing: 0.2vw;
  }
}
.p-top .p-quality_list li p span {
  color: #0068b6;
}
.p-top .p-quality_list li p:before {
  content: "";
  background: url("../img/top/quality_check.png") no-repeat 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
}
@media only screen and (min-width: 769px) {
  .p-top .p-quality_list li p:before {
    width: 2.381em;
    height: 2.381em;
    top: -0.476em;
    left: -1.19em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-quality_list li p:before {
    top: -1.333vw;
    left: -4vw;
    width: 8vw;
    height: 8vw;
  }
}
.p-top .p-quality_cost {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: auto;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .p-top .p-quality_cost {
    margin-top: 4.5em;
  }
}
.p-top .p-quality_cost_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  width: 100%;
}
.p-top .p-quality_cost_title p:first-child {
  color: #333333;
  font-weight: 500;
  position: absolute;
}
@media only screen and (min-width: 769px) {
  .p-top .p-quality_cost_title p:first-child {
    font-size: 2.375em;
    letter-spacing: 0.05em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-quality_cost_title p:first-child {
    text-align: center;
    font-size: 5.6vw;
    line-height: 8vw;
    letter-spacing: 0.4vw;
    top: 4vw;
  }
}
.p-top .p-quality_cost_title p:last-child {
  color: #ffffff;
  font-weight: 500;
  position: absolute;
}
@media only screen and (min-width: 769px) {
  .p-top .p-quality_cost_title p:last-child {
    font-size: 2.938em;
    top: 1.702em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-quality_cost_title p:last-child {
    font-size: 6.267vw;
    letter-spacing: 0.4vw;
    top: 30.667vw;
  }
}
.p-top .p-quality_cost_content {
  color: #333333;
  text-align: center;
  font-weight: 500;
  position: absolute;
}
@media only screen and (min-width: 769px) {
  .p-top .p-quality_cost_content {
    top: 15.625em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-quality_cost_content {
    top: 50.667vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-quality_cost_content p {
    font-size: 1.375em;
    line-height: 1.864em;
    letter-spacing: 0.2em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-quality_cost_content p {
    font-size: 3.6vw;
    line-height: 7.2vw;
    letter-spacing: 0.4vw;
  }
}
.p-top .p-quality_cost_content span {
  color: #0068b6;
}
.p-top .p-cv {
  background-color: #cb141d;
}
@media only screen and (min-width: 769px) {
  .p-top .p-cv {
    padding: 2.5em 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-cv {
    padding: 13.333vw 0;
  }
}
.p-top .p-cv .l-inner_ctx {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 769px) {
  .p-top .p-cv .l-inner_ctx {
    gap: 2.188em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-cv .l-inner_ctx {
    flex-direction: column;
    gap: 5.067vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-cv_number img {
    width: 20.625em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-cv_number img {
    width: 66.667vw;
  }
}
.p-top .p-cv_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 769px) {
  .p-top .p-cv_btn {
    gap: 1.25em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-cv_btn {
    align-self: flex-end;
    gap: 4vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-cv_btn a {
    width: 39.75em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-cv_btn a {
    width: 86.533vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-features {
    background: url("../img/top/features_bg.jpg") no-repeat 50% 0%;
    background-size: 125em auto;
    height: 153.125em;
    padding-top: 3.75em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-features {
    background: url("../img/top/features_bg_sp.jpg") no-repeat 50% 0;
    background-size: 100vw auto;
    height: 740vw;
    padding-top: 14.667vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-features .l-inner_ctx {
    padding: 0 6.25em;
  }
}
.p-top .p-features_title {
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .p-top .p-features_title img {
    width: 34em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-features_title img {
    width: 84.533vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-features_content {
    margin-top: 9.5em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-features_content {
    padding-left: 3.333vw;
    margin-top: 28.667vw;
  }
}
.p-top .p-features_content_item {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 769px) {
  .p-top .p-features_content_item:nth-child(even) {
    margin-left: 32.5em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-features_content_item:nth-child(even) {
    margin-left: 4vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-features_content_item:first-child {
    margin-bottom: 10em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-features_content_item:first-child {
    margin-bottom: 92vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-features_content_item:nth-child(2) {
    margin-bottom: 13.75em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-features_content_item:nth-child(2) {
    margin-bottom: 96vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-features_content_item:nth-child(3) {
    margin-bottom: 12.25em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-features_content_item:nth-child(3) {
    margin-bottom: 93.333vw;
  }
}
.p-top .p-features_content_item_title p {
  color: #fff;
  display: inline-block;
  font-weight: 700;
}
@media only screen and (min-width: 769px) {
  .p-top .p-features_content_item_title p {
    font-size: 1.875em;
    line-height: 1.667em;
    letter-spacing: 0.033em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-features_content_item_title p {
    font-size: 4.8vw;
    line-height: 8vw;
    letter-spacing: 0.1vw;
  }
}
.p-top .p-features_content_item_title p .p-red {
  background-color: #cb141d;
}
@media only screen and (min-width: 769px) {
  .p-top .p-features_content_item_title p .p-red {
    padding: 0 0.1em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-features_content_item_title p .p-red {
    padding: 0 0.4vw;
  }
}
.p-top .p-features_content_item_title p .p-blue {
  background-color: #0068b6;
}
@media only screen and (min-width: 769px) {
  .p-top .p-features_content_item_title p .p-blue {
    padding: 0 0.1em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-features_content_item_title p .p-blue {
    padding: 0 0.4vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-features_content_item_content {
    width: 30em;
    margin-top: 1.25em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-features_content_item_content {
    width: 77.333vw;
    margin-top: 4vw;
  }
}
.p-top .p-features_content_item_content p {
  color: #333333;
}
@media only screen and (min-width: 769px) {
  .p-top .p-features_content_item_content p {
    font-size: 1.125em;
    line-height: 1.778em;
    letter-spacing: 0.028em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-features_content_item_content p {
    font-size: 3.6vw;
    line-height: 7.2vw;
    letter-spacing: 0.2vw;
  }
}
.p-top .p-voice_contact {
  background-color: #cb141d;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice_contact {
    padding: 2em 0;
    gap: 1em;
    border-radius: 1.25em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice_contact {
    margin: 0 auto;
    width: 93.333vw;
    padding: 10.667vw 0 12vw;
    gap: 8vw;
    border-radius: 2.667vw;
  }
}
.p-top .p-voice_contact_title {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice_contact_title {
    gap: 1.125em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice_contact_title {
    gap: 1.867vw;
  }
}
.p-top .p-voice_contact_title p {
  color: #ffffff;
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice_contact_title p {
    font-size: 1.563em;
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice_contact_title p {
    text-align: center;
    font-size: 4.8vw;
    line-height: 7.467vw;
  }
}
.p-top .p-voice_contact_title::before, .p-top .p-voice_contact_title::after {
  content: "";
  display: block;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice_contact_title::before, .p-top .p-voice_contact_title::after {
    background-image: url("../img/top/voice_el.png");
    width: 0.688em;
    height: 1.875em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice_contact_title::before, .p-top .p-voice_contact_title::after {
    background-image: url("../img/top/voice_el_sp.png");
    width: 4.133vw;
    height: 10.667vw;
  }
}
.p-top .p-voice_contact_title::after {
  transform: scaleX(-1);
}
.p-top .p-voice_contact_btn {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice_contact_btn {
    gap: 1.25em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice_contact_btn {
    padding: 0 2.667vw 0 4vw;
    gap: 7.2vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice_contact_btn a img {
    width: 39.688em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice_contact_btn a img {
    width: 86.533vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice01 {
    background: url("../img/top/voice01_bg.jpg") no-repeat 50% 0%;
    background-size: 125em 48.125em;
    padding-bottom: 3.75em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice01 {
    background: url("../img/top/voice01_bg_sp.jpg") no-repeat 50% 0%;
    background-size: 100vw auto;
    height: 198.8vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice01 .l-inner_ctx {
    padding: 23.75em 6.25em 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice01 .l-inner_ctx {
    padding: 96vw 0 0;
  }
}
.p-top .p-voice01_title {
  display: flex;
  justify-content: center;
  color: #ffffff;
  position: absolute;
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice01_title {
    gap: 5em;
    top: 4.5em;
    left: 10.188em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice01_title {
    align-items: center;
    gap: 12.533vw;
    top: 20vw;
    left: 8.667vw;
  }
}
.p-top .p-voice01_title p:nth-child(1) {
  font-weight: 700;
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice01_title p:nth-child(1) {
    font-size: 2.375em;
    line-height: 1.053em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice01_title p:nth-child(1) {
    font-size: 5.467vw;
    line-height: 5.867vw;
    letter-spacing: 0.4vw;
  }
}
.p-top .p-voice01_title p:nth-child(2) {
  font-weight: 600;
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice01_title p:nth-child(2) {
    font-size: 2.375em;
    line-height: 2.263em;
    letter-spacing: 0.08em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice01_title p:nth-child(2) {
    font-size: 5.067vw;
    line-height: 8vw;
  }
}
.p-top .p-voice01_txt01, .p-top .p-voice01_txt02 {
  position: absolute;
}
.p-top .p-voice01_txt01 p, .p-top .p-voice01_txt02 p {
  color: #333333;
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice01_txt01 p, .p-top .p-voice01_txt02 p {
    font-size: 1.313em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice01_txt01 p, .p-top .p-voice01_txt02 p {
    font-size: 3.733vw;
    letter-spacing: 0.1vw;
  }
}
.p-top .p-voice01_txt01 p b, .p-top .p-voice01_txt02 p b {
  color: #0068b6;
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice01_txt01 {
    top: 15.125em;
    left: 12.5em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice01_txt01 {
    top: 50.933vw;
    left: 20.933vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice01_txt02 {
    top: 13.25em;
    left: 41.75em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice01_txt02 {
    top: 69.6vw;
    left: 21.333vw;
  }
}
.p-top .p-voice01_txt03 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice01_txt03 {
    top: 19.125em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice01_txt03 {
    top: 84.533vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice01_txt03 p {
    font-size: 1.25em;
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice01_txt03 p {
    text-align: center;
    width: 100vw;
    font-size: 4vw;
    letter-spacing: 0.1vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice02 {
    background: url("../img/top/voice02_bg.jpg") no-repeat 50% 0%;
    background-size: 125em 45em;
    padding-bottom: 3.75em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice02 {
    background: url("../img/top/voice02_bg_sp.jpg") no-repeat 50% 0%;
    background-size: 100vw auto;
    height: 178.4vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice02 .l-inner_ctx {
    padding: 23.75em 6.25em 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice02 .l-inner_ctx {
    padding: 74.667vw 0 0;
  }
}
.p-top .p-voice02_title {
  color: #ffffff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice02_title {
    top: 4.75em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice02_title {
    top: 16.4vw;
  }
}
.p-top .p-voice02_title p:nth-child(1) {
  font-weight: 700;
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice02_title p:nth-child(1) {
    font-size: 2.375em;
    line-height: 1.395em;
    letter-spacing: 0.05em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice02_title p:nth-child(1) {
    font-size: 5.067vw;
    line-height: 7.067vw;
    letter-spacing: 0.1em;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice02_title p:nth-child(2) {
    font-size: 1.25em;
    margin-top: 2.75em;
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice02_title p:nth-child(2) {
    margin-top: 9.333vw;
    font-size: 4vw;
    line-height: 6.667vw;
    letter-spacing: 0.3vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice02_contact_btn {
    gap: 1.25em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice02_contact_btn {
    gap: 3.333vw;
  }
}
.p-top .p-voice02_txt {
  text-align: center;
  color: #ffffff;
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice02_txt {
    position: relative;
    top: -0.625em;
    font-size: 0.938em;
    letter-spacing: 0.2em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice02_txt {
    font-size: 2.933vw;
    letter-spacing: 0.3vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice03 {
    background: url("../img/top/voice03_bg.jpg") no-repeat 50% 0%;
    background-size: 125em 40em;
    padding-bottom: 3.75em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice03 {
    background: url("../img/top/voice03_bg_sp.jpg") no-repeat 50% 0%;
    background-size: 100vw auto;
    height: 204.933vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice03 .l-inner_ctx {
    padding: 18.75em 6.25em 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice03 .l-inner_ctx {
    padding: 130.667vw 0 0;
  }
}
.p-top .p-voice03_title {
  color: #ffffff;
  position: absolute;
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice03_title {
    top: 5.25em;
    left: 27.5em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice03_title {
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    top: 70.667vw;
  }
}
.p-top .p-voice03_title p:nth-child(1) {
  font-weight: 700;
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice03_title p:nth-child(1) {
    font-size: 1.938em;
    letter-spacing: 0.05em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice03_title p:nth-child(1) {
    font-size: 5.333vw;
    line-height: 8vw;
    letter-spacing: 0.3 vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice03_title p:nth-child(2) {
    font-size: 1.125em;
    line-height: 1.778em;
    margin-top: 2.667em;
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice03_title p:nth-child(2) {
    font-size: 3.467vw;
    line-height: 6.4vw;
    margin-top: 8vw;
    letter-spacing: 0.1vw;
  }
}
.p-top .p-voice03_cost {
  position: absolute;
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice03_cost {
    top: 1.875em;
    left: 6.25em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice03_cost {
    left: 50%;
    transform: translateX(-50%);
    top: 13.333vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-voice03_cost img {
    width: 17.5em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice03_cost img {
    width: 53.333vw;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-voice03_contact {
    padding: 9.333vw 0 10.133vw;
  }
}
.p-top .p-faq {
  background-color: #0068b6;
}
@media only screen and (min-width: 769px) {
  .p-top .p-faq {
    padding: 3.625em 0 3.125em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-faq {
    padding: 13.333vw 0;
  }
}
.p-top .p-faq.p-faq_01 {
  background-color: #0068b6;
}
.p-top .p-faq.p-faq_02 {
  background-color: #f2f2f2;
}
@media only screen and (min-width: 769px) {
  .p-top .p-faq .l-inner_ctx {
    padding: 0 6.25em;
  }
}
.p-top .p-faq_title {
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .p-top .p-faq_title {
    margin-bottom: 3.75em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-faq_title {
    margin-bottom: 10.667vw;
  }
}
.p-top .p-faq_title.p-faq_title_01 p {
  color: #ffffff;
}
.p-top .p-faq_title.p-faq_title_02 p {
  color: #333333;
}
@media only screen and (min-width: 769px) {
  .p-top .p-faq_title img {
    width: 2.5em;
    margin-bottom: 1.875em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-faq_title img {
    width: 13.333vw;
    margin-bottom: 2.667vw;
  }
}
.p-top .p-faq_title p {
  font-weight: 700;
}
@media only screen and (min-width: 769px) {
  .p-top .p-faq_title p {
    font-size: 2.5em;
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-faq_title p {
    font-size: 6.667vw;
    line-height: 10.667vw;
    letter-spacing: 0.05em;
  }
}
.p-top .p-faq_list {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  .p-top .p-faq_list {
    width: 62.5em;
    gap: 0.625em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-faq_list {
    width: 90.667vw;
    gap: 6.667vw;
  }
}
.p-top .p-faq_item {
  background-color: #fff;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
}
@media only screen and (min-width: 769px) {
  .p-top .p-faq_item {
    width: 62.5em;
    border-radius: 0.875em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-faq_item {
    border-radius: 1.333vw;
  }
}
.p-top .p-faq_question {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 769px) {
  .p-top .p-faq_question {
    padding: 1.25em 3.125em;
    gap: 1.75em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-faq_question {
    padding: 6.667vw 4vw;
    gap: 5.067vw;
  }
}
.p-top .p-faq_question > img,
.p-top .p-faq_question .p-faq_q_icon img {
  flex-shrink: 0;
}
@media only screen and (min-width: 769px) {
  .p-top .p-faq_question > img,
  .p-top .p-faq_question .p-faq_q_icon img {
    width: 3.125em;
    height: 3.125em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-faq_question > img,
  .p-top .p-faq_question .p-faq_q_icon img {
    width: 9.333vw;
    height: 9.333vw;
  }
}
.p-top .p-faq_question .p-faq_q_icon {
  flex-shrink: 0;
}
.p-top .p-faq_question::after {
  content: "";
  position: absolute;
  background-color: #333333;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 769px) {
  .p-top .p-faq_question::after {
    right: 1.75em;
    top: 50%;
    transform: translateY(-50%);
    width: 1.875em;
    height: 0.125em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-faq_question::after {
    right: 6vw;
    top: 50%;
    transform: translateY(-50%);
    width: 6.667vw;
    height: 0.4vw;
  }
}
.p-top .p-faq_question::before {
  content: "";
  position: absolute;
  background-color: #333333;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 769px) {
  .p-top .p-faq_question::before {
    right: 2.6em;
    width: 0.125em;
    height: 1.875em;
    z-index: 2;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-faq_question::before {
    right: 9.333vw;
    top: calc(50% - 4vw);
    width: 0.4vw;
    height: 6.667vw;
    z-index: 2;
  }
}
.p-top .p-faq_question.active::before {
  opacity: 0;
  transform: rotate(90deg);
}
.p-top .p-faq_question p {
  color: #333;
  font-weight: 500;
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
@media only screen and (min-width: 769px) {
  .p-top .p-faq_question p {
    font-size: 1.375em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-faq_question p {
    font-size: 4.267vw;
    line-height: 6.133vw;
  }
}
.p-top .p-faq_answer {
  background-color: #fff;
  display: none;
  display: flex;
  align-items: flex-start;
}
@media only screen and (min-width: 769px) {
  .p-top .p-faq_answer {
    padding: 0 3.125em 1.25em;
    gap: 1.75em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-faq_answer {
    padding: 0 4vw 6.667vw 4vw;
    gap: 5.067vw;
  }
}
.p-top .p-faq_answer img {
  flex-shrink: 0;
}
@media only screen and (min-width: 769px) {
  .p-top .p-faq_answer img {
    width: 3.125em;
    height: 3.125em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-faq_answer img {
    width: 9.333vw;
    height: 9.333vw;
  }
}
.p-top .p-faq_answer p {
  color: #333333;
  margin: 0;
  flex: 1;
  font-weight: 500;
}
@media only screen and (min-width: 769px) {
  .p-top .p-faq_answer p {
    font-size: 1em;
    line-height: 1.875em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-faq_answer p {
    font-size: 3.467vw;
    line-height: 6.4vw;
    letter-spacing: 0.05em;
  }
}
.p-top .p-flow {
  background-color: #cce1f0;
}
@media only screen and (min-width: 769px) {
  .p-top .p-flow {
    padding: 3.75em 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-flow {
    padding: 10vw 0 15.2vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-flow .l-inner_ctx {
    padding: 0 6.25em;
  }
}
.p-top .p-flow_title {
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .p-top .p-flow_title {
    margin-bottom: 3.625em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-flow_title {
    margin-bottom: 10.667vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-flow_title img {
    width: 2.5em;
    margin-bottom: 1.875em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-flow_title img {
    width: 13.333vw;
    margin-bottom: 2.667vw;
  }
}
.p-top .p-flow_title p {
  font-weight: 700;
  color: #333333;
}
@media only screen and (min-width: 769px) {
  .p-top .p-flow_title p {
    font-size: 2.5em;
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-flow_title p {
    font-size: 6.667vw;
    line-height: 10.667vw;
    letter-spacing: 0.05em;
  }
}
.p-top .p-flow_list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .p-top .p-flow_list {
    gap: 2.5em 2.313em;
    max-width: 60.938em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-flow_list {
    gap: 7.333vw;
    flex-direction: column;
    align-items: center;
  }
}
.p-top .p-flow_item {
  position: relative;
  background: #ffffff;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 769px) {
  .p-top .p-flow_item {
    width: 18.75em;
    min-height: 16.875em;
    padding: 7.188em 1.563em 1.25em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-flow_item {
    width: 90.667vw;
    padding: 4vw 3.333vw 5.333vw;
  }
}
.p-top .p-flow_item::before {
  content: "";
  position: absolute;
  background-size: contain;
  z-index: 1;
}
@media only screen and (min-width: 769px) {
  .p-top .p-flow_item::before {
    top: -0.375em;
    left: -0.063em;
    width: 20.375em;
    height: 5.688em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-flow_item::before {
    top: -0.8vw;
    left: -0.133vw;
    width: 32vw;
    height: 12.133vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-flow_item:nth-child(1)::before {
    background: url("../img/top/flow_step01.png") no-repeat center center;
    background-size: contain;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-flow_item:nth-child(1)::before {
    background: url("../img/top/flow_step01_sp.png") no-repeat center center;
    background-size: contain;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-flow_item:nth-child(2)::before {
    background: url("../img/top/flow_step02.png") no-repeat center center;
    background-size: contain;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-flow_item:nth-child(2)::before {
    background: url("../img/top/flow_step02_sp.png") no-repeat center center;
    background-size: contain;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-flow_item:nth-child(3)::before {
    background: url("../img/top/flow_step03.png") no-repeat center center;
    background-size: contain;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-flow_item:nth-child(3)::before {
    background: url("../img/top/flow_step03_sp.png") no-repeat center center;
    background-size: contain;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-flow_item:nth-child(4)::before {
    background: url("../img/top/flow_step04.png") no-repeat center center;
    background-size: contain;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-flow_item:nth-child(4)::before {
    background: url("../img/top/flow_step04_sp.png") no-repeat center center;
    background-size: contain;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-flow_item:nth-child(5)::before {
    background: url("../img/top/flow_step05.png") no-repeat center center;
    background-size: contain;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-flow_item:nth-child(5)::before {
    background: url("../img/top/flow_step05_sp.png") no-repeat center center;
    background-size: contain;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-flow_item:nth-child(6)::before {
    background: url("../img/top/flow_step06.png") no-repeat center center;
    width: 15.063em;
    background-size: contain;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-flow_item:nth-child(6)::before {
    background: url("../img/top/flow_step06_sp.png") no-repeat center center;
    background-size: contain;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-flow_item::after {
    content: "";
    position: absolute;
    background-size: contain;
    z-index: 1;
    background-image: url("../img/top/flow_arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 1.6vw;
    height: 6.933vw;
    bottom: -7vw;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-flow_item:last-child::after {
    display: none;
  }
}
@media only screen and (min-width: 769px) {
  .p-top .p-flow_item_title {
    margin-bottom: 0.875em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-flow_item_title {
    margin-bottom: 6.933vw;
  }
}
.p-top .p-flow_item_title p {
  font-weight: 500;
  color: #0068b6;
}
@media only screen and (min-width: 769px) {
  .p-top .p-flow_item_title p {
    font-size: 1.438em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-flow_item_title p {
    font-size: 4.267vw;
    padding-left: 30.667vw;
  }
}
.p-top .p-flow_item_content p {
  color: #333333;
}
@media only screen and (min-width: 769px) {
  .p-top .p-flow_item_content p {
    font-size: 1em;
    line-height: 1.688em;
    letter-spacing: 0.05em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-flow_item_content p {
    font-size: 3.2vw;
    line-height: 5.333vw;
  }
}
.p-top .p-flow_item_content span {
  color: #666666;
  display: block;
}
@media only screen and (min-width: 769px) {
  .p-top .p-flow_item_content span {
    font-size: 0.75em;
    line-height: 1.417em;
    margin-top: 0.333em;
  }
}
@media only screen and (max-width: 768px) {
  .p-top .p-flow_item_content span {
    font-size: 2.667vw;
    line-height: 4.533vw;
    margin-top: 1.333vw;
  }
}

@media only screen and (max-width: 768px) {
  .p-fixed_btn {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    flex-flow: row wrap;
    padding: 2.267vw 0 2.667vw;
  }
}
.p-fixed_btn .p-fixed_btn_txt {
  width: 46.933vw;
  margin: 0 auto 1.6vw;
}
.p-fixed_btn a {
  display: block;
  width: 93.333vw;
  margin-inline: auto;
}
.p-fixed_btn .p-fixed_close {
  width: 8vw;
  position: absolute;
  top: 1.333vw;
  right: 3.333vw;
}

#single_page {
  font-family: "M PLUS 1", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  margin-top: unset;
}
@media only screen and (min-width: 769px) {
  #single_page {
    margin: 3.75em 0 10em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page {
    margin: 9.333vw 0 18.667vw;
  }
}
#single_page .p-single_title_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_title_wrap {
    margin-bottom: 3.125em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_title_wrap {
    margin-bottom: 6.667vw;
  }
}
#single_page .p-single_title_txt {
  position: relative;
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_title_txt {
    width: 55em;
    margin-bottom: 3.125em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_title_txt {
    width: 85.333vw;
    margin-bottom: 8vw;
  }
}
#single_page .p-single_title_txt:before, #single_page .p-single_title_txt:after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_title_txt:before, #single_page .p-single_title_txt:after {
    background-image: url(../img/single/title_el.png);
    background-size: 55.375em 1.438em;
    width: 55.375em;
    height: 1.438em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_title_txt:before, #single_page .p-single_title_txt:after {
    background-image: url(../img/single/title_el_sp.png);
    background-size: 86.133vw 3.867vw;
    width: 86.133vw;
    height: 3.867vw;
  }
}
#single_page .p-single_title_txt:before {
  top: 0;
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_title_txt:before {
    left: -0.188em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_title_txt:before {
    left: -0.4vw;
  }
}
#single_page .p-single_title_txt:after {
  bottom: 0;
  transform: scaleX(-1) scaleY(-1);
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_title_txt:after {
    right: -0.188em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_title_txt:after {
    right: -0.4vw;
  }
}
#single_page .p-single_title_txt h1 {
  background-color: #e5f0f8;
  color: #333333;
  text-align: left;
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_title_txt h1 {
    font-size: 1.875em;
    line-height: 1.6em;
    padding: 1.167em 4em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_title_txt h1 {
    font-size: 5.067vw;
    line-height: 1.867;
    padding: 8vw 9.333vw;
  }
}
#single_page .p-single_title_img {
  margin: auto;
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_title_img {
    max-width: 40em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_title_img {
    max-width: 85.333vw;
  }
}
#single_page .p-single_title_img img {
  width: 100%;
  height: auto;
}
#single_page ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
}
@media only screen and (min-width: 769px) {
  #single_page ul {
    max-width: 50em;
    margin-bottom: 1.875em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page ul {
    margin-bottom: 4vw;
  }
}
#single_page ul li {
  position: relative;
  font-size: 1.125em;
}
@media only screen and (min-width: 769px) {
  #single_page ul li {
    padding-left: 0.556em;
    line-height: 2.278em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page ul li {
    line-height: 8vw;
  }
}
#single_page ul li::before {
  content: "●";
  color: #0068b6;
  position: relative;
}
@media only screen and (min-width: 769px) {
  #single_page ul li::before {
    font-size: 0.875em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page ul li::before {
    font-size: 2.4vw;
    margin-right: 1.333vw;
    top: -0.5vw;
  }
}
#single_page ol {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
}
@media only screen and (min-width: 769px) {
  #single_page ol {
    max-width: 50em;
    margin-bottom: 1.875em;
    padding-left: 0.6em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page ol {
    margin-bottom: 4vw;
  }
}
#single_page ol li {
  list-style: decimal;
  list-style-position: inside;
}
@media only screen and (min-width: 769px) {
  #single_page ol li {
    font-size: 1.125em;
    line-height: 1.6rem;
  }
}
@media only screen and (max-width: 768px) {
  #single_page ol li {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 5px;
  }
}
#single_page .aligncenter {
  margin: 1rem auto !important;
}
#single_page .aligncenter {
  clear: both;
}
#single_page .p-single_content {
  color: #333333;
}
#single_page .p-single_content .l-inner_ctx {
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_content .l-inner_ctx {
    max-width: 55em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_content .l-inner_ctx {
    padding: unset;
    max-width: 90.667vw;
  }
}
#single_page .p-single_content a {
  color: #0068b6;
  text-decoration: underline;
}
#single_page .p-single_content img {
  display: block;
  height: auto;
  margin: 1rem 0;
  max-width: 100%;
  width: unset !important;
  border: none;
  height: auto;
}
#single_page .p-single_content strong {
  font-weight: 700;
}
#single_page .p-single_content h2 {
  width: 100%;
  font-size: 1.625em;
  background-color: #e5f0f8;
  color: #0068b6;
  position: relative;
  display: block;
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_content h2 {
    line-height: 1.5em;
    padding: 1em;
    margin: 1.5em 0;
    border-left: 0.75em solid #0068b6;
  }
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_content h2 {
    line-height: 1.389;
    padding: 4vw;
    margin: 6.667vw 0;
    border-left: 2vw solid #0068b6;
  }
}
#single_page .p-single_content h3 {
  color: #333333;
  font-size: 1.625em;
  margin: auto;
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_content h3 {
    width: 90.909%;
    line-height: 1.5em;
    margin: 1em auto;
    padding: 0 0 0.5em;
    border-bottom: 0.15em solid #0068b6;
  }
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_content h3 {
    width: 90.667vw;
    line-height: 1.786;
    margin: 5.333vw auto 4vw;
    padding: 0 0 2vw;
    border-bottom: 0.4vw solid #0068b6;
  }
}
#single_page .p-single_content h3 * {
  color: #333333 !important;
}
#single_page .p-single_content h4 {
  font-size: 1.625em;
  margin: auto;
  padding-left: 0.5em;
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_content h4 {
    width: 90.909%;
    line-height: 2.5em;
    margin: 1.5em auto 0;
    border-left: 0.5em solid #0068b6;
  }
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_content h4 {
    width: 90.667vw;
    line-height: 1.786;
    margin: 4vw auto 0;
    border-left: 1.067vw solid #0068b6;
  }
}
#single_page .p-single_content h4 span {
  color: #333333 !important;
}
#single_page .p-single_content h5 {
  color: #0068b6;
  font-size: 1.5em;
  margin: auto;
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_content h5 {
    width: 90.909%;
    line-height: 2.222em;
    margin: 1.389em auto 0;
  }
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_content h5 {
    width: 90.667vw;
    line-height: 1.429;
    margin: 4vw auto 0;
  }
}
#single_page .p-single_content h5 span {
  color: #0068b6 !important;
}
#single_page .p-single_content p {
  font-size: 1.125rem;
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_content p {
    line-height: 1.778em;
    margin: 0.833em auto;
    padding: 0 2.222em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_content p {
    line-height: 6.4vw;
    margin: 2vw auto 4vw;
    padding: 0 2.667vw;
  }
}
#single_page .p-single_content table {
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_content table {
    max-width: 50em;
    padding: 0.625em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_content table {
    max-width: 85.333vw;
    padding: 1.333vw;
  }
}
#single_page .p-single_content table h4 {
  font-size: unset;
  width: unset;
  margin: unset;
}
#single_page .p-single_content table li {
  font-size: 100% !important;
}
#single_page .p-single_content table th,
#single_page .p-single_content table td {
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_content table th,
  #single_page .p-single_content table td {
    padding: 0.75rem;
  }
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_content table th,
  #single_page .p-single_content table td {
    padding: 2.5vw 2vw;
  }
}
#single_page .p-single_content table th {
  background-color: #f4f4f4;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_content ul li {
    padding: 0 2.667vw;
  }
}
#single_page .p-single_content span[data-mce-style*="font-size: 8px"] {
  font-size: 0.5rem !important;
}
#single_page .p-single_content span[data-mce-style*="font-size: 10px"] {
  font-size: 0.625rem !important;
}
#single_page .p-single_content span[data-mce-style*="font-size: 12px"] {
  font-size: 0.75rem !important;
}
#single_page .p-single_content span[data-mce-style*="font-size: 14px"] {
  font-size: 0.875rem !important;
}
#single_page .p-single_content span[data-mce-style*="font-size: 16px"] {
  font-size: 1rem !important;
}
#single_page .p-single_content span[data-mce-style*="font-size: 20px"] {
  font-size: 1.25rem !important;
}
#single_page .p-single_content span[data-mce-style*="font-size: 24px"] {
  font-size: 1.5rem !important;
}
#single_page .p-single_content span[data-mce-style*="font-size: 28px"] {
  font-size: 1.75rem !important;
}
#single_page .p-single_content span[data-mce-style*="font-size: 32px"] {
  font-size: 2rem !important;
}
#single_page .p-single_content span[data-mce-style*="font-size: 36px"] {
  font-size: 2.25rem !important;
}
#single_page .p-single_content span[data-mce-style*="font-size: 48px"] {
  font-size: 3rem !important;
}
#single_page .p-single_content span[data-mce-style*="font-size: 60px"] {
  font-size: 3.75rem !important;
}
#single_page .p-single_content span[data-mce-style*="font-size: 72px"] {
  font-size: 4.5rem !important;
}
#single_page .p-single_content span[data-mce-style*="font-size: 96px"] {
  font-size: 6rem !important;
}
#single_page .p-single_content span[data-mce-style*="font-size: 8pt"] {
  font-size: 0.667rem !important;
}
#single_page .p-single_content span[data-mce-style*="font-size: 10pt"] {
  font-size: 0.833rem !important;
}
#single_page .p-single_content span[data-mce-style*="font-size: 12pt"] {
  font-size: 1rem !important;
}
#single_page .p-single_content span[data-mce-style*="font-size: 14pt"] {
  font-size: 1.167rem !important;
}
#single_page .p-single_content span[data-mce-style*="font-size: 15pt"] {
  font-size: 1.25rem !important;
}
#single_page .p-single_content span[data-mce-style*="font-size: 18pt"] {
  font-size: 1.5rem !important;
}
#single_page .p-single_content span[data-mce-style*="font-size: 24pt"] {
  font-size: 2rem !important;
}
#single_page .p-single_content span[data-mce-style*="font-size: 36pt"] {
  font-size: 3rem !important;
}

@media only screen and (min-width: 769px) {
  #single_float_pc {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    padding: 0;
  }
  #single_float_pc li {
    list-style: none;
  }
  #single_float_pc li a img {
    max-width: 14em;
    height: auto;
  }
}

@media only screen and (max-width: 768px) {
  #single_float {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0;
    padding: 0;
    padding: 4vw 3.333vw;
    gap: 2.667vw;
    background-color: rgba(0, 0, 0, 0.5607843137);
  }
  #single_float .p-single_float_close {
    position: absolute;
    background-image: url(../img/single/single_close_sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    cursor: pointer;
    z-index: 1000;
    width: 8vw;
    height: 8vw;
    top: -5.333vw;
    right: 3.333vw;
  }
  #single_float li {
    text-align: center;
    list-style: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    width: 29.333vw;
    position: relative;
  }
  #single_float li::before {
    display: none;
  }
  #single_float li:first-child::after {
    content: "";
    position: absolute;
    background-image: url(../img/single/single_btnel_sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 12vw;
    height: 12vw;
    top: -1.333vw;
    right: -1.333vw;
  }
  #single_float li a {
    display: block;
  }
  #single_float li a img {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
}

#single_page .p-single_common {
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_common {
    width: 62.5em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_common {
    width: 92vw;
  }
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_common .p-single_common_box:not(:first-child) {
    margin-top: 2.5em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_common .p-single_common_box:not(:first-child) {
    margin-top: 6.667vw;
  }
}
#single_page .p-single_common .p-single_common_box.p-archive_work {
  margin-bottom: 0;
}
#single_page .p-single_common .p-single_common_box .p-box_tit {
  color: #fff;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: #0068B6;
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_common .p-single_common_box .p-box_tit {
    font-size: 2em;
    line-height: 1.438em;
    height: 1.563em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_common .p-single_common_box .p-box_tit {
    font-size: 4.8vw;
    line-height: 9.067vw;
    height: 9.333vw;
  }
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_common .p-single_common_box .p-contents_list {
    gap: 1.25em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_common .p-single_common_box .p-contents_list {
    gap: 4vw;
    margin-top: 6.667vw;
  }
}
#single_page .p-single_common .p-single_common_box .p-contents_list .p-contents_item {
  background: #F2F2F2;
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_common .p-single_common_box .p-contents_list .p-contents_item {
    width: 30.625em;
    padding-bottom: 1.875em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_common .p-single_common_box .p-contents_list .p-contents_item {
    width: 92vw;
    padding-bottom: 4.667vw;
  }
}
#single_page .p-single_common .p-single_common_box .p-contents_list .p-contents_item a {
  gap: 0;
}
#single_page .p-single_common .p-single_common_box .p-contents_list .p-contents_item a .p-contents_tax_list {
  flex-direction: row;
  justify-content: flex-start;
  margin: 0;
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_common .p-single_common_box .p-contents_list .p-contents_item a .p-contents_tax_list {
    padding: 2.063em 1.25em 0.813em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_common .p-single_common_box .p-contents_list .p-contents_item a .p-contents_tax_list {
    padding: 6vw 3.333vw 2.667vw;
  }
}
#single_page .p-single_common .p-single_common_box .p-contents_list .p-contents_item a .p-contents_tax_list li {
  background: #fff;
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_common .p-single_common_box .p-contents_list .p-contents_item a .p-contents_tax_list li {
    font-size: 1.063em;
    line-height: 1.647em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_common .p-single_common_box .p-contents_list .p-contents_item a .p-contents_tax_list li {
    font-size: 3.733vw;
    line-height: 6.133vw;
  }
}
#single_page .p-single_common .p-single_common_box .p-contents_list .p-contents_item a .p-contents_tax_list li::before {
  content: none;
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_common .p-single_common_box .p-contents_list .p-contents_item a .p-contents_title {
    padding: 0 1.25em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_common .p-single_common_box .p-contents_list .p-contents_item a .p-contents_title {
    padding: 0 3.333vw;
  }
}
#single_page .p-single_common .p-single_common_box .p-box_in {
  background: #F2F2F2;
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_common .p-single_common_box .p-box_in {
    padding: 1.563em 0 1.875em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_common .p-single_common_box .p-box_in {
    padding: 2.667vw 0 4vw;
  }
}
#single_page .p-single_common .p-single_common_box .p-box_in .p-link_list {
  margin-bottom: 0;
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_common .p-single_common_box .p-box_in .p-link_list {
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_common .p-single_common_box .p-box_in .p-link_list {
    margin-left: 11.333vw;
  }
}
#single_page .p-single_common .p-single_common_box .p-box_in .p-link_list li {
  padding-left: 0;
  letter-spacing: 0.02em;
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_common .p-single_common_box .p-box_in .p-link_list li {
    font-size: 1.125em;
    line-height: 1.66;
  }
}
@media only screen and (max-width: 768px) {
  #single_page .p-single_common .p-single_common_box .p-box_in .p-link_list li {
    font-size: 3.6vw;
    line-height: 2;
  }
}
#single_page .p-single_common .p-single_common_box .p-box_in .p-link_list li::before {
  content: none;
}
#single_page .p-single_common .p-single_common_box .p-box_in .p-link_list li a {
  color: #007ACC;
  text-decoration: underline;
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_common .p-single_common_box .p-box_in.p-box01 .p-link_list {
    max-width: 49.375em;
  }
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_common .p-single_common_box .p-box_in.p-box01 .p-link_list li {
    width: 50%;
  }
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_common .p-single_common_box .p-box_in.p-box02 .p-link_list {
    justify-content: space-between;
    max-width: 49.375em;
  }
}
@media only screen and (min-width: 769px) {
  #single_page .p-single_common .p-single_common_box .p-box_in.p-box03 .p-link_list {
    justify-content: space-between;
    gap: 0 10em;
    max-width: 39.375em;
  }
}
#single_page #toc_container {
  font-family: "M PLUS 1", sans-serif;
  all: initial;
  display: block;
  background-color: #f2f2f2;
  border: none;
  border-radius: 0;
  position: relative;
  font-weight: bold;
}
#single_page #toc_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
}
@media only screen and (min-width: 769px) {
  #single_page #toc_container::before {
    border-width: 2.5em 2.5em 0 0;
  }
}
@media only screen and (max-width: 768px) {
  #single_page #toc_container::before {
    border-width: 8vw 8vw 0 0;
  }
}
#single_page #toc_container::before {
  border-color: #ffffff transparent transparent transparent;
}
#single_page #toc_container::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
}
@media only screen and (min-width: 769px) {
  #single_page #toc_container::after {
    border-width: 0 0 2.5em 2.5em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page #toc_container::after {
    border-width: 0 0 8vw 8vw;
  }
}
#single_page #toc_container::after {
  border-color: transparent transparent #ffffff transparent;
}
@media only screen and (min-width: 769px) {
  #single_page #toc_container {
    margin: 3.125em auto;
  }
}
@media only screen and (max-width: 768px) {
  #single_page #toc_container {
    padding: 12vw 5.333vw;
    margin: 6.667vw auto;
  }
}
#single_page #toc_container .toc_title {
  color: #333333;
  position: relative;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 769px) {
  #single_page #toc_container .toc_title {
    gap: 0.8em;
    font-size: 1em;
    padding: 3em 3em 1em 3em;
    margin: unset;
  }
}
@media only screen and (max-width: 768px) {
  #single_page #toc_container .toc_title {
    padding: 0;
    font-size: 3.467vw;
    gap: 2.4vw;
  }
}
#single_page #toc_container .toc_title .toc_toggle {
  display: none;
}
#single_page #toc_container .toc_title::before {
  all: unset;
  content: "";
  display: block;
  background-color: #0068b6;
}
@media only screen and (min-width: 769px) {
  #single_page #toc_container .toc_title::before {
    font-size: 1em;
    width: 1.3em;
    height: 0.3em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page #toc_container .toc_title::before {
    font-size: 2.667vw;
    width: 4vw;
    height: 0.667vw;
  }
}
#single_page #toc_container .toc_list {
  all: unset;
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc-counter;
}
@media only screen and (min-width: 769px) {
  #single_page #toc_container .toc_list {
    padding: 0em 3em 3em 3em;
    font-size: 1em;
  }
}
#single_page #toc_container .toc_list li {
  all: unset;
  display: list-item;
  position: relative;
  list-style: none;
  border-bottom: 1px solid #e0e0e0;
  counter-increment: toc-counter;
  text-wrap: wrap;
}
@media only screen and (min-width: 769px) {
  #single_page #toc_container .toc_list li {
    font-size: 1em;
    padding: 1.1em 0 1.1em 2.5em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page #toc_container .toc_list li {
    font-size: 4vw;
    line-height: 5.333vw;
    padding: 3vw 0 3vw 5vw;
  }
}
#single_page #toc_container .toc_list li::before {
  all: unset;
  content: counter(toc-counter) ".";
  position: absolute;
  color: #333333;
  left: 2%;
}
@media only screen and (min-width: 769px) {
  #single_page #toc_container .toc_list li::before {
    top: 1.35em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page #toc_container .toc_list li::before {
    font-size: 3.467vw;
  }
}
#single_page #toc_container .toc_list li a {
  all: unset;
  display: block;
  color: #333333;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media only screen and (min-width: 769px) {
  #single_page #toc_container .toc_list li a {
    font-size: 1em;
    line-height: 2em;
  }
}
@media only screen and (max-width: 768px) {
  #single_page #toc_container .toc_list li a {
    max-width: 66.667vw;
  }
}
#single_page #toc_container .toc_list li a .toc_number {
  display: none;
}
#single_page .no_bullets .toc_list {
  list-style: none !important;
}
#single_page .no_bullets .toc_list li {
  list-style: none !important;
}

#fixed_page {
  margin-top: unset;
}
@media only screen and (min-width: 769px) {
  #fixed_page {
    margin-bottom: 6.25em;
  }
}
@media only screen and (max-width: 768px) {
  #fixed_page {
    margin-bottom: 13.333vw;
  }
}
#fixed_page .aligncenter {
  margin: 1rem auto !important;
}
#fixed_page .aligncenter {
  clear: both;
}
#fixed_page .l-inner_ctx {
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 769px) {
  #fixed_page .l-inner_ctx {
    max-width: 55em;
  }
}
@media only screen and (max-width: 768px) {
  #fixed_page .l-inner_ctx {
    padding: unset;
    max-width: 90.667vw;
  }
}
#fixed_page a {
  color: #0068b6;
  text-decoration: underline;
}
#fixed_page img {
  display: block;
  height: auto;
  margin: 1rem 0;
  max-width: 100%;
  width: unset !important;
  border: none;
  height: auto;
}
#fixed_page h2 {
  width: 100%;
  font-size: 1.625em;
  background-color: #e5f0f8;
  color: #0068b6;
  position: relative;
  display: block;
}
@media only screen and (min-width: 769px) {
  #fixed_page h2 {
    line-height: 1.5em;
    margin: 1.5em 0;
    padding: 1em;
    border-left: 0.75em solid #0068b6;
  }
}
@media only screen and (max-width: 768px) {
  #fixed_page h2 {
    line-height: 1.389;
    margin: 6.667vw 0;
    padding: 4vw;
    border-left: 2vw solid #0068b6;
  }
}
#fixed_page h3 {
  color: #333333;
  font-size: 1.625em;
  margin: auto;
}
@media only screen and (min-width: 769px) {
  #fixed_page h3 {
    width: 90.909%;
    line-height: 1.5em;
    margin: 2em auto;
    padding: 0 0 0.5em;
    border-bottom: 0.15em solid #0068b6;
  }
}
@media only screen and (max-width: 768px) {
  #fixed_page h3 {
    width: 90.667vw;
    line-height: 1.786;
    margin: 5.333vw auto 4vw;
    padding: 0 0 2vw;
    border-bottom: 0.4vw solid #0068b6;
  }
}
#fixed_page h3 * {
  color: #333333 !important;
}
#fixed_page h4 {
  font-size: 1.625em;
  margin: auto;
  padding-left: 0.5em;
}
@media only screen and (min-width: 769px) {
  #fixed_page h4 {
    width: 90.909%;
    line-height: 2.5em;
    margin: 1.5em auto 0;
    border-left: 0.25em solid #0068b6;
  }
}
@media only screen and (max-width: 768px) {
  #fixed_page h4 {
    width: 90.667vw;
    line-height: 1.786;
    margin: 4vw auto 0;
    border-left: 1.067vw solid #0068b6;
  }
}
#fixed_page h4 span {
  color: #333333 !important;
}
#fixed_page h5 {
  color: #0068b6;
  font-size: 1.5em;
  margin: auto;
}
@media only screen and (min-width: 769px) {
  #fixed_page h5 {
    width: 90.909%;
    line-height: 2.222em;
    margin: 1.389em auto 0;
  }
}
@media only screen and (max-width: 768px) {
  #fixed_page h5 {
    width: 90.667vw;
    line-height: 1.429;
    margin: 4vw auto 0;
  }
}
#fixed_page h5 span {
  color: #0068b6 !important;
}
#fixed_page p {
  font-size: 1.125rem;
}
@media only screen and (min-width: 769px) {
  #fixed_page p {
    line-height: 1.778em;
    margin: 0.833em auto;
    padding: 0 2.222em;
  }
}
@media only screen and (max-width: 768px) {
  #fixed_page p {
    line-height: 6.4vw;
    margin: 2vw auto 4vw;
    padding: 0 2.667vw;
  }
}
#fixed_page p strong {
  color: #333333 !important;
}
#fixed_page table {
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 769px) {
  #fixed_page table {
    max-width: 50em;
  }
}
@media only screen and (max-width: 768px) {
  #fixed_page table {
    max-width: 85.333vw;
  }
}
#fixed_page table li {
  font-size: 100% !important;
}
#fixed_page table th,
#fixed_page table td {
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}
@media only screen and (min-width: 769px) {
  #fixed_page table th,
  #fixed_page table td {
    padding: 0.75rem;
  }
}
@media only screen and (max-width: 768px) {
  #fixed_page table th,
  #fixed_page table td {
    padding: 2.5vw 2vw;
  }
}
#fixed_page table th {
  background-color: #f4f4f4;
  font-weight: bold;
}
#fixed_page ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
}
@media only screen and (min-width: 769px) {
  #fixed_page ul {
    max-width: 50em;
    margin-bottom: 1.875em;
  }
}
@media only screen and (max-width: 768px) {
  #fixed_page ul {
    max-width: 71.333vw;
    margin-bottom: 4vw;
  }
}
#fixed_page ul li {
  position: relative;
}
@media only screen and (min-width: 769px) {
  #fixed_page ul li {
    font-size: 1.125em;
    padding-left: 0.556em;
    line-height: 2.278em;
  }
}
@media only screen and (max-width: 768px) {
  #fixed_page ul li {
    font-size: 3.733vw;
    line-height: 8vw;
    padding: 0 2.667vw;
  }
}
#fixed_page ul li::before {
  content: "●";
  color: #0068b6;
}
@media only screen and (min-width: 769px) {
  #fixed_page ul li::before {
    font-size: 0.875em;
  }
}
@media only screen and (max-width: 768px) {
  #fixed_page ul li::before {
    font-size: 2.4vw;
    margin-right: 1.333vw;
    top: -0.5vw;
  }
}
#fixed_page ol {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
}
@media only screen and (min-width: 769px) {
  #fixed_page ol {
    max-width: 50em;
    margin-bottom: 1.875em;
    padding-left: 0.7em;
  }
}
@media only screen and (max-width: 768px) {
  #fixed_page ol {
    max-width: 71.333vw;
    margin-bottom: 4vw;
  }
}
#fixed_page ol li {
  list-style: decimal;
  list-style-position: inside;
}
@media only screen and (min-width: 769px) {
  #fixed_page ol li {
    font-size: 1.125em;
    line-height: 2.278em;
  }
}
@media only screen and (max-width: 768px) {
  #fixed_page ol li {
    font-size: 3.733vw;
    line-height: 8vw;
  }
}
#fixed_page span[data-mce-style*="font-size: 8px"] {
  font-size: 0.5rem !important;
}
#fixed_page span[data-mce-style*="font-size: 10px"] {
  font-size: 0.625rem !important;
}
#fixed_page span[data-mce-style*="font-size: 12px"] {
  font-size: 0.75rem !important;
}
#fixed_page span[data-mce-style*="font-size: 14px"] {
  font-size: 0.875rem !important;
}
#fixed_page span[data-mce-style*="font-size: 16px"] {
  font-size: 1rem !important;
}
#fixed_page span[data-mce-style*="font-size: 20px"] {
  font-size: 1.25rem !important;
}
#fixed_page span[data-mce-style*="font-size: 24px"] {
  font-size: 1.5rem !important;
}
#fixed_page span[data-mce-style*="font-size: 28px"] {
  font-size: 1.75rem !important;
}
#fixed_page span[data-mce-style*="font-size: 32px"] {
  font-size: 2rem !important;
}
#fixed_page span[data-mce-style*="font-size: 36px"] {
  font-size: 2.25rem !important;
}
#fixed_page span[data-mce-style*="font-size: 48px"] {
  font-size: 3rem !important;
}
#fixed_page span[data-mce-style*="font-size: 60px"] {
  font-size: 3.75rem !important;
}
#fixed_page span[data-mce-style*="font-size: 72px"] {
  font-size: 4.5rem !important;
}
#fixed_page span[data-mce-style*="font-size: 96px"] {
  font-size: 6rem !important;
}
#fixed_page span[data-mce-style*="font-size: 8pt"] {
  font-size: 0.667rem !important;
}
#fixed_page span[data-mce-style*="font-size: 10pt"] {
  font-size: 0.833rem !important;
}
#fixed_page span[data-mce-style*="font-size: 12pt"] {
  font-size: 1rem !important;
}
#fixed_page span[data-mce-style*="font-size: 14pt"] {
  font-size: 1.167rem !important;
}
#fixed_page span[data-mce-style*="font-size: 15pt"] {
  font-size: 1.25rem !important;
}
#fixed_page span[data-mce-style*="font-size: 18pt"] {
  font-size: 1.5rem !important;
}
#fixed_page span[data-mce-style*="font-size: 24pt"] {
  font-size: 2rem !important;
}
#fixed_page span[data-mce-style*="font-size: 36pt"] {
  font-size: 3rem !important;
}
#fixed_page .file_form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  #fixed_page .file_form {
    width: 48.125em;
    gap: 1.25em;
  }
}
@media only screen and (max-width: 768px) {
  #fixed_page .file_form {
    flex-direction: column;
    width: 85.333vw;
    gap: 6.667vw;
  }
}
#fixed_page .file_form .form_group {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  #fixed_page .file_form .form_group {
    flex-direction: column;
  }
}
#fixed_page .file_form .form_group label {
  display: flex;
  justify-content: space-between;
  align-self: start;
  color: #333333;
}
@media only screen and (min-width: 769px) {
  #fixed_page .file_form .form_group label {
    font-size: 1.125em;
    width: 11.111em;
    margin-top: 0.667em;
  }
}
@media only screen and (max-width: 768px) {
  #fixed_page .file_form .form_group label {
    font-size: 3.733vw;
    width: 85.333vw;
    margin-bottom: 2.667vw;
  }
}
#fixed_page .file_form .form_group label .required {
  background: #0068b6;
  color: #fff;
  display: inline-block;
}
@media only screen and (min-width: 769px) {
  #fixed_page .file_form .form_group label .required {
    font-size: 0.813em;
    padding: 0.231em 0.615em;
  }
}
@media only screen and (max-width: 768px) {
  #fixed_page .file_form .form_group label .required {
    font-size: 2.667vw;
    padding: 0.933vw 1.333vw;
  }
}
#fixed_page .file_form .form_group .input_wrapper {
  display: table-cell;
  vertical-align: middle;
}
@media only screen and (min-width: 769px) {
  #fixed_page .file_form .form_group .input_wrapper {
    width: 34.375em;
  }
}
@media only screen and (max-width: 768px) {
  #fixed_page .file_form .form_group .input_wrapper {
    width: 85.333vw;
  }
}
#fixed_page .file_form .form_group input[type=text],
#fixed_page .file_form .form_group input[type=tel],
#fixed_page .file_form .form_group input[type=email],
#fixed_page .file_form .form_group select,
#fixed_page .file_form .form_group textarea {
  width: 100%;
  background: #f2f2f2;
  font-family: inherit;
  box-sizing: border-box;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
@media only screen and (min-width: 769px) {
  #fixed_page .file_form .form_group input[type=text],
  #fixed_page .file_form .form_group input[type=tel],
  #fixed_page .file_form .form_group input[type=email],
  #fixed_page .file_form .form_group select,
  #fixed_page .file_form .form_group textarea {
    font-size: 1.063em;
    padding: 0.706em 0.941em;
  }
}
@media only screen and (max-width: 768px) {
  #fixed_page .file_form .form_group input[type=text],
  #fixed_page .file_form .form_group input[type=tel],
  #fixed_page .file_form .form_group input[type=email],
  #fixed_page .file_form .form_group select,
  #fixed_page .file_form .form_group textarea {
    padding: 4vw 3.6vw;
    font-size: 3.467vw;
  }
}
#fixed_page .file_form .form_group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
@media only screen and (min-width: 769px) {
  #fixed_page .file_form .form_group select {
    background-position: right 0.75em center;
  }
}
@media only screen and (max-width: 768px) {
  #fixed_page .file_form .form_group select {
    background-position: right 2.667vw center;
  }
}
#fixed_page .file_form .form_group textarea {
  resize: vertical;
  line-height: 1.5;
  font-family: inherit;
}
@media only screen and (min-width: 769px) {
  #fixed_page .file_form .form_group textarea {
    min-height: 8.125em;
  }
}
@media only screen and (max-width: 768px) {
  #fixed_page .file_form .form_group textarea {
    min-height: 40vw;
  }
}
#fixed_page .file_form .form_submit {
  text-align: center;
}
@media only screen and (min-width: 769px) {
  #fixed_page .file_form .form_submit {
    margin-top: 1.625em;
  }
}
@media only screen and (max-width: 768px) {
  #fixed_page .file_form .form_submit {
    margin-top: 1.333vw;
  }
}
#fixed_page .file_form .form_submit .submit_btn {
  border: none;
  border-radius: 0;
  cursor: pointer;
  background: url("../img/download/form_submit.png") no-repeat center;
  background-size: contain;
  color: transparent;
}
@media only screen and (min-width: 769px) {
  #fixed_page .file_form .form_submit .submit_btn {
    width: 17.5em;
    height: 4.375em;
  }
}
@media only screen and (max-width: 768px) {
  #fixed_page .file_form .form_submit .submit_btn {
    width: 61.2vw;
    height: 15.333vw;
  }
}
#fixed_page .contact_form .form_group.error input,
#fixed_page .contact_form .form_group.error select,
#fixed_page .contact_form .form_group.error textarea {
  background-color: #fdf2f2;
}
#fixed_page .contact_form .form_group.success input,
#fixed_page .contact_form .form_group.success select,
#fixed_page .contact_form .form_group.success textarea {
  background-color: #f2fdf5;
}
#fixed_page .contact_form .error_message {
  color: #e74c3c;
  font-size: 0.875em;
  margin-top: 0.313em;
  display: none;
}
@media only screen and (max-width: 768px) {
  #fixed_page .contact_form .error_message {
    font-size: 1.6vw;
  }
}
#fixed_page .contact_form .error_message.show {
  display: block;
}

@media only screen and (min-width: 769px) {
  .category-contents #fixed_page h2 {
    margin: 0 0 2.5em;
  }
}
@media only screen and (max-width: 768px) {
  .category-contents #fixed_page h2 {
    margin: 6.667vw 0;
  }
}

#company {
  color: #333;
}
#company h2.line {
  color: #0068B6;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 auto;
  position: relative;
}
@media only screen and (min-width: 769px) {
  #company h2.line {
    font-size: 1.75em;
    width: 35.714em;
    margin-bottom: 1.607em;
  }
}
@media only screen and (max-width: 768px) {
  #company h2.line {
    font-size: 5.333vw;
    width: 92vw;
    margin-bottom: 6vw;
  }
}
#company h2.line strong {
  display: inline-block;
  background: #fff;
  position: relative;
  z-index: 99;
}
@media only screen and (min-width: 769px) {
  #company h2.line strong {
    padding: 0 1.25em;
  }
}
@media only screen and (max-width: 768px) {
  #company h2.line strong {
    padding: 0 2vw;
  }
}
#company h2.line::before, #company h2.line::after {
  content: "";
  display: block;
  width: 50%;
  background: #0068B6;
  position: absolute;
  top: 50%;
  z-index: 9;
}
@media only screen and (min-width: 769px) {
  #company h2.line::before, #company h2.line::after {
    height: 0.107em;
  }
}
@media only screen and (max-width: 768px) {
  #company h2.line::before, #company h2.line::after {
    height: 0.4vw;
  }
}
#company h2.line::before {
  left: 0;
}
#company h2.line::after {
  right: 0;
}
@media only screen and (min-width: 769px) {
  #company .about {
    margin: 0.938em 0 4.063em;
  }
}
@media only screen and (max-width: 768px) {
  #company .about {
    margin: 9.333vw 0 11.333vw;
  }
}
#company .about .about_text {
  line-height: 1.66;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  #company .about .about_text {
    font-size: 1.125em;
    letter-spacing: 0.08em;
    width: 55.556em;
  }
}
@media only screen and (max-width: 768px) {
  #company .about .about_text {
    font-size: 3.2vw;
    width: 92vw;
  }
}
#company .about .about_text span {
  color: #0068B6;
}
@media only screen and (min-width: 769px) {
  #company .about .about_list {
    margin: 3.438em auto 2.813em;
  }
}
@media only screen and (max-width: 768px) {
  #company .about .about_list {
    margin: 8.667vw auto 6.667vw;
  }
}
#company .about .about_list .about_box {
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  #company .about .about_list .about_box {
    width: 60em;
    box-shadow: 0 0 0.313em rgba(0, 0, 0, 0.2);
  }
}
@media only screen and (max-width: 768px) {
  #company .about .about_list .about_box {
    width: 92vw;
    box-shadow: 0 0 0.667vw rgba(0, 0, 0, 0.2);
  }
}
@media only screen and (min-width: 769px) {
  #company .about .about_list .about_box:not(:first-child) {
    margin-top: 1.875em;
  }
}
@media only screen and (max-width: 768px) {
  #company .about .about_list .about_box:not(:first-child) {
    margin-top: 5.333vw;
  }
}
#company .about .about_list .about_box .about_box_tit {
  color: #fff;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: #0068B6;
  position: relative;
}
@media only screen and (min-width: 769px) {
  #company .about .about_list .about_box .about_box_tit {
    font-size: 1.75em;
    line-height: 2.071em;
    height: 2.143em;
  }
}
@media only screen and (max-width: 768px) {
  #company .about .about_list .about_box .about_box_tit {
    font-size: 4.4vw;
    line-height: 10vw;
    height: 10.667vw;
  }
}
#company .about .about_list .about_box .about_box_tit::before {
  content: "";
  display: block;
  background: url(../img/company/company_check.svg) no-repeat top left/100%;
  position: absolute;
}
@media only screen and (min-width: 769px) {
  #company .about .about_list .about_box .about_box_tit::before {
    width: 1.429em;
    height: 1.429em;
    top: -0.357em;
    left: -0.357em;
  }
}
@media only screen and (max-width: 768px) {
  #company .about .about_list .about_box .about_box_tit::before {
    width: 6.667vw;
    height: 6.667vw;
    top: -1.333vw;
    left: 0;
  }
}
#company .about .about_list .about_box .about_box_tit .tit_img {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
@media only screen and (min-width: 769px) {
  #company .about .about_list .about_box .about_box_tit .tit_img {
    width: 6.964em;
    right: 0;
  }
}
@media only screen and (max-width: 768px) {
  #company .about .about_list .about_box .about_box_tit .tit_img {
    width: 26vw;
    right: 0.667vw;
  }
}
#company .about .about_list .about_box .about_box_inner {
  background: #E5F0F8;
}
@media only screen and (min-width: 769px) {
  #company .about .about_list .about_box .about_box_inner {
    padding: 1.25em 0 1.563em;
  }
}
@media only screen and (max-width: 768px) {
  #company .about .about_list .about_box .about_box_inner {
    padding: 4vw 3.733vw;
  }
}
#company .about .about_list .about_box .about_box_inner .about_box_text {
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media only screen and (min-width: 769px) {
  #company .about .about_list .about_box .about_box_inner .about_box_text {
    font-size: 1.25em;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 768px) {
  #company .about .about_list .about_box .about_box_inner .about_box_text {
    font-size: 3.6vw;
    line-height: 1.48;
  }
}
#company .media {
  background: #E5F0F8;
}
@media only screen and (min-width: 769px) {
  #company .media {
    padding: 2.5em 0 3.125em;
  }
}
@media only screen and (max-width: 768px) {
  #company .media {
    padding: 8vw 0 9.333vw;
  }
}
#company .media .media_top {
  margin: 0 auto;
  border-bottom: 1px solid #0068B6;
  position: relative;
}
@media only screen and (min-width: 769px) {
  #company .media .media_top {
    width: 2.688em;
    padding-bottom: 0.625em;
    margin-bottom: 1.25em;
  }
}
@media only screen and (max-width: 768px) {
  #company .media .media_top {
    width: 9.6vw;
    margin-bottom: 5.333vw;
  }
}
#company .media h2 {
  color: #0068B6;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media only screen and (min-width: 769px) {
  #company .media h2 {
    font-size: 1.75em;
  }
}
@media only screen and (max-width: 768px) {
  #company .media h2 {
    font-size: 5.333vw;
  }
}
#company .media .media_text {
  text-align: center;
  letter-spacing: 0.08em;
}
@media only screen and (min-width: 769px) {
  #company .media .media_text {
    font-size: 1.125em;
    margin: 1.667em 0 2.222em;
  }
}
@media only screen and (max-width: 768px) {
  #company .media .media_text {
    font-size: 3.2vw;
    line-height: 1.66;
    margin: 4vw 0 5.333vw;
  }
}
#company .media .media_box {
  margin: 0 auto;
  background: #fff;
  box-sizing: border-box;
}
@media only screen and (min-width: 769px) {
  #company .media .media_box {
    width: 62.5em;
    padding: 1.875em 3.75em 1.75em;
    border-radius: 1.25em;
  }
}
@media only screen and (max-width: 768px) {
  #company .media .media_box {
    width: 92vw;
    padding: 4.667vw 6vw;
    border-radius: 2.667vw;
  }
}
#company .media .media_box .media_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (min-width: 769px) {
  #company .media .media_box .media_list {
    gap: 1.25em 1.063em;
  }
}
@media only screen and (max-width: 768px) {
  #company .media .media_box .media_list {
    gap: 4vw 2.267vw;
  }
}
@media only screen and (min-width: 769px) {
  #company .media .media_box .media_list li {
    width: 7.813em;
  }
}
@media only screen and (max-width: 768px) {
  #company .media .media_box .media_list li {
    width: 16.667vw;
  }
}
#company .media .media_box .etc {
  margin: 0 0 0 auto;
}
@media only screen and (min-width: 769px) {
  #company .media .media_box .etc {
    width: 2.688em;
    margin-top: 0.625em;
  }
}
@media only screen and (max-width: 768px) {
  #company .media .media_box .etc {
    width: 10.133vw;
    margin-top: 2.667vw;
  }
}
@media only screen and (min-width: 769px) {
  #company .profile {
    background: url(../img/company/pc_company_prof_bg.jpg) no-repeat top center/125em auto;
    padding: 6.563em 0 5.625em;
  }
}
@media only screen and (max-width: 768px) {
  #company .profile {
    background: url(../img/company/sp_company_prof_bg.jpg) no-repeat top center/100%;
    padding: 10.667vw 0 12.667vw;
  }
}
#company .profile .profile_in {
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  #company .profile .profile_in {
    display: flex;
    justify-content: space-between;
    width: 62.5em;
    margin-bottom: 3.125em;
  }
}
@media only screen and (max-width: 768px) {
  #company .profile .profile_in .president {
    width: 53.333vw;
    margin: 0 auto 7.333vw;
  }
}
@media only screen and (min-width: 769px) {
  #company .profile .profile_in .president .img {
    width: 16.25em;
    margin-bottom: -1.375em;
  }
}
@media only screen and (max-width: 768px) {
  #company .profile .profile_in .president .img {
    width: 53.333vw;
    margin-bottom: -4.667vw;
  }
}
#company .profile .profile_in .president .president_box {
  background: #0068B6;
}
@media only screen and (min-width: 769px) {
  #company .profile .profile_in .president .president_box {
    border-radius: 0.625em;
    padding: 1.75em 0 1.25em;
  }
}
@media only screen and (max-width: 768px) {
  #company .profile .profile_in .president .president_box {
    border-radius: 1.333vw;
    padding: 6vw 0 4.667vw;
  }
}
#company .profile .profile_in .president .president_box p {
  color: #fff;
  text-align: center;
}
#company .profile .profile_in .president .president_box .text01 {
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 769px) {
  #company .profile .profile_in .president .president_box .text01 {
    font-size: 1em;
    margin-bottom: 0.938em;
  }
}
@media only screen and (max-width: 768px) {
  #company .profile .profile_in .president .president_box .text01 {
    font-size: 3.333vw;
    margin-bottom: 2.4vw;
  }
}
#company .profile .profile_in .president .president_box .text02 {
  letter-spacing: 0.08em;
}
@media only screen and (min-width: 769px) {
  #company .profile .profile_in .president .president_box .text02 {
    font-size: 1em;
  }
}
@media only screen and (max-width: 768px) {
  #company .profile .profile_in .president .president_box .text02 {
    font-size: 3.2vw;
  }
}
#company .profile .profile_in .president .president_box .text02 strong {
  font-weight: 500;
}
@media only screen and (min-width: 769px) {
  #company .profile .profile_in .president .president_box .text02 strong {
    font-size: 1.25em;
    margin-left: 0.35em;
  }
}
@media only screen and (max-width: 768px) {
  #company .profile .profile_in .president .president_box .text02 strong {
    font-size: 4vw;
    margin-left: 1.6vw;
  }
}
@media only screen and (min-width: 769px) {
  #company .profile .profile_in .profile_text {
    width: 38.889em;
    margin: 0;
  }
}
#company .profile .profile_text {
  line-height: 1.66;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  #company .profile .profile_text {
    font-size: 1.125em;
    letter-spacing: 0.04em;
    width: 55.556em;
  }
}
@media only screen and (max-width: 768px) {
  #company .profile .profile_text {
    font-size: 3.2vw;
    width: 92vw;
  }
}
#company .company_info {
  background: #0068B6;
}
@media only screen and (min-width: 769px) {
  #company .company_info {
    padding: 3.75em 0 5em;
  }
}
@media only screen and (max-width: 768px) {
  #company .company_info {
    padding: 12.667vw 0 13.333vw;
  }
}
#company .company_info h2 {
  color: #fff;
  text-align: center;
  letter-spacing: 0.08em;
}
@media only screen and (min-width: 769px) {
  #company .company_info h2 {
    font-size: 1.75em;
    margin-bottom: 1.071em;
  }
}
@media only screen and (max-width: 768px) {
  #company .company_info h2 {
    font-size: 5.333vw;
    margin-bottom: 4vw;
  }
}
#company .company_info .info_box {
  background: #fff;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  #company .company_info .info_box {
    width: 62.5em;
    padding: 2.188em 0 2.813em;
    border-radius: 1.25em;
  }
}
@media only screen and (max-width: 768px) {
  #company .company_info .info_box {
    width: 92vw;
    padding: 4vw 0;
    border-radius: 2.667vw;
  }
}
#company .company_info .info_box .info_table {
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  #company .company_info .info_box .info_table {
    width: 50em;
  }
}
@media only screen and (max-width: 768px) {
  #company .company_info .info_box .info_table {
    width: 86.667vw;
  }
}
#company .company_info .info_box .info_table tr:not(:first-of-type) {
  border-top: 1px solid #E6E6E6;
}
#company .company_info .info_box .info_table tr th,
#company .company_info .info_box .info_table tr td {
  text-align: left;
  font-weight: 400;
  vertical-align: top;
  box-sizing: border-box;
}
@media only screen and (min-width: 769px) {
  #company .company_info .info_box .info_table tr th,
  #company .company_info .info_box .info_table tr td {
    font-size: 1.125em;
    line-height: 1.66;
    padding: 0.556em 0 0.667em;
  }
}
@media only screen and (max-width: 768px) {
  #company .company_info .info_box .info_table tr th,
  #company .company_info .info_box .info_table tr td {
    font-size: 3.2vw;
    line-height: 1.25;
    padding: 3.2vw 0 2.8vw;
  }
}
#company .company_info .info_box .info_table tr th a,
#company .company_info .info_box .info_table tr td a {
  color: #0068B6;
  text-decoration: underline;
}
#company .company_info .info_box .info_table tr th {
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 769px) {
  #company .company_info .info_box .info_table tr th {
    width: 15.625em;
    padding-left: 1.875em;
  }
}
@media only screen and (max-width: 768px) {
  #company .company_info .info_box .info_table tr th {
    width: 27.333vw;
    padding-left: 3.333vw;
  }
}
@media only screen and (min-width: 769px) {
  #company .company_info .info_box .info_table tr td {
    letter-spacing: 0.04em;
  }
}
@media only screen and (min-width: 769px) {
  .p-download .p-service {
    background: url("../img/download/service_bg.jpg") no-repeat 50% 0%;
    background-size: 125em auto;
    height: 44.375em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .p-service {
    background: url("../img/download/service_bg_sp.jpg") no-repeat 50% 0;
    background-size: 100vw auto;
    height: 192vw;
  }
}
.p-download .p-service .l-inner_ctx {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-download .p-service_title_txt {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.5);
}
@media only screen and (min-width: 769px) {
  .p-download .p-service_title_txt {
    width: 55em;
    padding: 2.5em 0;
    gap: 0.938em;
    margin-bottom: 2.5em;
    margin-top: 3.125em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .p-service_title_txt {
    text-align: center;
    width: 85.333vw;
    padding: 5.333vw 0;
    gap: 0.667vw;
    margin-bottom: 8vw;
    margin-top: 9.333vw;
  }
}
.p-download .p-service_title_txt:before, .p-download .p-service_title_txt:after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (min-width: 769px) {
  .p-download .p-service_title_txt:before, .p-download .p-service_title_txt:after {
    background-image: url(../img/download/title_el.png);
    background-size: 55.375em 1.438em;
    width: 55.375em;
    height: 1.438em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .p-service_title_txt:before, .p-download .p-service_title_txt:after {
    background-image: url(../img/download/title_el_sp.png);
    background-size: 86.133vw 3.733vw;
    width: 86.133vw;
    height: 3.733vw;
  }
}
.p-download .p-service_title_txt:before {
  top: 0;
}
@media only screen and (min-width: 769px) {
  .p-download .p-service_title_txt:before {
    left: -0.188em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .p-service_title_txt:before {
    left: -0.4vw;
  }
}
.p-download .p-service_title_txt:after {
  bottom: 0;
  transform: scaleX(-1) scaleY(-1);
}
@media only screen and (min-width: 769px) {
  .p-download .p-service_title_txt:after {
    right: -0.188em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .p-service_title_txt:after {
    right: -0.4vw;
  }
}
.p-download .p-service_title_txt h1 {
  color: #333333;
  font-weight: 500;
}
@media only screen and (min-width: 769px) {
  .p-download .p-service_title_txt h1 {
    font-size: 1.875em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .p-service_title_txt h1 {
    font-size: 4.8vw;
    line-height: 1.556em;
  }
}
.p-download .p-service_title_txt h2 {
  color: #333333;
  font-weight: 500;
}
@media only screen and (min-width: 769px) {
  .p-download .p-service_title_txt h2 {
    font-size: 2.25em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .p-service_title_txt h2 {
    font-size: 5.867vw;
    line-height: 1.364em;
  }
}
.p-download .p-service_txt {
  color: #333333;
}
@media only screen and (min-width: 769px) {
  .p-download .p-service_txt {
    font-size: 1.125em;
    line-height: 1.778em;
    margin-bottom: 4.125em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .p-service_txt {
    font-size: 3.467vw;
    width: 77.333vw;
    line-height: 6.4vw;
    margin-bottom: 8vw;
  }
}
.p-download .p-service_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
}
@media only screen and (min-width: 769px) {
  .p-download .p-service_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875em 2.813em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .p-service_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 4.267vw;
  }
}
.p-download .p-service_list li {
  color: #333333;
  background: #fff;
  position: relative;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 769px) {
  .p-download .p-service_list li {
    padding-left: 3.438em;
    border-radius: 0.625em;
    width: 29.375em;
    height: 6.25em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .p-service_list li {
    width: 84vw;
    height: 17.067vw;
    padding-left: 8.8vw;
    border-radius: 1.333vw;
  }
}
.p-download .p-service_list li p {
  font-weight: 500;
}
@media only screen and (min-width: 769px) {
  .p-download .p-service_list li p {
    font-size: 1.313em;
    line-height: 1.619em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .p-service_list li p {
    font-size: 3.467vw;
    line-height: 5.867vw;
    letter-spacing: 0.2vw;
  }
}
.p-download .p-service_list li p span {
  color: #0068b6;
}
.p-download .p-service_list li p:before {
  content: "";
  background: url("../img/top/quality_check.png") no-repeat 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
}
@media only screen and (min-width: 769px) {
  .p-download .p-service_list li p:before {
    width: 2.381em;
    height: 2.381em;
    top: -0.476em;
    left: -1.19em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .p-service_list li p:before {
    top: -1.333vw;
    left: -4vw;
    width: 8vw;
    height: 8vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-download .p-file {
    background: url("../img/download/file_bg.jpg") no-repeat 50% 0%;
    background-size: 125em 58.813em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .p-file {
    background: url("../img/download/file_bg_sp.jpg") no-repeat 50% 0;
    background-size: 100vw 129.733vw;
  }
}
.p-download .p-file_title_txt {
  color: #fff;
}
@media only screen and (min-width: 769px) {
  .p-download .p-file_title_txt {
    padding-top: 3.75em;
    padding-left: 6.875em;
    margin-bottom: 9.5em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .p-file_title_txt {
    padding-top: 9.2vw;
    padding-left: 8vw;
    margin-bottom: 59.733vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-download .p-file_title_txt img {
    width: 18.75em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .p-file_title_txt img {
    width: 61.6vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-download .p-file_title_txt h2 {
    font-size: 1.875em;
    line-height: 2.367em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .p-file_title_txt h2 {
    font-size: 5.867vw;
    line-height: 12vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-download .p-file_title_txt h3 {
    font-size: 3em;
    line-height: 1.208em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .p-file_title_txt h3 {
    font-size: 9.867vw;
    line-height: 11.2vw;
  }
}
.p-download .p-file_title_txt h4 {
  font-weight: normal;
}
@media only screen and (min-width: 769px) {
  .p-download .p-file_title_txt h4 {
    font-size: 1.125em;
    line-height: 1.556em;
    margin-top: 1.667em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .p-file_title_txt h4 {
    font-size: 3.467vw;
    line-height: 5.867vw;
    margin-top: 4vw;
  }
}
.p-download .p-file_title_txt h5 {
  font-weight: normal;
}
@media only screen and (min-width: 769px) {
  .p-download .p-file_title_txt h5 {
    font-size: 0.875em;
    line-height: 1.714em;
    margin-top: 1em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .p-file_title_txt h5 {
    font-size: 2.4vw;
    line-height: 5.067vw;
    margin-top: 0.533vw;
  }
}
.p-download .file_form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  .p-download .file_form {
    width: 48.125em;
    gap: 1.25em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .file_form {
    flex-direction: column;
    width: 85.333vw;
    gap: 6.667vw;
  }
}
.p-download .file_form .form_group {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .p-download .file_form .form_group {
    flex-direction: column;
  }
}
.p-download .file_form .form_group label {
  display: flex;
  justify-content: space-between;
  align-self: start;
  color: #333333;
}
@media only screen and (min-width: 769px) {
  .p-download .file_form .form_group label {
    font-size: 1.125em;
    width: 11.111em;
    margin-top: 0.667em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .file_form .form_group label {
    font-size: 3.733vw;
    width: 85.333vw;
    margin-bottom: 2.667vw;
  }
}
.p-download .file_form .form_group label .required {
  background: #0068b6;
  color: #fff;
  display: inline-block;
}
@media only screen and (min-width: 769px) {
  .p-download .file_form .form_group label .required {
    font-size: 0.813em;
    padding: 0.231em 0.615em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .file_form .form_group label .required {
    font-size: 2.667vw;
    padding: 0.933vw 1.333vw;
  }
}
.p-download .file_form .form_group .input_wrapper {
  display: table-cell;
  vertical-align: middle;
}
@media only screen and (min-width: 769px) {
  .p-download .file_form .form_group .input_wrapper {
    width: 34.375em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .file_form .form_group .input_wrapper {
    width: 85.333vw;
  }
}
.p-download .file_form .form_group input[type=text],
.p-download .file_form .form_group input[type=tel],
.p-download .file_form .form_group input[type=email],
.p-download .file_form .form_group select,
.p-download .file_form .form_group textarea {
  width: 100%;
  background: #f2f2f2;
  font-family: inherit;
  box-sizing: border-box;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
@media only screen and (min-width: 769px) {
  .p-download .file_form .form_group input[type=text],
  .p-download .file_form .form_group input[type=tel],
  .p-download .file_form .form_group input[type=email],
  .p-download .file_form .form_group select,
  .p-download .file_form .form_group textarea {
    font-size: 1.063em;
    padding: 0.706em 0.941em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .file_form .form_group input[type=text],
  .p-download .file_form .form_group input[type=tel],
  .p-download .file_form .form_group input[type=email],
  .p-download .file_form .form_group select,
  .p-download .file_form .form_group textarea {
    padding: 4vw 3.6vw;
    font-size: 3.467vw;
  }
}
.p-download .file_form .form_group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
@media only screen and (min-width: 769px) {
  .p-download .file_form .form_group select {
    background-position: right 0.75em center;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .file_form .form_group select {
    background-position: right 2.667vw center;
  }
}
.p-download .file_form .form_group textarea {
  resize: vertical;
  line-height: 1.5;
  font-family: inherit;
}
@media only screen and (min-width: 769px) {
  .p-download .file_form .form_group textarea {
    min-height: 8.125em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .file_form .form_group textarea {
    min-height: 40vw;
  }
}
.p-download .file_form .form_submit {
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .p-download .file_form .form_submit {
    margin-top: 1.625em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .file_form .form_submit {
    margin-top: 1.333vw;
  }
}
.p-download .file_form .form_submit .submit_btn {
  border: none;
  border-radius: 0;
  cursor: pointer;
  background: url("../img/download/form_submit.png") no-repeat center;
  background-size: contain;
  color: transparent;
}
@media only screen and (min-width: 769px) {
  .p-download .file_form .form_submit .submit_btn {
    width: 17.5em;
    height: 4.375em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download .file_form .form_submit .submit_btn {
    width: 61.2vw;
    height: 15.333vw;
  }
}
.p-download .contact_form .form_group.error input,
.p-download .contact_form .form_group.error select,
.p-download .contact_form .form_group.error textarea {
  background-color: #fdf2f2;
}
.p-download .contact_form .form_group.success input,
.p-download .contact_form .form_group.success select,
.p-download .contact_form .form_group.success textarea {
  background-color: #f2fdf5;
}
.p-download .contact_form .error_message {
  color: #e74c3c;
  font-size: 0.875em;
  margin-top: 0.313em;
  display: none;
}
@media only screen and (max-width: 768px) {
  .p-download .contact_form .error_message {
    font-size: 1.6vw;
  }
}
.p-download .contact_form .error_message.show {
  display: block;
}
.p-download {
  margin-top: unset !important;
}
@media only screen and (min-width: 769px) {
  .p-download {
    padding-bottom: 8.125em;
  }
}
@media only screen and (max-width: 768px) {
  .p-download {
    padding-bottom: 18.667vw;
  }
}

.p-archive_page .p-contents_list {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-contents_list {
    gap: 3.125em 1.25em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-contents_list {
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 13.333vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-contents_item {
    width: 21.875em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-contents_item {
    width: 85.333vw;
  }
}
.p-archive_page .p-contents_item a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #333333;
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-contents_item a {
    gap: 0.625em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-contents_item a {
    gap: 2.667vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-contents_img {
    width: 21.875em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-contents_img {
    width: 85.333vw;
  }
}
.p-archive_page .p-contents_img img {
  width: 100%;
  height: auto;
}
.p-archive_page .p-contents_txt p {
  color: #333333;
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-contents_txt p {
    font-size: 1.063em;
    line-height: 1.941em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-contents_txt p {
    font-size: 4vw;
    line-height: 6.4vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-pagination {
    margin-top: 4.688em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-pagination {
    margin-top: 14.667vw;
  }
}
.p-archive_page .p-pagination__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-pagination__wrap {
    gap: 1.25em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-pagination__wrap {
    gap: 2vw;
  }
}
.p-archive_page .p-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 500;
  color: #000000;
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-pagination .page-numbers {
    font-size: 1.25em;
    min-width: 2em;
    height: 2em;
    gap: 1em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-pagination .page-numbers {
    min-width: 6.667vw;
    height: 6.667vw;
    font-size: 3.6vw;
    padding: 0 2vw;
  }
}
.p-archive_page .p-pagination .page-numbers.current {
  background: #0068b6;
  color: #ffffff;
  cursor: default;
}
.p-archive_page .p-pagination .page-numbers.p-first, .p-archive_page .p-pagination .page-numbers.prev, .p-archive_page .p-pagination .page-numbers.p-next, .p-archive_page .p-pagination .page-numbers.p-last {
  background: none;
  border: none;
  min-width: auto;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-pagination .page-numbers.p-first, .p-archive_page .p-pagination .page-numbers.prev, .p-archive_page .p-pagination .page-numbers.p-next, .p-archive_page .p-pagination .page-numbers.p-last {
    gap: 0.5em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-pagination .page-numbers.p-first {
    transform: rotate(180deg);
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  .p-archive_page .p-pagination .page-numbers.p-first img {
    width: 2.667vw;
  }
}
.p-archive_page .p-pagination .page-numbers.p-first::before {
  content: "";
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  transform: rotate(180deg);
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-pagination .page-numbers.p-first::before {
    background-size: contain;
    width: 1em;
    height: 0.875em;
    background: url("../img/archive/pagination_arrow02.png") no-repeat center;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-pagination .page-numbers.prev {
    transform: rotate(180deg);
  }
  .p-archive_page .p-pagination .page-numbers.prev img {
    width: 1.467vw;
  }
}
.p-archive_page .p-pagination .page-numbers.prev::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  transform: rotate(180deg);
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-pagination .page-numbers.prev::before {
    background-size: contain;
    background: url("../img/archive/pagination_arrow.png") no-repeat center;
    width: 0.563em;
    height: 0.875em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-pagination .page-numbers.p-next img {
    width: 1.467vw;
  }
}
.p-archive_page .p-pagination .page-numbers.p-next::after {
  content: "";
  display: inline-block;
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-pagination .page-numbers.p-next::after {
    background-size: contain;
    width: 0.563em;
    height: 0.875em;
    background: url("../img/archive/pagination_arrow.png") no-repeat center;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-pagination .page-numbers.p-last img {
    width: 2.667vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-pagination .page-numbers.p-last::after {
    content: "";
    display: inline-block;
    background-size: contain;
    width: 1em;
    height: 0.875em;
    background: url("../img/archive/pagination_arrow02.png") no-repeat center;
  }
}
.p-archive_page .p-pagination .page-numbers.disabled {
  color: #999999;
  cursor: default;
  pointer-events: none;
}
.p-archive_page .p-pagination .page-numbers.disabled:hover {
  text-decoration: none;
}
.p-archive_page .p-sidebar {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-sidebar {
    gap: 2.5em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-sidebar {
    width: 85.333vw;
    margin: 0 auto;
    gap: 8.667vw;
  }
}
.p-archive_page .p-sidebar .p-sidebar_title h2 {
  background-color: #0068b6;
  color: #ffffff;
  text-align: center;
  font-weight: 500;
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-sidebar .p-sidebar_title h2 {
    font-size: 1.25em;
    line-height: 1.2em;
    padding: 0.7em 0;
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-sidebar .p-sidebar_title h2 {
    font-size: 5.333vw;
    line-height: 3em;
    letter-spacing: 0.5vw;
  }
}
.p-archive_page .p-sidebar .p-support_record {
  background-color: #f2f2f2;
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-sidebar .p-support_record {
    width: 85.333vw;
    margin: 0 auto;
  }
}
.p-archive_page .p-sidebar .p-support_record .p-support_record_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-sidebar .p-support_record .p-support_record_list {
    padding: 1.875em 0.938em;
    gap: 2.875em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-sidebar .p-support_record .p-support_record_list {
    padding: 8vw 0;
    gap: 12vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-sidebar .p-support_record .p-support_record_list li {
    width: 13.75em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-sidebar .p-support_record .p-support_record_list li {
    width: 77.333vw;
  }
}
.p-archive_page .p-sidebar .p-support_record .p-support_record_list li a {
  display: flex;
  text-decoration: none !important;
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-sidebar .p-support_record .p-support_record_list li a {
    gap: 0.625em;
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-sidebar .p-support_record .p-support_record_list li a {
    gap: 2.667vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-sidebar .p-support_record .p-support_record_img {
    width: 13.75em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-sidebar .p-support_record .p-support_record_img {
    width: 37.333vw;
  }
}
.p-archive_page .p-sidebar .p-support_record .p-support_record_img img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-sidebar .p-support_record .p-support_record_txt {
    width: 37.333vw;
  }
}
.p-archive_page .p-sidebar .p-support_record .p-support_record_txt p {
  color: #333333;
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-sidebar .p-support_record .p-support_record_txt p {
    font-size: 0.813em;
    line-height: 1.769em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-sidebar .p-support_record .p-support_record_txt p {
    font-size: 3.733vw;
    line-height: 7.2vw;
  }
}
.p-archive_page .p-sidebar .p-support_record .p-support_record_btn {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-sidebar .p-support_record .p-support_record_btn {
    gap: 0.625em;
    padding: 0 0.938em 2.5em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-sidebar .p-support_record .p-support_record_btn {
    gap: 1.333vw;
    padding: 0 4.667vw 10.667vw 0;
  }
}
.p-archive_page .p-sidebar .p-support_record .p-support_record_btn p {
  color: #333333;
  text-decoration: underline;
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-sidebar .p-support_record .p-support_record_btn p {
    font-size: 0.938em;
  }
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-sidebar .p-support_record .p-support_record_btn img {
    width: 1.25em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-sidebar .p-support_record .p-support_record_btn img {
    width: 4vw;
  }
}
.p-archive_page .p-sidebar .p-recommend_article .p-recommend_article_list {
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-sidebar .p-recommend_article .p-recommend_article_list {
    padding: 1.25em 0.938em;
    gap: 1.438em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-sidebar .p-recommend_article .p-recommend_article_list {
    gap: 8vw;
    padding: 9.333vw 6.667vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-sidebar .p-recommend_article .p-recommend_article_link {
    display: flex;
    gap: 0.625em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-sidebar .p-recommend_article .p-recommend_article_link {
    display: grid;
    grid-template-columns: 1.867vw 66.667vw;
    gap: 2.667vw;
  }
}
.p-archive_page .p-sidebar .p-recommend_article .p-recommend_article_link:before {
  content: "";
  display: block;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-sidebar .p-recommend_article .p-recommend_article_link:before {
    background-image: url(../img/archive/arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 0.438em;
    height: 0.688em;
    top: 0.375em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-sidebar .p-recommend_article .p-recommend_article_link:before {
    background-image: url(../img/archive/arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 4.533vw;
    height: 3.067vw;
    top: 1.867vw;
  }
}
.p-archive_page .p-sidebar .p-recommend_article .p-recommend_article_txt {
  color: #333333;
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-sidebar .p-recommend_article .p-recommend_article_txt {
    font-size: 0.813em;
    line-height: 1.769em;
    width: 14.615em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-sidebar .p-recommend_article .p-recommend_article_txt {
    font-size: 3.467vw;
    line-height: 6.933vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-archive_page .p-sidebar .p-banner {
    width: 15.625em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .p-sidebar .p-banner {
    width: 85.333vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-archive_page {
    margin-bottom: 5.625em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page {
    margin-top: 9.333vw !important;
    margin-bottom: 21.333vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-archive_page .l-inner_ctx {
    display: grid;
    justify-content: center;
    grid-template-columns: 45em 15.625em;
    gap: 1.875em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_page .l-inner_ctx {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10.667vw;
  }
}

.p-archive_work {
  color: #333;
}
@media only screen and (min-width: 769px) {
  .p-archive_work {
    margin-top: 4.375em;
    margin-bottom: 5.625em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_work {
    margin-top: 13.333vw;
    margin-bottom: 21.333vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-archive_work .p-archive_header {
    background: url(../img/archive/work_bg.png) 0 0 repeat-x;
    background-size: auto 29.375em;
    padding-bottom: 2.188em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_work .p-archive_header {
    background: url(../img/archive/work_bg_sp.png) 0 0/100% auto no-repeat;
    padding-bottom: 12vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-archive_work .c-breadcrumbs {
    padding: 0.625em 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_work .c-breadcrumbs {
    padding: 2vw 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_work .l-inner_ctx--header {
    padding: 0;
  }
}
.p-archive_work .p-header_title {
  background: url(../img/archive/work_title_bg.png) 50% 50%/contain no-repeat;
  font-weight: 500;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 769px) {
  .p-archive_work .p-header_title {
    font-size: 2.5em;
    height: 2.7em;
    margin-top: 0.625em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_work .p-header_title {
    font-size: 6.667vw;
    height: 19.733vw;
    margin-top: 4.667vw;
  }
}
.p-archive_work .p-header_text {
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 769px) {
  .p-archive_work .p-header_text {
    margin-top: 2.188em;
    width: 62.5em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_work .p-header_text {
    margin-top: 6.667vw;
    width: 98.667vw;
  }
}
.p-archive_work .p-header_text p {
  letter-spacing: 0.08em;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .p-archive_work .p-header_text p {
    font-size: 1.125em;
    line-height: 1.667;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_work .p-header_text p {
    font-size: 3.2vw;
    line-height: 1.667;
  }
}
@media only screen and (min-width: 769px) {
  .p-archive_work .p-header_text p + p {
    margin-top: 1.6em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_work .p-header_text p + p {
    margin-top: 1em;
  }
}
.p-archive_work .p-header_text span {
  color: #0068b6;
}
.p-archive_work .p-contents_list {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 769px) {
  .p-archive_work .p-contents_list {
    gap: 3.125em 1.25em;
    margin-top: 2.188em;
    width: 62.5em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_work .p-contents_list {
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10vw;
    margin-top: -1.333vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-archive_work .p-contents_item {
    width: 20em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_work .p-contents_item {
    width: 85.333vw;
  }
}
.p-archive_work .p-contents_item a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #333333;
}
@media only screen and (min-width: 769px) {
  .p-archive_work .p-contents_item a {
    gap: 0.625em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_work .p-contents_item a {
    gap: 2.667vw;
  }
}
.p-archive_work .p-contents_thumb {
  aspect-ratio: 16/11;
  overflow: hidden;
  margin: 0 !important;
  width: 100%;
}
.p-archive_work .p-contents_thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-archive_work .p-contents_tax_list {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 769px) {
  .p-archive_work .p-contents_tax_list {
    gap: 0.625em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_work .p-contents_tax_list {
    gap: 2.667vw;
  }
}
.p-archive_work .p-contents_tax_list li {
  border: 1px solid;
  letter-spacing: 0.08em;
  padding: 0 0.5em;
  white-space: nowrap;
}
@media only screen and (min-width: 769px) {
  .p-archive_work .p-contents_tax_list li {
    font-size: 1.063em;
    line-height: 1.529;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_work .p-contents_tax_list li {
    font-size: 3.733vw;
    line-height: 1.571;
  }
}
.p-archive_work .p-contents_tax_list li.p-industry {
  border-color: #cb141d;
  color: #cb141d;
}
.p-archive_work .p-contents_tax_list li.p-area {
  border-color: #0068b6;
  color: #0068b6;
}
.p-archive_work .p-contents_tax_list li.p-epco {
  border-color: #896412;
  color: #896412;
}
.p-archive_work .p-contents_title {
  color: #333;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-decoration: underline;
}
@media only screen and (min-width: 769px) {
  .p-archive_work .p-contents_title {
    font-size: 1.063em;
    line-height: 1.941;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_work .p-contents_title {
    font-size: 3.6vw;
    line-height: 2;
  }
}
@media only screen and (min-width: 769px) {
  .p-archive_work .p-contents_btn {
    margin: 3.75em auto 0;
    transform: translateX(-1.2%);
    width: 53.25em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_work .p-contents_btn {
    margin-top: 13.333vw;
    margin-left: 6.667vw;
    width: 88.8vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-archive_work .p-pagination {
    margin-top: 4.688em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_work .p-pagination {
    margin-top: 14.667vw;
  }
}
.p-archive_work .p-pagination__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 769px) {
  .p-archive_work .p-pagination__wrap {
    gap: 1.25em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_work .p-pagination__wrap {
    gap: 2vw;
  }
}
.p-archive_work .p-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 500;
  color: #000000;
}
@media only screen and (min-width: 769px) {
  .p-archive_work .p-pagination .page-numbers {
    font-size: 1.25em;
    min-width: 2em;
    height: 2em;
    gap: 1em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_work .p-pagination .page-numbers {
    min-width: 6.667vw;
    height: 6.667vw;
    font-size: 3.6vw;
    padding: 0 2vw;
  }
}
.p-archive_work .p-pagination .page-numbers.current {
  background: #0068b6;
  color: #ffffff;
  cursor: default;
}
.p-archive_work .p-pagination .page-numbers.p-first, .p-archive_work .p-pagination .page-numbers.prev, .p-archive_work .p-pagination .page-numbers.p-next, .p-archive_work .p-pagination .page-numbers.p-last {
  background: none;
  border: none;
  min-width: auto;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .p-archive_work .p-pagination .page-numbers.p-first, .p-archive_work .p-pagination .page-numbers.prev, .p-archive_work .p-pagination .page-numbers.p-next, .p-archive_work .p-pagination .page-numbers.p-last {
    gap: 0.5em;
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  .p-archive_work .p-pagination .page-numbers.p-first img {
    width: 2.667vw;
  }
}
.p-archive_work .p-pagination .page-numbers.p-first::before {
  content: "";
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  transform: rotate(180deg);
}
@media only screen and (min-width: 769px) {
  .p-archive_work .p-pagination .page-numbers.p-first::before {
    background-size: contain;
    width: 1em;
    height: 0.875em;
    background: url("../img/archive/pagination_arrow02.png") no-repeat center;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_work .p-pagination .page-numbers.prev img {
    width: 1.467vw;
  }
}
.p-archive_work .p-pagination .page-numbers.prev::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  transform: rotate(180deg);
}
@media only screen and (min-width: 769px) {
  .p-archive_work .p-pagination .page-numbers.prev::before {
    background-size: contain;
    background: url("../img/archive/pagination_arrow.png") no-repeat center;
    width: 0.563em;
    height: 0.875em;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_work .p-pagination .page-numbers.p-next img {
    width: 1.467vw;
  }
}
.p-archive_work .p-pagination .page-numbers.p-next::after {
  content: "";
  display: inline-block;
}
@media only screen and (min-width: 769px) {
  .p-archive_work .p-pagination .page-numbers.p-next::after {
    background-size: contain;
    width: 0.563em;
    height: 0.875em;
    background: url("../img/archive/pagination_arrow.png") no-repeat center;
  }
}
@media only screen and (max-width: 768px) {
  .p-archive_work .p-pagination .page-numbers.p-last img {
    width: 2.667vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-archive_work .p-pagination .page-numbers.p-last::after {
    content: "";
    display: inline-block;
    background-size: contain;
    width: 1em;
    height: 0.875em;
    background: url("../img/archive/pagination_arrow02.png") no-repeat center;
  }
}
.p-archive_work .p-pagination .page-numbers.disabled {
  color: #999999;
  cursor: default;
  pointer-events: none;
}
.p-archive_work .p-pagination .page-numbers.disabled:hover {
  text-decoration: none;
}

@media only screen and (min-width: 769px) {
  .p-cta {
    background: url("../img/cta/bg.jpg") no-repeat 50% 0%;
    background-size: 125em auto;
    padding: 3.75em 0;
    margin-top: 3.125em;
  }
}
@media only screen and (max-width: 768px) {
  .p-cta {
    background: url("../img/cta/bg_sp.jpg") no-repeat 50% 0;
    background-size: 100vw auto;
    padding: 14.667vw 0 13.333vw;
    margin-top: 5.333vw;
  }
}
.p-cta ul {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  max-width: none !important;
  margin: 0 !important;
  margin-bottom: 0 !important;
  flex-direction: row !important;
}
@media only screen and (min-width: 769px) {
  .p-cta ul {
    gap: 2.5em;
  }
}
@media only screen and (max-width: 768px) {
  .p-cta ul {
    flex-direction: column !important;
    gap: 12vw;
  }
}
.p-cta ul li {
  position: relative;
  font-weight: normal !important;
  padding-left: 0 !important;
  line-height: normal !important;
  font-size: initial !important;
}
@media only screen and (min-width: 769px) {
  .p-cta ul li {
    width: 30em;
    height: 13.75em;
  }
}
@media only screen and (max-width: 768px) {
  .p-cta ul li {
    width: 76.8vw;
  }
}
.p-cta ul li::before {
  display: none !important;
}
.p-cta ul li:first-child:after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (min-width: 769px) {
  .p-cta ul li:first-child:after {
    background-image: url(../img/cta/cta_contact_el.png);
    background-size: 12.625em 6.875em;
    width: 12.625em;
    height: 6.875em;
    left: -3.25em;
    top: -3.125em;
  }
}
@media only screen and (max-width: 768px) {
  .p-cta ul li:first-child:after {
    background-image: url(../img/cta/cta_contact_elsp.png);
    background-size: 32.4vw 17.6vw;
    width: 32.4vw;
    height: 17.6vw;
    left: -8.533vw;
    top: -8vw;
  }
}
.p-cta ul li:last-child:after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (min-width: 769px) {
  .p-cta ul li:last-child:after {
    background-image: url(../img/cta/cta_example_el.png);
    background-size: 24.625em 3.125em;
    width: 24.625em;
    height: 3.125em;
    left: 2.688em;
    top: -1.875em;
  }
}
@media only screen and (max-width: 768px) {
  .p-cta ul li:last-child:after {
    background-image: url(../img/cta/cta_example_elsp.png);
    background-size: 63.2vw 8vw;
    width: 63.2vw;
    height: 8vw;
    left: 6.933vw;
    top: -4.933vw;
  }
}

@media only screen and (min-width: 769px) {
  .p-contact_page .p-contents {
    width: 30em;
  }
}
.p-contact_page .contents_lead {
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-contact_page .contents_lead {
    order: 1;
  }
}
.p-contact_page .contents_lead_ttl {
  font-size: 36px;
  color: #0068B6;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media only screen and (min-width: 769px) {
  .p-contact_page .contents_lead_ttl {
    font-size: 2.25em;
    margin-bottom: 0.639em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .contents_lead_ttl {
    font-size: 6vw;
    margin-bottom: 1em;
  }
}
@media only screen and (min-width: 769px) {
  .p-contact_page .contents_lead_txt {
    font-size: 1.125em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .contents_lead_txt {
    font-size: 4vw;
    line-height: 1.667em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .p-contents {
    width: 88vw;
    margin: 0 auto;
    order: 3;
  }
}
.p-contact_page .sub_ttl {
  border-bottom: solid #0068B6;
  color: #fff;
}
@media only screen and (min-width: 769px) {
  .p-contact_page .sub_ttl {
    border-width: 0.125em;
    margin: 0 0 1.375em 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .sub_ttl {
    border-width: 0.267vw;
    margin: 0 0 2.933vw 0;
  }
}
.p-contact_page .sub_ttl span {
  display: block;
  width: fit-content;
  width: -moz-fit-content;
  background: #0068B6;
  font-weight: 700;
  letter-spacing: 0.16em;
  clip-path: polygon(0 0, 94% 0, 100% 20%, 100% 100%, 0 100%);
}
@media only screen and (min-width: 769px) {
  .p-contact_page .sub_ttl span {
    font-size: 1.313em;
    height: 1.857em;
    padding: 0.476em 1em 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .sub_ttl span {
    font-size: 4.8vw;
    height: 1.944em;
    padding: 0.389em 1em 0;
  }
}
@media only screen and (min-width: 769px) {
  .p-contact_page .achievements {
    margin: 0 0 1.875em 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .achievements {
    margin: 0 0 4vw 0;
  }
}
.p-contact_page .chk_list {
  font-weight: 500;
}
.p-contact_page .chk_list strong {
  color: #0068B6;
  font-weight: 500;
}
@media only screen and (min-width: 769px) {
  .p-contact_page .chk_list li {
    background: url(../img/contact/chk.png) no-repeat 0 0;
    font-size: 1.313em;
    background-size: 1.429em;
    height: 1.429em;
    padding: 0.19em 0 0 2em;
    margin: 0 0 0.476em 0.476em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .chk_list li {
    background: url(../img/contact/chk_sp.png) no-repeat 0 0;
    font-size: 4.267vw;
    background-size: 1.563em;
    line-height: 1.625em;
    padding: 0.125em 0 0 2.188em;
    margin: 0 0 1.25em;
  }
}
.p-contact_page .achievements_txt {
  background: rgb(255, 253, 217);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.p-contact_page .achievements_txt strong {
  font-weight: 600;
  color: #0068B6;
}
.p-contact_page .achievements_txt span {
  background: #0068B6;
  color: #fff;
  padding: 0 0 0 0.5em;
}
.p-contact_page .achievements_txt em {
  font-style: normal;
  color: #FFF100;
}
@media only screen and (min-width: 769px) {
  .p-contact_page .achievements_txt {
    font-size: 1.063em;
    line-height: 1.882em;
    border-radius: 1.176em;
    padding: 1em 0 1.059em;
    margin: 1.059em 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .achievements_txt {
    font-size: 4vw;
    line-height: 1.667em;
    border-radius: 0.667em;
    padding: 2em 0 2.167em;
    margin: 1.833em 0 2.833em;
  }
}
@media only screen and (min-width: 769px) {
  .p-contact_page .p-service dl {
    margin: 1.75em 0 3.938em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .p-service dl {
    margin: 5.333vw 0 13.333vw;
  }
}
.p-contact_page .p-service dt {
  color: #0068B6;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media only screen and (min-width: 769px) {
  .p-contact_page .p-service dt {
    font-size: 1.313em;
    margin-bottom: 0.429em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .p-service dt {
    font-size: 4.8vw;
    margin-bottom: 0.278em;
  }
}
@media only screen and (min-width: 769px) {
  .p-contact_page .p-service dd {
    font-size: 1.063em;
    margin-bottom: 1.941em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .p-service dd {
    font-size: 4vw;
    line-height: 1.667em;
    margin-bottom: 1.667em;
  }
}
.p-contact_page .p-service .service_txt01 {
  color: #0068B6;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
}
.p-contact_page .p-service .service_txt01::after {
  content: "";
  display: block;
}
@media only screen and (min-width: 769px) {
  .p-contact_page .p-service .service_txt01 {
    font-size: 1.313em;
    margin-bottom: 0.905em;
    gap: 0.476em;
  }
  .p-contact_page .p-service .service_txt01::after {
    background: url(../img/contact/arw.png) no-repeat center 0/100%;
    width: 3.476em;
    height: 0.524em;
    margin-top: -0.19em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .p-service .service_txt01 {
    font-size: 5.067vw;
    margin-bottom: 1.053em;
    gap: 0.263em;
  }
  .p-contact_page .p-service .service_txt01::after {
    background: url(../img/contact/arw_sp.png) no-repeat center 0/100%;
    width: 3.395em;
    height: 0.421em;
    margin-top: -0.105em;
  }
}
.p-contact_page .p-service .service_tel_wrap {
  background: #E5F0F8;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .p-contact_page .p-service .service_tel_wrap {
    border-radius: 1.25em;
    padding: 1.375em 0 1.875em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .p-service .service_tel_wrap {
    border-radius: 2.667vw;
    padding: 6.667vw 0 7.333vw;
  }
}
.p-contact_page .p-service .service_tel_ttl {
  color: #0068B6;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-contact_page .p-service .service_tel_ttl::before, .p-contact_page .p-service .service_tel_ttl::after {
  content: "";
  display: block;
  background: #0068B6;
}
.p-contact_page .p-service .service_tel_ttl::before {
  rotate: -18deg;
}
.p-contact_page .p-service .service_tel_ttl::after {
  rotate: 18deg;
}
@media only screen and (min-width: 769px) {
  .p-contact_page .p-service .service_tel_ttl {
    font-size: 1.125em;
    margin-bottom: 0.722em;
    gap: 0.833em;
  }
  .p-contact_page .p-service .service_tel_ttl::before, .p-contact_page .p-service .service_tel_ttl::after {
    width: 0.111em;
    height: 1.667em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .p-service .service_tel_ttl {
    font-size: 4.533vw;
    margin-bottom: 0.382em;
    gap: 0.441em;
  }
  .p-contact_page .p-service .service_tel_ttl::before, .p-contact_page .p-service .service_tel_ttl::after {
    width: 0.059em;
    height: 1.588em;
  }
}
.p-contact_page .p-service .service_tel_txt01 {
  letter-spacing: 0.02em;
}
@media only screen and (min-width: 769px) {
  .p-contact_page .p-service .service_tel_txt01 {
    font-size: 1.125em;
    margin-bottom: 0.667em;
    line-height: 1.778em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .p-service .service_tel_txt01 {
    font-size: 4vw;
    margin-bottom: 1em;
    line-height: 1.667em;
  }
}
.p-contact_page .p-service .service_tel_txt02 {
  color: #fff;
  background: #0068B6;
  letter-spacing: 0.02em;
}
@media only screen and (min-width: 769px) {
  .p-contact_page .p-service .service_tel_txt02 {
    font-size: 1.125em;
    margin-bottom: 0.667em;
    line-height: 1.778em;
    padding: 0.167em 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .p-service .service_tel_txt02 {
    font-size: 4.267vw;
    margin-bottom: 0.938em;
    line-height: 1.375em;
    padding: 0.469em 0;
  }
}
.p-contact_page .p-service .l-tel a {
  color: #0068B6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
}
@media only screen and (min-width: 769px) {
  .p-contact_page .p-service .l-tel a {
    gap: 0.625em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .p-service .l-tel a {
    gap: 1.333vw;
  }
}
.p-contact_page .p-service .l-tel .tel_ico {
  display: block;
  background: url(../img/contact/ico_tel.png) no-repeat center 0/100%;
}
@media only screen and (min-width: 769px) {
  .p-contact_page .p-service .l-tel .tel_ico {
    width: 2.5em;
    height: 2.5em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .p-service .l-tel .tel_ico {
    width: 10.667vw;
    height: 10.667vw;
  }
}
.p-contact_page .p-service .l-tel .num {
  font-weight: 500;
}
@media only screen and (min-width: 769px) {
  .p-contact_page .p-service .l-tel .num {
    font-size: 2.125em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .p-service .l-tel .num {
    font-size: 8.8vw;
  }
}
.p-contact_page .p-service .l-tel .time {
  color: #333;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media only screen and (min-width: 769px) {
  .p-contact_page .p-service .l-tel .time {
    font-size: 0.875em;
    margin-top: 1.071em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .p-service .l-tel .time {
    display: block;
    width: 100%;
    font-size: 3.333vw;
    margin-left: 3.2em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .gotop {
    font-size: 3.733vw;
    margin: 2.143em 1.607em 0 auto;
    height: 1.107em;
    text-align: right;
  }
  .p-contact_page .gotop a {
    background: url(../img/contact/gotop.png) no-repeat right center;
    background-size: 1.071em;
    display: block;
    width: 100%;
    height: 100%;
    color: #333;
    text-decoration: underline;
    padding: 0 1.429em 0 0;
  }
}
.p-contact_page .form_wrap {
  background: #E6E6E6;
}
@media only screen and (min-width: 769px) {
  .p-contact_page .form_wrap {
    width: 30em;
    padding: 1.563em 1.25em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .form_wrap {
    order: 2;
    padding: 12vw 6vw;
    overflow-x: hidden;
  }
}
@media only screen and (min-width: 769px) {
  .p-contact_page .contact_form .form_group {
    margin-bottom: 2em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .contact_form .form_group {
    margin-bottom: 6.667vw;
  }
}
.p-contact_page .contact_form label {
  display: flex;
  align-items: center;
  font-weight: 500;
}
@media only screen and (min-width: 769px) {
  .p-contact_page .contact_form label {
    font-size: 1.125em;
    gap: 0.556em;
    margin-bottom: 0.556em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .contact_form label {
    font-size: 4vw;
    gap: 0.333em;
    margin-bottom: 0.6em;
  }
}
.p-contact_page .contact_form label .required {
  color: #fff;
  background: #0068B6;
  display: block;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .p-contact_page .contact_form label .required {
    font-size: 0.722em;
    width: 3.077em;
    height: 1.538em;
    padding: 0.231em 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .contact_form label .required {
    font-size: 0.667em;
    width: 3em;
    height: 1.5em;
    padding: 0.25em 0 0;
  }
}
.p-contact_page .contact_form input[type=text], .p-contact_page .contact_form input[type=tel], .p-contact_page .contact_form input[type=email], .p-contact_page .contact_form textarea {
  border: none;
  outline: none;
  width: 100%;
  padding: 0 1em;
}
@media only screen and (min-width: 769px) {
  .p-contact_page .contact_form input[type=text], .p-contact_page .contact_form input[type=tel], .p-contact_page .contact_form input[type=email], .p-contact_page .contact_form textarea {
    font-size: 1.063em;
    height: 2.941em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .contact_form input[type=text], .p-contact_page .contact_form input[type=tel], .p-contact_page .contact_form input[type=email], .p-contact_page .contact_form textarea {
    font-size: 3.733vw;
    height: 3.571em;
  }
}
.p-contact_page .contact_form textarea {
  padding: 1em;
  line-height: 1.6;
}
@media only screen and (min-width: 769px) {
  .p-contact_page .contact_form textarea {
    height: 7.647em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .contact_form textarea {
    height: 10.714em;
  }
}
.p-contact_page .contact_form .checkbox_txt {
  color: #666;
}
@media only screen and (min-width: 769px) {
  .p-contact_page .contact_form .checkbox_txt {
    font-size: 1.063em;
    margin: 1.176em 0 2.059em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .contact_form .checkbox_txt {
    font-size: 3.733vw;
    line-height: 1.786em;
    margin: 0.714em 0 1.786em;
  }
}
.p-contact_page .contact_form .form_group_check input[type=radio] {
  display: none;
}
.p-contact_page .contact_form .form_group_check label .wpcf7-list-item-label {
  position: relative;
  cursor: pointer;
}
@media only screen and (min-width: 769px) {
  .p-contact_page .contact_form .form_group_check label .wpcf7-list-item-label {
    padding-left: 2.824em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .contact_form .form_group_check label .wpcf7-list-item-label {
    padding-left: 3em;
  }
}
.p-contact_page .contact_form .form_group_check label .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #FFF;
}
@media only screen and (min-width: 769px) {
  .p-contact_page .contact_form .form_group_check label .wpcf7-list-item-label::before {
    width: 1.765em;
    height: 1.765em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .contact_form .form_group_check label .wpcf7-list-item-label::before {
    width: 2em;
    height: 2em;
  }
}
.p-contact_page .contact_form .form_group_check label input[type=radio]:checked + .wpcf7-list-item-label::before {
  background: url(../img/contact/checkbox.png) no-repeat center 0/100%;
}
.p-contact_page .contact_form .form_group_check .wpcf7-list-item::after {
  display: block;
  color: #333;
}
@media only screen and (min-width: 769px) {
  .p-contact_page .contact_form .form_group_check .wpcf7-list-item::after {
    font-size: 1.063em;
    line-height: 1.882em;
    width: 22.824em;
    margin-left: 2.941em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .contact_form .form_group_check .wpcf7-list-item::after {
    font-size: 3.733vw;
    line-height: 1.786em;
    width: 20.357em;
    margin-left: 3.214em;
  }
}
.p-contact_page .contact_form .form_group_check .wpcf7-list-item.p-first {
  display: block;
}
.p-contact_page .contact_form .form_group_check .wpcf7-list-item.p-first::after {
  content: "電気料金の明細12か月分をご準備いただければ、大手新電力への見積もり依頼を即日対応いたします。";
}
@media only screen and (min-width: 769px) {
  .p-contact_page .contact_form .form_group_check .wpcf7-list-item.p-first {
    margin-bottom: 1.563em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .contact_form .form_group_check .wpcf7-list-item.p-first {
    margin-bottom: 7.333vw;
  }
}
.p-contact_page .contact_form .form_group_check .wpcf7-list-item.p-last::after {
  content: "専任アドバイザーが丁寧にご説明し、貴社の状況に合った進め方をご提案いたします。";
}
.p-contact_page .contact_form .form_submit input[type=submit] {
  display: block;
  color: #fff;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
}
@media (any-hover: hover) {
  .p-contact_page .contact_form .form_submit input[type=submit]:hover {
    opacity: 0.8;
  }
}
@media only screen and (min-width: 769px) {
  .p-contact_page .contact_form .form_submit input[type=submit] {
    background: url(../img/contact/form_btn.png) no-repeat center 0/100%;
    font-size: 1.375em;
    width: 12.727em;
    height: 3.182em;
    margin: 1.727em auto 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .contact_form .form_submit input[type=submit] {
    background: url(../img/contact/form_btn_sp.png) no-repeat center 0/100%;
    font-size: 5.333vw;
    width: 13em;
    height: 3.25em;
    margin: 1.7em auto 0;
  }
}
@media only screen and (min-width: 769px) {
  .p-contact_page {
    margin-bottom: 5.625em;
    margin-top: -0.813em;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page {
    margin-top: 0;
    margin-bottom: 21.333vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-contact_page .l-inner_ctx {
    display: flex;
    justify-content: center;
    grid-template-columns: 45em 15.625em;
    gap: 2.5em;
    max-width: 1000px;
    flex-flow: row wrap;
  }
}
@media only screen and (max-width: 768px) {
  .p-contact_page .l-inner_ctx {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 10.667vw;
    padding: 0;
  }
}

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

@media only screen and (min-width: 769px) {
  .u-sp {
    display: none !important;
  }
}/*# sourceMappingURL=style.css.map */