@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300;400;700;800;900&display=swap");
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
}

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

main {
  display: block;
}

ol, ul {
  list-style: none;
}

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

img,
svg {
  vertical-align: bottom;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
}

button, input, select, textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  color: inherit;
  font: inherit;
  line-height: inherit;
}

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

textarea {
  resize: none;
}

[hidden] {
  display: none !important;
}

:root {
  --font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
  --font-size-body: 1.5rem;
  --color-cyan: #42b9d0;
  --color-yellow: #ffe537;
  --color-text-default: #3d5154;
  --color-border: #dddddd;
  --text-link: #5fcbe2;
  --text-pink: #fe659c;
  --color-text-white: #ffffff;
  --color-text-blue-01: #30aabc;
  --color-text-blue-02: #3d77b0;
  --color-text-blue-03: #48b9cd;
  --color-text-blue-04: #00a0be;
  --color-text-blue-05: #95ccff;
  --color-text-blue-06: rgb(145, 213, 225, .2);
  --color-text-gray-01: #8F9DA1;
  --color-text-gray-02: #666666;
  --color-text-gray-03: #3d5154;
  --color-text-gray-04: #5b6c70;
  --color-text-black-01: #4d4d4d;
  --color-text-black-02: #212529;
  --color-text-black-03: #000000;
  --color-text-black-04: rgb(0, 0, 0, .05);
  --color-bg-white: #ffffff;
  --color-bg-blue-01: #42b9d0;
  --color-bg-blue-02: #48b9cd;
  --color-bg-blue-02-transparent: rgb(72, 185, 205, .2);
  --color-bg-blue-03: #daf1f5;
  --color-bg-blue-04: #afe3df;
  --color-bg-blue-05: rgb(55, 185, 175, .4);
  --color-bg-blue-06: rgb(55, 185, 175, .2);
  --color-bg-blue-07: #AFE3DF;
  --color-bg-blue-08: #87D5CF;
  --color-bg-blue-09: #00a0be;
  --color-bg-blue-10: #f7fcfd;
  --color-bg-green-01: #37b9af;
  --color-bg-gray-01: #e6e5e5;
  --color-bg-gray-02: #999999;
  --color-bg-gray-03: #f2f2f2;
  --color-bg-gray-04: #b3b3b3;
  --color-bg-yellow-01: #ffe537;
  --color-bg-yellow-02: #fae669;
  --color-bg-yellow-03: rgb(250, 230, 105, .2);
  --color-bg-green-02: #28A745;
  --color-bg-green-03: rgba(40, 167, 69,.2);
  --color-bg-lightblue-01: #f0fbff;
  --color-bg-lightblue-02: #DFF5F9;
  --color-bg-lightblue-03: rgb(145, 213, 225, .2);
  --color-bg-black-01: rgb(0, 0, 0, 50%);
  --color-border-black: rgba(0, 0, 0, 0.1);
  --color-border-blue-01: #30aabc;
  --color-border-blue-02: #48b9cd;
  --color-border-blue-03: #95ccff;
  --color-border-blue-04: #00a0be;
  --color-border-gray-01: #e5e5e5;
  --color-border-gray-02: #cccccc;
  --color-border-gray-03: #f2f2f2;
  --color-border-gray-04: #abb8c3;
  --color-border-gray-05: #8F9DA1;
  --color-border-gray-06: #8F999b;
  --color-recruit-bg: rgb(240, 251, 255);
  --transition-sine-out: cubic-bezier(0.39, 0.575, 0.565, 1);
  --transition-sine-in: cubic-bezier(0.47, 0, 0.745, 0.715);
}

html {
  font-size: 62.5%;
  -moz-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", serif;
  background-color: var(--color-bg-white);
  color: var(--color-text-default);
  font-size: 1.8rem;
}
@media not (max-width: 760px) {
  body {
    min-width: 1320px;
  }
}

img {
  display: block;
}

iframe {
  display: block;
  width: 100%;
}

a {
  cursor: pointer;
  color: var(--color-text-blue-04);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.wp-block-buttons.is-content-justification-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-block-buttons.is-content-justification-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.wp-block-button {
  margin-bottom: 30px;
}

.wp-block-button__link.wp-element-button {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 20px;
  line-height: 1.5;
  border-radius: 30px;
  background: var(--color-bg-blue-02);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-white);
  text-align: center;
  transition: all 0.3s;
}
@media (max-width: 760px) {
  .wp-block-button__link.wp-element-button {
    width: 100%;
  }
}
.wp-block-button__link.wp-element-button:hover {
  text-decoration: none;
  opacity: 0.8;
}

.l-container {
  position: relative;
  width: 100%;
}
.l-container__inner {
  width: 1000px;
  margin: 0 auto;
  height: auto;
  position: relative;
  word-break: break-all;
}
@media (max-width: 760px) {
  .l-container__inner {
    width: calc(100% - 40px);
    margin: 0 20px 0;
    height: auto !important;
  }
}
.l-container__inner.--reading {
  width: 620px;
}
@media (max-width: 760px) {
  .l-container__inner.--reading {
    width: calc(100% - 40px);
    margin: 0 20px 0;
  }
}
.l-container__inner.--has-navi {
  width: 700px;
  transform: translateX(-150px);
}
@media (max-width: 760px) {
  .l-container__inner.--has-navi {
    width: calc(100% - 40px);
    margin: 0 20px 0;
    transform: translateX(0);
  }
}
.l-container__inner > * {
  position: relative;
  z-index: 10;
}
@media not (max-width: 760px) {
  .l-container__nav {
    margin: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1 !important;
  }
}
@media (max-width: 760px) {
  .l-container__nav {
    margin-bottom: 40px;
  }
}
.l-container p:not([class]) {
  margin-bottom: 30px;
}

.l-header {
  position: sticky;
  top: 0;
  width: 100%;
  line-height: 90px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-bg-white);
  z-index: 100;
}
@media (max-width: 760px) {
  .l-header {
    flex-direction: column;
    justify-content: center;
    padding: 0;
    position: fixed;
  }
}
.l-header-logo {
  margin-right: 30px;
}
@media (max-width: 760px) {
  .l-header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    height: 56px;
    width: 100%;
  }
}
.l-header-hamburger {
  width: 24px;
  height: 16px;
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 20;
  position: absolute;
  top: 18px;
  right: 21px;
}
.l-header-hamburger span, .l-header-hamburger::before, .l-header-hamburger::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-border-gray-05);
  position: absolute;
  transition: all 0.3s ease;
}
.l-header-hamburger::before {
  top: 0;
}
.l-header-hamburger span {
  top: 7px;
}
.l-header-hamburger::after {
  bottom: 0;
}
.l-header__nav {
  margin-right: auto;
}
@media not (max-width: 760px) {
  .l-header__nav {
    position: relative;
    z-index: 10;
  }
}
@media (max-width: 760px) {
  .l-header__nav {
    display: none;
    order: 2;
    margin: 0;
    width: 100%;
  }
}
.l-header__list {
  display: flex;
  gap: 20px;
}
@media (max-width: 760px) {
  .l-header__list {
    flex-direction: column;
    margin-top: 20px;
    gap: 0;
    width: 100%;
  }
}
@media not (max-width: 760px) {
  .l-header__item {
    position: relative;
  }
}
@media (max-width: 760px) {
  .l-header__item {
    border-top: 1px solid var(--color-border-gray-03);
  }
}
@media (max-width: 760px) {
  .l-header__item:last-child {
    border-bottom: 1px solid var(--color-border-gray-03);
  }
}
.l-header__link {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-black-03);
  transition: all 0.3s;
}
.l-header__link:hover {
  color: var(--color-text-blue-03);
}
@media (max-width: 760px) {
  .l-header__link {
    display: block;
    width: 100%;
    line-height: 43px;
    padding: 0 50px 0 20px;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-text-blue-03);
    position: relative;
    transition: all 0.3s;
  }
  .l-header__link::after {
    position: absolute;
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background: url(/wp-content/themes/coopel_2025/assets/images/common/icon_arrow-right.svg) center center no-repeat;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
}
.l-header__link:hover {
  text-decoration: none;
}
@media (max-width: 760px) {
  .l-header__link:hover {
    background-color: var(--color-bg-blue-02-transparent);
  }
}
.l-header-button {
  display: flex;
  gap: 10px;
}
@media (max-width: 760px) {
  .l-header-button {
    order: 1;
    display: none;
    margin-top: 10px;
  }
}
.l-header-button__link {
  display: block;
  padding: 0 20px;
  line-height: 40px;
  border-radius: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-white);
  background-color: var(--color-bg-green-02);
  transition: all 0.3s;
}
.l-header-button__link:hover {
  opacity: 0.8;
}
@media (max-width: 760px) {
  .l-header-button__link {
    text-align: center;
    width: 138px;
    padding: 0;
  }
}
.l-header-button__link:nth-child(2) {
  background-color: var(--color-bg-green-01);
  color: var(--color-text-white);
}
.l-header-button__link:nth-child(3), .l-header-button__link:nth-child(4) {
  background-color: var(--color-bg-blue-02);
  color: var(--color-text-white);
}
@media (max-width: 760px) {
  .l-header-button__link:nth-child(3), .l-header-button__link:nth-child(4) {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.l-header-button__link:hover {
  text-decoration: none;
}
@media (max-width: 760px) {
  .l-header.is-active.is-extend {
    overflow-y: scroll;
    top: 0;
    bottom: 0;
  }
}
@media (max-width: 760px) {
  .l-header.is-active.is-extend .l-header-logo {
    padding-top: 162px;
    padding-bottom: 15px;
    height: 66px;
  }
}
.l-header.is-active .l-header-hamburger span {
  opacity: 0;
}
.l-header.is-active .l-header-hamburger::before {
  top: 6px;
  transform: rotate(30deg);
}
.l-header.is-active .l-header-hamburger::after {
  bottom: 8px;
  transform: rotate(-30deg);
}
.l-header.is-active .l-header__nav {
  display: block;
}
.l-header.is-active .l-header-button {
  display: flex;
}
@media not (max-width: 760px) {
  .l-header-bg {
    transition: opacity 0.2s, transform 0.3s;
    position: absolute;
    top: 40px;
    width: 100%;
    height: 50px;
    background: var(--color-bg-blue-10);
    left: 0;
    z-index: -1;
    opacity: 0;
  }
  .l-header-bg.is-active {
    opacity: 1;
    top: 40px;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin: 0;
    list-style: none;
    display: block;
    transform: translateY(50px);
  }
}
.l-header-submenu {
  opacity: 0;
  transition: all 0.3s;
}
@media not (max-width: 760px) {
  .l-header-submenu {
    position: absolute;
  }
}
.l-header-submenu__btn {
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
}
@media not (max-width: 760px) {
  .l-header-submenu__btn {
    font-weight: 700;
    line-height: 1;
    font-size: 1.5rem;
    color: var(--color-text-black-03);
  }
  .l-header-submenu__btn:hover {
    color: var(--color-text-blue-03);
  }
  .l-header-submenu__btn::after {
    position: absolute;
    bottom: -18px;
    left: 50%;
    display: block;
    width: 9px;
    height: 9px;
    content: "";
    background-color: var(--color-text-black-03);
    -webkit-mask-image: url(/wp-content/themes/coopel_2025/assets/images/common/icon__arrow.svg);
            mask-image: url(/wp-content/themes/coopel_2025/assets/images/common/icon__arrow.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-size: contain;
            mask-size: contain;
    transform: rotate(135deg) translateX(50%);
    transition: all 0.3s;
  }
  .l-header-submenu__btn:hover::after {
    background-color: var(--color-text-blue-03);
  }
  .l-header-submenu__btn.is-focus {
    color: var(--color-text-blue-03);
  }
  .l-header-submenu__btn.is-focus::after {
    left: 43%;
    transform: rotate(315deg);
    bottom: -27px;
    background-color: var(--color-text-blue-03);
  }
}
@media (max-width: 760px) {
  .l-header-submenu__btn {
    text-align: left;
    display: block;
    width: 100%;
    line-height: 43px;
    padding: 0 50px 0 20px;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-text-blue-03);
  }
  .l-header-submenu__btn.is-focus .l-header-submenu__icon:nth-child(2) {
    transform: translateY(-50%) rotate(0deg);
  }
}
.l-header-submenu__icon {
  display: block;
  width: 14px;
  height: 2px;
  background: var(--color-bg-blue-02);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.l-header-submenu__icon:nth-child(2) {
  transform: translateY(-50%) rotate(90deg);
}
.l-header-submenu__list {
  display: none;
}
.l-header-submenu.is-active {
  opacity: 1;
}
@media not (max-width: 760px) {
  .l-header-submenu.is-active {
    display: flex;
    align-items: center;
    top: 90px;
    left: -80px;
    z-index: 200;
    width: 100%;
    height: 50px;
  }
  .l-header-submenu.is-active .l-header-submenu__list {
    display: flex;
    flex-wrap: nowrap;
  }
  .l-header-submenu.is-active .l-header-submenu__item {
    line-height: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 16px 8px 16px;
    white-space: nowrap;
  }
}
@media (max-width: 760px) {
  .l-header-submenu.is-active {
    display: block;
  }
  .l-header-submenu.is-active .l-header-submenu__list {
    display: block;
  }
}
@media (max-width: 760px) {
  .l-header-submenu__item {
    border-top: 1px solid var(--color-border-gray-03);
  }
}
@media not (max-width: 760px) {
  .l-header-submenu__link {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-text-black-03);
    transition: all 0.3s;
  }
  .l-header-submenu__link:hover {
    text-decoration: none;
    color: var(--color-text-blue-03);
  }
}
@media (max-width: 760px) {
  .l-header-submenu__link {
    text-align: left;
    display: block;
    width: 100%;
    line-height: 43px;
    padding: 0 50px 0 40px;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-text-blue-03);
    position: relative;
    transition: all 0.3s;
  }
  .l-header-submenu__link::after {
    position: absolute;
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background: url(/wp-content/themes/coopel_2025/assets/images/common/icon_arrow-right.svg) center center no-repeat;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
}

#sublist2.is-active {
  left: -57px;
}

#sublist3.is-active {
  left: -105px;
}

