@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.6326530612vw;
  }
}
@media (min-width: 980px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.6;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

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

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

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

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

.c-br-sp {
  display: block;
}

@media screen and (min-width: 768px) {
  .c-br-sp {
    display: none;
  }
}
.c-breadcrumb {
  color: #fff;
  padding: 0 20px;
  padding: 0 1.25rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}

.c-breadcrumb #breadcrumb a {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .c-breadcrumb {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    margin-top: 74px;
    padding-left: 17.3333333333%;
  }
}
.c-common-relative {
  position: relative;
  height: 349px;
}

.c-common-titlebox {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.c-common-title {
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  text-align: center;
  color: #1ba5c4;
}

.c-common-subtitle {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: #fff;
  line-height: 2;
}

@media screen and (min-width: 768px) {
  .c-common-titlebox {
    padding-top: 110px;
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .c-common-title {
    font-size: 3.75rem;
    font-weight: 400;
    font-family: "Oswald", sans-serif;
    text-align: center;
    color: #1ba5c4;
  }
  .c-common-subtitle {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    line-height: 2;
    color: #fff;
    margin-top: -0.1875rem;
  }
}
.js-fadeTrigger {
  opacity: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.c-page-titlebox {
  text-align: center;
  margin-top: 60px;
  margin-top: 3.75rem;
}

.c-page-title {
  color: #01afc7;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.1538461538;
  letter-spacing: 0.1em;
}

.c-page-text {
  margin-top: 15px;
  margin-top: 0.9375rem;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}

.navigation.pagination {
  margin-top: 39.6px;
  margin-top: 2.475rem;
}

.pagination-next {
  margin-top: 100px;
  margin-top: 6.25rem;
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#4bc3d2), to(#3ca54d));
  background: linear-gradient(to right, #4bc3d2, #3ca54d);
  border-radius: 35px;
}

.pagination-prev {
  margin-top: 10px;
  margin-top: 0.625rem;
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#4bc3d2), to(#3ca54d));
  background: linear-gradient(to right, #4bc3d2, #3ca54d);
  border-radius: 35px;
}

.pagination-next a,
.pagination-prev a {
  display: block;
  padding: 10px 0 10px 0;
  padding: 0.625rem 0 0.625rem 0;
}

.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-numbers li {
  background-color: #dcdcdc;
  text-align: center;
  border-radius: 10px;
  font-weight: 400;
}

.page-numbers li:not(:first-child) {
  margin-left: 17px;
  margin-left: 1.0625rem;
}

.page-numbers li a,
.page-numbers li span {
  display: block;
  padding: 14px 0 14px 0;
  padding: 0.875rem 0 0.875rem 0;
  width: 53px;
  width: 3.3125rem;
}

.page-numbers.current,
.page-numbers.next {
  background: -webkit-gradient(linear, left top, right top, from(#4bc3d2), to(#3ca54d));
  background: linear-gradient(to right, #4bc3d2, #3ca54d);
  border-radius: 10px;
  color: #fff;
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.nav-links .nav-previous,
.nav-links .nav-next {
  background: -webkit-gradient(linear, left top, right top, from(#4bc3d2), to(#3ca54d));
  background: linear-gradient(to right, #4bc3d2, #3ca54d);
  border-radius: 10px;
  color: #fff;
  text-align: center;
}

.nav-links .nav-next:nth-child(2) {
  margin-left: 20px;
  margin-left: 1.25rem;
}

.nav-links .nav-previous a,
.nav-links .nav-next a {
  display: block;
  padding: 14px 0 14px 0;
  padding: 0.875rem 0 0.875rem 0;
  width: 129px;
  width: 8.0625rem;
  font-weight: 700;
}

.navigation.post-navigation {
  margin-top: 50px;
  margin-top: 3.125rem;
}

@media screen and (min-width: 768px) {
  .navigation.pagination {
    margin-top: 2.475rem;
  }
  .pagination-next {
    margin-top: 6.25rem;
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 2;
    color: #fff;
    background: -webkit-gradient(linear, left top, right top, from(#4bc3d2), to(#3ca54d));
    background: linear-gradient(to right, #4bc3d2, #3ca54d);
    border-radius: 35px;
  }
  .pagination-prev {
    margin-top: 0.625rem;
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 2;
    color: #fff;
    background: -webkit-gradient(linear, left top, right top, from(#4bc3d2), to(#3ca54d));
    background: linear-gradient(to right, #4bc3d2, #3ca54d);
    border-radius: 35px;
  }
  .pagination-next a,
.pagination-prev a {
    display: block;
    padding: 1.125rem 0 1.25rem 0;
  }
  .page-numbers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page-numbers li {
    background-color: #dcdcdc;
    text-align: center;
    border-radius: 10px;
  }
  .page-numbers li:not(:first-child) {
    margin-left: 1.0625rem;
  }
  .page-numbers li a,
.page-numbers li span {
    font-size: 0.9375rem;
    display: block;
    padding: 0.75rem 0 0.75rem 0;
    width: 3.3125rem;
  }
  .page-numbers.current,
.page-numbers.next {
    background: -webkit-gradient(linear, left top, right top, from(#4bc3d2), to(#3ca54d));
    background: linear-gradient(to right, #4bc3d2, #3ca54d);
    border-radius: 10px;
    color: #fff;
  }
  .navigation.post-navigation {
    margin-top: 5.625rem;
  }
  .nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 0.9375rem;
  }
  .nav-links .nav-previous,
.nav-links .nav-next {
    background: -webkit-gradient(linear, left top, right top, from(#4bc3d2), to(#3ca54d));
    background: linear-gradient(to right, #4bc3d2, #3ca54d);
    border-radius: 10px;
    color: #fff;
    text-align: center;
  }
  .nav-links .nav-next:nth-child(2) {
    margin-left: 1.25rem;
  }
  .nav-links .nav-previous a,
.nav-links .nav-next a {
    display: block;
    padding: 0.875rem 0 0.875rem 0;
    width: 8.0625rem;
  }
}
.c-title__large-title {
  font-size: 68px;
  font-size: 4.25rem;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  color: #fff;
  line-height: 0.9558823529;
  opacity: 0.5;
}

.c-title__large-subtitle {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #fff;
}

.c-title__small-title {
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  text-align: center;
  color: #1ba5c4;
}

.c-title__small-subtitle {
  text-align: center;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 2;
}

.c-title__button {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 600;
  background: -webkit-gradient(linear, left top, right top, from(#4bc3d2), to(#3ca54d));
  background: linear-gradient(90deg, #4bc3d2, #3ca54d);
  border-radius: 30px;
  margin-top: 20px;
  margin-top: 1.25rem;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.c-title__button a {
  display: block;
  padding: 11px 50px;
  padding: 0.6875rem 3.125rem;
}

.c-title__button-sp {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 600;
  background: -webkit-gradient(linear, left top, right top, from(#4bc3d2), to(#3ca54d));
  background: linear-gradient(90deg, #4bc3d2, #3ca54d);
  border-radius: 30px;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.c-title__button-sp a {
  display: block;
  padding: 13px 50px;
  padding: 0.8125rem 3.125rem;
}

@media screen and (min-width: 768px) {
  .c-title__small-title {
    font-size: 4.25rem;
    font-weight: 400;
    font-family: "Oswald", sans-serif;
    text-align: center;
    color: #1ba5c4;
  }
  .c-title__small-subtitle {
    text-align: center;
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 2;
  }
  .c-title__button {
    display: inline-block;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-top: 1.25rem;
  }
  .c-title__button a {
    background: -webkit-gradient(linear, left top, right top, from(#4bc3d2), to(#3ca54d));
    background: linear-gradient(90deg, #4bc3d2, #3ca54d);
    border-radius: 30px;
    display: block;
    padding: 0.6875rem 3.125rem;
  }
  .c-title__button-sp {
    display: none;
  }
}
.l-businessinformation__scrap {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .l-businessinformation__scrap {
    margin-top: 4.5rem;
  }
}

@media screen and (min-width: 768px) {
  .l-business {
    margin-top: 5rem;
  }
}

.l-contact-page {
  padding-top: 45px;
  padding-top: 2.8125rem;
}

@media screen and (min-width: 768px) {
  .l-contact-page {
    padding-top: 4.625rem;
  }
}

.l-contact {
  padding-top: 45px;
  padding-top: 2.8125rem;
}

@media screen and (min-width: 768px) {
  .l-contact {
    padding-top: 11.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .l-footer {
    margin-top: 7.375rem;
  }
}

.l-inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1080px;
    padding-right: 50px;
    padding-left: 50px;
  }
}

.l-inner__treatment {
  width: 90%;
  padding: 52px 0;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-inner__treatment {
    width: 100%;
    max-width: 1080px;
  }
}

@media screen and (min-width: 768px) {
  .l-inner-pc {
    width: 100%;
    max-width: 1080px;
    padding-right: 50px;
    padding-left: 50px;
    margin-right: auto;
    margin-left: auto;
  }
}

.l-topics {
  margin-top: 41px;
  margin-top: 2.5625rem;
}
@media screen and (min-width: 768px) {
  .l-topics {
    margin-top: 5rem;
  }
}

.p-background-wrapper {
  background-image: url(../images/common/p-footer-sp.png);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
  .p-background-wrapper {
    background-image: url(../images/common/p-footer.png);
  }
}
.p-business {
  position: relative;
  background-image: url(../images/top/p-business-sp.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 53px;
  padding-top: 3.3125rem;
}

.p-business::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: min(13.6974358974%, 53.42px);
  padding-top: min(49.6153846154%, 193.5px);
  background-image: url(../images/top/p-business_triangle-sp.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

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

.p-business__subtitle {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.p-business__text {
  width: 100vw;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.8666666667;
  color: #fff;
  margin: 50px -20px 0 -20px;
  margin: 3.125rem -20px 0 -20px;
  padding: 33px 20px 90px 20px;
  padding: 2.0625rem 1.25rem 5.625rem 1.25rem;
  min-height: 235px;
  background-color: rgba(38, 169, 199, .91);
}

@media screen and (min-width: 768px) {
  .p-business {
    background-image: url(../images/top/p-business.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 4.0625rem;
    padding-bottom: 4.875rem;
  }
  .p-business::before {
    display: none;
  }
  .p-business__subtitle {
    margin-top: 0.25rem;
  }
  .p-business__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 4.5918367347%;
  }
  .p-business__text {
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 2;
    color: #fff;
    margin: 0;
    padding: 0;
    min-height: 0;
    margin-left: 5.9375rem;
    margin-top: 1.5625rem;
    background-color: transparent;
    width: 53%;
  }
  .p-business__button {
    margin-top: 1.0625rem;
  }
}
.p-businessinformation-title {
  line-height: 1.2;
}

.p-businessinformation-item__section-title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #1ba5c4;
  text-align: center;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding-bottom: 14px;
  padding-bottom: 0.875rem;
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .p-businessinformation-item__section-title {
    font-size: 1.625rem;
  }
}
.p-businessinformation-item__section-title::before {
  position: absolute;
  display: block;
  content: "";
  bottom: -1.5px;
  left: calc(50% - 50px);
  width: 100px;
  height: 2px;
  background-color: rgba(27, 165, 196, .4);
}

.p-businessinformation-item__section-title::after {
  position: absolute;
  display: block;
  content: "";
  bottom: -1.5px;
  left: calc(50% - 50px);
  width: 50px;
  height: 2px;
  background-color: #1ba5c4;
}

.p-businessinformation_text {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.1em;
}

.p-businessinformation__subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #1ba5c4;
  margin-top: 18px;
  margin-top: 1.125rem;
}

.p-businessinformation-firstview {
  background-image: url(../images/businessinformation/p-businessinformation-firstview.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.p-businessinformation__top-text {
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 54px;
  margin-top: 3.375rem;
}

.p-businessinformation__title {
  background-color: #1dafc7;
  border-radius: 10px;
  font-size: 22px;
  font-size: 1.375rem;
  color: #fff;
  line-height: 1.1538461538;
  letter-spacing: 0.1em;
  padding: 25px 0 25px 0;
  padding: 1.5625rem 0 1.5625rem 0;
  text-align: center;
  margin-top: 74px;
  margin-top: 4.625rem;
}

@media screen and (min-width: 768px) {
  .p-businessinformation__title {
    font-size: 1.625rem;
    padding: 1.5625rem 0 1.5625rem 2.6875rem;
    text-align: left;
  }
}
.p-businessinformation__business-list {
  padding-bottom: 96px;
  padding-bottom: 6rem;
}

.p-businessinformation__overview-table {
  margin-top: 5px;
  margin-top: 0.3125rem;
  width: 100%;
}

.p-businessinformation__overview-table th {
  color: #1ba5c4;
  text-align: left;
  vertical-align: top;
  width: 86px;
  padding-top: 10px;
  padding-top: 0.625rem;
  border-bottom: 2px solid #1ba5c4;
}

@media screen and (min-width: 768px) {
  .p-businessinformation__overview-table th {
    width: 112px;
  }
}
.p-businessinformation__overview-table td {
  padding-top: 10px;
  padding-top: 0.625rem;
  padding-bottom: 7px;
  padding-bottom: 0.4375rem;
  border-bottom: 1px solid rgba(27, 165, 196, .4);
}

.p-businessinformation__overview-table tr:nth-child(2) td {
  padding-top: 13px;
  padding-top: 0.8125rem;
  padding-bottom: 7px;
  padding-bottom: 0.4375rem;
}

.p-businessinformation__overview-table tr:nth-child(3) th {
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 28px;
  padding-bottom: 1.75rem;
}

.p-businessinformation__overview-table tr:nth-child(3) td {
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 28px;
  padding-bottom: 1.75rem;
}

.p-businessinformation__overview-table li {
  font-size: 15px;
  font-size: 0.9375rem;
  margin-bottom: 7px;
  margin-bottom: 0.4375rem;
  padding-left: 1em;
  text-indent: -1em;
}

.p-businessinformation__scrap {
  background-image: url(../images/businessinformation/p-businessinformation__scrap-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 78px;
  padding-bottom: 4.875rem;
}

.p-businessinformation__scrap::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, .87);
}

.p-businessinformation__wrapper {
  position: relative;
}

.p-businessinformation__scrap__title {
  margin-top: 0px;
  margin-top: 0rem;
}

.p-businessinformation__scrap-text {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-businessinformation__scrap-subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #1ba5c4;
  margin-top: 70px;
  margin-top: 4.375rem;
}

.p-businessinformation__scrap-pictures {
  display: block;
  margin-top: 24px;
  margin-top: 1.5rem;
}

@media screen and (min-width: 768px) {
  .p-businessinformation__scrap-pictures {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.p-businessinformation__scrap-picture {
  width: 100%;
  max-width: 400px;
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-businessinformation__scrap-picture {
    width: 27.5510204082%;
    margin-top: 0;
  }
}
.p-businessinformation__scrap-picture:nth-child(3n+1) {
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
  .p-businessinformation__scrap-picture:nth-child(3n+1) {
    margin-top: 0rem;
  }
  .p-businessinformation__scrap-picture:nth-child(n+4) {
    margin-top: 1.875rem;
  }
}
.p-businessinformation__scrap-list {
  margin-top: 9px;
  margin-top: 0.5625rem;
}

.p-businessinformation__scrap-image-text {
  position: relative;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  letter-spacing: 0.1em;
  margin-top: 0px;
  margin-top: 0rem;
  padding-left: 10px;
  padding-left: 0.625rem;
}

.p-businessinformation__scrap-image-text::before {
  position: absolute;
  display: block;
  content: "";
  top: 8px;
  top: 0.5rem;
  left: 0;
  width: 6px;
  width: 0.375rem;
  height: 6px;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #1ba5c4;
}

.p-businessinformation__scrap-bottom-text {
  margin-top: 18px;
  margin-top: 1.125rem;
  letter-spacing: 0.03em;
}

.p-businessinformation_notes {
  background-color: #ffffff;
  border-radius: 10px;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 10px;
}

@media screen and (min-width: 768px) {
  .p-businessinformation_notes {
    padding: 20px 0 20px 20px;
  }
}
.p-businessinformation_notes-title {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: bold;
  color: #1ba5c4;
  line-height: 1.3529411765;
}

.p-businessinformation_notes-items {
  margin-top: 7px;
  margin-top: 0.4375rem;
}

.p-businessinformation_notes-item {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
  color: #000;
  letter-spacing: 0.1em;
  padding-left: 1em;
  text-indent: -1em;
}

.p-businessinformation__industrial-waste {
  background-image: url(../images/businessinformation/p-businessinformation__industrial-waste-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 78px;
  padding-bottom: 4.875rem;
}

.p-businessinformation__industrial-waste::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, .87);
}

.p-businessinformation__industrial-waste__title {
  margin-top: 0px;
  margin-top: 0rem;
}

.p-businessinformation__industrial-waste-list {
  margin-top: 9px;
  margin-top: 0.5625rem;
}

.p-businessinformation__industrial-waste-pictures {
  display: block;
  margin-top: 6px;
  margin-top: 0.375rem;
}

@media screen and (min-width: 768px) {
  .p-businessinformation__industrial-waste-pictures {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.p-businessinformation__industrial-waste-picture {
  width: 100%;
  max-width: 400px;
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-businessinformation__industrial-waste-picture {
    width: 27.5510204082%;
  }
}
.p-businessinformation__industrial-waste-picture:nth-child(n+4) {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-businessinformation__industrial-waste-image-text,
.p-businessinformation__industrial-waste-image-text--nomark {
  position: relative;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  letter-spacing: 0.1em;
  margin-top: 0px;
  margin-top: 0rem;
  padding-left: 10px;
  padding-left: 0.625rem;
}

.p-businessinformation__industrial-waste-image-text--nomark {
  padding-left: 0;
}

.p-businessinformation__industrial-waste-image-text::before {
  position: absolute;
  display: block;
  content: "";
  top: 8px;
  top: 0.5rem;
  left: 0;
  width: 6px;
  width: 0.375rem;
  height: 6px;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #1ba5c4;
}

.p-businessinformation__industrial-waste-subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #1ba5c4;
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.p-businessinformation__industrial-waste-bottom-text {
  margin-top: 31px;
  margin-top: 1.9375rem;
  letter-spacing: 0.03em;
}

.p-businessinformation__cycle-recycle {
  padding-top: 25px;
  padding-top: 1.5625rem;
}

.p-businessinformation__cycle-recycle__title {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 1.3333333333;
  color: #1ba5c4;
  padding-bottom: 18px;
  padding-bottom: 1.125rem;
  border-bottom: 1px solid #b2b2b2;
}

.p-businessinformation__cycle-recycle__text {
  margin-top: 21px;
  margin-top: 1.3125rem;
  line-height: 1.3333333333;
  letter-spacing: 0.03em;
}

.p-businessinformation__container-box {
  padding-top: 25px;
  padding-top: 1.5625rem;
}

.p-businessinformation__container-box__title {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 1.3333333333;
  color: #1ba5c4;
  padding-bottom: 18px;
  padding-bottom: 1.125rem;
  border-bottom: 1px solid #b2b2b2;
}

.p-businessinformation__container-box__text {
  margin-top: 18px;
  margin-top: 1.125rem;
  letter-spacing: 0.03em;
}

.p-businessinformation__incinerator {
  padding-top: 88px;
  padding-top: 5.5rem;
}

.p-businessinformation__incinerator__title {
  margin-top: 0px;
  margin-top: 0rem;
}

.p-businessinformation__incinerator__text {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-businessinformation__incinerator__text span {
  font-weight: bold;
}

.p-businessinformation__incinerator__list {
  display: block;
  margin-top: 7px;
  margin-top: 0.4375rem;
}

@media screen and (min-width: 768px) {
  .p-businessinformation__incinerator__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-businessinformation__incinerator__image {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-businessinformation__incinerator__image {
    width: 16.3265306122%;
  }
}
.p-businessinformation__incinerator__subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #1ba5c4;
  margin-top: 26px;
  margin-top: 1.625rem;
}

.p-businessinformation__abandoned-ship {
  padding-top: 94px;
  padding-top: 5.875rem;
}

.p-businessinformation__abandoned-ship__title {
  margin-top: 0;
}

.p-businessinformation__abandoned-ship__text {
  margin-top: 14px;
  margin-top: 0.875rem;
}

.p-businessinformation__freon-gas__title {
  margin-top: 0;
}

.p-businessinformation__freon-gas {
  padding-top: 102px;
  padding-top: 6.375rem;
}

.p-businessinformation__freon-gas__text {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-businessinformation__freon-gas__text span {
  font-weight: bold;
}

.p-businessinformation__home-appliance {
  padding-top: 100px;
  padding-top: 6.25rem;
}

.p-businessinformation__home-appliance__title {
  margin-top: 0;
}

.p-businessinformation__home-appliance__large-text {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.1538461538;
  letter-spacing: 0.1em;
  color: #1ba5c4;
  background-color: rgba(27, 165, 196, .15);
  border-radius: 15px;
  text-align: center;
  margin-top: 21px;
  margin-top: 1.3125rem;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .p-businessinformation__home-appliance__large-text {
    font-size: 1.625rem;
  }
}
.p-businessinformation__home-appliance__subtitle {
  margin-top: 43px;
  margin-top: 2.6875rem;
}

.p-businessinformation__home-appliance__text {
  margin-top: 6px;
  margin-top: 0.375rem;
}

.p-businessinformation__home-appliance__text--red {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4166666667;
  letter-spacing: 0.05em;
  color: #ff0000;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-businessinformation__home-appliance__image {
  margin-top: 72px;
  margin-top: 4.5rem;
  margin-bottom: 63px;
  margin-bottom: 3.9375rem;
}

.p-businessinformation-contact {
  margin-top: 96px;
  margin-top: 6rem;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
  border-top: 1px solid #b2b2b2;
  border-bottom: 1px solid #b2b2b2;
  padding: 30px 5px 25px 5px;
  padding: 1.875rem 0.3125rem 1.5625rem 0.3125rem;
}

.p-businessinformation__telephone-box-text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1ba5c4;
  color: #fff;
  height: 45px;
  border-radius: 5px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 17px;
}

@media screen and (min-width: 768px) {
  .p-businessinformation__telephone-box-text {
    font-size: 0.9375rem;
  }
}
.p-businessinformation__telephone-box-text::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top: 8px solid #1ba5c4;
}

.p-businessinformation-contact__telephone {
  display: block;
  margin-top: 14px;
  margin-top: 0.875rem;
}

@media screen and (min-width: 768px) {
  .p-businessinformation-contact__telephone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-businessinformation-contact-title {
  margin-top: 21px;
  margin-top: 1.3125rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
}

.p-businessinformation-contact__telephone-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 768px) {
  .p-businessinformation-contact__telephone-box:first-child {
    border-right: 1px solid #707070;
  }
}
.p-businessinformation-contact__email-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-businessinformation-contact__telephone-box img {
  width: 60px;
  width: 3.75rem;
  display: inline-block;
  vertical-align: middle;
}

.p-businessinformation-contact__telephone-box a {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 0.85;
  vertical-align: middle;
  letter-spacing: 0;
}

@media screen and (min-width: 768px) {
  .p-businessinformation-contact__telephone-box a {
    font-size: 2.5rem;
  }
}
.p-businessinformation-contact__telephone-box-text {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: bold;
  letter-spacing: 0.3em;
  line-height: 2;
}

.p-businessinformation-contact__email-box-text {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: bold;
  letter-spacing: 0.3em;
  line-height: 2;
}

.p-businessinformation-contact__email-box img {
  width: 68px;
  width: 4.25rem;
  display: inline-block;
  vertical-align: middle;
}

.p-businessinformation-contact__email-box span {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.4615384615;
  vertical-align: middle;
}

.p-businessinformation-contact__detail {
  text-align: center;
  margin-top: 23px;
  margin-top: 1.4375rem;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.9230769231;
}

.p-businessinformation-contact2 {
  margin-top: 93px;
  margin-top: 5.8125rem;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
  border-top: 1px solid #bcbcbc;
  border-bottom: 1px solid #bcbcbc;
  padding: 37px 5px 40px 5px;
  padding: 2.3125rem 0.3125rem 2.5rem 0.3125rem;
}

.p-businessinformation-contact2__telephone {
  display: block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 17px;
  margin-top: 1.0625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-businessinformation-contact2-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-businessinformation-contact2__telephone-box {
  width: 100%;
  text-align: center;
}

.p-businessinformation-contact2__email-box {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-businessinformation-contact2__telephone-box img {
  width: 60px;
  width: 3.75rem;
  display: inline-block;
  vertical-align: middle;
}

.p-businessinformation-contact2__telephone-box a {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 0.85;
  vertical-align: middle;
  letter-spacing: 0;
}

.p-businessinformation-contact2__telephone-box-text {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: bold;
  letter-spacing: 0.3em;
  line-height: 2;
}

.p-businessinformation-contact2__email-box-text {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: bold;
  letter-spacing: 0.3em;
  line-height: 2;
}

.p-businessinformation-contact2__email-box img {
  width: 68px;
  width: 4.25rem;
  display: inline-block;
  vertical-align: middle;
}

.p-businessinformation-contact2__email-box span {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.4615384615;
  vertical-align: middle;
}

.p-businessinformation-contact2__detail {
  text-align: center;
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.9230769231;
}

.p-businessinformation__telephone-box-text2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1ba5c4;
  color: #fff;
  height: 45px;
  border-radius: 5px;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 30px;
}

@media screen and (min-width: 768px) {
  .p-businessinformation__telephone-box-text2 {
    padding: 0 50px;
  }
}
.p-businessinformation__telephone-box-text2::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top: 8px solid #1ba5c4;
}

@media screen and (min-width: 768px) {
  .p-businessinformation-contact2__telephone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-businessinformation-contact2-title {
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.5;
    text-align: center;
    margin-top: 1.25rem;
  }
  .p-businessinformation-contact2__telephone-box {
    width: 40.5930470348%;
    padding-right: 5px;
    text-align: left;
  }
  .p-businessinformation-contact2__email-box {
    width: 40.5930470348%;
    padding-top: 0.25rem;
    padding-bottom: 1.125rem;
    padding-left: 5.3169734151%;
    border-left: 1px #707070 solid;
    text-align: left;
    margin-top: 0;
  }
  .p-businessinformation-contact2__telephone-box img {
    width: 3.75rem;
    display: inline-block;
    vertical-align: middle;
    margin-left: -2rem;
  }
  .p-businessinformation-contact2__telephone-box a {
    display: inline-block;
    font-family: "Oswald", sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 0.85;
    vertical-align: middle;
    letter-spacing: 0;
  }
  .p-businessinformation-contact2__telephone-box-text {
    font-size: 1.0625rem;
    font-weight: bold;
    letter-spacing: 0.3em;
    line-height: 2;
    padding-left: 6px;
  }
  .p-businessinformation-contact2__email-box-text {
    font-size: 1.0625rem;
    font-weight: bold;
    letter-spacing: 0.3em;
    line-height: 2;
  }
  .p-businessinformation-contact2__email-box img {
    width: 4.25rem;
    display: inline-block;
    vertical-align: middle;
    margin-top: -0.375rem;
    margin-left: -1.25rem;
  }
  .p-businessinformation-contact2__email-box span {
    display: inline-block;
    font-size: 1.625rem;
    font-weight: bold;
    line-height: 1.4615384615;
    vertical-align: middle;
    letter-spacing: 0;
    margin-top: -0.6875rem;
    margin-left: 0.625rem;
  }
  .p-businessinformation-contact2__detail {
    text-align: center;
    margin-top: 1.375rem;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.9230769231;
  }
  .p-businessinformation-contact2 {
    padding: 1.875rem 0rem 1.5rem 0rem;
  }
}
.p-company {
  position: relative;
  background-image: url(../images/top/p-company-sp.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 54px;
  padding-top: 3.375rem;
}

.p-company::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: min(13.6974358974%, 53.42px);
  padding-top: min(49.6153846154%, 193.5px);
  background-image: url(../images/top/p-company_triangle-sp.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

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

.p-company__subtitle {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.p-company__text {
  width: 100vw;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7333333333;
  color: #fff;
  margin: 50px -20px 0 -20px;
  margin: 3.125rem -20px 0 -20px;
  padding: 25px 20px 29px 20px;
  padding: 1.5625rem 1.25rem 1.8125rem 1.25rem;
  min-height: 235px;
  background-color: rgba(51, 166, 69, .91);
}

.p-company__button {
  margin-top: 17px;
  margin-top: 1.0625rem;
}

@media screen and (min-width: 768px) {
  .p-company {
    background-image: url(../images/top/p-company.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 4.0625rem;
    padding-bottom: 4.875rem;
  }
  .p-company::before {
    display: none;
  }
  .p-company__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 4.5918367347%;
    padding-right: 0;
  }
  .p-company__text {
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 2;
    color: #fff;
    margin: 0;
    padding: 0;
    min-height: 0;
    margin-left: 12.4375rem;
    margin-top: 1.875rem;
    background-color: transparent;
    width: 49.0710382514%;
  }
}
.p-companyinformation-title {
  line-height: 1.2;
}

.p-companyinformation-firstview {
  background-image: url(../images/companyinformation/p-companyinformation-firstview.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.p-companyinformation__text {
  font-size: 15px;
  font-size: 0.9375rem;
  margin-top: 60px;
  margin-top: 3.75rem;
  letter-spacing: 0.1em;
}

.p-companyinformation__top-text {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 54px;
  margin-top: 3.375rem;
  text-align: center;
}

.p-companyinformation__main {
  margin-top: 72px;
  margin-top: 4.5rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.p-companyinformation__section-title {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #1ba5c4;
  text-align: center;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding-bottom: 14px;
  padding-bottom: 0.875rem;
  margin-top: 84px;
  margin-top: 5.25rem;
}

.p-companyinformation__section-title::before {
  position: absolute;
  display: block;
  content: "";
  bottom: -1.5px;
  left: calc(50% - 50px);
  width: 100px;
  height: 2px;
  background-color: rgba(27, 165, 196, .4);
}

.p-companyinformation__section-title::after {
  position: absolute;
  display: block;
  content: "";
  bottom: -1.5px;
  left: calc(50% - 50px);
  width: 50px;
  height: 2px;
  background-color: #1ba5c4;
}

.p-companyinformation__greeting-title {
  margin-top: 69px;
  margin-top: 4.3125rem;
}

.p-companyinformation__greeting-text {
  margin-top: 56px;
  margin-top: 3.5rem;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.1em;
}

.p-companyinformation__greeting-representative {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: bold;
  font-family: "Zen Old Mincho", serif;
  text-align: right;
  margin-top: 44px;
  margin-top: 2.75rem;
}

.p-companyinformation__greeting-representative span {
  padding-left: 20px;
  padding-left: 1.25rem;
  font-size: 25px;
  font-size: 1.5625rem;
}

.p-companyinformation__overview-table {
  margin-top: 37px;
  margin-top: 2.3125rem;
  width: 100%;
}

.p-companyinformation__overview-table tr {
  position: relative;
}

.p-companyinformation__overview-table th {
  border-bottom: 2px solid #1ba5c4;
  padding-top: 26px;
  padding-top: 1.625rem;
  padding-bottom: 26px;
  padding-bottom: 1.625rem;
  width: 115px;
  width: 7.1875rem;
  text-align: left;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
  color: #1ba5c4;
  vertical-align: top;
}

.p-companyinformation__overview-table td {
  border-bottom: 1px solid rgba(27, 165, 196, .4);
  padding-top: 26px;
  padding-top: 1.625rem;
  padding-bottom: 26px;
  padding-bottom: 1.625rem;
}

.p-companyinformation__overview-table-nomargin tr:nth-child(n+2) {
  margin-top: 10px;
  margin-top: 0.625rem;
  display: block;
}

.p-companyinformation__overview-table-nomargin th {
  border: none;
  font-weight: 400;
  color: #000;
  width: 150px;
  width: 9.375rem;
  padding-top: 0;
  padding-bottom: 0;
  vertical-align: top;
  line-height: 1.7;
  display: block;
}

.p-companyinformation__overview-table-nomargin td {
  border: none;
  width: 196px;
  width: 12.25rem;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
}

@media screen and (min-width: 768px) {
  .p-companyinformation__overview-table-nomargin tr:nth-child(n+2) {
    margin-top: 0;
    display: table-row;
  }
  .p-companyinformation__overview-table-nomargin th {
    display: table-cell;
  }
  .p-companyinformation__overview-table-nomargin td {
    display: table-cell;
  }
}
.p-companyinformation__overview-link {
  margin-top: 17px;
  margin-top: 1.0625rem;
}

.p-companyinformation__section-title__delivery {
  margin-top: 92px;
  margin-top: 5.75rem;
}

.p-companyinformation__section-title__supplier {
  margin-top: 92px;
  margin-top: 5.75rem;
}

.p-companyinformation__section-title__business-hours {
  margin-top: 92px;
  margin-top: 5.75rem;
}

.p-companyinformation__business-hours-table {
  margin-top: 22px;
  margin-top: 1.375rem;
  width: 100%;
}

.p-companyinformation__business-hours-table th {
  border-bottom: 2px solid #1ba5c4;
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  width: 96px;
  width: 6rem;
  text-align: left;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
  color: #1ba5c4;
  vertical-align: top;
}

.p-companyinformation__business-hours-table td {
  border-bottom: 1px solid rgba(27, 165, 196, .4);
  padding-top: 26px;
  padding-top: 1.625rem;
  padding-bottom: 26px;
  padding-bottom: 1.625rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  line-height: 1.75;
  letter-spacing: -0.04em;
}

.p-companyinformation__business-hours-table .th--udon {
  width: 128px;
  width: 8rem;
}

.p-companyinformation__business-hours-table .td--udon {
  padding-left: 26px;
  padding-left: 1.625rem;
}

@media screen and (min-width: 768px) {
  .p-companyinformation__business-hours-table .td--udon {
    padding-left: 3.9375rem;
  }
}
.p-companyinformation__section-title__access {
  margin-top: 87px;
  margin-top: 5.4375rem;
}

.p-companyinformation__access-image {
  display: block;
  margin-top: 47px;
  margin-top: 2.9375rem;
}

.p-companyinformation__permission-text {
  display: block;
}

.p-companyinformation__section-title__history {
  margin-top: 96px;
  margin-top: 6rem;
}

.p-companyinformation__history-table {
  margin-top: 33px;
  margin-top: 2.0625rem;
  width: 100%;
}

.p-companyinformation__history-table tr {
  margin-top: 10px;
  margin-top: 0.625rem;
}

@media screen and (min-width: 768px) {
  .p-companyinformation__history-table tr {
    margin-top: 0;
  }
}
.p-companyinformation__history-table th {
  border-bottom: 2px solid #1ba5c4;
  padding-top: 27px;
  padding-top: 1.6875rem;
  padding-bottom: 27px;
  padding-bottom: 1.6875rem;
  width: 100px;
  text-align: left;
  font-size: 12px;
  font-weight: bold;
  color: #1ba5c4;
  vertical-align: top;
}

@media screen and (min-width: 768px) {
  .p-companyinformation__history-table th {
    width: 8.1875rem;
    font-size: 0.9375rem;
  }
}
.p-companyinformation__history-table td {
  border-bottom: 1px solid rgba(27, 165, 196, .4);
  padding-top: 27px;
  padding-top: 1.6875rem;
  padding-bottom: 27px;
  padding-bottom: 1.6875rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  line-height: 1.3333333333;
  font-size: 12px;
  display: block;
}

@media screen and (min-width: 768px) {
  .p-companyinformation__history-table td {
    font-size: 0.9375rem;
    display: table-cell;
  }
}
.p-companyinformation__history-td1 {
  width: 143px;
  width: 8.9375rem;
}

td.p-companyinformation__history-td-nomargin {
  padding: 0;
}

.p-companyinformation__history-table-nomargin td {
  border: none;
}

.p-companyinformation__history-table-nomargin tr:nth-child(2) td {
  padding-top: 0;
}

.p-companyinformation__facility-list {
  display: block;
  margin-top: 52px;
  margin-top: 3.25rem;
}

@media screen and (min-width: 768px) {
  .p-companyinformation__facility-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-companyinformation__facility-list1 {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-companyinformation__facility-list1 {
    width: 370px;
  }
}
.p-companyinformation__facility-list dl dt,
.p-companyinformation__facility-list dl dd {
  display: inline-block;
}

.p-companyinformation__facility-list dl dt {
  width: 100%;
  line-height: 1.82;
  padding-left: 0;
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-companyinformation__facility-list dl dt {
    padding-left: 12px;
    width: 332px;
    margin-top: 0;
  }
}
.p-companyinformation__facility-list dl .p-companyinformation__facility-list--nomargin {
  margin-top: 0;
}

.p-companyinformation__facility-list dl dd {
  width: 34px;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .p-companyinformation__facility-list dl dd {
    text-align: right;
  }
}
.p-companyinformation__facility-picture-list {
  margin-top: 30px;
  margin-top: 1.875rem;
  display: block;
}

@media screen and (min-width: 768px) {
  .p-companyinformation__facility-picture-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.0408163265%;
  }
}
.p-companyinformation__facility-picture-text {
  text-align: center;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-companyinformation__facility-picture-box {
  width: 100%;
}

.p-companyinformation__facility-picture-box:nth-child(n+2) {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-companyinformation__facility-picture-box {
    width: 25%;
  }
  .p-companyinformation__facility-picture-box:nth-child(n+2) {
    margin-top: 0;
  }
}
.p-companyinformation__ISO-picture-list {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-companyinformation__ISO-picture-list {
    margin-top: 0;
  }
}
.p-companyinformation__section-title__ISO {
  margin-top: 94px;
  margin-top: 5.875rem;
}

.p-companyinformation__ISO-text {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  margin-top: 57px;
  margin-top: 3.5625rem;
}

.p-companyinformation__ISO-text-large {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #1ba5c4;
  margin-top: 14px;
  margin-top: 0.875rem;
}

.p-companyinformation__ISO-picture {
  display: block;
  width: 100%;
}

.p-companyinformation__ISO-subtitle {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 1.3333333333;
  color: #1ba5c4;
  margin-top: 28px;
  margin-top: 1.75rem;
}

.p-companyinformation__ISO-subtext {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

@media screen and (min-width: 768px) {
  .p-companyinformation__ISO-picture {
    width: 350px;
    margin-top: 1.625rem;
  }
}
.p-companyinformation__section-title__permission {
  margin-top: 93px;
  margin-top: 5.8125rem;
}

.p-companyinformation__section-title__factory-tour {
  margin-top: 87px;
  margin-top: 5.4375rem;
}

.p-companyinformation__section-title__contributions {
  margin-top: 90px;
  margin-top: 5.625rem;
}

.p-companyinformation__contributions-block {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-companyinformation__contributions-title {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 1.3333333333;
  color: #1ba5c4;
}

.p-companyinformation__contributions-text {
  font-size: 15px;
  font-size: 0.9375rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
  line-height: 1.9;
}

.p-companyinformation__contributions-item {
  margin-top: 5px;
  margin-top: 0.3125rem;
  margin-left: -8px;
  margin-left: -0.5rem;
  letter-spacing: 0;
  font-size: 15px;
  font-size: 0.9375rem;
}

.p-companyinformation__contributions-pictures {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.0408163265%;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-companyinformation__contributions-picture {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-companyinformation__contributions-picture {
    width: 14.375rem;
  }
}
.p-companyinformation__contributions-text {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.p-companyinformation__contributions-pictures {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.0408163265%;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-companyinformation__contributions-picture {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-companyinformation__contributions-picture {
    width: 14.375rem;
  }
}
.p-contact__button img {
  display: inline;
  width: 60px;
  vertical-align: middle;
}

.p-contact__subtitle {
  margin-top: -4px;
  margin-top: -0.25rem;
}

.p-contact__text {
  font-size: 15px;
  font-size: 0.9375rem;
  margin-top: 12px;
  margin-top: 0.75rem;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.6666666667;
}

.p-contact__telephone-box-text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1ba5c4;
  color: #fff;
  height: 45px;
  border-radius: 5px;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0 auto;
  width: 95.7142857143%;
}

.p-contact__telephone-box-text::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top: 8px solid #1ba5c4;
}

.p-contact__telephone-box {
  text-align: center;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-contact__telephone-box:nth-child(2) {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-contact__telephone-box img {
  display: inline;
  width: 60px;
  vertical-align: middle;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-contact__telephone-box a {
  font-size: 32px;
  font-weight: 500;
  line-height: 0.85;
  vertical-align: middle;
  font-family: "Oswald", sans-serif;
  display: inline-block;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-contact__detail {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.9230769231;
  margin-top: 16px;
  margin-top: 1rem;
  text-align: center;
}

.p-contact__button {
  margin: 0 auto;
  margin-top: 37px;
  text-align: center;
  border: 1px solid #707070;
  border-radius: 5px;
  width: 96.2643678161%;
}

.p-contact__button a {
  display: block;
  padding: 19px 0 12px;
}

.p-contact__button-text {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 2;
}

.p-contact__button span {
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.4782608696;
  margin-top: -5px;
  margin-top: -0.3125rem;
  margin-left: 10px;
  margin-left: 0.625rem;
}

.p-contact__button img {
  margin-top: -5px;
  margin-top: -0.3125rem;
  margin-left: -9px;
  margin-left: -0.5625rem;
}

@media screen and (min-width: 768px) {
  .p-contact__text {
    margin-top: 0.75rem;
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 2;
  }
  .p-contact__subtitle {
    margin-top: -0.625rem;
  }
  .p-contact__telephone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 2.0625rem;
  }
  .p-contact__telephone-box {
    width: 39.9489795918%;
    padding-right: 5.7653061224%;
    text-align: center;
    margin-top: 0;
  }
  .p-contact__telephone-box:nth-child(2) {
    margin-top: 0;
  }
  .p-contact__telephone-box + .p-contact__telephone-box {
    width: 40.4591836735%;
    border-left: 1px #707070 solid;
    padding-right: 0;
    padding-left: 6.2755102041%;
  }
  .p-contact__telephone-box img {
    margin-top: 0.9375rem;
  }
  .p-contact__telephone-box a {
    display: inline-block;
    font-family: "Oswald", sans-serif;
    font-size: max(min(2.66667vw, 40px), 27px);
    font-weight: 500;
    line-height: 0.85;
    margin-top: 0.9375rem;
  }
  .p-contact__telephone-box-text {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #1ba5c4;
    color: #fff;
    height: 45px;
    border-radius: 5px;
    width: 100%;
  }
  .p-contact__telephone-box-text::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border: 8px solid transparent;
    border-top: 10px solid #1ba5c4;
  }
  .p-contact__detail {
    text-align: center;
    margin-top: 1.375rem;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.9230769231;
  }
  .p-contact__button {
    width: 81.1224489796%;
    margin: 0 auto;
    margin-top: 2.1875rem;
    border: 1px solid #707070;
    border-radius: 5px;
    text-align: center;
  }
  .p-contact__button a {
    display: block;
    padding-top: 1.1875rem;
    padding-bottom: 0.8125rem;
  }
  .p-contact__button-text {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    line-height: 2;
    text-align: center;
  }
  .p-contact__button span {
    display: inline-block;
    margin-top: -0.625rem;
    font-size: 1.4375rem;
    font-weight: 700;
    line-height: 1.4782608696;
    vertical-align: middle;
    margin-left: 0.8125rem;
  }
  .p-contact__button img {
    margin: 0;
    margin-top: -0.3125rem;
  }
}
.p-faq-firstview {
  height: 349px;
  background-image: url(../images/faq/p-faq-firstview.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.p-faq-page__category-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.1538461538;
  color: #fff;
  background-color: #1dafc7;
  border: 1px solid #efefef;
  border-radius: 10px;
  padding: 24px 0px 24px 0px;
  padding: 1.5rem 0rem 1.5rem 0rem;
  text-align: center;
}

.p-faq-page__wrapper {
  margin-top: 58px;
  margin-top: 3.625rem;
}

.p-faq-page__wrapper:first-of-type {
  margin-top: 48px;
  margin-top: 3rem;
}

.p-faq-page__category-items {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-faq-page__category-items:first-of-type {
  margin-top: 17px;
  margin-top: 1.0625rem;
}

.p-faq-page__category-item:not(:first-child) {
  margin-top: 33px;
  margin-top: 2.0625rem;
}

.p-faq-page__category-post-title {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.7647058824;
  color: #1dafc7;
}

.p-faq-page__category-post-content {
  display: inline-block;
  margin-left: 20px;
  margin-left: 1.25rem;
  margin-top: 14px;
  margin-top: 0.875rem;
}

.p-faq-page__category-post-content p {
  display: inline;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7647058824;
  color: #000;
}

@media screen and (min-width: 768px) {
  .p-faq-page__category-title {
    font-size: 1.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.1538461538;
    color: #fff;
    background-color: #1dafc7;
    border: 1px solid #efefef;
    border-radius: 10px;
    padding: 1.5rem 0rem 1.5rem 2.6875rem;
    text-align: left;
  }
  .p-faq-page__category-post-content {
    display: inline-block;
    margin-left: 2.5rem;
    margin-top: 0.875rem;
  }
}
.p-faq {
  background-image: url(../images/top/p-faq-sp.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 47px;
  padding-top: 2.9375rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}

.p-faq__button {
  width: 100%;
  margin: 0 auto;
  border: 1px solid #000;
  background-color: transparent;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  opacity: 1;
}

.p-faq__button img {
  display: inline;
  width: 65px;
  vertical-align: middle;
}

.p-faq__button span {
  display: inline-block;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1.36;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  color: #000;
}

.p-faq__button a {
  display: block;
  text-align: center;
  padding: 20px 0px 10px 0px;
  padding: 1.25rem 0px 0.625rem 0px;
}

.p-faq__text {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.6666666667;
  text-align: center;
  margin-top: 13px;
  margin-top: 0.8125rem;
}

@media screen and (min-width: 768px) {
  .p-faq {
    background-image: url(../images/top/p-faq.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 6.875rem;
    padding-bottom: 6.5rem;
  }
  .p-faq__button {
    width: 53.1632653061%;
    margin: 0 auto;
    border: 1px solid #000;
  }
  .p-faq__button a {
    display: block;
    text-align: center;
    padding: 1.375rem 0rem 0.5625rem 0rem;
  }
  .p-faq__button img {
    display: inline;
    width: 12.4760076775%;
    vertical-align: middle;
  }
  .p-faq__button span {
    font-size: 1.5625rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    line-height: 1.36;
  }
  .p-faq__text {
    width: 53.1632653061%;
    margin: 0 auto;
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    line-height: 2;
    margin-top: 0.9375rem;
  }
}
.p-firstview {
  position: relative;
  padding-top: min(175.3846153846%, 100vh);
  background-image: url(../images/top/p-firstview-sp.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-firstview::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-image: url(../images/top/p-firstview-bg.png);
  background-position: 0 -10%;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-firstview__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
  font-size: min(max(5.38462vw, 21px), 30px);
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 2.380952381;
  color: #fff;
  text-shadow: 0 3px 6px #111;
}

@media screen and (min-width: 768px) {
  .p-firstview {
    position: relative;
    height: 100vh;
    padding-top: 0;
    background-image: url(../images/top/p-firstview.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .p-firstview__text {
    font-size: 2.5rem;
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    text-align: center;
    letter-spacing: 0.3em;
    line-height: 1.75;
    color: #fff;
    text-shadow: 0 3px 6px #111;
    margin-top: 2.6875rem;
  }
}
.p-footer__image {
  width: 50.8571428571%;
}

.p-footer__items {
  display: none;
}

.p-footer__box {
  margin-top: 61px;
  margin-top: 3.8125rem;
}

.p-footer__image {
  margin: 0 auto;
}

.p-footer__company-name {
  margin-top: 21px;
  margin-top: 1.3125rem;
  text-align: center;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 2;
}

.p-footer__information-box {
  text-align: center;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-footer__information-box:not(:first-of-type) {
  margin-top: 17px;
  margin-top: 1.0625rem;
}

.p-footer__information-box-name {
  font-weight: 700;
}

.p-footer__information-box-address,
.p-footer__information-box-phone {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6666666667;
}

.p-footer__copyright {
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 3.4;
  text-align: center;
  margin-top: 58px;
  margin-top: 3.625rem;
  padding-bottom: 61px;
  padding-bottom: 3.8125rem;
}

@media screen and (min-width: 768px) {
  .p-footer {
    padding-bottom: 5rem;
  }
  .p-footer__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 95.7142857143%;
    margin: 0 auto;
  }
  .p-footer__item {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1;
  }
  .p-footer__item:first-child {
    padding-left: 0;
    padding-right: 7px;
  }
  .p-footer__item:not(:first-child) {
    padding-left: 7px;
    padding-right: 7px;
    border-left: 1px solid #000;
  }
  .p-footer__item:last-child {
    padding-left: 7px;
    padding-right: 0;
  }
  .p-footer__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 3.3125rem;
    margin-left: 1.5625rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-footer__image {
    margin: 0;
    margin-top: 3.375rem;
    width: 19.7777777778%;
  }
  .p-footer__detail {
    margin-left: 2.75rem;
    width: 23.3125rem;
  }
  .p-footer__company-name {
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 2;
    text-align: left;
  }
  .p-footer__information-box:not(:first-of-type) {
    margin-top: 0.3125rem;
  }
  .p-footer__information-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0.5625rem;
  }
  .p-footer__information-box-address {
    margin-left: 0.8333333333em;
  }
  .p-footer__information-box-phone {
    margin-left: 0.8333333333em;
  }
  .p-footer__information-box-name {
    font-weight: 400;
  }
  .p-footer__copyright {
    margin-top: 1.25rem;
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .p-footer__items {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-footer__item:first-child {
    padding-left: 0;
    padding-right: 1em;
  }
  .p-footer__item:not(:first-child) {
    padding-left: 1em;
    padding-right: 1em;
    border-left: 1px solid #000;
  }
  .p-footer__item:last-child {
    padding-left: 1em;
    padding-right: 0;
  }
}
.l-header__box-sp {
  padding: 16px 17px 10px 17px;
  padding: 1rem 1.0625rem 0.625rem 1.0625rem;
  background-color: #7da826;
  width: 75px;
  width: 4.6875rem;
  height: 75px;
  height: 4.6875rem;
  text-align: center;
}

.l-header__hamburger-button {
  position: relative;
  padding: 0;
  background-color: transparent;
  z-index: 5;
}

.l-header__hamburger-button span {
  display: block;
  width: 41px;
  width: 2.5625rem;
  height: 4px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 2px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.l-header__hamburger-button span:nth-child(2) {
  margin-top: 5px;
  margin-top: 0.3125rem;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}

.l-header__box-sp-text {
  text-transform: uppercase;
  color: #fff;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4615384615;
}

.l-header__hamburger-button[aria-expanded=true] span:nth-child(1) {
  width: 41px;
  width: 2.5625rem;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: translate(0px, 9px) rotate(135deg);
          transform: translate(0px, 9px) rotate(135deg);
}
.l-header__hamburger-button[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger-button[aria-expanded=true] span:nth-child(3) {
  width: 41px;
  width: 2.5625rem;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: translate(0px, -9px) rotate(-135deg);
          transform: translate(0px, -9px) rotate(-135deg);
}

.l-header__splogo {
  width: 189.53px;
  width: 11.845625rem;
  margin-top: 4.8px;
  margin-top: 0.3rem;
  z-index: 5;
}

.l-header__menu-sp {
  position: absolute;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 0px 20px 20px 20px;
  padding: 0rem 1.25rem 1.25rem 1.25rem;
  background-color: #7da826;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(-300px);
          transform: translateY(-300px);
  overflow: scroll;
}

.l-header__menu-sp[aria-hidden=false] {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.l-header__menu-sp-items {
  display: block;
  list-style: none;
  width: 100%;
  padding-top: 105px;
  padding-top: 6.5625rem;
}

.l-header__menu-sp-item {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
  border-bottom: 1px solid #fff;
  color: #fff;
}

.l-header__menu-sp-item:first-child {
  border-top: 1px solid #fff;
}

.l-header__menu-sp-item a {
  display: block;
  padding: 22px 0;
  padding: 1.375rem 0;
  line-height: 1;
}

.l-header__menu-sp-text--small {
  margin-top: 18.5px;
  margin-top: 1.15625rem;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5384615385;
  text-align: center;
}

.l-header__menu-sp-text--large {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4444444444;
  text-align: center;
}

.l-header__menu-sp-button--phone {
  display: block;
  margin: 0 auto;
  margin-top: 7px;
  margin-top: 0.4375rem;
  padding: 2px 16px 5px 15.6px;
  padding: 0.125rem 1rem 0.3125rem 0.975rem;
  background-color: #5654a2;
  border-radius: 5px;
}

.l-header__menu-sp-button-text--large {
  display: block;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.4666666667;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.l-header__menu-sp-button-text--small {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}

.l-header__menu-sp-button--inquiry {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 17px;
  margin-top: 1.0625rem;
  text-align: center;
  color: #fff;
}

.l-header__menu-sp-button--inquiry a {
  padding: 13px 42px 13px 52px;
  padding: 0.8125rem 2.625rem 0.8125rem 3.25rem;
  background-color: #5654a2;
  border-radius: 5px;
}

.l-header__menu-sp-link {
  width: 95.7142857143%;
  background-color: #1ba5c4;
  border-radius: 5px;
  text-align: center;
  margin: 0 auto;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.l-header__menu-sp-link a {
  display: block;
  padding: 9px 0;
  padding: 0.5625rem 0;
}

.l-header__menu-sp-link:first-of-type {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.l-header__menu-sp-link img {
  display: inline;
  vertical-align: middle;
  width: 42px;
  width: 2.625rem;
  height: 42px;
  height: 2.625rem;
}

.l-header__menu-sp-link span {
  vertical-align: middle;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2.4285714286;
  color: #fff;
}

.l-header__menu-sp-detail {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5384615385;
  color: #fff;
  text-align: center;
  margin-top: 11px;
  margin-top: 0.6875rem;
}

.l-header__menu-sp-inquiry {
  width: 95.7142857143%;
  padding: 9px 0;
  padding: 0.5625rem 0;
  background-color: #59800a;
  border-radius: 5px;
  text-align: center;
  margin: 0 auto;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.l-header__menu-sp-inquiry img {
  display: inline;
  vertical-align: middle;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
}

.l-header__menu-sp-inquiry span {
  vertical-align: middle;
  font-weight: bold;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .l-header-sp {
    display: none;
  }
}
.p-header {
  position: fixed;
  width: 100%;
  padding-left: 22px;
  padding-left: 1.375rem;
  z-index: 999;
  background-color: transparent;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.js-change-color {
  background-color: rgba(255, 255, 255, .5);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.p-header__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__logo {
  display: block;
  width: 123.51px;
  width: 7.719375rem;
  z-index: 0;
  pointer-events: auto;
}

.p-header__logo-sp {
  display: none;
  position: absolute;
  width: 123.51px;
  width: 7.719375rem;
}

.p-header__items {
  display: none;
}

.p-header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__inquiry {
  width: 75px;
  width: 4.6875rem;
  margin-left: 50px;
  margin-left: 3.125rem;
  pointer-events: auto;
}

@media screen and (min-width: 768px) {
  .p-header {
    position: fixed;
    width: 100%;
    padding-left: 2.90625rem;
    pointer-events: none;
  }
  .p-header__logo {
    width: 9.17rem;
  }
  .p-header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-header__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    pointer-events: auto;
  }
  .p-header__item {
    margin-left: 2.21354vw;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 2.2666666667;
  }
  .p-header__item:first-child {
    margin-left: 0;
  }
  .p-header__inquiry {
    width: 5.625rem;
    margin-left: 3.125rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-header__item {
    margin-left: 2.56vw;
  }
}
.p-inquiry-firstview {
  height: 349px;
  background-image: url(../images/inquiry/p-inquiry-firstview.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

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

.p-inquiry__form-title {
  text-align: center;
  margin-top: 94px;
  margin-top: 5.875rem;
}

.p-inquiry__form-texts {
  background-color: #1ba5c4;
  color: #fff;
  padding: 13px 10px 36px 10px;
  padding: 0.8125rem 0.625rem 2.25rem 0.625rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-inquiry__form-subtitle {
  width: 90.2040816327%;
  margin: 0 auto;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.7647058824;
  margin-top: 26px;
  margin-top: 1.625rem;
}

.p-inquiry__form-items {
  width: 88.6734693878%;
  margin: 0 auto;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  list-style: square;
}

.p-inquiry__form-text {
  width: 90.2040816327%;
  margin: 0 auto;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
}

.p-inquiry__form-main {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-inquiry__form-main form p {
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.p-inquiry__form-main form .p-inquiry__wrapper p {
  border-bottom: 1px solid #ccc;
}

.p-inquiry__label {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4285714286;
  color: #464646;
}

.p-inquiry__label-flex {
  display: block;
  border-bottom: 1px solid #ccc;
}

.p-inquiry__first-label {
  display: inline-block;
  position: relative;
  width: 342px;
  width: 21.375rem;
  padding-left: 80px;
  padding-left: 5rem;
}

.p-inquiry__form-main form .p-inquiry__wrapper .p-inquiry__label-flex p {
  border: none;
}

.p-inquiry__first-label.__required::before {
  position: absolute;
  display: block;
  content: "必須";
  top: 50%;
  left: 5px;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  width: 40px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4285714286;
  color: #fff;
  background-color: #e82e8b;
  border-radius: 5px;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
}

.p-inquiry__first-label.__any::before {
  position: absolute;
  display: block;
  content: "任意";
  top: 50%;
  left: 5px;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  width: 40px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4285714286;
  color: #e82e8b;
  background-color: #fff;
  border: 1px solid #e82e8b;
  border-radius: 5px;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
}

.p-inquiry__label input {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4285714286;
  background-color: rgba(27, 165, 196, .1);
  padding: 11px 17px;
  padding: 0.6875rem 1.0625rem;
  width: 100%;
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-inquiry__label input::-webkit-input-placeholder {
  color: #9b9b9b;
}

.p-inquiry__label input::-moz-placeholder {
  color: #9b9b9b;
}

.p-inquiry__label input::-ms-input-placeholder {
  color: #9b9b9b;
}

.p-inquiry__label input::placeholder {
  color: #9b9b9b;
}

.p-inquiry__labels {
  width: 100%;
}

form input[type=checkbox] {
  width: auto;
}

form input[type=checkbox] ~ span {
  padding-left: 33px;
  padding-left: 2.0625rem;
  position: relative;
  line-height: 20px;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

form .wpcf7-list-item.first input[type=checkbox] ~ span {
  margin-top: 19px;
  margin-top: 1.1875rem;
}

form input[type=checkbox] ~ span::before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  width: 20px;
  height: 20px;
  background-color: #e6f5f8;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
}

form input[type=checkbox] ~ span::after {
  position: absolute;
  left: 7px;
  margin-top: 2px;
  width: 7px;
  height: 14px;
  border-right: 3px solid #1ba5c4;
  border-bottom: 3px solid #1ba5c4;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  opacity: 0;
}

form input[type=checkbox]:checked ~ span::after {
  opacity: 1;
}

.p-inquiry__labels .wpcf7-validates-as-required {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-inquiry__labels .wpcf7-validates-as-required textarea {
  padding-left: 25px;
  padding-left: 1.5625rem;
}

.p-inquiry__labels .wpcf7-validates-as-required .wpcf7-list-item {
  margin-left: 0;
}

.p-inquiry__labels textarea {
  background-color: rgba(27, 165, 196, .1);
  width: 100%;
  height: 135px;
  height: 8.4375rem;
  font-weight: 400;
  padding-top: 18px;
  padding-top: 1.125rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
}

.p-inquiry-box {
  margin-top: 56px;
  margin-top: 3.5rem;
  padding: 0 20px;
  padding: 0 1.25rem;
}

.p-inquiry-box-text {
  letter-spacing: 0;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-inquiry-box-text-thanks {
  text-align: center;
  margin-top: 78px;
  margin-top: 4.875rem;
  line-height: 2.6666666667;
  letter-spacing: 0;
  color: #222;
}

.p-inquiry-box-text-bold {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.7647058824;
  text-align: center;
  margin-top: 60px;
  margin-top: 3.75rem;
  color: #222;
}

.p-inquiry__send-button-area {
  text-align: center;
}

.p-inquiry__send-button-area input {
  opacity: 1;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.p-inquiry__send-button-area input:hover {
  opacity: 0.6;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

form .p-inquiry__send-button-area p {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2.2666666667;
  padding-top: 0px;
  padding-top: 0rem;
  padding-bottom: 0px;
  padding-bottom: 0rem;
}

form .p-inquiry__send-button-area .p-inquiry__send-button-message p {
  margin-top: 20px;
  margin-top: 1.25rem;
}

form .p-inquiry__send-button-area .p-inquiry__send-button-check p {
  margin-top: 11px;
  margin-top: 0.6875rem;
}

.p-inquiry__send-button-check .wpcf7-list-item {
  margin-left: 0px;
  margin-left: 0rem;
}

.p-inquiry__send-button-area .wpcf7-submit {
  display: block;
  padding: 10px 0 10px 0;
  padding: 0.625rem 0 0.625rem 0;
  width: 300px;
  width: 18.75rem;
  margin: 0 auto;
  margin-top: 32px;
  margin-top: 2rem;
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#4bc3d2), to(#3ca54d));
  background: linear-gradient(to right, #4bc3d2, #3ca54d);
  border-radius: 35px;
}

.wpcf7-list-item-label {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #000;
}

@media screen and (min-width: 768px) {
  .p-inquiry__label-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-inquiry__label-flex .p-inquiry__labels p {
    padding-top: 0.5rem;
  }
  .p-inquiry__form-texts {
    padding: 0.8125rem 0rem 2.25rem 0rem;
  }
  .p-inquiry__label input {
    margin-top: 0;
    width: 18.75rem;
  }
  .p-inquiry__first-label {
    display: inline-block;
    position: relative;
    width: 21.375rem;
    padding-left: 8rem;
  }
  .p-inquiry__first-label.__required::before {
    position: absolute;
    display: block;
    content: "必須";
    top: 50%;
    left: 39px;
    -webkit-transform: translatey(-50%);
            transform: translatey(-50%);
    width: 70px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4285714286;
    color: #fff;
    background-color: #e82e8b;
    border-radius: 5px;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .p-inquiry__first-label.__any::before {
    position: absolute;
    display: block;
    content: "任意";
    top: 50%;
    left: 39px;
    -webkit-transform: translatey(-50%);
            transform: translatey(-50%);
    width: 70px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4285714286;
    color: #e82e8b;
    background-color: #fff;
    border: 1px solid #e82e8b;
    border-radius: 5px;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .p-inquiry__labels textarea {
    width: 79.6238244514%;
  }
  .p-inquiry__send-button-area .wpcf7-submit {
    padding: 1.25rem 0 1.25rem 0;
  }
}
.p-permitlicense-firstview {
  height: 349px;
  background-image: url(../images/permitlicense/p-permitlicense-firstview.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.p-permitlicense-content {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 28px;
  padding-bottom: 1.75rem;
}

.p-permitlicense-table {
  margin: 0 auto;
  text-align: center;
}

.p-permitlicense-top-box {
  margin-top: 66px;
  margin-top: 4.125rem;
}

.p-permitlicense-top-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.p-permitlicense-top-text {
  margin-top: 15px;
  margin-top: 0.9375rem;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}

.p-permitlicense-disposal,
.p-permitlicense-transportation {
  margin-top: 66px;
  margin-top: 4.125rem;
}

.p-permitlicense-disposal-title,
.p-permitlicense-transportation-title {
  -moz-text-align-last: left;
       text-align-last: left;
  font-weight: 700;
  font-size: 15px;
  font-size: 0.9375rem;
}

.p-permitlicense-disposal-table,
.p-permitlicense-transportation-table {
  margin: 0 auto;
  margin-top: 23px;
  margin-top: 1.4375rem;
  width: 765px;
  border-bottom: 1px solid #b2b2b2;
  border-collapse: collapse;
}

.p-permitlicense-disposal-table-th,
.p-permitlicense-transportation-table-th {
  background-color: #1dafc7;
  height: 80px;
}

.p-permitlicense-disposal-table th,
.p-permitlicense-transportation-table th {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #fff;
  border: 1px solid #1dafc7;
}

.p-permitlicense-disposal-table-td,
.p-permitlicense-transportation-table-td {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.5384615385;
  height: 80px;
}

.p-permitlicense-disposal-table-categories,
.p-permitlicense-disposal-table-license {
  text-decoration: underline;
}

.p-permitlicense-items {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-permitlicense-item:not(:first-child) {
  margin-top: 34px;
  margin-top: 2.125rem;
}

.p-permitlicense-item-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.p-permitlicense-disposal-item-text {
  margin-top: 15px;
  margin-top: 0.9375rem;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
  background-color: #eaeaea;
  border: 1px solid #efefef;
  border-radius: 10px;
}

.p-permitlicense-disposal-item-text a {
  display: block;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}

.p-permitlicense-item-text {
  margin-top: 15px;
  margin-top: 0.9375rem;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
  background-color: #eaeaea;
  border: 1px solid #efefef;
  border-radius: 10px;
}

.p-permitlicense-item-text a {
  display: block;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}

.p-permitlicense__nofile {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.p-permitlicense-nofile__items {
  margin-top: 59px;
  margin-top: 3.6875rem;
}

.p-permitlicense-nofile__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-permitlicense-item-box {
  background-color: #eaeaea;
  border: 1px solid #efefef;
  border-radius: 10px;
  padding: 30px 0 28px 0;
  padding: 1.875rem 0 1.75rem 0;
}

.p-permitlicense-item-box-text {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}

.p-permitlicense-item-box-image {
  width: 80%;
  max-width: 350px;
  margin: 0 auto;
  margin-top: 22px;
  margin-top: 1.375rem;
  margin-bottom: 22px;
  margin-bottom: 1.375rem;
}

@media screen and (min-width: 768px) {
  .p-permitlicense-box {
    margin-top: 0;
  }
  .p-permitlicense-firstview {
    height: 349px;
    background-image: url(../images/permitlicense/p-permitlicense-firstview.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .p-permitlicense-content {
    padding-top: 3.75rem;
    padding-bottom: 1.75rem;
  }
  .p-permitlicense-table {
    margin: 0 auto;
    text-align: center;
  }
  .p-permitlicense-top-box {
    margin-top: 3.5625rem;
  }
  .p-permitlicense-top-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
  .p-permitlicense-top-text {
    margin-top: 0.8125rem;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.1em;
  }
  .p-permitlicense-disposal,
.p-permitlicense-transportation {
    margin-top: 3.75rem;
  }
  .p-permitlicense-disposal-title,
.p-permitlicense-transportation-title {
    -moz-text-align-last: left;
         text-align-last: left;
    letter-spacing: 0.1em;
  }
  .p-permitlicense-disposal-table,
.p-permitlicense-transportation-table {
    margin-top: 1.4375rem;
    width: 100%;
    border-bottom: 1px solid #b2b2b2;
    border-collapse: collapse;
    overflow-x: unset;
    white-space: unset;
    display: table;
  }
  .p-permitlicense-disposal-table-th,
.p-permitlicense-transportation-table-th {
    background-color: #1dafc7;
    height: 80px;
  }
  .p-permitlicense-disposal-table th,
.p-permitlicense-transportation-table th {
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 2;
    color: #fff;
    border: 1px solid #1dafc7;
  }
  .p-permitlicense-disposal-table-td,
.p-permitlicense-transportation-table-td {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.5384615385;
    height: 80px;
  }
  .p-permitlicense-items {
    margin-top: 2.5rem;
  }
  .p-permitlicense-item:not(:first-child) {
    margin-top: 2.5rem;
  }
  .p-permitlicense-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
  .p-permitlicense-disposal-item-text {
    margin-top: 2.5625rem;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.1em;
    background-color: #eaeaea;
    border: 1px solid #efefef;
    border-radius: 10px;
  }
  .p-permitlicense-disposal-item-text a {
    display: block;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .p-permitlicense-item-text {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.1em;
    background-color: #eaeaea;
    border: 1px solid #efefef;
    border-radius: 10px;
  }
  .p-permitlicense-item-text a {
    display: block;
  }
  .p-permitlicense__nofile {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
  .p-permitlicense-nofile__items {
    margin-top: 3.6875rem;
  }
  .p-permitlicense-nofile__item {
    margin-top: 2.5rem;
  }
  .p-permitlicense-item-box {
    background-color: #eaeaea;
    border: 1px solid #efefef;
    border-radius: 10px;
    padding: 1.875rem 0 1.75rem 0;
  }
  .p-permitlicense-item-box-text {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.1em;
  }
  .p-permitlicense-item-box-image {
    width: 15.7142857143%;
    margin: 0 auto;
    margin-top: 1.125rem;
    margin-bottom: 1.125rem;
  }
}
.p-price-permit {
  background-image: url(../images/top/p-price-permit.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.p-price-permit__box {
  text-align: center;
}

.p-price-permit__image {
  width: 250px;
  margin: 0 auto;
  padding-top: 60px;
  padding-top: 3.75rem;
}

.p-price-permit__title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1.1333333333;
  text-align: center;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-price-permit__price-button {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-price-permit {
    padding-top: 2.625rem;
    padding-bottom: 6.25rem;
  }
  .price-permit__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-price-permit__box {
    text-align: center;
  }
  .p-price-permit__box:not(:first-child) {
    margin-left: 13.2407407407%;
  }
  .p-price-permit__image {
    width: 250px;
    margin: 0 auto;
  }
  .p-price-permit__title {
    margin-top: 1rem;
  }
  .p-price-permit__price-button, .p-price-permit__permit-button {
    display: inline-block;
    margin: 0;
    margin-top: 1.25rem;
  }
}
.p-pricemenu-firstview {
  height: 349px;
  background-image: url(../images/pricemenu/p-pricemenu-firstview.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.p-pricemenu-content {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  background-image: url(../images/pricemenu/p-pricemenu-content.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.p-pricemenu-background {
  background-color: #fff;
  max-width: min(90%, 1080px);
}

.p-pricemenu-table {
  margin: 0 auto;
  padding: 60px 0px 80px 0px;
  padding: 3.75rem 0rem 5rem 0rem;
  text-align: center;
}

.p-pricemenu-items {
  margin-top: 86px;
  margin-top: 5.375rem;
}

.p-pricemenu-item:not(:first-child) {
  margin-top: 34px;
  margin-top: 2.125rem;
}

.p-pricemenu-item-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.p-pricemenu-item-text {
  margin-top: 15px;
  margin-top: 0.9375rem;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
  background-color: #eaeaea;
  border: 1px solid #efefef;
  border-radius: 10px;
}

.p-pricemenu-item-text a {
  display: block;
  padding: 24px 5px;
  padding: 1.5rem 0.3125rem;
}

.p-pricemenu-contact {
  margin-top: 82px;
  margin-top: 5.125rem;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
  background-color: #eaeaea;
  border: 1px solid #bcbcbc;
  border-radius: 10px;
  padding: 37px 5px 33px 5px;
  padding: 2.3125rem 0.3125rem 2.0625rem 0.3125rem;
}

.p-pricemenu-contact__telephone {
  display: block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
  margin-top: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-pricemenu-contact-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.p-pricemenu-contact__telephone-box {
  width: 100%;
}

.p-pricemenu-contact__email-box {
  width: 100%;
}

.p-pricemenu-contact__telephone-box img {
  width: 60px;
  width: 3.75rem;
  display: inline-block;
  vertical-align: middle;
}

.p-pricemenu-contact__telephone-box a {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 0.85;
  vertical-align: middle;
  letter-spacing: 0;
}

.p-pricemenu-contact__telephone-box-text {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: bold;
  letter-spacing: 0.3em;
  line-height: 2;
}

.p-pricemenu-contact__email-box-text {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: bold;
  letter-spacing: 0.3em;
  line-height: 2;
}

.p-pricemenu-contact__email-box img {
  width: 68px;
  width: 4.25rem;
  display: inline-block;
  vertical-align: middle;
}

.p-pricemenu-contact__email-box span {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.4615384615;
  vertical-align: middle;
}

.p-pricemenu-contact__detail {
  text-align: center;
  margin-top: 6px;
  margin-top: 0.375rem;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.9230769231;
}

@media screen and (min-width: 768px) {
  .p-pricemenu-firstview {
    height: 349px;
    background-image: url(../images/pricemenu/p-pricemenu-firstview.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .p-pricemenu-content {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-image: url(../images/pricemenu/p-pricemenu-content.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .p-pricemenu-table {
    margin: 0 auto;
    padding: 3.75rem 0rem 5rem 0rem;
    text-align: center;
  }
  .p-pricemenu-box {
    margin-top: 0;
  }
  .p-pricemenu-items {
    margin-top: 5.375rem;
  }
  .p-pricemenu-item:not(:first-child) {
    margin-top: 2.125rem;
  }
  .p-pricemenu-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
  .p-pricemenu-item-text {
    margin-top: 0.9375rem;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.1em;
    background-color: #eaeaea;
    border: 1px solid #efefef;
    border-radius: 10px;
  }
  .p-pricemenu-item-text a {
    display: block;
    padding: 1.5rem 0rem;
  }
  .p-pricemenu-contact__telephone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-pricemenu-contact-title {
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }
  .p-pricemenu-contact__telephone-box {
    width: 40.5930470348%;
    padding-right: 7.0552147239%;
  }
  .p-pricemenu-contact__email-box {
    width: 40.5930470348%;
    padding-top: 1.625rem;
    padding-bottom: 1.125rem;
    padding-left: 5.3169734151%;
    border-left: 1px #707070 solid;
  }
  .p-pricemenu-contact__telephone-box img {
    width: 3.75rem;
    display: inline-block;
    vertical-align: middle;
    margin-left: -2rem;
  }
  .p-pricemenu-contact__telephone-box a {
    display: inline-block;
    font-family: "Oswald", sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 0.85;
    vertical-align: middle;
    letter-spacing: 0;
  }
  .p-pricemenu-contact__telephone-box-text {
    font-size: 1.0625rem;
    font-weight: bold;
    letter-spacing: 0.3em;
    line-height: 2;
    padding-left: 6px;
  }
  .p-pricemenu-contact__email-box-text {
    font-size: 1.0625rem;
    font-weight: bold;
    letter-spacing: 0.3em;
    line-height: 2;
  }
  .p-pricemenu-contact__email-box img {
    width: 4.25rem;
    display: inline-block;
    vertical-align: middle;
    margin-top: -0.375rem;
    margin-left: -1.25rem;
  }
  .p-pricemenu-contact__email-box span {
    display: inline-block;
    font-size: 1.625rem;
    font-weight: bold;
    line-height: 1.4615384615;
    vertical-align: middle;
    letter-spacing: 0;
    margin-top: -0.6875rem;
    margin-left: 0.625rem;
  }
  .p-pricemenu-contact__detail {
    text-align: center;
    margin-top: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.9230769231;
  }
  .p-pricemenu-contact {
    padding: 2.3125rem 0rem 2.0625rem 0rem;
  }
}
.p-privacypolicy-firstview {
  background-image: url(../images/privacypolicy/p-privacypolicy-firstview.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.p-privacypolicy__top-text {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 55px;
  margin-top: 3.4375rem;
  text-align: center;
}

.p-privacypolicy__main {
  margin-top: 72px;
  margin-top: 4.5rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.p-privacypolicy__section-title {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3529411765;
  color: #1ba5c4;
}

.p-privacypolicy__section:not(:first-child) {
  margin-top: 53px;
  margin-top: 3.3125rem;
}

.p-privacypolicy__section.p-privacypolicy__section-title--6 {
  margin-top: 36px;
  margin-top: 2.25rem;
}

.p-privacypolicy__section.p-privacypolicy__section-title--7 {
  margin-top: 36px;
  margin-top: 2.25rem;
}

.p-privacypolicy__section-text {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.88;
  margin-top: 17px;
  margin-top: 1.0625rem;
}

.p-privacypolicy__section-text li {
  margin-top: 1px;
  margin-top: 0.0625rem;
}

.p-privacypolicy__section-contact {
  margin-top: 30px;
  margin-top: 1.875rem;
  line-height: 1.93;
}

.p-privacypolicy__section-cookie {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-privacypolicy__date {
  margin-top: 29px;
  margin-top: 1.8125rem;
  text-align: right;
  line-height: 1.9;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
}

.p-topics-firstview {
  background-image: url(../images/topics/p-topics-firstview.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.p-topics-archives {
  padding: 80px 0 51px 0;
  padding: 5rem 0 3.1875rem 0;
}

.p-topics-archives__tabmenu-wrapper {
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 23px 15px 23px 15px;
  padding: 1.4375rem 0.9375rem 1.4375rem 0.9375rem;
  border: 1px solid #b2b2b2;
  text-align: center;
}

.p-topics-archives__tabmenu-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-topics-archives__tabmenu-title {
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 400;
  color: #1ba5c4;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
}

.p-topics-archives__tabmenu-item,
.cat-item-all {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  color: #4e4e4e;
  background-color: #b9b9b9;
  width: 100%;
  border-radius: 10px;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-topics-archives__tabmenu-item:first-child {
  font-size: 15px;
  font-size: 0.9375rem;
}

.p-topics-archives__tabmenu-item.current-cat {
  color: #fff;
  background-color: #1379ac;
}

.p-topics-archives__tabmenu-item:not(:first-child) {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-topics-archives__tabmenu-item a,
.cat-item-all a {
  display: block;
  padding-top: 15px;
  padding-top: 0.9375rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
}

.p-topics-archives__article-link {
  display: block;
}

.p-topics-archives__article-date {
  font-size: max(12px, 11px);
  font-size: max(0.75rem, 11px);
  font-weight: 400;
  line-height: 1.25;
  display: inline-block;
}

.p-topics-archives__article-category {
  font-size: max(12px, 11px);
  font-size: max(0.75rem, 11px);
  font-weight: 600;
  line-height: 1;
  color: #fff;
  display: inline-block;
}

.p-topics-archives__article-category span {
  display: inline-block;
  width: 125px;
  width: 7.8125rem;
  padding: 9px 0px 9px 0px;
  padding: 0.5625rem 0rem 0.5625rem 0rem;
  border-radius: 10px;
  text-align: center;
  margin-left: 15px;
  margin-left: 0.9375rem;
}

.p-topics-archives__article-category .hour {
  background-color: #4da437;
}

.p-topics-archives__article-category .price {
  background-color: #e9596d;
}

.p-topics-archives__article-category .license {
  background-color: #fd9c38;
}

.p-topics-archives__article-title {
  font-size: max(12px, 11px);
  font-size: max(0.75rem, 11px);
  font-weight: 400;
  line-height: 2.5;
  margin-top: 10px;
  margin-top: 0.625rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p-topics-archives__article-items {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-topics-archives__article-item {
  border-top: 1px solid #b2b2b2;
}

.p-topics-archives__article-item:last-child {
  border-bottom: 1px solid #b2b2b2;
}

.p-topics-archives__article-item a {
  padding-top: 15px;
  padding-top: 0.9375rem;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
}

.p-topics-back {
  margin-top: 31px;
  margin-top: 1.9375rem;
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#4bc3d2), to(#3ca54d));
  background: linear-gradient(to right, #4bc3d2, #3ca54d);
  border-radius: 35px;
}

.p-topics-back a {
  display: block;
  padding: 10px 0 10px 0;
  padding: 0.625rem 0 0.625rem 0;
}

.p-topics-category__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-topics-category__item {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 2.3076923077;
  color: #fff;
  width: 160px;
  width: 10rem;
  border-radius: 10px;
  text-align: center;
  margin-top: 103px;
  margin-top: 6.4375rem;
}

.p-topics-category__item a {
  display: block;
  padding-top: 15px;
  padding-top: 0.9375rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
}

.p-topics-post__title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.048em;
  line-height: 1.6;
  color: #333333;
}

.p-topics-post__date {
  font-size: max(12px, 11px);
  font-size: max(0.75rem, 11px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2.8333333333;
  color: #111;
}

.p-topics-category__item.hour {
  background-color: #4da437;
}

.p-topics-category__item.price {
  background-color: #e9596d;
}

.p-topics-category__item.license {
  background-color: #fd9c38;
}

.p-topics-post__image {
  position: relative;
  width: 100%;
}

.p-topics-post__image::before {
  content: "";
  display: block;
  padding-top: 62.5510204082%;
}

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

@media screen and (min-width: 425px) {
  .p-topics-archives__article-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-topics-archives__article-title {
    margin-top: 0;
    margin-left: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .p-topics-firstview {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .p-topics-archives__tabmenu-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1.3125rem 0 0.6875rem 4.0625rem;
    border: 1px solid #b2b2b2;
    text-align: left;
  }
  .p-topics-archives__tabmenu-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 3.40625rem;
  }
  .p-topics-archives__tabmenu-title {
    font-size: 1.5625rem;
    font-weight: 400;
    color: #1ba5c4;
    text-transform: uppercase;
    margin-bottom: 0.625rem;
  }
  .p-topics-archives__tabmenu-item,
.cat-item-all {
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.1em;
    text-align: center;
    color: #4e4e4e;
    background-color: #b9b9b9;
    width: 10rem;
    border-radius: 10px;
    margin-top: 0;
    margin-left: 0.9375rem;
    margin-bottom: 0.625rem;
  }
  .p-topics-archives__tabmenu-item.current-cat {
    color: #fff;
    background-color: #1379ac;
  }
  .p-topics-archives__tabmenu-item:not(:first-child) {
    margin-top: 0;
  }
  .p-topics-archives__tabmenu-item a,
.cat-item-all a {
    display: block;
    padding-top: 0.9375rem;
    padding-bottom: 0.75rem;
  }
  .p-topics-archives__article-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-topics-archives__article-date {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.25;
    display: block;
  }
  .p-topics-archives__article-category {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    color: #fff;
  }
  .p-topics-archives__article-category span {
    display: inline-block;
    width: 7.8125rem;
    padding: 0.5625rem 0rem 0.5625rem 0rem;
    border-radius: 10px;
    text-align: center;
    margin-left: 1.78125rem;
  }
  .p-topics-archives__article-category .hour {
    background-color: #4da437;
  }
  .p-topics-archives__article-category .price {
    background-color: #e9596d;
  }
  .p-topics-archives__article-category .license {
    background-color: #fd9c38;
  }
  .p-topics-archives__article-title {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 2.5;
    margin-left: 1.6875rem;
    margin-top: 0;
  }
  .p-topics-archives__article-items {
    margin-top: 2.5rem;
  }
  .p-topics-archives__article-item {
    border-top: 1px solid #b2b2b2;
  }
  .p-topics-archives__article-item:last-child {
    border-bottom: 1px solid #b2b2b2;
  }
  .p-topics-archives__article-item a {
    padding-top: 1.34375rem;
    padding-bottom: 1.34375rem;
    padding-left: 1.625rem;
  }
  .p-topics-back {
    margin-top: 1.9375rem;
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 2;
    color: #fff;
    background: -webkit-gradient(linear, left top, right top, from(#4bc3d2), to(#3ca54d));
    background: linear-gradient(to right, #4bc3d2, #3ca54d);
    border-radius: 35px;
  }
  .p-topics-back a {
    display: block;
    padding: 1.375rem 0 1.25rem 0;
  }
  .p-topics-category__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-topics-category__item {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 2.3076923077;
    color: #fff;
    width: 10rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 6.4375rem;
  }
  .p-topics-category__item a {
    display: block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
  }
  .p-topics-post__title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: 0.048em;
    line-height: 1.6;
    color: #333333;
    margin-top: 1.125rem;
  }
  .p-topics-post__date {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 2.8333333333;
    color: #111;
  }
  .p-topics-post__image {
    position: relative;
    width: 100%;
    margin-top: 1.5625rem;
  }
  .p-topics-post__image::before {
    content: "";
    display: block;
    padding-top: 62.5510204082%;
  }
  .p-topics-post__image img {
    height: 100%;
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
  }
}
.p-topics-post__content h1 {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  color: #1379ac;
  padding-left: 20px;
  padding-left: 1.25rem;
  border-bottom: 1px solid #1ba5c4;
  position: relative;
  margin-top: 42px;
  margin-top: 2.625rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}

.p-topics-post__content h1::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #1ba5c4;
}

.p-topics-post__content p {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.6666666667;
  color: #111;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-topics-post__content h2 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1379ac;
  padding-left: 11px;
  padding-left: 0.6875rem;
  border-bottom: 1px solid rgba(27, 165, 196, .4);
  position: relative;
  margin-top: 60px;
  margin-top: 3.75rem;
  padding-bottom: 7.5px;
  padding-bottom: 0.46875rem;
}

.p-topics-post__content h2::before {
  position: absolute;
  display: block;
  content: "";
  bottom: -1.5px;
  left: 0;
  width: 101px;
  height: 2px;
  background-color: #1ba5c4;
}

.p-topics-post__content h3 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1379ac;
  position: relative;
  margin-top: 68px;
  margin-top: 4.25rem;
  padding: 6px 0px 8px 11px;
  padding: 0.375rem 0rem 0.5rem 0.6875rem;
  background-color: #e5fbfb;
}

.p-topics-post__content h4 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #1379ac;
  position: relative;
  margin-top: 68px;
  margin-top: 4.25rem;
}

.p-topics-post__content h5 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #1379ac;
  position: relative;
  margin-top: 68px;
  margin-top: 4.25rem;
}

@media screen and (min-width: 768px) {
  .p-topics-post {
    padding-bottom: 2.25rem;
  }
  .p-topics-post__content h1 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1379ac;
    padding-left: 1.25rem;
    border-bottom: 1px solid #1ba5c4;
    position: relative;
    margin-top: 2.625rem;
    padding-bottom: 0.875rem;
  }
  .p-topics-post__content h1::before {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #1ba5c4;
  }
  .p-topics-post__content p {
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.6666666667;
    color: #111;
    margin-top: 1.0625rem;
  }
  .p-topics-post__content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1379ac;
    padding-left: 0.6875rem;
    border-bottom: 1px solid rgba(27, 165, 196, .4);
    position: relative;
    margin-top: 3.5rem;
    padding-bottom: 0.46875rem;
  }
  .p-topics-post__content h2::before {
    position: absolute;
    display: block;
    content: "";
    bottom: -1.5px;
    left: 0;
    width: 101px;
    height: 2px;
    background-color: #1ba5c4;
  }
  .p-topics-post__content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1379ac;
    position: relative;
    margin-top: 4rem;
    padding: 0.375rem 0rem 0.5rem 0.6875rem;
    background-color: #e5fbfb;
  }
  .p-topics-post__content h3 + p {
    margin-top: 0.625rem;
  }
  .p-topics-post__content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1379ac;
    position: relative;
    margin-top: 4.25rem;
  }
  .p-topics-post__content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1379ac;
    position: relative;
    margin-top: 3.5rem;
    margin-bottom: 0;
  }
}
.p-topics {
  padding-bottom: 58px;
  padding-bottom: 3.625rem;
}

.p-topics__outer {
  position: relative;
  padding: 0 21px 0 21px;
}

.p-topics__outer::before {
  position: absolute;
  display: block;
  content: "";
  top: 18px;
  left: 0px;
  width: 15px;
  height: calc(100% - 18px);
  border-top: 1px solid #1ba7c4;
  border-left: 1px solid #1ba7c4;
  border-bottom: 1px solid #1ba7c4;
}

.p-topics__outer::after {
  position: absolute;
  display: block;
  content: "";
  top: 18px;
  right: 0px;
  width: 15px;
  height: calc(100% - 18px);
  border-top: 1px solid #1ba7c4;
  border-right: 1px solid #1ba7c4;
  border-bottom: 1px solid #1ba7c4;
}

.p-topics__subtitle {
  margin-top: -3px;
  margin-top: -0.1875rem;
}

.p-topics__items {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-topics__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-topics__item + .p-topics__item {
  margin-top: 18px;
  margin-top: 1.125rem;
}

.p-topics__item time {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  margin-left: 5px;
  margin-left: 0.3125rem;
}

.p-topics__text {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-left: 6.2695924765%;
  line-height: 1.3333333333;
  width: 71.473354232%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p-topics__button {
  display: none;
}

.p-topics__button-sp {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 27px;
  margin-top: 1.6875rem;
}

.p-topics__date {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  width: 20.6896551724%;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .p-topics {
    padding-bottom: 0;
  }
  .p-topics__outer {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    padding-bottom: 1.0625rem;
  }
  .p-topics__outer::before {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    left: 0;
    width: 15px;
    height: 100%;
    border-top: 1px solid #1ba7c4;
    border-left: 1px solid #1ba7c4;
    border-bottom: 1px solid #1ba7c4;
  }
  .p-topics__outer::after {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    right: 0;
    width: 15px;
    height: 100%;
    border-top: 1px solid #1ba7c4;
    border-right: 1px solid #1ba7c4;
    border-bottom: 1px solid #1ba7c4;
  }
  .p-topics__subtitle {
    margin-top: -0.625rem;
  }
  .p-topics__box {
    padding-left: 5.306122449%;
    width: 21.9387755102%;
  }
  .p-topics__items {
    margin-top: 0;
    margin-left: 2.1875rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 74.4897959184%;
  }
  .p-topics__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-topics__item + .p-topics__item {
    margin-top: 0.375rem;
  }
  .p-topics__item:first-child {
    margin-top: 0.375rem;
  }
  .p-topics__text {
    margin-left: 2.0408163265%;
  }
  .p-topics__button {
    display: block;
    margin-left: 0.1875rem;
    margin-top: 0.9375rem;
  }
  .p-topics__button-sp {
    display: none;
  }
  .p-topics__item time {
    margin-left: 0;
  }
  .p-topics__date {
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 2.6153846154;
    width: auto;
  }
  .p-topics__text {
    width: auto;
  }
}
.p-way-of-work-firstview {
  background-image: url(../images/way-of-work/p-way-of-work-firstview.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.p-way-of-work__text {
  font-size: 15px;
  font-size: 0.9375rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-way-of-work__top-text {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 54px;
  margin-top: 3.375rem;
  text-align: center;
}

.p-way-of-work__section-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #1ba5c4;
  text-align: center;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  margin-top: 69px;
  margin-top: 4.3125rem;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .p-way-of-work__section-title {
    font-size: 1.625rem;
  }
}
.p-way-of-work__section-title::before {
  position: absolute;
  display: block;
  content: "";
  bottom: -1.5px;
  left: calc(50% - 50px);
  width: 100px;
  height: 2px;
  background-color: rgba(27, 165, 196, .4);
}

.p-way-of-work__section-title::after {
  position: absolute;
  display: block;
  content: "";
  bottom: -1.5px;
  left: calc(50% - 50px);
  width: 50px;
  height: 2px;
  background-color: #1ba5c4;
}

.p-way-of-work__introduction-image {
  display: block;
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-way-of-work__introduction-text {
  font-size: 15px;
  font-size: 0.9375rem;
  margin-top: 16px;
  margin-top: 1rem;
  line-height: 2;
  letter-spacing: 0.1em;
}

.p-way-of-work__pictures {
  display: block;
}

@media screen and (min-width: 768px) {
  .p-way-of-work__pictures {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 3.75rem;
    gap: 5.5102040816%;
  }
}
.p-way-of-work__picture-box {
  width: 100%;
  margin-top: 40px;
  margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  .p-way-of-work__picture-box {
    width: 33.33%;
    margin-top: 0;
  }
}
.p-way-of-work__subtitle {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 1.3333333333;
  color: #1ba5c4;
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}

.p-way-of-work__person-subtitle {
  -moz-text-align-last: left;
       text-align-last: left;
  line-height: 1.75;
}

.p-way-of-work__subtext {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.85;
  letter-spacing: 0.1em;
  margin-top: 14px;
  margin-top: 0.875rem;
}

.p-way-of-work__treatment-title {
  margin-top: 0;
}

.p-way-of-work__content-title {
  margin-top: 87px;
  margin-top: 5.4375rem;
}

.p-way-of-work__place-title {
  margin-top: 174px;
  margin-top: 10.875rem;
}

.p-way-of-work__person-title {
  margin-top: 88px;
  margin-top: 5.5rem;
}

.p-way-of-work__treatment {
  background-image: url(../images/way-of-work/p-way-of-work__treatment-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 100px;
  padding: 80px 0;
  position: relative;
}

.p-way-of-work__treatment::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(27, 165, 196, .6);
}

.p-way-of-work__treatment-box {
  border-radius: 10px;
}

.p-way-of-work__treatment-subtitle {
  margin-top: 50px;
  margin-top: 3.125rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  color: #1ba5c4;
}

.p-way-of-work__treatment-text {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.1em;
}

.p-way-of-work__message {
  padding-top: 95px;
  padding-top: 5.9375rem;
}

.p-way-of-work__message-box {
  display: block;
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
  .p-way-of-work__message-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-way-of-work__picture {
  width: 22.4489795918%;
}

.p-way-of-work__detail {
  width: 100%;
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-way-of-work__detail {
    margin-top: 0;
    width: 71.4285714286%;
  }
}
.p-way-of-work__detail-text {
  margin-top: 20px;
  letter-spacing: 0.03em;
}

.p-way-of-work__detail-text--bold {
  font-weight: bold;
}

.p-way-of-work__detail-text--bold:nth-child(2) {
  margin-top: 20px;
}

.p-way-of-work__bottom-message {
  background-image: url(../images/way-of-work/p-way-of-work__bottom-message-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 100px;
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-way-of-work__bottom-message {
    padding-top: 166px;
    padding-bottom: 116px;
  }
}
.p-way-of-work__bottom-message-text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
}

.p-way-of-work__bottom-message::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(27, 165, 196, .8);
}

.p-work {
  background-image: url(../images/top/p-work-sp.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 35px;
  padding-top: 2.1875rem;
  padding-bottom: 29px;
  padding-bottom: 1.8125rem;
}

.p-work__wrapper {
  background-color: rgba(255, 255, 255, .8);
  width: 87.1428571429%;
  padding: 18.5px 15px 31px 14px;
  padding: 1.15625rem 0.9375rem 1.9375rem 0.875rem;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.p-work__subtitle {
  margin-top: -5px;
  margin-top: -0.3125rem;
}

.p-work__copy {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.095em;
  line-height: 1.6666666667;
  text-align: center;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-work__text {
  width: 87.6811594203%;
  margin: 0 auto;
  margin-top: 12px;
  margin-top: 0.75rem;
  letter-spacing: 0.03em;
  line-height: 1.56;
  text-align: left;
}

.p-work__button-pc {
  display: none;
}

.p-work__button-sp {
  display: inline-block;
  text-align: center;
  margin-top: 16px;
  margin-top: 1rem;
}

@media screen and (min-width: 768px) {
  .p-work {
    background-image: url(../images/top/p-work.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 10.625rem;
    padding-bottom: 6.5rem;
  }
  .p-work__wrapper {
    padding: 2.90625rem 4.6875rem 2.375rem 3.3125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
    text-align: left;
    width: 100%;
  }
  .p-work__box {
    width: 20.5399061033%;
  }
  .p-work__subtitle {
    margin-top: -0.75rem;
  }
  .p-work__textbox {
    width: 73.0046948357%;
  }
  .p-work__copy {
    font-size: 2.3125rem;
    letter-spacing: 0.2em;
    line-height: 1.6216216216;
    text-align: left;
    margin-top: 1.0625rem;
  }
  .p-work__text {
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 2;
    margin: 0;
    margin-top: 1.8125rem;
    width: 98.8745980707%;
  }
  .p-work__button-pc {
    display: block;
    margin-top: 0.9375rem;
  }
  .p-work__button-pc a {
    padding: 11px 25.7142857143% 11px 25.7142857143%;
  }
  .p-work__button-sp {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
