@charset "UTF-8";
/* ========================================
  Arrow Mixin
  @param {String} $direction - Direction
  @param {Number} $width - Width
  @param {Number} $height - Height
  @param {Number} $border - Border
  @param {Color} $color - Color
  ex: @include arrow.arrow(upward, 20px, 20px, 2px, #333);
======================================== */
/* ========================================
  Aspect Ratio Mixin
  @param {Number} $width - Width
  @param {Number} $height - Height
  ex: @include aspect-ratio.aspect-ratio(16, 9);
======================================== */
/* ========================================
  Hover Mixin
  ex: @include hover.hover() {...}
======================================== */
/* ========================================
  Leading Trim Mixin
  @param {Number} $line-height - Line Height
  Note: You can use get-line-height function.
  ex: @include leading-trim.leading-trim(1.6);
======================================== */
/* ========================================
  Breakpoint Variables
  Note: These breakpoints are refered from Bootstrap.
  https://getbootstrap.com/docs/5.0/layout/breakpoints/
  ex: $breakpoints
======================================== */
/* ========================================
  Media Query Mixin
  @param {String} $breakpoint - Class infix like 'sm', 'md'
  Note: Check out a breakpoints file if you want to modify breakpoints.
  ex: @include media-query(md) {...}
======================================== */
/* ========================================
  Triangle Mixin
  @param {String} $direction - Direction
  @param {Number} $width - Width
  @param {Number} $height - Height
  @param {Color} $color - Color
  ex: @include triangle.triangle(upward, 20px, 20px, #333);
======================================== */
/* ========================================
  Underline Mixin
  @param {Color} $color - Color
  @param {Number} $height - Height
  ex: @include underline.underline(#ff6B00, 10px);
======================================== */
/* ========================================
  Visibility Hidden Mixin
  ex: @include visibility-hidden.visibility-hidden();
======================================== */
/* ========================================
  Strip-unit Function
  @param {Number} $number - Number to remove unit
  @return {Number} - Unitless number
  note: You can use this function in other functions and mixins.
  ex: strip-unit(100px); -> 100
======================================== */
/* ========================================
  Get Line Hight Function
  @param {Number} $font-size - Font size with px
  @param {Number} $line-feed - Line feed with no-unit
  @return {Number} $line-height - Line hight
  ex: get-line-height(16); -> 1.5
======================================== */
/* ========================================
  Font Size Variables
======================================== */
/* ========================================
  Get Rem Function
  @param {Number} $font-size - Number to convert px to rem
  @param {Number} $root-font-size - Number to divite target value by root's font size
  @return {Number} $rem - Number with rem unit
  ex: get-rem(16px); -> 1rem
======================================== */
/* ========================================
  Get Vw Function
  @param {Number} $px - Number to convert px to vw
  @param {Number} $viewport - Viewport size
  @return {Number} $vw - Number with vw unit
  ex: get-vw(30px); -> 8vw
======================================== */
/* ========================================
  Z-index Function
======================================== */
/* ========================================
  Color Variables
======================================== */
/* ========================================
  Font Variables
======================================== */
/* ========================================
  Transition Variables
======================================== */
/* ========================================
  Content Width Variables
======================================== */
/* ========================================
  Base
======================================== */
:root {
  --color-canvas-primary: #fff;
  --color-canvas-inverted: #202021;
  --color-brand-primary: #4da1ff;
  --color-brand-secondary: #1675e1;
  --color-brand-tertiary: #2e2e30;
  --color-text-primary: #000;
  --color-text-secondary: #aaa;
  --color-text-tertiary: #ccc;
  --color-text-inverted: #fff;
  --color-text-link: #4da1ff;
  --color-text-success: #00b533;
  --color-text-warn: #ffb700;
  --color-text-danger: #ff2600;
  --color-ui-primary: #4da1ff;
  --color-ui-secondary: #1675e1;
  --color-ui-tertiary: #2e2e30;
  --color-ui-success: #00b533;
  --color-ui-warn: #ffb700;
  --color-ui-danger: #ff2600;
  --font-size-x-small: 0.75rem;
  --font-size-small: 0.875rem;
  --font-size-medium: 1rem;
  --font-size-large: 1.125rem;
  --font-size-x-large: 1.5rem;
  --font-size-xx-large: 1.75rem;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  font-size: 100%;
  outline: 0;
  border: 0;
  background: transparent;
  box-sizing: border-box;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  font-size: 100%;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  text-decoration: none;
  background-color: #ff9;
  color: #000;
}