.l-footer {
  margin-top: 120px;
}
@media (max-width: 760px) {
  .l-footer {
    margin-top: 80px;
  }
}
.l-footer__container {
  padding: 110px 0;
  background: var(--color-bg-blue-01) url(/wp-content/themes/coopel_2025/assets/images/footer_icon.svg) center center no-repeat;
  background-size: 1550px 320px;
}
@media (max-width: 760px) {
  .l-footer__container {
    padding: 55px 0;
    background: var(--color-bg-blue-01) url(/wp-content/themes/coopel_2025/assets/images/footer_icon.svg) top left no-repeat;
    background-size: cover;
  }
}
.l-footer__title {
  margin: 26px 0;
  color: white;
  font-weight: 600;
  font-size: 3.15rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media (max-width: 760px) {
  .l-footer__title {
    font-size: 2rem;
    line-height: 1.5;
    margin: 16.6px 0;
  }
}
.l-footer__button {
  display: flex;
  justify-content: center;
}
@media (max-width: 760px) {
  .l-footer__button {
    gap: 10px;
  }
}
.l-footer__item {
  padding: 15px 7.5px;
}
@media (max-width: 760px) {
  .l-footer__item {
    text-align: center;
    padding: 10px 0;
  }
}
.l-footer__item:nth-child(2) > a {
  border-color: var(--color-text-white);
  background-color: var(--color-text-white);
  color: var(--color-bg-blue-01);
}
.l-footer__link {
  background-color: var(--color-bg-green-02);
  border: 2px solid var(--color-bg-green-02);
  color: var(--color-text-white);
  display: block;
  width: 320px;
  padding: 28px 0;
  font-size: 1.8rem;
  line-height: 1.2rem;
  text-align: center;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  outline: 0;
  cursor: pointer;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .l-footer__link {
    border: none;
    display: block;
    width: 138px;
    padding: 0;
    line-height: 40px;
    border-radius: 20px;
    font-size: 1.5rem;
    font-weight: 700;
  }
}
.l-footer__link:hover {
  opacity: 0.8;
  text-decoration: none;
}
.l-footer__copyright {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 27px;
  border-top: 1px solid var(--color-border-gray-02);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-flow: row nowrap;
  flex-direction: column;
  padding: 22.5px 0;
  align-items: center;
}
@media (max-width: 760px) {
  .l-footer__copyright {
    padding: 47.5px 15px;
  }
}
.l-footer-nav {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
@media (max-width: 760px) {
  .l-footer-nav {
    flex-flow: row wrap;
  }
}
.l-footer-nav__item:first-child > a {
  padding-left: 0;
}
.l-footer-nav__item:last-child > a {
  border-right: none;
}
.l-footer-nav__link {
  padding: 0 10px;
  line-height: 1;
  border-right: 1px solid var(--color-border-gray-06);
  font-size: 1.5rem;
  color: var(--color-text-gray-04);
  white-space: nowrap;
  display: inline-block;
  transition: all 0.3s;
}
.l-footer-nav__link:hover {
  text-decoration: none;
  color: var(--color-text-blue-04);
}
.l-footer__text {
  margin: 15px 0;
  font-family: "Quicksand", serif;
  white-space: nowrap;
  font-weight: 400;
}
@media (max-width: 760px) {
  .l-footer__text {
    font-size: 1.2rem;
  }
}

@media (max-width: 760px) {
  .l-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-bg-black-01);
    z-index: 98;
    display: none;
  }
  .l-overlay.is-active {
    display: block;
  }
}

