@charset "UTF-8";@import url(//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap);

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
2. [UnoCSS]: allow to override the default border color with css var `--un-default-border-color`
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: var(--un-default-border-color, #e5e7eb); /* 2 */
}
::before,
::after {
  --un-content: "";
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS.
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-variation-settings: normal; /* 6 */
  font-feature-settings: normal; /* 5 */
  tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3 {
  font-weight: inherit;
  font-size: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
pre {
  font-size: 1em; /* 4 */
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-variation-settings: normal; /* 3 */
  font-feature-settings: normal; /* 2 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
select,
textarea {
  margin: 0; /* 2 */
  padding: 0; /* 3 */
  color: inherit; /* 1 */
  font-weight: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: inherit; /* 1 */
  font-family: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 1 */
  background-image: none; /* 2 */
  background-color: transparent; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing for appropriate elements.
*/

dl,
h1,
h2,
h3,
p,
pre {
  margin: 0;
}
ol,
ul,
menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #9ca3af; /* 2 */
  opacity: 1; /* 1 */
}
input::placeholder,
textarea::placeholder {
  color: #9ca3af; /* 2 */
  opacity: 1; /* 1 */
}
/*
Set the default cursor for buttons.
*/
button,
[role=button] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img {
  max-width: 100%;
  height: auto;
}
/*
Make elements with the HTML hidden attribute stay hidden by default.
*/
[hidden]:where(:not([hidden=until-found])) {
  display: none;
}
:where(*, *::before, *::after) {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-feature-settings: "palt";
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  scroll-snap-type: y proximity;
  -webkit-overflow-scrolling: touch;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #ffffff;
  color: #474747;
  font-size: 1rem;
  line-height: 1.5;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  text-wrap-style: pretty;
}
:where(h1, h2, h3, button, input, label) {
  line-height: 1.1;
}
:where(input, textarea, select, button) {
  font: inherit;
}
:where(textarea:not([rows])) {
  min-height: 3em;
}
:where(img, svg) {
  display: inline-block;
  max-width: 100%;
  vertical-align: bottom;
  -o-object-fit: contain;
  object-fit: contain;
}
:where(img, svg).noimage {
  border: 1px solid #eaeaea;
}
:where(a) {
  display: inline-block;
  color: currentColor;
  text-decoration: none;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-underline-offset: 0.3em;
}
:where(ul, ol) {
  padding-left: 0;
  list-style: none;
}
:where(details) {
  width: 100%;
}
:where(details) > summary {
  display: block;
  position: relative;
  padding-right: clamp(1rem, -0.1429rem + 2.381vw, 2rem);
  outline: none;
  background: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
:where(details) > summary::marker, :where(details) > summary::-webkit-details-marker {
  display: none;
  content: "";
}
:where(details) > summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: clamp(0.75rem, -0.1074rem + 1.786vw, 1.5rem);
  height: 100%;
  transform: translateY(-50%);
  background: url(../images/ic_chevron.svg) no-repeat center/contain;
  content: "";
}
:where(details)[open] > summary::after {
  transform: translateY(-50%) rotate(180deg);
}
:where(details)[open].--outside > summary::before {
  z-index: -1;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  content: "";
  cursor: auto;
}
.l-main {
  overflow-x: clip;
}
.l-main::before {
  z-index: -1;
  position: fixed;
  inset: 0;
  background: url("../images/page_bg.jpg.webp") repeat-y center top/cover;
  content: "";
}
.l-inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, -2.679rem + 8.185vw, 4.6875rem);
  padding-block: clamp(1.25rem, -4.4645rem + 11.905vw, 6.25rem);
}
.grecaptcha-badge {
  display: none !important;
  z-index: 100;
}
body:has(.p-form) .grecaptcha-badge {
  display: block !important;
}
.l-breadcrumb {
  background: #f5f5f5;
}
.l-breadcrumb .items {
  display: flex;
  row-gap: 0.5em;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, -2.679rem + 8.185vw, 4.6875rem);
  padding-block: 8px;
  font-size: 14px;
}
.l-breadcrumb .items .item .link {
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}
.l-breadcrumb .items .item:not(:last-child)::after {
  display: inline-block;
  width: 6px;
  height: 10px;
  margin-inline: 0.5em 0.75em;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="6" height="10" viewBox="0 0 6 10" fill="none"><path d="M0,0L5,5L0,10" stroke="%23474747" stroke-width="1.5"/></svg>');
  background-repeat: no-repeat;
  content: "";
}
html #wpadminbar:not(.is-expanded) {
  min-width: auto;
  max-width: 34px;
  overflow: hidden;
}
html #wpadminbar.is-expanded {
  min-width: auto;
  max-width: none;
  overflow: visible;
}
html #wpadminbar li#wp-admin-bar-wp-logo {
  display: block;
}
.l-header {
  z-index: 100;
  position: sticky;
  top: 0;
  justify-items: center;
  width: 100%;
  background: #474747;
}
.l-header.is-open {
  box-shadow: none;
}
.l-header .bg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  height: 50px;
  padding-inline: 20px;
  font-weight: 400;
  font-size: clamp(0.75rem, 0.6068rem + 0.298vw, 0.875rem);
}
.l-header .logo {
  text-align: center;
}
.l-header .logo img {
  display: inline;
  max-width: 10rem;
}
.l-gnav .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  color: #ffffff;
}
.l-gnav .list li a {
  padding-block: 10px;
}
.l-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  height: 100%;
  cursor: pointer;
}
.l-menu.is-open .btn span:nth-of-type(1) {
  opacity: 0;
}
.l-menu.is-open .btn span:nth-of-type(2) {
  transform: translateY(0) rotate(-45deg);
}
.l-menu.is-open .btn span:nth-of-type(3) {
  transform: translateY(0) rotate(45deg);
}
.l-menu .btn {
  display: flex;
  position: relative;
  width: 50%;
  height: 2px;
}
.l-menu .btn span {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffff;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.l-menu .btn span:nth-of-type(2) {
  transform: translateY(-10px) rotate(0);
}
.l-menu .btn span:nth-of-type(3) {
  transform: translateY(10px) rotate(0);
}
.l-menu-modal {
  visibility: hidden;
  z-index: 100;
  position: fixed;
  top: 50px;
  height: 0;
  margin: 0 auto;
  inset-inline: 0px;
  overflow-y: auto;
  overflow-y: auto;
  opacity: 0;
  transition-duration: 300ms;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-menu-modal::-webkit-scrollbar {
  display: none;
}
.l-menu-modal.is-open {
  visibility: visible;
  height: 100%;
  padding-bottom: 50px;
  opacity: 1;
}
.l-menu-modal::before {
  z-index: -1;
  position: fixed;
  top: 50px;
  width: 100%;
  height: 100%;
  background: #000000;
  content: "";
  opacity: 0.5;
}
.l-menu-modal .container {
  position: relative;
  padding: 40px 50px 60px;
  overflow-y: auto;
  background: #474747;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}
.l-menu-modal .container::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: url(../images/menu_bg.jpg.webp) repeat center/contain;
  content: "";
}
.l-menu-modal .list {
  font-weight: 500;
  font-size: 16px;
}
.l-menu-modal .list .item1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-block: 3em;
  padding-inline: 16px;
  border-left: 1px solid #9d9d9d;
}
.l-footer {
  content-visibility: auto;
  margin-top: auto;
  background: #474747;
  color: #ffffff;
}
.l-footer .container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}
.l-footer .menu {
  display: flex;
  padding: 30px 30px 0;
  gap: 20px clamp(1.25rem, -4.4645rem + 11.905vw, 6.25rem);
}
.l-footer .menu .logo img {
  width: 100%;
  max-width: 100px;
}
.l-footer .menu .logo p {
  margin-top: 20px;
}
.l-footer .menu .list {
  display: flex;
  gap: 20px clamp(1.25rem, -4.4645rem + 11.905vw, 6.25rem);
}
.l-footer .menu .list ul {
  font-weight: 400;
  font-size: 14px;
}
.l-footer .menu .list ul strong {
  font-weight: 500;
  font-size: clamp(0.875rem, 0.7318rem + 0.298vw, 1rem);
}
.l-footer .menu .list ul li + li {
  margin-top: 6px;
  text-indent: 0.5em;
}
.l-footer .copyright {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding: 1rem;
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6068rem + 0.298vw, 0.875rem);
}
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  gap: 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: clamp(1rem, 0.8568rem + 0.298vw, 1.125rem);
  text-decoration: none;
  cursor: pointer;
}
.c-btn:has(.arrow) {
  justify-content: space-between;
}
.c-btn:has(.arrow)::before {
  width: clamp(0.625rem, -0.0892rem + 1.488vw, 1.25rem);
  height: clamp(0.625rem, -0.0892rem + 1.488vw, 1.25rem);
  content: "";
}
.c-btn.--black {
  background: #474747;
  color: #ffffff;
}
.c-btn.--black:hover:not(.--no-hover) {
  background: #474747;
}
.c-btn .search {
  width: 16px;
  height: 16px;
  background: url(../images/ic_search.svg) no-repeat center/contain;
}
.c-btn .mail {
  width: 20px;
  height: 20px;
  background: url(../images/ic_mail.svg) no-repeat center/contain;
}
:is(input:where([type=text], [type=date], [type=email], [type=tel], [type=url], [type=search], [type=number], [type=password]), select, textarea) {
  padding: 4px 8px;
  background: #ffffff;
}
.c-select {
  position: relative;
}
.c-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 30px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 10 10" fill="none"><path d="M0,2L5,7L10,2" stroke="%23474747" stroke-width="1.5"/></svg>');
  background-position: calc(100% - 10px) center;
  background-size: 10px;
  background-repeat: no-repeat;
}
.c-date input[type=date] {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.c-date input[type=date]::-webkit-inner-spin-button, .c-date input[type=date]::-webkit-clear-button {
  -webkit-appearance: none;
  appearance: none;
}
.c-date input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: url("../images/ic_calendar.svg") no-repeat;
  background-position: calc(100% - 16px) 40%;
  background-size: 16px 16px;
}
.c-pagetop {
  display: flex;
  visibility: hidden;
  z-index: 50;
  position: fixed;
  right: 30px;
  bottom: 80px;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #474747;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  opacity: 0;
  transition: 0.3s;
}
.c-pagetop.is-show {
  visibility: visible;
  opacity: 1;
}
.c-pagetop span {
  width: 15px;
  height: 15px;
  transform: translateY(20%) rotate(-45deg);
  border-top: 4px solid #ffffff;
  border-right: 4px solid #ffffff;
  text-decoration: none;
}
.c-pager {
  display: flex;
  justify-content: center;
  margin-block: 30px;
  gap: clamp(0.625rem, -0.0892rem + 1.488vw, 1.25rem);
}
.c-pager .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  border: 1px solid #474747;
  border-radius: 4px;
  background: #ffffff;
  color: #474747;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
}
.c-pager .page-numbers:is(.prev, .next, .first, .last) {
  border: none;
  background: transparent;
}
.c-pager .page-numbers:is(.prev, .next, .first, .last).prev::after {
  transform: scaleX(-1);
}
.c-pager .page-numbers:is(.prev, .next, .first, .last).first::after {
  transform: scaleX(-1);
}
.c-pager .page-numbers:is(.prev, .next, .first, .last):is(.first, .last)::after {
  background-image: url(../images/ic_arrow2.svg);
}
.c-pager .page-numbers:is(.prev, .next, .first, .last)::after {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: url(../images/ic_arrow.svg) no-repeat center center;
  background-size: 20px 20px;
  content: "";
}
.c-pager .page-numbers:is(.prev, .next, .first, .last):hover::after {
  opacity: 0.8;
}
.c-pager .page-numbers.current {
  background: #dadada;
}
.c-sidebar {
  width: 300px;
}
.c-sidebar > :where(:not([hidden]) ~ :not([hidden])) {
  margin-top: 20px;
}
.c-sidebar .c-sidebar__popular {
  padding: 30px 20px 10px;
  border-radius: 10px;
}
.c-sidebar .c-sidebar__popular .title {
  color: #474747;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-align: center;
}
.c-sidebar .c-sidebar__popular .list > :where(* + *) {
  border-top-width: 1px;
  border-color: inherit;
}
.c-sidebar .c-sidebar__popular .list .list-item {
  display: flex;
  align-content: center;
  align-items: flex-start;
  padding-block: 20px;
  gap: 12px;
}
.c-sidebar .c-sidebar__popular .list .list-item .list-image {
  aspect-ratio: 4/3;
  width: 100px;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-sidebar .c-sidebar__popular .list .list-item .list-title {
  display: -webkit-box;
  overflow: hidden;
  font-weight: 500;
  font-size: 14px;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.c-wysiwyg-editor {
  font-size: clamp(0.875rem, 0.7318rem + 0.298vw, 1rem);
  text-wrap-style: pretty;
}
.c-wysiwyg-editor > :is(* + *, p + p) {
  margin-top: clamp(1.25rem, -0.1784rem + 2.976vw, 2.5rem);
}
.c-wysiwyg-editor h2 {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 5px;
  color: #474747;
  font-weight: 500;
  font-size: clamp(1rem, 0.7145rem + 0.595vw, 1.25rem);
}
.c-wysiwyg-editor h2::before {
  display: block;
  width: 6px;
  height: 1.6em;
  background: #61d0db;
  content: "";
}
.c-wysiwyg-editor h3 {
  color: #474747;
  font-weight: 500;
  font-size: clamp(0.875rem, 0.5895rem + 0.595vw, 1.125rem);
}
.c-wysiwyg-editor h3.wp-block-heading {
  margin-block: 30px 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid #474747;
}
.c-wysiwyg-editor a {
  color: #0000ee;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.c-wysiwyg-editor img {
  border-radius: 8px;
}
.c-wysiwyg-editor table {
  width: auto;
  border-collapse: collapse;
}
.c-wysiwyg-editor table th, .c-wysiwyg-editor table td {
  padding: 2px 0;
  border: none;
  word-break: auto-phrase;
}
.c-wysiwyg-editor table th:first-child, .c-wysiwyg-editor table td:first-child {
  white-space: nowrap;
}
.c-wysiwyg-editor table th:not(:last-child), .c-wysiwyg-editor table td:not(:last-child) {
  padding-right: clamp(1.25rem, -0.1784rem + 2.976vw, 2.5rem);
}
.c-wysiwyg-editor :is(ul, ol) {
  margin-left: 1em;
  list-style: initial;
}
.c-wysiwyg-editor :is(ul, ol) + * {
  margin-top: clamp(0.625rem, -0.0892rem + 1.488vw, 1.25rem);
}
.c-wysiwyg-editor ol {
  list-style-type: decimal;
}
.c-wysiwyg-editor hr {
  margin-block: 1.2em !important;
  border: 1px solid #474747;
}
.c-wysiwyg-editor .post-password-form p + p {
  margin-top: 20px;
}
.c-wysiwyg-editor .post-password-form input[type=password] {
  border: 1px solid #474747;
  border-radius: 4px;
}
.c-wysiwyg-editor .post-password-form input[type=submit] {
  margin-left: 10px;
  padding-inline: 10px;
  border: 1px solid #474747;
  border-radius: 4px;
  background: #474747;
  color: #fff;
}
.c-search-area {
  padding: clamp(0.9375rem, -0.1338rem + 2.232vw, 1.875rem);
  background: #dadada;
}
.c-search-area > summary {
  display: none;
}
.c-search-area .search-form {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
}
.c-search-area .search-form .search-field {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4px;
  font-weight: 500;
  font-size: 14px;
}
.c-search-area .search-form .search-field input, .c-search-area .search-form .search-field select {
  width: 100%;
  height: 36px;
  border-radius: 4px;
}
.c-search-area .search-form .search-field label {
  min-width: 80px;
}
.c-search-area .search-form .c-btn {
  flex-shrink: 0;
  width: 120px;
  height: 36px;
  padding: 4px 6px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
}
.c-search-area .search-tags {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.c-search-area .search-tags strong {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
}
.c-search-area .search-tags strong::before {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background: url("../images/ic_tag.svg") no-repeat center/contain;
  content: "";
}
.c-search-area .search-tags ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: clamp(0.625rem, -0.0892rem + 1.488vw, 1.25rem);
  padding-left: clamp(0.625rem, -0.0892rem + 1.488vw, 1.25rem);
  gap: clamp(0.3125rem, -0.0446rem + 0.744vw, 0.625rem);
  border-left: 1px solid #474747;
  font-size: clamp(0.875rem, 0.7318rem + 0.298vw, 1rem);
}
.c-search-area .search-tags ul li {
  padding: 2px clamp(0.25rem, -0.0355rem + 0.595vw, 0.5rem);
  border: 1px solid #474747;
  border-radius: 40px;
}
.c-search-area + .c-search-result {
  display: flex;
  row-gap: 10px;
  flex-wrap: wrap;
  margin-block: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #9d9d9d;
  font-weight: 500;
  font-size: 20px;
}
.c-search-area + .c-search-result li + li {
  margin-left: clamp(0.625rem, -0.0892rem + 1.488vw, 1.25rem);
  padding-left: clamp(0.625rem, -0.0892rem + 1.488vw, 1.25rem);
  border-left: 1px solid #dadada;
}
.c-header {
  display: inline-grid;
  grid-template-areas: "row1 row2 txt";
  row-gap: 1em;
  align-items: center;
  font-weight: 500;
  font-size: clamp(1.25rem, 0.679rem + 1.19vw, 1.75rem);
  line-height: 1;
}
.c-header.--row {
  grid-template-areas: "row1 ." "row2 txt";
}
.c-header.--row span {
  padding-inline: 12px;
}
.c-header div span {
  padding-block: 10px 6px;
  background: #474747;
  color: #ffffff;
}
.c-header div:first-of-type {
  grid-area: row1;
}
.c-header div:first-of-type span {
  padding-left: 12px;
}
.c-header div:last-of-type {
  grid-area: row2;
}
.c-header div:last-of-type span {
  padding-right: 12px;
}
.c-header small {
  grid-area: txt;
  margin-left: 10px;
  font-size: clamp(0.625rem, 0.4818rem + 0.298vw, 0.75rem);
  line-height: 1.2;
}
.c-post-item {
  border-radius: 4px;
  background: #ffffff;
}
.c-post-item.--col {
  display: flex;
}
.c-post-item.--col img {
  flex-shrink: 0;
}
.c-post-item.--col .content {
  flex: 1;
  padding-left: clamp(0.625rem, -0.0892rem + 1.488vw, 1.25rem);
}
.c-post-item img {
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: 4px;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-post-item .category {
  position: relative;
  padding: 10px;
  transform: translate(-10px, -10px);
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(0.875rem, 0.7318rem + 0.298vw, 1rem);
  line-height: 1;
  text-align: center;
}
.c-post-item .category::before {
  position: absolute;
  top: 100%;
  left: 0;
  width: 10px;
  height: 5px;
  background: #474747;
  content: "";
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.c-post-item .content {
  padding: clamp(0.3125rem, -0.0446rem + 0.744vw, 0.625rem);
}
.c-post-item .content > * + * {
  margin-top: 10px;
}
.c-post-item .ttl {
  display: -webkit-box;
  overflow: hidden;
  font-weight: 500;
  font-size: clamp(1rem, 0.7145rem + 0.595vw, 1.25rem);
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.c-post-item .txt {
  display: -webkit-box;
  overflow: hidden;
  font-size: clamp(0.875rem, 0.7318rem + 0.298vw, 1rem);
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.c-post-item .info {
  padding-top: 10px;
  border-top: 1px dashed #9d9d9d;
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6068rem + 0.298vw, 0.875rem);
}
.c-post-item .info > * + * {
  margin-top: 4px;
}
.c-post-item .info .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px;
}
.c-post-item .info .industry {
  position: relative;
  padding-left: 24px;
}
.c-post-item .info .industry::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: url("../images/ic_pc.svg") no-repeat center/contain;
  content: "";
}
.c-post-item .info .date {
  position: relative;
  padding-left: 24px;
}
.c-post-item .info .date::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: url("../images/ic_calendar.svg") no-repeat center/contain;
  content: "";
}
.c-post-item .info .area {
  position: relative;
  margin-left: auto;
  padding: 4px 10px;
  padding-left: 28px;
  border-radius: 20px;
  background: #474747;
  color: #ffffff;
  line-height: 1;
}
.c-post-item .info .area::before {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 10px;
  height: 13px;
  transform: translateY(-50%);
  background: url("../images/ic_pin.svg") no-repeat center/contain;
  content: "";
}
.c-related {
  max-width: calc(100% - 20px);
  margin-inline: auto;
  background: #ffffff;
  color: #474747;
}
.c-related .l-inner {
  padding-top: 0;
}
.c-related .header {
  margin-bottom: clamp(1.25rem, -0.1784rem + 2.976vw, 2.5rem);
  padding-top: clamp(1.875rem, -0.2676rem + 4.464vw, 3.75rem);
  font-weight: 500;
  font-size: 20px;
}
.c-related .items {
  margin-top: calc(clamp(-2.5rem, -5.3568rem + 5.952vw, 0rem) * -1);
}
.c-related .items .item {
  width: 100%;
}
.c-contact {
  padding: 60px 20px;
}
.c-contact .l-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  padding-block: clamp(2.5rem, 1.0716rem + 2.976vw, 3.75rem);
  gap: 20px clamp(2.5rem, -1.7861rem + 8.929vw, 6.25rem);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.7);
}
.c-contact .header {
  flex: 1;
}
.c-contact .header span {
  font-weight: 500;
  font-size: 20px;
}
.c-contact .header p {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #9d9d9d;
  font-size: 16px;
  line-height: 1.5;
}
.c-contact .c-btn {
  padding-inline: 40px;
}
.p-page .p-page__header, .p-single .p-404__header, .p-archive .p-archive__header {
  position: relative;
  margin-right: calc((50vw - 50%) * -1);
  margin-left: calc(clamp(0rem, -2.1426rem + 4.464vw, 1.875rem) * -1);
  padding: clamp(1.25rem, 0.5358rem + 1.488vw, 1.875rem) clamp(0.625rem, -0.8034rem + 2.976vw, 1.875rem);
  background: url("../images/page_header_bg.png.webp") no-repeat center right/contain;
  background-color: #f5f5f5;
}
.p-page .p-page__header::before, .p-single .p-404__header::before, .p-archive .p-archive__header::before {
  position: absolute;
  top: 100%;
  left: 0;
  width: clamp(0.625rem, -0.8034rem + 2.976vw, 1.875rem);
  height: clamp(0.3125rem, 0.0986rem + 0.446vw, 0.5rem);
  background: #474747;
  content: "";
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.p-page .p-page__header .ttl, .p-single .p-404__header .ttl, .p-archive .p-archive__header .ttl {
  font-weight: 500;
  font-size: clamp(1.25rem, 0.679rem + 1.19vw, 1.75rem);
  line-height: 1;
}
.p-page .p-page__header .desc, .p-single .p-404__header .desc, .p-archive .p-archive__header .desc {
  display: inline-block;
  margin-top: 10px;
  font-weight: 400;
  font-size: clamp(0.75rem, 0.4645rem + 0.595vw, 1rem);
}
.p-archive {
  width: 100%;
  max-width: calc(100% - 20px);
  margin-inline: auto;
  background: #ffffff;
}
.p-archive .l-inner {
  padding-top: 30px;
}
.p-single {
  width: 100%;
  max-width: calc(100% - 20px);
  margin-inline: auto;
  background: #ffffff;
}
.p-single .l-inner {
  padding-top: 30px;
}
.p-single .p-single__pager {
  display: grid;
  grid-template-areas: "p . n" ". c .";
  row-gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #eaeaea;
  font-weight: 500;
  font-size: clamp(0.875rem, 0.7318rem + 0.298vw, 1rem);
  text-align: center;
}
.p-single .p-single__pager .pager__prev {
  grid-area: p;
  flex-direction: row-reverse;
}
.p-single .p-single__pager .pager__prev::after {
  transform: scaleX(-1) rotate(-90deg) !important;
}
.p-single .p-single__pager .pager__back {
  grid-area: c;
}
.p-single .p-single__pager .pager__next {
  grid-area: n;
}
.p-single .p-single__pager .pager__prev, .p-single .p-single__pager .pager__next {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.625rem, -0.0892rem + 1.488vw, 1.25rem);
  cursor: pointer;
}
.p-single .p-single__pager .pager__prev::after, .p-single .p-single__pager .pager__next::after {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(1rem, 0.429rem + 1.19vw, 1.5rem);
  height: clamp(1rem, 0.429rem + 1.19vw, 1.5rem);
  transform: rotate(-90deg);
  background: #474747;
  content: "";
  -webkit-mask: url(../images/ic_chevron.svg) no-repeat center/contain;
  mask: url(../images/ic_chevron.svg) no-repeat center/contain;
  -webkit-mask-size: clamp(1rem, 0.429rem + 1.19vw, 1.5rem);
  mask-size: clamp(1rem, 0.429rem + 1.19vw, 1.5rem);
}
.p-single .p-single__pager .pager__prev:hover::after, .p-single .p-single__pager .pager__next:hover::after {
  opacity: 0.8;
}
.p-single .p-single__pager .pager__prev.u-disabled::after, .p-single .p-single__pager .pager__next.u-disabled::after {
  background-color: #dadada;
}
.p-page {
  width: 100%;
  max-width: calc(100% - 20px);
  margin-inline: auto;
  background: #ffffff;
}
.p-page .l-inner {
  padding-top: 30px;
}
.p-page.p-about .p-about__ttl {
  z-index: 1;
  position: relative;
}
.p-page.p-about .p-about__ttl img {
  max-height: clamp(2.5rem, 1.6426rem + 1.786vw, 3.25rem);
}
.p-page.p-about .p-about__ttl span {
  display: inline-block;
  position: relative;
  margin-top: 10px;
  font-weight: 500;
  font-size: clamp(1.25rem, 0.679rem + 1.19vw, 1.75rem);
  line-height: 1;
}
.p-page.p-about .p-about__ttl span::before {
  display: block;
  z-index: -1;
  position: absolute;
  top: -20px;
  left: calc(clamp(0.625rem, -0.0892rem + 1.488vw, 1.25rem) * -1);
  width: clamp(3.375rem, 0.946rem + 5.06vw, 5.5rem);
  height: clamp(3.375rem, 0.946rem + 5.06vw, 5.5rem);
  background: #f5f5f5;
  content: "";
}
.p-page.p-about .p-about__mission {
  display: flex;
  margin-block: clamp(3.125rem, -0.446rem + 7.44vw, 6.25rem);
  gap: clamp(2.1875rem, -1.7415rem + 8.185vw, 5.625rem);
}
.p-page.p-about .p-about__mission .p-about__txt {
  width: clamp(22.5rem, 12.5003rem + 20.833vw, 31.25rem);
  margin-top: clamp(2.5rem, 1.0716rem + 2.976vw, 3.75rem);
  font-size: 16px;
}
.p-page.p-about .p-about__mission .p-about__img {
  flex-shrink: 0;
  width: 100%;
  max-width: clamp(18.75rem, -7.679rem + 55.06vw, 41.875rem);
}
.p-page.p-about .p-about__mission .p-about__img img {
  border-radius: 4px;
}
.p-page.p-about .p-about__features {
  margin-block: clamp(3.125rem, -0.446rem + 7.44vw, 6.25rem);
}
.p-page.p-about .p-about__features .p-about__list {
  margin-top: clamp(2.5rem, 1.0716rem + 2.976vw, 3.75rem);
}
.p-page.p-about .p-about__features .p-about__list li {
  display: flex;
  padding-block: 20px;
  gap: clamp(1.25rem, -0.1784rem + 2.976vw, 2.5rem);
}
.p-page.p-about .p-about__features .p-about__list li img {
  flex-shrink: 0;
  width: 100%;
  max-width: clamp(18.75rem, 0.8932rem + 37.202vw, 34.375rem);
  border-radius: 4px;
}
.p-page.p-about .p-about__features .p-about__list li strong {
  font-weight: 500;
  font-size: clamp(1.125rem, 0.4108rem + 1.488vw, 1.75rem);
}
.p-page.p-about .p-about__features .p-about__list li p {
  margin-top: 20px;
  font-size: 16px;
}
.p-page.p-about .p-about__values {
  margin-block: clamp(3.125rem, -0.446rem + 7.44vw, 6.25rem);
}
.p-page.p-about .p-about__values .p-about__list {
  display: flex;
  margin-top: clamp(2.5rem, 1.0716rem + 2.976vw, 3.75rem);
  gap: clamp(1.25rem, -0.8926rem + 4.464vw, 3.125rem);
}
.p-page.p-about .p-about__values .p-about__list li {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  aspect-ratio: 1/1;
  padding-top: clamp(1.875rem, -0.2676rem + 4.464vw, 3.75rem);
  border-radius: 50%;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><circle cx="50%" cy="50%" r="49%" fill="none" stroke="%239d9d9d" stroke-width="2" stroke-dasharray="1 8" stroke-linecap="round" /></svg>');
}
.p-page.p-about .p-about__values .p-about__list li img {
  flex-shrink: 0;
  width: 100%;
  max-width: clamp(4rem, -0.5716rem + 9.524vw, 8rem);
}
.p-page.p-about .p-about__values .p-about__list li .txt {
  width: 64%;
}
.p-page.p-about .p-about__values .p-about__list li strong {
  display: block;
  margin-top: 10px;
  font-weight: 500;
  font-size: clamp(1rem, 0.1426rem + 1.786vw, 1.75rem);
  text-align: center;
}
.p-page.p-about .p-about__values .p-about__list li p {
  margin-top: clamp(0rem, -0.7142rem + 1.488vw, 0.625rem);
  padding-top: clamp(0.3125rem, -0.0446rem + 0.744vw, 0.625rem);
  border-top: 1px solid #9d9d9d;
  font-size: clamp(0.75rem, 0.4645rem + 0.595vw, 1rem);
}
.p-about-company {
  padding-block: clamp(3.125rem, -0.446rem + 7.44vw, 6.25rem);
  background: #f5f5f5;
}
.p-about-company .wrapper {
  max-width: clamp(44.25rem, 3.3929rem + 85.119vw, 80rem);
  margin-inline: auto;
}
.p-about-company .wrapper h2 {
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #9d9d9d;
  font-weight: 500;
  font-size: 20px;
}
.p-about-company .wrapper .content {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  gap: 40px clamp(1.25rem, -4.4645rem + 11.905vw, 6.25rem);
}
.p-about-company .wrapper .info li {
  display: flex;
  gap: 5px;
  font-size: 16px;
}
.p-about-company .wrapper .info li *:first-of-type {
  width: clamp(6.25rem, 4.8216rem + 2.976vw, 7.5rem);
  font-weight: 500;
}
.p-about-company .wrapper .info li + li {
  margin-top: 20px;
}
.p-about-company .wrapper .map {
  aspect-ratio: 3/2;
  width: clamp(18.75rem, -2.6787rem + 44.643vw, 37.5rem);
}
.p-about-company .wrapper .map iframe {
  width: 100%;
  height: 100%;
}
.p-page.p-faq .wrapper {
  max-width: 950px;
  margin-top: 40px;
  margin-inline: auto;
}
.p-page.p-faq .p-faqs + .p-faqs {
  margin-top: 40px;
}
.p-page.p-faq .p-faq__ttl {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #9d9d9d;
  font-weight: 500;
  font-size: clamp(1.125rem, 0.4108rem + 1.488vw, 1.75rem);
}
.p-page.p-faq .p-faq__ttl::before {
  display: inline-block;
  width: 4px;
  height: 1.2em;
  margin-right: 10px;
  background-color: #ff7a84;
  content: "";
}
.p-page.p-faq .p-faq__items .item {
  padding-block: clamp(1.25rem, -0.1784rem + 2.976vw, 2.5rem);
}
.p-page.p-faq .p-faq__items .item + .item {
  border-top: 1px solid #9d9d9d;
}
.p-page.p-faq .p-faq__items .item .q {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: clamp(1rem, 0.7145rem + 0.595vw, 1.25rem);
}
.p-page.p-faq .p-faq__items .item .q::before {
  flex-shrink: 0;
  width: clamp(1.5rem, 0.6426rem + 1.786vw, 2.25rem);
  height: clamp(1.5rem, 0.6426rem + 1.786vw, 2.25rem);
  margin-right: clamp(0.625rem, -0.0892rem + 1.488vw, 1.25rem);
  background: url("../images/ic_q.svg") no-repeat center/contain;
  content: "";
}
.p-page.p-faq .p-faq__items .item .a {
  padding-top: 20px;
}
.p-page.p-faq .p-faq__items .item .a a {
  color: #0000ee;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.p-top-kv {
  max-width: clamp(43.75rem, 25.179rem + 38.69vw, 60rem);
  margin-inline: auto;
  margin-block: clamp(2.5rem, -5.3571rem + 16.369vw, 9.375rem) clamp(1.25rem, -3.0361rem + 8.929vw, 5rem);
}
.p-top-kv .kv-hero {
  display: grid;
  position: relative;
  grid-template-areas: "txt1 logo" "txt2 logo";
  align-items: center;
  justify-content: center;
  padding: clamp(1.875rem, -0.9818rem + 5.952vw, 4.375rem) clamp(1.25rem, -2.321rem + 7.44vw, 4.375rem);
  gap: clamp(1.25rem, 0.5358rem + 1.488vw, 1.875rem);
  background: #ffffff;
}
.p-top-kv .kv-hero .kv-text {
  grid-area: txt1;
}
.p-top-kv .kv-hero .kv-text p {
  font-weight: 500;
  font-size: clamp(1rem, -0.4284rem + 2.976vw, 2.25rem);
  line-height: 1;
}
.p-top-kv .kv-hero .kv-text p span {
  margin-inline: clamp(0rem, -0.2855rem + 0.595vw, 0.25rem);
  padding: clamp(0.125rem, -0.0182rem + 0.298vw, 0.25rem) clamp(0.25rem, -0.0355rem + 0.595vw, 0.5rem);
  background: #474747;
  color: #ffffff;
  font-size: clamp(1.25rem, -0.1784rem + 2.976vw, 2.5rem);
}
.p-top-kv .kv-hero .kv-text p b {
  font-size: clamp(1.125rem, -0.8753rem + 4.167vw, 2.875rem);
}
.p-top-kv .kv-hero .kv-text p + p {
  margin-top: clamp(1.25rem, 0.5358rem + 1.488vw, 1.875rem);
}
.p-top-kv .kv-hero .kv-text + small {
  grid-area: txt2;
  font-weight: 500;
  font-size: clamp(0.875rem, 0.4463rem + 0.893vw, 1.25rem);
}
.p-top-kv .kv-hero .kv-logo {
  grid-area: logo;
}
.p-top-kv .kv-hero .kv-logo img {
  width: 260px;
}
.p-top-kv .kv-hero::before {
  position: absolute;
  right: calc(100% - 80px);
  width: 364px;
  height: 765px;
  background: url("../images/top/kv_l.svg") no-repeat center/contain;
  content: "";
}
.p-top-kv .kv-hero::after {
  position: absolute;
  left: calc(100% - 80px);
  width: 385px;
  height: 856px;
  background: url("../images/top/kv_r.svg") no-repeat center/contain;
  content: "";
}
.p-top-news {
  max-width: clamp(43.75rem, 25.179rem + 38.69vw, 60rem);
  margin-inline: auto;
  margin-block: 80px;
}
.p-top-news .l-inner {
  padding: clamp(1.25rem, -0.1784rem + 2.976vw, 2.5rem);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.7);
}
.p-top-news .header {
  font-weight: 500;
  font-size: 20px;
}
.p-top-news .items {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #9d9d9d;
}
.p-top-news .items li + li {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #9d9d9d;
}
.p-top-news .items .item {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, -0.0892rem + 1.488vw, 1.25rem);
}
.p-top-news .items .item .date {
  font-weight: 500;
  font-size: 14px;
}
.p-top-news .items .item .new {
  min-width: 26px;
  color: #ff7a84;
  font-weight: 500;
  font-size: 12px;
}
.p-top-news .items .item .ttl {
  font-size: 16px;
}
.p-top-recommend .l-inner {
  background: #ffffff;
}
.p-top-recommend .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: calc(clamp(-2.5rem, -5.3568rem + 5.952vw, 0rem) * -1);
  gap: clamp(1.25rem, -1.6068rem + 5.952vw, 3.75rem);
}
.p-top-recommend .items .item {
  width: 100%;
}
.p-top-latest {
  margin-top: clamp(3.125rem, -0.446rem + 7.44vw, 6.25rem);
  color: #474747;
}
.p-top-latest .l-inner {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: clamp(3.125rem, -0.446rem + 7.44vw, 6.25rem);
}
.p-top-latest .container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  padding: clamp(4.375rem, -1.3395rem + 11.905vw, 9.375rem) clamp(1.25rem, -3.0361rem + 8.929vw, 5rem) clamp(3.125rem, -0.446rem + 7.44vw, 6.25rem) clamp(3.125rem, -0.446rem + 7.44vw, 6.25rem);
  background: #ffffff;
}
.p-top-latest .items .item img {
  max-width: clamp(15rem, 9.2855rem + 11.905vw, 20rem);
}
.p-top-latest .link {
  margin-top: 30px;
}
.p-top-latest .link a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  font-weight: 500;
  font-size: 16px;
}
.p-top-latest .link a::after {
  width: 20px;
  height: 10px;
  background: url(../images/ic_arrow.svg) no-repeat center center;
  content: "";
}
.p-top-popular .l-inner {
  margin-top: 100px;
  background: #ffffff;
}
.p-top-popular .wrapper {
  display: flex;
  margin-top: calc(clamp(-2.5rem, -5.3568rem + 5.952vw, 0rem) * -1);
  gap: clamp(1.25rem, -0.1784rem + 2.976vw, 2.5rem);
  counter-reset: number 0;
}
.p-top-popular .wrapper .item {
  position: relative;
}
.p-top-popular .wrapper .item.first {
  max-width: clamp(15rem, -2.1426rem + 35.714vw, 30rem);
}
.p-top-popular .wrapper .item.first::before {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ebe687 50%, #d8d37e 50%);
  font-size: 56px;
}
.p-top-popular .wrapper .item::before {
  display: flex;
  position: absolute;
  align-items: flex-end;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-top: -10px;
  margin-left: -10px;
  background: linear-gradient(135deg, #e6e4ed 50%, #c4bfd8 50%);
  content: counter(number);
  font-size: 40px;
  line-height: 1;
  counter-increment: number 1;
}
.p-top-popular .items {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, -0.1784rem + 2.976vw, 2.5rem);
}
.p-top-popular .items li .item img {
  max-width: clamp(10rem, -1.429rem + 23.81vw, 20rem);
}
.p-top-popular .items li:nth-child(1) .item::before {
  background: linear-gradient(135deg, #f5f5f5 50%, #dadada 50%);
}
.p-top-popular .items li:nth-child(2) .item::before {
  background: linear-gradient(135deg, #e4caa9 50%, #d5a970 50%);
}
.p-top-type {
  background: #f5f5f5;
}
.p-top-type .l-inner {
  margin-top: 100px;
  padding-block: clamp(3.125rem, -0.446rem + 7.44vw, 6.25rem);
}
.p-top-type .types {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(4, 1fr);
  margin-left: clamp(5rem, 3.5716rem + 2.976vw, 6.25rem);
  gap: clamp(1.25rem, -1.6068rem + 5.952vw, 3.75rem);
}
.p-top-type .types .icon {
  color: #ffffff;
}
.p-top-type .types .icon .ttl {
  font-weight: 700;
  font-size: clamp(1.125rem, 0.9818rem + 0.298vw, 1.25rem);
}
.p-top-type .types .icon .count {
  font-weight: 500;
  font-size: clamp(1.25rem, 1.1068rem + 0.298vw, 1.375rem);
}
.p-top-type .types .icon .count span {
  font-size: 14px;
}
.p-top-type .types .icon a {
  display: flex;
  z-index: 1;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  width: 100%;
  min-width: clamp(10rem, 7.1432rem + 5.952vw, 12.5rem);
}
.p-top-type .types .icon a::before {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  content: "";
}
.p-top-type .types .icon {
}
.p-top-type .types .icon:nth-of-type(1) {
  grid-column-start: 2;
}
.p-top-type .types .icon:nth-of-type(1) a::before {
  background: url("../images/top/ic_category1.png.webp") no-repeat center/contain;
}
.p-top-type .types .icon:nth-of-type(2) a::before {
  background: url("../images/top/ic_category2.png.webp") no-repeat center/contain;
}
.p-top-type .types .icon:nth-of-type(3) a::before {
  background: url("../images/top/ic_category3.png.webp") no-repeat center/contain;
}
.p-top-type .types .icon:nth-of-type(4) a::before {
  background: url("../images/top/ic_category4.png.webp") no-repeat center/contain;
}
.p-top-type .types .icon:nth-of-type(5) a::before {
  background: url("../images/top/ic_category5.png.webp") no-repeat center/contain;
}
.p-top-type .types .icon {
}
.p-archive.p-tour .c-search-area {
  margin-block: 40px;
}
.p-archive.p-tour .wrapper {
  margin-top: clamp(2.5rem, -0.3568rem + 5.952vw, 5rem);
}
.p-archive.p-tour .wrapper .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, -1.6068rem + 5.952vw, 3.75rem);
}
.p-archive.p-tour .wrapper .items li {
  padding-bottom: clamp(1.25rem, -1.6068rem + 5.952vw, 3.75rem);
  border-bottom: 1px solid #9d9d9d;
}
.p-single.p-tour .l-inner {
  max-width: 960px;
  padding-inline: 20px;
}
.p-single.p-tour .p-single__header {
  margin-bottom: 20px;
}
.p-single.p-tour .p-single__header .category {
  display: inline-block;
  position: relative;
  padding: 10px 30px;
  transform: translate(-10px, -10px);
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(0.875rem, 0.7318rem + 0.298vw, 1rem);
  line-height: 1;
  text-align: center;
}
.p-single.p-tour .p-single__header .category::before {
  position: absolute;
  top: 100%;
  left: 0;
  width: 10px;
  height: 5px;
  background: #474747;
  content: "";
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.p-single.p-tour .p-single__header .ttl {
  margin-block: 10px;
  padding-left: 20px;
  font-weight: 500;
  font-size: 28px;
}
.p-single.p-tour .p-single__header .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  border-bottom: 1px solid #9d9d9d;
}
.p-single.p-tour .p-single__header .area {
  position: relative;
  padding: 4px 10px;
  padding-left: 28px;
  border-radius: 20px;
  background: #474747;
  color: #ffffff;
  line-height: 1;
}
.p-single.p-tour .p-single__header .area::before {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 10px;
  height: 13px;
  transform: translateY(-50%);
  background: url("../images/ic_pin.svg") no-repeat center/contain;
  content: "";
}
.p-single.p-tour .p-single__header .industry {
  position: relative;
  padding-left: 24px;
}
.p-single.p-tour .p-single__header .industry::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: url("../images/ic_pc.svg") no-repeat center/contain;
  content: "";
}
.p-single.p-tour .p-single__header .tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-block: 6px;
  gap: 6px 15px;
  font-size: 14px;
}
.p-single.p-tour .p-single__header .tags span + span {
  padding-left: 15px;
  border-left: 1px solid #9d9d9d;
}
.p-single.p-tour .p-single__header .date {
  position: relative;
  padding-left: 24px;
}
.p-single.p-tour .p-single__header .date::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: url("../images/ic_calendar.svg") no-repeat center/contain;
  content: "";
}
.p-single.p-tour .p-single__header .share {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 6px;
}
.p-single.p-tour .p-single__header .share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  gap: 5px;
  border: 1px solid #9d9d9d;
  border-radius: 2px;
  color: #474747;
  font-size: 14px;
  line-height: 1;
}
.p-single.p-tour .p-single__header .share a::before {
  width: 16px;
  height: 16px;
  background: url("../images/ic_share.svg") no-repeat center/contain;
  content: "";
}
.p-single.p-tour .thum img {
  width: 100%;
  max-width: 768px;
  margin-inline: auto;
  border-radius: 8px;
}
.p-single.p-tour .excerpt {
  margin-top: clamp(1.25rem, -0.8926rem + 4.464vw, 3.125rem);
  padding-bottom: clamp(1.25rem, -0.8926rem + 4.464vw, 3.125rem);
  border-bottom: 1px solid #9d9d9d;
  font-weight: 500;
  font-size: clamp(1rem, 0.7145rem + 0.595vw, 1.25rem);
  white-space: pre-line;
  overflow-wrap: break-word;
}
.p-single.p-tour .c-wysiwyg-editor {
  margin-top: clamp(1.25rem, -0.8926rem + 4.464vw, 3.125rem);
}
.p-single.p-tour .c-wysiwyg-editor .tour-point ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-left: 0;
  gap: 16px;
  list-style: none;
}
.p-single.p-tour .c-wysiwyg-editor .tour-point ul li {
  padding: 20px;
  border-radius: 4px;
  background: #eafafc;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}
.p-single.p-tour .c-wysiwyg-editor .tour-contents .wp-block-group {
  padding: 30px;
  border-radius: 4px;
  background: #f5f5f5;
}
.p-single.p-tour .c-wysiwyg-editor .tour-contents dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  font-size: 16px;
}
.p-single.p-tour .c-wysiwyg-editor .tour-contents dl dt {
  font-weight: 500;
}
.p-single.p-tour .c-wysiwyg-editor .tour-contents .wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
}
.p-single.p-tour .c-wysiwyg-editor .tour-technology ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 15px;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
}
.p-single.p-tour .c-wysiwyg-editor .tour-technology ul li {
  padding-left: 5px;
}
.p-single.p-tour .c-wysiwyg-editor .tour-technology ul li::marker {
  content: "●";
  color: #61d0db;
}
.p-single.p-tour .c-wysiwyg-editor .participants-voice ul {
  margin-left: 0;
  list-style: none;
}
.p-single.p-tour .c-wysiwyg-editor .participants-voice ul li {
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 20px;
  border-radius: 4px;
  background: #eafafc;
}
.p-single.p-tour .c-wysiwyg-editor .participants-voice ul li::before {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: url("../images/ic_serif.svg") no-repeat center/contain;
  content: "";
}
.p-single.p-tour .c-wysiwyg-editor .participants-voice ul li + li {
  margin-top: 15px;
}
.p-single.p-tour .c-wysiwyg-editor .tour-program {
  padding: 40px 30px;
  border: 1px solid #9d9d9d;
}
.p-single.p-tour .c-wysiwyg-editor .tour-program h2 ~ h2 {
  margin-top: 20px;
}
.p-single.p-tour .c-wysiwyg-editor .tour-notice {
  padding: 30px;
  background: #f5f5f5;
}
.p-single.p-tour .c-wysiwyg-editor .tour-notice .wp-block-heading {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
}
.p-single.p-tour .c-wysiwyg-editor .tour-notice .wp-block-heading::before {
  content: none;
}
.p-single.p-tour .c-wysiwyg-editor .tour-notice ul {
  margin-top: 20px;
}
.p-single.p-tour .c-wysiwyg-editor .apply {
  text-align: center;
}
.p-single.p-tour .c-wysiwyg-editor .apply a {
  padding: 10px 40px;
  border-radius: 10px;
  background: #f38135;
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
}
.u-disabled, :disabled, [aria-disabled=true] {
  cursor: initial;
  opacity: 0.5;
  pointer-events: none !important;
}
@media screen and (min-width: 768px){
  :where(a) {
    transition: opacity 0.3s ease;
  }
  :where(a):hover {
    opacity: 0.7;
  }
  .c-related .l-inner {
    max-width: 960px;
    padding-inline: 20px;
  }
  .c-related .header {
    border-top: 1px solid #9d9d9d;
  }
  .c-related .items {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, -1.6068rem + 5.952vw, 3.75rem);
  }
  .p-page.p-about .p-about__features .p-about__list li + li {
    border-top: 1px solid #474747;
  }
  .p-top .l-inner {
    z-index: 1;
    position: relative;
  }
  .p-top .c-header {
    position: absolute;
    left: clamp(2.5rem, 0.0003rem + 5.208vw, 4.6875rem);
  }
  .p-top-recommend .c-header {
    top: 0;
    transform: translateY(-50%);
  }
  .p-top-latest .l-inner {
    position: relative;
  }
  .p-top-latest .l-inner::after {
    z-index: -1;
    position: absolute;
    bottom: 25%;
    left: 20px;
    width: 138px;
    height: 154px;
    background: url("../images/top/latest_parts.svg") no-repeat center/contain;
    content: "";
  }
  .p-top-latest .c-header {
    top: clamp(-0.9375rem, -4.8665rem + 8.185vw, 2.5rem);
  }
  .p-top-latest .items {
    display: flex !important;
    flex-direction: column;
    gap: clamp(1.25rem, -0.1784rem + 2.976vw, 2.5rem);
  }
  .p-top-popular .c-header {
    top: 0;
    transform: translateY(-50%);
  }
  .p-top-popular .items {
    padding-left: clamp(1.25rem, -0.1784rem + 2.976vw, 2.5rem);
    border-left: 1px solid #9d9d9d;
  }
  .p-single.p-tour .l-breadcrumb .items {
    max-width: 960px;
    padding-inline: 20px;
  }
  .p-single.p-tour .p-single__header .share .area {
    display: none;
  }
  .p-single.p-tour .c-wysiwyg-editor .tour-contents dl dt {
    padding-right: 20px;
    border-right: 1px solid #9d9d9d;
  }
  .u-dn-pc {
    display: none !important;
  }
}
@media screen and (max-width: 999.9px){
  .p-top-type .types {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 100px;
    margin-left: 0;
  }
  .p-top-type .types .icon:nth-of-type(1) {
    grid-column-start: 1;
  }
}
@media screen and (max-width: 767.9px){
  html {
    scroll-padding-top: 50px;
  }
  body.show-modal {
    overflow: hidden;
  }
  .l-breadcrumb .items {
    padding-inline: 10px;
    font-size: 12px;
  }
  .l-breadcrumb .items .item:not(:last-child)::after {
    margin-inline: 0.25em 0.5em;
  }
  html #wpadminbar:not(.is-expanded) {
    max-width: 52px;
  }
  .l-header .bg {
    padding: 0;
    padding-left: 20px;
  }
  .l-footer .menu {
    flex-direction: column;
    padding: 30px 20px;
  }
  .l-footer .menu .list {
    flex-direction: column;
  }
  .c-pager .page-numbers {
    min-width: 40px;
    min-height: 40px;
    font-size: 14px;
  }
  .c-sidebar {
    width: 100%;
  }
  .c-search-area.has-toggle .search-form {
    margin-top: 20px;
  }
  .c-search-area.has-toggle > summary {
    display: block;
    font-weight: 500;
  }
  .c-search-area.has-toggle > summary::after {
    width: 24px;
  }
  .c-search-area.has-toggle > summary span {
    visibility: visible;
  }
  .c-search-area .search-form {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }
  .c-search-area .search-form .search-field {
    flex-direction: row;
    align-items: center;
    width: 100%;
  }
  .c-search-area .search-form .search-field input, .c-search-area .search-form .search-field select {
    flex: 1;
  }
  .c-search-area .search-form .c-btn {
    width: 85%;
    margin-top: 10px;
    margin-inline: auto;
  }
  .c-header {
    grid-template-areas: "row1 ." "row2 txt";
  }
  .c-header span {
    padding-inline: 12px;
  }
  .c-related {
    border-top: 1px solid #9d9d9d;
  }
  .c-related .splide {
    margin-inline: -20px;
  }
  .c-related .splide .splide__slide {
    padding-right: 10px;
    border-right: 1px solid #9d9d9d;
  }
  .c-related .splide .splide__slide:last-child {
    border-right: none;
  }
  .c-related .items .item {
    width: 100%;
  }
  .c-contact {
    padding-block: 100px;
  }
  .c-contact .l-inner {
    flex-direction: column;
  }
  .c-contact .c-btn {
    margin-top: 30px;
  }
  .p-page .p-page__header, .p-single .p-404__header, .p-archive .p-archive__header {
    margin-left: -10px;
    background-image: url("../images/page_header_bg-sp.png.webp");
  }
  .p-single .p-single__pager {
    grid-template-areas: "p n" "c c";
    margin-top: 20px;
    padding-top: 20px;
  }
  .p-page.p-about .p-about__mission {
    flex-direction: column;
  }
  .p-page.p-about .p-about__mission .p-about__txt {
    width: 100%;
  }
  .p-page.p-about .p-about__mission .p-about__img {
    max-width: 100%;
  }
  .p-page.p-about .p-about__features .p-about__list li {
    flex-direction: column-reverse;
    padding-block: 0;
    gap: 10px;
  }
  .p-page.p-about .p-about__features .p-about__list li + li {
    margin-top: 40px;
  }
  .p-page.p-about .p-about__features .p-about__list li img {
    max-width: 100%;
  }
  .p-page.p-about .p-about__features .p-about__list li p {
    margin-top: 0;
    padding-top: 10px;
    border-top: 1px solid #9d9d9d;
  }
  .p-page.p-about .p-about__values .p-about__list {
    flex-direction: column;
  }
  .p-page.p-about .p-about__values .p-about__list li {
    justify-content: center;
    padding-top: 0;
  }
  .p-page.p-about .p-about__values .p-about__list li img {
    max-width: 110px;
  }
  .p-page.p-about .p-about__values .p-about__list li strong {
    font-size: 18px;
  }
  .p-page.p-about .p-about__values .p-about__list li p {
    font-size: 16px;
  }
  .p-about-company .wrapper {
    padding-inline: 20px;
  }
  .p-about-company .wrapper .content {
    flex-direction: column;
  }
  .p-about-company .wrapper .info li {
    flex-direction: column;
  }
  .p-about-company .wrapper .info li *:first-of-type {
    width: 100%;
  }
  .p-about-company .wrapper .map {
    width: 100%;
  }
  .p-top-kv {
    margin: 40px 20px;
  }
  .p-top-kv .kv-hero {
    grid-template-areas: "txt1" "logo" "txt2";
    place-items: center;
  }
  .p-top-kv .kv-hero .kv-text p {
    display: inline;
  }
  .p-top-kv .kv-hero .kv-logo img {
    width: 160px;
  }
  .p-top-news {
    margin-inline: 20px;
  }
  .p-top-news .header {
    text-align: center;
  }
  .p-top-news .items .item {
    flex-wrap: wrap;
  }
  .p-top-news .items .item .new {
    flex: 1;
  }
  .p-top-news .items .item .ttl {
    width: 100%;
  }
  .p-top-recommend .l-inner {
    padding-block: 0 40px;
  }
  .p-top-recommend .items {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 10px;
  }
  .p-top-recommend .items li {
    width: 100%;
  }
  .p-top-recommend .items li + li {
    margin-top: 10px;
    padding-top: 30px;
    border-top: 1px solid #9d9d9d;
  }
  .p-top-recommend .items .item {
    width: 100%;
  }
  .p-top-latest .l-inner {
    padding: 0;
  }
  .p-top-latest .container {
    padding: 20px;
    padding-top: 0;
  }
  .p-top-latest .splide {
    margin-inline: -20px;
  }
  .p-top-latest .splide .splide__slide {
    padding-right: 10px;
    border-right: 1px solid #9d9d9d;
  }
  .p-top-latest .splide .splide__slide:last-child {
    border-right: none;
  }
  .p-top-latest .items {
    margin-top: 40px !important;
  }
  .p-top-latest .items .item {
    flex-direction: column;
  }
  .p-top-latest .items .item img {
    max-width: 100%;
  }
  .p-top-popular .l-inner {
    padding-block: 0 40px;
  }
  .p-top-popular .c-header {
    margin-top: -20px;
  }
  .p-top-popular .wrapper {
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 10px;
  }
  .p-top-popular .wrapper .item.first {
    width: 100%;
    max-width: 100%;
  }
  .p-top-popular .items {
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
  }
  .p-top-popular .items li {
    margin-top: 10px;
    padding-top: 30px;
    border-top: 1px solid #9d9d9d;
  }
  .p-top-popular .items li .item {
    flex-direction: column;
  }
  .p-top-popular .items li .item img {
    max-width: 100%;
  }
  .p-top-type .l-inner {
    padding-block: 0 40px;
  }
  .p-top-type .types {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
    margin-left: 0;
    gap: 20px;
  }
  .p-archive.p-tour .wrapper .items {
    grid-template-columns: 1fr;
  }
  .p-single.p-tour .p-single__header .ttl {
    padding-left: 0;
  }
  .p-single.p-tour .p-single__header .info {
    padding-left: 0;
  }
  .p-single.p-tour .p-single__header .info .area {
    display: none;
  }
  .p-single.p-tour .p-single__header .share {
    justify-content: space-between;
  }
  .p-single.p-tour .c-wysiwyg-editor .tour-point ul {
    grid-template-columns: 1fr;
  }
  .p-single.p-tour .c-wysiwyg-editor .tour-contents .wp-block-group {
    padding: 20px;
  }
  .p-single.p-tour .c-wysiwyg-editor .tour-contents dl {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .p-single.p-tour .c-wysiwyg-editor .tour-contents dl dt {
    border-bottom: 1px solid #9d9d9d;
  }
  .p-single.p-tour .c-wysiwyg-editor .tour-contents .wp-block-gallery {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }
  .p-single.p-tour .c-wysiwyg-editor .tour-technology ul {
    grid-template-columns: 1fr;
  }
  .p-single.p-tour .c-wysiwyg-editor .tour-program {
    padding: 20px;
  }
  .u-dn-sp {
    display: none !important;
  }
}
