@charset "UTF-8";
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: normal;
  src: url('./NotoSansJP-Regular.eot?') format('eot');
  src: url('./NotoSansJP-Regular.eot?#iefix') format('embedded-opentype'),
      url('./NotoSansJP-Regular.woff2') format('woff2'),
      url('./NotoSansJP-Regular.woff') format('woff'),
      url('./NotoSansJP-Regular.otf') format('opentype');
}
@font-face {
  font-family: 'Oxygen';
  font-style: normal;
  font-weight: normal;
  src: url('./Oxygen-Regular.eot?') format('eot');
  src: url('./Oxygen-Regular.eot?#iefix') format('embedded-opentype'),
      url('./Oxygen-Regular.woff2') format('woff2'),
      url('./Oxygen-Regular.woff') format('woff'),
      url('./Oxygen-Regular.ttf') format('truetype');
}
@font-face {
  font-display: block;
  font-family: "icomoon";
  font-style: normal;
  src: url("./icomoon.ttf") format("truetype");
}

html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  height: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  width: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  min-height: 0%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl,
dd,
small,
address {
  font: inherit;
  margin: 0;
  padding: 0;
}

body {
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

b,
strong {
  font-weight: bolder;
}

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

ul,
ol {
  list-style: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: top;
}

img {
  border: 0;
  height: auto;
  max-width: 100%;
}

svg:not([fill]) {
  fill: currentColor;
}

svg:not(:root) {
  overflow: hidden;
}

iframe {
  border-style: none;
}

input,
button,
select,
textarea {
  font: inherit;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

input[type="text"] {
  line-height: normal;
}
img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
button,
[type="submit"],
[type="reset"],
[type="button"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type="text"]::-ms-clear {
  visibility: hidden;
}

[type="password"]::-ms-reveal {
  visibility: hidden;
}

[type="number"]::-webkit-outer-spin-button,
[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: none;
}

*,
*::before,
*::after {
  letter-spacing: .04em;
}

html {
  font-size: 62.5%;
}

body {
  background: #fff;
  color: #1c1c1c;
  display: flex;
  flex-direction: column;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.2rem;
  line-height: 1.67;
  opacity: 0;
  padding-top: var(--headerHeight);
  pointer-events: none;
  word-break: break-all;
}

body::before {
  background: #000;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: opacity .6s cubic-bezier(.19, 1, .22, 1);
  width: 100%;
  z-index: 4;
}

body[data-pageLoad="true"] {
  opacity: 1;
  pointer-events: auto;
}

body[data-headerDrawerOpen="true"] {
  overflow: hidden;
  touch-action: none;
}

body[data-modalOpen="true"] {
  overflow: hidden;
}

body[data-modalOpen="true"]::before {
  opacity: .7;
  pointer-events: auto;
}

::placeholder {
  color: #bebebe;
}

::selection {
  background: #9d9d9d;
  color: #fff;
}

@font-face {
  font-display: block;
  font-family: "icomoon";
  font-style: normal;
  src: url("./icomoon.ttf?k0abn4") format("truetype"), url("./icomoon.woff?k0abn4") format("woff"), url("./icomoon.svg?k0abn4#icomoon") format("svg");
}

.l-floating {
  bottom: 0;
  position: fixed;
  right: 0;
  transition: opacity .6s cubic-bezier(.19, 1, .22, 1);
  z-index: 2;
}

body[data-scrollStart="true"] .l-floating {
  opacity: 1;
  pointer-events: auto;
}

.l-floating,
body[data-scrollEnd="true"] .l-floating {
  opacity: 0;
  pointer-events: none;
}

.l-header {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0);
  position: fixed;
  right: 0;
  top: 0;
  transition: box-shadow .6s cubic-bezier(.19, 1, .22, 1);
  z-index: 3;
}

body[data-scrollStart="true"] .l-header {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
}

.l-main {
  flex-grow: 1;
}

.c-area {
  padding-left: 2rem;
  padding-right: 2rem;
  width: 100%;
}

.c-article__section {
  padding-bottom: 6rem;
  padding-top: 6rem;
}

.c-article__section .c-article__section:last-child {
  padding-bottom: 0;
}

.c-article__section.--sub {
  padding: 3.5rem 0;
}

.c-article__section:first-child:not(.--sub) {
  padding-top: 0;
}

.c-article__section[data-background="primary"] {
  background: #eee;
}

.c-article__section:not([data-background]) + .c-article__section:not([data-background]),
script + .c-article__section:not([data-background]) {
  margin-top: -6.5rem;
}

.c-anchorButton {
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: #1c1c1c;
  display: inline-flex;
  font-size: 1.5rem;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
  padding: 1rem 3rem 1rem 1rem;
  position: relative;
  text-align: left;
  transition: background .6s cubic-bezier(.19, 1, .22, 1), color .6s cubic-bezier(.19, 1, .22, 1);
  width: 100%;
  height: 100%;
}

.c-anchorButton::before {
  content: "\e900";
  font-family: "icomoon" !important;
  font-size: 1.3rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 1.1rem;
  text-transform: none;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}

.c-button {
  -webkit-appearance: none;
  appearance: none;
  background: #e21919;
  border: 0;
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  font-size: 1.6rem;
  font-weight: bold;
  justify-content: center;
  line-height: 1.4;
  padding: 1.4rem 3.5rem 1.3rem;
  position: relative;
  text-align: left;
  width: 100%;
}

.c-button::before {
  align-items: center;
  background: #fff;
  border-radius: 2rem;
  color: #e21919;
  content: "\e901";
  display: flex;
  font-family: "icomoon" !important;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-weight: bold !important;
  height: 2rem;
  justify-content: center;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 1.1rem;
  text-transform: none;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
}

.c-button[data-secondaryButton="back"]::before {
  content: "\e901";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  left: 1.1rem;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  right: auto;
  text-transform: none;
}

.c-mapButton {
  align-items: center;
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 5px;
  color: #1c1c1c;
  display: inline-flex;
  font-size: 1.5rem;
  justify-content: center;
  line-height: 1.4;
  padding: 1.5rem 2rem 1.7rem;
  text-align: left;
  transition: border-color .6s cubic-bezier(.19, 1, .22, 1), color .6s cubic-bezier(.19, 1, .22, 1);
  width: 100%;
}

.c-mapButton::before {
  color: #e21919;
  content: "\e90b";
  font-family: "icomoon" !important;
  font-size: 1.8rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  padding-right: 1.4rem;
  text-transform: none;
  transform: translateY(.2rem);
}

.c-secondaryButton {
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  border: 1px solid currentColor;
  border-radius: 5px;
  color: #e21919;
  display: inline-flex;
  font-size: 1.4rem;
  justify-content: center;
  line-height: 1.4;
  padding: .933em 3rem;
  position: relative;
  text-align: left;
  transition: background .6s cubic-bezier(.19, 1, .22, 1), color .6s cubic-bezier(.19, 1, .22, 1);
  width: 100%;
}

.c-secondaryButton::before {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 2.2rem;
  color: currentColor;
  content: "\e901";
  display: flex;
  font-family: "icomoon" !important;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  height: 2.2rem;
  justify-content: center;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 1rem;
  text-transform: none;
  top: 50%;
  transform: translateY(-50%) scale(.7);
  transition: background .6s cubic-bezier(.19, 1, .22, 1), color .6s cubic-bezier(.19, 1, .22, 1);
  width: 2.2rem;
}

.c-secondaryButton[data-secondaryButton="back"]::before {
  content: "\e901";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  left: 1.1rem;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  right: auto;
  text-transform: none;
}

.c-secondaryButton[data-sub="true"] {
  color: #1c1c1c;
  font-size: 1.2rem;
}

.c-tertiaryButton {
  align-items: center;
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 5px;
  color: #1c1c1c;
  display: inline-flex;
  font-size: 1.4rem;
  height: 100%;
  justify-content: center;
  line-height: 1.4;
  padding: 1rem 2.5rem .9rem;
  position: relative;
  text-align: left;
  transition: border-color .6s cubic-bezier(.19, 1, .22, 1), color .6s cubic-bezier(.19, 1, .22, 1);
  width: 100%;
}

.c-tertiaryButton::before {
  color: #e21919;
  content: "\e901";
  font-family: "icomoon" !important;
  font-size: 1.3rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: .8rem;
  text-transform: none;
  top: 50%;
  transform: translateY(-50%);
}

.c-container__content + .c-container__content {
  padding-top: 6rem;
}

.c-container__head + .c-container__body {
  padding-top: 2rem;
}

.c-quaternaryContainer__content + .c-quaternaryContainer__content {
  padding-top: 1.5rem;
}

.c-quaternaryContainer__head + .c-quaternaryContainer__body {
  padding-top: 1rem;
}

.c-secondaryContainer__content + .c-secondaryContainer__content {
  padding-top: 3rem;
}

.c-secondaryContainer__head + .c-secondaryContainer__body {
  padding-top: 1.6rem;
}

.current-purchase-price {
  display: block;
  text-align: right;
  font-size: small;
}

.c-tertiaryContainer__content + .c-tertiaryContainer__content {
  padding-top: 1.6rem;
}

.c-tertiaryContainer__head + .c-tertiaryContainer__body {
  padding-top: 1.5rem;
}

.c-grid {
  display: flex;
  flex-wrap: wrap;
}

.c-grid[data-grid~="xs-left"] {
  justify-content: flex-start;
}

.c-grid[data-grid~="xs-center"] {
  justify-content: center;
}

.c-grid[data-grid~="xs-right"] {
  justify-content: flex-end;
}

.c-grid[data-grid~="xs-space-between"] {
  justify-content: space-between;
}

.c-grid[data-grid~="xs-top"] {
  align-items: flex-start;
}

.c-grid[data-grid~="xs-middle"] {
  align-items: center;
}

.c-grid[data-grid~="xs-bottom"] {
  align-items: flex-end;
}

.c-grid[data-grid~="xs-row-reverse"] {
  flex-direction: row-reverse;
}

.c-grid[data-grid~="xs-column-reverse"] {
  flex-direction: column-reverse;
}

.c-grid[data-grid~="xs-5"] {
  margin: -.5rem 0 0 -.5rem;
}

.c-grid[data-grid~="xs-5"] > .c-grid__item {
  border-width: .5rem 0 0 .5rem;
}

.c-grid[data-grid~="xs-10"] {
  margin: -1rem 0 0 -1rem;
}

.c-grid[data-grid~="xs-10"] > .c-grid__item {
  border-width: 1rem 0 0 1rem;
}

.c-grid[data-grid~="xs-15"] {
  margin: -1.5rem 0 0 -1.5rem;
}

.c-grid[data-grid~="xs-15"] > .c-grid__item {
  border-width: 1.5rem 0 0 1.5rem;
}

.c-grid[data-grid~="xs-20"] {
  margin: -2rem 0 0 -2rem;
}

.c-grid[data-grid~="xs-20"] > .c-grid__item {
  border-width: 2rem 0 0 2rem;
}

.c-grid[data-grid~="xs-25"] {
  margin: -2.5rem 0 0 -2.5rem;
}

.c-grid[data-grid~="xs-25"] > .c-grid__item {
  border-width: 2.5rem 0 0 2.5rem;
}

.c-grid[data-grid~="xs-30"] {
  margin: -3rem 0 0 -3rem;
}

.c-grid[data-grid~="xs-30"] > .c-grid__item {
  border-width: 3rem 0 0 3rem;
}

.c-grid[data-grid~="xs-35"] {
  margin: -3.5rem 0 0 -3.5rem;
}

.c-grid[data-grid~="xs-35"] > .c-grid__item {
  border-width: 3.5rem 0 0 3.5rem;
}

.c-grid[data-grid~="xs-40"] {
  margin: -4rem 0 0 -4rem;
}

.c-grid[data-grid~="xs-40"] > .c-grid__item {
  border-width: 4rem 0 0 4rem;
}

.c-grid[data-grid~="xs-45"] {
  margin: -4.5rem 0 0 -4.5rem;
}

.c-grid[data-grid~="xs-45"] > .c-grid__item {
  border-width: 4.5rem 0 0 4.5rem;
}

.c-grid[data-grid~="xs-50"] {
  margin: -5rem 0 0 -5rem;
}

.c-grid[data-grid~="xs-50"] > .c-grid__item {
  border-width: 5rem 0 0 5rem;
}

.c-grid[data-grid~="xs-55"] {
  margin: -5.5rem 0 0 -5.5rem;
}

.c-grid[data-grid~="xs-55"] > .c-grid__item {
  border-width: 5.5rem 0 0 5.5rem;
}

.c-grid[data-grid~="xs-60"] {
  margin: -6rem 0 0 -6rem;
}

.c-grid[data-grid~="xs-60"] > .c-grid__item {
  border-width: 6rem 0 0 6rem;
}

.c-grid[data-grid~="xs-65"] {
  margin: -6.5rem 0 0 -6.5rem;
}

.c-grid[data-grid~="xs-65"] > .c-grid__item {
  border-width: 6.5rem 0 0 6.5rem;
}

.c-grid[data-grid~="xs-70"] {
  margin: -7rem 0 0 -7rem;
}

.c-grid[data-grid~="xs-70"] > .c-grid__item {
  border-width: 7rem 0 0 7rem;
}

.c-grid[data-grid~="xs-75"] {
  margin: -7.5rem 0 0 -7.5rem;
}

.c-grid[data-grid~="xs-75"] > .c-grid__item {
  border-width: 7.5rem 0 0 7.5rem;
}

.c-grid[data-grid~="xs-80"] {
  margin: -8rem 0 0 -8rem;
}

.c-grid[data-grid~="xs-80"] > .c-grid__item {
  border-width: 8rem 0 0 8rem;
}

.c-grid[data-grid~="xs-85"] {
  margin: -8.5rem 0 0 -8.5rem;
}

.c-grid[data-grid~="xs-85"] > .c-grid__item {
  border-width: 8.5rem 0 0 8.5rem;
}

.c-grid[data-grid~="xs-90"] {
  margin: -9rem 0 0 -9rem;
}

.c-grid[data-grid~="xs-90"] > .c-grid__item {
  border-width: 9rem 0 0 9rem;
}

.c-grid[data-grid~="xs-95"] {
  margin: -9.5rem 0 0 -9.5rem;
}

.c-grid[data-grid~="xs-95"] > .c-grid__item {
  border-width: 9.5rem 0 0 9.5rem;
}

.c-grid[data-grid~="xs-100"] {
  margin: -10rem 0 0 -10rem;
}

.c-grid[data-grid~="xs-100"] > .c-grid__item {
  border-width: 10rem 0 0 10rem;
}

.c-grid[data-grid~="xs-105"] {
  margin: -10.5rem 0 0 -10.5rem;
}

.c-grid[data-grid~="xs-105"] > .c-grid__item {
  border-width: 10.5rem 0 0 10.5rem;
}

.c-grid[data-grid~="xs-110"] {
  margin: -11rem 0 0 -11rem;
}

.c-grid[data-grid~="xs-110"] > .c-grid__item {
  border-width: 11rem 0 0 11rem;
}

.c-grid[data-grid~="xs-115"] {
  margin: -11.5rem 0 0 -11.5rem;
}

.c-grid[data-grid~="xs-115"] > .c-grid__item {
  border-width: 11.5rem 0 0 11.5rem;
}

.c-grid[data-grid~="xs-120"] {
  margin: -12rem 0 0 -12rem;
}

.c-grid[data-grid~="xs-120"] > .c-grid__item {
  border-width: 12rem 0 0 12rem;
}

.c-grid[data-grid~="xs-0"] {
  margin: 0;
}

.c-grid[data-grid~="xs-0"] > .c-grid__item {
  border-width: 0;
}

.c-grid__item {
  background-clip: padding-box;
  border: solid transparent;
}

.c-grid__item[data-gridItem~="xs-1"] {
  width: 8.33333%;
}

.c-grid__item[data-gridItem~="xs-2"] {
  width: 16.66667%;
}

.c-grid__item[data-gridItem~="xs-3"] {
  width: 25%;
}

.c-grid__item[data-gridItem~="xs-4"] {
  width: 33.33333%;
}

.c-grid__item[data-gridItem~="xs-5"] {
  width: 41.66667%;
}

.c-grid__item[data-gridItem~="xs-6"] {
  width: 50%;
}

.c-grid__item[data-gridItem~="xs-7"] {
  width: 58.33333%;
}

.c-grid__item[data-gridItem~="xs-8"] {
  width: 66.66667%;
}

.c-grid__item[data-gridItem~="xs-9"] {
  width: 75%;
}

.c-grid__item[data-gridItem~="xs-10"] {
  width: 83.33333%;
}

.c-grid__item[data-gridItem~="xs-11"] {
  width: 91.66667%;
}

.c-grid__item[data-gridItem~="xs-12"] {
  width: 100%;
}

.c-grid__item[data-gridItem~="xs-five"] {
  width: 20%;
}

.c-grid__item[data-gridItem~="xs-seven"] {
  width: 14.285%;
}

.c-grid__item[data-gridItem~="xs-eleven"] {
  width: 9.09%;
}

.c-grid__item[data-gridItem~="xs-auto"] {
  width: auto;
}

.c-link {
  background: none;
  border: 0;
  color: #e21919;
  padding: 0;
}

.c-link[data-blue="true"] {
  color: #074b98;
}

.c-link[target="_blank"] {
  padding-right: 1.388em;
  position: relative;
}

.c-link[target="_blank"]::after {
  bottom: .1em;
  content: "\e902";
  font-family: "icomoon" !important;
  font-size: .9375em;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  padding-left: .1875em;
  position: absolute;
  text-transform: none;
}

.c-orderedList {
  line-height: 1.428;
}

.c-orderedList::before,
.c-orderedList::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.c-orderedList::before {
  margin-top: calc((1 - 1.428) * .5em);
}

.c-orderedList::after {
  margin-bottom: calc((1 - 1.428) * .5em);
}

.c-orderedList__item {
  counter-increment: orderList;
  padding-left: 2rem;
  position: relative;
}

.c-orderedList__item::before {
  content: counter(orderList) ".";
  font-size: 1.1em;
  left: 0;
  position: absolute;
  top: calc(((1.428 - 1) * .5em) + .5em);
  transform: translateY(-50%);
}

.c-orderedList__item + .c-orderedList__item {
  margin-top: .9rem;
}

.c-unorderedList {
  line-height: 1.428;
}

.c-unorderedList::before,
.c-unorderedList::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.c-unorderedList::before {
  margin-top: calc((1 - 1.428) * .5em);
}

.c-unorderedList::after {
  margin-bottom: calc((1 - 1.428) * .5em);
}

.c-unorderedList__item {
  padding-left: 1.5rem;
  position: relative;
}

.c-unorderedList__item::before {
  background: #e21919;
  border-radius: 100%;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  top: calc(((1.428 - 1) * .5em) + .5em + .2rem);
  transform: translateY(-50%);
  width: 4px;
}

.c-unorderedList__item + .c-unorderedList__item {
  margin-top: .9rem;
}

.c-modal {
  height: calc(100vh - 12rem);
  height: calc(var(--viewHeight) - 12rem);
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 4;
}

body[data-pageLoad="true"] .c-modal {
  transition: opacity .6s cubic-bezier(.19, 1, .22, 1);
}

.c-modal[data-modalOpen="true"] {
  opacity: 1;
  pointer-events: auto;
}

.c-modal__inner {
  align-items: center;
  display: inline-flex;
  height: 100%;
  width: 100%;
}

.c-modal__content {
  background: #fff;
  display: flex;
  flex-direction: column;
  max-height: 100%;
  padding: 1.5rem 2rem 2rem;
  text-align: left;
  width: 100%;
}

.c-modal__close {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  display: block;
  height: 3.2rem;
  margin: 0 -.5rem 0 auto;
  padding: 0;
  position: relative;
  width: 3.2rem;
}

.c-modal__close::before,
.c-modal__close::after {
  background: #dedede;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 100%;
}

.c-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.c-modal__body {
  overflow-y: scroll;
  padding-top: 1.5rem;
}

.c-note {
  color: #707070;
  font-size: 1.2rem;
}

.c-note {
  line-height: 1.5;
}

.c-note::before,
.c-note::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.c-note::before {
  margin-top: calc((1 - 1.5) * .5em);
}

.c-note::after {
  margin-bottom: calc((1 - 1.5) * .5em);
}

.c-note__item {
  display: block;
}

.c-note__item + .c-note__item {
  padding-top: .3rem;
}

.c-tab__buttonWrap {
  display: flex;
  margin: 0 calc(50% - 50vw);
  -ms-overflow-style: none;
  overflow-x: scroll;
  padding: 0 calc(50vw - 50%);
  scrollbar-width: none;
  width: 100vw;
}

.c-tab__button {
  align-items: center;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: 1px solid #dedede;
  border-bottom: 3px solid #dedede;
  color: #aaa;
  display: flex;
  font-size: 1.6rem;
  height: 5rem;
  justify-content: center;
  margin: 0;
  padding: .3rem 2.7rem 0 2.7rem;
  position: relative;
  text-align: center;
  transition: background .6s cubic-bezier(.19, 1, .22, 1), color .6s cubic-bezier(.19, 1, .22, 1);
  white-space: nowrap;
  width: 100%;
}

.c-tab__button::after {
  background: #1c1c1c;
  bottom: -3px;
  content: "";
  height: 3px;
  left: -1px;
  opacity: 0;
  position: absolute;
  transition: opacity .6s cubic-bezier(.19, 1, .22, 1);
  width: calc(100% + 2px);
}

.c-tab__button + .c-tab__button {
  border-left: 0;
}

.c-tab__button.is-active {
  background: none !important;
  color: #1c1c1c;
  pointer-events: none;
}

.c-tab__button.is-active::after {
  opacity: 1;
}

.c-tab__contentWrap {
  padding-top: 2rem;
}

.c-tab__buttonWrap::-webkit-scrollbar {
  display: none;
}

.c-table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.c-table__row {
  border-bottom: 1px solid #dedede;
}

.c-table__term,
.c-table__desc {
  display: block;
}

.c-table__term {
  font-weight: bold;
  text-align: left;
}

.c-table__row + .c-table__row .c-table__term {
  padding: 1.5rem 0 0 0;
}

.c-table__desc {
  padding: 1.2rem 0 1.4rem;
}

.c-text {
  display: block;
}

.c-text {
  line-height: 1.67;
}

.c-text::before,
.c-text::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.c-text::before {
  margin-top: calc((1 - 1.67) * .5em);
}

.c-text::after {
  margin-bottom: calc((1 - 1.67) * .5em);
}

.c-quaternaryTitle {
  color: #e21919;
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
}

.c-quaternaryTitle {
  line-height: 1.4;
}

.c-quaternaryTitle::before,
.c-quaternaryTitle::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.c-quaternaryTitle::before {
  margin-top: calc((1 - 1.4) * .5em);
}

.c-quaternaryTitle::after {
  margin-bottom: calc((1 - 1.4) * .5em);
}

.c-quinaryTitle {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
}

.c-quinaryTitle {
  line-height: 1.4;
}

.c-quinaryTitle::before,
.c-quinaryTitle::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.c-quinaryTitle::before {
  margin-top: calc((1 - 1.4) * .5em);
}

.c-quinaryTitle::after {
  margin-bottom: calc((1 - 1.4) * .5em);
}

.c-secondaryTitle {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}

.c-tertiaryTitle {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}

.c-tertiaryTitle.--complete {
  background: url(./common/check.svg) center top/4rem no-repeat;
  padding-top: 6rem;
  text-align: center;
}

.c-title {
  color: #e21919;
  display: grid;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.25;
  position: relative;
}

.c-title__sub {
  align-items: center;
  color: #ff9292;
  column-gap: 1rem;
  display: flex;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1rem;
  justify-content: space-between;
  margin-top: .5rem;
  white-space: nowrap;
}

.c-title__sub::after {
  background: #ff9292;
  content: "";
  height: 1px;
  width: calc(100% - 5rem);
}

.p-assessment {
  background: #f8f8f8;
}

.home .p-assessment {
  background: none;
}

.c-article__section + .p-assessment {
  margin-top: 3.8rem !important;
  padding-top: 0;
}

.p-assessment__head {
  transform: translateY(-2rem);
}

.p-assessment__title {
  color: #e21919;
  display: grid;
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
}

.home .p-assessment__title::before {
  background: #ffc7e2;
  bottom: .7rem;
  content: "";
  height: 1px;
  position: absolute;
  right: 0;
  width: calc(100% - 5rem);
}

.home .p-assessment__title::after {
  color: #ffc7e2;
  content: "LIST";
  font-size: 1rem;
}

.p-assessment__body {
  padding-top: .4rem;
}

.home .p-assessment__body {
  margin-top: -1rem;
  padding-top: 0;
}

.p-assessment__subTitle {
  font-size: 2rem;
  font-weight: bold;
}

.p-assessment__genreTitle {
  font-size: 1.8rem;
  font-weight: bold;
}

.home .p-assessmentKeyword {
  background: #f8f8f8;
  margin: 3rem calc(50% - 50vw) 0;
  padding: 3rem 2rem;
}

.p-assessmentKeyword__content {
  margin: 0 auto;
  max-width: 70rem;
}

.p-assessmentKeyword__pickupTitle {
  font-size: 1.4rem;
  font-weight: bold;
}

.p-assessmentKeyword__pickupList {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: .4rem;
}

.p-assessmentKeyword__pickupWord {
  align-items: center;
  background: #1c1c1c;
  border-radius: 1.5rem;
  color: #fff;
  display: flex;
  height: 2.6rem;
  padding: 0 1.4rem;
  transition: background .6s cubic-bezier(.19, 1, .22, 1);
}

.p-assessmentKeyword__search {
  margin-top: 2rem;
  position: relative;
}

.p-assessmentKeyword__searchInput {
  border: 1px solid #bebebe;
  border-radius: 2rem;
  display: block;
  font-size: 1.6rem;
  height: 4rem;
  line-height: 4rem;
  padding: 0 2rem;
  width: 100%;
}

.p-assessmentKeyword__searchButton {
  align-items: center;
  background: #e21919;
  border: 0;
  border-radius: 2rem;
  color: #fff;
  display: flex;
  font-size: 1.6rem;
  font-weight: bold;
  gap: .4rem;
  height: 4rem;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 8.1rem;
}

.p-assessmentKeyword__searchButton::before {
  content: "\e90f";
  font-family: "icomoon" !important;
  font-size: 1.3rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: bold !important;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

.p-assessmentModel {
  align-items: center;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 6px;
  display: flex;
  height: 100%;
  padding: .5rem 1rem;
  transition: border-color .6s cubic-bezier(.19, 1, .22, 1);
}

.p-assessmentModel[data-type="genre"] {
  column-gap: 1rem;
  overflow: hidden;
  position: relative;
}

.p-assessmentModel[data-type="genre"]::before {
  align-items: center;
  background: #eee;
  border-radius: 4rem;
  display: flex;
  font-size: 2.2rem;
  font-weight: normal !important;
  height: 4rem;
  justify-content: center;
  transition: background .6s cubic-bezier(.19, 1, .22, 1);
  width: 4rem;
}

li:nth-child(1) .p-assessmentModel[data-type="genre"]::before {
  content: "\e910";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

li:nth-child(2) .p-assessmentModel[data-type="genre"]::before {
  content: "\e913";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

li:nth-child(3) .p-assessmentModel[data-type="genre"]::before {
  content: "\e90e";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

li:nth-child(4) .p-assessmentModel[data-type="genre"]::before {
  content: "\e906";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

li:nth-child(5) .p-assessmentModel[data-type="genre"]::before {
  content: "\e907";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

.p-assessmentModel[data-type="genre"]::after {
  background: #dedede;
  border-radius: 4rem;
  bottom: 0;
  color: #707070;
  content: "\e901";
  font-family: "icomoon" !important;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-weight: bold !important;
  height: 8rem;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  padding: 2rem 0 0 1.8rem;
  position: absolute;
  right: 0;
  text-align: left;
  text-transform: none;
  transform: translate(50%, 50%) scale(.5);
  transition: background .6s cubic-bezier(.19, 1, .22, 1), color .6s cubic-bezier(.19, 1, .22, 1);
  width: 8rem;
}

.p-assessmentModel__thumbnailImage {
  font-family: "object-fit: contain", sans-serif;
  height: 4rem;
  object-fit: contain;
  width: auto;
}

.p-assessmentModel__name {
  font-size: 1.4rem;
  letter-spacing: .015em;
  line-height: 1.2;
  padding-left: .9rem;
  word-break: auto-phrase;
  word-break: break-word;
}

.p-blockEditor * {
  margin-bottom: 0 !important;
}

.p-blockEditor > * {
  padding-top: 2rem;
}

.p-blockEditor > *:first-child {
  padding-top: 0;
}

.p-blockEditor p:not([class]) {
  line-height: 1.67;
}

.p-blockEditor p:not([class])::before,
.p-blockEditor p:not([class])::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.p-blockEditor p:not([class])::before {
  margin-top: calc((1 - 1.67) * .5em);
}

.p-blockEditor p:not([class])::after {
  margin-bottom: calc((1 - 1.67) * .5em);
}

.p-blockEditor > h2 {
  padding-top: 3rem;
}

.p-blockEditor > h2 + * {
  padding-top: 1.5rem;
}

.p-blockEditor > h3 {
  padding-top: 2rem;
}

.p-blockEditor > h3 + * {
  padding-top: 1.5rem;
}

.p-blockEditor .wp-block-image {
  padding-top: 3rem;
  text-align: center;
}

.p-blockEditor .wp-block-image figcaption {
  font-size: 87.5%;
}

.p-bookingConfirm__table,
.p-bookingConfirm__tableBody,
.p-bookingConfirm__tableRow,
.p-bookingConfirm__tableThumbnail,
.p-bookingConfirm__tableColor,
.p-bookingConfirm__tableCount,
.p-bookingConfirm__tableSize,
.p-bookingConfirm__tableColor {
  display: block;
  line-height: 1;
  padding: 0;
}

.p-bookingConfirm__tableRow {
  border: 1px solid #dedede;
  padding: 1.5rem;
}

.p-bookingConfirm__tableThumbnail {
  align-items: center;
  display: flex;
  height: 16rem;
  justify-content: center;
  margin: 0 auto;
  width: 16rem;
}

.p-bookingConfirm__tableName {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 2rem 0 0 0;
}

.p-bookingConfirm__tableName {
  line-height: 1.444;
}

.p-bookingConfirm__tableName::before,
.p-bookingConfirm__tableName::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.p-bookingConfirm__tableName::before {
  margin-top: calc((1 - 1.444) * .5em);
}

.p-bookingConfirm__tableName::after {
  margin-bottom: calc((1 - 1.444) * .5em);
}

.p-bookingConfirm__tableColor,
.p-bookingConfirm__tableCount,
.p-bookingConfirm__tableSize,
.p-bookingConfirm__tablePrice {
  font-size: 1.6rem;
  padding-top: 1.5rem;
}

.p-bookingConfirm__tablePoint {
  color: #e21919;
}

.p-bookingConfirm__total {
  margin: 0 auto;
  padding-top: 3rem;
}

.p-bookingConfirm__totalInner {
  background: #e5f4f3;
  line-height: 1;
  padding: 2rem;
  text-align: right;
}

.p-bookingConfirm__totalCount {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.p-bookingConfirm__totalCountText {
  color: #e21919;
  font-size: 1.6rem;
  width: 100%;
}

.p-bookingConfirm__totalCountNumber {
  font-size: 1.6rem;
  padding-top: 1rem;
}

.p-bookingConfirm__totalPrice {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-top: 2rem;
}

.p-bookingConfirm__totalPriceText {
  color: #e21919;
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 1rem;
  width: 100%;
}

.p-bookingConfirm__totalPriceNumber {
  font-size: 2.6rem;
  font-weight: bold;
}

.p-bookingConfirm__totalPriceYen {
  font-size: 1.6rem;
  font-weight: bold;
}

.p-bookingDate__button {
  -webkit-appearance: none;
  appearance: none;
  background: #e21919;
  border: 0;
  border-radius: 5px;
  color: #fff;
  display: inline-flex;
  font-size: 1.5rem;
  justify-content: center;
  line-height: 1.4;
  padding: 1.6rem 3.5rem 1.8rem;
  position: relative;
  text-align: left;
  width: 100%;
}

.p-bookingDate__button::before {
  content: "\e901";
  font-family: "icomoon" !important;
  font-size: 1.8rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 2rem;
  text-transform: none;
  top: 50%;
  transform: translateY(-50%);
}

.p-bookingDate__form {
  padding-top: 2rem;
}

.p-bookingDate__formButton {
  padding-top: 3rem;
}

.p-bookingStep {
  column-gap: 1rem;
  display: flex;
}

.p-bookingStep__item {
  align-items: center;
  background: #bababa;
  color: #fff;
  counter-increment: bookingStep;
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  font-weight: bold;
  height: 5rem;
  justify-content: center;
  line-height: 1;
  padding-left: 3rem;
  position: relative;
  width: calc(33.333% - 2px);
}

.p-bookingStep__item::before {
  content: "STEP";
  font-size: 1rem;
  left: .7rem;
  position: absolute;
  top: 1rem;
}

.p-bookingStep__item::after {
  content: "0" counter(bookingStep);
  font-size: 1.6rem;
  font-weight: bold;
  left: 1rem;
  position: absolute;
  top: 2.4rem;
}

.p-bookingStep__item[data-current="true"] {
  background: #e21919;
  color: #fff;
}

.p-breadcrumb {
  display: flex;
  margin: -.7rem 0 -.6rem;
  overflow-x: auto;
  white-space: nowrap;
}

.p-breadcrumb__item + .p-breadcrumb__item {
  padding-left: 2.3rem;
  position: relative;
}

.p-breadcrumb__item + .p-breadcrumb__item::before {
  content: "\e901";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  left: .5rem;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  text-transform: none;
  top: calc(50% + .1rem);
  transform: translateY(-50%) scale(.6);
}

.p-breadcrumb__item:last-child {
  pointer-events: none;
}

.p-breadcrumb__link {
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  text-underline-offset: .3em;
}

.p-breadcrumb__text {
  font-size: 1rem;
  position: relative;
}

.p-breadcrumb__home {
  padding-left: 2.3rem;
}

.p-breadcrumb__home::before {
  color: #e21919;
  content: "\e909";
  font-family: "icomoon" !important;
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  left: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  padding-right: .8rem;
  position: absolute;
  text-transform: none;
  top: 50%;
  transform: translateY(-50%);
}

.p-cart__box {
  border: 1px solid #dedede;
  border-radius: 8px;
  margin-top: 5rem;
  padding: 2rem;
}

.p-cartForm__table,
.p-cartForm__tableBody,
.p-cartForm__thumbnail,
.p-cartForm__carrier,
.p-cartForm__type,
.p-cartForm__name,
.p-cartForm__color,
.p-cartForm__size,
.p-cartForm__rank,
.p-cartForm__count,
.p-cartForm__price,
.p-cartForm__remove {
  display: block;
  line-height: 1;
  padding: 0;
}

.p-cartForm__tableItem {
  align-items: start;
  column-gap: 1rem;
  display: grid;
  grid-template: repeat(5, auto)/10rem 1fr;
  justify-items: start;
  min-height: 13.3rem;
  position: relative;
}

.p-cartForm__tableItem + .p-cartForm__tableItem {
  margin-top: 4.5rem;
}

.p-cartForm__thumbnail {
  grid-area: 1 / 1 / 6 / 2;
  height: 10rem;
  position: relative;
  width: 10rem;
}

.p-cartForm__thumbnailImage {
  font-family: "object-fit: contain", sans-serif;
  height: 8rem;
  left: 50%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8rem;
}

.p-cartForm__carrier {
  background: #1c1c1c;
  border-radius: 13px;
  color: #fff;
  font-size: 1rem;
  grid-area: 1 / 2;
  padding: .4rem 2rem;
  white-space: nowrap;
}

.p-cartForm__name {
  font-size: 1.6rem;
  font-weight: bold;
  grid-area: 2 / 2;
  letter-spacing: 0;
  padding-top: .9rem;
}

.p-cartForm__name {
  line-height: 1.5;
}

.p-cartForm__name::before,
.p-cartForm__name::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.p-cartForm__name::before {
  margin-top: calc((1 - 1.5) * .5em);
}

.p-cartForm__name::after {
  margin-bottom: calc((1 - 1.5) * .5em);
}

.p-cartForm__rank {
  font-size: 1.2rem;
  grid-area: 3 / 2;
  padding-top: 1.1rem;
}

.p-cartForm__count {
  font-size: 1.2rem;
  grid-area: 4 / 2;
  padding-top: .6rem;
}

.p-cartForm__price {
  grid-area: 5 / 2;
  padding-top: .6rem;
}

.p-cartForm__remove {
  left: 1rem;
  position: absolute;
  top: 11rem;
  white-space: nowrap;
}

.p-cartForm__removeButton {
  align-items: center;
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  border: 1px solid currentColor;
  border-radius: 5px;
  color: #1c1c1c;
  display: flex;
  height: 2.4rem;
  justify-content: center;
  transition: border-color .6s cubic-bezier(.19, 1, .22, 1), color .6s cubic-bezier(.19, 1, .22, 1);
  width: 8rem;
}

.p-cartMore {
  border-top: 1px solid #dedede;
  display: grid;
  margin-top: 2rem;
  padding-top: 2rem;
  row-gap: 1rem;
}

.p-cartMore__title {
  font-size: 1.4rem;
  font-weight: bold;
}

.p-cartMore__title {
  line-height: 1.4;
}

.p-cartMore__title::before,
.p-cartMore__title::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.p-cartMore__title::before {
  margin-top: calc((1 - 1.4) * .5em);
}

.p-cartMore__title::after {
  margin-bottom: calc((1 - 1.4) * .5em);
}

.p-cartMore__button {
  max-width: 30rem;
  width: 100%;
}

.p-cartPrice {
  align-items: baseline;
  display: grid;
  grid-template-columns: auto 1fr;
  line-height: 1;
  row-gap: 1rem;
}

.p-cartPrice__count {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: right;
}

.p-cartPrice__price {
  color: #e21919;
  font-weight: bold;
  text-align: right;
}

.p-cartPrice__price > span {
  font-size: 2rem;
}

.p-cartReserve {
  display: grid;
  margin-top: 3rem;
  row-gap: 1.5rem;
}

.p-cartReserve__button {
  align-items: center;
  background: #e21919;
  border-radius: 6px;
  color: #fff;
  column-gap: .5rem;
  display: flex;
  font-size: 1.6rem;
  font-weight: bold;
  height: 5rem;
  justify-content: center;
  letter-spacing: 0;
  padding-right: 2.5rem;
  position: relative;
}

.p-cartReserve__button::before {
  content: "\e912";
  font-family: "icomoon" !important;
  font-size: 2rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

.p-cartReserve__button::after {
  content: "\e901";
  font-family: "icomoon" !important;
  font-size: 1.3rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 1rem;
  text-transform: none;
  top: 50%;
  transform: translateY(-50%);
}

.p-columnArchive {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.p-columnArchive__item {
  width: 100%;
}

.p-columnArchive__link {
  align-items: flex-start;
  display: flex;
}

.p-columnArchive__thumbnail {
  border-radius: 4px;
  height: 6.9rem;
  min-width: 12.8rem;
  overflow: hidden;
  width: 12.8rem;
}

.p-columnArchive__thumbnailImage {
  font-family: "object-fit: cover", sans-serif;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.19, 1, .22, 1);
  width: 100%;
}

.p-columnArchive__content {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-left: 1rem;
}

.p-columnArchive__category {
  align-items: center;
  background: #e21919;
  border-radius: 13px;
  color: #fff;
  display: flex;
  font-size: 1rem;
  height: 1.8rem;
  justify-content: center;
  width: 10rem;
}

.p-columnArchive__title {
  font-size: 1.4rem;
  font-weight: bold;
  transition: color .6s cubic-bezier(.19, 1, .22, 1);
  width: 100%;
}

.p-columnArchive__title {
  line-height: 1.5;
}

.p-columnArchive__title::before,
.p-columnArchive__title::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.p-columnArchive__title::before {
  margin-top: calc((1 - 1.5) * .5em);
}

.p-columnArchive__title::after {
  margin-bottom: calc((1 - 1.5) * .5em);
}

.p-columnCategory {
  border-bottom: 1px solid #dedede;
  display: flex;
}

.p-columnCategory__item {
  width: 25%;
}

.p-columnCategory__link {
  color: #707070;
  display: block;
  padding: .5rem 0;
  position: relative;
  text-align: center;
}

.p-columnCategory__link[data-current="true"] {
  color: #e21919;
}

.p-columnCategory__link[data-current="true"]::after {
  background: #e21919;
  bottom: -1px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}

.p-consideration__title {
  font-size: 2.2rem;
  font-weight: bold;
}

.p-consideration__title {
  line-height: 1.3;
}

.p-consideration__title::before,
.p-consideration__title::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.p-consideration__title::before {
  margin-top: calc((1 - 1.3) * .5em);
}

.p-consideration__title::after {
  margin-bottom: calc((1 - 1.3) * .5em);
}

.p-consideration__titleInner {
  padding-left: 3rem;
  position: relative;
}

.p-consideration__titleInner::before {
  color: #e21919;
  content: "\e901";
  font-family: "icomoon" !important;
  font-size: 1.153em;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  left: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  text-transform: none;
  top: .5rem;
}

.p-consideration__body {
  padding-top: 1.5rem;
}

.p-customer__title {
  display: grid;
  font-size: 1.6rem;
  font-weight: bold;
}

.p-customer__title > span {
  align-items: center;
  color: #e21919;
  column-gap: .6rem;
  display: flex;
  font-size: 1rem;
  margin-bottom: -.4rem;
}

.p-customer__title > span::before {
  background: currentColor;
  border-radius: .7rem;
  content: "";
  height: 1px;
  width: .7rem;
}

.p-customer__text {
  margin-top: 2rem;
}

.p-customer__content {
  background: #f7f7f7;
  border-radius: .8rem;
  margin-top: 2.5rem;
  padding: 3rem;
}

.p-customer__explanation {
  margin-top: 1.5rem;
}

.p-customer__item + .p-customer__item {
  padding-top: 2.5rem;
}

.p-customer__itemText {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
}

.p-customer__itemInput {
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  border: 1px solid #bebebe;
  border-radius: 2px;
  display: block;
  font-size: 1.6rem;
  height: 4rem;
  line-height: 4rem;
  margin: 1rem 0 0;
  outline: none;
  padding: 0 2rem;
  width: 100%;
}

.p-customer__note {
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 1rem;
  text-align: right;
}

.p-customer__submit {
  margin-top: 3rem;
  text-align: center;
}

.p-customer__register {
  margin-top: .6rem;
  text-align: center;
}

.p-customerInfo__box {
  border: 1px solid #dedede;
  padding: 2rem;
}

.p-customerInfo__box + .p-customerInfo__box {
  margin-top: 2rem;
}

.p-customerInfo__box {
  display: flex;
  flex-direction: column;
  gap: 10px; /* ボタン間のスペースを調整 */
}

.p-customerInfo__buttons {
  display: flex;
  justify-content: space-between; /* ボタンを左右に配置 */
  gap: 10px; /* ボタン間のスペースを調整 */
}

.sys-button-nomal {
  flex: 1; /* ボタンを同じ幅にする */
}

.p-faq__item {
  border-bottom: 1px solid #dedede;
}

.p-faq__question {
  position: relative;
  transition: background .6s cubic-bezier(.19, 1, .22, 1), color .6s cubic-bezier(.19, 1, .22, 1);
}

.p-faq__question::before {
  align-items: center;
  background: #e21919;
  border-radius: 2rem;
  color: #fff;
  content: "Q";
  display: flex;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  height: 2rem;
  justify-content: center;
  left: 0;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
}

.p-faq__questionInner {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  color: inherit;
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1.5rem 4rem 1.5rem 3rem;
  text-align: left;
  width: 100%;
}

.p-faq__questionInner {
  line-height: 1.5;
}

.p-faq__questionInner::before,
.p-faq__questionInner::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.p-faq__questionInner::before {
  margin-top: calc((1 - 1.5) * .5em);
}

.p-faq__questionInner::after {
  margin-bottom: calc((1 - 1.5) * .5em);
}

.p-faq__answerInner {
  font-size: 1.6rem;
  padding: 0 0 1.9rem 3rem;
  position: relative;
}

.p-faq__answerInner::before {
  color: #e21919;
  content: "A";
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  left: .3rem;
  line-height: 1;
  position: absolute;
  top: calc(50% - .5rem);
  transform: translateY(-50%);
}

.p-floating {
  align-items: flex-end;
  background: #fff;
  column-gap: .9rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.p-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.p-flow__item {
  width: 100%;
}

.p-flow__point {
  align-items: baseline;
  background: #e21919;
  border-radius: 4px;
  color: #fff;
  column-gap: .3rem;
  display: flex;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  height: 2.4rem;
  justify-content: center;
  margin-top: 1.5rem;
  width: 8rem;
}

.p-flow__pointNumber {
  font-size: 1.6rem;
}

.p-flow__title {
  color: #e21919;
  font-size: 1.6rem;
  font-weight: bold;
  padding-top: 1.2rem;
}

.p-flow__title {
  line-height: 1.416;
}

.p-flow__title::before,
.p-flow__title::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.p-flow__title::before {
  margin-top: calc((1 - 1.416) * .5em);
}

.p-flow__title::after {
  margin-bottom: calc((1 - 1.416) * .5em);
}

.p-flow__body {
  padding-top: 2rem;
}

.p-footer__content {
  padding: 3rem 0 6rem;
}

.p-footer__text {
  padding-top: .8rem;
}

.p-footer__link {
  margin-top: 1.5rem;
}

.p-footer__nav {
  margin-top: 2.2rem;
}

.p-footer__copyright {
  background: #1c1c1c;
  color: #fff;
  padding: .8rem 0;
  position: relative;
}

.p-footer__pagetop {
  bottom: calc(100% - 1.5rem);
  position: absolute;
  right: 2rem;
  z-index: 1;
}

.p-footerCopyright__text {
  display: block;
  font-size: 1rem;
  letter-spacing: .06em;
  text-align: center;
}

.p-footerCopyright__text {
  line-height: 1.67;
}

.p-footerCopyright__text::before,
.p-footerCopyright__text::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.p-footerCopyright__text::before {
  margin-top: calc((1 - 1.67) * .5em);
}

.p-footerCopyright__text::after {
  margin-bottom: calc((1 - 1.67) * .5em);
}

.p-footerLink {
  font-size: 1.4rem;
  transition: color .6s cubic-bezier(.19, 1, .22, 1);
}

.p-footerLink[target="_blank"] {
  padding-right: 2.088em;
  position: relative;
}

.p-footerLink[target="_blank"]::after {
  bottom: .1em;
  content: "\e902";
  font-family: "icomoon" !important;
  font-size: .9375em;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  padding-left: .7075em;
  position: absolute;
  text-transform: none;
}

.p-footerLogo {
  margin: 0 auto;
  width: 22.5rem;
}

.p-footerLogo__link {
  display: block;
  opacity: 1;
  transition: opacity .6s cubic-bezier(.19, 1, .22, 1);
}

.p-footerLogo__link > img {
  width: 100%;
}

.p-footerNav__title {
  background: none;
  border: 1px solide currentColor;
  border-radius: 18px;
  height: 3.5rem;
  padding: 0;
  position: relative;
  width: 100%;
}

.p-footerNav__title::after {
  align-items: center;
  border: 2px solid currentColor;
  border-radius: 3.2rem;
  content: "\e901";
  display: flex;
  font-family: "icomoon" !important;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: bold !important;
  font-weight: normal;
  height: 3.2rem;
  justify-content: center;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 1rem;
  text-transform: none;
  top: calc(50% + 1px);
  transform: translateY(-50%) rotate(90deg) scale(.5);
  width: 3.2rem;
}

.p-footerNav__title[data-open="true"]::after {
  transform: translateY(-50%) rotate(-90deg) scale(.5);
}

.p-footerNav__group {
  display: grid;
  gap: 1.5rem 2rem;
  grid-template-columns: 50% 50%;
  padding-top: 2rem;
}

.p-footerNav__list:nth-child(1) {
  grid-area: 1 / 1;
}

.p-footerNav__list:nth-child(2) {
  grid-area: 2 / 1;
}

.p-footerNav__list:nth-child(3) {
  grid-area: 1 / 2 / 3 / 3;
}

.p-footerNav__item {
  line-height: 1.3;
}

.p-footerNav__item::before,
.p-footerNav__item::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.p-footerNav__item::before {
  margin-top: calc((1 - 1.3) * .5em);
}

.p-footerNav__item::after {
  margin-bottom: calc((1 - 1.3) * .5em);
}

.p-footerNav__item + .p-footerNav__item {
  padding-top: 1.5rem;
}

.p-footerNav__link {
  display: flex;
  transition: color .6s cubic-bezier(.19, 1, .22, 1);
}

.p-footerNav__link::before {
  background: #e21919;
  content: "";
  height: 1px;
  margin-right: 1rem;
  position: relative;
  top: calc(((1.3 - 1) * .5em) + .5em);
  width: 1rem;
}

.p-footerPagetop {
  align-items: center;
  background: #e21919;
  border-radius: 3px;
  color: #fff;
  display: flex;
  height: 4.8rem;
  justify-content: center;
  transform: rotate(-90deg);
  transition: background .6s cubic-bezier(.19, 1, .22, 1);
  width: 4.8rem;
}

.p-footerPagetop::before {
  content: "\e901";
  font-family: "icomoon" !important;
  font-size: 1.7rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

.p-form {
  border-collapse: collapse;
  border-spacing: 0;
  overflow: hidden;
  width: 100%;
}

.p-form__term {
  display: block;
  font-size: 1.4rem;
  padding: 1rem 0;
  text-align: left;
}

.p-form[data-form="confirm"] .p-form__term,
.mw_wp_form_confirm .p-form__term {
  padding-bottom: 0;
  padding-top: 0;
}

.p-form__termInner {
  display: flex;
  justify-content: flex-start;
}

.p-form__termText {
  padding-right: 1.5rem;
}

.p-form__termBatch {
  align-items: center;
  border: 1px solid;
  border-radius: 2px;
  display: flex;
  font-size: 1rem;
  height: 2rem;
  justify-content: center;
  margin-left: auto;
  padding: 0 0 .1rem .1rem;
  transform: translateY(.2rem);
  width: 4rem;
}

.p-form__termBatch[data-batch="must"] {
  background: #e21919;
  color: #fff;
}

.p-form__termBatch[data-batch="any"] {
  color: #707070;
}

.p-form[data-form="confirm"] .p-form__termBatch,
.mw_wp_form_confirm .p-form__termBatch {
  display: none;
}

.p-form__desc {
  display: block;
  padding-bottom: 2rem;
}

.p-form[data-form="confirm"] .p-form__desc,
.mw_wp_form_confirm .p-form__desc {
  font-size: 1.6rem;
}

.p-form input,
.p-form select,
.p-form textarea {
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 2px;
  display: block;
  font-size: 1.6rem;
  margin: 0;
  outline: none;
  padding: 0 2rem;
  width: 100%;
}

.p-form input:focus,
.p-form select:focus,
.p-form textarea:focus {
  border-color: #e21919;
}

.p-form input,
.p-form select {
  height: 4rem;
  line-height: 4rem;
}

.p-form input {
  max-width: 56rem;
}

.p-form input[type="number"] {
  -moz-appearance: textfield !important;
}

.p-form select {
  cursor: pointer;
}

.p-form select::-ms-expand {
  display: none;
}

.p-form textarea {
  padding: .8rem 2rem;
}

.p-form .error {
  color: #e21919;
  display: block;
  font-size: .8em;
  line-height: 1;
  padding-top: 1rem;
}

.p-form[data-form="confirm"] .p-form__confirmHidden,
.mw_wp_form_confirm .p-form__confirmHidden {
  display: none;
}

.p-formAddress {
  align-items: center;
  display: flex;
  margin: -1rem 0 0 -1.5rem;
}

.p-form[data-form="confirm"] .p-formAddress,
.mw_wp_form_confirm .p-formAddress {
  align-items: flex-start;
  flex-direction: column;
}

.p-form[data-form="confirm"] .p-formAddress.--zip,
.mw_wp_form_confirm .p-formAddress.--zip {
  margin-top: 1rem;
}

.p-formAddress__term {
  line-height: 1;
  padding: 1rem 0 0 1.5rem;
  white-space: nowrap;
}

.p-form[data-form="confirm"] .p-formAddress__term,
.mw_wp_form_confirm .p-formAddress__term {
  font-size: 1.2rem;
  font-weight: bold;
}

.p-formAddress__desc {
  padding: 1rem 0 0 1.5rem;
  width: 100%;
}

.p-form[data-form="confirm"] .p-formAddress__desc,
.mw_wp_form_confirm .p-formAddress__desc {
  font-size: 1.6rem;
}

.p-formAddress__zip {
  display: flex;
}

.p-formAddress__zipInput {
  width: 11.5rem;
}

.p-formAddress__zipInput + .p-formAddress__zipInput {
  margin-left: 3rem;
  position: relative;
}

.p-formAddress__zipInput + .p-formAddress__zipInput::before {
  background: #1c1c1c;
  content: "";
  height: 1px;
  position: absolute;
  right: calc(100% + 1rem);
  top: 50%;
  width: 1rem;
}

[data-form="confirm"] .p-formAddress__zipInput,
.mw_wp_form_confirm .p-formAddress__zipInput {
  width: auto;
}

.p-formAddress__prefectures {
  position: relative;
}

.p-formAddress__prefectures::before {
  content: "\e901";
  font-family: "icomoon" !important;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  pointer-events: none;
  position: absolute;
  right: 1.5rem;
  text-transform: none;
  top: calc(50% + .2rem);
  transform: translateY(-50%) rotate(90deg);
}

[data-form="confirm"] .p-formAddress__prefectures::before,
.mw_wp_form_confirm .p-formAddress__prefectures::before {
  display: none;
}

.p-formAddress input {
  max-width: none;
}

.p-formAgree {
  border-top: 1px solid #dedede;
  margin-top: 1rem;
  padding-top: 3rem;
}

.p-formAgree__check {
  padding-top: 1.5rem;
}

.p-formAgree__check label {
  cursor: pointer;
}

.p-formAgree__check input {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.p-formAgree__check .mwform-checkbox-field-text {
  align-items: center;
  background: #f7f7f7;
  border-radius: 5px;
  display: flex;
  height: 5.2rem;
  line-height: 1.3;
  padding: 1.4rem 2rem 1.4rem 4.5rem;
  position: relative;
  width: 100%;
}

.p-formAgree__check .mwform-checkbox-field-text::before {
  align-items: center;
  background: #fff;
  border: 1px solid #707070;
  border-radius: 2px;
  color: transparent;
  content: "✔︎";
  display: flex;
  font-size: 1.4rem;
  height: 2.2rem;
  justify-content: center;
  left: 1.5rem;
  padding: .1rem 0 0 .2rem;
  position: absolute;
  top: 1.4rem;
  width: 2.2rem;
}

.p-formAgree__check input:checked ~ .mwform-checkbox-field-text::before {
  color: #e21919;
}

.p-formBack {
  background: #e21919 !important;
  border-color: #e21919 !important;
  color: #1c1c1c !important;
}

.p-formBack::before {
  content: "\e901";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  left: 1.1rem;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  right: auto;
  text-transform: none;
}

.p-formCheck {
  display: flex;
  flex-wrap: wrap;
  margin: -2rem 0 0 -2rem;
}

[data-form="confirm"] .p-formCheck,
.mw_wp_form_confirm .p-formCheck {
  margin: 0;
  padding: 0;
}

.p-formCheck .mwform-checkbox-field {
  padding: 2rem 0 0 2rem;
  width: 50%;
}

.p-formCheck input {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  display: block !important;
  height: 4px !important;
  left: 0 !important;
  margin: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: fixed !important;
  top: 0 !important;
  visibility: visible !important;
  white-space: nowrap !important;
  width: 4px !important;
}

.p-formCheck .mwform-checkbox-field-text {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 3.2rem;
  padding: 0 0 .1rem 4.2rem;
  position: relative;
}

.p-formCheck .mwform-checkbox-field-text::before {
  align-items: center;
  background: #fff;
  color: #fff;
  content: "\e901";
  display: flex;
  font-family: "icomoon" !important;
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  height: 3.2rem;
  justify-content: center;
  left: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  text-transform: none;
  top: 0;
  width: 3.2rem;
}

.p-formCheck input:checked + .mwform-checkbox-field-text::before {
  background: #e21919;
}

.p-header {
  width: 100%;
}

.p-header::before {
  background: rgba(0, 0, 0, .7);
  content: "";
  height: var(--viewHeight);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity .6s cubic-bezier(.19, 1, .22, 1);
  z-index: -1;
}

body[data-headerDrawerOpen="true"] .p-header::before {
  opacity: 1;
  pointer-events: auto;
}

.p-header__title {
  background: #1c1c1c;
  color: #fff;
  padding: .2rem 2rem;
}

.p-header__titleInner {
  font-size: 1rem;
  margin: 0 auto;
  max-width: 140rem;
}

.p-header__content {
  background: #fff;
  padding: 0 2rem;
}

.p-header__contentInner {
  display: grid;
  grid-template: auto / auto 1fr auto auto auto;
  margin: 0 auto;
  max-width: 140rem;
}

.p-header__logo {
  align-self: center;
  grid-area: 1 / 1;
}

.p-header__line {
  display: none;
}

.p-header__cart {
  grid-area: 1 / 2;
  justify-self: end;
}

.p-header__login {
  grid-area: 1 / 3;
  padding-left: .6rem;
}

.p-header__registration {
  grid-area: 1 / 4;
  padding-left: .6rem;
}

.p-header__drawerButton {
  grid-area: 1 / 5;
  padding-left: .6rem;
}

.p-header__nav {
  left: 0;
  pointer-events: none;
  position: absolute;
  top: var(--headerHeight);
  transform: translate3d(0, -100%, 0);
  transition: transform .6s cubic-bezier(.19, 1, .22, 1);
  z-index: -1;
}

body[data-headerDrawerOpen="true"] .p-header__nav {
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.p-headerCart {
  align-items: flex-end;
  color: #e21919;
  display: flex;
  font-size: 1rem;
  height: 5.6rem;
  justify-content: center;
  line-height: 1;
  padding-bottom: 1.3rem;
  position: relative;
}

.p-headerCart::before {
  content: "\e904";
  font-family: "icomoon" !important;
  font-size: 1.8rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: bold !important;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 1.5rem;
  position: absolute;
  text-transform: none;
}

.p-headerDrawerButton {
  align-items: flex-end;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  color: #1c1c1c;
  display: flex !important;
  font-size: 1rem;
  height: 5.6rem;
  justify-content: center;
  line-height: 1;
  padding: 0 0 1.3rem 0;
  position: relative;
  text-align: center;
}

.p-headerDrawerButton__line {
  bottom: 2.7rem;
  height: 1.5rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 2rem;
}

.p-headerDrawerButton__lineItem {
  background: currentcolor;
  border-radius: 1px;
  height: 2px;
  left: 0;
  position: absolute;
  top: calc(50% - 1px);
  transition: transform .6s cubic-bezier(.19, 1, .22, 1);
  width: 100%;
}

.p-headerDrawerButton__lineItem:nth-child(1) {
  transform: translate3d(0, -.6rem, 0);
}

.p-headerDrawerButton__lineItem:nth-child(3) {
  transform: translate3d(0, .6rem, 0);
}

body[data-headerDrawerOpen="true"] .p-headerDrawerButton__lineItem:nth-child(1),
body[data-headerDrawerOpen="true"] .p-headerDrawerButton__lineItem:nth-child(3) {
  transform: translate3d(0, 0, 0);
}

body[data-headerDrawerOpen="true"] .p-headerDrawerButton__text[data-headerDrawerButtonText="menu"],
body[data-headerDrawerOpen="false"] .p-headerDrawerButton__text[data-headerDrawerButtonText="close"] {
  display: none;
}

.p-headerLogin {
  align-items: flex-end;
  display: flex;
  font-size: 1rem;
  height: 5.6rem;
  justify-content: center;
  line-height: 1;
  padding-bottom: 1.3rem;
  position: relative;
}

.p-headerLogin::before {
  content: "\e90a";
  font-family: "icomoon" !important;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: bold !important;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 1.5rem;
  position: absolute;
  text-transform: none;
}

.p-headerLogo {
  width: 12rem;
}

.p-headerLogo__link {
  display: block;
  opacity: 1;
  transition: opacity .6s cubic-bezier(.19, 1, .22, 1);
}

.p-headerLogo__link > img {
  width: 100%;
}

.p-headerNav {
  background: #fff;
  max-height: calc(var(--viewHeight) - var(--headerHeight));
  overflow-y: scroll;
  padding: 2rem 2rem 0;
  width: 100vw;
}

.p-headerNav__priceTitle {
  color: #e21919;
  font-size: 1.4rem;
  font-weight: bold;
}

.p-headerNav__priceList {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.p-headerNav__priceItem {
  width: calc(50% - 1rem / 2);
}

.p-headerNav__priceLink {
  align-items: center;
  border: 1px solid #dedede;
  border-radius: 6px;
  column-gap: 1rem;
  display: flex;
  height: 5rem;
  overflow: hidden;
  padding-left: .9rem;
  position: relative;
}

.p-headerNav__priceLink::before {
  align-items: center;
  background: #eee;
  border-radius: 4rem;
  display: flex;
  font-size: 2.2rem;
  font-weight: normal !important;
  height: 4rem;
  justify-content: center;
  width: 4rem;
}

.p-headerNav__priceItem:nth-child(1) .p-headerNav__priceLink::before {
  content: "\e910";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

.p-headerNav__priceItem:nth-child(2) .p-headerNav__priceLink::before {
  content: "\e913";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

.p-headerNav__priceItem:nth-child(3) .p-headerNav__priceLink::before {
  content: "\e90e";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

.p-headerNav__priceItem:nth-child(4) .p-headerNav__priceLink::before {
  content: "\e906";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

.p-headerNav__priceItem:nth-child(5) .p-headerNav__priceLink::before {
  content: "\e907";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

.p-headerNav__priceLink::after {
  background: #dedede;
  border-radius: 4rem;
  bottom: 0;
  content: "\e901";
  font-family: "icomoon" !important;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  height: 8rem;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  padding: 2rem 0 0 1.8rem;
  position: absolute;
  right: 0;
  text-transform: none;
  transform: translate(50%, 50%) scale(.5);
  width: 8rem;
}

.p-headerNav__main {
  margin: 2.5rem -2rem 0;
}

.p-headerNav__mainItem {
  border-top: .1rem solid #eee;
}

.p-headerNav__mainLink {
  align-items: center;
  display: flex;
  font-size: 1.4rem;
  height: 4.4rem;
  padding-left: 2rem;
  position: relative;
}

.p-headerRegistration {
  align-items: flex-end;
  display: flex;
  font-size: 1rem;
  height: 5.6rem;
  justify-content: center;
  line-height: 1;
  padding-bottom: 1.3rem;
  position: relative;
}

.p-headerRegistration::before {
  content: "\e918";
  font-family: "icomoon" !important;
  font-size: 1.7rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: bold !important;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 1.4rem;
  position: absolute;
  text-transform: none;
}

.p-homeHero {
  padding: 0 2rem;
}

.p-homeHero__container {
  padding-bottom: 2.5rem !important;
}

.p-homeHero__link {
  opacity: 1;
  transition: opacity .6s cubic-bezier(.19, 1, .22, 1);
}

.p-homeHero__slide:not(.swiper-slide-active) .p-homeHero__link {
  opacity: .5;
  pointer-events: none;
}

.p-homeHero__image {
  width: 100%;
}

.p-homeHero__pagination {
  align-items: center;
  bottom: 0 !important;
  display: flex;
  justify-content: center;
}

.p-homeHero__pagination .swiper-pagination-bullet {
  background: #dedede;
  border-radius: 0;
  border-radius: .8rem;
  height: .8rem;
  margin: 0 1rem !important;
  opacity: 1;
  transition: background .6s cubic-bezier(.19, 1, .22, 1);
  width: .8rem;
}

.p-homeHero__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ffc7e2 !important;
}

.p-homeModel {
  border: 1px solid #dedede;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  text-align: center;
  transition: border-color .6s cubic-bezier(.19, 1, .22, 1);
}

.p-homeModel__thumbnailImage {
  font-family: "object-fit: contain", sans-serif;
  height: 4.3rem;
  object-fit: contain;
  width: auto;
}

.p-homeModel__name {
  line-height: 1;
  padding-top: .5rem;
}

.p-homeNews__postHead {
  position: relative;
}

.p-homeNews__postLink {
  display: none;
}

.p-homeNews__postLink::after {
  align-items: center;
  border: 2px solid currentColor;
  border-radius: 2rem;
  content: "\e901";
  display: flex;
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  height: 4rem;
  justify-content: center;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
  transform: translate(-.1rem, -.6rem) scale(.5);
  width: 4rem;
}

.p-homeNews__postBody {
  padding-top: .7rem;
}

.p-homeNews__button {
  margin-top: 2.5rem;
  text-align: center;
}

.p-main__breadcrumb {
  padding-top: 1rem;
}

.p-main__article {
  padding-top: 3rem;
}

.p-mainvisual {
  background: #eee;
  display: flex;
}

.p-mainvisual__inner {
  align-items: center;
  display: flex;
  min-height: 8rem;
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
}

.p-mainvisual__text {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.27;
}

.p-secondaryMainvisual {
  background: #f7f7f7;
  display: flex;
  position: relative;
}

.p-secondaryMainvisual__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 8rem;
  padding-bottom: 3rem;
  padding-top: 3rem;
}

.p-secondaryMainvisual__title {
  align-items: center;
  display: flex;
  font-size: 1.8rem;
  font-weight: bold;
  justify-content: space-between;
  line-height: 1.3;
}

.p-secondaryMainvisual__image {
  margin-left: 2rem;
  min-width: 9.6rem;
  width: 9.6rem;
}

.p-secondaryMainvisual__text {
  padding-top: 1.5rem;
}

.p-secondaryMainvisual__text {
  line-height: 1.5;
}

.p-secondaryMainvisual__text::before,
.p-secondaryMainvisual__text::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.p-secondaryMainvisual__text::before {
  margin-top: calc((1 - 1.5) * .5em);
}

.p-secondaryMainvisual__text::after {
  margin-bottom: calc((1 - 1.5) * .5em);
}

.p-secondaryMainvisual__background {
  font-family: "object-fit: cover", sans-serif;
  height: 15rem;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.p-method {
  align-items: center;
  background: #e21919;
  display: flex;
  position: relative;
  transition: background .6s cubic-bezier(.19, 1, .22, 1), color .6s cubic-bezier(.19, 1, .22, 1);
}

.p-method::after {
  color: #e21919;
  content: "\e901";
  font-family: "icomoon" !important;
  font-size: 1.5rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 1.4rem;
  text-transform: none;
  top: 50%;
  transform: translateY(-50%);
  transition: color .6s cubic-bezier(.19, 1, .22, 1);
}

[data-background] .p-method {
  background: #fff;
}

.p-method__image {
  font-family: "object-fit: cover", sans-serif;
  height: 10rem;
  object-fit: cover;
  width: 10rem;
}

.p-method__content {
  padding: 0 3.5rem 0 1.5rem;
  width: calc(100% - 10rem);
}

.p-method__text {
  font-size: 1.2rem;
}

.p-method__text {
  line-height: 1.67;
}

.p-method__text::before,
.p-method__text::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.p-method__text::before {
  margin-top: calc((1 - 1.67) * .5em);
}

.p-method__text::after {
  margin-bottom: calc((1 - 1.67) * .5em);
}

.p-method__title {
  font-size: 2rem;
  font-weight: bold;
  padding-top: 1.2rem;
}

.p-method__title {
  line-height: 1.3;
}

.p-method__title::before,
.p-method__title::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.p-method__title::before {
  margin-top: calc((1 - 1.3) * .5em);
}

.p-method__title::after {
  margin-bottom: calc((1 - 1.3) * .5em);
}

.p-methodCommon {
  align-items: center;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 4px;
  column-gap: 1rem;
  display: flex;
  height: 100%;
  padding: 2rem;
  transition: border-color .6s cubic-bezier(.19, 1, .22, 1);
}

.p-methodCommon__image {
  width: 12.9rem;
}

.p-methodCommon__content {
  display: flex;
  display: grid;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  position: relative;
  row-gap: 1rem;
}

.p-methodCommon__title {
  color: #e21919;
  font-size: 1.6rem;
  font-weight: bold;
}

.p-methodCommon__title {
  line-height: 1.4;
}

.p-methodCommon__title::before,
.p-methodCommon__title::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.p-methodCommon__title::before {
  margin-top: calc((1 - 1.4) * .5em);
}

.p-methodCommon__title::after {
  margin-bottom: calc((1 - 1.4) * .5em);
}

.p-methodCommon__text {
  font-size: 1.2rem;
}

.p-methodCommon__text {
  line-height: 1.4;
}

.p-methodCommon__text::before,
.p-methodCommon__text::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.p-methodCommon__text::before {
  margin-top: calc((1 - 1.4) * .5em);
}

.p-methodCommon__text::after {
  margin-bottom: calc((1 - 1.4) * .5em);
}

.p-methodCommon__catch {
  display: block;
}

.p-methodCommon__catch {
  line-height: 1.67;
}

.p-methodCommon__catch::before,
.p-methodCommon__catch::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.p-methodCommon__catch::before {
  margin-top: calc((1 - 1.67) * .5em);
}

.p-methodCommon__catch::after {
  margin-bottom: calc((1 - 1.67) * .5em);
}

.p-methodCommon__catch[data-gap="true"] {
  padding: 0 2rem;
}

.p-newsArchive__link {
  align-items: center;
  border-bottom: 1px solid #dedede;
  display: flex;
  flex-wrap: wrap;
  padding: 1.4rem 3rem 1.4rem 0;
  position: relative;
  transition: color .6s cubic-bezier(.19, 1, .22, 1);
}

.p-newsArchive__link::after {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 4rem;
  color: #e21919;
  content: "\e901";
  display: flex;
  font-family: "icomoon" !important;
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  height: 4rem;
  justify-content: center;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 0;
  text-transform: none;
  top: 50%;
  transform: translateY(-50%) scale(.5);
  transform-origin: right;
  width: 4rem;
}

.home .p-newsArchive__link {
  border-bottom: 0;
  padding: 1.4rem 2rem;
}

.home .p-newsArchive__link::after {
  display: none;
}

.p-newsArchive__date {
  letter-spacing: .06em;
  white-space: nowrap;
  width: 7rem;
}

.p-newsArchive__category {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 13px;
  color: #e21919;
  display: flex;
  font-size: 1rem;
  height: 2rem;
  justify-content: center;
  margin-left: 2rem;
  transition: background .6s cubic-bezier(.19, 1, .22, 1), color .6s cubic-bezier(.19, 1, .22, 1);
  width: 10rem;
}

.p-newsArchive__title {
  max-width: calc(100% - 4rem);
  overflow: hidden;
  padding-top: 1.3rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.p-newsArchive__title {
  line-height: 1.5;
}

.p-newsArchive__title::before,
.p-newsArchive__title::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.p-newsArchive__title::before {
  margin-top: calc((1 - 1.2) * .5em);
}

.p-newsArchive__title::after {
  margin-bottom: calc((1 - 1.2) * .5em);
}

.p-pagination {
  align-items: center;
  color: #666;
  column-gap: 1.5rem;
  display: flex;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  justify-content: center;
  line-height: 1.3;
}

.p-pagination__button {
  align-items: center;
  display: flex;
}

.p-pagination__button[data-paginationbutton="first"]::before,
.p-pagination__button[data-paginationbutton="first"]::after {
  color: #e21919;
  content: "\e901";
  display: block;
  font-family: "icomoon" !important;
  font-size: .8em;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
  transform: scaleX(-1);
}

.p-pagination__button[data-paginationbutton="first"]::after {
  margin-left: -.3em;
}

.p-pagination__button[data-paginationbutton="prev"]::before {
  color: #e21919;
  content: "\e901";
  display: block;
  font-family: "icomoon" !important;
  font-size: .8em;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  text-transform: none;
  transform: scaleX(-1);
}

.p-pagination__button[data-paginationbutton="next"]::before {
  color: #e21919;
  content: "\e901";
  font-family: "icomoon" !important;
  font-size: .8em;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

.p-pagination__button[data-paginationbutton="last"]::before,
.p-pagination__button[data-paginationbutton="last"]::after {
  color: #e21919;
  content: "\e901";
  font-family: "icomoon" !important;
  font-size: .8em;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

.p-pagination__button[data-paginationbutton="last"]::after {
  margin-left: -.3em;
}

.p-pagination__current {
  border-bottom: 1px solid #e21919;
  color: #e21919;
}

.p-pagination__count {
  margin-bottom: 2rem;
  text-align: center;
}

.p-pagination + .p-pagination__count {
  margin-bottom: 0;
  margin-top: 2rem;
}

.p-postHead {
  border-bottom: 1px solid #dedede;
  column-gap: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  row-gap: .5rem;
}

.p-postHead__thumbnail {
  margin-bottom: 1rem;
  width: 100%;
}

.p-postHead__category {
  align-items: center;
  background: #e21919;
  border-radius: 13px;
  color: #fff;
  display: flex;
  font-size: 1rem;
  height: 1.8rem;
  justify-content: center;
  width: 10rem;
}

.p-postHead__title {
  font-size: 1.6rem;
  font-weight: bold;
  width: 100%;
}

.c-grid__item[data-griditem="xs-12 md-6"]:has(.p-purchaseArchive):only-child {
  width: 100% !important;
}

.p-purchaseArchive__title {
  background: #1c1c1c;
  border-radius: 10px 10px 0 0;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  padding: .7rem 0;
  text-align: center;
}

.p-purchaseArchive__title[data-carrier=""],
.p-purchaseArchive__title[data-carrier="SIMフリー"] {
  background: #eaeaea;
  color: #1c1c1c;
}

.p-purchaseArchive__title[data-carrier="au"],
.p-purchaseArchive__title[data-carrier="AU"] {
  background: #ffeee6;
  color: #ea5212;
}

.p-purchaseArchive__title[data-carrier="docomo"] {
  background: #ffebeb;
  color: #cb0000;
}

.p-purchaseArchive__title[data-carrier="SoftBank"] {
  background: #eaeaea;
  color: #707070;
}

.p-purchaseArchive__title[data-carrier="楽天モバイル"] {
  background: #ffebf5;
  color: #d80065;
}

.p-purchaseArchive__title[data-carrier="UQ mobile"],
.p-purchaseArchive__title[data-carrier="uq"] {
  background: #edf8ff;
  color: #0099fc;
}

.p-purchaseArchive__title[data-carrier="Y!mobile"],
.p-purchaseArchive__title[data-carrier="ymobile"] {
  background: #ffedf2;
  color: #e51741;
}

.p-purchaseArchive__title[data-carrier="ahamo"] {
  background: #f7f7f7;
  color: #000;
}

.p-purchaseArchive__title[data-carrier="mineo"] {
  background: #ebfff4;
  color: #05a548;
}

.p-purchaseArchive__title[data-carrier="J:COM"] {
  background: #ffeeea;
  color: #e9431b;
}

.p-purchaseArchive__title[data-carrier="IIJmio"],
.p-purchaseArchive__title[data-carrier="iijmio"] {
  background: #e8f0fe;
  color: #3a62a8;
}
.p-purchaseArchive__info {
  display: flex;
  justify-content: space-between; /* 左右の要素を均等配置 */
  align-items: center; /* 縦方向の中央揃え */
  width: 100%; /* コンテナ幅を親要素いっぱいにする */
  margin-top: 5px;
}
.p-purchaseArchive__maker {
  margin: 0;
  color: rgb(66, 66, 66);
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  height: 2rem;
  justify-content: center;
  position: relative;
  background: rgb(255, 255, 255);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(66, 66, 66);
  border-image: initial;
  border-radius: 5px;
  padding: 5px 5px 3px 5px;
}
.p-purchaseArchive__date {
  margin: 0;
  font-size: 1rem;
}

.p-purchaseArchive__model {
  border: 1px solid #dedede;
  border-radius: 5px;
  display: block;
  line-height: 1;
  overflow: hidden;
  padding: 1.7rem 0 1.9rem 1.8rem;
  position: relative;
  transition: border-color .6s cubic-bezier(.19, 1, .22, 1), color .6s cubic-bezier(.19, 1, .22, 1);
}

.p-purchaseArchive__modelName {
  font-size: 1.8rem;
  font-weight: bold;
}

.p-purchaseArchive__modelDate {
  color: #eee;
  font-size: 1.2rem;
  padding-top: .7rem;
}

.p-purchaseArchive__modelImage {
  position: absolute;
  right: 2rem;
  top: 1rem;
  width: 9rem;
}

.p-purchaseArchive__table,
.p-purchaseArchive__tableBody,
.p-purchaseArchive__tableRow,
.p-purchaseArchive__term,
.p-purchaseArchive__price,
.p-purchaseArchive__button {
  display: block;
  padding: 0;
}

.p-purchaseArchive__tableRow {
  border-bottom: 1px solid #dedede;
  display: flex;
  padding: 1.5rem 0;
}

.p-purchaseArchive__term {
  min-width: 10.5rem;
  text-align: left;
  width: 100%;
}

.p-purchaseArchive__termCarrier {
  align-items: center;
  background: #1c1c1c;
  border-radius: 15px;
  color: #fff;
  display: flex;
  font-size: 1rem;
  font-weight: bold;
  height: 2rem;
  justify-content: center;
  white-space: nowrap;
  width: 10.5rem;
}

.p-purchaseArchive__termCarrier[data-carrier="sim-free"],
.p-purchaseArchive__termCarrier[data-carrier="SIMフリー"] {
  background: #1c1c1c;
}

.p-purchaseArchive__termCarrier[data-carrier="au"],
.p-purchaseArchive__termCarrier[data-carrier="AU"] {
  background: #ea5212;
}

.p-purchaseArchive__termCarrier[data-carrier="docomo"] {
  background: #cb0000;
}

.p-purchaseArchive__termCarrier[data-carrier="SoftBank"] {
  background: #707070;
}

.p-purchaseArchive__termCarrier[data-carrier="rakuten"],
.p-purchaseArchive__termCarrier[data-carrier="rakuten-mobile"],
.p-purchaseArchive__termCarrier[data-carrier="楽天モバイル"] {
  background: #d80065;
}

.p-purchaseArchive__termCarrier[data-carrier="UQ mobile"],
.p-purchaseArchive__termCarrier[data-carrier="uq"] {
  background: #0099fc;
}

.p-purchaseArchive__termCarrier[data-carrier="Y!mobile"],
.p-purchaseArchive__termCarrier[data-carrier="ymobile"] {
  background: #e51741;
}

.p-purchaseArchive__termCarrier[data-carrier="ahamo"] {
  background: #000;
}

.p-purchaseArchive__termCarrier[data-carrier="mineo"] {
  background: #05a548;
}

.p-purchaseArchive__termCarrier[data-carrier="J:COM"] {
  background: #e9431b;
}

.p-purchaseArchive__termCarrier[data-carrier="IIJmio"],
.p-purchaseArchive__termCarrier[data-carrier="iijmio"] {
  background: #3a62a8;
}

.p-purchaseArchive__termName {
  display: block;
  font-weight: bold;
  margin-top: .5rem;
}

.p-purchaseArchive__termName {
  line-height: 1.5;
}

.p-purchaseArchive__termName::before,
.p-purchaseArchive__termName::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.p-purchaseArchive__termName::before {
  margin-top: calc((1 - 1.5) * .5em);
}

.p-purchaseArchive__termName::after {
  margin-bottom: calc((1 - 1.5) * .5em);
}

.p-purchaseArchive__price {
  line-height: 1;
  margin-left: .8rem;
  white-space: nowrap;
}

.p-purchaseArchive__priceOld {
  padding-top: 1rem;
}

.p-purchaseArchive__priceJan {
  padding-top: 1rem;
}

.p-purchaseArchive__priceTerm {
  font-size: 1rem;
  font-weight: normal;
}

.p-purchaseArchive__priceDesc {
  color: #e21919;
  margin-top: 5px;
}

.p-purchaseArchive__priceNew .p-purchaseArchive__priceDesc {
  font-size: 1.4rem;
  font-weight: bold;
}

.p-purchaseArchive__priceJan .p-purchaseArchive__priceDesc {
  color: #1c1c1c;
  font-size: 1rem;
}

.p-purchaseArchive__priceDescLarge {
  font-size: 1.8rem;
  font-weight: bold;
}

.p-purchaseArchive__assessment {
  height: 6.7rem;
  margin-left: 1rem;
  min-width: 7.8rem;
  white-space: nowrap;
  width: 7.8rem;
}

.p-purchaseArchive__assessmentButton {
  align-items: center;
  background: #e21919;
  border: 1px solid #e21919;
  border-radius: 6px;
  color: #fff;
  display: flex;
  font-size: 1.4rem;
  font-weight: bold;
  height: 100%;
  justify-content: center;
  line-height: 1.2;
  text-align: center;
  transition: background .6s cubic-bezier(.19, 1, .22, 1), color .6s cubic-bezier(.19, 1, .22, 1);
  width: 100%;
}

.p-purchaseArchive__more {
  align-items: center;
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  border: 0;
  border: 1px solid #e21919;
  border-radius: .6rem;
  border-radius: 5px;
  color: #e21919;
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  height: 5rem;
  justify-content: center;
  margin: 2rem auto 0;
  padding: 0;
  position: relative;
  transition: background .6s cubic-bezier(.19, 1, .22, 1), color .6s cubic-bezier(.19, 1, .22, 1);
  white-space: nowrap;
  width: 100%;
}

.p-purchaseArchive__more::before {
  align-items: center;
  border: 1px solid #e21919;
  border-radius: 1.6rem;
  content: "\e901";
  display: flex;
  font-family: "icomoon" !important;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  height: 3.2rem;
  justify-content: center;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 1.1rem;
  text-transform: none;
  top: 50%;
  transform: scale(.5) rotate(90deg) translateY(-50%);
  transform-origin: top;
  transition: background .6s cubic-bezier(.19, 1, .22, 1), color .6s cubic-bezier(.19, 1, .22, 1);
  width: 3.2rem;
}

.p-purchaseArchive__more[data-open="true"]::before {
  transform: scale(.5) rotate(-90deg) translateY(-50%);
}

.p-purchaseBrand {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
  row-gap: 6rem;
}

.p-purchaseBrand__item {
  align-content: start;
  display: grid;
  grid-template: 1fr auto auto auto auto / 1fr auto;
  padding: 0 1rem;
  width: 100%;
}

.p-purchaseBrand__name {
  color: #e21919;
  display: grid;
  font-size: 1.6rem;
  grid-area: 1 / 1;
}

.p-purchaseBrand__name > span {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: -.7rem;
}

.p-purchaseBrand__maker {
  color: #707070;
  font-size: 1.6rem;
  grid-area: 2 / 1;
}

.p-purchaseBrand__image {
  grid-area: 1 / 2 / 3 / 3;
  margin-right: -1rem;
  width: 11rem;
  height: 11rem;
  display: flex;
}

.p-purchaseBrand__desc {
  font-size: 1.4rem;
  grid-area: 3/ 1 / 4 / 3;
  letter-spacing: 0;
  line-height: 1.42857143;
  margin-top: 1rem;
}

.p-purchaseBrand__button {
  grid-area: 4/ 1 / 5 / 3;
  margin: 1rem -1rem 0;
}

.p-purchaseBrand__series {
  background: #f7f7f7;
  grid-area: 5/ 1 / 6 / 3;
  margin: 1.5rem -1rem 0;
  padding: 1.5rem 2rem;
}

.p-purchaseBrand__seriesTitle {
  font-size: 1.6rem;
  font-weight: bold;
}

.p-purchaseBrand__seriesList {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: .5rem;
}

.p-purchaseBrand__seriesList > li > a {
  align-items: center;
  background: #fff;
  border: 1px solid currentColor;
  border-radius: 15px;
  display: flex;
  height: 2.6rem;
  letter-spacing: 0;
  padding: 0 1.7rem;
}

.p-purchaseCarrier {
  align-items: center;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 5px;
  display: flex;
  height: 5rem;
  justify-content: center;
  padding: .8rem 0;
  text-align: center;
  transition: border-color .6s cubic-bezier(.19, 1, .22, 1);
}

.p-purchaseCarrier__image {
  height: 100%;
  width: auto;
}

.p-purchaseModel {
  align-items: center;
  border: 1px solid #dedede;
  border-radius: 5px;
  display: flex;
  padding: .5rem 1rem;
  transition: border-color .6s cubic-bezier(.19, 1, .22, 1), color .6s cubic-bezier(.19, 1, .22, 1);
  height: 100%;
}

.p-purchaseModel__thumbnailImage {
  font-family: "object-fit: contain", sans-serif;
  height: 4.3rem;
  min-width: 4.3rem;
  object-fit: contain;
  width: 4.3rem;
}

.p-purchaseModel__name {
  font-size: 1.4rem;
  line-height: 1.2;
  padding-left: 1rem;
}

.p-purchaseModel__accordion {
  align-items: center;
  background: none;
  border: 1px solid #dedede;
  border-radius: 5px;
  display: flex;
  padding: .5rem 2rem .5rem 1rem;
  transition: border-color .6s cubic-bezier(.19, 1, .22, 1);
  width: 100%;
}

.p-purchaseModel__accordion::after {
  content: "\e901";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  margin-left: auto;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
  transform: rotate(90deg);
}

.p-purchaseModel__accordion[data-open="true"]::after {
  transform: rotate(-90deg);
}

.p-purchaseModel__accordionImage {
  font-family: "object-fit: contain", sans-serif;
  height: 4.3rem;
  min-width: 4.3rem;
  object-fit: contain;
  width: 4.3rem;
}

.p-purchaseModel__accordionName {
  font-size: 1.5rem;
  font-weight: bold;
  padding-left: 1rem;
}

.p-purchaseModel__accordionContent {
  padding-top: 1rem;
}

.p-reason__head {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.p-reason__icon {
  width: 6rem;
}

.p-reason__title {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: .06em;
  padding-top: 1.5rem;
}

.p-reason__title {
  line-height: 1.416;
}

.p-reason__title::before,
.p-reason__title::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.p-reason__title::before {
  margin-top: calc((1 - 1.416) * .5em);
}

.p-reason__title::after {
  margin-bottom: calc((1 - 1.416) * .5em);
}

.p-reason__body {
  padding-top: 1rem;
}

.p-reason__button {
  text-indent: -1rem;
}

.p-search {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.p-search__speed {
  width: 100%;
}

.p-search__series {
  padding-top: 3rem;
  width: 100%;
}

.p-search__name {
  padding-top: 3rem;
  width: 100%;
}

.p-search__banner {
  padding-top: 1rem;
  width: 100%;
}

.p-search__bannerLink {
  display: block;
  opacity: 1;
  transition: opacity .6s cubic-bezier(.19, 1, .22, 1);
}

.p-search__recommend {
  padding-top: 3rem;
  width: 100%;
}

.p-searchButton {
  align-items: center;
  -webkit-appearance: none;
  appearance: none;
  background: #e21919;
  border: 0;
  border-radius: 5px;
  color: #fff;
  display: inline-flex;
  font-size: 1.8rem;
  justify-content: center;
  line-height: 1.4;
  padding: 1.8rem 2rem 1.6rem;
  text-align: left;
  width: 100%;
}

.p-searchButton::before {
  content: "\e90f";
  font-family: "icomoon" !important;
  font-size: 1.8rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  padding: .2rem 1.6rem 0 .5rem;
  text-transform: none;
}

.p-searchRecommend {
  align-items: center;
  border: 1px solid #dedede;
  border-radius: 5px;
  display: flex;
  height: 10rem;
  padding: 0 2rem;
  position: relative;
  transition: border-color .6s cubic-bezier(.19, 1, .22, 1), color .6s cubic-bezier(.19, 1, .22, 1);
}

.p-searchRecommend__catch {
  align-items: center;
  border: 1px solid currentcolor;
  color: #e21919;
  display: inline-flex;
  font-size: 1.4rem;
  height: 2.2rem;
  padding: 0 .2rem 0 1rem;
}

.p-searchRecommend__name {
  display: block;
  font-size: 1.6rem;
  padding: .5rem 0 0 .3rem;
  padding-top: .5rem;
}

.p-searchRecommend__name {
  line-height: 1.4;
}

.p-searchRecommend__name::before,
.p-searchRecommend__name::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.p-searchRecommend__name::before {
  margin-top: calc((1 - 1.4) * .5em);
}

.p-searchRecommend__name::after {
  margin-bottom: calc((1 - 1.4) * .5em);
}

.p-searchRecommend__thumbnail {
  bottom: 0;
  position: absolute;
  right: 1.8rem;
  width: 8.6rem;
}

.p-searchSpeed__item {
  position: relative;
}

.p-searchSpeed__item + .p-searchSpeed__item {
  margin-top: 4.5rem;
}

.p-searchSpeed__item + .p-searchSpeed__item::before,
.p-searchSpeed__item + .p-searchSpeed__item::after {
  background: #1c1c1c;
  bottom: calc(100% + 2rem);
  content: "";
  height: 3px;
  position: absolute;
  right: 50%;
  width: 2.1rem;
}

.p-searchSpeed__item + .p-searchSpeed__item::before {
  transform: translateX(50%) rotate(45deg);
}

.p-searchSpeed__item + .p-searchSpeed__item::after {
  transform: translateX(50%) rotate(135deg);
}

.p-searchSpeed__select {
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: block;
  font-size: 1.6rem;
  height: 4.5rem;
  line-height: 4.5rem;
  outline: none;
  padding: 0 1.4rem;
  width: 100%;
}

.p-searchSpeed__select[disabled] {
  pointer-events: none;
}

.p-searchSpeed__select::-ms-expand {
  display: none;
}

.p-searchSpeed__icon {
  pointer-events: none;
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
}

.p-searchSpeed__icon::before {
  color: #e21919;
  content: "\e901";
  font-family: "icomoon" !important;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

.p-searchSpeed__select[disabled] + .p-searchSpeed__icon::before {
  color: #9d9d9d;
}

.p-searchTitle {
  background: #e21919;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  padding: 1rem 1rem 1rem 2.3rem;
  position: relative;
}

.p-searchTitle::before {
  background: #67cbc2;
  content: "";
  height: 1.2em;
  left: 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
}

.p-result {
  align-items: center;
  border: 1px solid #dedede;
  border-radius: 6px;
  display: flex;
  height: 100%;
  padding: 1rem 3rem 1rem 1rem;
  position: relative;
  transition: border-color .6s cubic-bezier(.19, 1, .22, 1);
}

.p-result::after {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 4rem;
  color: #e21919;
  content: "\e901";
  display: flex;
  font-family: "icomoon" !important;
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  height: 4rem;
  justify-content: center;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 1rem;
  text-transform: none;
  top: 50%;
  transform: translateY(-50%) scale(.5);
  transform-origin: right;
  width: 4rem;
}

.p-result__image {
  margin-right: 1rem;
  text-align: center;
}

.p-result__image > img {
  font-family: "object-fit: contain", sans-serif;
  height: 4.8rem;
  margin: 0 auto;
  object-fit: contain;
  width: auto;
}

.p-result__carrier {
  align-items: center;
  background: #1c1c1c;
  border-radius: 15px;
  color: #fff;
  display: flex;
  font-weight: bold;
  height: 2.6rem;
  justify-content: center;
  white-space: nowrap;
  width: 10.1rem;
}

.p-result__carrier[data-carrier="sim-free"],
.p-result__carrier[data-carrier="SIMフリー"] {
  background: #1c1c1c;
}

.p-result__carrier[data-carrier="au"],
.p-result__carrier[data-carrier="AU"] {
  background: #ea5212;
}

.p-result__carrier[data-carrier="docomo"] {
  background: #cb0000;
}

.p-result__carrier[data-carrier="softbank"] {
  background: #707070;
}

.p-result__carrier[data-carrier="rakuten"],
.p-result__carrier[data-carrier="rakuten-mobile"],
.p-result__carrier[data-carrier="楽天モバイル"] {
  background: #d80065;
}

.p-result__carrier[data-carrier="UQ mobile"],
.p-result__carrier[data-carrier="uq"] {
  background: #0099fc;
}

.p-result__carrier[data-carrier="Y!mobile"],
.p-result__carrier[data-carrier="ymobile"] {
  background: #e51741;
}

.p-result__carrier[data-carrier="ahamo"] {
  background: #000;
}

.p-result__carrier[data-carrier="mineo"] {
  background: #05a548;
}

.p-result__carrier[data-carrier="J:COM"] {
  background: #e9431b;
}

.p-result__carrier[data-carrier="IIJmio"],
.p-result__carrier[data-carrier="iijmio"] {
  background: #3a62a8;
}

.p-result__title {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 1rem;
}

.p-shop + .p-shop {
  padding-top: 6rem;
}

.p-shop:not(:has(.p-shop__childItem)) {
  display: none;
}

.p-shop__gps {
  align-items: center;
  background: #1c1c1c;
  border: 0;
  border-radius: 6px;
  color: #fff;
  column-gap: 1.5rem;
  display: flex;
  font-size: 1.6rem;
  height: 5rem;
  justify-content: center;
  padding: 0;
  transition: opacity .6s cubic-bezier(.19, 1, .22, 1);
  width: 22rem;
}

.p-shop__gps::before {
  content: "\e90b";
  font-family: "icomoon" !important;
  font-size: 1.2em;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: bold !important;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

.p-shop__title {
  color: #e21919;
  font-size: 1.8rem;
  font-weight: bold;
}

.p-shop__item:not(:has(.p-shop__childItem)) {
  display: none;
}

.p-shop__childTitle {
  border-bottom: 1px solid #dedede;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1rem 0;
  position: relative;
  width: 100%;
}

.p-shop__childList {
  padding-bottom: 2rem;
}

.p-shop__childItem {
  border-bottom: 1px solid #dedede;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  row-gap: .5rem;
}

.p-shop__name {
  font-size: 1.4rem;
  font-weight: bold;
}

.p-shop__more {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 4px;
  color: #e21919;
  display: flex;
  height: 2.6rem;
  justify-content: center;
  transition: background .6s cubic-bezier(.19, 1, .22, 1), color .6s cubic-bezier(.19, 1, .22, 1);
  width: 12.2rem;
}

.p-shop__more::after {
  align-items: center;
  border: 2px solid currentColor;
  border-radius: 2.4rem;
  content: "\e901";
  display: flex;
  font-family: "icomoon" !important;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: bold !important;
  font-weight: normal;
  height: 2.4rem;
  justify-content: center;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
  transform: scale(.5);
  width: 2.4rem;
}

.p-shopDetail {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 2rem;
}

.p-shopDetail__name {
  font-size: 2rem;
  font-weight: bold;
  width: 100%;
}

.p-shopDetail__name {
  line-height: 1.3;
}

.p-shopDetail__name::before,
.p-shopDetail__name::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.p-shopDetail__name::before {
  margin-top: calc((1 - 1.3) * .5em);
}

.p-shopDetail__name::after {
  margin-bottom: calc((1 - 1.3) * .5em);
}

.p-shopDetail__contact {
  column-gap: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.p-shopDetail__tel,
.p-shopDetail__map {
  align-items: center;
  border: 2px solid currentColor;
  border-radius: 6px;
  column-gap: .5rem;
  display: flex;
  font-size: 1.2rem;
  height: 5rem;
  justify-content: center;
  position: relative;
  width: 100%;
}

.p-shopDetail__tel::before,
.p-shopDetail__map::before {
  color: currentColor;
  font-size: 1.16666667em;
  font-weight: bold !important;
}

.p-shopDetail__tel::before {
  content: "\e914";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

.p-shopDetail__map {
  color: #e21919;
}

.p-shopDetail__map::before {
  content: "\e90b";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

.p-shopDetail__info {
  width: 100%;
}

.p-shopDetail__table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.p-shopDetail__tableRow {
  border-bottom: 1px solid #dedede;
}

.p-shopDetail__tableTerm,
.p-shopDetail__tableDesc {
  padding: 1.5rem 0;
  text-align: left;
}

.p-shopDetail__tableTermInner {
  align-items: center;
  column-gap: 1rem;
  display: flex;
  white-space: nowrap;
}

.p-shopDetail__tableTermInner::before {
  color: #e21919;
  font-weight: bold !important;
}

.p-shopDetail__tableRow:nth-child(1) .p-shopDetail__tableTermInner::before {
  content: "\e912";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

.p-shopDetail__tableRow:nth-child(2) .p-shopDetail__tableTermInner::before {
  content: "\e917";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

.p-shopDetail__tableRow:nth-child(3) .p-shopDetail__tableTermInner::before {
  content: "\e914";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

.p-shopDetail__tableRow:nth-child(4) .p-shopDetail__tableTermInner::before {
  content: "\e903";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

.p-shopDetail__tableRow:nth-child(5) .p-shopDetail__tableTermInner::before {
  content: "\e915";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

.p-shopDetail__tableRow:nth-child(6) .p-shopDetail__tableTermInner::before {
  content: "\e911";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

.p-shopDetail__tableDesc {
  padding-left: 2rem;
}

.p-shopDetail__message {
  width: 100%;
}

.p-shopDetail__messageBox {
  background: #f7f7f7;
  padding: 2rem;
}

.p-shopDetail__messageTitle {
  font-weight: bold;
}

.p-shopDetail__messageTitle {
  line-height: 1.3;
}

.p-shopDetail__messageTitle::before,
.p-shopDetail__messageTitle::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.p-shopDetail__messageTitle::before {
  margin-top: calc((1 - 1.3) * .5em);
}

.p-shopDetail__messageTitle::after {
  margin-bottom: calc((1 - 1.3) * .5em);
}

.p-shopDetail__messageTitleInner {
  padding-left: 1.91666667em;
  position: relative;
}

.p-shopDetail__messageTitleInner::before {
  color: #707070;
  content: "\e90c";
  font-family: "icomoon" !important;
  font-size: 1.33333333em;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  left: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  text-transform: none;
  top: 0;
}

.p-shopDetail__messageText {
  padding-top: 1rem;
}

.p-shopDetail__iframe {
  height: 35.5rem;
  width: 100%;
}

.p-shopDetail__way {
  padding-top: 3rem;
  width: 100%;
}

.p-shopDetail__wayList {
  display: flex;
  flex-wrap: wrap;
  margin-top: -2rem;
  padding-top: 4rem;
}

.p-shopDetail__wayItem {
  counter-increment: shopDetailWay;
  padding-top: 2rem;
  width: 100%;
}

.p-shopDetail__wayText {
  padding: 2rem 0 0 3rem;
  position: relative;
}

.p-shopDetail__wayText::before {
  align-items: center;
  background: #e21919;
  border-radius: 2rem;
  color: #fff;
  content: counter(shopDetailWay);
  display: flex;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  height: 2rem;
  justify-content: center;
  left: 0;
  line-height: 1;
  min-width: 2rem;
  position: absolute;
  top: 1.5rem;
  width: 2rem;
}

.p-shopDetail__wayTextMain {
  font-size: 1.4rem;
  font-weight: bold;
}

.p-shopDetail__wayTextMain {
  line-height: 1.555;
}

.p-shopDetail__wayTextMain::before,
.p-shopDetail__wayTextMain::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.p-shopDetail__wayTextMain::before {
  margin-top: calc((1 - 1.555) * .5em);
}

.p-shopDetail__wayTextMain::after {
  margin-bottom: calc((1 - 1.555) * .5em);
}

.p-shopDetail__wayTextSub {
  padding-top: 2rem;
}

.p-spec__visual {
  display: grid;
  justify-items: center;
  row-gap: 1rem;
}

.p-spec__visual img,
.p-spec__visualImage {
  max-width: 12rem;
}

.p-spec__visualText {
  font-size: 1rem;
}

.p-spec__detail {
  background: #f7f7f7;
  border-radius: 6px;
  margin-top: 2rem;
  padding: 1rem 2rem 2rem;
  flex: 1;
}

.p-spec__detailTable {
  width: 100%;
}

.p-spec__detailTerm,
.p-spec__detailDesc {
  padding: 1rem 0 0 0;
}

.p-spec__detailDesc {
  width: 100%;
}

.p-spec__detailTerm {
  padding-right: 1.4rem;
  text-align: left;
  white-space: nowrap;
}

.p-secondaryStep {
  display: grid;
  row-gap: 4rem;
}

.p-secondaryStep__head {
  align-items: center;
  column-gap: 1.5rem;
  display: flex;
}

.p-secondaryStep__mark {
  align-items: center;
  background: #e21919;
  border-radius: 5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-family: Helvetica, Arial, sans-serif;
  height: 5rem;
  justify-content: center;
  line-height: 1;
  min-width: 5rem;
  row-gap: .3rem;
  width: 5rem;
}

.p-secondaryStep__markText {
  font-size: 1rem;
}

.p-secondaryStep__markNumber {
  font-size: 1.8rem;
  font-weight: bold;
}

.p-secondaryStep__title {
  color: #e21919;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}

.p-secondaryStep__content {
  display: flex;
  flex-direction: column;
  padding-top: 1.5rem;
  row-gap: 1rem;
}

.p-secondaryStep__tel {
  display: grid;
  line-height: 1;
  padding-left: 3.6rem;
  position: relative;
}

.p-secondaryStep__tel::before {
  color: #e21919;
  content: "\e914";
  font-family: "icomoon" !important;
  font-size: 2.4rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  left: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  text-transform: none;
  top: 50%;
  transform: translateY(-50%);
}

.p-secondaryStep__telNumber {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: bold;
}

.p-secondaryStep__image {
  padding-top: 1.5rem;
}

.p-step__item {
  display: flex;
  flex-direction: column;
  position: relative;
}

.p-step__item + .p-step__item {
  margin-top: 4.4rem;
  position: relative;
}

.p-step__head {
  align-items: center;
  background: #e21919;
  border-radius: 6px 6px 0 0;
  color: #fff;
  column-gap: 1.5rem;
  display: flex;
  padding: 1.3rem;
  position: relative;
}

.p-step__item + .p-step__item .p-step__head::before {
  border-color: #e21919 transparent transparent transparent;
  border-style: solid;
  border-width: 1.4rem 1.4rem 0 1.4rem;
  bottom: calc(100% + 2.2rem);
  content: "";
  position: absolute;
  right: 50%;
  transform: translate(50%, 50%);
}

.p-step__item:nth-child(1) .p-step__head::after {
  content: "\e90f";
  font-family: "icomoon" !important;
  font-size: 2.4rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: bold !important;
  font-weight: normal;
  line-height: 1;
  margin-left: auto;
  margin-right: 1rem;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

.p-step__item:nth-child(2) .p-step__head::after {
  content: "\e904";
  font-family: "icomoon" !important;
  font-size: 2.4rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: bold !important;
  font-weight: normal;
  line-height: 1;
  margin-left: auto;
  margin-right: 1rem;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
}

.p-step__item:nth-child(3) .p-step__head {
  background: url(../image/first/purchase.svg) right 2rem center/2.4rem no-repeat #e21919;
}

.p-step__title {
  font-size: 1.6rem;
  font-weight: bold;
}

.p-step__mark {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-family: Helvetica, Arial, sans-serif;
  justify-content: center;
  line-height: 1;
  row-gap: .3rem;
  white-space: nowrap;
}

.p-step__markText {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: .06em;
}

.p-step__markNumber {
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: .06em;
}

.p-step__content {
  border: 1px solid #e21919;
  border-radius: 0 0 6px 6px;
  border-top: 0;
  padding: 2rem;
}

.p-tel {
  align-items: center;
  border: 1px solid #e21919;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  height: 10rem;
  justify-content: center;
  line-height: 1;
  padding: 0 .3rem .3rem 0;
}

.p-tel__text {
  font-size: 1.4rem;
  font-weight: bold;
  text-indent: .9rem;
}

.p-tel__number {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: .04em;
  padding-top: .7rem;
}

.p-tel__number::before {
  color: #e21919;
  content: "\e914";
  display: inline-block;
  font-family: "icomoon" !important;
  font-size: 2.2rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  margin-right: 1rem;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
  transform: translateY(1.2rem);
}

.p-tel__time {
  padding-top: .3rem;
  text-indent: 3.2rem;
}

.p-valuation__head {
  display: none;
}

.p-valuation__thumbnail {
  display: flex;
  border: 1px solid #dedede;
  height: 34.5rem;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

.p-valuation__thumbnail img {
  width: auto;
}

.p-valuation__thumbnailImage {
  font-family: "object-fit: contain", sans-serif;
  height: 27.5rem;
  left: 50%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 27.5rem;
}

.p-valuation__price {
  align-items: center;
  background: #fff;
  border-top: 1px solid #dedede;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  padding: .2rem 0;
  position: fixed;
  transition: opacity .6s cubic-bezier(.19, 1, .22, 1);
  width: 100%;
  z-index: 2;
}

body[data-scrollStart="true"] .p-valuation__price {
  opacity: 1;
  pointer-events: auto;
}

.p-valuation__price,
body[data-scrollEnd="true"] .p-valuation__price {
  opacity: 0;
  pointer-events: none;
}

.p-valuation__priceTerm {
  font-weight: bold;
  padding-top: .2rem;
}

.p-valuation__priceDesc {
  padding-left: 1.7rem;
}

.p-valuation__priceDescNumber {
  color: #e21919;
  font-size: 2.6rem;
}

.p-valuation__priceDescYen {
  color: #e21919;
  font-size: 1.6rem;
  margin-left: -.4rem;
}

.p-valuation__body {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.p-valuation__intro {
  display: flex;
}

.p-valuation__introThumbnail {
  height: 7.4rem;
  margin-right: 1rem;
  min-width: 7.4rem;
  width: 7.4rem;
}

.p-valuation__introDetail {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

.p-valuation__carrier {
  background: #1c1c1c;
  border-radius: 16px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  padding: .7rem 1.4rem;
}

.p-valuation__type {
  color: #eee;
  font-size: 1.2rem;
  line-height: 1;
  padding-left: 1rem;
}

.p-valuation__name {
  font-size: 1.6rem;
  font-weight: bold;
  padding-top: 1rem;
  width: 100%;
}

.p-valuation__name {
  line-height: 1.4;
}

.p-valuation__name::before,
.p-valuation__name::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.p-valuation__name::before {
  margin-top: calc((1 - 1.4) * .5em);
}

.p-valuation__name::after {
  margin-bottom: calc((1 - 1.4) * .5em);
}

.p-valuation__note {
  font-size: 1rem;
  margin-bottom: 2.8rem;
  padding-top: .7rem;
  width: 100%;
}

.p-valuation__full {
  padding-top: 1.5rem;
  width: 100%;
}

.p-valuation__fullTable {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.p-valuation__fullTerm {
  font-size: 1rem;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
}

.p-valuation__fullDesc {
  color: #e21919;
  font-size: 1.4rem;
  font-weight: bold;
  padding-left: 1.3rem;
  width: 100%;
}

.p-valuation__item {
  background: #f7f7f7;
  padding: 2.5rem 2rem;
  width: 100%;
}

.p-valuation__item + .p-valuation__item {
  margin-top: 3rem;
  position: relative;
}

.p-valuation__item + .p-valuation__item::before {
  bottom: calc(100% + .7rem);
  content: "\e901";
  font-family: "icomoon" !important;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  left: 50%;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  text-transform: none;
  transform: translateX(-50%) rotate(90deg);
}

.p-valuation__box + .p-valuation__box {
  padding-top: 2rem;
}

.p-valuation__box[data-box="select"] {
  align-items: center;
  column-gap: 1rem;
  display: flex;
}

.p-valuation__boxTerm {
  line-height: 1.388;
}

.p-valuation__boxTerm::before,
.p-valuation__boxTerm::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.p-valuation__boxTerm::before {
  margin-top: calc((1 - 1.388) * .5em);
}

.p-valuation__boxTerm::after {
  margin-bottom: calc((1 - 1.388) * .5em);
}

.p-valuation__boxTermPoint {
  color: #e21919;
}

.p-valuation__boxDesc {
  padding-top: 1rem;
}

.p-valuation__box[data-box="select"] .p-valuation__boxDesc {
  padding-top: 0;
}

.p-valuation__boxNote {
  padding-top: 1.6rem;
}

.p-valuation__boxLink {
  color: #074b98;
  font-size: 1.4rem;
}

.p-valuation__step {
  align-items: center;
  column-gap: 1rem;
  display: flex;
  font-size: 1.6rem;
  font-weight: bold;
}

.p-valuation__step > span {
  white-space: nowrap;
}

.p-valuation__available {
  align-items: center;
  display: grid;
  grid-template-columns: 12rem 1fr;
}

.p-valuation__available + .p-valuation__available {
  margin-top: 1rem;
}

.p-valuation__radio {
  height: 100%;
}

.p-valuation__radioLabel {
  align-items: center;
  background: #fff;
  border: 1px solid #1c1c1c;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  height: 100%;
  justify-content: center;
  line-height: 1.3;
  padding: .8rem .9rem;
  position: relative;
  text-align: center;
}

.p-valuation__radioInput:checked + .p-valuation__radioLabel {
  background: #1c1c1c;
  color: #fff;
}

.p-valuation__rank {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.p-valuation__rankTitle {
  font-weight: bold;
}

.p-valuation__rankButton {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  display: block;
  height: auto;
  opacity: 1;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: opacity .6s cubic-bezier(.19, 1, .22, 1);
  width: 11.4rem;
}

.p-valuation__rankButton::after {
  background: #1c1c1c;
  border-radius: 4rem;
  bottom: 0;
  color: #fff;
  content: "\e90f";
  font-family: "icomoon" !important;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  height: 5.4rem;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  padding: 1.2rem 2.3rem 0 0;
  position: absolute;
  right: 0;
  text-transform: none;
  transform: translate(50%, 50%);
  width: 5.4rem;
}

.p-valuation__rankModal {
  margin: 0 auto;
  position: relative;
}

.p-valuation__rankModalClose {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  background: #1c1c1c;
  border: 0;
  border-radius: 3.6rem;
  display: block;
  height: 3.6rem;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
  width: 3.6rem;
}

.p-valuation__rankModalClose::before,
.p-valuation__rankModalClose::after {
  background: #fff;
  border-radius: 3px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 50%;
}

.p-valuation__rankModalClose::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-valuation__rankModalClose::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-valuation__more {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  color: #074b98;
  display: block;
  line-height: 1.8; /* 1 → 1.8 20241118*/
  margin: 0 auto;
  padding: 0 0 0 2.7rem;
  position: relative;
  text-decoration: underline;
  transition: text-decoration-color .6s cubic-bezier(.19, 1, .22, 1), -webkit-text-decoration-color .6s cubic-bezier(.19, 1, .22, 1);
  transition: text-decoration-color .6s cubic-bezier(.19, 1, .22, 1);
  transition: -webkit-text-decoration-color .6s cubic-bezier(.19, 1, .22, 1);
}

.p-valuation__more::before {
  align-items: center;
  background: #074b98;
  border-radius: 50%;
  color: #fff;
  content: "\e901";
  display: flex;
  font-family: "icomoon" !important;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  height: 17px;
  justify-content: center;
  left: .2rem;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  padding-top: .1rem;
  position: absolute;
  text-transform: none;
  top: 0;
  width: 17px;
}

.p-valuation__select {
  position: relative;
}

.p-valuation__select::before {
  color: #e21919;
  content: "\e901";
  font-family: "icomoon" !important;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: .8rem;
  text-transform: none;
  top: 50%;
  transform: translateY(-50%) rotate(90deg) scale(.8);
}

.p-valuation__selectInner {
  align-items: center;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #1c1c1c;
  border-radius: .6rem;
  box-shadow: none;
  cursor: pointer;
  display: flex;
  height: 4rem;
  justify-content: flex-start;
  margin-left: auto;
  outline: none;
  padding: 0 1.4rem;
  width: 8rem;
}

.p-valuation__submit {
  display: block !important;
  padding-top: 2rem;
  width: 100%;
}

.p-valuation__submitText {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}

.p-valuation__submitPrice {
  color: #e21919;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

.p-valuation__submitButton {
  -webkit-appearance: none;
  appearance: none;
  background: #e21919;
  border: 0;
  border-radius: 5px;
  color: #fff;
  display: inline-flex;
  font-size: 1.5rem;
  font-weight: bold;
  justify-content: center;
  line-height: 1.4;
  opacity: .3;
  padding: 1.7rem 3.5rem;
  text-align: left;
  width: 100%;
}

.p-valuation__submitButton::before {
  content: "\e904";
  font-family: "icomoon" !important;
  font-size: 1.9rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  font-weight: bold !important;
  font-weight: normal;
  line-height: 1;
  margin-left: -.8rem;
  -moz-osx-font-smoothing: grayscale;
  padding-right: 1.5rem;
  text-transform: none;
  transform: translateY(.2rem);
}

.p-valuation__submit[data-stepSelect="true"] .p-valuation__submitButton {
  opacity: 1;
}

.p-valuationInfo__thumbnail {
  border: 1px solid #dedede;
  height: 34.5rem;
  margin: 0 auto;
  position: relative;
  width: 34.5rem;
}

.p-valuationInfo__thumbnailImage {
  font-family: "object-fit: contain", sans-serif;
  height: 27.5rem;
  left: 50%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 27.5rem;
}

.p-valuationInfo__table {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  padding-top: 2rem;
}

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

.u-color[data-color="secondary"] {
  color: #e21919;
}

.u-emphasis {
  color: #e21919;
  font-size: 1.125em;
  font-weight: bold;
}

.u-hover {
  opacity: 1;
  transition: opacity .6s cubic-bezier(.19, 1, .22, 1);
}

.u-textAlign[data-textAlign~="xs-left"] {
  text-align: left;
}

.u-textAlign[data-textAlign~="xs-right"] {
  text-align: right;
}

.u-textAlign[data-textAlign~="xs-center"] {
  text-align: center;
}

.u-visuallyHidden {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  display: block !important;
  height: 4px !important;
  left: 0 !important;
  margin: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: fixed !important;
  top: 0 !important;
  visibility: visible !important;
  white-space: nowrap !important;
  width: 4px !important;
}
.anchorlist {
  display: flex;
}

@media screen and (max-width: 1399px) {
  .u-hide[data-hide~="max-xxl"] {
    display: none !important;
  }
}

@media screen and (max-width: 1199px) {
  .u-hide[data-hide~="max-xl"] {
    display: none !important;
  }
}

@media screen and (max-width: 991px) {
  .u-hide[data-hide~="max-lg"] {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-hide[data-hide~="max-md"] {
    display: none !important;
  }
}

@media screen and (max-width: 575px) {
  .u-hide[data-hide~="max-sm"] {
    display: none !important;
  }
}

@media screen and (min-width: 576px) {
  .u-hide[data-hide~="min-sm"] {
    display: none !important;
  }
  .c-area {
    margin-left: auto;
    margin-right: auto;
    max-width: 57.6rem;
  }
  .c-article__section.--sub {
    margin-left: auto;
    margin-right: auto;
    max-width: 57.6rem;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
  }
  .c-button {
    max-width: 30rem;
  }
  .c-mapButton {
    max-width: 30rem;
  }
  .c-secondaryButton {
    max-width: 30rem;
  }
  .c-tertiaryButton {
    max-width: 30rem;
  }
  .c-grid[data-grid~="sm-left"] {
    justify-content: flex-start;
  }
  .c-grid[data-grid~="sm-center"] {
    justify-content: center;
  }
  .c-grid[data-grid~="sm-right"] {
    justify-content: flex-end;
  }
  .c-grid[data-grid~="sm-space-between"] {
    justify-content: space-between;
  }
  .c-grid[data-grid~="sm-top"] {
    align-items: flex-start;
  }
  .c-grid[data-grid~="sm-middle"] {
    align-items: center;
  }
  .c-grid[data-grid~="sm-bottom"] {
    align-items: flex-end;
  }
  .c-grid[data-grid~="sm-row-reverse"] {
    flex-direction: row-reverse;
  }
  .c-grid[data-grid~="sm-column-reverse"] {
    flex-direction: column-reverse;
  }
  .c-grid[data-grid~="sm-5"] {
    margin: -.5rem 0 0 -.5rem;
  }
  .c-grid[data-grid~="sm-5"] > .c-grid__item {
    border-width: .5rem 0 0 .5rem;
  }
  .c-grid[data-grid~="sm-10"] {
    margin: -1rem 0 0 -1rem;
  }
  .c-grid[data-grid~="sm-10"] > .c-grid__item {
    border-width: 1rem 0 0 1rem;
  }
  .c-grid[data-grid~="sm-15"] {
    margin: -1.5rem 0 0 -1.5rem;
  }
  .c-grid[data-grid~="sm-15"] > .c-grid__item {
    border-width: 1.5rem 0 0 1.5rem;
  }
  .c-grid[data-grid~="sm-20"] {
    margin: -2rem 0 0 -2rem;
  }
  .c-grid[data-grid~="sm-20"] > .c-grid__item {
    border-width: 2rem 0 0 2rem;
  }
  .c-grid[data-grid~="sm-25"] {
    margin: -2.5rem 0 0 -2.5rem;
  }
  .c-grid[data-grid~="sm-25"] > .c-grid__item {
    border-width: 2.5rem 0 0 2.5rem;
  }
  .c-grid[data-grid~="sm-30"] {
    margin: -3rem 0 0 -3rem;
  }
  .c-grid[data-grid~="sm-30"] > .c-grid__item {
    border-width: 3rem 0 0 3rem;
  }
  .c-grid[data-grid~="sm-35"] {
    margin: -3.5rem 0 0 -3.5rem;
  }
  .c-grid[data-grid~="sm-35"] > .c-grid__item {
    border-width: 3.5rem 0 0 3.5rem;
  }
  .c-grid[data-grid~="sm-40"] {
    margin: -4rem 0 0 -4rem;
  }
  .c-grid[data-grid~="sm-40"] > .c-grid__item {
    border-width: 4rem 0 0 4rem;
  }
  .c-grid[data-grid~="sm-45"] {
    margin: -4.5rem 0 0 -4.5rem;
  }
  .c-grid[data-grid~="sm-45"] > .c-grid__item {
    border-width: 4.5rem 0 0 4.5rem;
  }
  .c-grid[data-grid~="sm-50"] {
    margin: -5rem 0 0 -5rem;
  }
  .c-grid[data-grid~="sm-50"] > .c-grid__item {
    border-width: 5rem 0 0 5rem;
  }
  .c-grid[data-grid~="sm-55"] {
    margin: -5.5rem 0 0 -5.5rem;
  }
  .c-grid[data-grid~="sm-55"] > .c-grid__item {
    border-width: 5.5rem 0 0 5.5rem;
  }
  .c-grid[data-grid~="sm-60"] {
    margin: -6rem 0 0 -6rem;
  }
  .c-grid[data-grid~="sm-60"] > .c-grid__item {
    border-width: 6rem 0 0 6rem;
  }
  .c-grid[data-grid~="sm-65"] {
    margin: -6.5rem 0 0 -6.5rem;
  }
  .c-grid[data-grid~="sm-65"] > .c-grid__item {
    border-width: 6.5rem 0 0 6.5rem;
  }
  .c-grid[data-grid~="sm-70"] {
    margin: -7rem 0 0 -7rem;
  }
  .c-grid[data-grid~="sm-70"] > .c-grid__item {
    border-width: 7rem 0 0 7rem;
  }
  .c-grid[data-grid~="sm-75"] {
    margin: -7.5rem 0 0 -7.5rem;
  }
  .c-grid[data-grid~="sm-75"] > .c-grid__item {
    border-width: 7.5rem 0 0 7.5rem;
  }
  .c-grid[data-grid~="sm-80"] {
    margin: -8rem 0 0 -8rem;
  }
  .c-grid[data-grid~="sm-80"] > .c-grid__item {
    border-width: 8rem 0 0 8rem;
  }
  .c-grid[data-grid~="sm-85"] {
    margin: -8.5rem 0 0 -8.5rem;
  }
  .c-grid[data-grid~="sm-85"] > .c-grid__item {
    border-width: 8.5rem 0 0 8.5rem;
  }
  .c-grid[data-grid~="sm-90"] {
    margin: -9rem 0 0 -9rem;
  }
  .c-grid[data-grid~="sm-90"] > .c-grid__item {
    border-width: 9rem 0 0 9rem;
  }
  .c-grid[data-grid~="sm-95"] {
    margin: -9.5rem 0 0 -9.5rem;
  }
  .c-grid[data-grid~="sm-95"] > .c-grid__item {
    border-width: 9.5rem 0 0 9.5rem;
  }
  .c-grid[data-grid~="sm-100"] {
    margin: -10rem 0 0 -10rem;
  }
  .c-grid[data-grid~="sm-100"] > .c-grid__item {
    border-width: 10rem 0 0 10rem;
  }
  .c-grid[data-grid~="sm-105"] {
    margin: -10.5rem 0 0 -10.5rem;
  }
  .c-grid[data-grid~="sm-105"] > .c-grid__item {
    border-width: 10.5rem 0 0 10.5rem;
  }
  .c-grid[data-grid~="sm-110"] {
    margin: -11rem 0 0 -11rem;
  }
  .c-grid[data-grid~="sm-110"] > .c-grid__item {
    border-width: 11rem 0 0 11rem;
  }
  .c-grid[data-grid~="sm-115"] {
    margin: -11.5rem 0 0 -11.5rem;
  }
  .c-grid[data-grid~="sm-115"] > .c-grid__item {
    border-width: 11.5rem 0 0 11.5rem;
  }
  .c-grid[data-grid~="sm-120"] {
    margin: -12rem 0 0 -12rem;
  }
  .c-grid[data-grid~="sm-120"] > .c-grid__item {
    border-width: 12rem 0 0 12rem;
  }
  .c-grid[data-grid~="sm-0"] {
    margin: 0;
  }
  .c-grid[data-grid~="sm-0"] > .c-grid__item {
    border-width: 0;
  }
  .c-grid__item[data-gridItem~="sm-1"] {
    width: 8.33333%;
  }
  .c-grid__item[data-gridItem~="sm-2"] {
    width: 16.66667%;
  }
  .c-grid__item[data-gridItem~="sm-3"] {
    width: 25%;
  }
  .c-grid__item[data-gridItem~="sm-4"] {
    width: 33.33333%;
  }
  .c-grid__item[data-gridItem~="sm-5"] {
    width: 41.66667%;
  }
  .c-grid__item[data-gridItem~="sm-6"] {
    width: 50%;
  }
  .c-grid__item[data-gridItem~="sm-7"] {
    width: 58.33333%;
  }
  .c-grid__item[data-gridItem~="sm-8"] {
    width: 66.66667%;
  }
  .c-grid__item[data-gridItem~="sm-9"] {
    width: 75%;
  }
  .c-grid__item[data-gridItem~="sm-10"] {
    width: 83.33333%;
  }
  .c-grid__item[data-gridItem~="sm-11"] {
    width: 91.66667%;
  }
  .c-grid__item[data-gridItem~="sm-12"] {
    width: 100%;
  }
  .c-grid__item[data-gridItem~="sm-five"] {
    width: 20%;
  }
  .c-grid__item[data-gridItem~="sm-seven"] {
    width: 14.285%;
  }
  .c-grid__item[data-gridItem~="sm-eleven"] {
    width: 9.09%;
  }
  .c-grid__item[data-gridItem~="sm-auto"] {
    width: auto;
  }
  .c-tab__buttonWrap {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .p-bookingDate__button {
    max-width: 40rem;
  }
  .p-formAddress__prefectures {
    max-width: 32rem;
  }
  .p-headerNav__mainItem {
    width: 33.333%;
  }
  .p-reason__button {
    display: flex;
    margin: 0 auto;
    max-width: 21rem;
  }
  .p-searchButton {
    max-width: 40rem;
  }
  .p-shopDetail__wayList {
    margin: -2rem 0 0 -2rem;
  }
  .p-shopDetail__wayItem {
    padding: 2rem 0 0 2rem;
    width: 50%;
  }
  .p-valuation__submitButton {
    max-width: 30rem;
  }
  .u-textAlign[data-textAlign~="sm-left"] {
    text-align: left;
  }
  .u-textAlign[data-textAlign~="sm-right"] {
    text-align: right;
  }
  .u-textAlign[data-textAlign~="sm-center"] {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .u-hide[data-hide~="min-md"] {
    display: none !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  .l-floating {
    bottom: calc(50% + 3.7rem);
    transform: translateY(50%);
  }
  .c-area {
    max-width: 146rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .c-area[data-area="small"] {
    max-width: 86rem;
  }
  .c-area[data-area="large"] {
    max-width: 174rem;
  }
  .c-article__section.--sub {
    max-width: 140rem;
  }
  .c-anchorButton:focus,
  .c-anchorButton:hover {
    background: #1c1c1c;
    color: #fff;
  }
  .c-mapButton:focus,
  .c-mapButton:hover {
    border-color: #e21919;
    color: #e21919;
  }
  .c-secondaryButton:focus,
  .c-secondaryButton:hover {
    background: #e21919;
    color: #fff;
  }
  .c-secondaryButton:focus::before,
  .c-secondaryButton:hover::before {
    background: #fff;
    color: #e21919;
  }
  .c-secondaryButton:focus[data-sub="true"],
  .c-secondaryButton:hover[data-sub="true"] {
    background: #1c1c1c;
  }
  .c-secondaryButton:focus[data-sub="true"]::before,
  .c-secondaryButton:hover[data-sub="true"]::before {
    color: #1c1c1c;
  }
  .c-tertiaryButton:focus,
  .c-tertiaryButton:hover {
    border-color: #e21919;
    color: #e21919;
  }
  .c-grid[data-grid~="md-left"] {
    justify-content: flex-start;
  }
  .c-grid[data-grid~="md-center"] {
    justify-content: center;
  }
  .c-grid[data-grid~="md-right"] {
    justify-content: flex-end;
  }
  .c-grid[data-grid~="md-space-between"] {
    justify-content: space-between;
  }
  .c-grid[data-grid~="md-top"] {
    align-items: flex-start;
  }
  .c-grid[data-grid~="md-middle"] {
    align-items: center;
  }
  .c-grid[data-grid~="md-bottom"] {
    align-items: flex-end;
  }
  .c-grid[data-grid~="md-row-reverse"] {
    flex-direction: row-reverse;
  }
  .c-grid[data-grid~="md-column-reverse"] {
    flex-direction: column-reverse;
  }
  .c-grid[data-grid~="md-5"] {
    margin: -.5rem 0 0 -.5rem;
  }
  .c-grid[data-grid~="md-5"] > .c-grid__item {
    border-width: .5rem 0 0 .5rem;
  }
  .c-grid[data-grid~="md-10"] {
    margin: -1rem 0 0 -1rem;
  }
  .c-grid[data-grid~="md-10"] > .c-grid__item {
    border-width: 1rem 0 0 1rem;
  }
  .c-grid[data-grid~="md-15"] {
    margin: -1.5rem 0 0 -1.5rem;
  }
  .c-grid[data-grid~="md-15"] > .c-grid__item {
    border-width: 1.5rem 0 0 1.5rem;
  }
  .c-grid[data-grid~="md-20"] {
    margin: -2rem 0 0 -2rem;
  }
  .c-grid[data-grid~="md-20"] > .c-grid__item {
    border-width: 2rem 0 0 2rem;
  }
  .c-grid[data-grid~="md-25"] {
    margin: -2.5rem 0 0 -2.5rem;
  }
  .c-grid[data-grid~="md-25"] > .c-grid__item {
    border-width: 2.5rem 0 0 2.5rem;
  }
  .c-grid[data-grid~="md-30"] {
    margin: -3rem 0 0 -3rem;
  }
  .c-grid[data-grid~="md-30"] > .c-grid__item {
    border-width: 3rem 0 0 3rem;
  }
  .c-grid[data-grid~="md-35"] {
    margin: -3.5rem 0 0 -3.5rem;
  }
  .c-grid[data-grid~="md-35"] > .c-grid__item {
    border-width: 3.5rem 0 0 3.5rem;
  }
  .c-grid[data-grid~="md-40"] {
    margin: -4rem 0 0 -4rem;
  }
  .c-grid[data-grid~="md-40"] > .c-grid__item {
    border-width: 4rem 0 0 4rem;
  }
  .c-grid[data-grid~="md-45"] {
    margin: -4.5rem 0 0 -4.5rem;
  }
  .c-grid[data-grid~="md-45"] > .c-grid__item {
    border-width: 4.5rem 0 0 4.5rem;
  }
  .c-grid[data-grid~="md-50"] {
    margin: -5rem 0 0 -5rem;
  }
  .c-grid[data-grid~="md-50"] > .c-grid__item {
    border-width: 5rem 0 0 5rem;
  }
  .c-grid[data-grid~="md-55"] {
    margin: -5.5rem 0 0 -5.5rem;
  }
  .c-grid[data-grid~="md-55"] > .c-grid__item {
    border-width: 5.5rem 0 0 5.5rem;
  }
  .c-grid[data-grid~="md-60"] {
    margin: -6rem 0 0 -6rem;
  }
  .c-grid[data-grid~="md-60"] > .c-grid__item {
    border-width: 6rem 0 0 6rem;
  }
  .c-grid[data-grid~="md-65"] {
    margin: -6.5rem 0 0 -6.5rem;
  }
  .c-grid[data-grid~="md-65"] > .c-grid__item {
    border-width: 6.5rem 0 0 6.5rem;
  }
  .c-grid[data-grid~="md-70"] {
    margin: -7rem 0 0 -7rem;
  }
  .c-grid[data-grid~="md-70"] > .c-grid__item {
    border-width: 7rem 0 0 7rem;
  }
  .c-grid[data-grid~="md-75"] {
    margin: -7.5rem 0 0 -7.5rem;
  }
  .c-grid[data-grid~="md-75"] > .c-grid__item {
    border-width: 7.5rem 0 0 7.5rem;
  }
  .c-grid[data-grid~="md-80"] {
    margin: -8rem 0 0 -8rem;
  }
  .c-grid[data-grid~="md-80"] > .c-grid__item {
    border-width: 8rem 0 0 8rem;
  }
  .c-grid[data-grid~="md-85"] {
    margin: -8.5rem 0 0 -8.5rem;
  }
  .c-grid[data-grid~="md-85"] > .c-grid__item {
    border-width: 8.5rem 0 0 8.5rem;
  }
  .c-grid[data-grid~="md-90"] {
    margin: -9rem 0 0 -9rem;
  }
  .c-grid[data-grid~="md-90"] > .c-grid__item {
    border-width: 9rem 0 0 9rem;
  }
  .c-grid[data-grid~="md-95"] {
    margin: -9.5rem 0 0 -9.5rem;
  }
  .c-grid[data-grid~="md-95"] > .c-grid__item {
    border-width: 9.5rem 0 0 9.5rem;
  }
  .c-grid[data-grid~="md-100"] {
    margin: -10rem 0 0 -10rem;
  }
  .c-grid[data-grid~="md-100"] > .c-grid__item {
    border-width: 10rem 0 0 10rem;
  }
  .c-grid[data-grid~="md-105"] {
    margin: -10.5rem 0 0 -10.5rem;
  }
  .c-grid[data-grid~="md-105"] > .c-grid__item {
    border-width: 10.5rem 0 0 10.5rem;
  }
  .c-grid[data-grid~="md-110"] {
    margin: -11rem 0 0 -11rem;
  }
  .c-grid[data-grid~="md-110"] > .c-grid__item {
    border-width: 11rem 0 0 11rem;
  }
  .c-grid[data-grid~="md-115"] {
    margin: -11.5rem 0 0 -11.5rem;
  }
  .c-grid[data-grid~="md-115"] > .c-grid__item {
    border-width: 11.5rem 0 0 11.5rem;
  }
  .c-grid[data-grid~="md-120"] {
    margin: -12rem 0 0 -12rem;
  }
  .c-grid[data-grid~="md-120"] > .c-grid__item {
    border-width: 12rem 0 0 12rem;
  }
  .c-grid[data-grid~="md-0"] {
    margin: 0;
  }
  .c-grid[data-grid~="md-0"] > .c-grid__item {
    border-width: 0;
  }
  .c-grid__item[data-gridItem~="md-1"] {
    width: 8.33333%;
  }
  .c-grid__item[data-gridItem~="md-2"] {
    width: 16.66667%;
  }
  .c-grid__item[data-gridItem~="md-3"] {
    width: 25%;
  }
  .c-grid__item[data-gridItem~="md-4"] {
    width: 33.33333%;
  }
  .c-grid__item[data-gridItem~="md-5"] {
    width: 41.66667%;
  }
  .c-grid__item[data-gridItem~="md-6"] {
    width: 50%;
  }
  .c-grid__item[data-gridItem~="md-7"] {
    width: 58.33333%;
  }
  .c-grid__item[data-gridItem~="md-8"] {
    width: 66.66667%;
  }
  .c-grid__item[data-gridItem~="md-9"] {
    width: 75%;
  }
  .c-grid__item[data-gridItem~="md-10"] {
    width: 83.33333%;
  }
  .c-grid__item[data-gridItem~="md-11"] {
    width: 91.66667%;
  }
  .c-grid__item[data-gridItem~="md-12"] {
    width: 100%;
  }
  .c-grid__item[data-gridItem~="md-five"] {
    width: 20%;
  }
  .c-grid__item[data-gridItem~="md-seven"] {
    width: 14.285%;
  }
  .c-grid__item[data-gridItem~="md-eleven"] {
    width: 9.09%;
  }
  .c-grid__item[data-gridItem~="md-auto"] {
    width: auto;
  }
  .c-tab__button:focus,
  .c-tab__button:hover {
    background: #e21919;
  }
  .c-table__term,
  .c-table__desc {
    display: table-cell;
    vertical-align: top;
  }
  .c-table__term {
    padding: 0 0 1.4rem 0;
    white-space: nowrap;
  }
  .c-table__row + .c-table__row .c-table__term {
    padding: 1.4rem 0;
  }
  .c-table__desc {
    padding: 0 0 1.4rem 3rem;
    width: 100%;
  }
  .c-table__row + .c-table__row .c-table__desc {
    padding: 1.4rem 0 1.4rem 3rem;
  }
  .p-assessmentKeyword__pickupWord:focus,
  .p-assessmentKeyword__pickupWord:hover {
    background: #e21919;
  }
  .p-assessmentModel {
    padding: 1rem;
  }
  .p-assessmentModel[data-type="genre"]:focus::before,
  .p-assessmentModel[data-type="genre"]:hover::before {
    background: #ffebf5;
  }
  .p-assessmentModel[data-type="genre"]:focus::after,
  .p-assessmentModel[data-type="genre"]:hover::after {
    background: #e21919;
    color: #fff;
  }
  .p-assessmentModel:focus,
  .p-assessmentModel:hover {
    border-color: #e21919;
  }
  .p-bookingConfirm__tableRow {
    min-height: 19rem;
    padding-left: 19rem;
    position: relative;
  }
  .p-bookingConfirm__tableThumbnail {
    left: 1.5rem;
    position: absolute;
    top: 1.5rem;
  }
  .p-bookingConfirm__tableName {
    padding: 1rem 0 1rem;
    width: 100%;
  }
  .p-bookingConfirm__tableColor,
  .p-bookingConfirm__tableCount,
  .p-bookingConfirm__tableSize,
  .p-bookingConfirm__tablePrice {
    display: inline-block;
    padding: 1.5rem 2rem 0 0;
  }
  .p-bookingConfirm__tablePrice {
    width: 100%;
  }
  .p-bookingConfirm__total {
    padding-top: 2rem;
  }
  .p-bookingConfirm__totalInner {
    align-items: baseline;
    display: flex;
    justify-content: flex-end;
  }
  .p-bookingConfirm__totalCountText {
    width: auto;
  }
  .p-bookingConfirm__totalCountText::after {
    content: "：";
  }
  .p-bookingConfirm__totalCountNumber {
    padding-top: 0;
  }
  .p-bookingConfirm__totalPrice {
    padding: 0 0 0 6rem;
  }
  .p-bookingConfirm__totalPriceText {
    padding-bottom: 0;
    width: auto;
  }
  .p-bookingConfirm__totalPriceText::after {
    content: "：";
  }
  .p-bookingConfirm__totalPriceNumber {
    padding-left: .5rem;
  }
  .p-bookingStep__item {
    flex-direction: row;
  }
  .p-breadcrumb__link:focus,
  .p-breadcrumb__link:hover {
    color: #e21919;
    -webkit-text-decoration-color: #e21919;
    text-decoration-color: #e21919;
  }
  .p-cartForm__tableItem {
    column-gap: 2rem;
    grid-template: repeat(5, auto)/15rem 1fr;
  }
  .p-cartForm__thumbnail {
    height: 15rem;
    width: 15rem;
  }
  .p-cartForm__thumbnailImage {
    height: 13rem;
    width: 13rem;
  }
  .p-cartForm__carrier {
    font-size: 1.4rem;
  }
  .p-cartForm__remove {
    bottom: 0;
    left: auto;
    right: 0;
    top: auto;
  }
  .p-cartForm__removeButton:focus,
  .p-cartForm__removeButton:hover {
    border-color: #e21919;
    color: #e21919;
  }
  .p-columnArchive {
    gap: 2rem;
  }
  .p-columnArchive__item {
    width: calc(33.333% - 4rem / 3);
  }
  .p-columnArchive__link {
    flex-direction: column;
  }
  .p-columnArchive__link:focus .p-columnArchive__title,
  .p-columnArchive__link:focus .p-columnArchive__text,
  .p-columnArchive__link:hover .p-columnArchive__title,
  .p-columnArchive__link:hover .p-columnArchive__text {
    color: #e21919;
  }
  .p-columnArchive__thumbnail {
    aspect-ratio: 335 / 180;
    height: auto;
    width: 100%;
  }
  .p-columnArchive__content {
    padding: 1rem;
  }
  .p-columnArchive__category {
    font-size: 1.4rem;
    height: 2.6rem;
    width: 12rem;
  }
  .p-columnArchive__title {
    font-size: 1.6rem;
  }
  .p-consideration {
    display: flex;
  }
  .p-consideration__head {
    white-space: nowrap;
  }
  .p-consideration__body {
    padding-left: 6rem;
    padding-top: 0;
  }
  .p-customer {
    margin: 0 auto;
    max-width: 80rem;
  }
  .p-customer[data-size="large"] .p-customer__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .p-customer[data-size="large"] .p-customer__item {
    padding-top: 0;
    width: calc(50% - 1.5rem);
  }
  .p-customer[data-size="large"] .p-customer__note {
    width: 100%;
  }
  .p-floating {
    width: 6rem;
  }
  .p-flow__item {
    width: calc(50% - 4rem / 2);
  }
  .p-footerLink:focus,
  .p-footerLink:hover {
    color: #626262;
  }
  .p-footerLogo__link:focus,
  .p-footerLogo__link:hover {
    opacity: .6;
  }
  .p-footerNav__link:focus,
  .p-footerNav__link:hover {
    color: #e21919;
  }
  .p-footerPagetop:focus,
  .p-footerPagetop:hover {
    background: #1c1c1c;
  }
  body[data-userAgent="ie"] .p-form {
    table-layout: fixed;
  }
  .p-form__term {
    display: table-cell;
    padding: 2.5rem 0;
    text-align: right;
    vertical-align: top;
    white-space: nowrap;
  }
  .p-form[data-form="confirm"] .p-form__term,
  .mw_wp_form_confirm .p-form__term {
    padding-bottom: 2.5rem;
  }
  body[data-userAgent="ie"] .p-form__term {
    width: 30%;
  }
  .p-form__termBatch {
    transform: translateY(.5rem);
  }
  .p-form__desc {
    display: table-cell;
    padding: 2rem 0 2rem 3rem;
    vertical-align: top;
  }
  .p-form[data-form="confirm"] .p-form__desc,
  .mw_wp_form_confirm .p-form__desc {
    padding: 0;
  }
  .p-formAgree {
    padding-top: 1rem;
  }
  .p-formCheck {
    padding: 1rem 0;
  }
  .p-formCheck .mwform-checkbox-field {
    width: auto;
  }
  .p-header__content {
    padding: 0 3rem;
  }
  .p-headerLine:focus,
  .p-headerLine:hover {
    opacity: .6;
  }
  .p-headerLogo__link:focus,
  .p-headerLogo__link:hover {
    opacity: .6;
  }
  .p-homeHero {
    padding: 0;
  }
  .p-homeHero__link:focus,
  .p-homeHero__link:hover {
    opacity: .5;
  }
  .p-homeModel {
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 1rem;
  }
  .p-homeModel:focus,
  .p-homeModel:hover {
    border-color: #e21919;
  }
  .p-homeModel__name {
    padding-top: 0;
  }
  .p-secondaryMainvisual {
    padding-top: 0;
  }
  .p-secondaryMainvisual__background {
    height: 100%;
    width: 36.458vw;
  }
  .p-method:focus,
  .p-method:hover {
    background: #e21919;
    color: #fff;
  }
  .p-method:focus::after,
  .p-method:hover::after {
    color: #fff;
  }
  .p-methodCommon:focus,
  .p-methodCommon:hover {
    border-color: #e21919;
  }
  .p-methodCommon__content {
    justify-content: flex-start;
  }
  .p-newsArchive__link:focus,
  .p-newsArchive__link:hover {
    color: #e21919;
  }
  .p-newsArchive__link:focus .p-newsArchive__category,
  .p-newsArchive__link:hover .p-newsArchive__category {
    background: #e21919;
    color: #fff;
  }
  .p-newsArchive__title {
    max-width: calc(100% - 25rem);
    padding-left: 5rem;
    padding-top: 0;
    width: auto;
  }
  .p-purchaseArchive__model:focus,
  .p-purchaseArchive__model:hover {
    border-color: #e21919;
    color: #e21919;
  }
  .p-purchaseArchive__assessmentButton:focus,
  .p-purchaseArchive__assessmentButton:hover {
    background: #fff;
    color: #e21919;
  }
  .p-purchaseArchive__more:focus,
  .p-purchaseArchive__more:hover {
    background: #e21919;
    color: #fff;
  }
  .p-purchaseArchive__more:focus::before,
  .p-purchaseArchive__more:hover::before {
    background: #fff;
    color: #e21919;
  }
  .p-purchaseBrand {
    gap: 8rem 4.6rem;
    margin-top: 2.7rem;
  }
  .p-purchaseBrand__item {
    display: block;
    grid-template: auto auto auto auto auto auto / auto;
    padding: 0;
    width: calc(100% / 3 - 4.6rem * 2 / 3);
  }
  .p-purchaseBrand__name {
    font-size: 1.8rem;
    grid-area: 2 / 1;
    margin-top: .9rem;
  }
  .p-purchaseBrand__maker {
    font-size: 1.8rem;
    grid-area: 3 / 1;
  }
  .p-purchaseBrand__image {
    grid-area: 1 / 1;
    margin: 0 auto;
    width: 23rem;
    height: 23rem;
  }
  .p-purchaseBrand__desc {
    font-size: 1.6rem;
    grid-area: 4 / 1;
  }
  .p-purchaseBrand__button {
    grid-area: 5 / 1;
    margin: 1rem 0 0;
  }
  .p-purchaseBrand__button > .c-button {
    max-width: none;
  }
  .p-purchaseBrand__series {
    background: none;
    border-top: 1px solid #dedede;
    grid-area: 6 / 1;
    margin: 1.5rem 0 0;
    padding: 1.5rem 0 0;
  }
  .p-purchaseBrand__seriesTitle {
    font-size: 1.8rem;
  }
  .p-purchaseBrand__seriesList > li > a {
    font-size: 1.4rem;
  }
  .p-purchaseCarrier:focus,
  .p-purchaseCarrier:hover {
    border-color: #e21919;
  }
  .p-purchaseModel:focus,
  .p-purchaseModel:hover {
    border-color: #e21919;
    color: #e21919;
  }
  .p-reason {
    padding-left: 8rem;
    position: relative;
  }
  .p-reason__head {
    align-items: flex-start;
    text-align: left;
  }
  .p-reason__icon {
    left: 0;
    position: absolute;
    top: 4rem;
    transform: translateY(-50%);
  }
  .p-search__series {
    width: calc(50% - 1.5rem);
  }
  .p-search__name {
    width: calc(50% - 1.5rem);
  }
  .p-search__banner {
    padding-top: 3rem;
  }
  .p-search__bannerLink:focus,
  .p-search__bannerLink:hover {
    opacity: .6;
  }
  .p-searchRecommend:focus,
  .p-searchRecommend:hover {
    border-color: #e21919;
    color: #e21919;
  }
  .p-result:focus,
  .p-result:hover {
    border-color: #e21919;
  }
  .p-shop__gps:focus,
  .p-shop__gps:hover {
    opacity: .8;
  }
  .p-shop__more:focus,
  .p-shop__more:hover {
    background: #e21919;
    color: #fff;
  }
  .p-shopDetail__wayItem {
    width: 33.333%;
  }
  .p-spec__visualText {
    font-size: 1.6rem;
  }
  .p-secondaryStep__item {
    column-gap: 3rem;
    display: grid;
    grid-template: auto 1fr / 1fr 24rem;
    padding-left: 11rem;
    position: relative;
  }
  .p-secondaryStep__item:not(:last-child)::before {
    background: url(./step-line.svg) center bottom/.3rem repeat-y;
    content: "";
    height: calc(100% + 4rem - 8rem - 1.7rem - .7rem * 2);
    left: 4rem;
    position: absolute;
    top: calc(8rem + .5rem);
    transform: translateX(-50%);
    width: 1.3rem;
  }
  .p-secondaryStep__item:not(:last-child)::after {
    bottom: calc(-4rem + .7rem);
    color: #e21919;
    content: "\e900";
    font-family: "icomoon" !important;
    font-size: 1.6rem;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    left: 4rem;
    line-height: 1;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    text-transform: none;
    transform: translateX(-50%) rotate(90deg);
  }
  .p-secondaryStep__mark {
    height: 8rem;
    left: 0;
    position: absolute;
    top: 0;
    width: 8rem;
  }
  .p-secondaryStep__markText {
    font-size: 1.2rem;
  }
  .p-secondaryStep__markNumber {
    font-size: 2.6rem;
  }
  .p-secondaryStep__image {
    grid-area: 1 / 2 / 3 / 3;
  }
  .p-valuation {
    align-items: flex-start;
    display: flex;
  }
  .p-valuation__head {
    display: block;
    position: sticky;
    top: calc(var(--headerHeight) + 3rem);
  }
  .p-valuation__price {
    justify-content: flex-start;
    opacity: 1;
    pointer-events: auto;
    position: static;
  }
  .p-valuation__body {
    padding-left: 3rem;
    padding-top: 0;
    width: calc(100% - 34.5rem);
  }
  .p-valuation__introThumbnail {
    display: none;
  }
  .p-valuation__rank {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  .p-valuation__rankButton {
    width: 100%;
  }
  .p-valuation__rankButton:focus,
  .p-valuation__rankButton:hover {
    opacity: .6;
  }
  .p-valuation__rankModalClose {
    height: 5rem;
    width: 5rem;
  }
  .p-valuation__more:focus,
  .p-valuation__more:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
  .p-valuationInfo {
    align-items: flex-start;
    display: flex;
  }
  .p-valuationInfo__thumbnail {
    height: 30rem;
    width: 30rem;
  }
  .p-valuationInfo__thumbnailImage {
    height: 21rem;
    width: 21rem;
  }
  .p-valuationInfo__table {
    padding-left: 3rem;
    padding-top: 1rem;
    width: calc(100% - 30rem);
  }
  .u-hover:focus,
  .u-hover:hover {
    opacity: .6;
  }
  .u-textAlign[data-textAlign~="md-left"] {
    text-align: left;
  }
  .u-textAlign[data-textAlign~="md-right"] {
    text-align: right;
  }
  .u-textAlign[data-textAlign~="md-center"] {
    text-align: center;
  }
}

@media screen and (min-width: 992px) {
  .u-hide[data-hide~="min-lg"] {
    display: none !important;
  }
  html {
    font-size: calc(100vw / 1400 * 10);
  }
  body {
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .l-header {
    left: 0;
    position: fixed;
    top: 0;
  }
  .c-area {
    max-width: 152rem;
    padding-left: 6rem;
    padding-right: 6rem;
  }
  .c-area[data-area="small"] {
    max-width: 92rem;
  }
  .c-area[data-area="large"] {
    max-width: 180rem;
  }
  .c-article__section {
    padding-bottom: 9rem;
    padding-top: 9rem;
  }
  .c-article__section:last-child {
    padding-top: 5.7rem; /* 20240301 Global-link */
    padding-bottom: 5.7rem;
  }
  .c-article__section:not([data-background]) + .c-article__section:not([data-background]),
  script + .c-article__section:not([data-background]) {
    margin-top: -11rem;
  }
  .c-article__hero + .c-article__section {
    padding-top: 12rem;
  }
  .c-anchorButton::before {
    right: 1.8rem;
  }
  .c-button {
    font-size: 1.6rem;
    padding: 1.8rem 4.5rem 2rem;
  }
  .c-button::before {
    right: 1.8rem;
  }
  .c-button[data-secondaryButton="back"]::before {
    left: 1.8rem;
  }
  .c-mapButton {
    font-size: 1.6rem;
    padding: 1.7rem 2.5rem 1.9rem;
  }
  .c-secondaryButton {
    font-size: 1.6rem;
    padding: 1.066em 3rem;
  }
  .c-secondaryButton[data-secondaryButton="back"]::before {
    left: 1.8rem;
  }
  .c-secondaryButton[data-sub="true"] {
    font-size: 1.6rem;
    max-width: none;
  }
  .c-container__content + .c-container__content {
    padding-top: 8rem;
  }
  .c-container__head + .c-container__body {
    padding-top: 3rem;
  }
  .c-quaternaryContainer__content + .c-quaternaryContainer__content {
    padding-top: 2rem;
  }
  .c-quaternaryContainer__head + .c-quaternaryContainer__body {
    padding-top: 1.5rem;
  }
  .c-secondaryContainer__content + .c-secondaryContainer__content {
    padding-top: 4rem;
  }
  .c-secondaryContainer__head + .c-secondaryContainer__body {
    padding-top: 3rem;
  }
  .c-tertiaryContainer__content + .c-tertiaryContainer__content {
    padding-top: 2rem;
  }
  .c-grid[data-grid~="lg-left"] {
    justify-content: flex-start;
  }
  .c-grid[data-grid~="lg-center"] {
    justify-content: center;
  }
  .c-grid[data-grid~="lg-right"] {
    justify-content: flex-end;
  }
  .c-grid[data-grid~="lg-space-between"] {
    justify-content: space-between;
  }
  .c-grid[data-grid~="lg-top"] {
    align-items: flex-start;
  }
  .c-grid[data-grid~="lg-middle"] {
    align-items: center;
  }
  .c-grid[data-grid~="lg-bottom"] {
    align-items: flex-end;
  }
  .c-grid[data-grid~="lg-row-reverse"] {
    flex-direction: row-reverse;
  }
  .c-grid[data-grid~="lg-column-reverse"] {
    flex-direction: column-reverse;
  }
  .c-grid[data-grid~="lg-5"] {
    margin: -.5rem 0 0 -.5rem;
  }
  .c-grid[data-grid~="lg-5"] > .c-grid__item {
    border-width: .5rem 0 0 .5rem;
  }
  .c-grid[data-grid~="lg-10"] {
    margin: -1rem 0 0 -1rem;
  }
  .c-grid[data-grid~="lg-10"] > .c-grid__item {
    border-width: 1rem 0 0 1rem;
  }
  .c-grid[data-grid~="lg-15"] {
    margin: -1.5rem 0 0 -1.5rem;
  }
  .c-grid[data-grid~="lg-15"] > .c-grid__item {
    border-width: 1.5rem 0 0 1.5rem;
  }
  .c-grid[data-grid~="lg-20"] {
    margin: -2rem 0 0 -2rem;
  }
  .c-grid[data-grid~="lg-20"] > .c-grid__item {
    border-width: 2rem 0 0 2rem;
  }
  .c-grid[data-grid~="lg-25"] {
    margin: -2.5rem 0 0 -2.5rem;
  }
  .c-grid[data-grid~="lg-25"] > .c-grid__item {
    border-width: 2.5rem 0 0 2.5rem;
  }
  .c-grid[data-grid~="lg-30"] {
    margin: -3rem 0 0 -3rem;
  }
  .c-grid[data-grid~="lg-30"] > .c-grid__item {
    border-width: 3rem 0 0 3rem;
  }
  .c-grid[data-grid~="lg-35"] {
    margin: -3.5rem 0 0 -3.5rem;
  }
  .c-grid[data-grid~="lg-35"] > .c-grid__item {
    border-width: 3.5rem 0 0 3.5rem;
  }
  .c-grid[data-grid~="lg-40"] {
    margin: -4rem 0 0 -4rem;
  }
  .c-grid[data-grid~="lg-40"] > .c-grid__item {
    border-width: 4rem 0 0 4rem;
  }
  .c-grid[data-grid~="lg-45"] {
    margin: -4.5rem 0 0 -4.5rem;
  }
  .c-grid[data-grid~="lg-45"] > .c-grid__item {
    border-width: 4.5rem 0 0 4.5rem;
  }
  .c-grid[data-grid~="lg-50"] {
    margin: -5rem 0 0 -5rem;
  }
  .c-grid[data-grid~="lg-50"] > .c-grid__item {
    border-width: 5rem 0 0 5rem;
  }
  .c-grid[data-grid~="lg-55"] {
    margin: -5.5rem 0 0 -5.5rem;
  }
  .c-grid[data-grid~="lg-55"] > .c-grid__item {
    border-width: 5.5rem 0 0 5.5rem;
  }
  .c-grid[data-grid~="lg-60"] {
    margin: -6rem 0 0 -6rem;
  }
  .c-grid[data-grid~="lg-60"] > .c-grid__item {
    border-width: 6rem 0 0 6rem;
  }
  .c-grid[data-grid~="lg-65"] {
    margin: -6.5rem 0 0 -6.5rem;
  }
  .c-grid[data-grid~="lg-65"] > .c-grid__item {
    border-width: 6.5rem 0 0 6.5rem;
  }
  .c-grid[data-grid~="lg-70"] {
    margin: -7rem 0 0 -7rem;
  }
  .c-grid[data-grid~="lg-70"] > .c-grid__item {
    border-width: 7rem 0 0 7rem;
  }
  .c-grid[data-grid~="lg-75"] {
    margin: -7.5rem 0 0 -7.5rem;
  }
  .c-grid[data-grid~="lg-75"] > .c-grid__item {
    border-width: 7.5rem 0 0 7.5rem;
  }
  .c-grid[data-grid~="lg-80"] {
    margin: -8rem 0 0 -8rem;
  }
  .c-grid[data-grid~="lg-80"] > .c-grid__item {
    border-width: 8rem 0 0 8rem;
  }
  .c-grid[data-grid~="lg-85"] {
    margin: -8.5rem 0 0 -8.5rem;
  }
  .c-grid[data-grid~="lg-85"] > .c-grid__item {
    border-width: 8.5rem 0 0 8.5rem;
  }
  .c-grid[data-grid~="lg-90"] {
    margin: -9rem 0 0 -9rem;
  }
  .c-grid[data-grid~="lg-90"] > .c-grid__item {
    border-width: 9rem 0 0 9rem;
  }
  .c-grid[data-grid~="lg-95"] {
    margin: -9.5rem 0 0 -9.5rem;
  }
  .c-grid[data-grid~="lg-95"] > .c-grid__item {
    border-width: 9.5rem 0 0 9.5rem;
  }
  .c-grid[data-grid~="lg-100"] {
    margin: -10rem 0 0 -10rem;
  }
  .c-grid[data-grid~="lg-100"] > .c-grid__item {
    border-width: 10rem 0 0 10rem;
  }
  .c-grid[data-grid~="lg-105"] {
    margin: -10.5rem 0 0 -10.5rem;
  }
  .c-grid[data-grid~="lg-105"] > .c-grid__item {
    border-width: 10.5rem 0 0 10.5rem;
  }
  .c-grid[data-grid~="lg-110"] {
    margin: -11rem 0 0 -11rem;
  }
  .c-grid[data-grid~="lg-110"] > .c-grid__item {
    border-width: 11rem 0 0 11rem;
  }
  .c-grid[data-grid~="lg-115"] {
    margin: -11.5rem 0 0 -11.5rem;
  }
  .c-grid[data-grid~="lg-115"] > .c-grid__item {
    border-width: 11.5rem 0 0 11.5rem;
  }
  .c-grid[data-grid~="lg-120"] {
    margin: -12rem 0 0 -12rem;
  }
  .c-grid[data-grid~="lg-120"] > .c-grid__item {
    border-width: 12rem 0 0 12rem;
  }
  .c-grid[data-grid~="lg-0"] {
    margin: 0;
  }
  .c-grid[data-grid~="lg-0"] > .c-grid__item {
    border-width: 0;
  }
  .c-grid__item[data-gridItem~="lg-1"] {
    width: 8.33333%;
  }
  .c-grid__item[data-gridItem~="lg-2"] {
    width: 16.66667%;
  }
  .c-grid__item[data-gridItem~="lg-3"] {
    width: 25%;
  }
  .c-grid__item[data-gridItem~="lg-4"] {
    width: 33.33333%;
  }
  .c-grid__item[data-gridItem~="lg-5"] {
    width: 41.66667%;
  }
  .c-grid__item[data-gridItem~="lg-6"] {
    width: 50%;
  }
  .c-grid__item[data-gridItem~="lg-7"] {
    width: 58.33333%;
  }
  .c-grid__item[data-gridItem~="lg-8"] {
    width: 66.66667%;
  }
  .c-grid__item[data-gridItem~="lg-9"] {
    width: 75%;
  }
  .c-grid__item[data-gridItem~="lg-10"] {
    width: 83.33333%;
  }
  .c-grid__item[data-gridItem~="lg-11"] {
    width: 91.66667%;
  }
  .c-grid__item[data-gridItem~="lg-12"] {
    width: 100%;
  }
  .c-grid__item[data-gridItem~="lg-five"] {
    width: 20%;
  }
  .c-grid__item[data-gridItem~="lg-seven"] {
    width: 14.285%;
  }
  .c-grid__item[data-gridItem~="lg-eleven"] {
    width: 9.09%;
  }
  .c-grid__item[data-gridItem~="lg-auto"] {
    width: auto;
  }
  .c-orderedList {
    line-height: 1.562;
  }
  .c-orderedList::before {
    margin-top: calc((1 - 1.562) * .5em);
  }
  .c-orderedList::after {
    margin-bottom: calc((1 - 1.562) * .5em);
  }
  .c-orderedList__item {
    padding-left: 2.5rem;
  }
  .c-orderedList__item::before {
    top: calc(((1.562 - 1) * .5em) + .5em);
  }
  .c-unorderedList {
    line-height: 1.562;
  }
  .c-unorderedList::before {
    margin-top: calc((1 - 1.562) * .5em);
  }
  .c-unorderedList::after {
    margin-bottom: calc((1 - 1.562) * .5em);
  }
  .c-unorderedList__item::before {
    top: calc(((1.562 - 1) * .5em) + .5em + .2rem);
  }
  .c-modal__content {
    padding: 2.5rem 4rem 4rem;
  }
  .c-note {
    font-size: 1.4rem;
  }
  .c-note {
    line-height: 1.5;
  }
  .c-note::before {
    margin-top: calc((1 - 1.5) * .5em);
  }
  .c-note::after {
    margin-bottom: calc((1 - 1.5) * .5em);
  }
  .c-tab__button {
    border-bottom: 6px solid #dedede;
    font-size: 1.8rem;
    height: 7rem;
  }
  .c-tab__button::after {
    bottom: -6px;
    height: 6px;
  }
  .c-tab__contentWrap {
    padding-top: 3rem;
  }
  .c-table__term {
    padding: 0 0 2rem 0;
  }
  .c-table__row + .c-table__row .c-table__term {
    padding: 1.9rem 0;
  }
  .c-table__desc {
    padding: 0 0 1.9rem 6rem;
  }
  .c-table__row + .c-table__row .c-table__desc {
    padding: 1.9rem 0 1.9rem 6rem;
  }
  .c-text {
    line-height: 1.75;
  }
  .c-text::before {
    margin-top: calc((1 - 1.75) * .5em);
  }
  .c-text::after {
    margin-bottom: calc((1 - 1.75) * .5em);
  }
  .c-quaternaryTitle {
    font-size: 2.2rem;
  }
  .c-quaternaryTitle {
    line-height: 1.4;
  }
  .c-quaternaryTitle::before {
    margin-top: calc((1 - 1.4) * .5em);
  }
  .c-quaternaryTitle::after {
    margin-bottom: calc((1 - 1.4) * .5em);
  }
  .c-quinaryTitle {
    font-size: 1.8rem;
  }
  .c-quinaryTitle {
    line-height: 1.4;
  }
  .c-quinaryTitle::before {
    margin-top: calc((1 - 1.4) * .5em);
  }
  .c-quinaryTitle::after {
    margin-bottom: calc((1 - 1.4) * .5em);
  }
  .c-tertiaryTitle {
    font-size: 2.4rem;
  }
  .c-title {
    font-size: 3rem;
  }
  .c-title__sub {
    font-size: 1.1rem;
  }
  .p-assessment__title {
    font-size: 3rem;
  }
  .home .p-assessment__title::before {
    bottom: 1rem;
  }
  .home .p-assessment__title::after {
    font-size: 1.2rem;
    margin-top: -.7rem;
  }
  .p-assessment__body {
    padding-top: 0;
  }
  .home .p-assessment__body .c-secondaryContainer__content:nth-child(4) {
    padding-top: 4.5rem !important;
  }
  .p-assessment__body .c-secondaryContainer {
    column-gap: 4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .p-assessment__body .c-secondaryContainer .c-secondaryContainer__content:nth-child(1),
  .p-assessment__body .c-secondaryContainer .c-secondaryContainer__content:nth-child(2) {
    padding-top: 0;
    width: calc(50% - 8rem / 2);
  }
  .p-assessment__body .c-secondaryContainer .c-secondaryContainer__content:nth-child(3) {
    padding-top: 6rem;
    width: 100%;
  }
  .p-assessment__body .c-secondaryContainer .c-secondaryContainer__content:nth-child(4) {
    padding-top: 7rem;
  }
  .p-assessment__subTitle {
    font-size: 2.6rem;
  }
  .p-assessment__genreTitle {
    font-size: 2.2rem;
  }
  .home .p-assessmentKeyword {
    padding: 4rem 3rem;
  }
  .p-assessmentKeyword__pickupTitle {
    font-size: 1.6rem;
  }
  .p-assessmentKeyword__pickupWord {
    font-size: 1.4rem;
  }
  .p-assessmentKeyword__searchButton {
    width: 9.7rem;
  }
  .p-assessmentModel {
    flex-direction: column;
    padding: 3rem 0;
    text-align: center;
  }
  .p-assessmentModel[data-type="genre"] {
    font-size: 2rem;
    padding-bottom: 2rem;
  }
  .p-assessmentModel[data-type="genre"]::before {
    border-radius: 10rem;
    font-size: 4.8rem;
    height: 10rem;
    width: 10rem;
  }
  .p-assessmentModel[data-type="genre"]::after {
    transform: translate(50%, 50%) scale(.7);
  }
  .p-assessmentModel__thumbnailImage {
    height: 14rem;
    padding: 0 1rem;
  }
  .c-grid__item[data-griditem="xs-6 sm-4 xl-4"] .p-assessmentModel__thumbnailImage {
    height: 12rem;
  }
  .c-grid__item[data-griditem="xs-6 sm-4 xl-five"] .p-assessmentModel__thumbnailImage {
    height: 10rem;
  }
  .p-assessmentModel__name {
    font-size: 2rem;
    padding-left: 0;
    padding-top: 1.5rem;
  }
  .c-grid__item[data-griditem="xs-6 sm-4 xl-five"] .p-assessmentModel__name {
    font-size: 2rem;
  }
  .p-blockEditor > * {
    padding-top: 2.5rem;
  }
  .p-blockEditor p:not([class]) {
    line-height: 1.75;
  }
  .p-blockEditor p:not([class])::before {
    margin-top: calc((1 - 1.75) * .5em);
  }
  .p-blockEditor p:not([class])::after {
    margin-bottom: calc((1 - 1.75) * .5em);
  }
  .p-blockEditor > h2 {
    padding-top: 4rem;
  }
  .p-blockEditor > h3 {
    padding-top: 3rem;
  }
  .p-blockEditor .wp-block-image {
    padding-top: 4rem;
  }
  .p-bookingConfirm__tableRow {
    min-height: 22rem;
    padding: 3rem 3rem 3rem 22rem;
  }
  .p-bookingConfirm__tableThumbnail {
    left: 3rem;
    top: 3rem;
  }
  .p-bookingConfirm__tableName {
    font-size: 2rem;
  }
  .p-bookingConfirm__tableName {
    line-height: 1.75;
  }
  .p-bookingConfirm__tableName::before {
    margin-top: calc((1 - 1.75) * .5em);
  }
  .p-bookingConfirm__tableName::after {
    margin-bottom: calc((1 - 1.75) * .5em);
  }
  .p-bookingConfirm__tableColor,
  .p-bookingConfirm__tableCount,
  .p-bookingConfirm__tableSize,
  .p-bookingConfirm__tablePrice {
    padding: 2rem 3rem 0 0;
  }
  .p-bookingConfirm__totalInner {
    padding: 3rem 6rem;
  }
  .p-bookingConfirm__totalCountText {
    font-size: 1.8rem;
  }
  .p-bookingConfirm__totalCountNumber {
    font-size: 1.8rem;
  }
  .p-bookingConfirm__totalPriceText {
    font-size: 2.4rem;
  }
  .p-bookingConfirm__totalPriceNumber {
    font-size: 3.4rem;
  }
  .p-bookingConfirm__totalPriceYen {
    font-size: 2.4rem;
  }
  .p-bookingDate__button {
    font-size: 2rem;
    padding: 2.1rem 4.5rem 2.1rem;
  }
  .p-bookingDate__button::before {
    right: 2.5rem;
  }
  .p-bookingDate__form {
    padding-top: 3rem;
  }
  .p-bookingDate__formButton {
    padding-top: 5rem;
  }
  .p-bookingStep {
    column-gap: 2.5rem;
  }
  .p-bookingStep__item {
    font-size: 2rem;
    height: 6.3rem;
    width: 33.3333%;
  }
  .p-bookingStep__item::before {
    font-size: 1.2rem;
    left: 4.7rem;
    top: 1.6rem;
  }
  .p-bookingStep__item::after {
    font-size: 2.2rem;
    left: 5rem;
    top: 3rem;
  }
  .p-breadcrumb {
    margin: -.9rem 0 -.6rem;
  }
  .p-breadcrumb__item + .p-breadcrumb__item {
    padding-left: 4.2rem;
  }
  .p-breadcrumb__item + .p-breadcrumb__item::before {
    left: 1.3rem;
  }
  .p-breadcrumb__text {
    font-size: 1.2rem;
  }
  .p-breadcrumb__home::before {
    font-size: 1.3rem;
    padding-right: 1rem;
  }
  .p-cart__content {
    column-gap: 14rem;
    display: flex;
  }
  .p-cart__form {
    width: 100%;
  }
  .p-cart__box {
    min-width: 39.9rem;
    width: 39.9rem;
  }
  .p-cartForm__name {
    line-height: 1.5;
  }
  .p-cartForm__name::before {
    margin-top: calc((1 - 1.5) * .5em);
  }
  .p-cartForm__name::after {
    margin-bottom: calc((1 - 1.5) * .5em);
  }
  .p-cartMore__title {
    font-size: 1.8rem;
  }
  .p-cartMore__title {
    line-height: 1.4;
  }
  .p-cartMore__title::before {
    margin-top: calc((1 - 1.4) * .5em);
  }
  .p-cartMore__title::after {
    margin-bottom: calc((1 - 1.4) * .5em);
  }
  .p-columnArchive {
    margin-top: 3rem;
  }
  .p-columnArchive__item {
    width: calc(25% - 6rem / 4);
  }
  .p-columnArchive__date {
    font-size: 1.4rem;
  }
  .p-columnArchive__title {
    line-height: 1.416;
  }
  .p-columnArchive__title::before {
    margin-top: calc((1 - 1.416) * .5em);
  }
  .p-columnArchive__title::after {
    margin-bottom: calc((1 - 1.416) * .5em);
  }
  .p-columnCategory__item {
    min-width: 10rem;
    width: auto;
  }
  .p-columnCategory__link {
    font-size: 1.4rem;
  }
  .p-consideration__title {
    font-size: 2.6rem;
  }
  .p-consideration__title {
    line-height: 1.3;
  }
  .p-consideration__title::before {
    margin-top: calc((1 - 1.3) * .5em);
  }
  .p-consideration__title::after {
    margin-bottom: calc((1 - 1.3) * .5em);
  }
  .p-consideration__titleInner {
    padding-left: 4rem;
  }
  .p-customer__title {
    font-size: 2rem;
  }
  .p-customer__title > span {
    font-size: 1.2rem;
  }
  .p-customer__content {
    margin-top: 3.3rem;
  }
  .p-customer__item + .p-customer__item {
    padding-top: 2rem;
  }
  .p-customer__itemText {
    font-size: 1.6rem;
  }
  .p-customer__note {
    font-size: 1.4rem;
  }
  .p-customerInfo__box {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 13rem;
  }
  .p-faq__question::before {
    border-radius: 3.4rem;
    font-size: 2rem;
    height: 3.4rem;
    width: 3.4rem;
  }
  .p-faq__questionInner {
    font-size: 2rem;
    padding: 3.3rem 4rem 3.3rem 6.3rem;
  }
  .p-faq__questionInner {
    line-height: 1.5;
  }
  .p-faq__questionInner::before {
    margin-top: calc((1 - 1.5) * .5em);
  }
  .p-faq__questionInner::after {
    margin-bottom: calc((1 - 1.5) * .5em);
  }
  .p-faq__answerInner {
    padding: 0 2rem 3rem 6.3rem;
  }
  .p-faq__answerInner::before {
    font-size: 2.4rem;
    top: calc(50% - 1rem);
  }
  .p-flow {
    row-gap: 6rem;
  }
  .p-flow__item {
    width: calc(33.333% - 8rem / 3);
  }
  .p-flow__title {
    font-size: 2rem;
  }
  .p-flow__title {
    line-height: 1.416;
  }
  .p-flow__title::before {
    margin-top: calc((1 - 1.416) * .5em);
  }
  .p-flow__title::after {
    margin-bottom: calc((1 - 1.416) * .5em);
  }
  .p-flow__body {
    padding-top: 3rem;
  }
  .p-footer__content {
    display: grid;
    grid-template: auto auto 1fr / auto 1fr;
  }
  .p-footer__content {
    padding: 9rem 0 7rem;
  }
  .p-footer__logo {
    grid-area: 1 / 1;
  }
  .p-footer__text {
    grid-area: 2 / 1;
  }
  .p-footer__link {
    grid-area: 3 / 1;
  }
  .p-footer__nav {
    grid-area: 1 / 3 / 4 / 4;
    margin-left: 10.2rem;
    margin-top: 0;
  }
  .p-footer__copyright {
    padding: 1.2rem 0;
  }
  .p-footer__pagetop {
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 9.2rem;
    transition: opacity .6s cubic-bezier(.19, 1, .22, 1);
  }
  body[data-scrollStart="true"] .p-footer__pagetop {
    opacity: 1;
    pointer-events: auto;
  }
  body[data-scrollEnd="true"] .p-footer__pagetop {
    bottom: calc(100% + 8rem);
    position: absolute;
  }
  .p-footerCopyright__text {
    font-size: 1.8rem;
  }
  .p-footerCopyright__text {
    line-height: 1.75;
  }
  .p-footerCopyright__text::before {
    margin-top: calc((1 - 1.75) * .5em);
  }
  .p-footerCopyright__text::after {
    margin-bottom: calc((1 - 1.75) * .5em);
  }
  .p-footerLink {
    font-size: 1.6rem;
  }
  .p-footerLogo {
    margin-left: 0;
  }
  .p-footerLogo {
    width: 30rem;
  }
  .p-footerNav__title {
    display: none;
  }
  .p-footerNav__content {
    height: auto !important;
  }
  .p-footerNav__group {
    column-gap: 3rem;
    grid-template-columns: auto auto auto;
    justify-content: start;
    padding-top: 0;
  }
  .p-footerNav__list:nth-child(1) {
    grid-area: 1 / 1;
  }
  .p-footerNav__list:nth-child(2) {
    grid-area: 1 / 2;
  }
  .p-footerNav__list:nth-child(3) {
    grid-area: 1 / 3;
  }
  .p-footerNav__item {
    line-height: 1.5;
  }
  .p-footerNav__item::before {
    margin-top: calc((1 - 1.3) * .5em);
  }
  .p-footerNav__item::after {
    margin-bottom: calc((1 - 1.3) * .5em);
  }
  .p-footerNav__item + .p-footerNav__item {
    padding-top: 2rem;
  }
  .p-footerPagetop {
    height: 7.6rem;
    width: 7.6rem;
  }
  .p-footerPagetop::before {
    font-size: 2.6rem;
  }
  .p-form__termText {
    padding-right: 2.5rem;
  }
  .p-formAddress__term {
    font-size: 1.4rem;
  }
  .p-formBack::before {
    left: 1.8rem;
  }
  .p-formCheck {
    margin: -2rem 0 0 -4rem;
  }
  .p-formCheck .mwform-checkbox-field {
    padding: 2rem 0 0 4rem;
  }
  .p-header__titleInner {
    font-size: 1.2rem;
  }
  .p-header__content {
    padding: 1.8rem 6rem 1.2rem;
  }
  .p-header__contentInner {
    grid-template: 1fr auto / auto 1fr auto auto auto;
  }
  .p-header__logo {
    padding-right: 1rem;
  }
  .p-header__line {
    display: block;
    grid-area: 1 / 2;
    justify-self: end;
    transform: translateY(-.7rem);
  }
  .p-header__cart {
    grid-area: 1 / 3;
    padding-left: 2rem;
  }
  .p-header__login {
    grid-area: 1 / 4;
    padding-left: 2rem;
  }
  .p-header__registration {
    grid-area: 1 / 5;
    padding-left: 2rem;
  }
  .p-header__drawerButton {
    display: none;
  }
  .p-header__nav {
    grid-area: 2 / 1 / 3 / 7;
    justify-self: end;
    margin-top: .5rem;
    pointer-events: auto;
    position: static;
    transform: none;
    width: 100%;
    z-index: auto;
  }
  .p-headerCart {
    font-size: 1.6rem;
    padding-bottom: 0;
    transition: color .6s cubic-bezier(.19, 1, .22, 1);
  }
  .p-headerCart::before {
    font-size: 2.4rem;
    padding-bottom: 2.4rem;
  }
  .p-headerLine__sub {
    align-items: center;
    background: #fff600;
    border-radius: 15px;
    color: #1c1c1c;
    display: flex;
    font-size: 1rem;
    height: 2.2rem;
    justify-content: center;
    left: 50%;
    padding-left: .5rem;
    position: absolute;
    top: -.5rem;
    transform: translateX(-50%);
    width: 14rem;
    z-index: 1;
  }
  .p-headerLine__sub::after {
    border-color: #fff600 transparent transparent transparent;
    border-style: solid;
    border-width: .4rem .4rem 0 .4rem;
    content: "";
    left: 50%;
    position: absolute;
    top: 100%;
    transform: translateX(-50%);
  }
  .p-headerLine__main {
    align-items: center;
    background: #00b900;
    border-radius: 5px;
    color: #fff;
    display: flex;
    font-size: 1.4rem;
    height: 5rem;
    justify-content: center;
    padding: 1.5rem 0 0 .3rem;
    width: 23rem;
  }
  .p-headerLine__main::before {
    content: "\e914";
    font-family: "icomoon" !important;
    font-size: 1.6rem;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    -moz-osx-font-smoothing: grayscale;
    padding-right: .5rem;
    text-transform: none;
  }
  .p-headerLogin {
    font-size: 1.6rem;
    padding-bottom: 0;
    transition: color .6s cubic-bezier(.19, 1, .22, 1);
  }
  .p-headerLogin::before {
    font-size: 2.4rem;
    padding-bottom: 2.4rem;
  }
  .p-headerLogo {
    width: 24.1rem;
  }
  .p-headerNav {
    background: none;
    color: #1c1c1c;
    height: auto;
    overflow-y: visible;
    padding: 0;
    width: auto;
  }
  .p-headerNav__price {
    display: none;
  }
  .p-headerNav__main {
    margin-top: 0;
  }
  .p-headerNav__mainList {
    display: flex;
  }
  .p-headerNav__mainItem {
    border-top: 0;
    width: 100%;
  }
  .p-headerNav__mainItem + .p-headerNav__mainItem {
    position: relative;
  }
  .p-headerNav__mainItem + .p-headerNav__mainItem::before {
    background: #dedede;
    border-radius: 2px;
    content: "";
    height: 50%;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
  }
  .p-headerNav__mainLink {
    height: 4.5rem;
    justify-content: center;
    padding-left: 0;
    transition: color .6s cubic-bezier(.19, 1, .22, 1);
  }
  .p-headerRegistration {
    font-size: 1.6rem;
    padding-bottom: 0;
    transition: color .6s cubic-bezier(.19, 1, .22, 1);
  }
  .p-headerRegistration::before {
    font-size: 2.4rem;
    padding-bottom: 2.4rem;
  }
  .p-headerTel__number {
    font-size: 3rem;
    letter-spacing: .05em;
  }
  .p-headerTel__number::before {
    color: #e21919;
    content: "\e914";
    display: inline-block;
    font-family: "icomoon" !important;
    font-size: 2.4rem;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    -moz-osx-font-smoothing: grayscale;
    text-transform: none;
    transform: translate(.1rem, .2rem);
  }
  .p-headerTel__text {
    font-size: 1rem;
    margin-right: -1rem;
    padding-top: .6rem;
  }
  .p-homeHero {
    margin-top: -4.5rem;
  }
  .p-homeHero__container {
    padding-bottom: 3.5rem !important;
  }
  .p-homeHero__pagination .swiper-pagination-bullet {
    border-radius: 1.2rem;
    height: 1.2rem;
    margin: 0 1.5rem !important;
    width: 1.2rem;
  }
  .p-homeModel {
    padding-left: 2rem;
  }
  .p-homeModel__thumbnailImage {
    height: 6rem;
  }
  .p-homeModel__name {
    font-size: 1.8rem;
  }
  .p-homeNews__postLink {
    color: #e21919;
    display: flex;
    position: absolute;
    right: -1.1rem;
    top: 1.7rem;
  }
  .p-homeNews__postBody {
    padding-top: 2rem;
  }
  .p-homeNews__button {
    display: none;
  }
  .p-main__breadcrumb {
    padding-top: 2.1rem;
  }
  .p-main__article {
    padding-top: 7.5rem;
  }
  .p-mainvisual__inner {
    min-height: 20rem;
    padding-bottom: 5.5rem;
    padding-top: 5.1rem;
  }
  .p-mainvisual__text {
    font-size: 4rem;
  }
  .p-secondaryMainvisual__inner {
    min-height: 25.8rem;
    padding-bottom: 6rem;
    padding-right: 47.2rem;
    padding-top: 5.5rem;
    position: relative;
  }
  .p-secondaryMainvisual__title {
    font-size: 4rem;
  }
  .p-secondaryMainvisual__image {
    max-height: 20rem;
    object-fit: contain;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35.2rem;
  }
  .p-secondaryMainvisual__text {
    padding-top: 2rem;
  }
  .p-secondaryMainvisual__text {
    line-height: 1.5;
  }
  .p-secondaryMainvisual__text::before {
    margin-top: calc((1 - 1.5) * .5em);
  }
  .p-secondaryMainvisual__text::after {
    margin-bottom: calc((1 - 1.5) * .5em);
  }
  .p-method::after {
    font-size: 1.8rem;
  }
  .p-method__image {
    height: 12rem;
    width: 12rem;
  }
  .p-method__content {
    padding: 0 3.5rem 0 3rem;
    width: calc(100% - 12rem);
  }
  .p-method__text {
    font-size: 1.4rem;
  }
  .p-method__text {
    line-height: 1.75;
  }
  .p-method__text::before {
    margin-top: calc((1 - 1.75) * .5em);
  }
  .p-method__text::after {
    margin-bottom: calc((1 - 1.75) * .5em);
  }
  .p-method__title {
    font-size: 2.6rem;
  }
  .p-method__title {
    line-height: 1.3;
  }
  .p-method__title::before {
    margin-top: calc((1 - 1.3) * .5em);
  }
  .p-method__title::after {
    margin-bottom: calc((1 - 1.3) * .5em);
  }
  .p-methodCommon {
    height: 16.7rem;
    margin-top: -5rem;
  }
  .p-methodCommon__image {
    width: 19.9rem;
  }
  .p-methodCommon__title {
    font-size: 2.4rem;
  }
  .p-methodCommon__title {
    line-height: 1.4;
  }
  .p-methodCommon__title::before {
    margin-top: calc((1 - 1.4) * .5em);
  }
  .p-methodCommon__title::after {
    margin-bottom: calc((1 - 1.4) * .5em);
  }
  .p-methodCommon__text {
    font-size: 1.8rem;
  }
  .p-methodCommon__text {
    line-height: 1.4;
  }
  .p-methodCommon__text::before {
    margin-top: calc((1 - 1.4) * .5em);
  }
  .p-methodCommon__text::after {
    margin-bottom: calc((1 - 1.4) * .5em);
  }
  .p-methodCommon__catch {
    left: 29.9rem;
    position: relative;
    top: -7.5rem;
  }
  .p-methodCommon__catch {
    line-height: 1.75;
  }
  .p-methodCommon__catch::before {
    margin-top: calc((1 - 1.75) * .5em);
  }
  .p-methodCommon__catch::after {
    margin-bottom: calc((1 - 1.75) * .5em);
  }
  .p-newsArchive {
    margin-top: 2rem;
  }
  .p-newsArchive__link {
    padding: 2.3rem 0 2.3rem 3rem;
  }
  .home .p-newsArchive__link {
    padding: 2.3rem 0 2.3rem 3rem;
  }
  .p-newsArchive__date {
    width: 8rem;
  }
  .p-newsArchive__category {
    font-size: 1.4rem;
    height: 2.6rem;
    margin-left: 7rem;
    width: 12rem;
  }
  .p-newsArchive__title {
    max-width: calc(100% - 33rem);
  }
  .p-newsArchive__title {
    line-height: 1.5;
  }
  .p-newsArchive__title::before {
    margin-top: calc((1 - 1.2) * .5em);
  }
  .p-newsArchive__title::after {
    margin-bottom: calc((1 - 1.2) * .5em);
  }
  .p-pagination {
    column-gap: 3rem;
  }
  .p-postHead {
    margin-bottom: 4rem;
  }
  .p-postHead__category {
    font-size: 1.4rem;
    height: 2.6rem;
    width: 12rem;
  }
  .p-postHead__title {
    font-size: 2.6rem;
  }
  .p-purchaseArchive__title {
    font-size: 2.4rem;
  }
  .p-purchaseArchive__info {
    display: flex;
    justify-content: space-between; /* 左右の要素を均等配置 */
    align-items: center; /* 縦方向の中央揃え */
    width: 100%; /* コンテナ幅を親要素いっぱいにする */
    margin-top: 5px;
  }
  .p-purchaseArchive__maker {
    margin: 0;
    color: rgb(66, 66, 66);
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
    height: 2.5rem;
    justify-content: center;
    position: relative;
    background: rgb(255, 255, 255);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(66, 66, 66);
    border-image: initial;
    border-radius: 5px;
    padding: 5px 5px 3px 5px;
  }
  .p-purchaseArchive__date {
    margin: 0;
    font-size: 1.2rem;
  }
  .p-purchaseArchive__model {
    padding: 2.4rem 0 2.4rem 2.8rem;
  }
  .p-purchaseArchive__modelName {
    font-size: 2.6rem;
  }
  .p-purchaseArchive__modelDate {
    font-size: 1.4rem;
    padding-top: 1rem;
  }
  .p-purchaseArchive__modelImage {
    right: 3rem;
    top: 1.5rem;
    width: 12rem;
  }
  .p-purchaseArchive__tableRow {
    align-items: center;
  }
  .p-purchaseArchive__term {
    width: 24.4rem;
  }
  .p-purchaseArchive__termCarrier {
    font-size: 1.4rem;
    height: 2.6rem;
    justify-content: flex-start;
    padding: 0 1rem;
    width: 24.4rem;
  }
  .p-purchaseArchive__termName {
    font-size: 1.8rem;
    margin-top: 1.5rem;
  }
  .p-purchaseArchive__termName {
    line-height: 1.5;
  }
  .p-purchaseArchive__termName::before {
    margin-top: calc((1 - 1.5) * .5em);
  }
  .p-purchaseArchive__termName::after {
    margin-bottom: calc((1 - 1.5) * .5em);
  }
  .p-purchaseArchive__price {
    margin-left: 2rem;
    margin-right: auto;
  }
  .p-purchaseArchive__priceNew {
    align-items: baseline;
    display: flex;
  }
  .p-purchaseArchive__priceOld {
    align-items: baseline;
    display: flex;
  }
  .p-purchaseArchive__priceJan {
    align-items: baseline;
    display: flex;
  }
  .p-purchaseArchive__priceTerm {
    display: flex;
    font-size: 1.4rem;
  }
  .p-purchaseArchive__priceDesc {
    margin-left: .5rem;
    margin-top: 0;
  }
  .p-purchaseArchive__priceNew .p-purchaseArchive__priceDesc {
    font-size: 1.8rem;
  }
  .p-purchaseArchive__priceJan .p-purchaseArchive__priceDesc {
    font-size: 1.4rem;
  }
  .p-purchaseArchive__priceDescLarge {
    font-size: 2rem;
  }
  .p-purchaseArchive__assessment {
    height: 6rem;
    min-width: 10rem;
    width: 10rem;
  }
  .p-purchaseArchive__assessmentButton {
    font-size: 1.6rem;
  }
  .p-purchaseArchive__more {
    max-width: 0 auto;
    width: 30rem;
  }
  .p-purchaseBrand__name {
    align-items: baseline;
    column-gap: .9rem;
    grid-template-columns: auto 1fr;
  }
  .p-purchaseBrand__name > span {
    font-size: 2.8rem;
  }
  .p-purchaseCarrier {
    height: 7rem;
    padding: 1.4rem 0;
  }
  .p-purchaseModel__thumbnailImage {
    height: 5.2rem;
    min-width: 5.2rem;
    width: 5.2rem;
  }
  .p-purchaseModel__name {
    font-size: 1.8rem;
  }
  .p-purchaseModel__accordionImage {
    height: 5.2rem;
    min-width: 5.2rem;
    width: 5.2rem;
  }
  .p-purchaseModel__accordionName {
    font-size: 1.8rem;
  }
  .p-reason__title {
    font-size: 2rem;
    padding-top: 0;
  }
  .p-reason__title {
    line-height: 1.416;
  }
  .p-reason__title::before {
    margin-top: calc((1 - 1.416) * .5em);
  }
  .p-reason__title::after {
    margin-bottom: calc((1 - 1.416) * .5em);
  }
  .p-reason__body {
    padding-top: 1.5rem;
  }
  .p-search__series {
    padding-top: 4rem;
  }
  .p-search__name {
    padding-top: 4rem;
  }
  .p-search__recommend {
    padding-top: 5rem;
  }
  .p-searchButton {
    font-size: 2rem;
    padding: 2.1rem 3rem;
  }
  .p-searchButton::before {
    font-size: 2.2rem;
    margin-left: -.5rem;
    padding: 0 2.5rem 0 0;
  }
  .p-searchRecommend__name {
    line-height: 1.4;
  }
  .p-searchRecommend__name::before {
    margin-top: calc((1 - 1.4) * .5em);
  }
  .p-searchRecommend__name::after {
    margin-bottom: calc((1 - 1.4) * .5em);
  }
  .p-searchSpeed {
    display: flex;
  }
  .p-searchSpeed__item {
    width: 33.333%;
  }
  .p-searchSpeed__item + .p-searchSpeed__item {
    margin-left: 4rem;
    margin-top: 0;
  }
  .p-searchSpeed__item + .p-searchSpeed__item::before,
  .p-searchSpeed__item + .p-searchSpeed__item::after {
    bottom: 50%;
    right: calc(100% + 1rem);
  }
  .p-searchSpeed__item + .p-searchSpeed__item::before {
    transform: translateY(50%) rotate(45deg);
  }
  .p-searchSpeed__item + .p-searchSpeed__item::after {
    transform: translateY(50%) rotate(135deg);
  }
  .p-searchSpeed__select {
    height: 6rem;
    line-height: 6rem;
  }
  .p-searchTitle {
    font-size: 2.6rem;
    padding: 1.3rem 1.5rem 1.6rem 3.8rem;
  }
  .p-searchTitle::before {
    left: 1.5rem;
    width: 5px;
  }
  .p-result__image > img {
    height: 7rem;
  }
  .p-result__carrier {
    font-size: 1.4rem;
    height: 2.6rem;
    padding: 0 1rem;
    width: 11.3rem;
  }
  .p-result__title {
    font-size: 1.8rem;
  }
  .p-shop + .p-shop {
    padding-top: 8rem;
  }
  .p-shop__title {
    font-size: 2.6rem;
  }
  .p-shop__childTitle {
    border-bottom: 0;
    font-size: 2rem;
    padding-bottom: 0;
    padding-left: 4.5rem;
  }
  .p-shop__childItem {
    align-items: center;
    flex-direction: row;
    padding: 1rem 2rem;
  }
  .p-shop__name {
    font-size: 1.6rem;
    min-width: 35rem;
    width: 35rem;
  }
  .p-shop__address {
    font-size: 1.6rem;
    flex: 1;
  }
  .p-shop__more {
    height: 3.6rem;
    margin-left: auto;
    width: 15.4rem;
  }
  .p-shop__more::after {
    font-size: 1.2rem;
    height: 3.4rem;
    width: 3.4rem;
  }
  .p-shopDetail {
    row-gap: 3rem;
  }
  .p-shopDetail__name {
    font-size: 2.6rem;
    width: 60%;
  }
  .p-shopDetail__name {
    line-height: 1.3;
  }
  .p-shopDetail__name::before {
    margin-top: calc((1 - 1.3) * .5em);
  }
  .p-shopDetail__name::after {
    margin-bottom: calc((1 - 1.3) * .5em);
  }
  .p-shopDetail__contact {
    width: 40%;
  }
  .p-shopDetail__tel,
  .p-shopDetail__map {
    column-gap: 1rem;
    font-size: 1.6rem;
  }
  .p-shopDetail__image {
    order: 2;
    width: 40%;
  }
  .p-shopDetail__info {
    order: 1;
    padding-right: 6rem;
    width: 60%;
  }
  .p-shopDetail__message {
    order: 3;
  }
  .p-shopDetail__messageBox {
    padding: 3rem;
  }
  .p-shopDetail__messageTitle {
    line-height: 1.3;
  }
  .p-shopDetail__messageTitle::before {
    margin-top: calc((1 - 1.3) * .5em);
  }
  .p-shopDetail__messageTitle::after {
    margin-bottom: calc((1 - 1.3) * .5em);
  }
  .p-shopDetail__messageTitleInner {
    font-size: 1.8rem;
  }
  .p-shopDetail__messageText {
    padding-top: 2rem;
  }
  .p-shopDetail__way {
    order: 4;
    padding-top: 4rem;
  }
  .p-shopDetail__wayList {
    margin: -3rem 0 0 -3rem;
  }
  .p-shopDetail__wayItem {
    padding: 3rem 0 0 3rem;
  }
  .p-shopDetail__wayText::before {
    font-size: 1.4rem;
    height: 2.2rem;
    top: 2rem;
    width: 2.2rem;
  }
  .p-shopDetail__wayTextMain {
    font-size: 2rem;
  }
  .p-shopDetail__wayTextMain {
    line-height: 1.5;
  }
  .p-shopDetail__wayTextMain::before {
    margin-top: calc((1 - 1.5) * .5em);
  }
  .p-shopDetail__wayTextMain::after {
    margin-bottom: calc((1 - 1.5) * .5em);
  }
  .p-spec[data-column="true"] {
    align-items: center;
    display: flex;
  }
  .p-spec[data-column="true"] .p-spec__visual {
    padding: 0 6rem;
  }
  .p-spec[data-column="true"] .p-spec__visual img,
  .p-spec[data-column="true"] .p-spec__visualImage {
    max-width: 22rem;
    min-width: 22rem;
  }
  .p-spec__detail {
    padding: 1rem 15rem 2rem;
  }
  .p-spec[data-column="true"] .p-spec__detail {
    padding: 1rem 3rem 2rem;
  }
  .p-spec__detailTerm {
    padding-right: 5rem;
  }
  .p-secondaryStep {
    row-gap: 6rem;
  }
  .p-secondaryStep__item:not(:last-child)::before {
    height: calc(100% + 6rem - 8rem - 1.7rem - .7rem * 2);
  }
  .p-secondaryStep__item:not(:last-child)::after {
    bottom: calc(-6rem + .7rem);
  }
  .p-secondaryStep__title {
    font-size: 2.6rem;
  }
  .p-secondaryStep__tel {
    padding-left: 5.8rem;
  }
  .p-secondaryStep__tel::before {
    font-size: 3.6rem;
    left: .5rem;
  }
  .p-secondaryStep__telNumber {
    font-size: 3.4rem;
  }
  .p-secondaryStep__telText {
    font-size: 1.4rem;
  }
  .p-step {
    display: flex;
  }
  .p-step__item {
    width: 33.333%;
  }
  .p-step__item + .p-step__item {
    margin-left: 2.5rem;
    margin-top: 0;
  }
  .p-step__item + .p-step__item .p-step__head::before {
    border-color: transparent transparent transparent #e21919;
    border-width: 2.5rem 0 2.5rem 2.5rem;
    bottom: 50%;
    right: 100%;
    transform: translate(0%, 50%);
  }
  .p-step__title {
    font-size: 2rem;
  }
  .p-tel {
    height: 15.4rem;
    padding: 0;
  }
  .p-tel__text {
    font-size: 1.8rem;
  }
  .p-tel__number {
    font-size: 4.5rem;
    text-indent: -.6rem;
  }
  .p-tel__number::before {
    font-size: 3.7rem;
  }
  .p-tel__time {
    font-size: 1.6rem;
  }
  .p-valuation__priceTerm {
    font-size: 1.8rem;
  }
  .p-valuation__priceDesc {
    padding-left: 2.7rem;
  }
  .p-valuation__priceDescNumber {
    font-size: 3rem;
  }
  .p-valuation__priceDescYen {
    font-size: 2rem;
  }
  .p-valuation__body {
    padding-left: 6rem;
  }
  .p-valuation__carrier {
    font-size: 1.4rem;
  }
  .p-valuation__type {
    font-size: 1.4rem;
    padding-left: 1.5rem;
  }
  .p-valuation__name {
    font-size: 3rem;
    padding-top: 1.5rem;
  }
  .p-valuation__name {
    line-height: 1.4;
  }
  .p-valuation__name::before {
    margin-top: calc((1 - 1.4) * .5em);
  }
  .p-valuation__name::after {
    margin-bottom: calc((1 - 1.4) * .5em);
  }
  .p-valuation__note {
    padding-top: 2.6rem;
  }
  .p-valuation__fullDesc {
    font-size: 2.4rem;
    width: 100%;
  }
  .p-valuation__item {
    padding-top: 3.7rem;
  }
  .p-valuation__boxTerm {
    line-height: 1.388;
  }
  .p-valuation__boxTerm::before {
    margin-top: calc((1 - 1.388) * .5em);
  }
  .p-valuation__boxTerm::after {
    margin-bottom: calc((1 - 1.388) * .5em);
  }
  .p-valuation__step {
    column-gap: 1.5rem;
  }
  .p-valuation__available {
    grid-template-columns: 17rem 1fr;
  }
  .p-valuation__radioLabel {
    padding: 1.5rem 1rem;
  }
  .p-valuation__more::before {
    height: 20px;
    width: 20px;
  }
  .p-valuation__select::before {
    right: 1.1rem;
    transform: translateY(-50%) rotate(90deg);
  }
  .p-valuation__selectInner {
    padding: 0 1.9rem;
  }
  .p-valuation__submit {
    padding-top: 3rem;
  }
  .p-valuation__submitButton {
    font-size: 1.6rem;
    padding: 1.8rem 4.5rem 2rem;
  }
  .u-textAlign[data-textAlign~="lg-left"] {
    text-align: left;
  }
  .u-textAlign[data-textAlign~="lg-right"] {
    text-align: right;
  }
  .u-textAlign[data-textAlign~="lg-center"] {
    text-align: center;
  }
}

@media screen and (min-width: 1200px) {
  .u-hide[data-hide~="min-xl"] {
    display: none !important;
  }
  .c-grid[data-grid~="xl-left"] {
    justify-content: flex-start;
  }
  .c-grid[data-grid~="xl-center"] {
    justify-content: center;
  }
  .c-grid[data-grid~="xl-right"] {
    justify-content: flex-end;
  }
  .c-grid[data-grid~="xl-space-between"] {
    justify-content: space-between;
  }
  .c-grid[data-grid~="xl-top"] {
    align-items: flex-start;
  }
  .c-grid[data-grid~="xl-middle"] {
    align-items: center;
  }
  .c-grid[data-grid~="xl-bottom"] {
    align-items: flex-end;
  }
  .c-grid[data-grid~="xl-row-reverse"] {
    flex-direction: row-reverse;
  }
  .c-grid[data-grid~="xl-column-reverse"] {
    flex-direction: column-reverse;
  }
  .c-grid[data-grid~="xl-5"] {
    margin: -.5rem 0 0 -.5rem;
  }
  .c-grid[data-grid~="xl-5"] > .c-grid__item {
    border-width: .5rem 0 0 .5rem;
  }
  .c-grid[data-grid~="xl-10"] {
    margin: -1rem 0 0 -1rem;
  }
  .c-grid[data-grid~="xl-10"] > .c-grid__item {
    border-width: 1rem 0 0 1rem;
  }
  .c-grid[data-grid~="xl-15"] {
    margin: -1.5rem 0 0 -1.5rem;
  }
  .c-grid[data-grid~="xl-15"] > .c-grid__item {
    border-width: 1.5rem 0 0 1.5rem;
  }
  .c-grid[data-grid~="xl-20"] {
    margin: -2rem 0 0 -2rem;
  }
  .c-grid[data-grid~="xl-20"] > .c-grid__item {
    border-width: 2rem 0 0 2rem;
  }
  .c-grid[data-grid~="xl-25"] {
    margin: -2.5rem 0 0 -2.5rem;
  }
  .c-grid[data-grid~="xl-25"] > .c-grid__item {
    border-width: 2.5rem 0 0 2.5rem;
  }
  .c-grid[data-grid~="xl-30"] {
    margin: -3rem 0 0 -3rem;
  }
  .c-grid[data-grid~="xl-30"] > .c-grid__item {
    border-width: 3rem 0 0 3rem;
  }
  .c-grid[data-grid~="xl-35"] {
    margin: -3.5rem 0 0 -3.5rem;
  }
  .c-grid[data-grid~="xl-35"] > .c-grid__item {
    border-width: 3.5rem 0 0 3.5rem;
  }
  .c-grid[data-grid~="xl-40"] {
    margin: -4rem 0 0 -4rem;
  }
  .c-grid[data-grid~="xl-40"] > .c-grid__item {
    border-width: 4rem 0 0 4rem;
  }
  .c-grid[data-grid~="xl-45"] {
    margin: -4.5rem 0 0 -4.5rem;
  }
  .c-grid[data-grid~="xl-45"] > .c-grid__item {
    border-width: 4.5rem 0 0 4.5rem;
  }
  .c-grid[data-grid~="xl-50"] {
    margin: -5rem 0 0 -5rem;
  }
  .c-grid[data-grid~="xl-50"] > .c-grid__item {
    border-width: 5rem 0 0 5rem;
  }
  .c-grid[data-grid~="xl-55"] {
    margin: -5.5rem 0 0 -5.5rem;
  }
  .c-grid[data-grid~="xl-55"] > .c-grid__item {
    border-width: 5.5rem 0 0 5.5rem;
  }
  .c-grid[data-grid~="xl-60"] {
    margin: -6rem 0 0 -6rem;
  }
  .c-grid[data-grid~="xl-60"] > .c-grid__item {
    border-width: 6rem 0 0 6rem;
  }
  .c-grid[data-grid~="xl-65"] {
    margin: -6.5rem 0 0 -6.5rem;
  }
  .c-grid[data-grid~="xl-65"] > .c-grid__item {
    border-width: 6.5rem 0 0 6.5rem;
  }
  .c-grid[data-grid~="xl-70"] {
    margin: -7rem 0 0 -7rem;
  }
  .c-grid[data-grid~="xl-70"] > .c-grid__item {
    border-width: 7rem 0 0 7rem;
  }
  .c-grid[data-grid~="xl-75"] {
    margin: -7.5rem 0 0 -7.5rem;
  }
  .c-grid[data-grid~="xl-75"] > .c-grid__item {
    border-width: 7.5rem 0 0 7.5rem;
  }
  .c-grid[data-grid~="xl-80"] {
    margin: -8rem 0 0 -8rem;
  }
  .c-grid[data-grid~="xl-80"] > .c-grid__item {
    border-width: 8rem 0 0 8rem;
  }
  .c-grid[data-grid~="xl-85"] {
    margin: -8.5rem 0 0 -8.5rem;
  }
  .c-grid[data-grid~="xl-85"] > .c-grid__item {
    border-width: 8.5rem 0 0 8.5rem;
  }
  .c-grid[data-grid~="xl-90"] {
    margin: -9rem 0 0 -9rem;
  }
  .c-grid[data-grid~="xl-90"] > .c-grid__item {
    border-width: 9rem 0 0 9rem;
  }
  .c-grid[data-grid~="xl-95"] {
    margin: -9.5rem 0 0 -9.5rem;
  }
  .c-grid[data-grid~="xl-95"] > .c-grid__item {
    border-width: 9.5rem 0 0 9.5rem;
  }
  .c-grid[data-grid~="xl-100"] {
    margin: -10rem 0 0 -10rem;
  }
  .c-grid[data-grid~="xl-100"] > .c-grid__item {
    border-width: 10rem 0 0 10rem;
  }
  .c-grid[data-grid~="xl-105"] {
    margin: -10.5rem 0 0 -10.5rem;
  }
  .c-grid[data-grid~="xl-105"] > .c-grid__item {
    border-width: 10.5rem 0 0 10.5rem;
  }
  .c-grid[data-grid~="xl-110"] {
    margin: -11rem 0 0 -11rem;
  }
  .c-grid[data-grid~="xl-110"] > .c-grid__item {
    border-width: 11rem 0 0 11rem;
  }
  .c-grid[data-grid~="xl-115"] {
    margin: -11.5rem 0 0 -11.5rem;
  }
  .c-grid[data-grid~="xl-115"] > .c-grid__item {
    border-width: 11.5rem 0 0 11.5rem;
  }
  .c-grid[data-grid~="xl-120"] {
    margin: -12rem 0 0 -12rem;
  }
  .c-grid[data-grid~="xl-120"] > .c-grid__item {
    border-width: 12rem 0 0 12rem;
  }
  .c-grid[data-grid~="xl-0"] {
    margin: 0;
  }
  .c-grid[data-grid~="xl-0"] > .c-grid__item {
    border-width: 0;
  }
  .c-grid__item[data-gridItem~="xl-1"] {
    width: 8.33333%;
  }
  .c-grid__item[data-gridItem~="xl-2"] {
    width: 16.66667%;
  }
  .c-grid__item[data-gridItem~="xl-3"] {
    width: 25%;
  }
  .c-grid__item[data-gridItem~="xl-4"] {
    width: 33.33333%;
  }
  .c-grid__item[data-gridItem~="xl-5"] {
    width: 41.66667%;
  }
  .c-grid__item[data-gridItem~="xl-6"] {
    width: 50%;
  }
  .c-grid__item[data-gridItem~="xl-7"] {
    width: 58.33333%;
  }
  .c-grid__item[data-gridItem~="xl-8"] {
    width: 66.66667%;
  }
  .c-grid__item[data-gridItem~="xl-9"] {
    width: 75%;
  }
  .c-grid__item[data-gridItem~="xl-10"] {
    width: 83.33333%;
  }
  .c-grid__item[data-gridItem~="xl-11"] {
    width: 91.66667%;
  }
  .c-grid__item[data-gridItem~="xl-12"] {
    width: 100%;
  }
  .c-grid__item[data-gridItem~="xl-five"] {
    width: 20%;
  }
  .c-grid__item[data-gridItem~="xl-seven"] {
    width: 14.285%;
  }
  .c-grid__item[data-gridItem~="xl-eleven"] {
    width: 9.09%;
  }
  .c-grid__item[data-gridItem~="xl-auto"] {
    width: auto;
  }
  .p-headerLine {
    display: block;
    opacity: 1;
    position: relative;
    transition: opacity .6s cubic-bezier(.19, 1, .22, 1);
  }
  .p-headerTel {
    align-items: center;
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-right: -.2rem;
    white-space: nowrap;
  }
  .p-method__image {
    width: 20rem;
  }
  .p-method__content {
    width: calc(100% - 20rem);
  }
  .p-searchSpeed__select {
    font-size: 2rem;
    padding: 0 2rem;
  }
  .p-searchSpeed__icon::before {
    font-size: 1.2rem;
  }
  .p-valuation__head {
    width: 42rem;
  }
  .p-valuation__thumbnail {
    height: 42rem;
  }
  .p-valuation__thumbnailImage {
    height: 33.5rem;
    width: 33.5rem;
  }
  .p-valuation__body {
    width: calc(100% - 42rem);
  }
  .p-valuation__fullTerm {
    font-size: 1.8rem;
    padding-right: 7rem;
  }
  .p-valuation__box + .p-valuation__box {
    padding-top: 1.5rem;
  }
  .p-valuation__boxTerm {
    font-size: 1.8rem;
  }
  .p-valuation__boxDesc {
    padding-top: 0;
  }
  .p-valuation__boxNote {
    font-size: 1.4rem;
  }
  .p-valuation__boxLink {
    font-size: 1.6rem;
  }
  .p-valuation__submitHead {
    align-items: center;
    column-gap: 5rem;
    display: flex;
    justify-content: center;
  }
  .u-textAlign[data-textAlign~="xl-left"] {
    text-align: left;
  }
  .u-textAlign[data-textAlign~="xl-right"] {
    text-align: right;
  }
  .u-textAlign[data-textAlign~="xl-center"] {
    text-align: center;
  }
}

@media screen and (min-width: 1400px) {
  .u-hide[data-hide~="min-xxl"] {
    display: none !important;
  }
  html {
    font-size: calc(100vw / 1600 * 10);
  }
  .c-grid[data-grid~="xxl-left"] {
    justify-content: flex-start;
  }
  .c-grid[data-grid~="xxl-center"] {
    justify-content: center;
  }
  .c-grid[data-grid~="xxl-right"] {
    justify-content: flex-end;
  }
  .c-grid[data-grid~="xxl-space-between"] {
    justify-content: space-between;
  }
  .c-grid[data-grid~="xxl-top"] {
    align-items: flex-start;
  }
  .c-grid[data-grid~="xxl-middle"] {
    align-items: center;
  }
  .c-grid[data-grid~="xxl-bottom"] {
    align-items: flex-end;
  }
  .c-grid[data-grid~="xxl-row-reverse"] {
    flex-direction: row-reverse;
  }
  .c-grid[data-grid~="xxl-column-reverse"] {
    flex-direction: column-reverse;
  }
  .c-grid[data-grid~="xxl-5"] {
    margin: -.5rem 0 0 -.5rem;
  }
  .c-grid[data-grid~="xxl-5"] > .c-grid__item {
    border-width: .5rem 0 0 .5rem;
  }
  .c-grid[data-grid~="xxl-10"] {
    margin: -1rem 0 0 -1rem;
  }
  .c-grid[data-grid~="xxl-10"] > .c-grid__item {
    border-width: 1rem 0 0 1rem;
  }
  .c-grid[data-grid~="xxl-15"] {
    margin: -1.5rem 0 0 -1.5rem;
  }
  .c-grid[data-grid~="xxl-15"] > .c-grid__item {
    border-width: 1.5rem 0 0 1.5rem;
  }
  .c-grid[data-grid~="xxl-20"] {
    margin: -2rem 0 0 -2rem;
  }
  .c-grid[data-grid~="xxl-20"] > .c-grid__item {
    border-width: 2rem 0 0 2rem;
  }
  .c-grid[data-grid~="xxl-25"] {
    margin: -2.5rem 0 0 -2.5rem;
  }
  .c-grid[data-grid~="xxl-25"] > .c-grid__item {
    border-width: 2.5rem 0 0 2.5rem;
  }
  .c-grid[data-grid~="xxl-30"] {
    margin: -3rem 0 0 -3rem;
  }
  .c-grid[data-grid~="xxl-30"] > .c-grid__item {
    border-width: 3rem 0 0 3rem;
  }
  .c-grid[data-grid~="xxl-35"] {
    margin: -3.5rem 0 0 -3.5rem;
  }
  .c-grid[data-grid~="xxl-35"] > .c-grid__item {
    border-width: 3.5rem 0 0 3.5rem;
  }
  .c-grid[data-grid~="xxl-40"] {
    margin: -4rem 0 0 -4rem;
  }
  .c-grid[data-grid~="xxl-40"] > .c-grid__item {
    border-width: 4rem 0 0 4rem;
  }
  .c-grid[data-grid~="xxl-45"] {
    margin: -4.5rem 0 0 -4.5rem;
  }
  .c-grid[data-grid~="xxl-45"] > .c-grid__item {
    border-width: 4.5rem 0 0 4.5rem;
  }
  .c-grid[data-grid~="xxl-50"] {
    margin: -5rem 0 0 -5rem;
  }
  .c-grid[data-grid~="xxl-50"] > .c-grid__item {
    border-width: 5rem 0 0 5rem;
  }
  .c-grid[data-grid~="xxl-55"] {
    margin: -5.5rem 0 0 -5.5rem;
  }
  .c-grid[data-grid~="xxl-55"] > .c-grid__item {
    border-width: 5.5rem 0 0 5.5rem;
  }
  .c-grid[data-grid~="xxl-60"] {
    margin: -6rem 0 0 -6rem;
  }
  .c-grid[data-grid~="xxl-60"] > .c-grid__item {
    border-width: 6rem 0 0 6rem;
  }
  .c-grid[data-grid~="xxl-65"] {
    margin: -6.5rem 0 0 -6.5rem;
  }
  .c-grid[data-grid~="xxl-65"] > .c-grid__item {
    border-width: 6.5rem 0 0 6.5rem;
  }
  .c-grid[data-grid~="xxl-70"] {
    margin: -7rem 0 0 -7rem;
  }
  .c-grid[data-grid~="xxl-70"] > .c-grid__item {
    border-width: 7rem 0 0 7rem;
  }
  .c-grid[data-grid~="xxl-75"] {
    margin: -7.5rem 0 0 -7.5rem;
  }
  .c-grid[data-grid~="xxl-75"] > .c-grid__item {
    border-width: 7.5rem 0 0 7.5rem;
  }
  .c-grid[data-grid~="xxl-80"] {
    margin: -8rem 0 0 -8rem;
  }
  .c-grid[data-grid~="xxl-80"] > .c-grid__item {
    border-width: 8rem 0 0 8rem;
  }
  .c-grid[data-grid~="xxl-85"] {
    margin: -8.5rem 0 0 -8.5rem;
  }
  .c-grid[data-grid~="xxl-85"] > .c-grid__item {
    border-width: 8.5rem 0 0 8.5rem;
  }
  .c-grid[data-grid~="xxl-90"] {
    margin: -9rem 0 0 -9rem;
  }
  .c-grid[data-grid~="xxl-90"] > .c-grid__item {
    border-width: 9rem 0 0 9rem;
  }
  .c-grid[data-grid~="xxl-95"] {
    margin: -9.5rem 0 0 -9.5rem;
  }
  .c-grid[data-grid~="xxl-95"] > .c-grid__item {
    border-width: 9.5rem 0 0 9.5rem;
  }
  .c-grid[data-grid~="xxl-100"] {
    margin: -10rem 0 0 -10rem;
  }
  .c-grid[data-grid~="xxl-100"] > .c-grid__item {
    border-width: 10rem 0 0 10rem;
  }
  .c-grid[data-grid~="xxl-105"] {
    margin: -10.5rem 0 0 -10.5rem;
  }
  .c-grid[data-grid~="xxl-105"] > .c-grid__item {
    border-width: 10.5rem 0 0 10.5rem;
  }
  .c-grid[data-grid~="xxl-110"] {
    margin: -11rem 0 0 -11rem;
  }
  .c-grid[data-grid~="xxl-110"] > .c-grid__item {
    border-width: 11rem 0 0 11rem;
  }
  .c-grid[data-grid~="xxl-115"] {
    margin: -11.5rem 0 0 -11.5rem;
  }
  .c-grid[data-grid~="xxl-115"] > .c-grid__item {
    border-width: 11.5rem 0 0 11.5rem;
  }
  .c-grid[data-grid~="xxl-120"] {
    margin: -12rem 0 0 -12rem;
  }
  .c-grid[data-grid~="xxl-120"] > .c-grid__item {
    border-width: 12rem 0 0 12rem;
  }
  .c-grid[data-grid~="xxl-0"] {
    margin: 0;
  }
  .c-grid[data-grid~="xxl-0"] > .c-grid__item {
    border-width: 0;
  }
  .c-grid__item[data-gridItem~="xxl-1"] {
    width: 8.33333%;
  }
  .c-grid__item[data-gridItem~="xxl-2"] {
    width: 16.66667%;
  }
  .c-grid__item[data-gridItem~="xxl-3"] {
    width: 25%;
  }
  .c-grid__item[data-gridItem~="xxl-4"] {
    width: 33.33333%;
  }
  .c-grid__item[data-gridItem~="xxl-5"] {
    width: 41.66667%;
  }
  .c-grid__item[data-gridItem~="xxl-6"] {
    width: 50%;
  }
  .c-grid__item[data-gridItem~="xxl-7"] {
    width: 58.33333%;
  }
  .c-grid__item[data-gridItem~="xxl-8"] {
    width: 66.66667%;
  }
  .c-grid__item[data-gridItem~="xxl-9"] {
    width: 75%;
  }
  .c-grid__item[data-gridItem~="xxl-10"] {
    width: 83.33333%;
  }
  .c-grid__item[data-gridItem~="xxl-11"] {
    width: 91.66667%;
  }
  .c-grid__item[data-gridItem~="xxl-12"] {
    width: 100%;
  }
  .c-grid__item[data-gridItem~="xxl-five"] {
    width: 20%;
  }
  .c-grid__item[data-gridItem~="xxl-seven"] {
    width: 14.285%;
  }
  .c-grid__item[data-gridItem~="xxl-eleven"] {
    width: 9.09%;
  }
  .c-grid__item[data-gridItem~="xxl-auto"] {
    width: auto;
  }
  .c-tertiaryTitle {
    font-size: 2.6rem;
  }
  .p-assessment__body .c-secondaryContainer {
    column-gap: 8rem;
  }
  .p-assessmentModel__name {
    font-size: 2.4rem;
  }
  .p-footerNav__group {
    column-gap: 10rem;
  }
  .p-header__logo {
    padding-right: 2rem;
  }
  .p-header__cart {
    padding-left: 4.7rem;
  }
  .p-header__login {
    padding-left: 2.5rem;
  }
  .p-header__registration {
    padding-left: 2.5rem;
  }
  .p-header__nav {
    margin-top: 2rem;
  }
  .p-headerLine__sub {
    font-size: 1.2rem;
    height: 2.4rem;
    width: 18rem;
  }
  .p-headerLine__main {
    font-size: 1.6rem;
    height: 6rem;
    width: 30.2rem;
  }
  .p-headerLine__main::before {
    font-size: 1.9rem;
    padding-right: .9rem;
    transform: translateY(.3rem);
  }
  .p-headerNav__mainLink {
    font-size: 1.8rem;
  }
  .p-headerTel__number {
    font-size: 3.4rem;
  }
  .p-headerTel__number::before {
    font-size: 2.8rem;
  }
  .p-headerTel__text {
    font-size: 1.2rem;
  }
  .p-method::after {
    right: 3rem;
  }
  .p-method__content {
    padding: 0 5.5rem 0 3rem;
  }
  .p-searchRecommend__thumbnail {
    right: .5rem;
  }
  .u-textAlign[data-textAlign~="xxl-left"] {
    text-align: left;
  }
  .u-textAlign[data-textAlign~="xxl-right"] {
    text-align: right;
  }
  .u-textAlign[data-textAlign~="xxl-center"] {
    text-align: center;
  }
}

@media screen and (min-width: 1600px) {
  html {
    font-size: calc(100vw / 1920 * 10);
  }
}

@media screen and (min-width: 1920px) {
  html {
    font-size: 62.5%;
  }
}

@media screen and (min-width: 768px) and (min-width: 992px) {
  .p-headerLogin:focus,
  .p-headerLogin:hover {
    color: #e21919;
  }
  .p-headerNav__mainLink:focus,
  .p-headerNav__mainLink:hover {
    color: #e21919;
  }
  .p-headerNav__mainLink:focus::after,
  .p-headerNav__mainLink:hover::after {
    transform: translateX(-50%) scale3d(1, 1, 1);
    transform-origin: left;
  }
  .p-headerRegistration:focus,
  .p-headerRegistration:hover {
    color: #e21919;
  }
  .p-secondaryStep__item {
    column-gap: 5rem;
    grid-template: auto 1fr / 1fr 36.8rem;
  }
}

/*------------------------------------------------------------
	fc
------------------------------------------------------------*/
.fc-inner {
	position: relative;
	/* z-index: 5; */
}
.just-pc {
	display: none;
}
.fc-image2-pc {
	position: absolute;
	top: 4px;
	left: 4%;
	width: 40%;
}
.fc-inner-3-4 {
	background-image: url(/static/theme/data/LP3.png);
	background-size: contain;
	background-repeat: no-repeat;
	margin-top: -30px;
	/* z-index: 3; */
	height: 230px;
}
.fc-image4-pc {
	position: absolute;
	width: 44%;
	right: 0;
	bottom: 21%;
}
.fc-image6-pc {
	width: 70%;
	margin: -10px auto 0;
}
.fc-inner-7-8 {
	margin-top: 10px;
}
.fc-inner-7-8::after {
	content:"";
	position: absolute;
	right: 0;
	bottom: -60px;
    width: 45px;
    height: 60px;
	background-image: url(/static/theme/data/LP8.png);
	background-repeat: no-repeat;
	background-size: contain;
}
.fc-inner-9 {
	margin-top: 55px;
}
.fc-inner-point-1 {
	background-image: url(/static/theme/data/LP11.png);
	background-repeat: no-repeat;
	background-size: contain;
	padding-top: 20px;
}
.fc-image-point-1 {
	text-align: center;
}
.fc-image-point-1 img {
	width: 50%;
}
.fc-image-polint-1-text {
	margin-top: 20px;
}
.fc-inner-seo {
	margin-top: 10px;
}
.fc-inner-14 {
	margin-top: 40px;
}
.fc-image14-pc {
	text-align: center;
}
.fc-image14-pc img {
	width: 50%;
}
.fc-inner-point-2 {
	background-image: url(/static/theme/data/LP15.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position-y: 100px;
	margin-top: 50px;
}
.fc-image-point-2 {
	text-align: center;
}
.fc-image-point-2 img {
	width: 50%;
}
.fc-image-polint-2-text {
	margin-top: 20px;
}
.fc-image-polint-2-image {
	text-align: center;
	margin-top: 20px;
}
.fc-image-polint-2-image img {
	width: 50%;
}
.fc-inner-point-3 {
	background-image: url(/static/theme/data/LP19.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position-y: 100px;
	margin-top: 50px;
}
.fc-image-point-3 {
	text-align: center;
}
.fc-image-point-3 img {
	width: 80%;
}
.fc-image-polint-3-text {
	margin-top: 20px;
}
.fc-image-polint-3-image {
	text-align: center;
	margin-top: 20px;
}
.fc-image-polint-3-image img {
	width: 50%;
}
.fc-inner-22 {
	margin-top: 30px;
}
.fc-inner-23 {
	margin-top: -50px;
}
.fc-image23-pc a br {
	display: none;
}
.fc-inner-25 {
	margin-top: 20px;
}
.fc-image25-pc {
	width: 70%;
}
.fc-inner-26 {
	margin-top: 10px;
}
.fc-inner-27 {
	margin-top: 20px;
}
.fc-image27-pc {
	text-align: center;
}
.fc-image27-pc img {
	width: 90%;
}
.fc-inner-28 {
	margin-top: 20px;
}
.fc-image28-pc {
	width: 70%;
}
.fc-image30-pc {
	position: absolute;
	bottom: 30px;
	right: 0;
	width: 40%;
}
.fc-inner-31-32 {
	margin-top: 40px;
}
.fc-image32-pc {
	position: absolute;
	bottom: 20px;
	width: 40%;
	margin-left: 10px;
}
.fc-inner-34 {
	margin-top: 20px;
}
.fc-inner-36 {
	margin-top: 40px;
}
.fc-inner-37-38 {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	margin-top: 10px;
}
.fc-image38-pc {
	margin-left: 10px;
}
.fc-inner-39 {
	margin-top: 20px;
}
.fc-image-btn-pc {
	text-align: center;
}
.fc-image-btn-pc img {
	width: 70%;
}
.fc-inner-btn {
	margin-top: -70px;
}
.fc-inner-41 {
	margin-top: 40px;
}
.fc-inner-btn-end {
	margin-top: 0;
}

@media screen and (min-width: 768px) {
	.just-sp {
		display: none;
	}
	.just-pc {
		display: block;
	}
	.fc-image2-pc {
		position: absolute;
		top: 10px;
		left: 10%;
		width: 40%;
	}
	.fc-inner-3-4 {
    	margin-top: -40px;
    	height: 500px;
	}
	.fc-image4-pc {
		bottom: 12%;
	}
	.fc-inner-5 {
		margin-top: -30px;
	}
	.fc-inner-6 {
		margin-top: -40px;
	}
	.fc-image6-pc {
		width: 60%;
		margin: 0;
	}
	.fc-inner-7-8 {
		margin-top: 50px;
	}
	.fc-inner-7-8::after {
		content:"";
		position: absolute;
		top: 15px;
		right: 0;
		bottom: inherit;
		width: 175px;
		height: 100%;
		background-image: url(/static/theme/data/LP8.png);
		background-repeat: no-repeat;
		background-size: contain;
	}
	.fc-image7-pc {
		width: 70%;
	}
	.fc-inner-9 {
		margin-top: 0;
	}
	.fc-inner-10 {
		margin-top: 80px;
	}
	.fc-image10-pc {
		text-align: center;
	}
	.fc-image10-pc img {
		width: 30%;
	}
	.fc-inner-11-12-13 {
		background-image: url(/static/theme/data/LP11.png);
		background-repeat: no-repeat;
		background-size: contain;
		margin-top: 20px;
    	padding-top: 50px;
		padding-bottom: 104px;
	}
	.fc-image12-pc {
		text-align: center;
	}
	.fc-image12-pc img {
		width: 70%;
	}
	.fc-image13-pc {
		text-align: center;
		margin-top: 30px;
	}
	.fc-image13-pc img {
		width: 80%;
	}
	.fc-inner-14 {
		margin-top: -30px;
	}
	.fc-image14-pc {
		text-align: center;
	}
	.fc-image14-pc img {
		width: 30%;
	}
	.fc-inner-15-16-17 {
		background-image: url(/static/theme/data/LP15.png);
		background-repeat: no-repeat;
		background-size: contain;
    	padding-top: 50px;
		padding-bottom: 104px;
	}
	.fc-image16-pc {
		text-align: center;
	}
	.fc-image16-pc img {
		width: 80%;
	}
	.fc-image17-pc {
		text-align: center;
		margin-top: 30px;
	}
	.fc-image17-pc img {
		width: 35%;
	}
	.fc-inner-18 {
		margin-top: -30px;
	}
	.fc-image18-pc {
		text-align: center;
	}
	.fc-image18-pc img {
		width: 45%;
	}
	.fc-inner-19-20-21 {
		background-image: url(/static/theme/data/LP19.png);
		background-repeat: no-repeat;
		background-size: contain;
    	padding-top: 50px;
		padding-bottom: 104px;
	}
	.fc-image20-pc {
		text-align: center;
	}
	.fc-image20-pc img {
		width: 80%;
	}
	.fc-image21-pc {
		text-align: center;
		margin-top: 30px;
	}
	.fc-image21-pc img {
		width: 35%;
	}
	.fc-image22-pc {
		text-align: center;
	}
	.fc-image22-pc img {
		width: 50%;
	}
	.fc-inner-23 {
		margin-top: -60px;
	}
	.fc-image23-pc a {
		display: block;
		width: 40%;
		margin: 0 auto;
	}
	.fc-image23-pc a:hover {
		opacity: 0.7;
	}
	.fc-inner-24 {
		margin-top: 40px;
	}
	.fc-inner-25 {
		margin-top: 40px;
	}
	.fc-image25-pc {
		width: 45%;
	}
	.fc-inner-26 {
		margin-top: 0;
	}
	.fc-image26-pc {
		text-align: center;
	}
	.fc-image26-pc img {
		width: 60%;
	}
	.fc-inner-27 {
		margin-top: 10px;
	}
	.fc-inner-28 {
		margin-top: 50px;
	}
	.fc-image28-pc {
		width: 45%;
	}
	.fc-inner-29-30 {
		margin-top: 30px;
	}
	.fc-image30-pc {
		position: absolute;
		bottom: 90px;
		right: 0;
		width: 40%;
	}
	.fc-image32-pc {
		position: absolute;
		bottom: 50px;
		width: 40%;
		margin-left: 50px;
	}
	.fc-image34-pc {
		width: 70%;
	}
	.fc-inner-35 {
		margin-top: 30px;
	}
	.fc-image35-pc {
		text-align: center;
	}
	.fc-image35-pc img {
		width: 80%;
	}
	.fc-inner-btn {
		margin-top: 10px;
	}
	.fc-image-btn-pc a:hover {
		opacity: 0.7;
	}
	.fc-image-btn-pc img {
		width: 40%;
	}
	.fc-inner-36 {
		margin-top: 50px;
	}
	.fc-inner-37-38 {
		margin-top: 30px;
	}
	.fc-image38-pc {
		margin-left: 20px;
	}
	.fc-inner-39 {
		margin-top: 30px;
	}
	.fc-inner-btn-bottom {
		margin-top: 30px;
	}
	.fc-inner-41 {
		margin-top: 90px;
	}
}
@media screen and (min-width: 1000px) {
	.fc-inner-3-4 {
    	height: 600px;
	}
	.fc-image4-pc {
		width: 40%;
	}
	.fc-inner-6 {
		margin-top: -50px;
	}
	.fc-inner-11-12-13 {
		padding-bottom: 135px;
	}
	.fc-inner-15-16-17 {
		padding-bottom: 135px;
	}
	.fc-inner-19-20-21 {
		padding-bottom: 135px;
	}
}
@media screen and (min-width: 1300px) {
	.fc-inner-7-8::after {
		top: 50px;
	}
}


// add
@media screen and (min-width: 768px) {
  .p-homeHero__container:not(.swiper-container-initialized) .p-homeHero__slide {
    max-width: calc((100vw - 20px * 4) / 3.666);
  }

}
  .p-homeHero .p-homeHero__image {
    width: 600px;
  }
  .p-homeHero .swiper-container-initialized .p-homeHero__image {
    width: 100%;
  }
.p-purchaseModel.is-arrow {
	position: relative;
	padding-right: 3rem;
}
.p-purchaseModel.is-arrow::before {
    content: "\e900";
    font-family: "icomoon" !important;
    font-size: 1.3rem;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    right: 1.1rem;
    text-transform: none;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
}
@media screen and (min-width: 992px) {
  .p-purchaseModel.is-arrow::before {
    right: 1.8rem;
  }
}
:root {
  --headerHeight: 77px;
}
@media screen and (min-width: 993px) {
:root {
  --headerHeight: 184px;
}
}
@media screen and (min-width: 1400px) {
:root {
  --headerHeight: 184px;
}
}



.topNews {
  background: #e21919;
  padding: 1.25em 0;
  font-size: 1.1rem;
  color: #fff;
}
@media screen and (min-width: 992px) {
  .topNews {
    font-size: 1.4rem;
  }
}

.topNews .linkWrap {
  display: flex;
  align-items: center;
  column-gap: 1em;
}

.topNews .linkWrap time {
  white-space: nowrap;
}
.topNews .linkWrap .title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.topNews .linkWrap .link {
  margin: 0 0 0 auto;
  white-space: nowrap;
}
.topNews .linkWrap .link:after {
    align-items: center;
    content: "\e901";
    display: inline-flex;
    font-family: "icomoon" !important;
    font-size: 0.75em;
    padding-left: 0.5em;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    font-weight: bold !important;
    font-weight: normal;
    justify-content: center;
    line-height: 1;
    -moz-osx-font-smoothing: grayscale;
    text-transform: none;
}

#a-top #price__lists .p-assessmentModel__thumbnailImage {
	width: 4rem;
}
@media screen and (min-width: 992px) {
#a-top #price__lists .p-assessmentModel__thumbnailImage {
	width: 14rem;
}
}
/* .home .p-assessment { overflow: hidden; } */