.p-hero {
  background: var(--color-bg-blue-01);
  height: 550px;
  overflow: hidden;
  color: var(--color-text-white);
  position: relative;
}
@media (max-width: 760px) {
  .p-hero {
    height: auto;
    padding: 50px 20px 0;
    margin-top: 56px;
  }
}
.p-hero .p-hero__main {
  width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
@media (max-width: 760px) {
  .p-hero .p-hero__main {
    width: 100%;
    padding: 0;
  }
}
.p-hero .p-hero__body {
  margin-left: -15px;
  margin-right: -15px;
}
@media not (max-width: 760px) {
  .p-hero .p-hero__body {
    display: flex;
    flex-flow: row wrap;
  }
}
@media (max-width: 760px) {
  .p-hero .p-hero__body {
    margin: 0;
  }
}
.p-hero .p-hero__body .p-hero__left,
.p-hero .p-hero__body .p-hero__right {
  padding-left: 0;
  padding-right: 0;
  width: calc(50% - 30px);
}
@media (max-width: 760px) {
  .p-hero .p-hero__body .p-hero__left,
  .p-hero .p-hero__body .p-hero__right {
    width: 100%;
  }
}
.p-hero .p-hero__body .p-hero__pattern {
  position: absolute;
  top: 0;
  left: 50%;
  width: 88rem;
  height: 43.3rem;
  transform: translateX(-50%);
  z-index: 0;
}
.p-hero .p-hero__body .p-hero__title {
  font-size: 5.2rem;
  line-height: 72px;
  font-weight: 700;
  white-space: nowrap;
  margin: 97.5px 0 0;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 760px) {
  .p-hero .p-hero__body .p-hero__title {
    font-size: 28px;
    line-height: 32px;
    margin-top: 0;
    white-space: normal;
  }
}
.p-hero .p-hero__body .p-hero__title .p-hero__subtitle {
  display: block;
  font-size: 1.8rem;
  line-height: 16px;
  font-weight: 700;
}
@media (max-width: 760px) {
  .p-hero .p-hero__body .p-hero__title .p-hero__subtitle {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.p-hero .p-hero__body .p-hero__description {
  font-size: 1.8rem;
  line-height: 30px;
  position: relative;
  z-index: 1;
  margin: 16px 0;
}
@media (max-width: 760px) {
  .p-hero .p-hero__body .p-hero__description {
    font-size: 14px;
    line-height: 26px;
  }
}
.p-hero .p-hero__body .p-hero_cta {
  display: flex;
  justify-content: center;
  text-align: center;
}
.p-hero .p-hero__body .p-hero-btn {
  display: inline-block;
  padding: 25.5px 52.5px;
  margin: 10px 0 0 30px;
  border-radius: 3rem;
  font-size: 1.8rem;
  line-height: 18px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  border-radius: 45px;
  background-color: var(--color-bg-green-02);
  border: 1px solid var(--color-bg-green-02);
  color: var(--color-text-white);
  transition: all 0.3s;
}
@media (max-width: 760px) {
  .p-hero .p-hero__body .p-hero-btn {
    display: block;
    width: 100%;
    margin-left: unset;
    font-size: 15px;
    max-width: 245px;
    padding: 16px 30px;
  }
}
.p-hero .p-hero__body .p-hero-btn:hover {
  opacity: 0.8 !important;
  text-decoration: none;
}
.p-hero .p-hero__body .p-hero-btn .p-hero-btn__sub {
  display: block;
  font-size: 1.1rem;
  line-height: 11px;
  margin-bottom: 12px;
}
@media (max-width: 760px) {
  .p-hero .p-hero__body .p-hero-btn .p-hero-btn__sub {
    font-size: 8px;
    margin-bottom: 8px;
  }
}
.p-hero .p-hero__body .p-hero-contact {
  display: flex;
  justify-content: center;
  text-align: center;
}
.p-hero .p-hero__body .p-hero-contact .p-hero-contact__button {
  display: block;
  width: 100%;
  max-width: 192px;
  line-height: 54px;
  text-align: center;
  padding: 0 36px;
  font-size: 1.5rem;
  color: var(--color-text-blue-01);
  background-color: var(--color-bg-white);
  border-radius: 45px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  margin: 10px 0 0 30px;
}
@media (max-width: 760px) {
  .p-hero .p-hero__body .p-hero-contact .p-hero-contact__button {
    margin-left: unset;
    max-width: 245px;
  }
}
.p-hero .p-hero__body .p-hero-contact .p-hero-contact__button:hover {
  opacity: 0.8;
  text-decoration: none;
}
.p-hero .p-hero__body .p-hero__right {
  position: relative;
}
.p-hero .p-hero__body .p-hero__right::after {
  position: absolute;
  content: "";
  display: block;
  width: 745px;
  height: 425px;
  background: url(/wp-content/themes/coopel_2025/assets/images/top/kv.gif) center center no-repeat;
  background-size: cover;
  top: 76px;
  left: 122px;
  z-index: 10;
}
@media (max-width: 760px) {
  .p-hero .p-hero__body .p-hero__right::after {
    width: 330px;
    height: 200px;
    top: 15px;
    left: 32px;
  }
}
.p-hero .p-hero__body .p-hero__image {
  width: 970px;
  position: absolute;
  bottom: -107px;
  left: 27px;
  margin-left: -18px;
  z-index: 1;
}
@media (max-width: 760px) {
  .p-hero .p-hero__body .p-hero__image {
    width: 430px;
    position: relative;
    bottom: 7px;
    left: 15px;
    margin: 35px 0 -15px -32px;
  }
}

.p-concept {
  background: var(--color-bg-lightblue-01);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 760px) {
  .p-concept {
    padding: 30px 20px;
  }
}
.p-concept__main {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
@media (max-width: 760px) {
  .p-concept__main {
    width: 100%;
  }
}
.p-concept__text {
  text-align: center;
  margin: 0;
  color: var(--color-text-blue-02);
  font-size: 1.8rem;
  line-height: 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 760px) {
  .p-concept__text {
    font-size: 15px;
    line-height: 26px;
  }
}
.p-concept__text + p {
  margin-top: 0;
}
@media (max-width: 760px) {
  .p-concept__text + p {
    margin-top: 10px;
  }
}

.p-info {
  overflow: hidden;
  position: relative;
}
@media (max-width: 760px) {
  .p-info {
    padding: 40px 15px !important;
  }
}
.p-info__main {
  width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 760px) {
  .p-info__main {
    width: 100%;
  }
}
.p-info__body {
  display: flex;
  flex-flow: row wrap;
  margin-left: -15px;
  margin-right: -15px;
  align-items: center;
}
.p-info__description {
  padding-left: 0;
  padding-right: 0;
  width: calc(50% - 30px);
}
@media (max-width: 760px) {
  .p-info__description {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
  }
}
.p-info__img {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  width: calc(50% - 30px);
}
@media (max-width: 760px) {
  .p-info__img {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
  }
}
.p-info__circle {
  top: 50%;
  width: 464px !important;
  position: absolute !important;
  z-index: 0 !important;
  pointer-events: none;
}
@media (max-width: 760px) {
  .p-info__circle {
    display: none !important;
  }
}
.p-info__title {
  font-size: 3.2rem;
  line-height: 57px;
  font-weight: 700;
  margin: 7.5px 0 0;
}
@media (max-width: 760px) {
  .p-info__title {
    font-size: 1.8rem;
    line-height: 32px;
  }
}
.p-info__text {
  font-size: 1.8rem;
  line-height: 30px;
  margin-top: 10px;
}
@media (max-width: 760px) {
  .p-info__text {
    font-size: 1.5rem;
    line-height: 28px;
  }
}
.p-info__link {
  display: inline-block;
  margin: 19.5px 30px 0 0;
  position: relative;
  font-size: 1.8rem;
  color: var(--color-text-blue-01);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border-blue-04);
  line-height: 30px;
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.p-info__link:hover {
  text-decoration: none;
  border-bottom: 2px solid var(--color-border-blue-04);
}
@media (max-width: 760px) {
  .p-info__link {
    display: inline;
    font-size: 1.5rem;
  }
}
.p-info__link::after {
  content: "";
  width: 30px;
  height: 10px;
  display: inline-block;
  margin-right: -30px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAKCAYAAABSfLWiAAAAm0lEQVQoka3SMYoCQRSE4U8FYTXQRDxJX2IDAwXbQHozz+FZht1gvILiBSbwCt7ATGFhQRqcbJMerLDg/Y8qqqdAIaYd1lg0dXVvL/slEHzjA4cQ07AT5PX9E3P8hJgG2S+K0yrENMMZF3z1Qkx7TDuwxljlaKWd/Kv3xOkAmOCEKzZNXf2V7mSEI25YNnX1m/3STrZ45MG1AHgC49slZkvN8tsAAAAASUVORK5CYII=) no-repeat 50%;
  background-size: contain;
}
.p-info-beginner {
  padding: 60px 0 30px;
}
@media (max-width: 760px) {
  .p-info-beginner__body {
    flex-flow: column-reverse;
  }
}
@media (max-width: 760px) {
  .p-info-beginner__img {
    margin-top: 30px;
  }
}
.p-info-beginner__image {
  z-index: 2;
  position: relative;
  width: 605px;
}
@media (max-width: 760px) {
  .p-info-beginner__image {
    max-width: 100%;
    display: block;
    margin: auto;
    width: auto;
  }
}
.p-info-beginner__circle {
  right: 0;
  transform: translate(30%, -47%);
}
.p-info-beginner__content {
  padding-left: 60px;
  margin-top: -45px;
  position: relative;
  z-index: 2;
}
@media (max-width: 760px) {
  .p-info-beginner__content {
    padding-left: 0;
    margin-top: 0;
  }
}
.p-info-beginner__emphasis {
  color: var(--color-text-blue-02);
}
.p-info-install {
  background: var(--color-bg-lightblue-01);
  padding: 15px 0 7.5px;
}
.p-info-install__content {
  margin-top: -22.5px;
}
@media (max-width: 760px) {
  .p-info-install__content {
    margin: 0;
  }
}
@media (max-width: 760px) {
  .p-info-install__img {
    margin-top: 30px;
  }
}
.p-info-install__image {
  z-index: 2;
  position: relative;
  display: block;
  margin: 0 auto 0 37.5px;
  width: 637px;
}
@media (max-width: 760px) {
  .p-info-install__image {
    margin-left: 0;
    width: 100%;
    max-width: unset;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-info-local {
  padding: 67.5px 0 60px;
}
@media (max-width: 760px) {
  .p-info-local__body {
    flex-flow: column-reverse;
  }
}
.p-info-local__image {
  width: 576px;
  z-index: 2;
  position: relative;
}
@media (max-width: 760px) {
  .p-info-local__image {
    width: auto;
    max-width: 100%;
    margin-top: 15px;
    display: block;
  }
}
.p-info-local__content {
  padding-left: 60px;
}
@media (max-width: 760px) {
  .p-info-local__content {
    padding: 0;
  }
}
.p-info-local__note {
  font-size: 1.4rem;
}
.p-info-local__wrap {
  text-align: center;
}
.p-info-local__sub-image {
  width: 335px;
  margin-top: 25px;
}
@media (max-width: 760px) {
  .p-info-local__sub-image {
    width: auto;
    max-width: 100%;
  }
}
.p-info-cloud {
  background: var(--color-bg-lightblue-01);
}
@media (max-width: 760px) {
  .p-info-cloud {
    padding-bottom: 0 !important;
  }
}
.p-info-cloud__circle {
  left: 50%;
  transform: translate(-33%, -25%);
}
.p-info-cloud__img {
  max-height: 540px;
}
.p-info-cloud__image {
  margin-left: 52.5px;
  width: 610px;
  z-index: 2;
  position: relative;
}
@media (max-width: 760px) {
  .p-info-cloud__image {
    max-width: calc(100% + 60px);
    width: calc(100% + 60px);
    margin: 30px -30px 0;
    display: block;
  }
}
.p-info-use {
  padding: 75px 0 67.5px;
}
@media (max-width: 760px) {
  .p-info-use__body {
    flex-flow: column-reverse;
  }
}
.p-info-use__image {
  width: 561px;
  z-index: 2;
  position: relative;
}
@media (max-width: 760px) {
  .p-info-use__image {
    width: calc(100% + 30px);
    max-width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 30px;
    display: block;
  }
}
.p-info-use__content {
  padding-left: 60px;
}
@media (max-width: 760px) {
  .p-info-use__content {
    padding-left: 0;
  }
}

.p-company-logo {
  padding: 40px 0;
  overflow: hidden;
  position: relative;
  background: var(--color-bg-lightblue-01);
}
@media (max-width: 760px) {
  .p-company-logo {
    padding: 24px 0 54px;
  }
}
.p-company-logo__main {
  width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 760px) {
  .p-company-logo__main {
    width: 100%;
  }
}
.p-company-logo__content {
  position: relative;
  background: var(--color-bg-white);
  border-radius: 20px;
  padding: 30px 60px;
  box-shadow: 6px 0 38px var(--color-border-black);
  text-align: center;
  z-index: 1;
}
@media (max-width: 760px) {
  .p-company-logo__content {
    padding: 30px 20px;
  }
}
.p-company-logo__list {
  width: 862px;
  max-width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 auto 45px;
}
@media (max-width: 760px) {
  .p-company-logo__list {
    width: 100%;
    padding: 0 0;
    justify-content: space-between;
    box-sizing: border-box;
    margin: 15px auto;
  }
}
.p-company-logo__item {
  width: 242px;
  flex-shrink: 0;
  height: 120px;
  margin: 0 22px;
  margin-top: 60px;
}
@media (max-width: 760px) {
  .p-company-logo__item {
    width: 33.33%;
    height: 60px;
    padding: 0 10px;
    margin: 0;
  }
}
.p-company-logo__item--left {
  width: 385px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media not (max-width: 760px) {
  .p-company-logo__item--left .p-company-logo__image {
    width: 242px;
  }
}
@media (max-width: 760px) {
  .p-company-logo__item--left {
    width: 48%;
  }
}
.p-company-logo__item--right {
  width: 385px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media not (max-width: 760px) {
  .p-company-logo__item--right .p-company-logo__image {
    width: 242px;
  }
}
@media (max-width: 760px) {
  .p-company-logo__item--right {
    width: 48%;
  }
}
.p-company-logo__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-company {
  padding-bottom: 8rem;
}
@media (max-width: 760px) {
  .p-company {
    padding-bottom: 55px;
  }
}
.p-company__main {
  width: 720px;
  padding: 0 15px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 760px) {
  .p-company__main {
    width: 100%;
  }
}
.p-company__content {
  width: 460px;
  padding: 47px 27px;
  background: var(--color-bg-white);
  border-radius: 10px;
  box-shadow: 0 0 20px var(--color-bg-white);
  display: block;
  margin: -117px auto 0;
  position: relative;
  box-sizing: border-box;
  z-index: 2;
}
@media (max-width: 760px) {
  .p-company__content {
    margin-top: 0;
    box-shadow: none;
    width: 100%;
    padding: 50px 5px;
  }
}
.p-company__title {
  font-size: 2.3rem;
  line-height: 38px;
  font-weight: 700;
  margin: 12px 0;
}
@media (max-width: 760px) {
  .p-company__title {
    margin: 18.5px 0;
  }
}
.p-company__title:first-child {
  margin-top: 0;
}
.p-company__text {
  font-size: 1.5rem;
  line-height: 26px;
}
.p-company__access {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
  margin-top: 16px;
}

.p-contact {
  padding-bottom: 120px;
}
@media (max-width: 760px) {
  .p-contact {
    padding-bottom: 55px;
  }
}
.p-contact__main {
  width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 760px) {
  .p-contact__main {
    width: 100%;
  }
}
.p-contact__content {
  width: 689px;
  height: 500px;
  padding: 70.5px 40.5px;
  background: var(--color-bg-white);
  border-radius: 15px;
  box-shadow: 0 0 30px var(--color-border-black);
  display: block;
  margin: -175px auto 0;
  position: relative;
  box-sizing: border-box;
  z-index: 2;
}
@media (max-width: 760px) {
  .p-contact__content {
    margin-top: 0;
    box-shadow: none;
    width: 100%;
    padding: 50px 5px;
  }
}

.p-plan {
  position: relative;
}
.p-plan__main {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
@media (max-width: 760px) {
  .p-plan__main {
    width: 100%;
  }
}
.p-plan-card {
  position: relative;
  width: 510px;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 6px 0 38px var(--color-border-black);
  z-index: 2;
  background: var(--color-bg-white);
  padding-bottom: 55px;
}
@media (max-width: 760px) {
  .p-plan-card {
    width: 100%;
    height: auto;
    padding-bottom: 0;
  }
}
.p-plan-card__title {
  height: 60px;
  color: var(--color-text-white);
  font-size: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-bg-blue-01);
}
@media (max-width: 760px) {
  .p-plan-card__title {
    height: 53px;
    font-size: 18px;
  }
}
.p-plan-card__content {
  text-align: center;
  padding: 35px 30px 0;
}
@media (max-width: 760px) {
  .p-plan-card__content {
    padding: 35px 17px 40px;
  }
}
.p-plan-card__text {
  font-size: 15px;
  line-height: 1;
  padding: 10px 25px;
  display: inline-block;
  background: var(--color-bg-gray-01);
  border-radius: 22.5px;
  font-family: "Hiragino Kaku Gothic ProN";
}
.p-plan-price {
  font-size: 52px;
  line-height: 1;
  margin-top: 15px;
  font-family: "Quicksand", serif;
  font-weight: 500;
}
@media (max-width: 760px) {
  .p-plan-price {
    font-size: 49px;
  }
}
.p-plan-price__text {
  margin: -22.5px 0 0;
  text-align: center;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
}
.p-plan-price__subtext:nth-child(1) {
  font-size: 1.6rem;
}
.p-plan-price__subtext:nth-child(2) {
  font-size: 2.3rem;
}
.p-plan-button {
  text-align: center;
}
.p-plan-button__link {
  width: 320px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 37.5px;
  margin: 24px auto 0;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  background: var(--color-bg-yellow-01);
  transition: all 0.3s;
  color: var(--color-text-default);
}
@media (max-width: 760px) {
  .p-plan-button__link {
    width: 245px;
    height: 72px;
  }
}
.p-plan-button__link:hover {
  text-decoration: none;
  opacity: 0.8;
}
.p-plan-feature__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin: 37.5px 0 0;
}
@media (max-width: 760px) {
  .p-plan-feature__title {
    margin-top: 30px;
  }
}
.p-plan-feature__list {
  margin: 34.5px 0 0;
  display: inline-block;
}
@media (max-width: 760px) {
  .p-plan-feature__list {
    margin-top: 18px;
  }
}
.p-plan-feature__item {
  position: relative;
  padding-left: 35px;
  text-align: left;
  line-height: 30px;
  font-size: 16px;
}
@media (max-width: 760px) {
  .p-plan-feature__item {
    padding-left: 35px;
    font-size: 15px;
  }
}
.p-plan-feature__item::before {
  content: "";
  width: 20px;
  height: 13px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAOCAYAAAAvxDzwAAABLElEQVQ4jaXSO0tcQRQA4M/dWCmIRVDELo0RBMFGLNXGQjAIQhA0gvoPtPQHmPwARTvfaGcRLEIUxUdnI4hgaxGEkC7ik4Fz4bK4uLinO+fOfHPOzK3p3TtXZRTxHTf48aFKrB7rGMQjrqoBW7GLzshTpyOFd2JdOMthYuyx94BfcICWyO8xhVk8ZWANGirAZrCDusj/YgDL2YJCYAs4xMcyUC2WMB97UlyjB7/yC9PHRUyjA/toKsEa8ROTudoRunFZenIhOnuMvB2/0Rz5JxyjL7dnFf24fW2UBK5gPId+DnQYp2iL+jPm0kvirszVyP7DtfRCgRcD2cmt+48JbJaDSsEUG4EmPKFZ/MEQTt7CspHzsYWveIjiRVx+RVhph1lsx319wyj+VYrBCwuoOAtirWHqAAAAAElFTkSuQmCC) top no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 9px;
}
.p-plan-feature__item:not(:first-child) {
  margin-top: 9px;
}
@media (max-width: 760px) {
  .p-plan-feature__item:not(:first-child) {
    margin-top: 5px;
  }
}
.p-plan-hr {
  margin: 30px 0 0;
  opacity: 0.5;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top: 1px inset;
}
@media (max-width: 760px) {
  .p-plan-hr {
    margin-top: 20px;
  }
}
.p-plan-note {
  text-align: left;
  margin-top: 15px;
  margin-bottom: 22.5px;
}
.p-plan-note__item {
  font-size: 14px;
  line-height: 24px;
  padding-left: 10.5px;
  position: relative;
}
.p-plan-note__item::before {
  content: "*";
  position: absolute;
  top: 3px;
  left: 0;
}
.p-plan-note__item:not(:first-child) {
  margin-top: 7.5px;
}
.p-plan-note__link {
  text-decoration: underline;
  display: inline-block;
  color: var(--color-text-blue-01);
  line-height: 1.9;
}
.p-plan-link {
  text-align: center;
}
@media (max-width: 760px) {
  .p-plan-link {
    text-align: left;
    padding: 0 8px;
  }
}
.p-plan-link__text {
  position: relative;
  margin-right: 30px;
  font-size: 16px;
  display: inline;
  color: var(--color-text-blue-01);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border-blue-01);
  line-height: 30px;
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
@media (max-width: 760px) {
  .p-plan-link__text {
    font-size: 15px;
  }
}
.p-plan-link__text::after {
  content: "";
  width: 30px;
  height: 10px;
  display: inline-block;
  margin-right: -30px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAKCAYAAABSfLWiAAAAm0lEQVQoka3SMYoCQRSE4U8FYTXQRDxJX2IDAwXbQHozz+FZht1gvILiBSbwCt7ATGFhQRqcbJMerLDg/Y8qqqdAIaYd1lg0dXVvL/slEHzjA4cQ07AT5PX9E3P8hJgG2S+K0yrENMMZF3z1Qkx7TDuwxljlaKWd/Kv3xOkAmOCEKzZNXf2V7mSEI25YNnX1m/3STrZ45MG1AHgC49slZkvN8tsAAAAASUVORK5CYII=) no-repeat 50%;
  background-size: contain;
}

.c-heading-lv1,
h2.wp-block-heading:not(.c-heading-interview) {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  padding-top: 39px;
  position: relative;
  margin-bottom: 34px;
  margin-top: 100px;
}
.c-heading-lv1::before,
h2.wp-block-heading:not(.c-heading-interview)::before {
  position: absolute;
  content: "";
  background: var(--color-border-blue-02);
  width: 70px;
  height: 5px;
  top: 0;
  left: 0;
  border-radius: 1px 0 0 1px;
}
.c-heading-lv1::after,
h2.wp-block-heading:not(.c-heading-interview)::after {
  position: absolute;
  content: "";
  background: var(--color-border-gray-03);
  width: calc(100% - 70px);
  height: 5px;
  top: 0;
  left: 70px;
  border-radius: 0 1px 1px 0;
}
.c-heading-lv1.--client,
h2.wp-block-heading:not(.c-heading-interview).--client {
  font-size: 3.2rem;
  padding-top: 30px;
  margin-top: 15px;
  margin-bottom: 29px;
  margin-bottom: 80px;
}
@media (max-width: 760px) {
  .c-heading-lv1.--client,
  h2.wp-block-heading:not(.c-heading-interview).--client {
    font-size: 2.8rem;
    margin-bottom: 30px;
  }
}

.c-heading-lv2, h3.wp-block-heading:not(.c-heading-question) {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  padding-top: 28px;
  position: relative;
  margin-bottom: 25px;
  margin-top: 60px;
}
.c-heading-lv2::before, h3.wp-block-heading:not(.c-heading-question)::before {
  position: absolute;
  content: "";
  background-color: var(--color-border-blue-02);
  width: 70px;
  height: 2px;
  top: 0;
  left: 0;
  border-radius: 1px 0 0 1px;
}
.c-heading-lv2::after, h3.wp-block-heading:not(.c-heading-question)::after {
  position: absolute;
  content: "";
  background-color: var(--color-border-gray-03);
  width: calc(100% - 70px);
  height: 2px;
  top: 0;
  left: 70px;
  border-radius: 0 1px 1px 0;
}

.c-heading-lv3, h4.wp-block-heading {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  margin-bottom: 25px;
  margin-top: 36px;
}

.c-heading-interview {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 30px;
  margin-top: 100px;
}
@media (max-width: 760px) {
  .c-heading-interview {
    margin-top: 50px;
  }
}

.c-heading-question {
  font-size: 2rem;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 30px;
  color: var(--color-text-blue-03);
}

.c-heading-feature {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-blue-03);
}
@media (max-width: 760px) {
  .c-heading-feature {
    font-size: 3rem;
    line-height: 40px;
  }
}

.c-heading-sitemap {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.c-dialogue {
  margin-bottom: 30px;
}
.c-dialogue.--float-left {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 760px) {
  .c-dialogue.--float-left {
    flex-direction: column-reverse;
  }
}
.c-dialogue.--float-right {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-direction: row-reverse;
  margin-bottom: 30px;
}
@media (max-width: 760px) {
  .c-dialogue.--float-right {
    flex-direction: column-reverse;
  }
}
.c-dialogue.--float-left .c-dialogue__text, .c-dialogue.--float-right .c-dialogue__text {
  margin-bottom: 0;
  width: 50%;
}
@media (max-width: 760px) {
  .c-dialogue.--float-left .c-dialogue__text, .c-dialogue.--float-right .c-dialogue__text {
    width: 100%;
  }
}
.c-dialogue.--float-left .c-dialogue__wrap, .c-dialogue.--float-right .c-dialogue__wrap {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 760px) {
  .c-dialogue.--float-left .c-dialogue__wrap, .c-dialogue.--float-right .c-dialogue__wrap {
    width: 100%;
  }
}
.c-dialogue.--float-left .c-dialogue__wrap img, .c-dialogue.--float-right .c-dialogue__wrap img {
  width: 100% !important;
}
.c-dialogue__text {
  font-size: 1.8rem;
  line-height: 28px;
}
.c-dialogue__text:not(:last-child) {
  margin-bottom: 30px;
}
.c-dialogue__text p {
  display: inline;
}
.c-dialogue__name {
  font-weight: 700;
  margin-right: 10px;
}
.c-dialogue__image {
  width: 100%;
  height: auto;
}

.c-image {
  width: 100%;
  margin: 30px 0;
}
.c-image img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.wp-block-image {
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 760px) {
  .wp-block-image {
    margin-bottom: 40px;
  }
}
.wp-block-image img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.wp-block-list {
  margin-bottom: 30px;
}
.wp-block-list li {
  padding-left: 1.2em;
  position: relative;
  margin-top: 10px;
}
.wp-block-list li:first-of-type {
  margin-top: 0;
}
.wp-block-list li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: calc(0.8em - 3px);
  left: calc(0.5em - 3px);
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAQElEQVQImWNMLG7gYmBgmMLAwBDJAAHLGRgYcliggolQQRAAs5mQVCKDSJAEVgCSAJmJDpaD7MiBiiIsZ2DIAQDxdwicVsf7FgAAAABJRU5ErkJggg==);
  background-repeat: no-repeat;
}
.wp-block-list .wp-block-list {
  margin-top: 15px;
}

.wp-block-flexible-table-block-table,
.wp-block-table {
  margin-bottom: 30px;
}
.wp-block-flexible-table-block-table table,
.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  border-bottom: solid 1px #ccc;
  border-right: solid 1px #ccc;
}
.wp-block-flexible-table-block-table table th, .wp-block-flexible-table-block-table table td,
.wp-block-table table th,
.wp-block-table table td {
  border-top: solid 1px #ccc;
  border-left: solid 1px #ccc;
  padding: 8px;
}

.p-heading {
  background: var(--color-bg-lightblue-02) url(/wp-content/themes/coopel_2025/assets/images/heading/bg-heading.svg) center no-repeat;
  height: 324px;
  margin-bottom: 80px;
}
@media (max-width: 760px) {
  .p-heading {
    height: auto;
    margin: 56px 0 60px;
  }
}
.p-heading--narrow {
  background-image: none;
  height: 160px;
}
@media (max-width: 760px) {
  .p-heading--narrow {
    height: auto;
    margin-bottom: 40px;
  }
  .p-heading--narrow .p-heading__container {
    height: auto;
  }
}
.p-heading--reading {
  height: auto;
  background-image: none;
}
@media (max-width: 760px) {
  .p-heading--reading .p-heading__container {
    height: auto;
  }
}
.p-heading--compact {
  height: 270px;
}
@media (max-width: 760px) {
  .p-heading--compact .p-heading__container {
    height: 200px;
  }
}
.p-heading-breadcrumb {
  position: absolute;
  font-size: 1.4rem;
  font-weight: 300;
  padding: 9px 0 0 20px;
}
@media (max-width: 760px) {
  .p-heading-breadcrumb {
    position: static;
    font-size: 1.2rem;
    padding: 0;
  }
}
.p-heading-breadcrumb__list {
  display: flex;
  line-height: 37px;
  flex-wrap: nowrap;
}
@media (max-width: 760px) {
  .p-heading-breadcrumb__list {
    padding-left: 10px;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .p-heading-breadcrumb__list::-webkit-scrollbar {
    display: none;
  }
}
.p-heading-breadcrumb__item {
  flex-shrink: 0;
}
.p-heading-breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin: 0 11px;
}
.p-heading-breadcrumb__link {
  color: var(--color-text-gray-01);
}
.p-heading-breadcrumb__current {
  color: var(--color-text-gray-01);
  pointer-events: none;
}
.p-heading__container {
  max-width: 1024px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 760px) {
  .p-heading__container {
    height: 258px;
    padding: 0 20px;
  }
}
.p-heading__subtitle {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: block;
}
@media (max-width: 760px) {
  .p-heading__subtitle {
    margin-bottom: 13px;
  }
}
.p-heading__title {
  font-weight: 700;
  font-size: 4.4rem;
  display: block;
}
@media (max-width: 760px) {
  .p-heading__title {
    font-size: 3.2rem;
    line-height: 1.2;
  }
}
.p-heading__title--narrow {
  font-size: 3.6rem;
}
@media (max-width: 760px) {
  .p-heading__title--narrow {
    font-size: 32px;
    padding: 10px 0 30px 0;
  }
}
.p-heading__title--reading {
  margin: 60px 0;
  font-size: 3.6rem;
  text-align: left;
  line-height: 1.2;
}
@media (max-width: 760px) {
  .p-heading__title--reading {
    font-size: 3.2rem;
    padding: 20px 0;
    margin: 0;
  }
}
.p-heading__button {
  margin-top: 23px;
  display: flex;
  gap: 20px;
}
@media (max-width: 760px) {
  .p-heading__button {
    gap: 10px;
  }
}
.p-heading__link {
  display: block;
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 26px;
  background-color: var(--color-bg-green-02);
  line-height: 52px;
  width: 236px;
  color: var(--color-text-white);
  transition: all 0.3s;
}
.p-heading__link:hover {
  opacity: 0.8;
  text-decoration: none;
}
.p-heading__link:nth-child(2) {
  background-color: var(--color-bg-green-01);
  color: var(--color-text-white);
}
@media (max-width: 760px) {
  .p-heading__link {
    width: 138px;
    line-height: 40px;
    border-radius: 20px;
  }
}
.p-heading--feature {
  height: 420px;
  background-size: cover;
  overflow: hidden;
}
@media (max-width: 760px) {
  .p-heading--feature {
    height: 321px;
    margin-bottom: 60px;
  }
}
.p-heading--feature .p-heading__container {
  display: block;
  padding: 88px 0;
  max-width: 100%;
}
@media (max-width: 760px) {
  .p-heading--feature .p-heading__container {
    padding: 30px 0 50px;
  }
}
.p-heading--feature .p-heading__title {
  color: var(--color-text-blue-03);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 4.8rem;
  margin-bottom: 13px;
}
@media (max-width: 760px) {
  .p-heading--feature .p-heading__title {
    font-size: 3.2rem;
    margin-bottom: 17px;
  }
}
.p-heading--feature .p-heading__text {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 23px;
}
@media (max-width: 760px) {
  .p-heading--feature .p-heading__text {
    font-size: 1.6rem;
    line-height: 24px;
    margin-bottom: 13px;
  }
}
.p-heading--feature .p-heading__button {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.p-heading--feature .p-heading__tagline {
  display: flex;
}
.p-heading--feature .p-heading__list {
  flex-shrink: 0;
  display: flex;
}
.p-heading--feature .p-heading__item {
  width: auto;
  background: var(--color-bg-green-01);
  color: var(--color-text-white);
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 57px;
  border-radius: 30px;
  padding: 0 20px;
  flex-shrink: 0;
}

.l-header__list {
  display: flex;
  height: auto;
}

.l-header__list > * {
  height: auto;
}

.p-effect {
  margin-bottom: 100px;
}
.p-effect__wrap {
  border: 2px solid var(--color-border-gray-01);
  padding: 28px;
  position: relative;
}
.p-effect__wrap:not(:last-child) {
  margin-bottom: 50px;
}
.p-effect__wrap:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  background: url(/wp-content/themes/coopel_2025/assets/images/common/icon_triangle-down.svg) no-repeat center/contain;
  width: 26px;
  height: 21px;
  bottom: -39px;
  left: 50%;
  transform: translate(-50%, 0);
}
.p-effect__wrap.--blue {
  border-color: var(--color-border-blue-02);
}
.p-effect__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 26px;
  position: relative;
  margin-bottom: 10px;
}
.p-effect__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--color-border-gray-02) 0px, var(--color-border-gray-02) 1px, transparent 1px, transparent 3px, var(--color-border-gray-02) 3px, var(--color-border-gray-02) 4px);
  margin-top: 9px;
}
.p-effect__title.--blue {
  color: var(--color-text-blue-03);
}
.p-effect__item {
  font-size: 1.8rem;
  line-height: 28px;
  padding-left: 34px;
  position: relative;
}
.p-effect__item::before {
  content: "";
  display: block;
  position: absolute;
  background: url(/wp-content/themes/coopel_2025/assets/images/common/icon_yellow.svg) no-repeat center/contain;
  width: 20px;
  height: 20px;
  top: 4px;
  left: 2px;
}
.p-effect__item:not(:last-child) {
  margin-bottom: 10px;
}
.p-effect__item.--check::before {
  background: url(/wp-content/themes/coopel_2025/assets/images/common/icon_blue.svg) no-repeat center/contain;
}