/* change colours to suit your needs */
mark {
  font-weight: bold;
  font-style: italic;
  background-color: #ff9;
  color: #000;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}

input,
select {
  vertical-align: middle;
}

html {
  overflow-y: scroll;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body,
input,
button,
select,
textarea {
  font-family: "Noto Sans JP", sans-serif;
}

body {
  width: 100%;
  height: 100%;
  min-width: 320px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.6;
  color: #000;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}
body.is-fixed {
  overflow: hidden; /* スクロールを禁止 */
  position: fixed; /* 必要に応じて他のスタイルを追加 */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

label {
  cursor: pointer;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

a {
  text-decoration: none;
  color: #000;
  transition: opacity 0.3s;
}

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

/* ========================================
  Layout Container
======================================== */
.l-container {
  padding-right: 1.6rem;
  padding-left: 1.6rem;
}

/* ========================================
  Layout Footer
======================================== */
.l-footer {
  background-color: #fff;
  padding-top: 16px;
  padding-bottom: 68px;
}

.l-footer__inner {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding: 2rem 0 0;
}

/* ========================================
  Layout Header
======================================== */
.l-header {
  z-index: 9000;
  border-bottom: 1px solid #efefef;
  height: 45px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
}
.p-top .l-header {
  border-bottom: none;
  transition: background-color 0.3s ease-in-out;
  background-color: #fff;
}
.p-top .l-header.is-scrolling {
  background-color: #fff;
  border-bottom: 1px solid #efefef;
}
.p-top .l-header.is-drawer-open {
  background-color: #fff;
  border-bottom: 1px solid #efefef;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  height: 100%;
  padding: 0 5px 0 18px;
}
.p-top .l-header__inner {
  transition: padding 0.3s ease-in-out;
}

/* ========================================
  Layout Main
======================================== */
.l-main {
  padding: 0;
  margin-top: 45px;
}

.l-main-detail,
.l-main-list,
.l-main-404 {
  margin-top: 64px;
}

/* ========================================
  Button
======================================== */
.c-btn, .c-btn-external, .c-btn-main {
  display: inline-block;
  max-width: 320px;
  width: 100%;
  padding: 2rem 0;
  text-align: center;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.c-btn-main {
  font-family: roboto, sans-serif;
  font-weight: 600;
  font-size: 1.9rem;
  padding: 1.2rem 0;
  background-color: #fff;
  border: solid 1px #E71F18;
  transition: ease 0.2s;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}
.c-btn-main:hover, .c-btn-main:focus {
  outline: none;
}
.c-btn-main span {
  position: relative;
  z-index: 3;
  color: #E71F18;
}
.c-btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #E71F18;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.c-btn-main:hover {
  opacity: 1;
}
.c-btn-main:hover span {
  color: #fff;
}
.c-btn-main:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.c-btn-external {
  border: 2px solid transparent;
  background-color: #fff;
  color: #E71F18;
  border: solid 1px #E71F18;
  transition: ease 0.2s;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.12em;
}
.c-btn-external::after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../img/share/icon_external_link.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 18px;
  z-index: 3;
}
.c-btn-external:hover, .c-btn-external:focus {
  outline: none;
  border-color: currentcolor;
}
.c-btn-external span {
  position: relative;
  z-index: 3;
  color: #E71F18;
}
.c-btn-external::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #E71F18;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.c-btn-external:hover {
  opacity: 1;
}
.c-btn-external:hover span {
  color: #fff;
}
.c-btn-external:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.c-btn-external:hover::after {
  background-image: url("../img/share/icon_external_link_white.svg");
}

/* ========================================
  Caption
======================================== */
.c-caption--center {
  text-align: center;
}

.c-caption--right {
  text-align: right;
}

.c-caption__txt {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: bold;
}

/* ========================================
  Caution
======================================== */
.c-caution {
  color: red;
}

/* ========================================
  Heading
======================================== */
.c-heading--lev1 {
  font-size: 12.8vw;
}

.c-heading--lev2 {
  font-size: 10.6666666667vw;
}

.c-heading--lev3 {
  font-size: 9.6vw;
}

.c-heading--lev4 {
  font-size: 8vw;
}

/* ========================================
  Icon
======================================== */
.c-icon {
  vertical-align: text-top;
  width: 1.2em;
  height: 1.2em;
}

.c-icon--before {
  margin-right: 0.5em;
}

.c-icon--after {
  margin-left: 0.5em;
}

.c-icon-bg--before {
  padding-left: 1.5em;
  line-height: 1.2em;
}

.c-icon-bg--after {
  display: inline-block;
  padding-right: 1.5em;
  line-height: 1.2em;
}

/* ========================================
  Iframe
======================================== */
.c-iframe {
  display: block;
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}
.c-iframe iframe,
.c-iframe embed,
.c-iframe object,
.c-iframe video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========================================
  Label
======================================== */
.c-label {
  display: inline-block;
  padding: 0.2em 0.3em;
  font-size: 1.2rem;
  font-weight: bold;
  background-color: #1675e1;
  color: #fff;
}

/* ========================================
  List
======================================== */
.c-bullet-list {
  list-style: none;
}

.c-bullet-list__item {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1em;
}
.c-bullet-list__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0.4em;
  height: 0.4em;
  border-radius: 50%;
  background-color: #1675e1;
}
.c-bullet-list__item:last-child {
  margin-bottom: 0;
}

.c-order-list {
  counter-reset: c-order-list;
}

.c-order-list__item {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1em;
}
.c-order-list__item::before {
  content: counter(c-order-list) ". ";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: bold;
  color: #1675e1;
  counter-increment: c-order-list;
}
.c-order-list__item:last-child {
  margin-bottom: 0;
}

/* ========================================
  Media
======================================== */

.c-media__img-wrapper {
  margin-bottom: 1rem;
}
.c-media__img-wrapper img {
  width: 100%;
}

.c-media__body {
  flex: 1 1;
}
.c-media__body > *:last-child {
  margin-bottom: 0;
}

.c-media__ttl {
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
}

.c-media__txt {
  margin-bottom: 1rem;
}

.c-animation__fadeInFromRight {
  opacity: 0.1;
  transform: translateX(40px);
  transition: all 1s;
}
.c-animation__fadeInFromRight.is-fadeIn {
  opacity: 1;
  transform: translate(0);
}

.c-animation__fadeInFromLeft {
  opacity: 0.1;
  transform: translateX(-40px);
  transition: all 1s;
}
.c-animation__fadeInFromLeft.is-fadeIn {
  opacity: 1;
  transform: translate(0);
}

.c-animation__fadeInQA .p-detail-parts__qa-question, .c-animation__fadeInQA .p-detail-parts__qa-answer, .c-animation__fadeInQA .p-detail-parts__qa-person {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}
.c-animation__fadeInQA.is-fadeIn .p-detail-parts__qa-question, .c-animation__fadeInQA.is-fadeIn .p-detail-parts__qa-answer, .c-animation__fadeInQA.is-fadeIn .p-detail-parts__qa-person {
  opacity: 1;
  transform: translateY(0);
}
.c-animation__fadeInQA.is-fadeIn .p-detail-parts__qa-question {
  transition: all 1s;
}
.c-animation__fadeInQA.is-fadeIn .p-detail-parts__qa-question + .p-detail-parts__qa-answer {
  transition: all 1s 0.5s;
}
.c-animation__fadeInQA.is-fadeIn .p-detail-parts__qa-person {
  transition: all 1s 0.5s;
}

/* ========================================
  Header
======================================== */
.p-header__logo-link {
  display: flex;
  align-items: center;
}
.p-top .p-header__logo-link {
  transition: width 0.3s ease-in-out;
}

.p-header__rightBlock-item {
  display: none;
}
.p-header__rightBlock-item a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-header__nav {
  display: none;
}

.p-header__nav-btn {
  width: 44px;
  height: 44px;
  position: relative;
  font-size: 0;
}
.p-header__nav-btn::before, .p-header__nav-btn::after {
  content: "";
  width: 22px;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.p-header__nav-btn::before {
  transition: all 0.3s ease-in-out;
  top: 15px;
}
.p-header__nav-btn::after {
  transition: all 0.3s ease-in-out;
  bottom: 15px;
}
.p-header__nav-btn.is-open::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-header__nav-btn.is-open::after {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}

.p-header__search-btn {
  padding-left: 1.5em;
}
.p-header__search-btn span {
  font-size: 1.4rem;
  margin-left: 10px;
  color: #000;
}
.p-header__search-btn.is-open img {
  display: none;
}
.p-header__search-btn.is-open span {
  position: relative;
}
.p-header__search-btn.is-open span::before, .p-header__search-btn.is-open span::after {
  content: "";
  width: 22px;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: -1.5em;
  transform: translateX(-50%);
}
.p-header__search-btn.is-open span::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-header__search-btn.is-open span::after {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}

.p-header__nav-list-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateX(100%);
}

/* ========================================
  Footer
======================================== */
.p-footer__concept {
  padding: 0 16px;
}

.p-footer__copy {
  padding: 10px 0;
  border-top: solid 1px #ccc;
  text-align: center;
  font-size: 1.2rem;
  margin-top: 60px;
}

/* ========================================
  Accordion
======================================== */
.p-accordion {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.p-accordion__btn {
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 5.3333333333vw 13.3333333333vw 5.3333333333vw 6.6666666667vw;
  text-align: left;
  font-size: 6.9333333333vw;
  outline: none;
  border: none;
  border-bottom: 1px solid #2d5996;
  background-color: #4da1ff;
  color: #fff;
  cursor: pointer;
}
.p-accordion__btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 20px;
  height: 2px;
  background-color: currentcolor;
  transform: translateY(-50%);
}
.p-accordion__btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 2.4rem;
  width: 2px;
  height: 20px;
  background-color: currentcolor;
  transform: translateY(-50%);
}
.p-accordion__btn:focus, .p-accordion__btn:hover {
  background-color: #fff;
  color: #4da1ff;
}

.p-accordion__body {
  overflow: hidden;
  height: 0;
  padding: 0 6.6666666667vw;
  line-height: 0;
  opacity: 0;
  transition: padding 0.25s, opacity 0.25s;
}
.p-accordion__body > *:last-child {
  margin-bottom: 0;
}

.p-accordion__txt {
  margin-bottom: 8vw;
}

.is-accordion-active {
  border-bottom: none;
}
.is-accordion-active::after {
  content: none;
}

.is-accordion-open {
  height: auto;
  padding: 6.6666666667vw;
  line-height: normal;
  opacity: 1;
}

/* ========================================
  Banner
======================================== */
.p-bnr__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.p-bnr__list-col2 {
  margin-bottom: -2rem;
}
.p-bnr__list-col2 .p-bnr__list-item {
  width: 100%;
  margin-right: 0;
  margin-bottom: 2rem;
}

.p-bnr__list-col3 {
  margin-bottom: -2rem;
}
.p-bnr__list-col3 .p-bnr__list-item {
  width: 100%;
  margin-right: 0;
  margin-bottom: 2rem;
}

.p-bnr__list-col4 {
  margin-bottom: -2rem;
}
.p-bnr__list-col4 .p-bnr__list-item {
  width: 100%;
  margin-right: 0;
  margin-bottom: 2rem;
}

.p-bnr__list-item img {
  width: 100%;
}

.p-bnr__list-link {
  opacity: 0.8;
}

/* ========================================
  Bread crumb
======================================== */
.p-bread-crumb {
  display: flex;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  list-style: none;
}

.p-bread-crumb__item {
  font-size: 1.2rem;
}
.p-bread-crumb__item:not(:first-child)::before {
  content: "＞";
  display: inline-block;
  padding: 0 1rem;
  color: #aaa;
}

.p-bread-crumb__link {
  color: #aaa;
}

/* ========================================
  Card
======================================== */
.p-card-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.p-card__col2 {
  margin-bottom: -2rem;
}
.p-card__col2 .p-card {
  width: 100%;
  margin-right: 0;
  margin-bottom: 2rem;
}

.p-card__col3 {
  margin-bottom: -2rem;
}
.p-card__col3 .p-card {
  width: 100%;
  margin-right: 0;
  margin-bottom: 2rem;
}

.p-card {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.p-card__img-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}
.p-card__img-wrapper img {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.p-card__body {
  padding: 1.5rem;
}
.p-card__body > *:last-child {
  margin-bottom: 0;
}

.p-card__ttl {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  font-weight: bold;
}

.p-card__txt {
  color: #000;
}

/* ========================================
  Table
======================================== */
.p-horizontal-table {
  border: 1px solid #ddd;
}
.p-horizontal-table table {
  width: 100%;
}
.p-horizontal-table th {
  vertical-align: middle;
  width: 20%;
  padding: 1.5rem;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  background-color: #ccc;
  color: #fff;
}
.p-horizontal-table td {
  padding: 1.5rem;
  border-bottom: 1px solid #ddd;
}
.p-horizontal-table tr:last-child th,
.p-horizontal-table tr:last-child td {
  border-bottom-width: 0;
}

.p-horizontal-table--scrollX {
  overflow-x: auto;
  border-right-width: 0;
}
.p-horizontal-table--scrollX td,
.p-horizontal-table--scrollX th {
  white-space: nowrap;
}
.p-horizontal-table--scrollX td {
  border-right: 1px solid #ddd;
}

.p-vert-table {
  overflow-x: auto;
  border: 1px solid #ddd;
  border-right-width: 0;
}
.p-vert-table table {
  width: auto;
  min-width: 100%;
  text-align: center;
  table-layout: fixed;
}
.p-vert-table thead tr {
  background-color: #ccc;
  color: #fff;
}
.p-vert-table th {
  vertical-align: middle;
  padding: 1.5rem;
  font-weight: bold;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.p-vert-table td {
  vertical-align: middle;
  padding: 1.5rem;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.p-vert-table th,
.p-vert-table td {
  white-space: nowrap;
}
.p-vert-table td:last-child,
.p-vert-table th:last-child {
  border-right-width: 1px;
}
.p-vert-table tbody tr:last-child td {
  border-bottom-width: 0;
}

.p-cross-table {
  overflow-x: auto;
  border: 1px solid #ddd;
  border-right-width: 0;
}
.p-cross-table table {
  width: auto;
  min-width: 100%;
  text-align: center;
  table-layout: fixed;
}
.p-cross-table th {
  vertical-align: middle;
  padding: 1.5rem;
  font-weight: bold;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #ccc;
  color: #fff;
}
.p-cross-table td {
  vertical-align: middle;
  padding: 1.5rem;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.p-cross-table th,
.p-cross-table td {
  white-space: nowrap;
}
.p-cross-table td:last-child,
.p-cross-table th:last-child {
  border-right-width: 1px;
}
.p-cross-table tbody tr:last-child td {
  border-bottom-width: 0;
}
.p-cross-table .p-cross-table--sticky {
  position: sticky;
  left: 0;
}

/* ========================================
  Top トップページ用のスタイル
======================================== */
.splide__sr {
  display: none !important;
}

.p-top {
  background-color: #F7F9F8;
}

.p-top__heading {
  font-size: 4.8rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
}

.p-top-mv {
  width: 100%;
  background-color: #f7f9f8;
}

@keyframes loading {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.p-top-mv__pc {
  display: none;
  position: relative;
}

.p-top-mv__sp {
  display: block;
  position: relative;
}

.p-top-mv__slide-mask {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.p-top-mv__inner {
  height: 100%;
}
.p-top-mv__inner .splide,
.p-top-mv__inner .splide__track,
.p-top-mv__inner .splide__list {
  height: 100%;
}

.p-top-mv__list {
  display: flex;
}

.p-top-mv__slide {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.p-top-mv__textBlock {
  display: inline-flex;
  flex-direction: column;
  position: absolute;
  top: 120vw;
  left: 16px;
}

.p-top-mv__text-tag span {
  font-size: 1.2rem;
  color: var(--custom-tag-color);
  font-weight: bold;
  display: inline-block;
  padding: 7px 8px;
  line-height: 1;
  position: relative;
  letter-spacing: 0.05em;
  z-index: 1;
}
.p-top-mv__text-tag span::before {
  content: "";
  width: 0%;
  height: 100%;
  transition: none;
  background: var(--custom-tag-bg-color);
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  transform: translateY(-50%);
}

.p-top-mv__text-description-wrap {
  display: flex;
  flex-direction: column;
  margin-top: 11px;
}
.p-top-mv__text-description-wrap span {
  display: inline-block;
  padding: 2px 20px 3px 10px;
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  color: var(--custom-description-color);
  z-index: 1;
  letter-spacing: 0.05em;
}
.p-top-mv__text-description-wrap span::before {
  content: "";
  width: 0%;
  height: 100%;
  transition: none;
  background: var(--custom-description--bg-color);
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  transform: translateY(-50%);
}

.p-top-mv__slide.is-active .p-top-mv__text-description-wrap span::before {
  width: 100%;
  transition: width cubic-bezier(0.15, 0.84, 0.44, 1) 0.7s 0.9s;
}

.p-top-mv__slide.is-active .p-top-mv__text-tag span::before {
  width: 100%;
  transition: width cubic-bezier(0.15, 0.84, 0.44, 1) 0.7s 0.4s;
}

.p-top-mv__text-description + .p-top-mv__text-description {
  margin-top: 10px;
}

.p-top-hotTag {
  padding-top: 58px;
  overflow: hidden;
  background-color: #fff;
}
.p-top-hotTag__inner .p-top__heading {
  padding: 0 16px;
}

.p-top-hotTag__splide {
  margin-top: 30px;
  padding-bottom: 30px;
}

.p-top-hotTag__tagBlockList {
  display: flex;
  margin-top: 42px;
  height: 255px;
}

.p-top-hotTag__tagBlockItem {
  flex-shrink: 0;
  position: relative;
  height: 100%;
}

.p-top-hotTag__tagBlockItem-inner + .p-top-hotTag__tagBlockItem-inner {
  margin-top: 30px;
}
.p-top-hotTag__tagBlockItem-inner + .p-top-hotTag__tagBlockItem-inner .p-top-hotTag__wordWrap + .p-top-hotTag__wordWrap {
  margin-left: -20px;
}

.p-top-hotTag__wordWrap {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
.p-top-hotTag__wordWrap + .p-top-hotTag__wordWrap {
  margin-top: 30px;
  margin-left: -40px;
}

.p-top-hotTag__word {
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0;
}
.p-top-hotTag__word[data-num="1"], .p-top-hotTag__word[data-num="18"], .p-top-hotTag__word[data-num="6"], .p-top-hotTag__word[data-num="14"] {
  position: relative;
  top: -5px;
}
.p-top-hotTag__word[data-num="1"] a, .p-top-hotTag__word[data-num="18"] a, .p-top-hotTag__word[data-num="6"] a, .p-top-hotTag__word[data-num="14"] a {
  color: #E71F18;
  font-size: 3.6rem;
  font-weight: 600;
}
.p-top-hotTag__word[data-num="15"], .p-top-hotTag__word[data-num="20"], .p-top-hotTag__word[data-num="7"], .p-top-hotTag__word[data-num="11"], .p-top-hotTag__word[data-num="4"], .p-top-hotTag__word[data-num="8"] {
  position: relative;
  top: -2px;
}
.p-top-hotTag__word[data-num="15"] a, .p-top-hotTag__word[data-num="20"] a, .p-top-hotTag__word[data-num="7"] a, .p-top-hotTag__word[data-num="11"] a, .p-top-hotTag__word[data-num="4"] a, .p-top-hotTag__word[data-num="8"] a {
  color: #000;
  font-size: 2.4rem;
  font-weight: 600;
}
.p-top-hotTag__word[data-num="5"] a, .p-top-hotTag__word[data-num="10"] a, .p-top-hotTag__word[data-num="3"] a, .p-top-hotTag__word[data-num="12"] a {
  color: #000;
  font-size: 1.6rem;
  font-weight: 600;
}
.p-top-hotTag__word[data-num="13"] a, .p-top-hotTag__word[data-num="2"] a, .p-top-hotTag__word[data-num="16"] a, .p-top-hotTag__word[data-num="19"] a, .p-top-hotTag__word[data-num="9"] a, .p-top-hotTag__word[data-num="17"] a {
  color: #888;
  font-size: 1.6rem;
  font-weight: 600;
}

.p-top-trendTag {
  overflow: hidden;
  padding: 54px 0 60px;
}

.p-top-trendTag__inner {
  display: grid;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, auto);
}

.p-top-trendTag__head {
  grid-area: 1/1/2/2;
  padding-left: 16px;
}

.p-top-trendTag__snap-list {
  grid-area: 2/1/3/2;
}

.p-top-trendTag__detail-list {
  grid-area: 3/1/4/2;
}

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

.p-top-trendTag__snap-list {
  width: 100%;
  height: 106.6666666667vw;
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

.p-top-trendTag__snap-item {
  position: absolute;
  transition: all 0.3s;
  top: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  width: 91.4666666667vw;
  max-width: 360px;
}
.p-top-trendTag__snap-item img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-trendTag__snap-item.active-card {
  transform: translate(0%, -3%);
  z-index: 20;
}
.p-top-trendTag__snap-item.left-side {
  transform: translateX(-11rem) translate(12%, 0) rotate(-5deg) scale(1);
  z-index: 10;
  pointer-events: none;
  opacity: 0.9;
}
.p-top-trendTag__snap-item.left-side img {
  opacity: 0.5;
}
.p-top-trendTag__snap-item.right-side {
  transform: translateX(11rem) translate(-11%, -6%) rotate(10deg) scale(1);
  z-index: 10;
  pointer-events: none;
  opacity: 0.9;
}
.p-top-trendTag__snap-item.right-side img {
  opacity: 0.5;
}
.p-top-trendTag__snap-item.hidden {
  transform: translate(5%, 2%) scale(0.95);
  z-index: 8;
  opacity: 0;
  pointer-events: none;
}

.p-top-trendTag__snap-link {
  display: block;
  background-color: #fff;
  padding: 15px;
}
.p-top-trendTag__snap-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-trendTag__btn-wrap {
  display: none;
}

.p-top-trendTag__detail-list {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.p-top-trendTag__detail-item {
  padding: 0 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  z-index: -1;
  width: 100%;
}
.p-top-trendTag__detail-item.is-active {
  opacity: 1;
  z-index: 1;
}

.p-top-trendTag__detail-link {
  display: grid;
  grid-template-columns: 20.2898550725% 76.8115942029%;
  grid-template-rows: repeat(3, auto);
  max-width: 533px;
}
.p-top-trendTag__detail-link .p-top-trendTag__detail-imgWrap {
  grid-area: 1/1/3/2;
}
.p-top-trendTag__detail-link .p-top-trendTag__detail-name {
  grid-area: 1/2/2/3;
}
.p-top-trendTag__detail-link .p-top-trendTag__textBlock {
  grid-area: 2/2/3/3;
}
.p-top-trendTag__detail-link .p-top-trendTag__tag-list {
  grid-area: 3/1/4/3;
}

.p-top-trendTag__detail-imgWrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
  border: solid 5px #fff;
  flex-shrink: 0;
}
.p-top-trendTag__detail-imgWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-trendTag__detail-name {
  font-size: 1.2rem;
  font-weight: 600;
}
.p-top-trendTag__detail-name span {
  font-weight: normal;
  margin-left: 8px;
}

.p-top-trendTag__detail-subinfo {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
}

.p-top-trendTag__detail-views {
  letter-spacing: 0;
}
.p-top-trendTag__detail-views span {
  margin-left: 5px;
}

.p-top-trendTag__detail-title {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.56;
}

.p-top-trendTag__tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
}

.p-top-trendTag__tag-link {
  position: relative;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: underline;
}
.p-top-trendTag__tag-link span {
  color: #E71F18;
}
.p-top-trendTag__tag-link:hover {
  text-decoration: none;
}

.p-top-trendTag__slide-option-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.p-top-trendTag__slide-btn-prev {
  width: 30px;
  height: 10px;
  background-image: url("../img/share/white_arrow_left.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.p-top-trendTag__slide-btn-next {
  width: 30px;
  height: 10px;
  background-image: url("../img/share/white_arrow_right.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.p-top-trendTag__slide-dots {
  display: flex;
  gap: 16px;
  margin-left: 18.6666666667vw;
  margin-right: 18.6666666667vw;
}
.p-top-trendTag__slide-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  transition: transform 0.3s;
}
.p-top-trendTag__slide-dots .dot.active-dot {
  transform: scale(1.5);
}

.p-top-newArticles {
  margin-top: 60px;
}

.p-top-articleCard__list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 40px;
}

.p-top-category {
  margin-top: 60px;
}

.p-top-category__listWrap {
  background-color: #fff;
  margin-top: 40px;
}

.p-top-category__list {
  display: flex;
  flex-wrap: wrap;
}

.p-top-category__item {
  width: 50%;
  height: 88px;
}
.p-top-category__item:nth-child(2n+1) {
  border-right: solid 1px #efefef;
}
.p-top-category__item:nth-child(n+3) {
  border-top: solid 1px #efefef;
}

.p-top-category__iconWrap {
  max-width: 48px;
  flex-shrink: 0;
  width: 100%;
}
.p-top-category__iconWrap img {
  width: 100%;
  height: auto;
}

.p-top-category__link {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 8px;
  transition: opacity 0.3s;
  padding: 0 16px;
}
.p-top-category__link:hover {
  opacity: 0.7;
}

.p-top-category__txt {
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
}

.p-top-ranking {
  padding: 50px 0 40px;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
  background-color: #fff;
}
.p-top-ranking::before, .p-top-ranking::after {
  content: "";
  background-image: url("../img/share/film_dot.svg");
  width: 100vw;
  height: 14px;
  background-size: contain;
  background-repeat: repeat;
  position: absolute;
  left: 0;
}
.p-top-ranking::before {
  top: 20px;
}
.p-top-ranking::after {
  bottom: 20px;
}

.p-top-ranking__splide {
  margin-top: 40px;
  margin-bottom: 26px;
  position: relative;
}
.p-top-ranking__splide .splide__arrows {
  position: absolute;
  top: 232px;
  left: 0;
  width: 100%;
  z-index: 1;
  display: none;
}
.p-top-ranking__splide .splide__arrow {
  position: absolute;
}
.p-top-ranking__splide .splide__arrow svg {
  display: none;
}
.p-top-ranking__splide .splide__arrow--prev {
  left: -20px;
}
.p-top-ranking__splide .splide__arrow--prev::before {
  content: "";
  width: 74px;
  height: 74px;
  background-image: url("../img/share/arrow_prev.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.p-top-ranking__splide .splide__arrow--next {
  right: 40px;
}
.p-top-ranking__splide .splide__arrow--next::before {
  content: "";
  width: 74px;
  height: 74px;
  background-image: url("../img/share/arrow_next.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.p-top-ranking__list .p-articleCard {
  width: 295px;
}

.p-top-designer {
  padding: 60px 0;
  background-color: #fff;
  margin-top: 60px;
  overflow: hidden;
}

.p-top-designer__listWrap {
  padding-top: 115px;
  margin-top: 10px;
  position: relative;
}

.p-top-designer__list {
  padding-top: 64px;
  will-change: transform;
}

.p-top-designer__item {
  width: 160px;
  text-align: center;
  position: relative;
}
.p-top-designer__item.is-center.is-visible:not(.splide__slide--clone) .p-top-designer__comment {
  transition: opacity 0.3s, transform 0.3s;
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.p-top-designer__imgWrap {
  width: 160px;
  height: 200px;
  border-radius: 120%;
  overflow: hidden;
  margin: 0 auto;
}
.p-top-designer__imgWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-designer__name {
  font-size: 1.7rem;
  font-weight: bold;
  margin-top: 28px;
}

.p-top-designer__salon {
  font-size: 1.4rem;
  margin-top: 4px;
}

.p-top-designer__comment {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--comment-bg-color);
  border-radius: 5px;
  padding: 15px 12px;
  text-align: center;
  width: 230px;
  opacity: 0;
  transition: all 0s;
  will-change: opacity, transform;
}
.p-top-designer__comment::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 32px 13px 0 13px;
  border-color: var(--comment-bg-color) transparent transparent transparent;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
}
.p-top-designer__comment p {
  font-weight: bold;
  font-size: 1.4rem;
  font-family: "Roboto", sans-serif;
  color: #fff;
}

/* ========================================
  BottomNavBar
======================================== */
.p-bottomNavBar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background-color: #fff;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.1);
}

.p-bottomNavBar__inner {
  padding: 9px 30px 8px;
}

.p-bottomNavBar__list {
  display: flex;
  align-items: flex-end;
  gap: 60px;
}

.p-bottomNavBar__item {
  width: calc((100% - 60px) / 3);
  display: flex;
  justify-content: center;
}

.p-bottomNavBar__link,
.p-bottomNavBar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-bottomNavBar__txt {
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #000;
}

.p-bottomNavBar__imgWrap + .p-bottomNavBar__txt {
  margin-top: 2px;
}

.p-bottomNavBar__btn.is-open .p-bottomNavBar__hamburger {
  border-top: none;
}
.p-bottomNavBar__btn.is-open .p-bottomNavBar__hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.p-bottomNavBar__btn.is-open .p-bottomNavBar__hamburger::after {
  transform: rotate(-45deg);
  bottom: 6px;
}
.p-bottomNavBar__btn--search.is-open img {
  display: none;
}
.p-bottomNavBar__btn--search.is-open span.p-bottomNavBar__txt {
  position: relative;
}
.p-bottomNavBar__btn--search.is-open span.p-bottomNavBar__txt::before {
  content: "";
  width: 22px;
  height: 2px;
  background-color: #000;
  position: absolute;
  transform: rotate(45deg);
  top: 0;
  top: -16px;
}
.p-bottomNavBar__btn--search.is-open span.p-bottomNavBar__txt::after {
  content: "";
  width: 22px;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  transform: rotate(-45deg);
  bottom: 28px;
}

.p-bottomNavBar__hamburger {
  width: 22px;
  height: 8px;
  border-top: solid 2px #000;
  position: relative;
}
.p-bottomNavBar__hamburger::before {
  transition: all 0.3s ease-in-out;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: -8px;
}
.p-bottomNavBar__hamburger::after {
  transition: all 0.3s ease-in-out;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  bottom: 0;
}
.p-bottomNavBar__hamburger + .p-bottomNavBar__txt {
  margin-top: 8px;
}

/* ========================================
  ArticleCard
======================================== */
.p-articleCard {
  box-shadow: 0px 5px 24px 0px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s;
  background-color: #fff;
  position: relative;
}
.p-articleCard.is-on {
  opacity: 1;
  transform: translateY(0);
}
.p-top-ranking__list .p-articleCard {
  opacity: 1;
  transform: translateY(0);
  box-shadow: none;
}

.p-articleCard__inner {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 8px 16px 10px;
  height: 100%;
  transition: opacity 0.3s;
}
.p-top-ranking__list .p-articleCard__inner {
  padding: 0;
}
.p-articleCard__inner:hover {
  opacity: 0.7;
}

.p-articleCard__detail-date {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.07em;
}
.p-top-ranking__list .p-articleCard__detail-date {
  position: absolute;
  top: 14px;
  left: 64px;
  z-index: 10;
  letter-spacing: 0.05em;
}

.p-articleCard__imgWrap {
  margin-top: 8px;
}
.p-articleCard__imgWrap img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-randomArticle__item .p-articleCard__imgWrap img {
  aspect-ratio: initial;
}
.p-top-ranking__list .p-articleCard__imgWrap {
  position: relative;
  margin-top: 0;
}
.p-top-ranking__list .p-articleCard__imgWrap img {
  aspect-ratio: 1/1;
}

.p-articleCard__num {
  width: 68px;
  height: 68px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  padding-top: 7px;
  padding-left: 12px;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: roboto, sans-serif;
  color: #fff;
}
.p-articleCard__num::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #C4C4C4 transparent transparent transparent;
  border-width: 66px 66px 0px 0px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.p-articleCard__num[data-rank="1"]::before {
  border-color: #C7AC4B transparent transparent transparent;
}
.p-articleCard__num[data-rank="2"]::before {
  border-color: #9D8F8F transparent transparent transparent;
}
.p-articleCard__num[data-rank="3"]::before {
  border-color: #CB8F58 transparent transparent transparent;
}

.p-articleCard__detail {
  margin-top: 13px;
  display: flex;
  gap: 12px;
}

.p-articleCard__detail-txtBlock {
  flex: 1 1;
  display: flex;
  flex-direction: column;
}

.p-articleCard__detail-category-thumb {
  flex-shrink: 0;
}

.p-articleCard__detail-imgWrap {
  width: 40px;
  height: 40px;
  background-color: #efefef;
  border-radius: 50%;
  overflow: hidden;
}
.p-articleCard__detail-imgWrap img {
  width: 98%;
  height: 98%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-articleCard__detail-subinfo {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  color: #888;
}

.p-articleCard__detail-views span {
  margin-left: 5px;
}

.p-articleCard__category {
  letter-spacing: 0.15em;
}

.p-articleCard__detail-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 5px;
}
.p-articleCard__detail-title a:before {
  content: "";
  position: absolute;
  inset: 0;
}

.p-articleCard__detail-description {
  font-size: 1.4rem;
  margin-top: 5px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin-top: auto;
}

.p-articleCard__detail-tag-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 10px;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 8px;
  border-top: solid 1px #EFEFEF;
}

.p-articleCard__detail-tag-item {
  font-size: 1.2rem;
  font-weight: 600;
}
.p-articleCard__detail-tag-item span {
  color: #E71F18;
}
.p-articleCard__detail-tag-item a {
  position: relative;
  text-decoration: underline;
}
.p-articleCard__detail-tag-item a:hover {
  text-decoration: none;
}

.p-articleCard__inner.no-opacity:hover {
  opacity: 1 !important;
}

.p-articleCard__category-link {
  position: relative;
  z-index: 1;
}

.p-articleCard__detail-cateogry-thumb {
  position: relative;
  z-index: 1;
}

.p-detail {
  background-color: #fff;
}
.p-detail main {
  transition: background-color 0.3s ease;
  will-change: background-color;
}

.p-detail__head {
  padding: 0;
}

.p-detail__head-inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column-reverse;
}

.p-detail__head-views span {
  margin-left: 6px;
}

.p-detail__head-textBlock {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 20px 20px;
}

.p-detail__head-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.33;
}

.p-detail__head-subinfo {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  margin-top: 16px;
}

.p-detail__tag-list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 8px;
  margin-top: 12px;
}

.p-detail__tag-link {
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: underline;
}
.p-detail__tag-link span {
  color: #E71F18;
}
.p-detail__tag-link:hover {
  text-decoration: none;
}
.p-detail__head-imgBlock img {
  width: 100%;
  height: auto;
}

.p-detail__contents {
  padding-top: 54px;
  padding-bottom: 100px;
  overflow: hidden;
}
.p-detail__contents * {
  box-sizing: border-box;
}
.p-detail__contents p {
  font-size: 1.4rem;
  line-height: 1.56;
  letter-spacing: 0.14em;
}
.p-detail__contents p:not([class]) {
  margin-bottom: 40px;
}
.p-detail__contents h2.wp-block-heading {
  padding: 6px 10px;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: white;
  background: linear-gradient(to right, #CD4247, #CD4247);
  background-repeat: no-repeat;
  line-height: 1.5; /* 行間隔を調整 */
  white-space: pre-wrap; /* 複数行にまたがるテキストのための設定
*/
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  position: relative;
  padding-left: 53px;
}
.p-detail__contents h2.wp-block-heading::before {
  content: "";
  width: 53px;
  height: 48px;
  background-image: url("../img/share/h2_sharp.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: -5px;
}
.p-detail__contents h2.wp-block-heading.is-fadeIn {
  animation: slideTextBackground 1s forwards;
}
.p-detail__contents h2.wp-block-heading + * {
  margin-top: 40px;
}
.p-detail__contents h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 7px;
  letter-spacing: 0.05em;
}
.p-detail__contents h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 7px;
  letter-spacing: 0.05em;
}
.p-detail__contents ul:not([class]) li:not([class]) {
  padding-left: 1.3em;
  position: relative;
  font-size: 1.4rem;
  letter-spacing: 0.14em;
}
.p-detail__contents ul:not([class]) li:not([class])::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.p-detail__contents ul:not([class]) {
  margin-bottom: 40px;
}
.p-detail__contents ul:not([class]) a {
  text-decoration: underline;
  transition: opacity 0.3s;
}
.p-detail__contents ul:not([class]) a:hover {
  opacity: 0.7;
}
.p-detail__contents li:not([class]) + li {
  margin-top: 3px;
}
.p-detail__contents a {
  text-decoration: underline;
  transition: opacity 0.3s;
}
.p-detail__contents a:hover {
  opacity: 0.7;
}
.p-detail__contents .p-detail__contents-lead {
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.p-detail__contents .p-detail__contents-lead + .p-detail__interviewee {
  margin-top: 40px;
}
.p-detail__contents .p-detail__interviewee {
  text-align: center;
  margin-bottom: 80px;
}
.p-detail__contents .p-detail__interviewee a {
  text-decoration: none;
}
.p-detail__contents .p-detail__interviewee-txt {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.p-detail__contents .p-detail__interviewee-imgWrap {
  width: 104px;
  height: 104px;
  overflow: hidden;
  border-radius: 50%;
  margin: 20px auto 0;
}
.p-detail__contents .p-detail__interviewee-imgWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-detail__contents .p-detail__interviewee-salon,
.p-detail__contents .p-detail-parts__qa-person-salon {
  font-size: 1.4rem;
  margin-top: 8px;
}
.p-detail__contents .p-detail__interviewee-name,
.p-detail__contents .p-detail-parts__qa-person-name {
  font-size: 1.6rem;
  font-weight: 700;
}
.p-detail__contents .p-detail__interviewee-name span,
.p-detail__contents .p-detail-parts__qa-person-name span {
  font-size: 1.2rem;
  margin-left: 6px;
}
.p-detail__contents .p-detail-parts__qa-person-name {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.p-detail__contents .p-detail__tableOfContents {
  margin-top: 48px;
  margin-bottom: 76px;
  background-color: #F7F9F8;
  padding: 26px 20px;
}
.p-detail__contents .p-detail__tableOfContents-heading {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: roboto, sans-serif;
  position: relative;
  padding-left: 15px;
}
.p-detail__contents .p-detail__tableOfContents-heading::before {
  content: "";
  width: 10px;
  height: 8px;
  background-image: url("../img/share/three_line.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.p-detail__contents .p-detail__tableOfContents-list {
  margin-top: 19px;
  letter-spacing: 0.1em;
}
.p-detail__contents .p-detail__tableOfContents-list a {
  transition: oiacity 0.3s;
}
.p-detail__contents .p-detail__tableOfContents-list a:hover {
  opacity: 0.7;
}
.p-detail__contents .p-detail__tableOfContents-item,
.p-detail__contents .p-detail__tableOfContents-subItem {
  font-size: 1.4rem;
  text-decoration: underline;
  font-weight: 700;
}
.p-detail__contents .p-detail__tableOfContents-item + .p-detail__contents .p-detail__tableOfContents-item,
.p-detail__contents .p-detail__tableOfContents-item + .p-detail__contents .p-detail__tableOfContents-subItem,
.p-detail__contents .p-detail__tableOfContents-subItem + .p-detail__contents .p-detail__tableOfContents-item,
.p-detail__contents .p-detail__tableOfContents-subItem + .p-detail__contents .p-detail__tableOfContents-subItem {
  margin-top: 18px;
}
.p-detail__contents .p-detail__tableOfContents-subList {
  margin-top: 14px;
}
.p-detail__contents .p-detail__tableOfContents-subItem {
  font-weight: normal;
  text-indent: 1em;
  padding-left: 1em;
  position: relative;
}
.p-detail__contents .p-detail__tableOfContents-subItem::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.p-detail__contents .p-detail__tableOfContents-subItem + .p-detail__contents .p-detail__tableOfContents-subItem {
  margin-top: 2px;
}
.p-detail__contents .p-detail-parts__faq {
  max-width: 560px;
  margin: 0 auto;
}
.p-detail__contents .p-detail-parts__qa {
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}
.p-detail__contents .p-detail-parts__qa-question {
  padding: 18px 12px;
  border: solid 1px #ccc;
  background-color: #fff;
  border-radius: 5px;
  position: relative;
  text-align: center;
}
.p-detail__contents .p-detail-parts__qa-question a {
  text-decoration: underline;
  transition: opacity 0.3s;
}
.p-detail__contents .p-detail-parts__qa-question a:hover {
  opacity: 0.7;
}
.p-detail__contents .p-detail-parts__qa-question-letter {
  position: absolute;
  width: 32px;
  height: 32px;
  background-color: #F7F9F8;
  border-radius: 5px;
  font-size: 2rem;
  font-weight: 700;
  font-family: roboto, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  left: -5px;
  top: -17px;
}
.p-detail__contents .p-detail-parts__qa-question-txt {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.33;
}
.p-detail__contents .p-detail-parts__qa-answer {
  background-color: #CD4247;
  border-radius: 5px;
  padding: 20px 12px;
  position: relative;
  text-align: center;
  margin-top: 30px;
}
.p-detail__contents .p-detail-parts__qa-answer a {
  text-decoration: underline;
  transition: opacity 0.3s;
  color: #fff;
}
.p-detail__contents .p-detail-parts__qa-answer a:hover {
  opacity: 0.7;
}
.p-detail__contents .p-detail-parts__qa-answer::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 15px 0 15px;
  border-color: #CD4247 transparent transparent transparent;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
}
.p-detail__contents .p-detail-parts__qa-answer-letter {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1px solid #CD4247;
  background-color: #fff;
  color: #E71F18;
  border-radius: 5px;
  font-size: 2rem;
  font-weight: 700;
  font-family: roboto, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  left: -5px;
  top: -17px;
}
.p-detail__contents .p-detail-parts__qa-answer-txt {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.56;
  font-weight: 700;
}
.p-detail__contents .p-detail-parts__qa-person {
  max-width: 104px;
  margin-left: auto;
  margin-right: auto;
  margin: 25px auto 0;
  text-align: center;
}
.p-detail__contents .p-detail-parts__qa-imgWrap {
  width: 104px;
  height: 104px;
  overflow: hidden;
  border-radius: 50%;
}
.p-detail__contents .p-detail-parts__qa-imgWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-detail__contents .p-detail-parts__balloonBlock {
  margin-bottom: 40px;
}
.p-detail__contents .p-detail-parts__balloonBlock .p-detail-parts__balloon {
  margin-bottom: 30px;
}
.p-detail__contents .p-detail-parts__balloon {
  display: flex;
  gap: 17px;
  margin-bottom: 40px;
}
.p-detail__contents .p-detail-parts__balloon .p-detail-parts__balloon-textBox {
  position: relative;
}
.p-detail__contents .p-detail-parts__balloon .p-detail-parts__balloon-textBox a {
  text-decoration: underline;
  transition: opacity 0.3s;
}
.p-detail__contents .p-detail-parts__balloon .p-detail-parts__balloon-textBox a:hover {
  opacity: 0.7;
}
.p-detail__contents .p-detail-parts__balloon .p-detail-parts__balloon-textBox::before {
  content: "";
  width: 15px;
  height: 14px;
  background-image: url("../img/share/balloon_arrow.png");
  transform: rotate(180deg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 15px;
  left: -15px;
}
.p-detail__contents .p-detail-parts__balloon.is-reverse {
  flex-direction: row-reverse;
}
.p-detail__contents .p-detail-parts__balloon.is-reverse .p-detail-parts__balloon-textBox {
  position: relative;
}
.p-detail__contents .p-detail-parts__balloon.is-reverse .p-detail-parts__balloon-textBox::before {
  content: "";
  width: 15px;
  height: 14px;
  background-image: url("../img/share/balloon_arrow.png");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  transform: none;
  top: 15px;
  right: -15px;
  left: auto;
}
.p-detail__contents .p-detail-parts__balloon-imgWrap {
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto;
}
.p-detail__contents .p-detail-parts__balloon-imgWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-detail__contents .p-detail-parts__balloon-person {
  max-width: 58px;
  width: 100%;
}
.p-detail__contents .p-detail-parts__balloon-person-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 6px;
  text-align: center;
}
.p-detail__contents .p-detail-parts__balloon-textBox {
  padding: 16px;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #ccc;
  flex: 1 1;
  letter-spacing: 0.1em;
}
.p-detail__contents .p-detail-parts__balloon-txt--large {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
.p-detail__contents .p-detail-parts__balloon-txt {
  font-size: 1.4rem;
  margin-top: 7px;
}
.p-detail__contents .p-detail-parts__textBox {
  padding: 15px 17px;
  border: solid 1px #000;
  background-color: #fff;
  margin-bottom: 40px;
}
.p-detail__contents .p-detail-parts__textBox a {
  text-decoration: underline;
  transition: opacity 0.3s;
}
.p-detail__contents .p-detail-parts__textBox a:hover {
  opacity: 0.7;
}
.p-detail__contents .p-detail-parts__textBox-txt {
  font-size: 1.4rem;
  line-height: 1.375;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.p-detail__contents .wp-block-quote {
  padding: 16px 20px;
  background-color: #fff;
  border: solid 1px #D9D9D9;
  margin-bottom: 60px;
  position: relative;
}
.p-detail__contents .wp-block-quote::before {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url("../img/share/quote_left.svg");
  background-color: #fff;
  background-size: 70%;
  background-repeat: no-repeat;
  position: absolute;
  left: -3px;
  top: -10px;
}
.p-detail__contents .wp-block-quote::after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url("../img/share/quote_right.svg");
  background-color: #fff;
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: right;
  position: absolute;
  right: -3px;
  bottom: -12px;
}
.p-detail__contents .wp-block-quote p:not([class]) {
  font-size: 1.4rem;
  line-height: 1.375;
  margin-bottom: 0;
}
.p-detail__contents .wp-block-quote cite {
  display: inline-block;
  font-size: 1.4rem;
  margin-top: 5px;
}
.p-detail__contents .p-detail-parts__pointBox {
  padding: 22px 18px;
  border: 1px solid #E71F18;
  position: relative;
  background-color: #fff;
  margin-bottom: 40px;
}
.p-detail__contents .p-detail-parts__pointBox a {
  text-decoration: underline;
  transition: opacity 0.3s;
}
.p-detail__contents .p-detail-parts__pointBox a:hover {
  opacity: 0.7;
}
.p-detail__contents .p-detail-parts__point {
  position: absolute;
  padding: 10px 10px 10px 20px;
  background-color: #fff;
  font-size: 1.4rem;
  font-family: roboto, sans-serif;
  color: #E71F18;
  font-weight: 700;
  position: absolute;
  line-height: 1;
  top: -15px;
  left: 13px;
  letter-spacing: 0.1em;
}
.p-detail__contents .p-detail-parts__point::before {
  content: "";
  width: 5px;
  height: 7px;
  border-right: solid 2px #E71F18;
  border-bottom: solid 2px #E71F18;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  left: 5px;
  top: 43%;
}
.p-detail__contents .p-detail-parts__pointBox-txt {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.14em;
}
.p-detail__contents .p-detail-parts__product-link {
  display: flex;
  align-items: center;
  background-color: #F7F9F8;
  padding: 23px 18px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  gap: 16px;
  position: relative;
  margin-bottom: 60px;
  transition: opacity 0.3s;
  text-decoration: none !important;
}
.p-detail__contents .p-detail-parts__product-link::after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 22px;
  height: 6px;
  background-image: url("../img/share/arrow_right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: right 0.5s;
}
.p-detail__contents .p-detail-parts__product-link:hover {
  opacity: 0.8;
}
.p-detail__contents .p-detail-parts__product-link:hover::after {
  right: 14px;
}
.p-detail__contents .p-detail-parts__product-imgWrap {
  flex-shrink: 0;
}
.p-detail__contents .p-detail-parts__product-name {
  font-size: 1.4rem;
  font-weight: 700;
}
.p-detail__contents .p-detail-parts__product-hashtag {
  font-size: 1.2rem;
  margin-top: 6px;
}
.p-detail__contents .p-detail-parts__relatedPost--solo {
  margin-bottom: 60px;
}
.p-detail__contents .p-detail-parts__relatedPost {
  margin-bottom: 60px;
}
.p-detail__contents .p-detail-parts__relatedPost-heading {
  font-size: 1.4rem;
  font-weight: 700;
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 10px;
}
.p-detail__contents .p-detail-parts__relatedPost-heading::before {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url("../img/share/icon_related.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.p-detail__contents .p-detail-parts__relatedPost-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.p-detail__contents .p-detail-parts__relatedPost-item {
  max-width: 450px;
  width: 100%;
  background-color: #F7F9F8;
  letter-spacing: 0.08em;
}
.p-detail__contents .p-detail-parts__relatedPost-item a {
  text-decoration: none;
}
.p-detail__contents .p-detail-parts__relatedPost-item--external {
  max-width: 450px;
  width: 100%;
  background-color: #fff;
  border: solid 1px #ccc;
}
.p-detail__contents .p-detail-parts__relatedPost-item--external a {
  text-decoration: none;
}
.p-detail__contents .p-detail-parts__relatedPost-item--external .p-detail-parts__relatedPost-link {
  padding: 20px 20px 30px;
}
.p-detail__contents .p-detail-parts__relatedPost-item--external .p-detail-parts__relatedPost-link::after {
  display: none;
}
.p-detail__contents .p-detail-parts__relatedPost-link {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
  position: relative;
  transition: opacity 0.3s;
}
.p-detail__contents .p-detail-parts__relatedPost-link::after {
  content: "";
  position: absolute;
  bottom: 16px;
  right: 20px;
  width: 22px;
  height: 6px;
  background-image: url("../img/share/arrow_right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: right 0.5s;
}
.p-detail__contents .p-detail-parts__relatedPost-link:hover {
  opacity: 0.8;
}
.p-detail__contents .p-detail-parts__relatedPost-link:hover::after {
  right: 14px;
}
.p-detail__contents .p-detail-parts__relatedPost-imgWrap {
  flex-shrink: 0;
  width: 80px;
  min-height: 80px;
  align-items: center;
  display: inline-flex;
}
.p-detail__contents .p-detail-parts__relatedPost-imgWrap img {
  width: 100%;
  height: auto;
}
.p-detail__contents .p-detail-parts__relatedPost-txt-wrap span {
  display: flex;
  justify-content: flex-end;
  color: #E71F18;
  font-size: 1.2rem;
  padding-right: 2.5em;
  font-weight: 500;
  position: absolute;
  letter-spacing: 0.08em;
  bottom: 15px;
  right: 22px;
}
.p-detail__contents .p-detail-parts__relatedPost-txt-wrap span::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../img/share/icon_external_link.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.p-detail__contents .p-detail-parts__relatedPost-txt {
  font-size: 1.4rem;
  line-height: 1.56;
  letter-spacing: 0.08em;
}
.p-detail__contents .p-detail-parts__imgContainer {
  max-width: 537px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.7s;
}
.p-detail__contents .p-detail-parts__imgContainer img {
  width: 100%;
  height: auto;
}
.p-detail__contents .p-detail-parts__imgContainer--sm {
  max-width: 395px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.7s;
}
.p-detail__contents .p-detail-parts__imgContainer--sm img {
  width: 100%;
  height: auto;
}
.p-detail__contents .p-detail-parts__imgContainer--sm.is-fadeIn {
  opacity: 1;
  transform: translateY(0);
}
.p-detail__contents .p-detail-parts__imgContainer.is-fadeIn {
  opacity: 1;
  transform: translateY(0);
}
.p-detail__contents .wp-block-image {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.7s;
}
.p-detail__contents .wp-block-image.is-fadeIn {
  opacity: 1;
  transform: translateY(0);
}
.p-detail__contents .p-detail-parts__editor-commentBox {
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 22px 20px 20px;
  margin-bottom: 60px;
}
.p-detail__contents .p-detail-parts__editor-commentBox a {
  text-decoration: underline;
  transition: opacity 0.3s;
}
.p-detail__contents .p-detail-parts__editor-commentBox a:hover {
  opacity: 0.7;
}
.p-detail__contents .p-detail-parts__editor-commentBox-heading {
  font-size: 1.6rem;
  font-weight: 600;
}
.p-detail__contents .p-detail-parts__editor-commentBox-txt {
  font-size: 1.4rem;
  line-height: 1.56;
  margin-top: 20px;
}
.p-detail__contents .p-detail-parts__editor-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 23px;
}
.p-detail__contents .p-detail-parts__editor-imgWrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.p-detail__contents .p-detail-parts__editor-job {
  font-size: 1.2rem;
}
.p-detail__contents .p-detail-parts__editor-name {
  display: flex;
  align-items: baseline;
}
.p-detail__contents .p-detail-parts__editor-name p {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0 !important;
}
.p-detail__contents .p-detail-parts__editor-name span {
  font-size: 1.2rem;
  font-weight: 400;
  margin-left: 4px;
}
.p-detail__contents .p-detail-parts__indicator {
  padding: 20px;
  background-color: #fff;
  max-width: 450px;
  width: 100%;
  margin: 0 auto 40px;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-detail__contents .p-detail-parts__indicator-item {
  display: flex;
  align-items: center;
}
.p-detail__contents .p-detail-parts__indicator-item dt {
  font-size: 1.4rem;
  font-weight: 700;
  width: 76px;
}
.p-detail__contents .p-detail-parts__indicator-item dd {
  width: 80px;
  display: flex;
  align-items: center;
}
.p-detail__contents .p-detail-parts__indicator-item dd img {
  width: 100%;
  height: auto;
}
.p-detail__contents .p-detail-parts__indicator-item dd svg {
  width: 100%;
}
.p-detail__contents .p-detail__sns {
  margin-top: 60px;
}
.p-detail__contents .p-detail__sns-txt {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
}
.p-detail__contents .p-detail__sns-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}
.p-detail__contents .p-detail__sns-item {
  width: 40px;
  transition: 0.3s;
  position: relative;
}
.p-detail__contents .p-detail__sns-copy-modal {
  font-size: 1.2rem;
  position: absolute;
  top: -3em;
  left: 50%;
  transform: translate(-50%, 5px);
  white-space: nowrap;
  background-color: #1D9BF0;
  padding: 2px 4px;
  color: #fff;
  font-weight: 500;
  border-radius: 2px;
  opacity: 0;
  transition: all 0.3s;
}
.p-detail__contents .p-detail__sns-copy-modal.is-done {
  opacity: 1;
  transform: translate(-50%, 0);
  transition: all 0.3s;
}
.p-detail__contents .p-detail__sns-copy-modal::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 8px solid #1D9BF0;
  border-bottom: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
}
.p-detail__contents .p-detail__hashtag-list {
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 8px;
  flex-wrap: wrap;
  margin-top: 57px;
}
.p-detail__contents .p-detail__hashtag-link {
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: underline;
}
.p-detail__contents .p-detail__hashtag-link span {
  color: #E71F18;
  text-decoration: underline;
}
.p-detail__contents .p-detail__hashtag-link:hover {
  text-decoration: none;
}
.p-detail__contents .p-detail__hashtag-link:hover span {
  text-decoration: none;
}
.p-detail__contents .p-detail-parts__img-slider-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  margin-bottom: 80px;
  padding: 0 20px;
  padding-bottom: 60px;
}
.p-detail__contents .p-detail-parts__img-slider-wrap .splide__arrows {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  max-width: 537px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.p-detail__contents .p-detail-parts__img-slider-wrap .splide__arrows svg {
  display: none;
}
.p-detail__contents .p-detail-parts__img-slider-wrap .splide__arrows .splide__arrow--next {
  background-image: url("../img/share/black_arrow_right.svg");
  width: 30px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-detail__contents .p-detail-parts__img-slider-wrap .splide__arrows .splide__arrow--prev {
  background-image: url("../img/share/black_arrow_left.svg");
  width: 30px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-detail__contents .p-detail-parts__img-slider-wrap .splide__pagination__page {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #CCC;
}
.p-detail__contents .p-detail-parts__img-slider-wrap .splide__pagination__page.is-active {
  transform: scale(1.75);
  background-color: #CD4247;
}
.p-detail__contents .p-detail-parts__img-slider-wrap .splide__pagination {
  gap: 16px;
  margin-top: 60px;
}
.p-detail__contents .p-detail-parts__img-slider-wrap .splide__pagination li + li {
  margin-top: 0 !important;
}
.p-detail__contents .p-detail-parts__img-slider-wrap .splide:not(.is-overflow) .splide__pagination {
  display: flex;
}
.p-detail__contents .p-detail-parts__img-slider-item {
  width: 100%;
}
.p-detail__contents .p-detail-parts__img-slider-item img {
  width: 100%;
  height: auto;
  transform: scale(0.8);
  transition: transform 0.3s;
}
.p-detail__contents .p-detail-parts__img-slider-item.is-active .p-detail-parts__img-slider-txt {
  visibility: visible;
}
.p-detail__contents .p-detail-parts__img-slider-item.is-active img {
  transform: scale(1);
}
.p-detail__contents .p-detail-parts__img-slider-imgWrap img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
.p-detail__contents .p-detail-parts__img-slider-txt {
  visibility: hidden;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.57;
  margin-top: 30px;
}

@keyframes slideTextBackground {
  from {
    background-size: 0 100%;
  }
  to {
    background-size: 100% 100%;
  }
}
.p-detail__contents-inner {
  max-width: 920px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ========================================
  一覧用のスタイル
======================================== */
.p-list {
  background-color: #F7F9F8;
}

.p-list-articleCard__listWrap {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 0;
}

.p-list-articleCard__list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 40px;
}

.p-list__heading {
  font-size: 4.8rem;
  font-weight: bold;
  font-family: roboto, sans-serif;
  letter-spacing: 0.05em;
}

.p-list__head {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 16px 43px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-list__head-txt {
  font-size: 1.8rem;
  font-weight: 700;
}

.p-list__featuredArticle {
  padding: 20px 16px;
  position: relative;
}

.p-list__featuredArticle-inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column-reverse;
  display: flex;
  gap: 16px;
}

.p-list__featuredArticle-textBlock {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p-list__featuredArticle-title {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.33;
  margin-top: 5px;
}
.p-list__featuredArticle-title a:before {
  content: "";
  position: absolute;
  inset: 0;
}

.p-list__featuredArticle-subinfo {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  color: #fff;
  width: 99%;
}

.p-list__featuredArticle-views span {
  margin-left: 5px;
}

.p-list__tag-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 11px;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 8px;
}

.p-list__tag-link {
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: underline;
  position: relative;
}
.p-list__tag-link span {
  color: #E71F18;
}
.p-list__tag-link:hover {
  text-decoration: none;
}

.p-list__featuredArticle-description {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.67;
  margin-top: 4px;
}
.p-list__featuredArticle-imgBlock img {
  width: 100%;
  height: auto;
}

.p-list__btn-wrap {
  text-align: center;
}

.p-list__featuredArticle, .p-list-articleCard__listWrap {
  /* 既存のスタイル */
  transition: all 0.4s ease; /* アニメーションのための遷移設定 */
}

/* JavaScriptで制御される非表示状態 */
.p-list__featuredArticle.is-hidden, .p-list-articleCard__listWrap.is-hidden {
  opacity: 0; /* 完全に透明に */
  height: 0; /* 高さを0に */
  margin-top: 0; /* マージンを0に */
  padding-top: 0; /* パディングを0に */
  padding-bottom: 0; /* パディングを0に */
  overflow: hidden; /* 内容がはみ出さないようにする */
  transition: all 0.4s ease; /* アニメーションのための遷移設定 */
}

.p-list-recommendTag {
  background-color: #fff;
  padding: 55px 0 0;
  margin-top: 60px;
}
.p-list-recommendTag + .p-top-designer {
  margin-top: 0;
}

.p-list-recommendTag-inner {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
}

.p-list-recommendTag-heading {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.p-list__no-result-txt {
  font-size: 1.6rem;
  text-align: center;
}

.p-randomArticle {
  padding: 60px 0;
  background-color: #F7F9F8;
}

.p-randomArticle__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-randomArticle__list2 {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-randomArticle__list {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.p-randomArticle__item {
  background-color: #fff;
  transition: all 0.4s ease;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 24px 0px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s;
}
.p-randomArticle__item.is-hidden {
  opacity: 0; /* 完全に透明に */
  height: 0; /* 高さを0に */
  margin-top: 0; /* マージンを0に */
  padding-top: 0; /* パディングを0に */
  padding-bottom: 0; /* パディングを0に */
  overflow: hidden; /* 内容がはみ出さないようにする */
  transition: all 0.4s ease;
}
.p-randomArticle__item.is-on {
  opacity: 1;
  transform: translateY(0);
}

.p-randomArticle__txt {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 12px;
  height: 40px;
  overflow: hidden;
}

/* 1つ目のパターン：左側のカラムを2行分占める */
.p-randomArticle__item:nth-child(4n+1) {
  grid-column: 1/2;
  grid-row: span 2;
}

/* 2つ目のパターン：右側のカラムの1行目を占める */
.p-randomArticle__item:nth-child(4n+2) {
  grid-column: 2/3;
  grid-row: span 1;
}

/* 3つ目のパターン：左側のカラムの下に配置 */
.p-randomArticle__item:nth-child(4n+3) {
  grid-column: 1/2;
  grid-row: span 1;
}

/* 4つ目のパターン：右側のカラムの2行目を占める */
.p-randomArticle__item:nth-child(4n+4) {
  grid-column: 2/3;
  grid-row: span 2;
}

.p-randomArticle__link {
  display: flex;
  flex-direction: column;
  padding: 12px;
  background-color: #fff;
  transition: opacity 0.3s;
}
.p-randomArticle__link:hover {
  opacity: 0.7;
}

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

.p-randomArticle__btnWrap {
  text-align: center;
  margin-top: 40px;
}

.p-bottomArea__wrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, auto);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.p-bottomArea__wrap .p-randomArticle {
  grid-area: 1/1/2/2;
}
.p-bottomArea__wrap .p-bottomArea__concept {
  grid-area: 2/1/3/2;
}
.p-bottomArea__wrap footer {
  grid-area: 3/1/4/2;
}

.p-bottomArea__concept {
  background-color: #fff;
}
.p-bottomArea__concept img {
  width: 100%;
  height: auto;
}

.p-float-btn {
  position: fixed;
  z-index: 100;
  right: 13px;
  bottom: 70px;
  display: none;
}
.p-float-btn img {
  width: 100%;
  height: auto;
}
.p-float-btn button {
  width: 54px;
  height: 54px;
}

.p-float-btn--share {
  display: none;
}
.p-detail .p-float-btn--share {
  display: block;
}

.p-drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100%;
  background-color: #fff;
  z-index: 2000;
  transform: translateX(100%);
  overflow-y: auto; /* 垂直方向のスクロールを許可 */
  padding-bottom: 84px;
}
.p-drawer-menu.is-open {
  transform: translateX(0);
}

.p-drawer-menu__inner {
  display: flex;
  flex-direction: column-reverse;
}

.p-drawer-menu__concept {
  margin-top: 20px;
}
.p-drawer-menu__concept img {
  width: 100%;
  height: auto;
}

.p-drawer-search {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100%;
  background-color: #fff;
  z-index: 2000;
  transform: translateX(100%);
  overflow-y: auto; /* 垂直方向のスクロールを許可 */
  padding-bottom: 64px;
}
.p-drawer-search.is-open {
  transform: translateX(0);
}

.p-drawer-search__inner {
  display: flex;
  flex-direction: column;
}

.p-drawer-search__searchBlock {
  background-color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.p-drawer-search__searchBlock .p-recommendTag__listWrap {
  padding: 0 16px;
  margin-top: 40px;
}

.p-drawer-search__title-wrap {
  padding: 0 20px;
  margin-top: 40px;
}

.p-drawer-search__title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 35px;
  padding-left: 20px;
}

.p-drawer-search__title--sm {
  font-size: 2rem;
  font-weight: 600;
}

.p-information__category-list {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
}

.p-information__category-item {
  border-bottom: solid 1px #efefef;
  padding: 20px 10px;
  position: relative;
}

.p-information__category-link {
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0;
  position: relative;
  transition: opacity 0.3s;
}
.p-information__category-link::after {
  content: "";
  width: 21px;
  height: 7px;
  background-image: url("../img/share/arrow_right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.3s;
}
.p-information__category-link:hover {
  opacity: 0.8;
}
.p-information__category-link:hover::after {
  right: 3px;
}

.p-information__category-link-txt {
  font-size: 1.4rem;
  font-weight: bold;
}

.p-information__category-link-imgWrap {
  max-width: 50px;
  width: 100%;
}
.p-information__category-link-imgWrap img {
  width: 100%;
  height: auto;
}

.p-information__lipps-link-list {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
  margin-top: 14px;
}

.p-information__lipps-link-item {
  border-bottom: solid 1px #efefef;
  padding: 20px 10px;
  position: relative;
}

.p-information__lipps-link {
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0;
  transition: opacity 0.3s;
}
.p-information__lipps-link::after {
  content: "";
  width: 21px;
  height: 7px;
  background-image: url("../img/share/arrow_right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.3s;
  display: none;
}
.p-information__lipps-link:hover {
  opacity: 0.8;
}
.p-information__lipps-link:hover::after {
  right: 3px;
}

.p-information__lipps-link-logoWrap {
  width: 50px;
  text-align: center;
}

.p-information__lipps-link-name {
  font-size: 1.2rem;
  font-weight: bold;
}

.p-information__lipps-link-txt {
  font-size: 1.2rem;
  margin-top: 4px;
}

.p-information__external-link-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 28px;
  margin-top: 40px;
}

.p-information__external-link-item {
  flex-shrink: 1;
  text-align: center;
}

.p-information__sns {
  margin-top: 55px;
}

.p-information__sns-txt {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.15em;
}

.p-information__sns-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 18px;
}

.p-information__sns-item,
.p-information__sns-btn {
  width: 40px;
  transition: 0.3s;
}
.p-information__sns-item img,
.p-information__sns-btn img {
  width: 100%;
  height: auto;
}

.p-information__sns-item {
  position: relative;
}

.p-information__copy-modal {
  font-size: 1.2rem;
  position: absolute;
  top: -3em;
  left: 50%;
  transform: translate(-50%, 5px);
  white-space: nowrap;
  background-color: #1D9BF0;
  padding: 2px 4px;
  color: #fff;
  font-weight: 500;
  border-radius: 2px;
  opacity: 0;
  transition: all 0.3s;
}
.p-information__copy-modal.is-done {
  opacity: 1;
  transform: translate(-50%, 0);
  transition: all 0.3s;
}
.p-information__copy-modal::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 8px solid #1D9BF0;
  border-bottom: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
}

.p-recommendTag__listWrap {
  overflow: auto;
  /* WebKit/Blink ブラウザ用 (Chrome, Safariなど) */
  /* IE および Edge ブラウザ用 */
  -ms-overflow-style: none;
  /* Firefox ブラウザ用 */
  scrollbar-width: none;
}
.p-recommendTag__listWrap::-webkit-scrollbar {
  display: none;
}

.p-recommendTag__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  width: 443px;
  padding-bottom: 10px;
}

.p-recommendTag__item a {
  display: inline-block;
  line-height: 1;
  padding: 8px 12px;
  border: solid 1px #ccc;
  border-radius: 100px;
  font-size: 1.4rem;
  transition: opacity 0.3s;
}
.p-recommendTag__item a:hover {
  opacity: 0.7;
}
.p-recommendTag__item a span {
  color: #CD4247;
  margin-right: 3px;
}

.p-category__listWrap {
  background-color: #fff;
  margin-top: 24px;
}

.p-category__list {
  display: flex;
  flex-wrap: wrap;
  border-top: solid 1px #efefef;
  border-bottom: solid 1px #efefef;
}

.p-category__item {
  width: 50%;
  height: 88px;
}
.p-category__item:nth-child(2n+1) {
  border-right: solid 1px #efefef;
}
.p-category__item:nth-child(n+3) {
  border-top: solid 1px #efefef;
}

.p-category__iconWrap {
  max-width: 48px;
  flex-shrink: 0;
  width: 100%;
}
.p-category__iconWrap img {
  width: 100%;
  height: auto;
}

.p-category__link {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 12px;
  transition: opacity 0.3s;
  padding: 0 4.2666666667vw;
}
.p-category__link:hover {
  opacity: 0.7;
}

.p-category__txt {
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
}

.p-search {
  padding: 0 15px;
}
.p-drawer-search__searchBlock .p-search {
  padding-left: 15px;
  margin-bottom: 15px;
}

.p-search__input-wrap {
  position: relative;
  width: 100%;
  display: flex;
}
.p-drawer-menu__contents .p-search__input-wrap {
  margin: 53px auto 46px;
  max-width: 400px;
}
.p-drawer-search__searchBlock .p-search__input-wrap {
  max-width: 345px;
  margin-left: auto;
  margin-right: auto;
}

.p-search__input {
  border: solid 1px #ccc;
  border-radius: 5px;
  padding: 13px 20px;
  width: 100%;
  font-size: 1.4rem;
  outline: none;
}

.p-search__btn {
  width: 46px;
  height: 46px;
  background-color: #E71F18;
  border-radius: 5px;
  position: absolute;
  right: 1px;
  top: 50%;
  transform: translateY(-50%);
}

.p-share-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  padding: 40px 10px;
  display: none;
  background-color: #fff;
}
.p-share-modal .p-information__sns {
  margin-top: 0;
}

.p-share-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(217, 217, 217, 0.7); /* 半透明のオーバーレイ */
  z-index: 9998;
  display: none;
}

.p-share-modal__close-btn {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 20px;
  top: 20px;
  transform: translateY(-50%);
}
.p-share-modal__close-btn::before, .p-share-modal__close-btn::after {
  content: "";
  width: 16px;
  height: 1px;
  background-color: #000;
  position: absolute;
}
.p-share-modal__close-btn::before {
  transform: rotate(45deg);
}
.p-share-modal__close-btn::after {
  transform: rotate(-45deg);
}

.p-share-modal__copy-board {
  width: 70%;
  height: 65px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: 9999;
  border-radius: 4px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 65px;
  display: none;
}

.p-other {
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
.p-other h1 {
  font-size: 3rem;
}
.p-other p {
  font-size: 1.6rem;
  margin-top: 40px;
}

/* ========================================
  Display
======================================== */
.u-dsp-block {
  display: block;
}
.u-dsp-none {
  display: none;
}
.u-dsp-inline {
  display: inline;
}
.u-dsp-ib {
  display: inline-block;
}
.u-dsp-sp {
  display: block;
}
.u-dsp-pc {
  display: none;
}

/* ========================================
  Margin
======================================== */
.u-mt0 {
  margin-top: 0px;
}

.u-mt5 {
  margin-top: 5px;
}

.u-mt10 {
  margin-top: 10px;
}

.u-mt15 {
  margin-top: 15px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mt25 {
  margin-top: 25px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mt35 {
  margin-top: 35px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mt45 {
  margin-top: 45px;
}

.u-mt50 {
  margin-top: 50px;
}

.u-mt55 {
  margin-top: 55px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mt65 {
  margin-top: 65px;
}

.u-mt70 {
  margin-top: 70px;
}

.u-mt75 {
  margin-top: 75px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mt85 {
  margin-top: 85px;
}

.u-mt90 {
  margin-top: 90px;
}

.u-mt95 {
  margin-top: 95px;
}

.u-mt100 {
  margin-top: 100px;
}

.u-mt105 {
  margin-top: 105px;
}

.u-mt110 {
  margin-top: 110px;
}

.u-mt115 {
  margin-top: 115px;
}

.u-mt120 {
  margin-top: 120px;
}

.u-mt125 {
  margin-top: 125px;
}

.u-mt130 {
  margin-top: 130px;
}

.u-mt135 {
  margin-top: 135px;
}

.u-mt140 {
  margin-top: 140px;
}

.u-mt145 {
  margin-top: 145px;
}

.u-mt150 {
  margin-top: 150px;
}

.u-mt155 {
  margin-top: 155px;
}

.u-mt160 {
  margin-top: 160px;
}

.u-mt165 {
  margin-top: 165px;
}

.u-mt170 {
  margin-top: 170px;
}

.u-mt175 {
  margin-top: 175px;
}

.u-mt180 {
  margin-top: 180px;
}

.u-mt185 {
  margin-top: 185px;
}

.u-mt190 {
  margin-top: 190px;
}

.u-mt195 {
  margin-top: 195px;
}

.u-mt200 {
  margin-top: 200px;
}

.u-mt205 {
  margin-top: 205px;
}

.u-mt210 {
  margin-top: 210px;
}

.u-mt215 {
  margin-top: 215px;
}

.u-mt220 {
  margin-top: 220px;
}

.u-mt225 {
  margin-top: 225px;
}

.u-mt230 {
  margin-top: 230px;
}

.u-mt235 {
  margin-top: 235px;
}

.u-mt240 {
  margin-top: 240px;
}

.u-mt245 {
  margin-top: 245px;
}

.u-mt250 {
  margin-top: 250px;
}

.u-mt255 {
  margin-top: 255px;
}

.u-mt260 {
  margin-top: 260px;
}

.u-mt265 {
  margin-top: 265px;
}

.u-mt270 {
  margin-top: 270px;
}

.u-mt275 {
  margin-top: 275px;
}

.u-mt280 {
  margin-top: 280px;
}

.u-mt285 {
  margin-top: 285px;
}

.u-mt290 {
  margin-top: 290px;
}

.u-mt295 {
  margin-top: 295px;
}

.u-mt300 {
  margin-top: 300px;
}

.u-mb0 {
  margin-bottom: 0px;
}

.u-mb5 {
  margin-bottom: 5px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mb15 {
  margin-bottom: 15px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mb25 {
  margin-bottom: 25px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mb35 {
  margin-bottom: 35px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mb45 {
  margin-bottom: 45px;
}

.u-mb50 {
  margin-bottom: 50px;
}

.u-mb55 {
  margin-bottom: 55px;
}

.u-mb60 {
  margin-bottom: 60px;
}

.u-mb65 {
  margin-bottom: 65px;
}

.u-mb70 {
  margin-bottom: 70px;
}

.u-mb75 {
  margin-bottom: 75px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mb85 {
  margin-bottom: 85px;
}

.u-mb90 {
  margin-bottom: 90px;
}

.u-mb95 {
  margin-bottom: 95px;
}

.u-mb100 {
  margin-bottom: 100px;
}

.u-mb105 {
  margin-bottom: 105px;
}

.u-mb110 {
  margin-bottom: 110px;
}

.u-mb115 {
  margin-bottom: 115px;
}

.u-mb120 {
  margin-bottom: 120px;
}

.u-mb125 {
  margin-bottom: 125px;
}

.u-mb130 {
  margin-bottom: 130px;
}

.u-mb135 {
  margin-bottom: 135px;
}

.u-mb140 {
  margin-bottom: 140px;
}

.u-mb145 {
  margin-bottom: 145px;
}

.u-mb150 {
  margin-bottom: 150px;
}

.u-mb155 {
  margin-bottom: 155px;
}

.u-mb160 {
  margin-bottom: 160px;
}

.u-mb165 {
  margin-bottom: 165px;
}

.u-mb170 {
  margin-bottom: 170px;
}

.u-mb175 {
  margin-bottom: 175px;
}

.u-mb180 {
  margin-bottom: 180px;
}

.u-mb185 {
  margin-bottom: 185px;
}

.u-mb190 {
  margin-bottom: 190px;
}

.u-mb195 {
  margin-bottom: 195px;
}

.u-mb200 {
  margin-bottom: 200px;
}

.u-mb205 {
  margin-bottom: 205px;
}

.u-mb210 {
  margin-bottom: 210px;
}

.u-mb215 {
  margin-bottom: 215px;
}

.u-mb220 {
  margin-bottom: 220px;
}

.u-mb225 {
  margin-bottom: 225px;
}

.u-mb230 {
  margin-bottom: 230px;
}

.u-mb235 {
  margin-bottom: 235px;
}

.u-mb240 {
  margin-bottom: 240px;
}

.u-mb245 {
  margin-bottom: 245px;
}

.u-mb250 {
  margin-bottom: 250px;
}

.u-mb255 {
  margin-bottom: 255px;
}

.u-mb260 {
  margin-bottom: 260px;
}

.u-mb265 {
  margin-bottom: 265px;
}

.u-mb270 {
  margin-bottom: 270px;
}

.u-mb275 {
  margin-bottom: 275px;
}

.u-mb280 {
  margin-bottom: 280px;
}

.u-mb285 {
  margin-bottom: 285px;
}

.u-mb290 {
  margin-bottom: 290px;
}

.u-mb295 {
  margin-bottom: 295px;
}

.u-mb300 {
  margin-bottom: 300px;
}

.u-ml0 {
  margin-left: 0px;
}

.u-ml5 {
  margin-left: 5px;
}

.u-ml10 {
  margin-left: 10px;
}

.u-ml15 {
  margin-left: 15px;
}

.u-ml20 {
  margin-left: 20px;
}

.u-ml25 {
  margin-left: 25px;
}

.u-ml30 {
  margin-left: 30px;
}

.u-ml35 {
  margin-left: 35px;
}

.u-ml40 {
  margin-left: 40px;
}

.u-ml45 {
  margin-left: 45px;
}

.u-ml50 {
  margin-left: 50px;
}

.u-ml55 {
  margin-left: 55px;
}

.u-ml60 {
  margin-left: 60px;
}

.u-ml65 {
  margin-left: 65px;
}

.u-ml70 {
  margin-left: 70px;
}

.u-ml75 {
  margin-left: 75px;
}

.u-ml80 {
  margin-left: 80px;
}

.u-ml85 {
  margin-left: 85px;
}

.u-ml90 {
  margin-left: 90px;
}

.u-ml95 {
  margin-left: 95px;
}

.u-ml100 {
  margin-left: 100px;
}

.u-ml105 {
  margin-left: 105px;
}

.u-ml110 {
  margin-left: 110px;
}

.u-ml115 {
  margin-left: 115px;
}

.u-ml120 {
  margin-left: 120px;
}

.u-ml125 {
  margin-left: 125px;
}

.u-ml130 {
  margin-left: 130px;
}

.u-ml135 {
  margin-left: 135px;
}

.u-ml140 {
  margin-left: 140px;
}

.u-ml145 {
  margin-left: 145px;
}

.u-ml150 {
  margin-left: 150px;
}

.u-ml155 {
  margin-left: 155px;
}

.u-ml160 {
  margin-left: 160px;
}

.u-ml165 {
  margin-left: 165px;
}

.u-ml170 {
  margin-left: 170px;
}

.u-ml175 {
  margin-left: 175px;
}

.u-ml180 {
  margin-left: 180px;
}

.u-ml185 {
  margin-left: 185px;
}

.u-ml190 {
  margin-left: 190px;
}

.u-ml195 {
  margin-left: 195px;
}

.u-ml200 {
  margin-left: 200px;
}

.u-ml205 {
  margin-left: 205px;
}

.u-ml210 {
  margin-left: 210px;
}

.u-ml215 {
  margin-left: 215px;
}

.u-ml220 {
  margin-left: 220px;
}

.u-ml225 {
  margin-left: 225px;
}

.u-ml230 {
  margin-left: 230px;
}

.u-ml235 {
  margin-left: 235px;
}

.u-ml240 {
  margin-left: 240px;
}

.u-ml245 {
  margin-left: 245px;
}

.u-ml250 {
  margin-left: 250px;
}

.u-ml255 {
  margin-left: 255px;
}

.u-ml260 {
  margin-left: 260px;
}

.u-ml265 {
  margin-left: 265px;
}

.u-ml270 {
  margin-left: 270px;
}

.u-ml275 {
  margin-left: 275px;
}

.u-ml280 {
  margin-left: 280px;
}

.u-ml285 {
  margin-left: 285px;
}

.u-ml290 {
  margin-left: 290px;
}

.u-ml295 {
  margin-left: 295px;
}

.u-ml300 {
  margin-left: 300px;
}

.u-mr0 {
  margin-right: 0px;
}

.u-mr5 {
  margin-right: 5px;
}

.u-mr10 {
  margin-right: 10px;
}

.u-mr15 {
  margin-right: 15px;
}

.u-mr20 {
  margin-right: 20px;
}

.u-mr25 {
  margin-right: 25px;
}

.u-mr30 {
  margin-right: 30px;
}

.u-mr35 {
  margin-right: 35px;
}

.u-mr40 {
  margin-right: 40px;
}

.u-mr45 {
  margin-right: 45px;
}

.u-mr50 {
  margin-right: 50px;
}

.u-mr55 {
  margin-right: 55px;
}

.u-mr60 {
  margin-right: 60px;
}

.u-mr65 {
  margin-right: 65px;
}

.u-mr70 {
  margin-right: 70px;
}

.u-mr75 {
  margin-right: 75px;
}

.u-mr80 {
  margin-right: 80px;
}

.u-mr85 {
  margin-right: 85px;
}

.u-mr90 {
  margin-right: 90px;
}

.u-mr95 {
  margin-right: 95px;
}

.u-mr100 {
  margin-right: 100px;
}

.u-mr105 {
  margin-right: 105px;
}

.u-mr110 {
  margin-right: 110px;
}

.u-mr115 {
  margin-right: 115px;
}

.u-mr120 {
  margin-right: 120px;
}

.u-mr125 {
  margin-right: 125px;
}

.u-mr130 {
  margin-right: 130px;
}

.u-mr135 {
  margin-right: 135px;
}

.u-mr140 {
  margin-right: 140px;
}

.u-mr145 {
  margin-right: 145px;
}

.u-mr150 {
  margin-right: 150px;
}

.u-mr155 {
  margin-right: 155px;
}

.u-mr160 {
  margin-right: 160px;
}

.u-mr165 {
  margin-right: 165px;
}

.u-mr170 {
  margin-right: 170px;
}

.u-mr175 {
  margin-right: 175px;
}

.u-mr180 {
  margin-right: 180px;
}

.u-mr185 {
  margin-right: 185px;
}

.u-mr190 {
  margin-right: 190px;
}

.u-mr195 {
  margin-right: 195px;
}

.u-mr200 {
  margin-right: 200px;
}

.u-mr205 {
  margin-right: 205px;
}

.u-mr210 {
  margin-right: 210px;
}

.u-mr215 {
  margin-right: 215px;
}

.u-mr220 {
  margin-right: 220px;
}

.u-mr225 {
  margin-right: 225px;
}

.u-mr230 {
  margin-right: 230px;
}

.u-mr235 {
  margin-right: 235px;
}

.u-mr240 {
  margin-right: 240px;
}

.u-mr245 {
  margin-right: 245px;
}

.u-mr250 {
  margin-right: 250px;
}

.u-mr255 {
  margin-right: 255px;
}

.u-mr260 {
  margin-right: 260px;
}

.u-mr265 {
  margin-right: 265px;
}

.u-mr270 {
  margin-right: 270px;
}

.u-mr275 {
  margin-right: 275px;
}

.u-mr280 {
  margin-right: 280px;
}

.u-mr285 {
  margin-right: 285px;
}

.u-mr290 {
  margin-right: 290px;
}

.u-mr295 {
  margin-right: 295px;
}

.u-mr300 {
  margin-right: 300px;
}

/* ========================================
  New Line
======================================== */
.u-newLine-pc::before {
  content: none;
}

.u-newLine-sp::before {
  content: "\a";
  white-space: pre;
}

.u-newLine-no {
  white-space: nowrap;
}

/* ========================================
  Padding
======================================== */
.u-pt0 {
  padding-top: 0px;
}

.u-pt5 {
  padding-top: 5px;
}

.u-pt10 {
  padding-top: 10px;
}

.u-pt15 {
  padding-top: 15px;
}

.u-pt20 {
  padding-top: 20px;
}

.u-pt25 {
  padding-top: 25px;
}

.u-pt30 {
  padding-top: 30px;
}

.u-pt35 {
  padding-top: 35px;
}

.u-pt40 {
  padding-top: 40px;
}

.u-pt45 {
  padding-top: 45px;
}

.u-pt50 {
  padding-top: 50px;
}

.u-pt55 {
  padding-top: 55px;
}

.u-pt60 {
  padding-top: 60px;
}

.u-pt65 {
  padding-top: 65px;
}

.u-pt70 {
  padding-top: 70px;
}

.u-pt75 {
  padding-top: 75px;
}

.u-pt80 {
  padding-top: 80px;
}

.u-pt85 {
  padding-top: 85px;
}

.u-pt90 {
  padding-top: 90px;
}

.u-pt95 {
  padding-top: 95px;
}

.u-pt100 {
  padding-top: 100px;
}

.u-pt105 {
  padding-top: 105px;
}

.u-pt110 {
  padding-top: 110px;
}

.u-pt115 {
  padding-top: 115px;
}

.u-pt120 {
  padding-top: 120px;
}

.u-pt125 {
  padding-top: 125px;
}

.u-pt130 {
  padding-top: 130px;
}

.u-pt135 {
  padding-top: 135px;
}

.u-pt140 {
  padding-top: 140px;
}

.u-pt145 {
  padding-top: 145px;
}

.u-pt150 {
  padding-top: 150px;
}

.u-pt155 {
  padding-top: 155px;
}

.u-pt160 {
  padding-top: 160px;
}

.u-pt165 {
  padding-top: 165px;
}

.u-pt170 {
  padding-top: 170px;
}

.u-pt175 {
  padding-top: 175px;
}

.u-pt180 {
  padding-top: 180px;
}

.u-pt185 {
  padding-top: 185px;
}

.u-pt190 {
  padding-top: 190px;
}

.u-pt195 {
  padding-top: 195px;
}

.u-pt200 {
  padding-top: 200px;
}

.u-pt205 {
  padding-top: 205px;
}

.u-pt210 {
  padding-top: 210px;
}

.u-pt215 {
  padding-top: 215px;
}

.u-pt220 {
  padding-top: 220px;
}

.u-pt225 {
  padding-top: 225px;
}

.u-pt230 {
  padding-top: 230px;
}

.u-pt235 {
  padding-top: 235px;
}

.u-pt240 {
  padding-top: 240px;
}

.u-pt245 {
  padding-top: 245px;
}

.u-pt250 {
  padding-top: 250px;
}

.u-pt255 {
  padding-top: 255px;
}

.u-pt260 {
  padding-top: 260px;
}

.u-pt265 {
  padding-top: 265px;
}

.u-pt270 {
  padding-top: 270px;
}

.u-pt275 {
  padding-top: 275px;
}

.u-pt280 {
  padding-top: 280px;
}

.u-pt285 {
  padding-top: 285px;
}

.u-pt290 {
  padding-top: 290px;
}

.u-pt295 {
  padding-top: 295px;
}

.u-pt300 {
  padding-top: 300px;
}

.u-pb0 {
  padding-bottom: 0px;
}

.u-pb5 {
  padding-bottom: 5px;
}

.u-pb10 {
  padding-bottom: 10px;
}

.u-pb15 {
  padding-bottom: 15px;
}

.u-pb20 {
  padding-bottom: 20px;
}

.u-pb25 {
  padding-bottom: 25px;
}

.u-pb30 {
  padding-bottom: 30px;
}

.u-pb35 {
  padding-bottom: 35px;
}

.u-pb40 {
  padding-bottom: 40px;
}

.u-pb45 {
  padding-bottom: 45px;
}

.u-pb50 {
  padding-bottom: 50px;
}

.u-pb55 {
  padding-bottom: 55px;
}

.u-pb60 {
  padding-bottom: 60px;
}

.u-pb65 {
  padding-bottom: 65px;
}

.u-pb70 {
  padding-bottom: 70px;
}

.u-pb75 {
  padding-bottom: 75px;
}

.u-pb80 {
  padding-bottom: 80px;
}

.u-pb85 {
  padding-bottom: 85px;
}

.u-pb90 {
  padding-bottom: 90px;
}

.u-pb95 {
  padding-bottom: 95px;
}

.u-pb100 {
  padding-bottom: 100px;
}

.u-pb105 {
  padding-bottom: 105px;
}

.u-pb110 {
  padding-bottom: 110px;
}

.u-pb115 {
  padding-bottom: 115px;
}

.u-pb120 {
  padding-bottom: 120px;
}

.u-pb125 {
  padding-bottom: 125px;
}

.u-pb130 {
  padding-bottom: 130px;
}

.u-pb135 {
  padding-bottom: 135px;
}

.u-pb140 {
  padding-bottom: 140px;
}

.u-pb145 {
  padding-bottom: 145px;
}

.u-pb150 {
  padding-bottom: 150px;
}

.u-pb155 {
  padding-bottom: 155px;
}

.u-pb160 {
  padding-bottom: 160px;
}

.u-pb165 {
  padding-bottom: 165px;
}

.u-pb170 {
  padding-bottom: 170px;
}

.u-pb175 {
  padding-bottom: 175px;
}

.u-pb180 {
  padding-bottom: 180px;
}

.u-pb185 {
  padding-bottom: 185px;
}

.u-pb190 {
  padding-bottom: 190px;
}

.u-pb195 {
  padding-bottom: 195px;
}

.u-pb200 {
  padding-bottom: 200px;
}

.u-pb205 {
  padding-bottom: 205px;
}

.u-pb210 {
  padding-bottom: 210px;
}

.u-pb215 {
  padding-bottom: 215px;
}

.u-pb220 {
  padding-bottom: 220px;
}

.u-pb225 {
  padding-bottom: 225px;
}

.u-pb230 {
  padding-bottom: 230px;
}

.u-pb235 {
  padding-bottom: 235px;
}

.u-pb240 {
  padding-bottom: 240px;
}

.u-pb245 {
  padding-bottom: 245px;
}

.u-pb250 {
  padding-bottom: 250px;
}

.u-pb255 {
  padding-bottom: 255px;
}

.u-pb260 {
  padding-bottom: 260px;
}

.u-pb265 {
  padding-bottom: 265px;
}

.u-pb270 {
  padding-bottom: 270px;
}

.u-pb275 {
  padding-bottom: 275px;
}

.u-pb280 {
  padding-bottom: 280px;
}

.u-pb285 {
  padding-bottom: 285px;
}

.u-pb290 {
  padding-bottom: 290px;
}

.u-pb295 {
  padding-bottom: 295px;
}

.u-pb300 {
  padding-bottom: 300px;
}

.u-pl0 {
  padding-left: 0px;
}

.u-pl5 {
  padding-left: 5px;
}

.u-pl10 {
  padding-left: 10px;
}

.u-pl15 {
  padding-left: 15px;
}

.u-pl20 {
  padding-left: 20px;
}

.u-pl25 {
  padding-left: 25px;
}

.u-pl30 {
  padding-left: 30px;
}

.u-pl35 {
  padding-left: 35px;
}

.u-pl40 {
  padding-left: 40px;
}

.u-pl45 {
  padding-left: 45px;
}

.u-pl50 {
  padding-left: 50px;
}

.u-pl55 {
  padding-left: 55px;
}

.u-pl60 {
  padding-left: 60px;
}

.u-pl65 {
  padding-left: 65px;
}

.u-pl70 {
  padding-left: 70px;
}

.u-pl75 {
  padding-left: 75px;
}

.u-pl80 {
  padding-left: 80px;
}

.u-pl85 {
  padding-left: 85px;
}

.u-pl90 {
  padding-left: 90px;
}

.u-pl95 {
  padding-left: 95px;
}

.u-pl100 {
  padding-left: 100px;
}

.u-pl105 {
  padding-left: 105px;
}

.u-pl110 {
  padding-left: 110px;
}

.u-pl115 {
  padding-left: 115px;
}

.u-pl120 {
  padding-left: 120px;
}

.u-pl125 {
  padding-left: 125px;
}

.u-pl130 {
  padding-left: 130px;
}

.u-pl135 {
  padding-left: 135px;
}

.u-pl140 {
  padding-left: 140px;
}

.u-pl145 {
  padding-left: 145px;
}

.u-pl150 {
  padding-left: 150px;
}

.u-pl155 {
  padding-left: 155px;
}

.u-pl160 {
  padding-left: 160px;
}

.u-pl165 {
  padding-left: 165px;
}

.u-pl170 {
  padding-left: 170px;
}

.u-pl175 {
  padding-left: 175px;
}

.u-pl180 {
  padding-left: 180px;
}

.u-pl185 {
  padding-left: 185px;
}

.u-pl190 {
  padding-left: 190px;
}

.u-pl195 {
  padding-left: 195px;
}

.u-pl200 {
  padding-left: 200px;
}

.u-pl205 {
  padding-left: 205px;
}

.u-pl210 {
  padding-left: 210px;
}

.u-pl215 {
  padding-left: 215px;
}

.u-pl220 {
  padding-left: 220px;
}

.u-pl225 {
  padding-left: 225px;
}

.u-pl230 {
  padding-left: 230px;
}

.u-pl235 {
  padding-left: 235px;
}

.u-pl240 {
  padding-left: 240px;
}

.u-pl245 {
  padding-left: 245px;
}

.u-pl250 {
  padding-left: 250px;
}

.u-pl255 {
  padding-left: 255px;
}

.u-pl260 {
  padding-left: 260px;
}

.u-pl265 {
  padding-left: 265px;
}

.u-pl270 {
  padding-left: 270px;
}

.u-pl275 {
  padding-left: 275px;
}

.u-pl280 {
  padding-left: 280px;
}

.u-pl285 {
  padding-left: 285px;
}

.u-pl290 {
  padding-left: 290px;
}

.u-pl295 {
  padding-left: 295px;
}

.u-pl300 {
  padding-left: 300px;
}

.u-pr0 {
  padding-right: 0px;
}

.u-pr5 {
  padding-right: 5px;
}

.u-pr10 {
  padding-right: 10px;
}

.u-pr15 {
  padding-right: 15px;
}

.u-pr20 {
  padding-right: 20px;
}

.u-pr25 {
  padding-right: 25px;
}

.u-pr30 {
  padding-right: 30px;
}

.u-pr35 {
  padding-right: 35px;
}

.u-pr40 {
  padding-right: 40px;
}

.u-pr45 {
  padding-right: 45px;
}

.u-pr50 {
  padding-right: 50px;
}

.u-pr55 {
  padding-right: 55px;
}

.u-pr60 {
  padding-right: 60px;
}

.u-pr65 {
  padding-right: 65px;
}

.u-pr70 {
  padding-right: 70px;
}

.u-pr75 {
  padding-right: 75px;
}

.u-pr80 {
  padding-right: 80px;
}

.u-pr85 {
  padding-right: 85px;
}

.u-pr90 {
  padding-right: 90px;
}

.u-pr95 {
  padding-right: 95px;
}

.u-pr100 {
  padding-right: 100px;
}

.u-pr105 {
  padding-right: 105px;
}

.u-pr110 {
  padding-right: 110px;
}

.u-pr115 {
  padding-right: 115px;
}

.u-pr120 {
  padding-right: 120px;
}

.u-pr125 {
  padding-right: 125px;
}

.u-pr130 {
  padding-right: 130px;
}

.u-pr135 {
  padding-right: 135px;
}

.u-pr140 {
  padding-right: 140px;
}

.u-pr145 {
  padding-right: 145px;
}

.u-pr150 {
  padding-right: 150px;
}

.u-pr155 {
  padding-right: 155px;
}

.u-pr160 {
  padding-right: 160px;
}

.u-pr165 {
  padding-right: 165px;
}

.u-pr170 {
  padding-right: 170px;
}

.u-pr175 {
  padding-right: 175px;
}

.u-pr180 {
  padding-right: 180px;
}

.u-pr185 {
  padding-right: 185px;
}

.u-pr190 {
  padding-right: 190px;
}

.u-pr195 {
  padding-right: 195px;
}

.u-pr200 {
  padding-right: 200px;
}

.u-pr205 {
  padding-right: 205px;
}

.u-pr210 {
  padding-right: 210px;
}

.u-pr215 {
  padding-right: 215px;
}

.u-pr220 {
  padding-right: 220px;
}

.u-pr225 {
  padding-right: 225px;
}

.u-pr230 {
  padding-right: 230px;
}

.u-pr235 {
  padding-right: 235px;
}

.u-pr240 {
  padding-right: 240px;
}

.u-pr245 {
  padding-right: 245px;
}

.u-pr250 {
  padding-right: 250px;
}

.u-pr255 {
  padding-right: 255px;
}

.u-pr260 {
  padding-right: 260px;
}

.u-pr265 {
  padding-right: 265px;
}

.u-pr270 {
  padding-right: 270px;
}

.u-pr275 {
  padding-right: 275px;
}

.u-pr280 {
  padding-right: 280px;
}

.u-pr285 {
  padding-right: 285px;
}

.u-pr290 {
  padding-right: 290px;
}

.u-pr295 {
  padding-right: 295px;
}

.u-pr300 {
  padding-right: 300px;
}

/* ========================================
  Shame リファクタリングを前提とするコード
  https://csswizardry.com/2013/04/shame-css/
======================================== */
/* ==========================================================================
  Print
  http://www.phpied.com/delay-loading-your-print-css/
========================================================================== */
@media screen and (min-width: 768px){
  .l-container {
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
  }
  .l-footer {
    padding-top: 37px;
    padding-bottom: 10px;
  }
  .p-top .l-footer {
    padding-top: 83px;
  }
  .l-footer__inner {
    padding: 0;
  }
  .l-header {
    height: 64px;
  }
  .p-top .l-header {
    background-color: transparent;
  }
  .p-top .l-header.is-scrolling .l-header__inner {
    padding: 6px 56px 0 20px;
  }
  .p-top .l-header.is-scrolling .p-header__logo-link {
    width: 153px;
  }
  .p-top .l-header.is-drawer-open .l-header__inner {
    padding: 6px 56px 0 20px;
  }
  .p-top .l-header.is-drawer-open .p-header__logo-link {
    width: 153px;
  }
  .l-header__inner {
    padding: 6px 56px 0 20px;
  }
  .p-top .l-header__inner {
    padding: 40px 56px 0 20px;
  }
  .l-main {
    margin-top: 0;
  }
  .c-btn, .c-btn-external, .c-btn-main {
    font-size: 1.6rem;
  }
  .c-btn, .c-btn-external, .c-btn-main {
    max-width: 400px;
  }
  .c-btn-main {
    padding: 1.8rem 0;
  }
  .c-btn-external::after {
    right: 24px;
  }
  .c-heading--lev1 {
    font-size: 3.8rem;
  }
  .c-heading--lev2 {
    font-size: 3rem;
  }
  .c-heading--lev3 {
    font-size: 2.6rem;
  }
  .c-heading--lev4 {
    font-size: 2rem;
  }
  .c-media {
    display: flex;
    align-items: center;
  }
  .c-media__img-wrapper {
    flex: 0 1 48.4%;
    margin-right: 3.3333333333%;
    margin-bottom: 0;
  }
  .c-media--rev {
    flex-direction: row-reverse;
  }
  .c-media--rev .c-media__img-wrapper {
    margin-right: 0;
  }
  .c-media--rev .c-media__body {
    margin-right: 3.3333333333%;
  }
  .p-header__logo-link {
    width: 153px;
  }
  .p-header__logo-link img {
    width: 100%;
    height: auto;
  }
  .p-top .p-header__logo-link {
    width: 223px;
  }
  .p-header__rightBlock {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-right: 20px;
  }
  .p-header__rightBlock-item {
    display: block;
    font-size: 1.4rem;
  }
  .p-header__nav {
    display: block;
  }
  .p-header__nav-btn {
    font-size: 1.4rem;
    padding-left: 40px;
    white-space: nowrap;
  }
  .p-footer__concept {
    width: 50%;
  }
  .p-footer__copy {
    margin-top: 100px;
  }
  .p-accordion__btn {
    padding: 1rem 4rem 1rem 1.5rem;
    font-size: 1.6rem;
  }
  .p-accordion__body {
    padding: 0 1.5rem;
  }
  .p-accordion__txt {
    margin-bottom: 2rem;
  }
  .is-accordion-open {
    padding: 1.5rem;
  }
  .p-bnr__list-col2 {
    margin-bottom: -1.5rem;
  }
  .p-bnr__list-col2 .p-bnr__list-item {
    width: 49.375%;
    margin-right: 1.25%;
    margin-bottom: 1.5rem;
  }
  .p-bnr__list-col2 .p-bnr__list-item:nth-of-type(2n) {
    margin-right: 0;
  }
  .p-bnr__list-col3 {
    margin-bottom: -1.5rem;
  }
  .p-bnr__list-col3 .p-bnr__list-item {
    width: 32.5%;
    margin-right: 1.25%;
    margin-bottom: 1.5rem;
  }
  .p-bnr__list-col3 .p-bnr__list-item:nth-of-type(3n) {
    margin-right: 0;
  }
  .p-bnr__list-col4 {
    margin-bottom: -1.5rem;
  }
  .p-bnr__list-col4 .p-bnr__list-item {
    width: 24.0625%;
    margin-right: 1.25%;
    margin-bottom: 1.5rem;
  }
  .p-bnr__list-col4 .p-bnr__list-item:nth-of-type(4n) {
    margin-right: 0;
  }
  .p-bread-crumb__item {
    font-size: 1.4rem;
  }
  .p-card__col2 {
    margin-bottom: -3rem;
  }
  .p-card__col2 .p-card {
    width: 48.75%;
    margin-right: 2.5%;
    margin-bottom: 3rem;
  }
  .p-card__col2 .p-card:nth-of-type(2n) {
    margin-right: 0;
  }
  .p-card__col3 {
    margin-bottom: -3rem;
  }
  .p-card__col3 .p-card {
    width: 31.6666666667%;
    margin-right: 2.5%;
    margin-bottom: 3rem;
  }
  .p-card__col3 .p-card:nth-of-type(3n) {
    margin-right: 0;
  }
  .p-vert-table table {
    width: 100%;
  }
  .p-vert-table th,
  .p-vert-table td {
    white-space: pre-wrap;
  }
  .p-vert-table td:last-child,
  .p-vert-table th:last-child {
    border-right-width: 0;
  }
  .p-cross-table table {
    width: 100%;
  }
  .p-cross-table th,
  .p-cross-table td {
    white-space: pre-wrap;
  }
  .p-cross-table td:last-child,
  .p-cross-table th:last-child {
    border-right-width: 0;
  }
  .p-cross-table .p-cross-table--sticky {
    position: static;
  }
  .p-top__heading {
    font-size: 5.6rem;
  }
  .p-top-mv img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-top-mv__pc {
    display: block;
  }
  .p-top-mv__sp {
    display: none;
  }
  .p-top-mv__textBlock {
    top: 50%;
    left: 20px;
  }
  .p-top-mv__text-tag span {
    font-size: 1.8rem;
    padding: 11px 8px;
  }
  .p-top-mv__text-description-wrap {
    margin-top: 22px;
  }
  .p-top-mv__text-description-wrap span {
    font-size: 3rem;
    padding: 4px 30px 4px 15px;
  }
  .p-top-hotTag {
    padding-top: 0;
    margin-top: 0;
    height: 164px;
  }
  .p-top-hotTag__inner {
    display: flex;
    height: 100%;
  }
  .p-top-hotTag__inner .p-top__heading {
    width: 408px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .p-top-hotTag__inner .p-top__heading {
    padding: 0;
    border-right: solid 1px #efefef;
  }
  #hottag-splide.splide {
    overflow: hidden;
  }
  .p-top-hotTag__splide {
    margin-top: 0;
    padding-bottom: 0;
  }
  .p-top-hotTag__tagBlockList {
    height: 164px;
    margin-top: 0;
  }
  .p-top-hotTag__tagBlockItem {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .p-top-hotTag__tagBlockItem-inner + .p-top-hotTag__tagBlockItem-inner {
    margin-top: 0;
    margin-left: 100px;
  }
  .p-top-hotTag__tagBlockItem-inner + .p-top-hotTag__tagBlockItem-inner .p-top-hotTag__wordWrap + .p-top-hotTag__wordWrap {
    margin-left: -60px;
  }
  .p-top-hotTag__wordWrap + .p-top-hotTag__wordWrap {
    margin-top: 40px;
  }
  .p-top-trendTag {
    padding: 115px 0 100px;
  }
  .p-top-trendTag__snap-item {
    max-width: 491px;
  }
  .p-top-trendTag__btn-wrap {
    display: flex;
  }
  .p-top-trendTag__detail-list {
    max-width: 65%;
  }
  .p-top-trendTag__detail-link {
    grid-template-columns: 27.0168855535% 74.4840525328%;
  }
  .p-top-trendTag__detail-link .p-top-trendTag__detail-imgWrap {
    grid-area: 1/1/2/2;
  }
  .p-top-trendTag__detail-link .p-top-trendTag__detail-name {
    grid-area: 1/2/2/3;
  }
  .p-top-trendTag__detail-link .p-top-trendTag__textBlock {
    grid-area: 2/1/3/3;
  }
  .p-top-trendTag__detail-link .p-top-trendTag__tag-list {
    grid-area: 3/1/4/3;
  }
  .p-top-trendTag__detail-imgWrap {
    width: 120px;
    height: 120px;
  }
  .p-top-trendTag__detail-name {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
  }
  .p-top-trendTag__textBlock {
    margin-top: 16px;
  }
  .p-top-trendTag__detail-subinfo {
    font-size: 1.4rem;
  }
  .p-top-trendTag__detail-title {
    font-size: 1.8rem;
  }
  .p-top-trendTag__tag-link {
    font-size: 1.4rem;
  }
  .p-top-trendTag__slide-option-wrap {
    margin-top: 50px;
  }
  .p-top-newArticles {
    margin-top: 90px;
  }
  .p-top-articleCard__list {
    max-width: 1280px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
    padding: 0 20px;
  }
  .p-top-articleCard__list .p-articleCard {
    width: calc((100% - 40px) / 2);
  }
  .p-top-category {
    margin-top: 90px;
  }
  .p-top-category__listWrap {
    margin-top: 50px;
  }
  .p-top-category__list {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
  .p-top-category__item {
    height: 140px;
  }
  .p-top-category__iconWrap {
    max-width: 72px;
  }
  .p-top-category__link {
    gap: 20px;
    padding: 0 40px;
  }
  .p-top-category__txt {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }
  .p-top-ranking {
    margin-top: 100px;
    padding: 90px 0 30px;
  }
  .p-top-ranking__splide {
    margin-left: 20px;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 60px;
  }
  .p-top-ranking__splide .splide__arrows {
    display: block;
  }
  .p-top-designer {
    padding: 100px 0;
    margin-top: 100px;
  }
  .p-top-designer__listWrap {
    padding-top: 70px;
    margin-top: -16px;
  }
  .p-top-designer__listWrap::before {
    content: "";
    width: calc((100vw - 500px) / 2);
    height: var(--local-max-height);
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
  }
  .p-top-designer__comment {
    padding: 8px 10px;
    width: 257px;
    top: -70px;
  }
  .p-top-designer__comment::before {
    bottom: -20px;
  }
  .p-top-designer__comment p {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
  }
  .p-bottomNavBar {
    display: none;
  }
  .p-articleCard__detail-date {
    letter-spacing: 0.15em;
  }
  .p-articleCard__detail-title {
    font-size: 1.8rem;
  }
  .p-articleCard__detail-description {
    font-size: 1.6rem;
  }
  .p-detail__head {
    padding: 60px 0;
  }
  .p-detail__head-inner {
    flex-direction: row;
    gap: 37px;
    padding: 0 20px;
  }
  .p-detail__head-textBlock {
    width: 29.375%;
    padding: 0;
  }
  .p-detail__head-title {
    font-size: 2.4rem;
  }
  .p-detail__head-subinfo {
    font-size: 1.4rem;
  }
  .p-detail__tag-list {
    margin-top: 24px;
  }
  .p-detail__tag-link {
    font-size: 1.4rem;
  }
  .p-detail__head-imgBlock {
    width: 67.65625%;
  }
  .p-detail__contents {
    overflow: visible;
  }
  .p-detail__contents p {
    font-size: 1.6rem;
    line-height: 1.75;
    letter-spacing: 0.05em;
  }
  .p-detail__contents p:not([class]) {
    margin-bottom: 54px;
  }
  .p-detail__contents h2.wp-block-heading::before {
    width: 80px;
    height: 69px;
    top: -8px;
  }
  .p-detail__contents h2.wp-block-heading {
    padding: 10px;
    padding-left: 93px;
    font-size: 2.2rem;
  }
  .p-detail__contents h2.wp-block-heading + * {
    margin-top: 60px;
  }
  .p-detail__contents h3 {
    font-size: 1.8rem;
  }
  .p-detail__contents h4 {
    font-size: 1.6rem;
  }
  .p-detail__contents ul:not([class]) li:not([class]) {
    font-size: 1.6rem;
  }
  .p-detail__contents ul:not([class]) li:not([class])::before {
    width: 13px;
    height: 13px;
  }
  .p-detail__contents ul:not([class]) {
    margin-bottom: 60px;
  }
  .p-detail__contents li:not([class]) + li {
    margin-top: 6px;
  }
  .p-detail__contents .p-detail__contents-lead {
    font-size: 1.8rem;
  }
  .p-detail__contents .p-detail__contents-lead + .p-detail__interviewee {
    margin-top: 60px;
  }
  .p-detail__contents .p-detail__interviewee-txt {
    font-size: 1.6rem;
  }
  .p-detail__contents .p-detail__interviewee-imgWrap {
    width: 160px;
    height: 160px;
  }
  .p-detail__contents .p-detail__interviewee-salon,
  .p-detail__contents .p-detail-parts__qa-person-salon {
    font-size: 1.6rem;
  }
  .p-detail__contents .p-detail__interviewee-name,
  .p-detail__contents .p-detail-parts__qa-person-name {
    font-size: 1.8rem;
  }
  .p-detail__contents .p-detail__interviewee-name span,
  .p-detail__contents .p-detail-parts__qa-person-name span {
    font-size: 1.4rem;
  }
  .p-detail__contents .p-detail__tableOfContents {
    padding: 26px 40px;
  }
  .p-detail__contents .p-detail__tableOfContents-inner {
    display: flex;
  }
  .p-detail__contents .p-detail__tableOfContents-heading {
    font-size: 1.6rem;
  }
  .p-detail__contents .p-detail__tableOfContents-list {
    margin-left: 75px;
    margin-top: 0;
  }
  .p-detail__contents .p-detail__tableOfContents-item,
  .p-detail__contents .p-detail__tableOfContents-subItem {
    font-size: 1.6rem;
  }
  .p-detail__contents .p-detail__tableOfContents-item + .p-detail__contents .p-detail__tableOfContents-item,
  .p-detail__contents .p-detail__tableOfContents-item + .p-detail__contents .p-detail__tableOfContents-subItem,
  .p-detail__contents .p-detail__tableOfContents-subItem + .p-detail__contents .p-detail__tableOfContents-item,
  .p-detail__contents .p-detail__tableOfContents-subItem + .p-detail__contents .p-detail__tableOfContents-subItem {
    margin-top: 14px;
  }
  .p-detail__contents .p-detail__tableOfContents-subItem + .p-detail__contents .p-detail__tableOfContents-subItem {
    margin-top: 2px;
  }
  .p-detail__contents .p-detail-parts__qa {
    margin-bottom: 60px;
  }
  .p-detail__contents .p-detail-parts__qa-question-letter {
    width: 55px;
    height: 55px;
    left: -18px;
    top: -20px;
    font-size: 3.3rem;
  }
  .p-detail__contents .p-detail-parts__qa-question-txt {
    font-size: 1.8rem;
  }
  .p-detail__contents .p-detail-parts__qa-answer {
    margin-top: 40px;
  }
  .p-detail__contents .p-detail-parts__qa-answer-letter {
    width: 55px;
    height: 55px;
    left: -18px;
    top: -20px;
    font-size: 3.3rem;
  }
  .p-detail__contents .p-detail-parts__qa-answer-txt {
    font-size: 1.8rem;
  }
  .p-detail__contents .p-detail-parts__qa-person {
    max-width: 160px;
    margin: 40px auto 0;
  }
  .p-detail__contents .p-detail-parts__qa-imgWrap {
    width: 160px;
    height: 160px;
  }
  .p-detail__contents .p-detail-parts__balloonBlock {
    margin-bottom: 60px;
  }
  .p-detail__contents .p-detail-parts__balloonBlock .p-detail-parts__balloon {
    margin-top: 40px;
  }
  .p-detail__contents .p-detail-parts__balloon {
    margin-bottom: 60px;
    gap: 30px;
  }
  .p-detail__contents .p-detail-parts__balloon .p-detail-parts__balloon-textBox {
    margin-right: 102px;
  }
  .p-detail__contents .p-detail-parts__balloon.is-reverse .p-detail-parts__balloon-textBox {
    margin-right: 0;
    margin-left: 102px;
  }
  .p-detail__contents .p-detail-parts__balloon-imgWrap {
    width: 72px;
    height: 72px;
  }
  .p-detail__contents .p-detail-parts__balloon-person {
    max-width: 72px;
  }
  .p-detail__contents .p-detail-parts__balloon-person-name {
    font-size: 1.6rem;
  }
  .p-detail__contents .p-detail-parts__balloon-textBox {
    padding: 16px 20px;
  }
  .p-detail__contents .p-detail-parts__balloon-txt--large {
    font-size: 1.8rem;
  }
  .p-detail__contents .p-detail-parts__balloon-txt {
    font-size: 1.6rem;
  }
  .p-detail__contents .p-detail-parts__textBox {
    margin-bottom: 54px;
  }
  .p-detail__contents .p-detail-parts__textBox-txt {
    font-size: 1.6rem;
  }
  .p-detail__contents .wp-block-quote p:not([class]) {
    font-size: 1.6rem;
  }
  .p-detail__contents .wp-block-quote cite {
    font-size: 1.6rem;
  }
  .p-detail__contents .p-detail-parts__pointBox {
    padding: 22px 20px;
    margin-bottom: 60px;
  }
  .p-detail__contents .p-detail-parts__point {
    font-size: 1.6rem;
  }
  .p-detail__contents .p-detail-parts__pointBox-txt {
    font-size: 1.6rem;
  }
  .p-detail__contents .p-detail-parts__product-link::after {
    bottom: 16px;
    right: 20px;
  }
  .p-detail__contents .p-detail-parts__product-name {
    font-size: 1.6rem;
  }
  .p-detail__contents .p-detail-parts__relatedPost-heading {
    font-size: 1.6rem;
    padding-left: 1.2em;
    margin-bottom: 19px;
  }
  .p-detail__contents .p-detail-parts__imgContainer {
    margin-bottom: 60px;
  }
  .p-detail__contents .wp-block-image {
    margin-bottom: 60px;
  }
  .p-detail__contents .p-detail-parts__editor-commentBox {
    padding: 30px 32px 28px;
  }
  .p-detail__contents .p-detail-parts__editor-commentBox-heading {
    font-size: 1.8rem;
  }
  .p-detail__contents .p-detail-parts__editor-commentBox-txt {
    font-size: 1.6rem;
    line-height: 1.75;
    margin-top: 15px;
  }
  .p-detail__contents .p-detail-parts__indicator {
    flex-direction: row;
    gap: 30px;
    margin: 0 auto 60px;
  }
  .p-detail__contents .p-detail-parts__indicator-item {
    gap: 10px;
  }
  .p-detail__contents .p-detail-parts__indicator-item dt {
    width: auto;
  }
  .p-detail__contents .p-detail-parts__indicator-item dd {
    width: 110px;
  }
  .p-detail__contents .p-detail__sns {
    margin-top: 80px;
  }
  .p-detail__contents .p-detail__sns-txt {
    font-size: 1.4rem;
  }
  .p-detail__contents .p-detail__sns-list {
    margin-top: 14px;
  }
  .p-detail__contents .p-detail__sns-item:hover {
    opacity: 0.7;
  }
  .p-detail__contents .p-detail__hashtag-list {
    margin-top: 42px;
  }
  .p-detail__contents .p-detail__hashtag-link {
    font-size: 1.4rem;
  }
  .p-detail__contents .p-detail-parts__img-slider-wrap {
    padding: 0;
    margin-bottom: 100px;
  }
  .p-detail__contents .p-detail-parts__img-slider-item {
    width: 537px;
  }
  .p-detail__contents .p-detail-parts__img-slider-item img {
    transform: scale(0.67);
  }
  .p-detail__contents .p-detail-parts__img-slider-txt {
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .p-list-articleCard__listWrap {
    padding: 60px 20px;
  }
  .p-list-articleCard__list {
    flex-direction: row;
  }
  .p-list-articleCard__list .p-articleCard {
    width: calc((100% - 40px) / 2);
  }
  .p-list__heading {
    font-size: 5.6rem;
  }
  .p-list__head {
    align-items: center;
    flex-direction: row;
    gap: 60px;
    padding: 40px 20px 48px;
  }
  .p-list__head-txt {
    font-size: 2.4rem;
  }
  .p-list__featuredArticle {
    padding: 40px 16px;
  }
  .p-list__featuredArticle-inner {
    gap: 40px;
    flex-direction: row;
  }
  .p-list__featuredArticle-inner.is-reverse {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
  .p-list__featuredArticle-textBlock {
    width: 30.859375%;
  }
  .p-list__featuredArticle-title {
    font-size: 2rem;
  }
  .p-list__featuredArticle-description {
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 10px;
  }
  .p-list__featuredArticle-imgBlock {
    width: 60.15625%;
  }
  .p-list-recommendTag {
    padding: 60px 20px 0;
  }
  .p-list-recommendTag-inner {
    padding-left: 0;
  }
  .p-list__no-result-txt {
    font-size: 1.8rem;
  }
  .p-randomArticle {
    padding: 50px 40px 50px 40px;
  }
  .p-randomArticle__inner {
    flex-direction: row;
  }
  .p-randomArticle__list2 {
    width: 50%;
  }
  .p-randomArticle__list {
    row-gap: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: dense;
    grid-column-gap: 10px;
    grid-row-gap: 20px;
    grid-auto-rows: minmax(100px, auto);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }
  .p-randomArticle__txt {
    font-size: 1.8rem;
    margin-top: 20px;
    height: 60px;
  }
  .p-randomArticle__link {
    padding: 20px;
  }
  .p-randomArticle__btnWrap {
    margin-top: 60px;
  }
  .p-bottomArea__wrap {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
  }
  .p-bottomArea__wrap .p-randomArticle {
    grid-area: 1/2/2/4;
  }
  .p-bottomArea__wrap .p-bottomArea__concept {
    grid-area: 1/1/3/2;
  }
  .p-bottomArea__wrap footer {
    grid-area: 2/2/3/4;
  }
  .p-bottomArea__concept {
    position: sticky;
    top: 0;
    left: 0;
    height: 100vh;
    padding-top: 64px;
  }
  .p-bottomArea__concept img {
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .p-float-btn {
    right: 19px;
    bottom: 0;
  }
  .p-float-btn button {
    width: 74px;
    height: 74px;
  }
  .p-drawer-menu {
    padding-bottom: 0;
  }
  .p-drawer-menu__inner {
    flex-direction: row;
  }
  .p-drawer-menu__concept {
    width: 33.3333333333%;
    position: sticky;
    top: 0;
    left: 0;
    height: calc(100vh - 64px);
    margin-top: 0;
  }
  .p-drawer-menu__concept img {
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .p-drawer-menu__contents {
    width: 66.6666666667%;
    padding: 80px 0 100px;
  }
  .p-drawer-search {
    padding-bottom: 0;
    overflow-y: visible;
  }
  .p-drawer-search__inner {
    flex-direction: row;
  }
  .p-drawer-search__inner .p-category__item {
    width: 100%;
  }
  .p-drawer-search__inner .p-category__item:nth-child(2n+1) {
    border-right: none;
  }
  .p-drawer-search__inner .p-category__item:nth-child(n+2) {
    border-top: solid 1px #efefef;
  }
  .p-drawer-search__searchBlock {
    width: 33.3333333333%;
    height: 100vh;
    overflow: auto;
  }
  .p-drawer-search__searchBlock .p-recommendTag__listWrap {
    padding: 0 10px 0 26px;
  }
  .p-drawer-search__articles {
    width: 66.6666666667%;
    height: 100vh;
    overflow: auto;
  }
  .p-drawer-search__title-wrap {
    padding: 0 26px;
  }
  .p-drawer-search__title {
    font-size: 2.4rem;
    margin-bottom: 43px;
    padding-left: 0;
  }
  .p-information__category-list {
    padding: 0;
    flex-direction: row;
    flex-wrap: wrap;
    -moz-column-gap: 38px;
         column-gap: 38px;
    row-gap: 7px;
    padding: 0 40px 0 40px;
  }
  .p-information__category-item {
    padding: 20px 10px 16px 20px;
    width: 100%;
  }
  .p-information__category-link {
    gap: 22px;
  }
  .p-information__category-link-txt {
    font-size: 1.6rem;
  }
  .p-information__category-link-imgWrap {
    max-width: 64px;
  }
  .p-information__lipps-link-list {
    padding: 0;
    flex-direction: row;
    flex-wrap: wrap;
    -moz-column-gap: 38px;
         column-gap: 38px;
    row-gap: 8px;
    margin-top: 67px;
    padding: 0 40px 0 40px;
  }
  .p-information__lipps-link-item {
    padding: 20px 40px 16px 20px;
    width: 100%;
  }
  .p-information__lipps-link {
    gap: 22px;
  }
  .p-information__lipps-link::after {
    display: block;
  }
  .p-information__lipps-link-logoWrap {
    width: 56px;
  }
  .p-information__lipps-link-name {
    font-size: 1.4rem;
  }
  .p-information__lipps-link-txt {
    font-size: 1.4rem;
  }
  .p-information__external-link-list {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 83px;
    padding: 0 40px 0 40px;
    -moz-column-gap: 44px;
         column-gap: 44px;
    row-gap: 32px;
  }
  .p-information__external-link-item {
    max-width: 400px;
    width: 100%;
  }
  .p-information__sns {
    margin-top: 70px;
    padding: 0 40px 0 40px;
  }
  .p-information__sns-txt {
    font-size: 1.6rem;
  }
  .p-information__sns-list {
    margin-top: 28px;
    gap: 40px;
  }
  .p-information__sns-item,
  .p-information__sns-btn {
    width: 56px;
  }
  .p-information__sns-item:hover,
  .p-information__sns-btn:hover {
    opacity: 0.7;
  }
  .p-recommendTag__list {
    width: 100%;
    padding-bottom: 0;
    margin-top: 12px;
  }
  .p-recommendTag__item a {
    font-weight: 700;
  }
  .p-category__list {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
  .p-category__link {
    gap: 20px;
    padding: 0 26px;
  }
  .p-category__txt {
    font-size: 1.6rem;
  }
  .p-search {
    padding: 0;
  }
  .p-drawer-search__searchBlock .p-search {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 23px;
  }
  .p-drawer-menu__contents .p-search__input-wrap {
    margin: 0 auto 60px;
  }
  .p-share-modal {
    padding: 27px 10px;
  }
  .p-share-modal .p-information__sns {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
  }
  .p-share-modal .p-information__sns .p-information__sns-list {
    margin-top: 0;
  }
  .p-share-modal__close-btn {
    top: 50%;
    right: 48px;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
  }
  .p-share-modal__close-btn::before, .p-share-modal__close-btn::after {
    width: 22px;
    height: 2px;
  }
  .p-share-modal__copy-board {
    width: 20%;
  }
  .p-other {
    padding: 0 40px;
  }
  .p-other h1 {
    font-size: 4rem;
  }
  .p-other p {
    font-size: 2rem;
  }
  .u-dsp-sp {
    display: none;
  }
  .u-dsp-pc {
    display: block;
  }
  .u-newLine-pc::before {
    content: "\a";
    white-space: pre;
  }
  .u-newLine-sp::before {
    content: none;
  }
}
@media screen and (min-width: 1280px){
  .l-container {
    padding-right: 0;
    padding-left: 0;
  }
  .p-top .l-header.is-scrolling .l-header__inner {
    padding: 6px 56px 0 0;
  }
  .p-top .l-header.is-drawer-open .l-header__inner {
    padding: 6px 56px 0 0;
  }
  .l-header__inner {
    padding: 6px 56px 0 0;
  }
  .p-top .l-header__inner {
    padding: 40px 56px 0 0;
  }
  .p-header__rightBlock {
    margin-right: 0;
  }
  .p-top-mv__textBlock {
    top: calc(50% + 88px);
    left: calc((100vw - 1280px) / 2);
  }
  .p-list-articleCard__listWrap {
    padding: 60px 0;
  }
  .p-list__head {
    padding: 40px 0 48px;
  }
  .p-list__featuredArticle {
    padding: 40px 0;
  }
  .p-list-recommendTag {
    padding: 60px 0 0;
  }
  .p-drawer-search__inner .p-category__item {
    width: 50%;
  }
  .p-drawer-search__inner .p-category__item:nth-child(2) {
    border-top: none;
  }
  .p-drawer-search__inner .p-category__item:nth-child(2n+1) {
    border-right: solid 1px #efefef;
  }
  .p-information__category-list {
    padding: 0 80px 0 40px;
  }
  .p-information__lipps-link-list {
    padding: 0 80px 0 40px;
  }
  .p-information__external-link-list {
    padding: 0 80px 0 40px;
  }
  .p-information__sns {
    padding: 0 80px 0 40px;
  }
  .p-drawer-search__searchBlock .p-search {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 576px){
  .c-bullet-list--horiz {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -1rem;
  }
  .c-bullet-list--horiz .c-bullet-list__item {
    flex: calc(50% - 2.5rem) 1;
    margin-right: 1rem;
  }
  .c-bullet-list--horiz .c-bullet-list__item:nth-of-type(even) {
    margin-right: 0;
  }
}
@media screen and (min-width: 992px){
  .p-top-trendTag__inner {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
  .p-top-trendTag__head {
    grid-area: 1/2/2/3;
    padding-left: 54px;
    padding-top: 35px;
  }
  .p-top-trendTag__snap-list {
    grid-area: 1/1/3/2;
  }
  .p-top-trendTag__detail-list {
    grid-area: 2/2/3/3;
  }
  .p-top-trendTag__contents {
    display: flex;
    margin-top: 0;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
  .p-top-trendTag__detail-list {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .p-top-trendTag__detail-item {
    padding: 0;
    padding-left: 59px;
  }
  .p-top-articleCard__list {
    padding: 0;
  }
  .p-top-articleCard__list .p-articleCard {
    width: calc((100% - 80px) / 3);
  }
  .p-top-category__item {
    width: 25%;
    height: 140px;
  }
  .p-top-category__item:nth-child(2n+1) {
    border-right: none;
  }
  .p-top-category__item:nth-child(n+3) {
    border-top: none;
  }
  .p-top-category__item + .p-top-category__item {
    border-left: solid 1px #efefef;
  }
  .p-detail__head-inner {
    padding: 0;
  }
  .p-detail__contents-inner {
    padding-left: 0;
    padding-right: 0;
  }
  .p-list-articleCard__list .p-articleCard {
    width: calc((100% - 80px) / 3);
  }
  .p-list__featuredArticle-inner {
    gap: 60px;
  }
  .p-randomArticle {
    padding: 100px 80px 100px 40px;
  }
  .p-drawer-search__articles .p-randomArticle {
    padding: 50px 80px 100px 40px;
  }
  .p-information__category-item {
    width: calc((100% - 38px) / 2);
  }
  .p-information__lipps-link-item {
    width: calc((100% - 38px) / 2);
  }
  .p-information__external-link-item {
    width: calc((100% - 44px) / 2);
  }
}
@media (min-width: 375px){
  .p-top-trendTag__snap-list {
    height: 400px;
  }
  .p-top-trendTag__slide-dots {
    margin-left: 70px;
    margin-right: 70px;
  }
  .p-bottomNavBar__inner {
    padding: 9px 55px 8px;
  }
}
@media (min-width: 768px){
  .p-top-trendTag__snap-list {
    height: 530px;
  }
  .p-top-trendTag__slide-dots {
    margin-left: 127px;
    margin-right: 127px;
  }
}
@media (min-width: 992px){
  .p-top-trendTag__snap-list {
    max-width: 637px;
    margin-right: 40px;
    margin-top: 0;
  }
}
@media (min-width: 1280px){
  .p-top-ranking__splide {
    margin-left: calc((100vw - 1280px) / 2);
    width: 1360px;
  }
  .p-top-ranking__splide .splide__arrow--prev {
    left: -40px;
  }
}
@media print{
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #000 !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
