@charset "UTF-8";
:root {
  --yellow: #ffeb00;
  --blue: #009be6;
  --white: #fff;
  --black: #000;
  --grey: #d4dde2;
  --darkgrey: #8e99a9;
  --lightgrey: #f7f8f8;
  --main-c: var(--grey);
  --key-c: var(--blue);
  --accent-c: var(--yellow);
  --base-c: var(--lightgrey);
}

.l-header {
  z-index: 4;
}

.l-footer {
  z-index: 1;
}

html {
  font-size: 16px;
  text-underline-position: under;
}

body {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 600;
  line-height: 1.75;
  width: 100%;
  overflow-x: hidden;
  letter-spacing: 0.02em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 0.875rem;
  color: var(--black);
}
@media screen and (min-width: 640px) {
  body {
    font-size: 1rem;
  }
}

a {
  color: inherit;
  cursor: pointer;
}

svg {
  display: block;
  max-width: 100%;
}

img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
}

span,
i {
  font-size: inherit;
  color: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  font-family: inherit;
}

button {
  font-size: inherit;
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
button:focus {
  opacity: 0.6;
}

/*-------フォントサイズ---------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

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

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

del {
  text-decoration: line-through;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  border: 0;
  margin: 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

i {
  font-style: normal;
}

.l-wrapper {
  padding: 10px;
}

.l-inner {
  width: 95%;
  margin: 0 auto;
  position: relative;
}

.l-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-flex.-jcenter {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-grid {
  display: grid;
}
.l-grid.-col2 {
  grid-template-columns: 1fr 1fr;
}
.l-grid.-col3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.p-compare .comparison {
  gap: 2rem;
}
.p-compare .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
.p-compare .title {
  font-size: clamp(1rem, 0.9487rem + 0.2564vw, 1.125rem);
  padding: 0.5rem 0;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 1rem;
}
.p-compare .info {
  line-height: 1.5;
}
.p-compare .imageWrap img {
  max-height: 85vh;
  margin: 0 auto;
}
.p-compare .imageWrap p {
  line-height: 1.5;
  font-size: clamp(0.875rem, 0.7212rem + 0.7692vw, 1.25rem);
}

.u-sp {
  display: block !important;
}
@media screen and (min-width: 640px) {
  .u-sp {
    display: none !important;
  }
}

.u-pc {
  display: none !important;
}
@media screen and (min-width: 640px) {
  .u-pc {
    display: block !important;
  }
}

.u-hide {
  visibility: hidden !important;
  opacity: 0 !important;
}

.u-show {
  visibility: visible !important;
  opacity: 1 !important;
}

.u-mt-s {
  margin-top: 10px !important;
}

.u-mt-m {
  margin-top: 20px !important;
}

.u-mt-l {
  margin-top: 30px !important;
}

.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

@media screen and (min-width: 640px) {
  .u-mt-s {
    margin-top: 20px !important;
  }

  .u-mt-m {
    margin-top: 30px !important;
  }

  .u-mt-l {
    margin-top: 60px !important;
  }
}
.u-shadow {
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

/*-----------ベース -----------*/
/*-----------レイアウト　接頭辞「l-」-----------*/
/*----------パーツ 接頭辞「c-」------------*/
/*--------個別ページ　接頭辞「p-」--------------*/
/*---------ヘルパークラス　接頭辞「u-」-------------*/