.p-column-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.p-column-info__date {
  font-size: 1.2rem;
  line-height: 14px;
  flex-shrink: 0;
  margin-right: 5px;
}
.p-column-info__wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.p-column-info__tag {
  font-size: 1.2rem;
  line-height: 14px;
  background: var(--color-bg-gray-02);
  border-radius: 2px;
  text-align: center;
  color: var(--color-text-white);
  padding: 0 10px;
  transition: all 0.3s;
}
.p-column-info__tag:hover {
  text-decoration: none;
  opacity: 0.8;
}

.p-client {
  margin-bottom: 100px;
}
.p-client__title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 29px;
}
.p-client__content {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media (max-width: 760px) {
  .p-client__content {
    flex-direction: column;
  }
}
.p-client__image {
  width: 50%;
}
@media (max-width: 760px) {
  .p-client__image {
    width: 100%;
  }
}
.p-client__image img {
  width: 100%;
}
.p-client__text {
  width: 50%;
  font-size: 1.8rem;
  line-height: 28px;
}
@media (max-width: 760px) {
  .p-client__text {
    width: 100%;
  }
}
.p-client-interview {
  background: var(--color-bg-lightblue-03);
  padding: 20px;
}
.p-client-interview__title {
  font-size: 1.8rem;
  line-height: 28px;
  font-weight: 400;
  display: inline-block;
  position: relative;
}
.p-client-interview__title::after {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  width: 100%;
  left: 0;
  bottom: 3px;
  background: var(--color-text-default);
}
.p-client-interview__text {
  font-size: 1.8rem;
  line-height: 28px;
}

.p-install {
  margin-bottom: 100px;
}
.p-install__wrap {
  border: 2px solid var(--color-border-gray-01);
  padding: 28px;
  position: relative;
}
.p-install__wrap:not(:last-child) {
  margin-bottom: 50px;
}
.p-install__wrap:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  background: url(/wp-content/themes/coopel_2025/assets/images/common/icon_triangle-down.svg) no-repeat center/contain;
  width: 26px;
  height: 21px;
  bottom: -39px;
  left: 50%;
  transform: translate(-50%, 0);
}
.p-install__wrap.--blue {
  border-color: var(--color-border-blue-02);
}
.p-install__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 26px;
  position: relative;
  margin-bottom: 10px;
  text-align: center;
}
.p-install__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--color-border-gray-02) 0px, var(--color-border-gray-02) 1px, transparent 1px, transparent 3px, var(--color-border-gray-02) 3px, var(--color-border-gray-02) 4px);
  margin-top: 9px;
}
.p-install__title.--blue {
  color: var(--color-text-blue-03);
}
.p-install__title.--blue::after {
  display: none;
}
.p-install__lead {
  background: var(--color-bg-blue-02-transparent);
  padding: 10px 0;
  text-align: center;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-text-blue-04);
  margin-bottom: 10px;
}
.p-install__lead::before {
  content: url(/wp-content/themes/coopel_2025/assets/images/common/icon_time.svg);
  margin-right: 5px;
}
.p-install__lead--large {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: var(--color-text-blue-03);
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 28px;
}
.p-install__lead--small {
  color: var(--color-text-black-01);
  font-size: 1.4rem;
  margin-right: 10px;
}
.p-install__item {
  font-size: 1.8rem;
  line-height: 28px;
  padding-left: 34px;
  position: relative;
}
.p-install__item::before {
  content: "";
  display: block;
  position: absolute;
  background: url(/wp-content/themes/coopel_2025/assets/images/common/icon_yellow.svg) no-repeat center/contain;
  width: 20px;
  height: 20px;
  top: 4px;
  left: 2px;
}
.p-install__item:not(:last-child) {
  margin-bottom: 10px;
}
.p-install__item.--check::before {
  background: url(/wp-content/themes/coopel_2025/assets/images/common/icon_blue.svg) no-repeat center/contain;
}
.p-install__nobr {
  white-space: nowrap;
}

.p-faq-item {
  background: var(--color-bg-gray-03);
  margin-bottom: 100px;
  border-radius: 4px;
  padding: 10px;
}
.p-faq-item:not(:last-child) {
  margin-bottom: 20px;
}
.p-faq-item__question {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 30px;
  padding: 0 44px 0 50px;
  margin-bottom: 10px;
  position: relative;
  margin: 0;
  cursor: pointer;
}
.p-faq-item__question::before {
  position: absolute;
  content: "";
  background: url(/wp-content/themes/coopel_2025/assets/images/common/icon_question.svg);
  display: block;
  width: 30px;
  height: 31px;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.p-faq-item__icon {
  position: absolute;
  right: 5px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
}
.p-faq-item__icon::before, .p-faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background-color: var(--color-border-blue-02);
  transition: transform 0.3s;
}
.p-faq-item__icon::before {
  width: 100%;
  height: 2px;
  transform: rotate(90deg);
  border-radius: 100vmax;
}
.p-faq-item__icon::after {
  width: 100%;
  height: 2px;
  border-radius: 100vmax;
}
.is-open .p-faq-item__icon::before {
  transform: rotate(0deg);
}
.is-open .p-faq-item__icon::after {
  transform: scaleY(0);
}
.p-faq-item__answer {
  display: none;
}
.p-faq-item__answer p:last-of-type {
  margin-bottom: 0;
}
.is-open .p-faq-item__answer {
  display: block;
  font-size: 1.8rem;
  line-height: 26px;
  padding: 20px 20px 20px 50px;
  border-radius: 4px;
  background: var(--color-bg-white);
  position: relative;
  margin-top: 10px;
}
.is-open .p-faq-item__answer::before {
  position: absolute;
  content: "";
  background: url(/wp-content/themes/coopel_2025/assets/images/common/icon_answer.svg) center center no-repeat;
  display: block;
  width: 50px;
  height: 26px;
  top: 20px;
  left: 0;
}
.p-faq-item__link {
  display: none;
}
.is-open .p-faq-item__link {
  display: inline-block;
  color: var(--color-text-blue-01);
  text-decoration: underline;
}
.p-faq-item__tips {
  display: none;
}
.is-open .p-faq-item__tips {
  display: block;
  font-size: 1.6rem;
  line-height: 26px;
  padding: 18px;
  border: 2px solid var(--color-border-blue-03);
  border-radius: 8px;
  margin-top: 20px;
  position: relative;
}
.is-open .p-faq-item__tips::before {
  position: absolute;
  content: "Tips";
  display: block;
  width: 43px;
  height: 26px;
  background: var(--color-bg-white);
  color: var(--color-text-blue-05);
  font-weight: 700;
  top: -15px;
  left: 20px;
  text-align: center;
}

.p-faq.--use-at-other .p-faq-item__question {
  padding-left: 10px;
}
.p-faq.--use-at-other .p-faq-item__question::before {
  display: none;
}
.p-faq.--use-at-other .p-faq-item__answer {
  padding: 30px 20px;
}
.p-faq.--use-at-other .p-faq-item__answer::before {
  display: none;
}
.p-faq.--use-at-other .p-faq-item__answer h4 {
  margin-top: 0;
  margin-bottom: 20px;
}
.p-faq.--use-at-other .p-faq-item:last-of-type {
  margin-bottom: 0;
}

.p-news {
  margin-bottom: 100px;
}
.p-news__list {
  margin-bottom: 100px;
}
@media (max-width: 760px) {
  .p-news__list {
    margin-bottom: 50px;
  }
}
.p-news__item {
  border-top: 1px solid var(--color-border-gray-03);
  position: relative;
}
.p-news__item:last-child {
  border-bottom: 1px solid var(--color-border-gray-03);
}
.p-news__item::after {
  position: absolute;
  content: "";
  background: url(/wp-content/themes/coopel_2025/assets/images/common/icon_arrow-right.svg) center center no-repeat;
  width: 15px;
  height: 14px;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.p-news__link {
  padding: 19px 25px 19px 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.p-news__link:hover {
  background-color: var(--color-bg-blue-02-transparent);
  text-decoration: none;
}
.p-news__meta {
  display: flex;
  gap: 20px;
  font-size: 1.2rem;
  line-height: 14px;
  margin-bottom: 10px;
}
.p-news__date {
  color: var(--color-text-gray-02);
  width: 90px;
}
.p-news__tag {
  color: var(--color-text-white);
  background: var(--color-bg-gray-02);
  border-radius: 2px;
  text-align: center;
  padding: 0 10px;
}
.p-news__title {
  color: var(--color-text-black-02);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 28px;
}

.p-link__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 40px;
}
@media (max-width: 760px) {
  .p-link__list {
    flex-direction: column;
  }
}
.p-link__item {
  border-bottom: 1px solid var(--color-border-gray-03);
}
.p-link__item:nth-child(-n+2) {
  border-top: 1px solid var(--color-border-gray-03);
}
.p-link__link {
  display: block;
  width: 290px;
  font-size: 1.6rem;
  line-height: 56px;
  font-weight: 700;
  color: var(--color-text-blue-01);
  position: relative;
  transition: all 0.3s;
}
@media (max-width: 760px) {
  .p-link__link {
    width: 100%;
  }
}
.p-link__link::after {
  position: absolute;
  content: "";
  background: url(/wp-content/themes/coopel_2025/assets/images/common/icon_arrow-down.svg) center center no-repeat;
  display: block;
  width: 15px;
  height: 14px;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.p-link__link:hover {
  background-color: var(--color-bg-blue-02-transparent);
  text-decoration: none;
}

.p-notice__wrap {
  margin-bottom: 20px;
}
.p-notice__text {
  font-size: 1.6rem;
  line-height: 26px;
  margin-bottom: 10px;
  margin-bottom: 10px;
}
.p-notice__link {
  display: block;
  font-size: 1.6rem;
  line-height: 26px;
  text-decoration: underline;
  margin-bottom: 10px;
}
.p-notice__item:not(:last-child) {
  margin-bottom: 20px;
}
.p-notice__title {
  font-size: 1.6rem;
  line-height: 26px;
  font-weight: 400;
  position: relative;
  padding-left: 16px;
}
.p-notice__title::before {
  position: absolute;
  content: "◾️";
  width: 10px;
  height: 10px;
  left: -3px;
  top: -2px;
}

@media not (max-width: 760px) {
  .p-side {
    width: 240px;
    position: absolute;
    right: -300px;
  }
}
.p-side__title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  padding: 0 0 14px 15px;
  border-bottom: 1px solid var(--color-border-gray-04);
}
.p-side__item {
  border-bottom: 1px solid var(--color-border-gray-03);
  position: relative;
}
.p-side__item:first-child {
  border-top: 1px solid var(--color-border-gray-03);
}
.p-side__item.is-current {
  font-weight: 700;
}
.p-side__item.is-current::before {
  position: absolute;
  content: "";
  display: block;
  width: 5px;
  height: 100%;
  background-color: var(--color-border-blue-02);
  left: 0;
  top: 0;
}
.p-side__item::after {
  position: absolute;
  content: "";
  background: url(/wp-content/themes/coopel_2025/assets/images/common/icon_arrow-down.svg) center center no-repeat;
  width: 14px;
  height: 15px;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
}
.p-side__item.is-link::after {
  transform: translate(0, -50%) rotateZ(-90deg);
}
.p-side__link {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  line-height: 43px;
  padding-left: 15px;
}

.p-characteristic__list {
  margin-bottom: 100px;
}
@media (max-width: 760px) {
  .p-characteristic__list {
    margin-bottom: 50px;
  }
}
.p-characteristic__item:not(:last-child) {
  margin-bottom: 50px;
}
.p-characteristic__link {
  display: block;
  color: var(--color-text-default);
  padding: 30px 53px 20px 20px;
  position: relative;
  border: 1px solid var(--color-border-gray-04);
  border-radius: 8px;
  position: relative;
  transition: all 0.3s;
}
.p-characteristic__link::after {
  position: absolute;
  content: "";
  display: block;
  width: 14px;
  height: 12px;
  top: 50%;
  right: 0;
  transform: translate(-19px, -50%);
  background: url(/wp-content/themes/coopel_2025/assets/images/common/icon_arrow-right.svg) center center no-repeat;
  background-size: cover;
}
.p-characteristic__link:hover {
  text-decoration: none;
  background-color: var(--color-bg-blue-02-transparent);
}
.p-characteristic__heading {
  position: absolute;
  top: -19px;
  left: 20px;
  padding: 0 10px 0 26px;
  background-color: var(--color-bg-blue-03);
  border-radius: 4px;
  line-height: 38px;
  width: auto;
  height: 38px;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-text-blue-04);
}
.p-characteristic__heading::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background: url(/wp-content/themes/coopel_2025/assets/images/common/icon_time.svg) center center no-repeat;
  background-size: contain;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
}
.p-characteristic__number {
  font-size: 2rem;
  letter-spacing: -0.05em;
  color: var(--color-text-blue-03);
  font-family: "M PLUS Rounded 1c", sans-serif;
}
.p-characteristic__unit {
  font-size: 1.4rem;
  color: var(--color-text-black-01);
  margin-right: 5px;
}
.p-characteristic__title {
  font-size: 2rem;
  line-height: 24px;
  color: var(--color-text-black-03);
  margin-bottom: 12px;
  font-weight: 400;
}
.p-characteristic__text {
  font-size: 1.8rem;
  line-height: 24px;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-characteristic__tag-list {
  display: flex;
  gap: 10px;
}
.p-characteristic__tag-item {
  font-size: 1.2rem;
  line-height: 14px;
  color: var(--color-text-white);
  background-color: var(--color-bg-gray-02);
  padding: 0 10px;
  border-radius: 2px;
}

.p-search {
  margin-bottom: 100px;
  text-align: center;
}
@media (max-width: 760px) {
  .p-search {
    margin-bottom: 50px;
  }
}
.p-search__title {
  display: inline-block;
  font-size: 2rem;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-left: 29px;
  position: relative;
}
@media (max-width: 760px) {
  .p-search__title {
    margin-bottom: 20px;
  }
}
.p-search__title::before {
  position: absolute;
  content: "";
  background: url(/wp-content/themes/coopel_2025/assets/images/common/icon_search.svg) center center no-repeat;
  background-size: cover;
  display: block;
  width: 19px;
  height: 19px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.p-search__list {
  display: flex;
  margin-bottom: 60px;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 760px) {
  .p-search__list {
    justify-content: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
}
.p-search__link {
  display: inline-block;
  color: var(--color-text-black-03);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 36px;
  background-color: var(--color-bg-gray-03);
  border-radius: 18px;
  padding: 0 30px;
  transition: all 0.3s;
}
@media (max-width: 760px) {
  .p-search__link {
    white-space: nowrap;
  }
}
.p-search__link.current {
  color: var(--color-text-white);
  background-color: var(--color-bg-blue-02);
}
.p-search__link:hover {
  text-decoration: none;
  background-color: var(--color-bg-blue-02-transparent);
}
.p-search-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media (max-width: 760px) {
  .p-search-card__list {
    flex-direction: column;
    gap: 20px;
  }
}
.p-search-card__link {
  color: var(--color-text-default);
  display: block;
  width: 300px;
  height: 100%;
  border-radius: 8px;
  border: 1px solid var(--color-border-gray-04);
  overflow: hidden;
  transition: all 0.3s;
}
@media (max-width: 760px) {
  .p-search-card__link {
    width: 100%;
  }
}
.p-search-card__link:hover {
  text-decoration: none;
  background-color: var(--color-bg-blue-02-transparent);
}
.p-search-card__image {
  width: 300px;
  height: 200px;
}
@media (max-width: 760px) {
  .p-search-card__image {
    width: 100%;
    height: auto;
  }
}
.p-search-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-search-card__wrap {
  padding: 20px 19px 30px;
}
.p-search-card__title {
  margin-bottom: 20px;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-text-black-03);
}
@media (max-width: 760px) {
  .p-search-card__title {
    text-align: left;
  }
}
.p-search-card__text {
  font-size: 1.8rem;
  line-height: 28px;
  text-align: left;
}
.p-search-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.p-search-tag__item {
  font-size: 12px;
  line-height: 14px;
  border-radius: 2px;
  padding: 0 10px;
  color: var(--color-text-white);
  background-color: var(--color-bg-gray-02);
}

.p-price {
  margin-bottom: 100px;
}
@media (max-width: 760px) {
  .p-price {
    margin-bottom: 50px;
  }
}
.p-price__list {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media (max-width: 760px) {
  .p-price__list {
    flex-direction: column;
    gap: 20px;
  }
}
.p-price__item {
  width: 300px;
  padding: 30px 20px 40px;
  background-color: var(--color-bg-blue-02-transparent);
  border-radius: 8px;
  text-align: center;
}
@media (max-width: 760px) {
  .p-price__item {
    width: 100%;
  }
}
.p-price__heading {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--color-text-black-03);
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.p-price__heading::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  bottom: -5px;
  left: 0;
  background: var(--color-border-blue-02);
  z-index: -1;
}
.p-price__initial-cost {
  background-color: var(--color-bg-white);
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 20px;
}
.p-price__payment {
  background-color: var(--color-bg-white);
  border-radius: 8px;
  padding: 30px 20px;
  margin-bottom: 25px;
}
.p-price__title {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-black-03);
  margin-bottom: 10px;
}
.p-price__text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-black-03);
}
.p-price__table {
  width: calc(100% + 30px);
  margin-left: -15px;
}
.p-price__table:not(:last-child) {
  margin-bottom: 30px;
}
.p-price__row:not(:last-child) .p-price__cell {
  padding-bottom: 10px;
}
.p-price__cell {
  width: 50%;
}
.p-price__label {
  font-size: 1.3rem;
  line-height: 14px;
  color: var(--color-text-gray-02);
  text-align: right;
  padding-right: 10px;
}
.p-price__value {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  text-align: left;
  color: var(--color-text-black-03);
}
.p-price__value.--small {
  font-size: 1.6rem;
}
.p-price__unit {
  font-size: 1rem;
}
.p-price-note {
  margin-bottom: 100px;
}
@media (max-width: 760px) {
  .p-price-note {
    margin-bottom: 50px;
  }
}
.p-price-note__item {
  font-size: 1.3rem;
  line-height: 20px;
  color: var(--color-text-black-03);
  position: relative;
  padding-left: 19px;
}
.p-price-note__item::before {
  position: absolute;
  content: "・";
  left: 2px;
  top: 4px;
}
.p-price-button {
  display: block;
  width: 100%;
  height: auto;
  transition: all 0.3s;
}
.p-price-button:hover {
  opacity: 0.8;
}
.p-price-button img {
  max-width: 100%;
}
@media (max-width: 760px) {
  .p-price-button img {
    margin: 0 auto;
  }
}

.p-price-button {
  margin: 40px auto;
}
.p-price-button__body {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: bold;
  color: var(--color-text-white);
  background-color: var(--color-bg-blue-02);
  transition: opacity 0.3s ease;
}
@media not (max-width: 760px) {
  .p-price-button__body {
    width: 70%;
    height: 72px;
    border-radius: 36px;
    font-size: 1.8rem;
  }
}
@media (max-width: 760px) {
  .p-price-button__body {
    text-align: center;
    width: 100%;
    height: 60px;
    border-radius: 30px;
    font-size: 1.8rem;
  }
}
.p-price-button__body:hover {
  text-decoration: none;
  opacity: 0.8;
}

.p-function {
  text-align: center;
  margin-bottom: 100px;
}
.p-function__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-black-01);
  margin-bottom: 30px;
}
@media (max-width: 760px) {
  .p-function__title {
    line-height: 30px;
  }
}
.p-function__list {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 760px) {
  .p-function__list {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 0 20px;
  }
  .p-function__list::-webkit-scrollbar {
    display: none;
  }
}
.p-function__item {
  width: 184px;
  height: 184px;
  padding: 12px;
  border: 1px solid var(--color-border-gray-04);
  border-radius: 8px;
}
.p-function__image {
  margin-bottom: 8px;
  width: 160px;
  height: 90px;
}
.p-function__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-function__text {
  font-size: 1.6rem;
  color: var(--color-text-black-03);
  line-height: 20px;
}

.p-feature {
  margin-bottom: 100px;
}
@media (max-width: 760px) {
  .p-feature {
    margin-bottom: 60px;
  }
}
.p-feature__title {
  text-align: center;
  margin-bottom: 60px;
}
.p-feature__item {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}
@media (max-width: 760px) {
  .p-feature__item {
    overflow: hidden;
    flex-wrap: wrap;
    gap: 20px;
    width: calc(100% + 20px);
    padding-right: 20px;
  }
}
.p-feature__item:nth-child(2n+1) {
  flex-direction: row-reverse;
}
@media (max-width: 760px) {
  .p-feature__item:nth-child(2n+1) {
    flex-wrap: wrap;
    flex-direction: row;
  }
}
.p-feature__item:nth-child(1)::after {
  position: absolute;
  width: 305px;
  height: 190px;
  content: "01";
  font-size: 26rem;
  font-weight: 300;
  line-height: 190px;
  letter-spacing: -0.05em;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: var(--color-text-blue-06);
  top: 0;
  right: -30px;
  z-index: -1;
}
@media (max-width: 760px) {
  .p-feature__item:nth-child(1)::after {
    width: 235px;
    font-size: 20rem;
    top: -10px;
    right: -40px;
  }
}
.p-feature__item:nth-child(2)::after {
  position: absolute;
  width: 305px;
  height: 190px;
  content: "02";
  font-size: 26rem;
  font-weight: 300;
  line-height: 190px;
  letter-spacing: -0.05em;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: var(--color-text-blue-06);
  top: 0;
  right: 387px;
  z-index: -1;
}
@media (max-width: 760px) {
  .p-feature__item:nth-child(2)::after {
    width: 235px;
    font-size: 20rem;
    top: -10px;
    right: -40px;
  }
}
.p-feature__item:nth-child(2) .p-feature__image {
  height: 277px;
}
.p-feature__item:nth-child(3)::after {
  position: absolute;
  width: 305px;
  height: 190px;
  content: "03";
  font-size: 26rem;
  font-weight: 300;
  line-height: 190px;
  letter-spacing: -0.05em;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: var(--color-text-blue-06);
  top: 0;
  right: -22px;
  z-index: -1;
}
@media (max-width: 760px) {
  .p-feature__item:nth-child(3)::after {
    width: 235px;
    font-size: 20rem;
    top: -10px;
    right: -40px;
  }
}
.p-feature__wrap {
  width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 760px) {
  .p-feature__wrap {
    width: auto;
  }
}
.p-feature__sub-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 30px;
}
@media (max-width: 760px) {
  .p-feature__sub-title {
    font-size: 2.4rem;
    line-height: 1;
  }
}
.p-feature__description {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 30px;
}
.p-feature__text {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 28px;
}
.p-feature__nobr {
  white-space: nowrap;
}
.p-feature__note {
  font-size: 12px;
}
.p-feature__image {
  width: 360px;
  height: 309px;
}
@media (max-width: 760px) {
  .p-feature__image {
    width: 100%;
    height: auto;
  }
}
.p-feature__image img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 760px) {
  .p-feature__image img {
    margin: 0 auto;
  }
}

.p-can {
  margin-bottom: 100px;
}
@media (max-width: 760px) {
  .p-can {
    margin-bottom: 60px;
  }
}
.p-can__title {
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}
.p-can__text {
  font-size: 1.8rem;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}
@media (max-width: 760px) {
  .p-can__text {
    letter-spacing: -0.03em;
  }
}
.p-can-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 760px) {
  .p-can-card__list {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
}
.p-can-card__item {
  width: 300px;
  height: 254px;
  border-radius: 8px;
  border: 1px solid var(--color-border-gray-04);
  padding: 30px 20px;
  text-align: center;
}
@media (max-width: 760px) {
  .p-can-card__item {
    width: 100%;
    height: auto;
    padding: 20px;
  }
}
.p-can-card__title {
  font-size: 2rem;
  line-height: 28px;
  margin-bottom: 20px;
  color: var(--color-text-black-03);
  font-weight: 400;
}
@media (max-width: 760px) {
  .p-can-card__title {
    line-height: 1;
    font-weight: 700;
    position: relative;
    color: var(--color-text-black-01);
  }
  .p-can-card__title::after {
    position: absolute;
    top: 16px;
    left: 0;
    display: block;
    width: 100%;
    height: 4px;
    content: "";
    background: var(--color-bg-blue-02);
    z-index: -1;
  }
}
.p-can-card__image {
  display: block;
  margin: 0 auto 18px;
}
@media (max-width: 760px) {
  .p-can-card__image {
    display: none;
  }
}
.p-can-card__text {
  font-size: 1.6rem;
  line-height: 28px;
  letter-spacing: -0.03em;
  text-align: justify;
}
.p-can__button {
  display: flex;
  justify-content: center;
  gap: 50px;
}
@media (max-width: 760px) {
  .p-can__button {
    flex-direction: column;
    gap: 10px;
  }
}
.p-can__link {
  display: block;
  width: 300px;
  line-height: 60px;
  border-radius: 30px;
  background: var(--color-bg-blue-02);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-white);
  text-align: center;
  transition: all 0.3s;
}
@media (max-width: 760px) {
  .p-can__link {
    width: 100%;
  }
}
.p-can__link:hover {
  text-decoration: none;
  opacity: 0.8;
}

.p-cannot {
  margin-bottom: 100px;
}
@media (max-width: 760px) {
  .p-cannot {
    margin-bottom: 60px;
  }
}
.p-cannot__title {
  text-align: center;
  margin-bottom: 30px;
}
.p-cannot__note {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 28px;
  color: var(--color-text-black-01);
  margin-bottom: 30px;
  letter-spacing: -0.03em;
}
.p-cannot__wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 760px) {
  .p-cannot__wrap {
    flex-direction: column;
    gap: 20px;
  }
}
.p-cannot__card {
  border: 1px solid var(--color-border-gray-04);
  border-radius: 8px;
  padding: 29px 19px;
  width: 300px;
  height: 214px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
@media (max-width: 760px) {
  .p-cannot__card {
    width: 100%;
    height: 194px;
    padding: 20px;
  }
}
.p-cannot__card::after {
  position: absolute;
  content: "×";
  font-size: 22rem;
  color: var(--color-text-black-04);
  font-weight: 500;
  top: -119px;
  right: -58px;
  width: 220px;
  height: 220px;
}
.p-cannot__text {
  height: 56px;
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 20px;
  color: var(--color-text-black-03);
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.p-cannot__description {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 26px;
  color: var(--color-text-gray-03);
}

.p-service-example {
  background-color: var(--color-bg-gray-03);
  padding: 100px 0;
  margin: 100px 0;
}
@media (max-width: 760px) {
  .p-service-example {
    padding: 50px 0 59px;
    margin: 60px 0;
  }
}
.p-service-example__title {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 760px) {
  .p-service-example__title {
    margin-bottom: 30px;
  }
}
.p-service-example__looper {
  height: 125px;
  overflow: hidden;
}
.p-service-example__list {
  display: flex;
}
.p-service-example__item {
  background: var(--color-bg-white);
  border-radius: 3px;
  padding: 0 12.5px;
  width: 125px;
  height: 125px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-service-example__item img {
  display: block;
  height: 125px;
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-trial {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}
@media (max-width: 760px) {
  .p-trial {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
  }
}
.p-trial__wrap {
  background: var(--color-bg-green-03);
  padding: 30px;
  width: 485px;
  border-radius: 8px;
}
@media (max-width: 760px) {
  .p-trial__wrap {
    padding: 20px;
    width: 100%;
  }
}
.p-trial__wrap:nth-child(2) {
  background: var(--color-bg-blue-06);
}
.p-trial__wrap:nth-child(2) .p-trial__text {
  margin-bottom: 20px;
}
.p-trial__wrap:nth-child(2) .p-trial__link {
  background: var(--color-bg-blue-05);
  color: var(--color-text-default);
}
.p-trial__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 26px;
  color: var(--color-text-blue-03);
  margin-bottom: 30px;
}
@media (max-width: 760px) {
  .p-trial__title {
    letter-spacing: -0.05em;
    margin-bottom: 20px;
  }
}
.p-trial__text {
  font-size: 1.6rem;
  line-height: 26px;
  margin-bottom: 52px;
  letter-spacing: -0.02em;
}
@media (max-width: 760px) {
  .p-trial__text {
    margin-bottom: 20px;
  }
}
.p-trial__list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 9px;
  margin-bottom: 30px;
}
@media (max-width: 760px) {
  .p-trial__list {
    gap: 10px 5px;
    margin-bottom: 20px;
  }
}
.p-trial__item {
  background: var(--color-bg-white);
  color: var(--color-text-blue-04);
  font-size: 1.2rem;
  line-height: 33px;
  border-radius: 20px;
  padding: 0 15px;
}
@media (max-width: 760px) {
  .p-trial__item {
    font-size: 0.9rem;
    line-height: 24px;
    border-radius: 15px;
    padding: 0 8px;
  }
}
.p-trial__button {
  text-align: center;
}
.p-trial__link {
  display: block;
  width: 240px;
  line-height: 60px;
  border-radius: 30px;
  background-color: var(--color-bg-green-02);
  color: var(--color-text-white);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s;
  margin: 0 auto;
}
.p-trial__link:hover {
  opacity: 0.8;
  text-decoration: none;
}

.p-latest {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 30px 0;
}
@media (max-width: 760px) {
  .p-latest {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
}
.p-latest__heading {
  font-size: 1.8rem;
  color: var(--text-pink);
  font-family: "Quicksand", serif;
  line-height: 3rem;
  margin-right: 20px;
  flex-shrink: 0;
}
.p-latest__box {
  font-size: 1.8rem;
  line-height: 3rem;
  display: flex;
  align-items: center;
}
@media (max-width: 760px) {
  .p-latest__box {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-latest__date {
  font-family: "Quicksand", serif;
  margin-right: 20px;
  flex-shrink: 0;
  font-size: 1.6rem;
}
@media (max-width: 760px) {
  .p-latest__date {
    font-size: 1.5rem;
    margin-top: 5px;
    margin-right: 0;
  }
}
.p-latest__link {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
.p-latest__link::after {
  content: url("/wp-content/themes/coopel_2025/assets/images/top/icon_news_arrow.png");
  display: block;
  margin-left: 5px;
}
@media (max-width: 760px) {
  .p-latest__link {
    font-size: 1.5rem;
  }
}

.p-sitemap {
  margin-bottom: 100px;
}
@media (max-width: 760px) {
  .p-sitemap {
    margin-bottom: 50px;
  }
}
.p-sitemap__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.p-sitemap__list--narrow .p-sitemap__item {
  width: 320px;
}
@media (max-width: 760px) {
  .p-sitemap__list--narrow .p-sitemap__item {
    width: 100%;
  }
}
@media (max-width: 760px) {
  .p-sitemap__list {
    gap: 10px;
  }
}
.p-sitemap__item {
  width: 100%;
  border: 1px solid var(--color-border-gray-04);
  border-radius: 8px;
}
.p-sitemap__link {
  position: relative;
  padding: 12px 20px 12px 46px;
  display: block;
  width: 100%;
  border-radius: 8px;
  transition: all 0.3s;
}
.p-sitemap__link::before {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background: url(/wp-content/themes/coopel_2025/assets/images/common/icon_arrow-right.svg) center center no-repeat;
  content: "";
}
.p-sitemap__link:hover {
  text-decoration: none;
  background: var(--color-bg-blue-02-transparent);
}
.p-sitemap__content {
  margin-bottom: 50px;
}
@media (max-width: 760px) {
  .p-sitemap__content {
    margin-bottom: 30px;
  }
}

.p-accordion {
  margin-bottom: 20px;
  border: 1px solid var(--color-border-gray-04);
  border-radius: 8px;
}
.p-accordion:last-child {
  margin-bottom: 0;
}
@media (max-width: 760px) {
  .p-accordion {
    margin-bottom: 10px;
  }
}
.p-accordion.is-open > .p-accordion__wrapper > .p-accordion__button > .p-accordion__icon:nth-child(2) {
  transform: translate(-50%, -50%) rotate(0deg);
}
.p-accordion.is-open > .p-accordion__body {
  grid-template-rows: 1fr;
}
.p-accordion__wrapper {
  position: relative;
}
.p-accordion__title {
  display: block;
  width: 100%;
  text-align: left;
}
.p-accordion__title--nested .p-accordion__link {
  padding: 11px 56px 11px 39px;
}
.p-accordion__button {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-bg-gray-04);
}
.p-accordion__icon {
  display: block;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-bg-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.p-accordion__icon:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  position: relative;
}
.p-accordion__body::before {
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-border-gray-04);
  content: "";
}
.p-accordion__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  min-height: 0;
}
.p-accordion__item {
  border-bottom: 1px solid var(--color-border-gray-04);
}
.p-accordion__item:last-child {
  border: none;
}
.p-accordion__link {
  display: block;
  width: 100%;
  position: relative;
  padding: 11px 56px 11px 46px;
  line-height: 1.625;
  transition: all 0.3s;
}
.p-accordion__link::before {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background: url(/wp-content/themes/coopel_2025/assets/images/common/icon_arrow-right.svg) center center no-repeat;
  content: "";
}
.p-accordion__link:hover {
  text-decoration: none;
  background: var(--color-bg-blue-02-transparent);
}
.p-accordion__item .p-accordion__link {
  padding: 11px 20px 11px 66px;
}
.p-accordion__item .p-accordion__link::before {
  left: 40px;
}
.p-accordion__body--layer-2 .p-accordion {
  border: none;
  border-radius: 0;
}
.p-accordion__body--layer-2 .p-accordion__link {
  padding-right: 56px;
}
.p-accordion__body--layer-3 .p-accordion__link {
  padding: 11px 20px 11px 86px;
}
.p-accordion__body--layer-3 .p-accordion__link::before {
  left: 60px;
}

.p-pagination {
  font-size: 16px;
  margin-bottom: 100px;
}
@media (max-width: 760px) {
  .p-pagination {
    margin-bottom: 50px;
  }
}
.p-pagination__list {
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 760px) {
  .p-pagination__list {
    gap: 5px;
  }
}
.p-pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-pagination__item .page-numbers:not(.prev):not(.next):not(.dots) {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid var(--color-border-gray-04);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  color: var(--color-text-black-03);
}
@media (max-width: 760px) {
  .p-pagination__item .page-numbers:not(.prev):not(.next):not(.dots) {
    width: 30px;
    height: 30px;
    border-radius: 4px;
  }
}
.p-pagination__item .page-numbers:not(.prev):not(.next):not(.dots):hover {
  opacity: 0.8;
  text-decoration: none;
}
.p-pagination__item .page-numbers:not(.prev):not(.next):not(.dots).current {
  color: var(--color-text-white);
  background: var(--color-bg-blue-09);
  border: 1px solid var(--color-border-blue-04);
}
.p-pagination__item .page-numbers.dots {
  width: 13px;
}
.p-pagination .prev.page-numbers {
  margin-right: 10px;
  text-indent: -9999px;
  overflow: hidden;
  display: inline-block;
  width: 20px;
  height: 29px;
  background: url(/wp-content/themes/coopel_2025/assets/images/common/icon_arrow-right.svg) no-repeat center/contain;
  transform: scaleX(-1);
  transition: all 0.3s;
}
@media (max-width: 760px) {
  .p-pagination .prev.page-numbers {
    margin-right: 5px;
  }
}
.p-pagination .prev.page-numbers:hover {
  opacity: 0.8;
  text-decoration: none;
}
.p-pagination .next.page-numbers {
  margin-left: 10px;
  text-indent: -9999px;
  overflow: hidden;
  display: inline-block;
  width: 20px;
  height: 19px;
  background: url(/wp-content/themes/coopel_2025/assets/images/common/icon_arrow-right.svg) no-repeat center/contain;
  transition: all 0.3s;
}
@media (max-width: 760px) {
  .p-pagination .next.page-numbers {
    margin-left: 5px;
  }
}
.p-pagination .next.page-numbers:hover {
  opacity: 0.8;
  text-decoration: none;
}

@media not (max-width: 760px) {
  .pc-hide,
  .sp-show {
    display: none !important;
  }
}
@media (max-width: 760px) {
  .sp-hide,
  .pc-show {
    display: none !important;
  }
}
.u-noselect {
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.u-untouchable {
  pointer-events: none;
}

.fw-bold {
  font-weight: bold;
}

.text-red {
  color: var(--color-red);
}

.u-tal {
  text-align: left;
}

.u-tac {
  text-align: center;
}

.u-tar {
  text-align: right;
}

.m-0 {
  margin: 0 !important;
}

.mx-auto {
  margin-inline: auto;
}

.p-0 {
  padding: 0 !important;
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.-mt-0 {
  margin-top: 0px;
}

.-mb-0 {
  margin-bottom: 0px;
}

.my-0 {
  margin-block: 0px;
}

.pt-0 {
  padding-top: 0px;
}

.pb-0 {
  padding-bottom: 0px;
}

.px-0 {
  padding-inline: 0px;
}

.py-0 {
  padding-block: 0px;
}

.mt-1 {
  margin-top: 10px;
}

.mb-1 {
  margin-bottom: 10px !important;
}

.-mt-1 {
  margin-top: -10px;
}

.-mb-1 {
  margin-bottom: -10px;
}

.my-1 {
  margin-block: 10px;
}

.pt-1 {
  padding-top: 10px;
}

.pb-1 {
  padding-bottom: 10px;
}

.px-1 {
  padding-inline: 10px;
}

.py-1 {
  padding-block: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mb-2 {
  margin-bottom: 20px !important;
}

.-mt-2 {
  margin-top: -20px;
}

.-mb-2 {
  margin-bottom: -20px;
}

.my-2 {
  margin-block: 20px;
}

.pt-2 {
  padding-top: 20px;
}

.pb-2 {
  padding-bottom: 20px;
}

.px-2 {
  padding-inline: 20px;
}

.py-2 {
  padding-block: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mb-3 {
  margin-bottom: 30px !important;
}

.-mt-3 {
  margin-top: -30px;
}

.-mb-3 {
  margin-bottom: -30px;
}

.my-3 {
  margin-block: 30px;
}

.pt-3 {
  padding-top: 30px;
}

.pb-3 {
  padding-bottom: 30px;
}

.px-3 {
  padding-inline: 30px;
}

.py-3 {
  padding-block: 30px;
}

.mt-4 {
  margin-top: 40px;
}

.mb-4 {
  margin-bottom: 40px !important;
}

.-mt-4 {
  margin-top: -40px;
}

.-mb-4 {
  margin-bottom: -40px;
}

.my-4 {
  margin-block: 40px;
}

.pt-4 {
  padding-top: 40px;
}

.pb-4 {
  padding-bottom: 40px;
}

.px-4 {
  padding-inline: 40px;
}

.py-4 {
  padding-block: 40px;
}

.mt-5 {
  margin-top: 50px;
}

.mb-5 {
  margin-bottom: 50px !important;
}

.-mt-5 {
  margin-top: -50px;
}

.-mb-5 {
  margin-bottom: -50px;
}

.my-5 {
  margin-block: 50px;
}

.pt-5 {
  padding-top: 50px;
}

.pb-5 {
  padding-bottom: 50px;
}

.px-5 {
  padding-inline: 50px;
}

.py-5 {
  padding-block: 50px;
}

.mt-6 {
  margin-top: 60px;
}

.mb-6 {
  margin-bottom: 60px !important;
}

.-mt-6 {
  margin-top: -60px;
}

.-mb-6 {
  margin-bottom: -60px;
}

.my-6 {
  margin-block: 60px;
}

.pt-6 {
  padding-top: 60px;
}

.pb-6 {
  padding-bottom: 60px;
}

.px-6 {
  padding-inline: 60px;
}

.py-6 {
  padding-block: 60px;
}

.mt-7 {
  margin-top: 70px;
}

.mb-7 {
  margin-bottom: 70px !important;
}

.-mt-7 {
  margin-top: -70px;
}

.-mb-7 {
  margin-bottom: -70px;
}

.my-7 {
  margin-block: 70px;
}

.pt-7 {
  padding-top: 70px;
}

.pb-7 {
  padding-bottom: 70px;
}

.px-7 {
  padding-inline: 70px;
}

.py-7 {
  padding-block: 70px;
}

.mt-8 {
  margin-top: 80px;
}

.mb-8 {
  margin-bottom: 80px !important;
}

.-mt-8 {
  margin-top: -80px;
}

.-mb-8 {
  margin-bottom: -80px;
}

.my-8 {
  margin-block: 80px;
}

.pt-8 {
  padding-top: 80px;
}

.pb-8 {
  padding-bottom: 80px;
}

.px-8 {
  padding-inline: 80px;
}

.py-8 {
  padding-block: 80px;
}

.mt-9 {
  margin-top: 90px;
}

.mb-9 {
  margin-bottom: 90px !important;
}

.-mt-9 {
  margin-top: -90px;
}

.-mb-9 {
  margin-bottom: -90px;
}

.my-9 {
  margin-block: 90px;
}

.pt-9 {
  padding-top: 90px;
}

.pb-9 {
  padding-bottom: 90px;
}

.px-9 {
  padding-inline: 90px;
}

.py-9 {
  padding-block: 90px;
}

.mt-10 {
  margin-top: 100px;
}

.mb-10 {
  margin-bottom: 100px !important;
}

.-mt-10 {
  margin-top: -100px;
}

.-mb-10 {
  margin-bottom: -100px;
}

.my-10 {
  margin-block: 100px;
}

.pt-10 {
  padding-top: 100px;
}

.pb-10 {
  padding-bottom: 100px;
}

.px-10 {
  padding-inline: 100px;
}

.py-10 {
  padding-block: 100px;
}

@media not (max-width: 760px) {
  .pc\:mx-auto {
    margin-inline: auto;
  }
  .pc\:mt-0 {
    margin-top: 0px;
  }
  .pc\:mb-0 {
    margin-bottom: 0px;
  }
  .pc\:-mt-0 {
    margin-top: 0px;
  }
  .pc\:-mb-0 {
    margin-bottom: 0px;
  }
  .pc\:my-0 {
    margin-block: 0px;
  }
  .pc\:mx-0 {
    margin-inline: 0px;
  }
  .pc\:pt-0 {
    padding-top: 0px;
  }
  .pc\:pb-0 {
    padding-bottom: 0px;
  }
  .pc\:px-0 {
    padding-inline: 0px;
  }
  .pc\:py-0 {
    padding-block: 0px;
  }
  .pc\:mt-1 {
    margin-top: 10px;
  }
  .pc\:mb-1 {
    margin-bottom: 10px;
  }
  .pc\:-mt-1 {
    margin-top: -10px;
  }
  .pc\:-mb-1 {
    margin-bottom: -10px;
  }
  .pc\:my-1 {
    margin-block: 10px;
  }
  .pc\:mx-1 {
    margin-inline: 10px;
  }
  .pc\:pt-1 {
    padding-top: 10px;
  }
  .pc\:pb-1 {
    padding-bottom: 10px;
  }
  .pc\:px-1 {
    padding-inline: 10px;
  }
  .pc\:py-1 {
    padding-block: 10px;
  }
  .pc\:mt-2 {
    margin-top: 20px;
  }
  .pc\:mb-2 {
    margin-bottom: 20px;
  }
  .pc\:-mt-2 {
    margin-top: -20px;
  }
  .pc\:-mb-2 {
    margin-bottom: -20px;
  }
  .pc\:my-2 {
    margin-block: 20px;
  }
  .pc\:mx-2 {
    margin-inline: 20px;
  }
  .pc\:pt-2 {
    padding-top: 20px;
  }
  .pc\:pb-2 {
    padding-bottom: 20px;
  }
  .pc\:px-2 {
    padding-inline: 20px;
  }
  .pc\:py-2 {
    padding-block: 20px;
  }
  .pc\:mt-3 {
    margin-top: 30px;
  }
  .pc\:mb-3 {
    margin-bottom: 30px;
  }
  .pc\:-mt-3 {
    margin-top: -30px;
  }
  .pc\:-mb-3 {
    margin-bottom: -30px;
  }
  .pc\:my-3 {
    margin-block: 30px;
  }
  .pc\:mx-3 {
    margin-inline: 30px;
  }
  .pc\:pt-3 {
    padding-top: 30px;
  }
  .pc\:pb-3 {
    padding-bottom: 30px;
  }
  .pc\:px-3 {
    padding-inline: 30px;
  }
  .pc\:py-3 {
    padding-block: 30px;
  }
  .pc\:mt-4 {
    margin-top: 40px;
  }
  .pc\:mb-4 {
    margin-bottom: 40px;
  }
  .pc\:-mt-4 {
    margin-top: -40px;
  }
  .pc\:-mb-4 {
    margin-bottom: -40px;
  }
  .pc\:my-4 {
    margin-block: 40px;
  }
  .pc\:mx-4 {
    margin-inline: 40px;
  }
  .pc\:pt-4 {
    padding-top: 40px;
  }
  .pc\:pb-4 {
    padding-bottom: 40px;
  }
  .pc\:px-4 {
    padding-inline: 40px;
  }
  .pc\:py-4 {
    padding-block: 40px;
  }
  .pc\:mt-5 {
    margin-top: 50px;
  }
  .pc\:mb-5 {
    margin-bottom: 50px;
  }
  .pc\:-mt-5 {
    margin-top: -50px;
  }
  .pc\:-mb-5 {
    margin-bottom: -50px;
  }
  .pc\:my-5 {
    margin-block: 50px;
  }
  .pc\:mx-5 {
    margin-inline: 50px;
  }
  .pc\:pt-5 {
    padding-top: 50px;
  }
  .pc\:pb-5 {
    padding-bottom: 50px;
  }
  .pc\:px-5 {
    padding-inline: 50px;
  }
  .pc\:py-5 {
    padding-block: 50px;
  }
  .pc\:mt-6 {
    margin-top: 60px;
  }
  .pc\:mb-6 {
    margin-bottom: 60px;
  }
  .pc\:-mt-6 {
    margin-top: -60px;
  }
  .pc\:-mb-6 {
    margin-bottom: -60px;
  }
  .pc\:my-6 {
    margin-block: 60px;
  }
  .pc\:mx-6 {
    margin-inline: 60px;
  }
  .pc\:pt-6 {
    padding-top: 60px;
  }
  .pc\:pb-6 {
    padding-bottom: 60px;
  }
  .pc\:px-6 {
    padding-inline: 60px;
  }
  .pc\:py-6 {
    padding-block: 60px;
  }
  .pc\:mt-7 {
    margin-top: 70px;
  }
  .pc\:mb-7 {
    margin-bottom: 70px;
  }
  .pc\:-mt-7 {
    margin-top: -70px;
  }
  .pc\:-mb-7 {
    margin-bottom: -70px;
  }
  .pc\:my-7 {
    margin-block: 70px;
  }
  .pc\:mx-7 {
    margin-inline: 70px;
  }
  .pc\:pt-7 {
    padding-top: 70px;
  }
  .pc\:pb-7 {
    padding-bottom: 70px;
  }
  .pc\:px-7 {
    padding-inline: 70px;
  }
  .pc\:py-7 {
    padding-block: 70px;
  }
  .pc\:mt-8 {
    margin-top: 80px;
  }
  .pc\:mb-8 {
    margin-bottom: 80px;
  }
  .pc\:-mt-8 {
    margin-top: -80px;
  }
  .pc\:-mb-8 {
    margin-bottom: -80px;
  }
  .pc\:my-8 {
    margin-block: 80px;
  }
  .pc\:mx-8 {
    margin-inline: 80px;
  }
  .pc\:pt-8 {
    padding-top: 80px;
  }
  .pc\:pb-8 {
    padding-bottom: 80px;
  }
  .pc\:px-8 {
    padding-inline: 80px;
  }
  .pc\:py-8 {
    padding-block: 80px;
  }
  .pc\:mt-9 {
    margin-top: 90px;
  }
  .pc\:mb-9 {
    margin-bottom: 90px;
  }
  .pc\:-mt-9 {
    margin-top: -90px;
  }
  .pc\:-mb-9 {
    margin-bottom: -90px;
  }
  .pc\:my-9 {
    margin-block: 90px;
  }
  .pc\:mx-9 {
    margin-inline: 90px;
  }
  .pc\:pt-9 {
    padding-top: 90px;
  }
  .pc\:pb-9 {
    padding-bottom: 90px;
  }
  .pc\:px-9 {
    padding-inline: 90px;
  }
  .pc\:py-9 {
    padding-block: 90px;
  }
  .pc\:mt-10 {
    margin-top: 100px;
  }
  .pc\:mb-10 {
    margin-bottom: 100px;
  }
  .pc\:-mt-10 {
    margin-top: -100px;
  }
  .pc\:-mb-10 {
    margin-bottom: -100px;
  }
  .pc\:my-10 {
    margin-block: 100px;
  }
  .pc\:mx-10 {
    margin-inline: 100px;
  }
  .pc\:pt-10 {
    padding-top: 100px;
  }
  .pc\:pb-10 {
    padding-bottom: 100px;
  }
  .pc\:px-10 {
    padding-inline: 100px;
  }
  .pc\:py-10 {
    padding-block: 100px;
  }
}
@media (max-width: 760px) {
  .sp\:mx-auto {
    margin-inline: auto;
  }
  .sp\:mt-0 {
    margin-top: 0px;
  }
  .sp\:mb-0 {
    margin-bottom: 0px;
  }
  .sp\:-mt-0 {
    margin-top: 0px;
  }
  .sp\:-mb-0 {
    margin-bottom: 0px;
  }
  .sp\:my-0 {
    margin-block: 0px;
  }
  .sp\:mx-0 {
    margin-inline: 0px;
  }
  .sp\:pt-0 {
    padding-top: 0px;
  }
  .sp\:pb-0 {
    padding-bottom: 0px;
  }
  .sp\:px-0 {
    padding-inline: 0px;
  }
  .sp\:py-0 {
    padding-block: 0px;
  }
  .sp\:mt-1 {
    margin-top: 10px;
  }
  .sp\:mb-1 {
    margin-bottom: 10px;
  }
  .sp\:-mt-1 {
    margin-top: -10px;
  }
  .sp\:-mb-1 {
    margin-bottom: -10px;
  }
  .sp\:my-1 {
    margin-block: 10px;
  }
  .sp\:mx-1 {
    margin-inline: 10px;
  }
  .sp\:pt-1 {
    padding-top: 10px;
  }
  .sp\:pb-1 {
    padding-bottom: 10px;
  }
  .sp\:px-1 {
    padding-inline: 10px;
  }
  .sp\:py-1 {
    padding-block: 10px;
  }
  .sp\:mt-2 {
    margin-top: 20px;
  }
  .sp\:mb-2 {
    margin-bottom: 20px;
  }
  .sp\:-mt-2 {
    margin-top: -20px;
  }
  .sp\:-mb-2 {
    margin-bottom: -20px;
  }
  .sp\:my-2 {
    margin-block: 20px;
  }
  .sp\:mx-2 {
    margin-inline: 20px;
  }
  .sp\:pt-2 {
    padding-top: 20px;
  }
  .sp\:pb-2 {
    padding-bottom: 20px;
  }
  .sp\:px-2 {
    padding-inline: 20px;
  }
  .sp\:py-2 {
    padding-block: 20px;
  }
  .sp\:mt-3 {
    margin-top: 30px;
  }
  .sp\:mb-3 {
    margin-bottom: 30px;
  }
  .sp\:-mt-3 {
    margin-top: -30px;
  }
  .sp\:-mb-3 {
    margin-bottom: -30px;
  }
  .sp\:my-3 {
    margin-block: 30px;
  }
  .sp\:mx-3 {
    margin-inline: 30px;
  }
  .sp\:pt-3 {
    padding-top: 30px;
  }
  .sp\:pb-3 {
    padding-bottom: 30px;
  }
  .sp\:px-3 {
    padding-inline: 30px;
  }
  .sp\:py-3 {
    padding-block: 30px;
  }
  .sp\:mt-4 {
    margin-top: 40px;
  }
  .sp\:mb-4 {
    margin-bottom: 40px;
  }
  .sp\:-mt-4 {
    margin-top: -40px;
  }
  .sp\:-mb-4 {
    margin-bottom: -40px;
  }
  .sp\:my-4 {
    margin-block: 40px;
  }
  .sp\:mx-4 {
    margin-inline: 40px;
  }
  .sp\:pt-4 {
    padding-top: 40px;
  }
  .sp\:pb-4 {
    padding-bottom: 40px;
  }
  .sp\:px-4 {
    padding-inline: 40px;
  }
  .sp\:py-4 {
    padding-block: 40px;
  }
  .sp\:mt-5 {
    margin-top: 50px;
  }
  .sp\:mb-5 {
    margin-bottom: 50px;
  }
  .sp\:-mt-5 {
    margin-top: -50px;
  }
  .sp\:-mb-5 {
    margin-bottom: -50px;
  }
  .sp\:my-5 {
    margin-block: 50px;
  }
  .sp\:mx-5 {
    margin-inline: 50px;
  }
  .sp\:pt-5 {
    padding-top: 50px;
  }
  .sp\:pb-5 {
    padding-bottom: 50px;
  }
  .sp\:px-5 {
    padding-inline: 50px;
  }
  .sp\:py-5 {
    padding-block: 50px;
  }
  .sp\:mt-6 {
    margin-top: 60px;
  }
  .sp\:mb-6 {
    margin-bottom: 60px;
  }
  .sp\:-mt-6 {
    margin-top: -60px;
  }
  .sp\:-mb-6 {
    margin-bottom: -60px;
  }
  .sp\:my-6 {
    margin-block: 60px;
  }
  .sp\:mx-6 {
    margin-inline: 60px;
  }
  .sp\:pt-6 {
    padding-top: 60px;
  }
  .sp\:pb-6 {
    padding-bottom: 60px;
  }
  .sp\:px-6 {
    padding-inline: 60px;
  }
  .sp\:py-6 {
    padding-block: 60px;
  }
  .sp\:mt-7 {
    margin-top: 70px;
  }
  .sp\:mb-7 {
    margin-bottom: 70px;
  }
  .sp\:-mt-7 {
    margin-top: -70px;
  }
  .sp\:-mb-7 {
    margin-bottom: -70px;
  }
  .sp\:my-7 {
    margin-block: 70px;
  }
  .sp\:mx-7 {
    margin-inline: 70px;
  }
  .sp\:pt-7 {
    padding-top: 70px;
  }
  .sp\:pb-7 {
    padding-bottom: 70px;
  }
  .sp\:px-7 {
    padding-inline: 70px;
  }
  .sp\:py-7 {
    padding-block: 70px;
  }
  .sp\:mt-8 {
    margin-top: 80px;
  }
  .sp\:mb-8 {
    margin-bottom: 80px;
  }
  .sp\:-mt-8 {
    margin-top: -80px;
  }
  .sp\:-mb-8 {
    margin-bottom: -80px;
  }
  .sp\:my-8 {
    margin-block: 80px;
  }
  .sp\:mx-8 {
    margin-inline: 80px;
  }
  .sp\:pt-8 {
    padding-top: 80px;
  }
  .sp\:pb-8 {
    padding-bottom: 80px;
  }
  .sp\:px-8 {
    padding-inline: 80px;
  }
  .sp\:py-8 {
    padding-block: 80px;
  }
  .sp\:mt-9 {
    margin-top: 90px;
  }
  .sp\:mb-9 {
    margin-bottom: 90px;
  }
  .sp\:-mt-9 {
    margin-top: -90px;
  }
  .sp\:-mb-9 {
    margin-bottom: -90px;
  }
  .sp\:my-9 {
    margin-block: 90px;
  }
  .sp\:mx-9 {
    margin-inline: 90px;
  }
  .sp\:pt-9 {
    padding-top: 90px;
  }
  .sp\:pb-9 {
    padding-bottom: 90px;
  }
  .sp\:px-9 {
    padding-inline: 90px;
  }
  .sp\:py-9 {
    padding-block: 90px;
  }
  .sp\:mt-10 {
    margin-top: 100px;
  }
  .sp\:mb-10 {
    margin-bottom: 100px;
  }
  .sp\:-mt-10 {
    margin-top: -100px;
  }
  .sp\:-mb-10 {
    margin-bottom: -100px;
  }
  .sp\:my-10 {
    margin-block: 100px;
  }
  .sp\:mx-10 {
    margin-inline: 100px;
  }
  .sp\:pt-10 {
    padding-top: 100px;
  }
  .sp\:pb-10 {
    padding-bottom: 100px;
  }
  .sp\:px-10 {
    padding-inline: 100px;
  }
  .sp\:py-10 {
    padding-block: 100px;
  }
}
.w-full {
  width: 100%;
}

.w-half {
  width: 50%;
}

.w-max {
  max-width: 100%;
}

.w-narrow {
  width: var(--content-narrow-width);
  max-width: 100%;
}

.fz-12 {
  font-size: 1.2rem !important;
}

.fz-13 {
  font-size: 1.3rem !important;
}

.fz-14 {
  font-size: 1.4rem !important;
}

.fz-15 {
  font-size: 1.5rem !important;
}

.fz-16 {
  font-size: 1.6rem !important;
}

.fz-17 {
  font-size: 1.7rem !important;
}

.fz-18 {
  font-size: 1.8rem !important;
}

.fz-19 {
  font-size: 1.9rem !important;
}

.fz-20 {
  font-size: 2rem !important;
}

.fz-21 {
  font-size: 2.1rem !important;
}

.fz-22 {
  font-size: 2.2rem !important;
}

.fz-23 {
  font-size: 2.3rem !important;
}

.fz-24 {
  font-size: 2.4rem !important;
}

.fz-25 {
  font-size: 2.5rem !important;
}

.fz-26 {
  font-size: 2.6rem !important;
}

.fz-27 {
  font-size: 2.7rem !important;
}

.fz-28 {
  font-size: 2.8rem !important;
}

.fz-29 {
  font-size: 2.9rem !important;
}

.fz-30 {
  font-size: 3rem !important;
}

@media not (max-width: 760px) {
  .pc\:fz-12 {
    font-size: 1.2rem !important;
  }
  .pc\:fz-13 {
    font-size: 1.3rem !important;
  }
  .pc\:fz-14 {
    font-size: 1.4rem !important;
  }
  .pc\:fz-15 {
    font-size: 1.5rem !important;
  }
  .pc\:fz-16 {
    font-size: 1.6rem !important;
  }
  .pc\:fz-17 {
    font-size: 1.7rem !important;
  }
  .pc\:fz-18 {
    font-size: 1.8rem !important;
  }
  .pc\:fz-19 {
    font-size: 1.9rem !important;
  }
  .pc\:fz-20 {
    font-size: 2rem !important;
  }
  .pc\:fz-21 {
    font-size: 2.1rem !important;
  }
  .pc\:fz-22 {
    font-size: 2.2rem !important;
  }
  .pc\:fz-23 {
    font-size: 2.3rem !important;
  }
  .pc\:fz-24 {
    font-size: 2.4rem !important;
  }
  .pc\:fz-25 {
    font-size: 2.5rem !important;
  }
  .pc\:fz-26 {
    font-size: 2.6rem !important;
  }
  .pc\:fz-27 {
    font-size: 2.7rem !important;
  }
  .pc\:fz-28 {
    font-size: 2.8rem !important;
  }
  .pc\:fz-29 {
    font-size: 2.9rem !important;
  }
  .pc\:fz-30 {
    font-size: 3rem !important;
  }
}
@media (max-width: 760px) {
  .sp\:fz-12 {
    font-size: 1.2rem !important;
  }
  .sp\:fz-13 {
    font-size: 1.3rem !important;
  }
  .sp\:fz-14 {
    font-size: 1.4rem !important;
  }
  .sp\:fz-15 {
    font-size: 1.5rem !important;
  }
  .sp\:fz-16 {
    font-size: 1.6rem !important;
  }
  .sp\:fz-17 {
    font-size: 1.7rem !important;
  }
  .sp\:fz-18 {
    font-size: 1.8rem !important;
  }
  .sp\:fz-19 {
    font-size: 1.9rem !important;
  }
  .sp\:fz-20 {
    font-size: 2rem !important;
  }
  .sp\:fz-21 {
    font-size: 2.1rem !important;
  }
  .sp\:fz-22 {
    font-size: 2.2rem !important;
  }
  .sp\:fz-23 {
    font-size: 2.3rem !important;
  }
  .sp\:fz-24 {
    font-size: 2.4rem !important;
  }
  .sp\:fz-25 {
    font-size: 2.5rem !important;
  }
  .sp\:fz-26 {
    font-size: 2.6rem !important;
  }
  .sp\:fz-27 {
    font-size: 2.7rem !important;
  }
  .sp\:fz-28 {
    font-size: 2.8rem !important;
  }
  .sp\:fz-29 {
    font-size: 2.9rem !important;
  }
  .sp\:fz-30 {
    font-size: 3rem !important;
  }
}/*# sourceMappingURL=style.css.map */