@charset "UTF-8";
:root {
  --font-root: 'Noto Sans JP', sans-serif;
  --font-noto-serif: 'Noto Serif JP', serif;
  --font-open-sans: 'Open Sans', sans-serif;
  --font-sort-mill: "Sorts Mill Goudy", serif;
  --font-zen-old-mincho: "Zen Old Mincho", serif;
  --line-height: 1.3;
  --font-weight-root: 400;
  --font-weight-semibold: 600;
  --font-size-root: 10px;
  --font-size: 1.6rem;
  --font-size-h1: 3rem;
  --font-size-h2: 2.6rem;
  --font-size-h3: 2.2rem;
  --font-size-h4: 1.5rem;
  --font-size-h5: 1.4rem;
  --font-size-body: 1.4rem;
  --font-size-small: 1.2rem;
  --color-primary: #2567AB;
  --color-link: #333;
  --color-link-hover: #2567AB;
  --color-highlight: #A50319;
  --color-grey: #ccc;
  --color-white: #fff;
  --color-black: #000;
  --bg-footer: #f8f8f8;
  --bg-root: #FAFAFA;
  --bg-hover: #2567AB;
  --color-root: #2C2C2C;
  --color-hover: #2567AB;
  --color-border: #e5e5e5;
  --color-note: #333;
  --color-semantic-gray: #D6D6D6;
  --color-star-filled: var(--color-highlight);
  --color-star-empty: #D6D6D6;
  --header-offset: 54px;
  --browser-sidebar: 20px;
  --detail-bar-offset: 0px;
}

@media only screen and (min-width: 768px) {
  :root {
    --font-size-h1: 4rem;
    --font-size-h2: 3rem;
    --font-size-h3: 2.4rem;
    --font-size-h4: 1.6rem;
  }
}
@media only screen and (min-width: 1024px) {
  :root {
    --header-offset: 112px;
  }
}
/* stylelint-disable */
/* ******************************************************************

    --common.css--

    0. BoxModel change

    1. Common setting
        1-1. Reset styles
        1-2. Font styles
        1-3. General styles
        1-4. Text styles
        1-5. List styles
        1-6. CSS3 common styles

****************************************************************** */
/*==================================================================
    0. BoxModel change
===================================================================*/
/*==================================================================
    1. Common setting
===================================================================*/
/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/* ------------------------------------------------------------------
    1-1. Reset styles
-------------------------------------------------------------------*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
object,
iframe,
pre,
code,
p,
blockquote,
form,
fieldset,
legend,
table,
th,
td,
caption,
tbody,
tfoot,
thead,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
audio,
video,
canvas {
  margin: 0;
  padding: 0;
}

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

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

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

fieldset,
img {
  border: none;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

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

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr,
acronym {
  border: none;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

a img,
map a {
  border: none;
}

a:hover,
a:active,
a:focus {
  outline: 0;
}

embed {
  width: 100%;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img,
object,
embed {
  max-width: 100%;
  height: auto;
}

object,
embed {
  height: 100%;
}

img {
  -ms-interpolation-mode: bicubic;
}

/* Font styles
-------------------------------------------------------------------*/
select,
input,
button,
textarea,
button {
  font-size: inherit;
}

table {
  font-size: inherit;
  font: 100%;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  line-height: 1;
}

/* General styles
-------------------------------------------------------------------*/
table {
  empty-cells: show;
}

input {
  line-height: 1;
}

form img,
input,
select {
  vertical-align: middle;
}

textarea {
  resize: none;
}

select {
  padding: 1px;
}

label {
  margin-right: 5px;
}

legend {
  display: none;
}

input[type=text],
input[type=password],
textarea {
  padding: 3px 4px 0 3px;
  border: 1px solid #999;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  font-size: 1.3rem;
}

/* ------------------------------------------------------------------
    1-2. VisualFormattingModel styles
-------------------------------------------------------------------*/
.noDisplay {
  display: none;
}

.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

.inlineBlock {
  display: inline-block !important;
}

.static {
  position: static !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.fixed {
  position: fixed !important;
}

.leftBox {
  float: left;
}

.rightBox {
  float: right;
}

.nofloat {
  float: none !important;
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

.clear {
  clear: both !important;
}

a.hover:hover,
input.hover:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}

/* ------------------------------------------------------------------
    1-3. BoxModel styles
-------------------------------------------------------------------*/
.auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

/* ------------------------------------------------------------------
    1-4. Text styles
-------------------------------------------------------------------*/
strong,
.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.note {
  margin-left: 1em;
  text-indent: -1em;
}

.f10 {
  font-size: 77%;
}

.f11 {
  font-size: 85%;
}

.f12 {
  font-size: 93%;
}

.f14 {
  font-size: 108%;
}

.f15 {
  font-size: 116%;
}

.f16 {
  font-size: 123.1%;
}

.f17 {
  font-size: 131%;
}

.f18 {
  font-size: 138.5%;
}

.f19 {
  font-size: 146.5%;
}

.f20 {
  font-size: 153.9%;
}

.f21 {
  font-size: 161.6%;
}

.f22 {
  font-size: 167%;
}

.f23 {
  font-size: 174%;
}

.f24 {
  font-size: 182%;
}

.f25 {
  font-size: 189%;
}

.f26 {
  font-size: 197%;
}

.red {
  color: #C00;
}

.white {
  color: #FFF;
}

.grayC {
  color: #CCC;
}

.gray9 {
  color: #999;
}

.gray6 {
  color: #666;
}

.gray3 {
  color: #333;
}

.black {
  color: #000;
}

.middle {
  vertical-align: middle !important;
}

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

.underline {
  text-decoration: underline !important;
}

/* ------------------------------------------------------------------
    1-5. List styles
-------------------------------------------------------------------*/
.disc {
  padding-left: 2em;
  list-style: disc;
}

.circle {
  padding-left: 2em;
  list-style: circle;
}

.decimal {
  padding-left: 2.4em;
  list-style: decimal;
}

/* ------------------------------------------------------------------
    1-6. CSS3 common styles
-------------------------------------------------------------------*/
.boxShadow {
  box-shadow: 0 0 5px #DDD;
}

.textShadowW {
  text-shadow: 0 1px 0 #E7E7E7;
}

.textShadowB {
  text-shadow: 0 1px 0 #111;
}

.radius5 {
  border-radius: 5px;
}

.radius10 {
  border-radius: 10px;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("/assets/fonts/g-override-noto-sans-jp.woff2") format("woff2");
  font-weight: 100 900;
  unicode-range: U+0067;
}
/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
  overflow-x: clip;
  background-color: var(--bg-root);
  font-size: var(--font-size-root);
}

body {
  color: var(--color-root);
  font-weight: normal;
  font-size: 1.3rem;
  font-family: var(--font-root);
  line-height: var(--line-height);
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  word-wrap: break-word;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0;
  /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.ta-center {
  text-align: center !important;
}

.ta-right {
  text-align: right !important;
}

.justify-flex-end {
  justify-content: flex-end !important;
}

.justify-flex-start {
  justify-content: flex-start !important;
}

.justify-center {
  justify-content: center !important;
}

.align-flex-end {
  align-items: flex-end !important;
}

.align-flex-start {
  align-items: flex-start !important;
}

.align-center {
  align-items: center !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

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

.fw-medium {
  font-weight: 500 !important;
}

.pa-0 {
  padding: 0px !important;
}

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

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

.pr-0 {
  padding-right: 0px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.pv-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.ph-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

@media only screen and (max-width: 767px) {
  .sp-pv-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .sp-ph-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}
.pa-5 {
  padding: 5px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.pv-5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.ph-5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

@media only screen and (max-width: 767px) {
  .sp-pv-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .sp-ph-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
}
.pa-10 {
  padding: 10px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pv-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.ph-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

@media only screen and (max-width: 767px) {
  .sp-pv-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .sp-ph-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
.pa-15 {
  padding: 15px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pv-15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.ph-15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

@media only screen and (max-width: 767px) {
  .sp-pv-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .sp-ph-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
.pa-20 {
  padding: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pv-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.ph-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

@media only screen and (max-width: 767px) {
  .sp-pv-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .sp-ph-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
.pa-25 {
  padding: 25px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.pv-25 {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

.ph-25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

@media only screen and (max-width: 767px) {
  .sp-pv-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .sp-ph-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
}
.pa-30 {
  padding: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pv-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.ph-30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

@media only screen and (max-width: 767px) {
  .sp-pv-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .sp-ph-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
.pa-35 {
  padding: 35px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.pv-35 {
  padding-top: 35px !important;
  padding-bottom: 35px !important;
}

.ph-35 {
  padding-left: 35px !important;
  padding-right: 35px !important;
}

@media only screen and (max-width: 767px) {
  .sp-pv-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
  .sp-ph-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
.pa-40 {
  padding: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pv-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.ph-40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

@media only screen and (max-width: 767px) {
  .sp-pv-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .sp-ph-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
.pa-45 {
  padding: 45px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.pr-45 {
  padding-right: 45px !important;
}

.pl-45 {
  padding-left: 45px !important;
}

.pv-45 {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}

.ph-45 {
  padding-left: 45px !important;
  padding-right: 45px !important;
}

@media only screen and (max-width: 767px) {
  .sp-pv-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
  .sp-ph-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
}
.pa-50 {
  padding: 50px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pv-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.ph-50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

@media only screen and (max-width: 767px) {
  .sp-pv-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .sp-ph-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
}
.pa-55 {
  padding: 55px !important;
}

.pt-55 {
  padding-top: 55px !important;
}

.pb-55 {
  padding-bottom: 55px !important;
}

.pr-55 {
  padding-right: 55px !important;
}

.pl-55 {
  padding-left: 55px !important;
}

.pv-55 {
  padding-top: 55px !important;
  padding-bottom: 55px !important;
}

.ph-55 {
  padding-left: 55px !important;
  padding-right: 55px !important;
}

@media only screen and (max-width: 767px) {
  .sp-pv-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
  .sp-ph-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
}
.pa-60 {
  padding: 60px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.pv-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.ph-60 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}

@media only screen and (max-width: 767px) {
  .sp-pv-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .sp-ph-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}
.pa-65 {
  padding: 65px !important;
}

.pt-65 {
  padding-top: 65px !important;
}

.pb-65 {
  padding-bottom: 65px !important;
}

.pr-65 {
  padding-right: 65px !important;
}

.pl-65 {
  padding-left: 65px !important;
}

.pv-65 {
  padding-top: 65px !important;
  padding-bottom: 65px !important;
}

.ph-65 {
  padding-left: 65px !important;
  padding-right: 65px !important;
}

@media only screen and (max-width: 767px) {
  .sp-pv-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }
  .sp-ph-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
}
.pa-70 {
  padding: 70px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.pv-70 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.ph-70 {
  padding-left: 70px !important;
  padding-right: 70px !important;
}

@media only screen and (max-width: 767px) {
  .sp-pv-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .sp-ph-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
}
.pa-75 {
  padding: 75px !important;
}

.pt-75 {
  padding-top: 75px !important;
}

.pb-75 {
  padding-bottom: 75px !important;
}

.pr-75 {
  padding-right: 75px !important;
}

.pl-75 {
  padding-left: 75px !important;
}

.pv-75 {
  padding-top: 75px !important;
  padding-bottom: 75px !important;
}

.ph-75 {
  padding-left: 75px !important;
  padding-right: 75px !important;
}

@media only screen and (max-width: 767px) {
  .sp-pv-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }
  .sp-ph-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
  }
}
.pa-80 {
  padding: 80px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.pv-80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.ph-80 {
  padding-left: 80px !important;
  padding-right: 80px !important;
}

@media only screen and (max-width: 767px) {
  .sp-pv-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .sp-ph-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
}
.ma-0 {
  margin-top: 0px !important;
}

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

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

.mr-0 {
  margin-right: 0px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

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

.mh-0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

@media only screen and (max-width: 767px) {
  .sp-mv-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .sp-mh-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
}
.ma-4 {
  margin-top: 4px !important;
}

.mt-4 {
  margin-top: 4px !important;
}

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

.mr-4 {
  margin-right: 4px !important;
}

.ml-4 {
  margin-left: 4px !important;
}

.mv-4 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.mh-4 {
  margin-left: 4px !important;
  margin-right: 4px !important;
}

@media only screen and (max-width: 767px) {
  .sp-mv-4 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .sp-mh-4 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
}
.ma-5 {
  margin-top: 5px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

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

.mr-5 {
  margin-right: 5px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.mv-5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

.mh-5 {
  margin-left: 5px !important;
  margin-right: 5px !important;
}

@media only screen and (max-width: 767px) {
  .sp-mv-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .sp-mh-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
}
.ma-8 {
  margin-top: 8px !important;
}

.mt-8 {
  margin-top: 8px !important;
}

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

.mr-8 {
  margin-right: 8px !important;
}

.ml-8 {
  margin-left: 8px !important;
}

.mv-8 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.mh-8 {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

@media only screen and (max-width: 767px) {
  .sp-mv-8 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .sp-mh-8 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
}
.ma-10 {
  margin-top: 10px !important;
}

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

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

.mr-10 {
  margin-right: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.mv-10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.mh-10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

@media only screen and (max-width: 767px) {
  .sp-mv-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .sp-mh-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
}
.ma-12 {
  margin-top: 12px !important;
}

.mt-12 {
  margin-top: 12px !important;
}

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

.mr-12 {
  margin-right: 12px !important;
}

.ml-12 {
  margin-left: 12px !important;
}

.mv-12 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.mh-12 {
  margin-left: 12px !important;
  margin-right: 12px !important;
}

@media only screen and (max-width: 767px) {
  .sp-mv-12 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
  .sp-mh-12 {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
}
.ma-15 {
  margin-top: 15px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

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

.mr-15 {
  margin-right: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.mv-15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

.mh-15 {
  margin-left: 15px !important;
  margin-right: 15px !important;
}

@media only screen and (max-width: 767px) {
  .sp-mv-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .sp-mh-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
}
.ma-16 {
  margin-top: 16px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

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

.mr-16 {
  margin-right: 16px !important;
}

.ml-16 {
  margin-left: 16px !important;
}

.mv-16 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.mh-16 {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

@media only screen and (max-width: 767px) {
  .sp-mv-16 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .sp-mh-16 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
}
.ma-20 {
  margin-top: 20px !important;
}

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

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

.mr-20 {
  margin-right: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.mv-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.mh-20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

@media only screen and (max-width: 767px) {
  .sp-mv-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .sp-mh-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
}
.ma-24 {
  margin-top: 24px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

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

.mr-24 {
  margin-right: 24px !important;
}

.ml-24 {
  margin-left: 24px !important;
}

.mv-24 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.mh-24 {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

@media only screen and (max-width: 767px) {
  .sp-mv-24 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .sp-mh-24 {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }
}
.ma-25 {
  margin-top: 25px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

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

.mr-25 {
  margin-right: 25px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.mv-25 {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}

.mh-25 {
  margin-left: 25px !important;
  margin-right: 25px !important;
}

@media only screen and (max-width: 767px) {
  .sp-mv-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .sp-mh-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
}
.ma-30 {
  margin-top: 30px !important;
}

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

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

.mr-30 {
  margin-right: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.mv-30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.mh-30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}

@media only screen and (max-width: 767px) {
  .sp-mv-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .sp-mh-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
}
.ma-32 {
  margin-top: 32px !important;
}

.mt-32 {
  margin-top: 32px !important;
}

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

.mr-32 {
  margin-right: 32px !important;
}

.ml-32 {
  margin-left: 32px !important;
}

.mv-32 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.mh-32 {
  margin-left: 32px !important;
  margin-right: 32px !important;
}

@media only screen and (max-width: 767px) {
  .sp-mv-32 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .sp-mh-32 {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }
}
.ma-35 {
  margin-top: 35px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

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

.mr-35 {
  margin-right: 35px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.mv-35 {
  margin-top: 35px !important;
  margin-bottom: 35px !important;
}

.mh-35 {
  margin-left: 35px !important;
  margin-right: 35px !important;
}

@media only screen and (max-width: 767px) {
  .sp-mv-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .sp-mh-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
}
.ma-36 {
  margin-top: 36px !important;
}

.mt-36 {
  margin-top: 36px !important;
}

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

.mr-36 {
  margin-right: 36px !important;
}

.ml-36 {
  margin-left: 36px !important;
}

.mv-36 {
  margin-top: 36px !important;
  margin-bottom: 36px !important;
}

.mh-36 {
  margin-left: 36px !important;
  margin-right: 36px !important;
}

@media only screen and (max-width: 767px) {
  .sp-mv-36 {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }
  .sp-mh-36 {
    margin-left: 36px !important;
    margin-right: 36px !important;
  }
}
.ma-40 {
  margin-top: 40px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

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

.mr-40 {
  margin-right: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.mv-40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.mh-40 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

@media only screen and (max-width: 767px) {
  .sp-mv-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .sp-mh-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
}
.ma-45 {
  margin-top: 45px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

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

.mr-45 {
  margin-right: 45px !important;
}

.ml-45 {
  margin-left: 45px !important;
}

.mv-45 {
  margin-top: 45px !important;
  margin-bottom: 45px !important;
}

.mh-45 {
  margin-left: 45px !important;
  margin-right: 45px !important;
}

@media only screen and (max-width: 767px) {
  .sp-mv-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .sp-mh-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
}
.ma-50 {
  margin-top: 50px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

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

.mr-50 {
  margin-right: 50px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.mv-50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.mh-50 {
  margin-left: 50px !important;
  margin-right: 50px !important;
}

@media only screen and (max-width: 767px) {
  .sp-mv-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .sp-mh-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
}
.ma-55 {
  margin-top: 55px !important;
}

.mt-55 {
  margin-top: 55px !important;
}

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

.mr-55 {
  margin-right: 55px !important;
}

.ml-55 {
  margin-left: 55px !important;
}

.mv-55 {
  margin-top: 55px !important;
  margin-bottom: 55px !important;
}

.mh-55 {
  margin-left: 55px !important;
  margin-right: 55px !important;
}

@media only screen and (max-width: 767px) {
  .sp-mv-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .sp-mh-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
}
.ma-60 {
  margin-top: 60px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

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

.mr-60 {
  margin-right: 60px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.mv-60 {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}

.mh-60 {
  margin-left: 60px !important;
  margin-right: 60px !important;
}

@media only screen and (max-width: 767px) {
  .sp-mv-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .sp-mh-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
}
.ma-65 {
  margin-top: 65px !important;
}

.mt-65 {
  margin-top: 65px !important;
}

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

.mr-65 {
  margin-right: 65px !important;
}

.ml-65 {
  margin-left: 65px !important;
}

.mv-65 {
  margin-top: 65px !important;
  margin-bottom: 65px !important;
}

.mh-65 {
  margin-left: 65px !important;
  margin-right: 65px !important;
}

@media only screen and (max-width: 767px) {
  .sp-mv-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .sp-mh-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
}
.ma-70 {
  margin-top: 70px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

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

.mr-70 {
  margin-right: 70px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.mv-70 {
  margin-top: 70px !important;
  margin-bottom: 70px !important;
}

.mh-70 {
  margin-left: 70px !important;
  margin-right: 70px !important;
}

@media only screen and (max-width: 767px) {
  .sp-mv-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .sp-mh-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
}
.ma-75 {
  margin-top: 75px !important;
}

.mt-75 {
  margin-top: 75px !important;
}

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

.mr-75 {
  margin-right: 75px !important;
}

.ml-75 {
  margin-left: 75px !important;
}

.mv-75 {
  margin-top: 75px !important;
  margin-bottom: 75px !important;
}

.mh-75 {
  margin-left: 75px !important;
  margin-right: 75px !important;
}

@media only screen and (max-width: 767px) {
  .sp-mv-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .sp-mh-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
  }
}
.ma-80 {
  margin-top: 80px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

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

.mr-80 {
  margin-right: 80px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.mv-80 {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}

.mh-80 {
  margin-left: 80px !important;
  margin-right: 80px !important;
}

@media only screen and (max-width: 767px) {
  .sp-mv-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .sp-mh-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
}
.w-100 {
  width: 100px !important;
}

.w-150 {
  width: 150px !important;
}

.w-170 {
  width: 170px !important;
}

.w-200 {
  width: 200px !important;
}

.w-300 {
  width: 300px !important;
}

.h-150 {
  height: 150px !important;
}

.h-300 {
  height: 300px !important;
}

.h-500 {
  height: 500px !important;
}

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

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

.pc-inline {
  display: none !important;
}
@media only screen and (min-width: 768px) {
  .pc-inline {
    display: inline !important;
  }
}

.gap--10 {
  gap: 10px !important;
}

.e-icon {
  height: 1em;
  transition: fill 0.3s, stroke 0.3s, transform 0.3s;
  width: 1em;
}

.e-btn {
  width: 100%;
  max-width: 240px;
  text-align: center;
  background-color: var(--color-root);
  border-radius: 4px;
  color: var(--color-white);
  display: inline-block;
  font-size: 1.2rem;
  padding: 20px;
  line-height: 1.35;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-family: var(--font-root);
}
.e-btn--secondary {
  background-color: var(--color-white);
  color: var(--color-root);
  border: 1px solid var(--color-root);
}
.e-btn--white {
  background-color: var(--color-white);
  color: var(--color-root);
  border: 1px solid var(--color-semantic-gray);
}
.e-btn--xs {
  max-width: 140px;
  padding: 12px;
  height: 40px;
}
.e-btn--small {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 8px;
}
.e-btn--medium {
  padding: 16px;
}
.e-btn--auto {
  width: auto;
  max-width: none;
  padding-left: 20px;
  padding-right: 20px;
}
.e-btn--outline {
  background-color: transparent;
  color: var(--color-root);
  border: 1px solid var(--color-root);
}
.e-btn--anchor {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 14px 8px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-white);
  background-color: #CE694D;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.3s ease;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .e-btn--anchor {
    flex-direction: column;
  }
}
.e-btn--anchor__icon {
  display: inline-block;
  line-height: 0;
  max-width: 15px;
}
.e-btn--product {
  display: inline-block;
  width: 100%;
  background: url("/img/renewal2026/common/icon-arrow-right-white.svg") no-repeat right 10px top 50%;
  background-color: var(--color-highlight);
  padding: 10px 30px 10px 16px;
  color: var(--color-white);
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.bd-gray {
  border-color: var(--color-semantic-gray);
}

@media (hover: hover) {
  .e-btn:hover {
    background-color: var(--color-highlight);
  }
  .e-btn--secondary:hover {
    color: var(--color-white);
    border-color: var(--color-highlight);
  }
  .e-btn--outline:hover {
    background-color: var(--color-white);
    color: var(--color-highlight);
    border-color: var(--color-highlight);
  }
  .e-btn--white:hover {
    color: var(--color-white);
    border-color: var(--color-highlight);
  }
  .e-btn--anchor:hover {
    opacity: 0.6;
  }
  .e-btn--product:hover {
    background-position: right 10px top 50%;
  }
}
@media only screen and (max-width: 1023px) {
  .e-btn--medium, .e-btn--small {
    max-width: 200px;
  }
}
@media only screen and (min-width: 768px) {
  .e-btn--anchor {
    gap: 12px;
    padding: 17px 15px;
    font-size: 1.5rem;
    border-radius: 4px;
  }
  .e-btn--anchor__icon {
    max-width: 21px;
  }
  .e-btn--product {
    font-size: 1.5rem;
    padding-right: 12px;
    padding-bottom: 12px;
    background-position: right 15px top 50%;
  }
}
.e-link--icon {
  color: #111;
  display: inline-block;
  text-decoration: none;
}
.e-link--icon svg {
  font-size: 1.8rem;
  fill: currentColor;
  margin-bottom: -4px;
  margin-right: 5px;
}
@media (hover: hover) {
  .e-link--icon {
    transition: color 0.3s;
  }
  .e-link--icon:hover {
    color: var(--color-primary);
    text-decoration: none;
  }
}

.e-h1 {
  font-size: var(--font-size-h1);
  line-height: 1.35;
}

.e-h2 {
  margin-bottom: 40px;
  font-size: var(--font-size-h2);
  line-height: 1.5;
  text-align: center;
  font-weight: 400;
}
.e-h2-sub {
  display: block;
  margin-top: 10px;
  font-size: 1.4rem;
}

.e-h3 {
  font-size: var(--font-size-h3);
  line-height: 1.3;
}

@media only screen and (min-width: 768px) {
  .e-h1 {
    line-height: 1.5;
  }
  .e-h2 {
    margin-bottom: 64px;
  }
  .e-h3 {
    line-height: 1.5;
  }
}
.e-headline01 {
  font-size: 2.6rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 16px;
}
.e-headline02 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.5;
}
.e-headline04 {
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 3px;
  font-family: var(--font-sort-mill);
}
.e-headline04__sub {
  display: block;
  margin-top: 8px;
  font-size: 1.6rem;
  font-family: var(--font-root);
  letter-spacing: 0;
}
.e-headline05 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 10px auto 15px;
  text-align: center;
}
.e-headline05 .highlight {
  color: #B18A56;
}
.e-headline--primary {
  color: var(--color-black);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  padding-left: 8px;
  padding-top: 2px;
  border-left: 4px solid var(--color-black);
}
.e-headline--line {
  text-align: center;
}
.e-headline--line span {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #8E774C;
  padding: 0px 20px;
}
.e-headline--line span:before, .e-headline--line span:after {
  position: absolute;
  content: "";
  left: 10px;
  width: 1px;
  height: 100%;
  top: 0;
  transform: rotate(-25deg);
  background-color: #8E774C;
}
.e-headline--line span:after {
  left: auto;
  right: 10px;
  transform: rotate(25deg);
}
@media only screen and (min-width: 768px) {
  .e-headline01 {
    font-size: 3rem;
    margin-bottom: 40px;
  }
  .e-headline02 {
    font-size: 4rem;
  }
  .e-headline04 {
    font-size: 4.4rem;
  }
  .e-headline04__sub {
    margin-top: 10px;
  }
  .e-headline05 {
    margin: 0 auto 30px;
    font-size: 2.2rem;
  }
  .e-headline--line span {
    padding: 0px 30px;
  }
}

.e-txt, .e-txt--suggest, .e-txt--error {
  font-size: 1.3rem;
  line-height: 1.4;
}
.e-txt mark, .e-txt--suggest mark, .e-txt--error mark {
  background-color: transparent;
  color: #C00;
  font-weight: 700;
}
.e-txt a, .e-txt--suggest a, .e-txt--error a {
  color: var(--color-primary);
  text-decoration: none;
}
.e-txt a:hover, .e-txt--suggest a:hover, .e-txt--error a:hover {
  text-decoration: underline;
}
.e-txt--error {
  color: red;
}
.e-txt--suggest {
  color: green;
}
.e-txt--highlight {
  color: var(--color-highlight);
}
.e-txt__wrapper-pc:not(:last-child) {
  margin-bottom: 10px;
}
.e-txt-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.e-txt-top .e-txt__title {
  min-width: 85px;
}
.e-txt-top .e-txt__img {
  line-height: 0;
  min-width: 118px;
}
.e-txt-top .e-txt__img--small {
  line-height: 0;
  min-width: 47px;
}
.e-txt--fill {
  display: inline-block;
  font-size: 1.2rem;
  padding: 3px 5px;
  text-align: center;
  background-color: #D6D6D6;
  margin-bottom: 5px;
}
.e-txt01 {
  font-size: 1.4rem !important;
  line-height: 1.6;
  color: var(--color-root);
}
.e-txt02 {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--color-root);
}
.e-txt-warning {
  padding-left: 28px !important;
  background: url("/img/renewal2026/common/icon-warning.svg") no-repeat 0% 50%;
  background-size: 24px auto;
}
.e-txt03 {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  color: #2C2C2C;
  line-height: 1.7;
  font-family: var(--font-noto-serif);
}
.e-txt04 {
  font-size: 1.2rem;
  line-height: 1.5;
}
.e-txt05 {
  font-size: 1.4rem;
  line-height: 1.5;
}
.e-txt06 {
  font-size: 1.4rem;
  line-height: 1.5;
}
.e-txt__note {
  font-size: 1rem;
  text-indent: -1rem;
  padding-left: 1rem;
}
.e-txt__notes {
  margin-top: 10px;
}
.e-txt__notes > li {
  margin-top: 3px;
  font-size: 1rem;
  text-indent: -1rem;
  padding-left: 1rem;
}
@media only screen and (min-width: 768px) {
  .e-txt01 {
    font-size: 1.6rem !important;
  }
  .e-txt03 {
    font-size: 1.6rem;
  }
  .e-txt__note {
    font-size: 1.4rem;
    margin-top: 15px;
    text-indent: -1.4rem;
    padding-left: 1.4rem;
  }
  .e-txt__notes {
    margin-top: 20px;
  }
  .e-txt__notes > li {
    display: contents;
    font-size: 1.2rem;
    margin-top: 0;
    text-indent: -1.2rem;
    padding-left: 1.2rem;
  }
}

.c-txt {
  font-size: 1.2rem;
  line-height: 1.4;
}

@media only screen and (min-width: 768px) {
  .e-txt01 {
    font-size: 1.6rem !important;
  }
  .e-txt06 {
    font-size: 2.8rem;
  }
  .e-txt__wrapper-pc {
    display: flex;
    gap: 10px;
  }
  .e-txt__wrapper-pc .e-txt--fill {
    margin-bottom: 0;
    min-width: 88px;
    align-self: flex-start;
  }
  .e-txt__wrapper-pc .e-txt04 {
    padding-top: 3px;
  }
  .e-txt__note {
    font-size: 1.4rem;
    margin-top: 15px;
    text-indent: -1.4rem;
    padding-left: 1.4rem;
  }
}
.c-txt {
  font-size: 1.2rem;
  line-height: 1.4;
}

.e-text-list {
  margin-bottom: 24px;
}
.e-text-list li:not(:last-child) {
  margin-bottom: 8px;
}
.e-text-list02 {
  margin-bottom: 16px;
}
.e-text-list02 li:not(:last-child) {
  margin-bottom: 16px;
}
.e-text-list02 .mb-8:not(:last-child) {
  margin-bottom: 8px;
}

.e-msg, .e-msg--icon {
  background-color: #FFE0E6;
  border: 1px solid #FF8282;
  border-radius: 4px;
  padding: 15px;
}
.e-msg svg, .e-msg--icon svg {
  fill: #f00;
  font-size: 1.8rem;
  margin-bottom: -4px;
  margin-right: 5px;
}
.e-msg--icon {
  color: #f00;
}
.e-msg--icon li:not(:last-child) {
  margin-bottom: 10px;
}

.e-textbox {
  font-size: 0;
}
.e-textbox textarea,
.e-textbox input {
  background-color: var(--color-white);
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1.3rem;
  height: 40px;
  padding: 10px;
  transition: border-color 0.3s;
  width: 100%;
}
.e-textbox textarea:focus,
.e-textbox input:focus {
  border-color: var(--color-primary);
  outline: none;
}

.e-textbox-02:not(:last-child) {
  margin-bottom: 32px;
}
@media only screen and (min-width: 768px) {
  .e-textbox-02__content {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.e-select {
  font-size: 0;
  max-width: 92%;
}
.e-select select {
  background-color: var(--color-white);
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1.3rem;
  height: 40px;
  padding: 8px;
  transition: border-color 0.3s;
  width: 100%;
}
.e-select select:focus {
  border-color: var(--color-primary);
  outline: none;
}

.e-checkbox input {
  border-width: 0;
  font-size: 1.3rem;
  height: 0;
  left: 0;
  line-height: 0;
  position: absolute;
  top: 0;
  width: 0;
}
.e-checkbox input:checked + label::after {
  opacity: 1;
}
.e-checkbox label {
  color: #606060;
  padding-left: 24px;
  padding-top: 1px;
  position: relative;
}
.e-checkbox label::after {
  background: #fff url("/img/renewal2026/admin/icon/icon_checked.png") no-repeat center center/100%;
  border: 1px solid #ddd;
  border-radius: 3px;
  content: "";
  display: inline-block;
  height: 18px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.3s;
  width: 18px;
  z-index: 2;
}
.e-checkbox label::before {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  content: "";
  display: inline-block;
  height: 18px;
  left: 0;
  position: absolute;
  top: 0;
  width: 18px;
  z-index: 1;
}
.e-checkbox label:hover {
  cursor: pointer;
}

.e-radio input {
  border-width: 0;
  font-size: 1.3rem;
  height: 0;
  left: 0;
  line-height: 0;
  position: absolute;
  top: 0;
  width: 0;
}
.e-radio input:checked + label::before {
  border-color: var(--color-primary);
}
.e-radio input:checked + label::after {
  opacity: 1;
}
.e-radio label {
  color: #606060;
  padding-left: 24px;
  padding-top: 1px;
  position: relative;
}
.e-radio label::after {
  background-color: var(--color-primary);
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 10px;
  left: 4px;
  opacity: 0;
  position: absolute;
  top: 4px;
  transition: opacity 0.3s;
  width: 10px;
  z-index: 2;
}
.e-radio label::before {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 18px;
  left: 0;
  position: absolute;
  top: 0;
  transition: border-color 0.3s;
  width: 18px;
  z-index: 1;
}
.e-radio label:hover {
  cursor: pointer;
}

.e-status, .e-status--rough, .e-status--check, .e-status--unsupported, .e-status--public {
  border-radius: 15px;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  padding: 4px;
  text-align: center;
  width: 70px;
}
.e-status--public {
  background-color: #447ECC;
}
.e-status--unsupported {
  background-color: #c00;
}
.e-status--check {
  background-color: #f90;
}
.e-status--rough {
  background-color: #aaa;
}

.e-note01, .e-note02 {
  font-size: 1.2rem;
  line-height: 1.5;
  padding-left: 1.2rem;
  text-indent: -1.2rem;
  margin-bottom: 8px;
}
.e-note03 {
  font-size: 1.4rem;
  line-height: 1.5;
  padding-left: 1.4rem;
  text-indent: -1.4rem;
  margin-bottom: 8px;
}
.e-note04 {
  font-size: 1rem;
  margin-top: 12px;
  text-indent: -1rem;
  padding-left: 1rem;
}
.e-note-img {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 1.2rem;
  line-height: 1.5;
}
.e-note-img__icon {
  display: inline-block;
  min-width: 36px;
  line-height: 0;
}
.e-note-img--large {
  align-items: flex-start;
  gap: 8px;
}
.e-note-img--large .e-note-img__icon {
  min-width: 48px;
}
@media only screen and (min-width: 768px) {
  .e-note02 {
    font-size: 1.4rem;
    padding-left: 1.4rem;
    text-indent: -1.4rem;
  }
  .e-note04 {
    text-indent: -2rem;
    padding-left: 2rem;
    font-size: 2rem;
  }
}

.site-top-area {
  position: relative;
  z-index: 101;
  width: 100%;
  top: 0;
  transition: transform 0.6s ease;
  font-family: var(--font-root);
  font-size: 1.3rem;
  color: var(--color-root);
}
.site-top-area.is-hide {
  transform: translateY(-150%);
  transition: transform 0.3s;
  width: 100%;
}
.site-top-area.is-fixed {
  position: sticky;
  top: 0;
}

.is-menu-open .site-top-area {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  transform: translateY(0);
}

.c-header {
  background-color: var(--color-white);
  padding: 10px 0;
}
.c-header__sticky {
  position: fixed;
  top: 30px;
  z-index: 101;
  width: 100%;
}
.c-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}
.c-header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.c-header__logo {
  width: 93px;
  line-height: 1;
}
.c-header__logo-link {
  line-height: 1;
}
.c-header__logo img {
  width: 100%;
  height: auto;
}
.c-header__control {
  display: flex;
  align-items: center;
  gap: 30px;
}
.c-header__control-item {
  line-height: 1;
}
.c-header__control img {
  width: auto;
  height: 22px;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}
.c-header__control-cart-link {
  position: relative;
  display: inline-block;
}
.c-header__control-cart-count {
  position: absolute;
  display: none;
  align-items: center;
  justify-content: center;
  top: -8px;
  right: -10px;
  width: 18px;
  height: 18px;
  background-color: var(--color-highlight);
  color: var(--color-white);
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
}
.c-header__control-cart-count:not(:empty) {
  display: flex;
}
.c-header__control-search {
  position: relative;
  cursor: pointer;
}
.c-header__control-menu {
  position: relative;
  width: 20px;
  height: 16px;
  cursor: pointer;
  background: none;
  border: none;
}
.c-header__control-menu::before, .c-header__control-menu::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-root);
  transition: all 0.3s ease;
}
.c-header__control-menu::before {
  top: 0;
}
.c-header__control-menu::after {
  bottom: 0;
}
.c-header__control-menu span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-root);
  transform: translateY(-50%);
}
.c-header__control-menu.active::before {
  transform: rotate(135deg);
  top: 8px;
}
.c-header__control-menu.active::after {
  transform: rotate(-135deg);
  bottom: 6px;
}
.c-header__control-menu.active span {
  opacity: 0;
}
.c-header__nav--scroll {
  height: calc(100vh - 55px);
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.c-header__nav-list {
  padding: 30px 0px;
}
.c-header__nav-link {
  font-size: 1.6rem;
  flex-grow: 1;
  color: var(--color-root);
  text-decoration: none;
}
.c-header__nav-dropdown {
  position: relative;
}
.c-header__nav-dropdown::before, .c-header__nav-dropdown:after {
  content: "";
  position: absolute;
  background: var(--color-highlight);
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  border-radius: 4px;
}
.c-header__nav-dropdown:before {
  width: 14px;
  height: 1px;
}
.c-header__nav-dropdown:after {
  width: 1px;
  height: 14px;
  right: 26px;
}
.c-header__nav-dropdown.is-expanded:after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.c-header__nav-bottom-sp {
  background-color: var(--color-root);
  padding: 40px 30px 80px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.c-header__nav-bottom-sp a {
  color: var(--color-white);
  font-size: 1.4rem;
  line-height: 1.5;
  text-decoration: none;
}
.c-header__single-link {
  display: block;
  padding: 16px 0px;
  font-size: 1.6rem;
  padding-right: 20px;
  position: relative;
  text-decoration: none;
  color: var(--color-root);
}
.c-header__single-link:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  width: 4px;
  height: 8px;
  background: url(/img/renewal2026/common/icon-arrow-right.svg) no-repeat 50% 50%;
  background-size: cover;
}
.c-header__single-link {
  transition: color 0.3s ease;
}
.c-header__single-link:hover {
  color: var(--color-highlight);
}
.c-header__dropdown {
  display: none;
  padding: 20px 20px 20px 30px;
  background-color: #FAFAFA;
}
.c-header__dropdown-content {
  text-align: left;
}
.c-header__dropdown-sectitle {
  padding: 16px 0;
  font-size: 1.6rem;
  cursor: pointer;
}
.c-header__dropdown-sectitle:before {
  right: 0px;
}
.c-header__dropdown-sectitle:after {
  right: 6px;
}
.c-header__dropdown-seccontent {
  display: none;
  padding: 12px 0 12px 16px;
}
.c-header__dropdown-sidebar {
  display: none;
}
.c-header__item-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.c-header__item-list a {
  color: var(--color-root);
  text-decoration: none;
  font-size: 1.4rem;
}
.c-header__item-list + .c-header__item-list {
  margin-top: 16px;
}
.c-header__line-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.c-header__line-item {
  width: calc((100% - 16px) / 3);
  text-align: center;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--color-root);
}
.c-header__line-item img {
  width: 100%;
  height: auto;
  margin-bottom: 4px;
}

@media only screen and (max-width: 1023px) {
  .c-header__sticky {
    top: 43px;
  }
  .c-header__nav {
    position: fixed;
    top: calc((var(--header-offset, 55px)) - 3px);
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    overflow-y: auto;
    border-top: 1px solid #ECECEC;
    transition: opacity 0.3s ease;
    visibility: hidden;
    opacity: 0;
  }
  .c-header__nav.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
  }
  .c-header__nav-heading {
    padding: 16px;
  }
  .c-header__nav-dropdown {
    padding-right: 40px;
  }
}
@media only screen and (min-width: 1024px) {
  .c-header {
    padding: 22px 0 0;
  }
  .c-header__wrapper {
    gap: 2%;
    align-items: flex-start;
  }
  .c-header__logo {
    width: 186px;
    min-width: 186px;
  }
  .c-header__control {
    margin-bottom: 20px;
    justify-content: flex-end;
    gap: 40px;
  }
  .c-header__control img {
    height: 26px;
  }
  .c-header__control-menu {
    display: none;
  }
  .c-header__content {
    width: 100%;
  }
  .c-header__nav-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 17px;
    padding: 0;
  }
  .c-header__nav-link {
    color: var(--color-root);
    font-size: 1.3rem;
    transition: opacity 0.3s ease;
    text-decoration: none;
  }
  .c-header__nav-item:hover .c-header__nav-heading {
    border-bottom-color: var(--color-highlight);
  }
  .c-header__nav-item:hover .c-header__nav-link {
    color: var(--color-highlight);
  }
  .c-header__nav-item:hover .c-header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .c-header__nav-heading {
    padding: 0px 0 20px 0;
    border-bottom: 3px solid transparent;
    transition: border 0.3s ease;
    cursor: pointer;
  }
  .c-header__nav-heading::before, .c-header__nav-heading::after {
    content: none;
  }
  .c-header__nav--scroll {
    height: auto;
    display: block;
    overflow: unset;
  }
  .c-header__nav-bottom-sp {
    display: none;
  }
  .c-header__nav-dropdown:after, .c-header__nav-dropdown:before {
    content: none;
  }
  .c-header__dropdown {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-top: 1px solid #ECECEC;
    padding: 0;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
  }
  .c-header__dropdown-inner {
    display: flex;
  }
  .c-header__dropdown-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: url(/img/renewal2026/common/header/bg-nav-menu.png) no-repeat 50% 50%;
    background-size: cover;
    min-width: 23%;
  }
  .c-header__dropdown-sidebar h2 {
    font-family: var(--font-noto-serif);
    font-size: 2rem;
    font-weight: 400;
  }
  .c-header__dropdown-sidebar--cleansing {
    background: url(/img/renewal2026/common/header/01_menu_cleansing.webp) no-repeat 50% 50%/cover;
  }
  .c-header__dropdown-sidebar--skincare {
    background: url(/img/renewal2026/common/header/02_menu_skincare.webp) no-repeat 50% 50%/cover;
  }
  .c-header__dropdown-sidebar--bodycare {
    background: url(/img/renewal2026/common/header/03_menu_bodycare.webp) no-repeat 50% 50%/cover;
  }
  .c-header__dropdown-sidebar--makeup {
    background: url(/img/renewal2026/common/header/04_menu_makeup.webp) no-repeat 50% 50%/cover;
  }
  .c-header__dropdown-sidebar--supplement {
    background: url(/img/renewal2026/common/header/05_menu_supplement.webp) no-repeat 50% 50%/cover;
  }
  .c-header__dropdown-sidebar--fashion {
    background: url(/img/renewal2026/common/header/06_menu_fasion.webp) no-repeat 50% 50%/cover;
  }
  .c-header__dropdown-sidebar--service {
    background: url(/img/renewal2026/common/header/07_menu_service.webp) no-repeat 50% 50%/cover;
  }
  .c-header__dropdown-sidebar--campaign {
    background: url(/img/renewal2026/common/header/08_menu_campaign.webp) no-repeat 50% 50%/cover;
  }
  .c-header__dropdown-content {
    flex: 1;
    padding: 50px 36px;
  }
  .c-header__dropdown-content > *:not(:last-child) {
    margin-bottom: 40px;
  }
  .c-header__dropdown-section {
    display: flex;
    gap: 30px;
  }
  .c-header__dropdown-seccontent {
    display: block !important;
    padding: 0;
  }
  .c-header__dropdown-fashion ul {
    margin-bottom: 20px;
  }
  .c-header__dropdown-sectitle {
    min-width: 160px;
    display: block;
    padding: 0;
    cursor: default;
  }
  .c-header__line-grid {
    gap: 16px;
  }
  .c-header__line-item {
    font-size: 1.4rem;
    min-width: 140px;
    width: calc((100% - 60px) / 5);
    max-width: 140px;
    transition: color 0.3s ease;
  }
  .c-header__line-item:hover {
    color: var(--color-highlight);
  }
  .c-header__item-list {
    flex-direction: row;
    flex-wrap: wrap;
    -moz-column-gap: 44px;
         column-gap: 44px;
    row-gap: 20px;
  }
  .c-header__item-list a:hover {
    color: var(--color-highlight);
  }
  .c-header__single-link {
    display: inline-block;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 1280px) {
  .c-header__wrapper {
    gap: 4%;
  }
  .c-header__nav-list {
    gap: 43px;
  }
  .c-header__nav-link {
    font-size: 1.4rem;
  }
  .c-header__dropdown-content {
    padding: 50px 64px;
  }
  .c-header__dropdown-section {
    gap: 40px;
  }
}
@media only screen and (min-width: 1536px) {
  .c-header__wrapper {
    gap: 9%;
  }
  .c-header__nav-list {
    gap: 50px;
  }
}
.c-im-notices__wrapper {
  background-color: var(--color-highlight);
  padding: 8px 0px;
  z-index: 101;
  overflow: hidden;
}
.c-im-notices__content {
  color: var(--color-white);
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.c-im-notices__content::-webkit-scrollbar {
  display: none;
}
.c-im-notices__content {
  scrollbar-width: none;
}
.c-im-notices__link {
  text-decoration: none;
}
.c-im-notices__wrapper .l-default__inner--1200 a {
  text-decoration: none;
}
.c-im-notices__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
}
.c-im-notices__track .l-default__inner--1200 {
  flex: 0 0 auto;
  width: -moz-max-content;
  width: max-content;
  max-width: none;
  margin: 0;
  border-left: 1px solid var(--color-white);
}
.c-im-notices__track .c-im-notices__content {
  overflow-x: visible;
  padding: 0 10px;
}
.c-im-notices__track--flow {
  animation: c-im-notices-flow var(--im-notices-duration, 20s) linear infinite;
}
.c-im-notices__track--flow:hover {
  animation-play-state: paused;
}
@media only screen and (min-width: 768px) {
  .c-im-notices__wrapper {
    padding: 8px 0px;
  }
  .c-im-notices__content {
    font-size: 1.4rem;
  }
}

@keyframes c-im-notices-flow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.c-breadcrumb {
  padding: 10px 0px;
  background-color: #FAFAFA;
}
.c-breadcrumb__wrapper {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4px;
  font-size: 1.2rem;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.c-breadcrumb__wrapper::-webkit-scrollbar {
  display: none;
}
.c-breadcrumb__wrapper {
  scrollbar-width: none;
}
.c-breadcrumb-campaign {
  font-size: 1.2rem;
}
.c-breadcrumb-campaign > *:not(.c-breadcrumb__current) {
  padding-right: 4px;
}
.c-breadcrumb {
  /* 子要素共通の縮小防止設定 */
}
.c-breadcrumb__link, .c-breadcrumb__separator, .c-breadcrumb__current {
  flex-shrink: 0;
}
.c-breadcrumb__link {
  color: var(--color-root);
  text-decoration: none;
  transition: color 0.3s ease;
}
.c-breadcrumb__link:hover {
  color: var(--color-highlight);
}

@media only screen and (min-width: 768px) {
  .c-breadcrumb {
    padding: 20px 0px;
  }
}
/* ==========================================================================
   1. あといくら機能（#atoikura）
   ========================================================================== */
#atoikura {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
#atoikura.is-scrolled {
  opacity: 1;
  visibility: visible;
}
#atoikura,
#atoikura * {
  box-sizing: border-box;
}
#atoikura img {
  width: auto;
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
}
#atoikura img:hover {
  transform: scale(1.05);
}
@media only screen and (min-width: 768px) {
  #atoikura {
    position: fixed;
    right: 30px;
    bottom: 160px;
    z-index: 99;
  }
}
@media only screen and (max-width: 767px) {
  #atoikura {
    position: fixed;
    left: 50%;
    bottom: 150px;
    transform: translateX(-50%);
    z-index: 99;
    width: 100%;
  }
}
#atoikura .float-button__wrap {
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  #atoikura .float-button__wrap {
    position: absolute;
    bottom: 0;
    right: 15px;
  }
}
.js-modalAtoikura.is-open ~ #atoikura .float-button__wrap {
  display: none;
}
#atoikura .float-button__wrap > .close-button {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  padding: 0;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 50%;
  z-index: 1002;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
#atoikura .float-button__wrap > .close-button span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 12px;
  height: 1px;
  background-color: #333;
}
#atoikura .float-button__wrap > .close-button span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
#atoikura .float-button__wrap > .close-button span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#atoikura #atoikuraTrg {
  color: #fff;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 3px 8px 7px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  /* ↓ 元々あった opacity: 0 や transition を削除し、親（#atoikura）のフェードインに完全同期させます */
}
#atoikura #atoikuraTrg p {
  color: #fff;
  font-size: 8px;
  font-weight: bold;
  text-align: center;
  margin-top: 5px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #atoikura #atoikuraTrg {
    width: 48px;
    height: 48px;
  }
  #atoikura #atoikuraTrg .button-icon {
    width: 45px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  #atoikura #atoikuraTrg {
    width: 48px;
    height: 48px;
    position: relative;
    z-index: 1001;
  }
  #atoikura #atoikuraTrg .button-icon {
    width: 50px;
    margin: 0 auto;
  }
  #atoikura #atoikuraTrg p::after {
    vertical-align: text-top;
  }
}
#atoikura .js-modalAtoikura {
  transition: all 0.5s ease-in-out;
}
@media only screen and (min-width: 768px) {
  #atoikura .js-modalAtoikura {
    position: absolute;
    bottom: 0;
    right: -50vw;
  }
  #atoikura .js-modalAtoikura.is-open {
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  #atoikura .js-modalAtoikura {
    display: none;
    z-index: 1002;
    transform: translateX(220%);
  }
  #atoikura .js-modalAtoikura.is-open {
    transform: translateX(15%);
  }
}
#atoikura .modalAtoikura {
  color: #000;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  box-shadow: 0px 1px 2px #d6d6d6;
  position: relative;
}
#atoikura .modalAtoikura a {
  color: #fff;
  text-decoration: none;
}
#atoikura .modalAtoikura .close-button {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 28px;
  height: 28px;
  padding: 0;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}
#atoikura .modalAtoikura .close-button span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 14px;
  height: 1px;
  background: #000;
}
#atoikura .modalAtoikura .close-button span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
#atoikura .modalAtoikura .close-button span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media only screen and (min-width: 768px) {
  #atoikura .modalAtoikura {
    width: 250px;
    padding: 21px 20px;
    border: 2px solid #fff;
  }
}
@media only screen and (max-width: 767px) {
  #atoikura .modalAtoikura {
    width: 100%;
    max-width: 240px;
    padding: 18px 16px 16px;
    border: 0.75px solid #d6d6d6;
    margin: 0 auto;
  }
}
#atoikura .promoImg,
#atoikura .promoImgCoupon {
  margin: 10px auto 0;
}
@media only screen and (max-width: 767px) {
  #atoikura .promoImg,
  #atoikura .promoImgCoupon {
    text-align: center;
  }
}
#atoikura .promoImg {
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  #atoikura .promoDetail {
    margin-top: 15px;
  }
  #atoikura .promoDetail > a {
    color: #000;
    font-size: 12px;
    display: block;
    position: relative;
  }
}
@media only screen and (max-width: 767px) {
  #atoikura .promoDetail {
    margin-top: 10px;
  }
  #atoikura .promoDetail > a {
    color: #000;
    font-size: 14px;
    display: block;
    position: relative;
  }
}
@media only screen and (min-width: 768px) {
  #atoikura .presentTextArea {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #atoikura .presentTextArea {
    display: flex;
    flex-flow: column;
    gap: 8px;
  }
}
#atoikura .presentBalloon {
  color: #000;
  font-size: 20px;
  position: relative;
  border-bottom: 2px solid #a5031a;
}
#atoikura .presentBalloon .atoIkuraKingaku {
  font-size: 24px;
  margin: 0 7px;
}
@media only screen and (min-width: 768px) {
  #atoikura .presentBalloon {
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  #atoikura .presentBalloon {
    padding-bottom: 10px;
    flex: 0 0 auto;
  }
  #atoikura .presentBalloon.clearMessage {
    font-size: 20px;
  }
}
#atoikura .presentText {
  color: #000;
  font-size: 12px;
}
#atoikura .presentText .subMessage {
  color: #000;
  line-height: 1.6;
}
@media only screen and (min-width: 768px) {
  #atoikura .presentText .subMessage {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  #atoikura .presentText .subMessage {
    font-size: 19px;
  }
}
@media only screen and (min-width: 768px) {
  #atoikura .presentText {
    line-height: 1.6;
  }
}
@media only screen and (max-width: 767px) {
  #atoikura .presentText {
    line-height: 1.8;
  }
}
#atoikura #dataContainer,
#atoikura #container {
  display: none;
}

/* ==========================================================================
   2. カートモーダル領域（#cart_mordal）
   ========================================================================== */
#cart_mordal .cart_mordal_message_area {
  background-color: #ffccd2;
  margin-top: 20px;
  position: relative;
  display: none;
}
@media only screen and (min-width: 768px) {
  #cart_mordal .cart_mordal_message_area {
    text-align: left;
  }
}
@media only screen and (min-width: 768px) {
  #cart_mordal .presentClear {
    display: block;
  }
}
#cart_mordal .presentMessage {
  position: relative;
  display: flex;
}
@media only screen and (min-width: 768px) {
  #cart_mordal .presentMessage {
    align-items: center;
    gap: 30px;
    padding: 15px;
  }
  #cart_mordal .presentMessage + .presentMessage {
    padding-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  #cart_mordal .presentMessage {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 15px;
  }
}
#cart_mordal .presentMessage .clearMessage {
  font-weight: bold;
  color: #dc0918;
}
@media only screen and (min-width: 768px) {
  #cart_mordal .presentMessage .clearMessage {
    font-size: 16px;
    text-align: left;
    width: 200px;
    flex: 0 0 auto;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #cart_mordal .presentMessage .clearMessage {
    font-size: 24px;
  }
}
#cart_mordal .presentMessage .balloonMessage {
  color: #fff;
  background-color: #dc0918;
  border-radius: 5px;
  line-height: 40px;
  position: relative;
  box-sizing: border-box;
  text-align: center;
}
#cart_mordal .presentMessage .balloonMessage::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}
#cart_mordal .presentMessage .balloonMessage .priceNum {
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  #cart_mordal .presentMessage .balloonMessage .priceNum {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  #cart_mordal .presentMessage .balloonMessage .priceNum {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) {
  #cart_mordal .presentMessage .balloonMessage {
    width: 200px;
    padding: 0 15px;
    flex: 0 0 auto;
  }
  #cart_mordal .presentMessage .balloonMessage::after {
    width: 13px;
    height: 11px;
    border: 6.5px solid transparent;
    border-right: none;
    border-left: 13px solid #dc0918;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media only screen and (max-width: 767px) {
  #cart_mordal .presentMessage .balloonMessage {
    width: 240px;
    padding: 0 20px;
    font-size: 22px;
    margin-bottom: 5px;
  }
  #cart_mordal .presentMessage .balloonMessage::after {
    width: 13px;
    height: 11px;
    border: 6.5px solid transparent;
    border-bottom: none;
    border-top: 11px solid #dc0918;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
  }
}
#cart_mordal .presentMessage .mainMessage {
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  #cart_mordal .presentMessage .mainMessage {
    font-size: 16px;
    color: #333 !important;
  }
}
@media only screen and (max-width: 767px) {
  #cart_mordal .presentMessage .mainMessage {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  #cart_mordal .presentMessage.presentClear .mainMessage {
    font-size: 24px;
  }
}
#cart_mordal .msborder:not(:last-of-type) {
  border-bottom: 1px #fff solid;
}
@media only screen and (min-width: 768px) {
  #cart_mordal .msborder:not(:last-of-type) {
    width: 580px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  #cart_mordal .msborder:not(:last-of-type) {
    width: 620px;
    margin: 5px auto;
  }
}
#cart_mordal .cart_mordal_imaikura_message_area {
  background-color: #ffccd2;
  margin-top: 20px;
  display: none;
  text-align: left;
  border-radius: 3px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #cart_mordal .cart_mordal_imaikura_message_area {
    padding: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #cart_mordal .cart_mordal_imaikura_message_area {
    padding: 15px;
  }
}
#cart_mordal .cart_mordal_imaikura_title {
  font-weight: bold;
  text-align: left;
  margin-bottom: 10px;
  color: #dc0918;
}
@media only screen and (min-width: 768px) {
  #cart_mordal .cart_mordal_imaikura_title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  #cart_mordal .cart_mordal_imaikura_title {
    font-size: 28px;
  }
}
#cart_mordal .cart_mordal_imaikura_box {
  display: flex;
}
@media only screen and (min-width: 768px) {
  #cart_mordal .cart_mordal_imaikura_box {
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  #cart_mordal .cart_mordal_imaikura_box {
    flex-wrap: wrap;
  }
}
#cart_mordal .cart_mordal_imaikura_balloon {
  display: inline-block;
  color: #fff;
  background-color: #dc0918;
  padding: 0 15px;
  border-radius: 4px;
  position: relative;
  box-sizing: border-box;
  font-weight: bold;
}
#cart_mordal .cart_mordal_imaikura_balloon span {
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  #cart_mordal .cart_mordal_imaikura_balloon span {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  #cart_mordal .cart_mordal_imaikura_balloon span {
    font-size: 34px;
  }
}
#cart_mordal .cart_mordal_imaikura_balloon::after {
  content: "";
  position: absolute;
  background: #da0024;
}
@media only screen and (min-width: 768px) {
  #cart_mordal .cart_mordal_imaikura_balloon {
    line-height: 36px;
  }
  #cart_mordal .cart_mordal_imaikura_balloon::after {
    height: 14px;
    width: 10px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    right: -9px;
    top: 12px;
  }
}
@media only screen and (max-width: 767px) {
  #cart_mordal .cart_mordal_imaikura_balloon {
    line-height: 48px;
  }
  #cart_mordal .cart_mordal_imaikura_balloon::after {
    height: 14px;
    width: 20px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    left: 50%;
    bottom: -13px;
  }
}
#cart_mordal .cart_mordal_imaikura_present {
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  #cart_mordal .cart_mordal_imaikura_present {
    font-size: 20px;
    margin-left: 25px;
  }
}
@media only screen and (max-width: 767px) {
  #cart_mordal .cart_mordal_imaikura_present {
    font-size: 30px;
    margin-top: 18px;
    width: 100%;
  }
}
#cart_mordal .cart_mordal_imaikura_notreg_box {
  display: flex;
}
@media only screen and (min-width: 768px) {
  #cart_mordal .cart_mordal_imaikura_notreg_box {
    align-items: center;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 767px) {
  #cart_mordal .cart_mordal_imaikura_notreg_box {
    flex-direction: column;
  }
}
#cart_mordal .cart_mordal_imaikura_notreg_txt {
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  #cart_mordal .cart_mordal_imaikura_notreg_txt {
    font-size: 16px;
    line-height: 1.5em;
  }
}
@media only screen and (max-width: 767px) {
  #cart_mordal .cart_mordal_imaikura_notreg_txt {
    font-size: 28px;
    width: 100%;
    line-height: 1.4em;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  #cart_mordal .cart_mordal_imaikura_notreg_bnr {
    text-align: center;
    margin: 10px auto 0;
  }
}
@media only screen and (min-width: 768px) {
  #cart_mordal .cart_mordal_imaikura_notreg_bnr img {
    width: 240px;
  }
}
@media only screen and (max-width: 767px) {
  #cart_mordal .cart_mordal_imaikura_notreg_bnr img {
    width: 480px;
  }
}

#modalAppatoikuraCoupon {
  display: none !important;
}

/* ==========================================================================
   3. 汎用・その他要素
   ========================================================================== */
@media only screen and (min-width: 768px) {
  .cmn-header_35thlogo {
    width: 52px;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .cmn-header_35thlogo {
    width: 100px;
  }
}
.cmn-header_35thlogo img {
  width: auto;
  max-width: 100%;
  height: auto;
}

@media only screen and (min-width: 768px) {
  .cmn-header_logo {
    margin-right: auto;
  }
}

@media only screen and (min-width: 768px) {
  #popup_pc {
    width: 300px !important;
  }
}

@media only screen and (min-width: 768px) {
  .m-annotation {
    color: #da0026;
  }
}

@media only screen and (min-width: 768px) {
  .index__nav_item {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.c-sidebar__next-month {
  margin-top: 24px;
}
.c-sidebar .c-accordion {
  margin-bottom: 0;
}
.c-sidebar .e-btn {
  max-width: none;
}
.c-sidebar__nav {
  list-style: none;
  margin-bottom: 8px;
  padding: 0;
  background-color: #fff;
  border: 1px solid var(--color-semantic-gray);
}
.c-sidebar__nav--tags {
  margin-top: 8px;
  padding-top: 12px;
}
.c-sidebar__nav-link {
  display: block;
  padding: 12px 16px;
  font-size: 1.4rem;
  max-height: 42px;
  color: var(--color-root);
  line-height: 1.6;
  cursor: pointer;
  border-top: 1px solid var(--color-semantic-gray);
}
.c-sidebar__nav-link:first-child {
  border-top: none;
}
.c-sidebar__nav-link.is-active {
  color: var(--color-highlight);
}
.c-sidebar__heading {
  font-size: 1.4rem;
  color: var(--color-root);
  margin-bottom: 32px;
}
.c-sidebar__trial {
  margin-top: 16px;
}

@media (hover: hover) {
  .c-sidebar__nav-link:not(.is-active):hover {
    color: var(--color-highlight);
  }
}
@media only screen and (min-width: 1024px) {
  .c-sidebar {
    width: 256px;
    flex-shrink: 0;
    position: sticky;
    top: 185px;
    align-self: flex-start;
  }
  .c-sidebar__next-month {
    margin-top: 32px;
  }
  .c-sidebar__trial {
    margin-top: 24px;
  }
  .c-sidebar .c-accordion__item {
    border: none;
  }
  .c-sidebar .c-accordion__header {
    display: none;
  }
  .c-sidebar .c-accordion__content {
    display: block !important;
    background-color: transparent;
  }
  .c-sidebar .c-accordion__item.is-active .c-accordion__content,
  .c-sidebar .c-accordion__content {
    padding: 0;
  }
}
.c-pagination {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.c-pagination li {
  display: inline-block;
  margin-left: 4px;
  margin-right: 4px;
}
.c-pagination li:first-child a, .c-pagination li:last-child a {
  border-radius: 100vw;
  padding-left: 8px;
  padding-right: 8px;
  width: auto;
}
.c-pagination strong,
.c-pagination a {
  align-items: center;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #111;
  display: inline-flex;
  height: 28px;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.25s, color 0.25s;
  width: 28px;
}
.c-pagination strong {
  background-color: #777;
  color: var(--color-white);
  font-weight: 700;
  pointer-events: none;
}
@media (hover: hover) {
  .c-pagination a {
    transition: background-color 0.3s, color 0.3s;
  }
  .c-pagination a:hover {
    background-color: #777;
    color: var(--color-white);
    text-decoration: none;
  }
}

.c-table {
  margin-bottom: 20px;
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}
.c-table::-webkit-scrollbar {
  background-color: #e6e6e6;
  height: 10px;
  overflow: visible;
  width: 10px;
}
.c-table::-webkit-scrollbar-button {
  height: 0;
  width: 0;
}
.c-table::-webkit-scrollbar-track {
  background-clip: padding-box;
  box-shadow: inset 1px 0 0 #e6e6e6;
}
.c-table::-webkit-scrollbar-track:hover {
  background-color: #f3f3f3;
  box-shadow: inset 1px 0 0 #e6e6e6;
}
.c-table::-webkit-scrollbar-track:active {
  background-color: #f3f3f3;
  box-shadow: inset 1px 0 0 #dcdcdc, inset -1px 0 0 #eeeeee;
}
.c-table::-webkit-scrollbar-thumb {
  background-color: #a5a5a5;
  background-clip: padding-box;
  border: solid transparent;
  border-width: 1px 1px 1px 0px;
  min-height: 28px;
  padding: 100px 0 0;
  box-shadow: inset 1px 1px 0 #e6e6e6, inset 0 -1px 0 #a5a5a5;
}
.c-table::-webkit-scrollbar-thumb:hover {
  background-color: #a5a5a5;
  box-shadow: inset 1px 1px 1px #a5a5a5;
}
.c-table::-webkit-scrollbar-thumb:active {
  background-color: #808080;
  box-shadow: inset 1px 1px 3px #a6a6a6;
}
.c-table__sum {
  align-items: flex-end;
  display: flex;
  margin-bottom: 10px;
}
.c-table__sum strong {
  color: #f60;
  font-family: var(--font-helvetica);
  font-size: 2rem;
  margin-right: 5px;
}
.c-table__sum dt {
  line-height: 1.1;
  margin-right: 5px;
}
.c-table table {
  border: 1px solid #ccc;
  background-color: var(--color-white);
  width: 100%;
}
.c-table table th,
.c-table table td {
  border: 1px solid #ccc;
  padding: 10px;
}
.c-table table th {
  font-weight: 700;
  text-align: center;
}
.c-table table th[data-required]::after {
  content: attr(data-required);
  color: #c00;
}

/* --- Slider viewport (Swiper container) --- */
.swiper {
  position: relative;
  overflow: visible;
}
.swiper-view-2 {
  height: 318px;
}
@media only screen and (min-width: 530px) {
  .swiper-view-2 {
    height: 400px;
  }
}
@media only screen and (min-width: 768px) {
  .swiper-view-2 {
    height: min(50vw, 632px);
  }
}
.swiper-view-3 {
  height: 358px;
}
@media only screen and (min-width: 530px) {
  .swiper-view-3 {
    height: 400px;
  }
}
@media only screen and (min-width: 768px) {
  .swiper-view-3 {
    height: min(40vw, 462px);
  }
}

.swiper-scroll {
  overflow: hidden;
}
.swiper-scroll .swiper--centered:has(+ .swiper-scrollbar.swiper-scrollbar-lock) .swiper-wrapper {
  justify-content: center;
}
.swiper-scroll .swiper--centered:has(+ .swiper-scrollbar.swiper-scrollbar-lock) .swiper-wrapper .swiper-slide:last-child {
  margin: 0 !important;
}
.swiper-scroll .swiper-slide {
  height: auto;
}

.swiper-scrollbar {
  --swiper-scrollbar-size: 2px;
}

/* --- Track: holds all slides (Swiper wrapper) --- */
.slider-track {
  display: flex;
}
.slider-track__center {
  justify-content: center;
}

.slider-scrollbar {
  position: relative;
  max-width: 240px;
  height: 2px;
  margin: 32px auto 0;
  background: #D6D6D6;
  overflow: hidden;
}
.slider-scrollbar.swiper-scrollbar-lock {
  display: block;
}
.slider-scrollbar .swiper-scrollbar-drag {
  background: #ACACAC;
}
.slider-scrollbar.swiper-scrollbar-horizontal {
  position: unset;
}

.swiper-controls {
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-controls .swiper-button-next,
.swiper-controls .swiper-button-prev {
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.5);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 6px auto;
  border-radius: 50%;
}
.swiper-controls .swiper-button-next:after,
.swiper-controls .swiper-button-prev:after {
  color: rgba(0, 0, 0, 0.3);
  font-size: 12px;
  font-weight: bold;
}

@media only screen and (min-width: 768px) {
  .swiper[data-pc=column] .slider-track {
    flex-direction: column;
    transform: none !important;
  }
  .swiper[data-pc=column] .swiper-slide {
    width: 100% !important;
    margin: 0 !important;
  }
  .swiper[data-pc=column] + .slider-scrollbar {
    display: none;
  }
  .swiper[data-pc=column] .slider-track {
    gap: 48px;
  }
  .slider-track--PC-center {
    justify-content: center;
  }
}
.c-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  font-family: var(--font-root);
}

.c-accordion__item {
  border-radius: 4px;
  border: 1px solid var(--color-semantic-gray);
  transition: background-color 0.3s ease;
}

.c-accordion__header {
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px;
  background-color: var(--color-white);
  cursor: pointer;
  text-align: left;
}

.c-accordion__header-text {
  position: relative;
  flex: 1;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-root);
  font-family: var(--font-root);
}
.c-accordion__header-text::before, .c-accordion__header-text::after {
  content: "";
  position: absolute;
  border-radius: 4px;
  top: 50%;
  right: 12px;
  transform: translate(-50%, -50%);
  background-color: var(--color-root);
}
.c-accordion__header-text::after {
  transform: translate(40%, -50%);
  width: 12px;
  height: 1px;
}
.c-accordion__header-text::before {
  transition: opacity 0.3s ease;
  width: 1px;
  height: 12px;
}

.c-accordion__item.is-active .c-accordion__header-text::before {
  opacity: 0;
}

.c-accordion__content {
  display: none;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--color-white);
}

.c-accordion__item.is-active .c-accordion__content {
  padding: 0 16px 20px;
}

.c-accordion__body {
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 0;
}
.c-accordion__body p {
  margin-bottom: 8px;
}
.c-accordion__body p:last-child {
  margin-bottom: 0;
}

@media (hover: hover) {
  .c-accordion__item:not(.is-active) .c-accordion__header:hover {
    background-color: var(--bg-root);
  }
}
@media only screen and (min-width: 768px) {
  .c-accordion__item.is-active .c-accordion__content {
    padding-bottom: 24px;
  }
}
.c-video {
  height: 100%;
}
.c-video__card {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: #000;
}
.c-video__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-keyv {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.c-keyv__swiper {
  width: 100%;
}
.c-keyv__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-keyv__item {
  width: 100%;
}
.c-keyv__link {
  display: block;
  width: 100%;
}
.c-keyv__img {
  width: 100%;
  vertical-align: middle;
}
.c-keyv__pagination {
  bottom: 16px !important;
  --swiper-pagination-bullet-horizontal-gap: 12px;
}
.c-keyv__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #D6D6D6;
  border: 2px solid #FFF;
  opacity: 1;
  transition: background 0.3s;
}
.c-keyv__pagination .swiper-pagination-bullet-active {
  background-color: var(--color-highlight);
}
.c-keyv__btn {
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: none;
  color: #fff;
}
.c-keyv__btn--prev {
  left: 0;
}
.c-keyv__btn--next {
  right: 0;
}
.c-keyv__btn::after {
  font-size: 20px;
}
@media only screen and (min-width: 768px) {
  .c-keyv__btn::after {
    font-size: 28px;
  }
}
@media only screen and (min-width: 768px) {
  .c-keyv__btn {
    width: 26px;
    height: 32px;
  }
  .c-keyv__btn--prev {
    left: 32px;
  }
  .c-keyv__btn--next {
    right: 32px;
  }
}
.c-keyv__pagination {
  bottom: 12px !important;
}

.c-keyv-top-category {
  display: flex;
  min-height: 350px;
  background-image: var(--bg-keyv-cate-sp);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom;
  background-color: #FFF;
}
.c-keyv-top-category__inner {
  position: relative;
  width: 100%;
  max-width: 1311px;
  margin: 0 auto;
  padding: 64px 32px 41vw;
}
.c-keyv-top-category .c-head {
  margin-bottom: 64px;
}
.c-keyv-top-category .e-h3 {
  font-family: var(--font-noto-serif);
  line-height: 1.9;
}
.c-keyv-top-category__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.c-keyv-top-category__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.c-keyv-top-category__item {
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.3019607843);
  line-height: 1.6;
  font-size: var(--font-size);
  backdrop-filter: blur(20px);
}
.c-keyv-top-category__note {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-black);
}
.c-keyv-top-category--collection {
  background-color: #EBEBEB;
}
@media only screen and (min-width: 768px) {
  .c-keyv-top-category {
    min-height: 430px;
    background-image: var(--bg-keyv-cate-pc);
    background-position: center right;
    background-size: auto 100%;
  }
  .c-keyv-top-category__inner {
    padding-bottom: 23vw;
  }
  .c-keyv-top-category--makeup {
    background-color: #E9EFF3;
    background-position: center right 3%;
  }
  .c-keyv-top-category--collection {
    background-color: #EBEBEB;
  }
  .c-keyv-top-category--skincare {
    background-position: center right 10%;
  }
  .c-keyv-top-category--cleanse {
    background-color: #FFF7E0;
    background-position: center right 15%;
  }
  .c-keyv-top-category--bodycare {
    background-color: #F0F7F2;
    background-position: center right 8%;
  }
}
@media only screen and (min-width: 1024px) {
  .c-keyv-top-category {
    background-position: center right !important;
  }
  .c-keyv-top-category__inner {
    padding-bottom: 64px;
  }
  .c-keyv-top-category__content {
    padding-right: 370px;
  }
}

.c-keyv-campaign {
  overflow: hidden;
  padding-bottom: 60px;
}
.c-keyv-campaign__subheading {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  color: #2C2C2C;
  line-height: 1.6;
}
.c-keyv-campaign__main {
  position: relative;
  width: 100%;
  background: #fff;
}
.c-keyv-campaign__main .splide__track {
  overflow: visible;
}
.c-keyv-campaign__main .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 390/488;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .c-keyv-campaign__main .splide__slide img {
    aspect-ratio: 1200/550;
  }
}
.c-keyv-campaign .splide__arrow {
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s, opacity 0.2s;
}
.c-keyv-campaign .splide__arrow svg {
  display: none;
}
.c-keyv-campaign .splide__arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #2C2C2C;
  border-right: 1px solid #2C2C2C;
}
.c-keyv-campaign .splide__arrow--prev {
  left: 7px;
}
.c-keyv-campaign .splide__arrow--prev::before {
  transform: rotate(-135deg);
  margin-left: 4px;
}
.c-keyv-campaign .splide__arrow--next {
  right: 7px;
}
.c-keyv-campaign .splide__arrow--next::before {
  transform: rotate(45deg);
  margin-right: 4px;
}
@media (hover: hover) {
  .c-keyv-campaign .splide__arrow:hover {
    background: #fff;
  }
}
.c-keyv-campaign .splide__arrow:disabled {
  opacity: 0;
  pointer-events: none;
}
.c-keyv-campaign__thumbs {
  padding: 8px 8px 0;
}
.c-keyv-campaign__thumbs .splide__track {
  overflow: visible;
}
@media only screen and (min-width: 768px) {
  .c-keyv-campaign__thumbs {
    padding: 16px 0 0;
  }
}
.c-keyv-campaign__thumbs .splide__slide {
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.2s;
  border: none !important;
}
.c-keyv-campaign__thumbs .splide__slide::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--color-highlight);
  transition: width 0.3s ease-in-out;
}
.c-keyv-campaign__thumbs .splide__slide.is-active {
  opacity: 1;
  border: none !important;
}
.c-keyv-campaign__thumbs .splide__slide.is-active::before {
  width: 100%;
}
.c-keyv-campaign__thumbs .splide__slide:hover {
  opacity: 1;
}
@media (hover: hover) {
  .c-keyv-campaign__thumbs .splide__slide:hover::before {
    width: 100%;
  }
}
.c-keyv-campaign__thumb {
  display: block;
  border-radius: 0;
  background: #fff;
}
.c-keyv-campaign__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .c-keyv-campaign__inner {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 16px;
  }
}

.c-component {
  padding-top: 80px;
}
.c-component01 {
  margin-top: 64px;
  padding: 64px 0px;
}
.c-component02 {
  padding: 80px 0px;
}
@media only screen and (min-width: 768px) {
  .c-component {
    padding-top: 120px;
  }
  .c-component01 {
    margin-top: 120px;
    padding: 120px 0px;
  }
  .c-component02 {
    padding: 120px 0px;
  }
}

.c-banner-skincare__sec {
  background: url(/img/renewal2026/skincare/bg-bnr-section.jpg) no-repeat 50% 50%;
  background-size: cover;
}
.c-banner-grid-primary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 8px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .c-banner-grid-primary {
    gap: 24px 8px;
  }
}
.c-banner-grid-secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 8px;
}
.c-banner-card__image {
  display: block;
  line-height: 0;
  margin-bottom: 8px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .c-banner-card__image:hover {
    opacity: 0.7;
  }
}
.c-banner-card__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-banner-card__text {
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 0px 20px;
}
.c-banner-card__text--center {
  padding: 0;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.6;
}

.c-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 16px;
}
.c-head__gap-8 {
  gap: 8px;
}

.c-caution__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  padding: 16px;
  text-align: center;
}
.c-caution__box--red {
  border: 1px solid var(--color-highlight);
}
.c-caution__box--red .c-caution__title {
  background-color: var(--color-highlight);
}
.c-caution__box--brown {
  border: 1px solid #947947;
}
.c-caution__box--brown .c-caution__title {
  background-color: #947947;
}
.c-caution__content {
  padding: 16px;
}

@media only screen and (min-width: 768px) {
  .c-banner-grid-primary {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-banner-grid-secondary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .c-head {
    margin-bottom: 40px;
  }
}
.c-campaign__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.c-campaign__link {
  display: block;
  width: 100%;
  text-decoration: none;
}
.c-campaign__item {
  width: calc(50% - 4px);
}
.c-campaign__thumb {
  width: 100%;
}
.c-campaign__thumb img {
  width: 100%;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
  transform: translateZ(0);
  will-change: transform;
}
.c-campaign__content {
  padding: 4px 16px 12px;
}
.c-campaign__content-supplement {
  padding: 16px;
}
.c-campaign__content-supplement .c-campaign__description {
  color: var(--color-root);
  margin-top: 8px;
}
.c-campaign__caption {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #2C2C2C;
}
.c-campaign__description {
  margin-bottom: 4px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-highlight);
}
.c-campaign__more {
  margin-top: 32px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .c-campaign__list--5cols {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }
  .c-campaign__list--5cols .c-campaign__item {
    width: 100%;
  }
  .c-campaign__item {
    width: calc((100% - 32px) / 4);
  }
  .c-campaign__content {
    padding-top: 8px;
  }
}
@media only screen and (min-width: 1024px) {
  .c-campaign__item {
    width: calc((100% - 40px) / 6);
  }
}

.c-seller__list-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 8px;
}
.c-seller__list-column .c-seller__item {
  width: calc((100% - 8px) / 2);
}
.c-seller__item {
  height: auto;
}
.c-seller__link {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-decoration: none;
  border: 1px solid #D6D6D6;
}
@media only screen and (max-width: 767px) {
  .c-seller__inner-8 {
    width: calc(100% + 32px);
    margin-left: -16px;
  }
}
@media only screen and (min-width: 768px) {
  .c-seller__item {
    width: calc((100% - 24px) / 4);
  }
}
@media only screen and (min-width: 1024px) {
  .c-seller__item {
    width: calc((100% - 40px) / 6);
  }
  .c-seller__list-column .c-seller__item {
    flex: 0 0 calc((100% - 24px) / 4) !important;
  }
}

.c-line-up__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media only screen and (max-width: 767px) {
  .c-line-up__list {
    padding: 0 24px;
    margin: 0 auto;
  }
}
.c-line-up__item {
  width: 100%;
}
.c-line-up__link {
  display: block;
  width: 100%;
  text-decoration: none;
}
.c-line-up__thumb {
  width: 100%;
}
.c-line-up__thumb img {
  width: 100%;
  vertical-align: middle;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateZ(0);
  will-change: transform;
}
.c-line-up__thumb-caption {
  margin-top: 8px;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #2C2C2C;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .c-line-up__list {
    gap: 8px;
  }
  .c-line-up__item {
    width: calc((100% - 24px) / 4);
  }
}

.c-line__sec {
  padding-top: 80px;
}
.c-line__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.c-line__list .max-height-auto {
  max-height: unset !important;
}
.c-line__head {
  margin-bottom: 20px;
}
.c-line__label {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 4px;
}
.c-line__title {
  font-size: 2.2rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.c-line__title--head {
  font-family: var(--font-noto-serif);
  line-height: 1.7;
  margin-bottom: 8px;
}
.c-line__title-sub {
  font-size: 1.4rem;
  line-height: 1.6;
}
.c-line__note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.6;
}
.c-line__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.c-line__tag {
  padding: 4px;
  background-color: var(--color-white);
  font-size: 1rem;
  line-height: 1.5;
}
.c-line__image {
  width: 100%;
  height: auto;
}
.c-line__desc {
  margin-bottom: 32px;
  font-size: 1.4rem;
  line-height: 1.6;
}
.c-line__desc--head {
  margin-bottom: 0;
}
.c-line__seller-list {
  padding: 0 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 8px;
}
.c-line__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}
@media only screen and (max-width: 1023px) {
  .c-line__head {
    padding: 0 24px;
  }
  .c-line__hero {
    margin-bottom: 20px;
  }
  .c-line__actions {
    padding: 0 8px;
  }
  .c-line__desc {
    padding: 0 24px;
  }
  .c-line__desc--head {
    padding: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .c-line__sec {
    padding-top: 48px;
  }
  .c-line__list {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 16px;
    gap: 64px;
  }
  .c-line__item {
    display: grid;
    -moz-column-gap: 48px;
         column-gap: 48px;
    grid-template-areas: "hero head" "hero desc" "hero list" "hero actions";
    grid-template-columns: 330px 1fr;
    grid-template-rows: auto auto 1fr auto;
  }
  .c-line__head {
    grid-area: head;
  }
  .c-line__label {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .c-line__tag {
    font-size: 1.2rem;
  }
  .c-line__hero {
    grid-area: hero;
  }
  .c-line__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .c-line__seller-list {
    grid-area: list;
    grid-template-columns: repeat(4, 1fr);
    padding: 0;
    align-self: start;
  }
  .c-line__seller-list--col2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .c-line__desc {
    grid-area: desc;
  }
  .c-line__actions {
    grid-area: actions;
  }
}

.b-hover__zoom--overlay {
  overflow: hidden;
}
.b-hover__zoom img {
  transition: transform 0.3s ease-in-out;
}
.b-hover__zoom:hover img {
  transform: scale(1.05);
}

.c-information {
  margin-top: 80px;
}
.c-information__list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}
.c-information__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 8px;
  border-bottom: 1px solid var(--color-semantic-gray);
}
.c-information__item:first-child {
  padding-top: 0;
}
.c-information__date {
  flex: 0 0 auto;
  width: auto;
  font-size: 1.4rem;
  color: var(--color-root);
  line-height: 1.55;
}
.c-information__text {
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.55;
  color: var(--color-root);
}
.c-information__text a {
  color: inherit;
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .c-information {
    margin-top: 120px;
  }
  .c-information__list {
    margin-top: 40px;
  }
  .c-information__item {
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
    padding: 32px 0;
  }
  .c-information__item:first-child {
    padding-top: 16px;
  }
  .c-information__date {
    width: 100px;
  }
}
@media (hover: hover) {
  .c-information__text a:hover {
    color: var(--color-highlight);
  }
}

.c-topic {
  margin-top: 80px !important;
  padding-bottom: 80px;
  overflow: hidden;
}
.c-topic__actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.c-topic {
  /* --- Card --- */
}
.c-topic-card__inner {
  display: block;
  color: inherit;
  text-decoration: none;
}
.c-topic-card__image {
  margin: 0;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.c-topic-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-topic-card__content {
  padding: 12px 20px 0;
}
.c-topic-card__category {
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--color-root);
  padding: 8px;
  margin-bottom: 8px;
  border: 1px solid var(--color-semantic-gray);
}
.c-topic-card__title {
  font-size: 1.3rem;
  line-height: 1.5;
  margin: 0;
  color: var(--color-root);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .c-topic {
    margin-top: 120px !important;
    padding-bottom: 120px;
  }
  .c-topic__actions {
    margin-top: 48px;
  }
  .c-topic .e-headline04 {
    margin-bottom: 48px;
  }
}

.c-select {
  cursor: pointer;
  width: 100%;
  background-color: var(--color-white);
  position: relative;
  padding: 16px;
  border: 1px solid var(--color-semantic-gray);
  border-radius: 4px;
  font-size: 1.4rem;
  color: var(--color-root);
  text-align: left;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data: image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' %3E%3Cpath fill='%23333333' d='M6 8L1 3h10z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 36px;
}

.c-checkbox {
  padding: 8px 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  color: var(--color-root);
  cursor: pointer;
  transition: color 0.15s;
}
.c-checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--color-highlight);
  cursor: pointer;
}
.c-checkbox .c-star-rating {
  display: inline-block;
  position: relative;
  width: 78.75px;
  height: 15px;
  background: url("/img/renewal2026/common/icon-star-empty.png") repeat-x left center/15.75px 15px;
}
.c-checkbox .c-star-rating::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/img/renewal2026/common/icon-star.svg") repeat-x left center/15.75px 15px;
}
.c-checkbox .c-star-rating.c-star-rating--0::before {
  width: 0% !important;
}
.c-checkbox .c-star-rating.c-star-rating--1::before {
  width: 20% !important;
}
.c-checkbox .c-star-rating.c-star-rating--2::before {
  width: 40% !important;
}
.c-checkbox .c-star-rating.c-star-rating--3::before {
  width: 60% !important;
}
.c-checkbox .c-star-rating.c-star-rating--4::before {
  width: 80% !important;
}
.c-checkbox .c-star-rating.c-star-rating--5::before {
  width: 100% !important;
}

.c-filter-panel__title {
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--color-semantic-gray);
  font-weight: bold;
}
.c-filter-panel__columns {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px 24px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-semantic-gray);
}
.c-filter-panel__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.c-filter-panel__actions .e-btn {
  padding: 12px;
  justify-content: center;
  text-align: center;
}

@media only screen and (min-width: 1024px) {
  .c-filter-panel__title {
    text-align: left;
  }
  .c-filter-panel__columns {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-filter-panel__actions {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1280px) {
  .c-filter-panel__columns {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-filter-panel__columns--lifestyle {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 1023px) {
  .c-filter-panel__actions .e-btn {
    max-width: unset;
  }
}
.c-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.c-category-grid__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 16px;
  background: #FAFAFA;
  color: var(--color-root);
  font-size: 1.6rem;
  text-align: center;
  text-decoration: none;
  line-height: 1.5;
}
.c-category-grid__item--full {
  grid-column: 1/-1;
  min-height: 70px;
}
.c-category-grid__item span {
  display: inline-block;
}
@media only screen and (min-width: 768px) {
  .c-category-grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .c-category-grid--5 {
    grid-template-columns: repeat(15, 1fr);
  }
  .c-category-grid__item {
    transition: border-color 0.3s ease;
    border: 1px solid #FAFAFA;
    grid-column: span 3;
  }
}
@media only screen and (min-width: 768px) and (hover: hover) {
  .c-category-grid__item:hover {
    border-color: #A50319;
  }
}
@media only screen and (min-width: 768px) {
  .c-category-grid__item--full {
    grid-column: span 4;
    min-height: 80px;
  }
  .c-category-grid--5cols {
    grid-template-columns: repeat(15, 1fr);
  }
}

.js-content-load-more > :nth-child(n+9) {
  display: none;
}

a.c-best-seller-item {
  color: inherit;
  text-decoration: none;
}

.c-best-seller-item {
  display: flex;
  flex-direction: column;
}
.c-best-seller-item__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  min-height: 26px;
}
.c-best-seller-item__badge, .c-best-seller-item__badge--default {
  font-size: 1.2rem;
  color: var(--color-highlight);
  border: 1px solid var(--color-highlight);
  padding: 4px;
  line-height: 1.5;
  white-space: nowrap;
}
.c-best-seller-item__badge--default {
  border: 1px solid #D6D6D6;
  color: #2C2C2C;
  background-color: #FAFAFA;
}
.c-best-seller-item__badge--default.is-new, .c-best-seller-item__badge--default.is-limited {
  border: 1px solid var(--color-highlight);
  color: var(--color-highlight);
}
.c-best-seller-item__thumb {
  width: 100%;
}
.c-best-seller-item__thumb img {
  width: 100%;
  vertical-align: middle;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
}
.c-best-seller-item__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 auto;
  padding: 16px 16px 0;
}
.c-best-seller-item__category {
  display: inline-block;
  align-self: flex-start;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #2C2C2C;
  background-color: #FAFAFA;
  border: 1px solid #D6D6D6;
  padding: 4px 8px;
  margin-bottom: 8px;
}
.c-best-seller-item__name {
  display: -webkit-box;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #2C2C2C;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  min-height: 4.48rem;
}
.c-best-seller-item__quasi {
  font-size: 1.2rem;
  color: #666;
  margin-top: 8px;
}
.c-best-seller-item__price {
  text-align: right;
  font-size: 1.4rem;
  color: #2C2C2C;
  margin-top: 16px;
  font-family: var(--font-open-sans);
}
.c-best-seller-item__price strong {
  font-weight: 700;
}
.c-best-seller-item__price-unit {
  font-size: 1.2rem;
}
.c-best-seller-item__price-tax {
  display: inline-block;
  font-size: 1rem;
}
.c-best-seller-item__price--origin {
  color: #ACACAC;
}
.c-best-seller-item__price--origin * {
  text-decoration: line-through;
}
.c-best-seller-item__price--sale {
  margin-top: 0;
  color: var(--color-highlight);
}
.c-best-seller-item__rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 1.2rem;
  color: #2C2C2C;
  margin-top: 8px;
}
.c-best-seller-item__rating .w-full {
  width: 100%;
}
.c-best-seller-item__rating-count {
  font-size: 1rem;
}
.c-best-seller-item__rating-stars {
  font-size: 1.2rem;
  line-height: 1;
  background: linear-gradient(90deg, var(--color-star-filled) calc(var(--rating) / 5 * 100%), var(--color-star-empty) calc(var(--rating) / 5 * 100%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--color-star-empty);
}
.c-best-seller-item__footer {
  margin-top: 16px;
}
.c-best-seller-item__footer .c-best-seller-item__price {
  margin-top: 0;
}
.c-best-seller-item--white .c-best-seller-item__content {
  padding-bottom: 16px;
  background: #FFF;
}
.c-best-seller-item--white .c-best-seller-item__txt {
  margin-bottom: 8px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media only screen and (min-width: 768px) {
  .c-best-seller-item__rating-label {
    width: 100%;
  }
}

a.c-special-list__item {
  color: inherit;
  text-decoration: none;
}

.c-special-list__thumb img {
  width: 100%;
  vertical-align: middle;
}
.c-special-list__content {
  padding: 8px 16px;
}
.c-special-list__title {
  font-size: 1.4rem;
  line-height: 1.6;
}
.c-special-list__title:not(:has(+ .c-special-list__desc)) {
  padding: 8px 16px;
}
.c-special-list__desc {
  margin-top: 8px;
  font-size: 1.2rem;
  line-height: 1.5;
}
.c-special-list .swiper .swiper-slide {
  height: auto;
}

.c-swiper__viewport {
  position: relative;
}
.c-swiper__viewport .swiper {
  overflow: hidden;
  max-width: 1144px;
}
.c-swiper__viewport .swiper__nav {
  display: none;
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transform: translateY(-55%);
}
.c-swiper__viewport .swiper__nav::after {
  display: none;
}
.c-swiper__viewport .swiper__nav::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: 0 auto;
  border-top: 1px solid var(--color-root);
  border-right: 1px solid var(--color-root);
}
.c-swiper__viewport .swiper__nav--prev {
  left: 0;
}
.c-swiper__viewport .swiper__nav--prev::before {
  transform: rotate(-135deg);
}
.c-swiper__viewport .swiper__nav--next {
  right: 0;
}
.c-swiper__viewport .swiper__nav--next::before {
  transform: rotate(45deg);
}
.c-swiper__viewport .swiper__nav.swiper-button-disabled {
  opacity: 0.2;
  pointer-events: none;
}
.c-swiper__viewport .swiper__nav.swiper-button-lock {
  display: none;
}
@media only screen and (min-width: 768px) {
  .c-swiper__viewport .swiper__nav {
    display: block;
  }
}

.c-brand-concept__sec {
  padding-top: 80px;
}
.c-brand-concept__title {
  font-family: var(--font-noto-serif);
  font-size: 2.2rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.c-brand-concept__desc {
  font-size: 1.4rem;
  line-height: 1.6;
}
.c-brand-concept__list {
  margin-top: 24px;
}
.c-brand-concept__list--item {
  line-height: 1.6;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .c-brand-concept__list--item:not(:first-child) {
    margin-top: 8px;
  }
}
@media only screen and (min-width: 768px) {
  .c-brand-concept__list {
    display: flex;
  }
  .c-brand-concept__list--item {
    position: relative;
    padding-right: 16px;
  }
  .c-brand-concept__list--item:not(:last-child)::after {
    content: "/";
    margin: 0 0 0 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .c-brand-concept__sec {
    padding-top: 44px;
  }
}

.fancybox__container {
  --fancybox-backdrop-bg: rgba(0, 0, 0, .3);
}

.fancybox__slide.has-html {
  padding-left: 15px;
  padding-right: 15px;
}

.fancybox__viewport.is-draggable {
  cursor: unset;
}

.f-button:hover:not([aria-disabled]) {
  color: var(--color-root);
}

html.with-fancybox body.hide-scrollbar {
  margin-right: 0;
  overflow: unset !important;
  overscroll-behavior-y: unset;
}

.fancybox__container,
.fancybox__viewport,
.c-modal-content {
  overflow-anchor: none;
}

.c-modal {
  position: relative;
  display: none;
  max-width: 960px;
  padding: 65px 24px 24px;
}
.c-modal .f-button {
  position: absolute;
  top: 20px;
  right: 20px;
  --f-button-color: var(--color-black);
}
.c-modal-content__box {
  padding: 24px;
  border: 1px solid #ACACAC;
}
.c-modal-content__box:not(:last-child) {
  margin-bottom: 16px;
}
.c-modal-content__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.c-modal__title {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}
.c-modal__link {
  display: flex;
  flex-wrap: wrap;
  row-gap: 16px;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.c-modal__link a {
  text-decoration: none;
  color: var(--color-root);
  font-size: 1.4rem;
  line-height: 1.5;
  transition: opacity 0.3s ease;
}
.c-modal__link a:hover {
  opacity: 0.7;
}
.c-modal__input {
  border-bottom: 1px solid var(--color-root);
  padding-bottom: 10px;
  margin-bottom: 24px;
}
.c-modal__input input {
  border: none;
  outline: none;
  font-size: 1.4rem;
  color: var(--color-root);
  background: transparent;
}
.c-modal__input input::-moz-placeholder {
  color: #A9A9A9;
}
.c-modal__input input::placeholder {
  color: #A9A9A9;
}
.c-modal .e-input__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  color: var(--color-root);
  cursor: pointer;
}
.c-modal .e-input__checkbox input {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #D6D6D6;
  border-radius: 3px;
  display: grid;
  place-content: center;
  cursor: pointer;
  margin: 0;
  transition: border-color 0.15s ease, background-color 0.15s ease;
  background-color: var(--color-white);
}
.c-modal .e-input__checkbox input:before {
  content: "";
  width: 4px;
  height: 8px;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(45deg) translate(-1px, -1px);
  opacity: 0;
}
.c-modal .e-input__checkbox input:checked {
  border-color: var(--color-highlight);
  background-color: var(--color-highlight);
}
.c-modal .e-input__checkbox input:checked:before {
  opacity: 1;
}
.c-modal__submit-btn {
  display: inline-block;
  margin-top: 25px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-white);
  text-decoration: none;
  text-align: center;
  padding: 16px;
  border-radius: 4px;
  background-color: var(--color-root);
  border: 0;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .c-modal-content__box {
    padding: 40px;
  }
  .c-modal-content__box:not(:last-child) {
    margin-bottom: 24px;
  }
  .c-modal-content__wrapper {
    flex-direction: row;
    gap: 50px;
  }
  .c-modal__title {
    text-align: left;
    min-width: 160px;
  }
  .c-modal__title--short {
    min-width: 120px;
  }
  .c-modal__input {
    margin-bottom: 30px;
  }
  .c-modal__link {
    row-gap: 30px;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .c-modal__submit-btn {
    margin-top: 40px;
    margin-left: auto;
    width: 240px;
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  .c-modal__submit-btn:hover {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 1024px) {
  .c-modal {
    width: 960px;
  }
}

/* ==========================================
   モーダル全体（オーバーレイ & ウィンドウ）
   ========================================== */
.c-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  /* 初期表示：非表示（JSで .is-open を付与して表示） */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.c-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.c-modal-window {
  position: relative;
  background-color: var(--color-white);
  width: 100%;
  max-width: 960px;
  padding: 35px 20px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media only screen and (min-width: 768px) {
  .c-modal-window {
    padding: 40px 30px 35px;
  }
}

/* 閉じるボタン (×) */
.c-modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.c-modal-close-btn__icon {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.c-modal-close-btn__icon::before, .c-modal-close-btn__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background-color: var(--color-root);
}
.c-modal-close-btn__icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-modal-close-btn__icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ==========================================
   モーダルコンテンツ部 (.c-modal-content 内)
   ========================================== */
.c-modal {
  position: relative;
  display: none;
  max-width: 960px;
  padding: 65px 24px 24px;
}
.c-modal .f-button {
  position: absolute;
  top: 20px;
  right: 20px;
  --f-button-color: var(--color-black);
}
.c-modal-content__box {
  padding: 24px;
  border: 1px solid #ACACAC;
}
.c-modal-content__box:not(:last-child) {
  margin-bottom: 16px;
}
.c-modal-content__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.c-modal__title {
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: left;
  color: var(--color-root);
  padding-bottom: 24px;
  border-bottom: 1px solid #ACACAC;
  margin-bottom: 24px;
}
.c-modal__subtext {
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--color-root);
  margin-bottom: 24px;
}
.c-modal__list {
  margin: 0;
  padding-left: 1.2em;
  list-style-type: disc;
}
.c-modal__list-item {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--color-root);
}
.c-modal__list-item:not(:last-child) {
  margin-bottom: 8px;
}
.c-modal__link {
  display: flex;
  flex-wrap: wrap;
  row-gap: 16px;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.c-modal__link a {
  text-decoration: none;
  color: var(--color-root);
  font-size: 1.4rem;
  line-height: 1.5;
  transition: opacity 0.3s ease;
}
.c-modal__link a:hover {
  opacity: 0.7;
}
.c-modal__input {
  border-bottom: 1px solid var(--color-root);
  padding-bottom: 10px;
  margin-bottom: 24px;
}
.c-modal__input input {
  border: none;
  outline: none;
  font-size: 1.4rem;
  color: var(--color-root);
  background: transparent;
  width: 100%;
}
.c-modal__input input::-moz-placeholder {
  color: #A9A9A9;
}
.c-modal__input input::placeholder {
  color: #A9A9A9;
}
.c-modal .e-input__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  color: var(--color-root);
  cursor: pointer;
}
.c-modal .e-input__checkbox input {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #D6D6D6;
  border-radius: 3px;
  display: grid;
  place-content: center;
  cursor: pointer;
  margin: 0;
  transition: border-color 0.15s ease, background-color 0.15s ease;
  background-color: var(--color-white);
}
.c-modal .e-input__checkbox input:before {
  content: "";
  width: 4px;
  height: 8px;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(45deg) translate(-1px, -1px);
  opacity: 0;
}
.c-modal .e-input__checkbox input:checked {
  border-color: var(--color-highlight);
  background-color: var(--color-highlight);
}
.c-modal .e-input__checkbox input:checked:before {
  opacity: 1;
}
.c-modal__submit-btn {
  display: inline-block;
  margin-top: 25px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-white);
  text-decoration: none;
  text-align: center;
  padding: 16px;
  border-radius: 4px;
  background-color: var(--color-root);
  border: 0;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .c-modal-content__box {
    padding: 40px;
  }
  .c-modal-content__box:not(:last-child) {
    margin-bottom: 24px;
  }
  .c-modal-content__wrapper {
    flex-direction: row;
    gap: 50px;
  }
  .c-modal__title {
    font-size: 1.6rem;
    text-align: left;
    min-width: 160px;
  }
  .c-modal__title--short {
    min-width: 120px;
  }
  .c-modal__subtext, .c-modal__list-item {
    font-size: 1.4rem;
  }
  .c-modal__input {
    margin-bottom: 30px;
  }
  .c-modal__link {
    row-gap: 30px;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .c-modal__submit-btn {
    margin-top: 40px;
    margin-left: auto;
    width: 240px;
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  .c-modal__submit-btn:hover {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 1024px) {
  .c-modal {
    width: 960px;
  }
}

.c-tab {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.c-tab-modal__item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: calc((100% - 5px) / 2);
  padding: 12px 8px;
  border-radius: 4px;
  border: 1px solid #D6D6D6;
  text-decoration: none;
  font-size: 1.2rem;
  color: var(--color-root);
  transition: opacity 0.3s ease;
}
.c-tab-modal__item.active {
  border-color: var(--color-highlight);
  color: var(--color-highlight);
}
.c-tab-modal__item:hover {
  opacity: 0.7;
}
.c-tab-content {
  position: relative;
}
.c-tab-box {
  position: absolute;
  inset: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.c-tab-box.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
@media only screen and (min-width: 768px) {
  .c-tab {
    margin-bottom: 24px;
  }
  .c-tab-modal__item {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

#tab-box01 {
  position: relative;
}

.js-handle-tab {
  cursor: pointer;
}

#cart_mordal {
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}
#cart_mordal .cart_mordal_back {
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#cart_mordal .cart_mordal_box {
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  padding: 24px 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  width: 90%;
  max-width: 350px;
  z-index: 1;
  max-height: 85vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
#cart_mordal .cart_mordal_text {
  color: #333333;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  padding-right: 30px;
}
#cart_mordal .cart_mordal_close_btn {
  cursor: pointer;
  display: block;
  position: absolute;
  right: 16px;
  top: 20px;
  width: 20px;
  height: 20px;
  z-index: 2;
}
#cart_mordal .cart_mordal_close_btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#cart_mordal .cart_mordal_item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  width: 100%;
}
#cart_mordal .cart_mordal_item p {
  color: #a50319;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  flex: 1;
}
#cart_mordal .cart_mordal_item_img {
  flex-shrink: 0;
  width: 80px;
}
#cart_mordal .cart_mordal_item_img img {
  display: block;
  width: 100%;
  height: auto;
}
#cart_mordal .cart_mordal_detail {
  border: 1px solid #e3e3e3;
  border-radius: 2px;
  margin-top: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
#cart_mordal .cart_mordal_detail p {
  grid-column: 1/-1;
  background-color: #f8f8f8;
  border-bottom: 1px solid #e3e3e3;
  color: #333333;
  font-size: 12px;
  font-weight: bold;
  line-height: 28px;
  text-align: center;
  width: 100%;
  margin: 0;
}
#cart_mordal .cart_mordal_detail dl {
  margin: 0;
  padding: 10px 0;
  text-align: center;
}
#cart_mordal .cart_mordal_detail dl dt {
  color: #666666;
  font-size: 11px;
  margin-bottom: 4px;
}
#cart_mordal .cart_mordal_detail dl dd {
  color: #333333;
  font-size: 12px;
  font-weight: bold;
  margin: 0;
}
#cart_mordal .cart_mordal_detail dl dd span {
  color: #a50319;
  font-size: 18px;
  margin-right: 2px;
}
#cart_mordal .cart_mordal_line {
  background-color: #e3e3e3;
  height: 30px;
  width: 1px;
}
#cart_mordal .cart_mordal_btn_box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
#cart_mordal .cart_mordal_btn_box a {
  align-items: center;
  border-radius: 4px;
  box-sizing: border-box;
  display: flex;
  font-size: 14px;
  font-weight: bold;
  height: 48px;
  justify-content: center;
  text-decoration: none;
  width: 100%;
}
#cart_mordal .cart_mordal_btn_box a.cart_mordal_btn--order {
  background-color: #a70012;
  color: #ffffff;
}
#cart_mordal .cart_mordal_btn_box a.cart_mordal_btn--order p {
  color: #ffffff;
  margin: 0;
  padding-left: 28px;
  background-image: url(../img/cart_mordal_order_btn.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 20px auto;
}
#cart_mordal .cart_mordal_btn_box a.cart_mordal_btn--close {
  background-color: #f5f5f5;
  border: 1px solid #dcdcdc;
  color: #333333;
}
#cart_mordal .cart_mordal_btn_box a.cart_mordal_btn--close p {
  color: #333333;
  margin: 0;
}
#cart_mordal {
  /* -----------------------------------------
    xl（PCサイズ）時のスタイル
  ----------------------------------------- */
}
@media only screen and (min-width: 1280px) {
  #cart_mordal .cart_mordal_box {
    padding: 32px 40px;
    width: 560px;
    max-width: none;
  }
  #cart_mordal .cart_mordal_text {
    font-size: 16px;
  }
  #cart_mordal .cart_mordal_close_btn {
    right: 24px;
    top: 28px;
    width: 24px;
    height: 24px;
  }
  #cart_mordal .cart_mordal_item {
    gap: 20px;
    margin-top: 24px;
  }
  #cart_mordal .cart_mordal_item p {
    font-size: 15px;
    line-height: 1.5;
    -webkit-line-clamp: 3;
  }
  #cart_mordal .cart_mordal_item_img {
    width: 100px;
  }
  #cart_mordal .cart_mordal_detail {
    margin-top: 20px;
  }
  #cart_mordal .cart_mordal_detail p {
    font-size: 12px;
    line-height: 30px;
  }
  #cart_mordal .cart_mordal_detail dl {
    padding: 12px 0;
  }
  #cart_mordal .cart_mordal_detail dl dt {
    font-size: 12px;
  }
  #cart_mordal .cart_mordal_detail dl dd {
    font-size: 13px;
  }
  #cart_mordal .cart_mordal_detail dl dd span {
    font-size: 20px;
  }
  #cart_mordal .cart_mordal_btn_box {
    flex-direction: row;
    gap: 16px;
    margin-top: 24px;
  }
  #cart_mordal .cart_mordal_btn_box a {
    flex: 1;
    height: 52px;
    font-size: 15px;
  }
  #cart_mordal .cart_mordal_btn_box a.cart_mordal_btn--order p {
    background-size: 22px auto;
  }
}

/* ローディング表示 (共通) */
.cart_loading_back {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart_loading_gif span {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 3px solid #ccc;
  border-radius: 50%;
  border-top-color: #333;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/*=============================
    teiki-cart（定期カートイン完了モーダル）

    ※ _modal-cart.scss（#cart_mordal）と同じ方式。
      等倍px＋flex/grid で組み、SPは transform:scale ではなく
      通常のレスポンシブ（media-up(md)）で切り替える。
      JS 側（renewal2017/common/attenir-jquery3x.js）の
      zoom / transform:scale / viewport 書き換えは撤去済み。
=============================*/
#teiki_cart_modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
#teiki_cart_modal .modal_overlay {
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#teiki_cart_modal .modal_content {
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  padding: 24px 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  width: 90%;
  max-width: 350px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  overflow: hidden;
}
#teiki_cart_modal .modal_message {
  color: #333333;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  padding-right: 30px;
  flex-shrink: 0;
}
#teiki_cart_modal .teiki_modal_close {
  cursor: pointer;
  display: block;
  position: absolute;
  right: 16px;
  top: 20px;
  width: 20px;
  height: 20px;
  z-index: 2;
}
#teiki_cart_modal .teiki_modal_close img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#teiki_cart_modal #cart_mordal_items_container {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
#teiki_cart_modal .cart_mordal_item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e3e3e3;
  width: 100%;
}
#teiki_cart_modal .cart_mordal_item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#teiki_cart_modal .cart_mordal_item p {
  color: #a50319;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  flex: 1;
}
#teiki_cart_modal .cart_mordal_item_img {
  flex-shrink: 0;
  width: 80px;
}
#teiki_cart_modal .cart_mordal_item_img img {
  display: block;
  width: 100%;
  height: auto;
}
#teiki_cart_modal .cart_mordal_detail {
  border: 1px solid #e3e3e3;
  border-radius: 2px;
  margin-top: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  flex-shrink: 0;
}
#teiki_cart_modal .cart_mordal_detail.is-price-hidden {
  grid-template-columns: 1fr;
}
#teiki_cart_modal .cart_mordal_detail p {
  grid-column: 1/-1;
  background-color: #f8f8f8;
  border-bottom: 1px solid #e3e3e3;
  color: #333333;
  font-size: 12px;
  font-weight: bold;
  line-height: 28px;
  text-align: center;
  width: 100%;
  margin: 0;
}
#teiki_cart_modal .cart_mordal_detail dl {
  margin: 0;
  padding: 10px 0;
  text-align: center;
}
#teiki_cart_modal .cart_mordal_detail dl dt {
  color: #666666;
  font-size: 11px;
  margin-bottom: 4px;
}
#teiki_cart_modal .cart_mordal_detail dl dd {
  color: #333333;
  font-size: 12px;
  font-weight: bold;
  margin: 0;
}
#teiki_cart_modal .cart_mordal_detail dl dd span {
  color: #a50319;
  font-size: 18px;
  margin-right: 2px;
}
#teiki_cart_modal .cart_mordal_line {
  background-color: #e3e3e3;
  height: 30px;
  width: 1px;
}
#teiki_cart_modal .cart_mordal_btn_box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  flex-shrink: 0;
}
#teiki_cart_modal .cart_mordal_btn_box a {
  align-items: center;
  border-radius: 4px;
  box-sizing: border-box;
  display: flex;
  font-size: 14px;
  font-weight: bold;
  height: 48px;
  justify-content: center;
  text-decoration: none;
  width: 100%;
}
#teiki_cart_modal .cart_mordal_btn_box a p {
  margin: 0;
}
#teiki_cart_modal .cart_mordal_btn_box a.cart_mordal_btn--order {
  background-color: #a70012;
  color: #ffffff;
}
#teiki_cart_modal .cart_mordal_btn_box a.cart_mordal_btn--order p {
  color: #ffffff;
  padding-left: 28px;
  background-image: url(/img/cart_mordal_order_btn.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 20px auto;
}
#teiki_cart_modal .cart_mordal_btn_box a.cart_mordal_btn--close {
  background-color: #f5f5f5;
  border: 1px solid #dcdcdc;
  color: #333333;
}
#teiki_cart_modal .cart_mordal_btn_box a.cart_mordal_btn--close p {
  color: #333333;
}
#teiki_cart_modal .login_status,
#teiki_cart_modal .cart_mordal_item_detail,
#teiki_cart_modal .cart_mordal_item_course,
#teiki_cart_modal .cart_mordal_item_quantity,
#teiki_cart_modal .cart_mordal_item_subtotal {
  display: none;
}
#teiki_cart_modal {
  /* -----------------------------------------
     md（PCサイズ）以上
  ----------------------------------------- */
}
@media only screen and (min-width: 768px) {
  #teiki_cart_modal .modal_content {
    padding: 28px 36px;
    width: 600px;
    max-width: none;
  }
  #teiki_cart_modal .modal_message {
    font-size: 16px;
  }
  #teiki_cart_modal .teiki_modal_close {
    right: 24px;
    top: 26px;
    width: 24px;
    height: 24px;
  }
  #teiki_cart_modal .cart_mordal_item {
    gap: 20px;
    margin-top: 24px;
  }
  #teiki_cart_modal .cart_mordal_item p {
    font-size: 20px;
    line-height: 1.5;
  }
  #teiki_cart_modal .cart_mordal_item_img {
    width: 112px;
  }
  #teiki_cart_modal .cart_mordal_detail {
    margin-top: 20px;
  }
  #teiki_cart_modal .cart_mordal_detail p {
    font-size: 12px;
    line-height: 30px;
  }
  #teiki_cart_modal .cart_mordal_detail dl {
    padding: 12px 0;
  }
  #teiki_cart_modal .cart_mordal_detail dl dt {
    font-size: 13px;
  }
  #teiki_cart_modal .cart_mordal_detail dl dd {
    font-size: 14px;
  }
  #teiki_cart_modal .cart_mordal_detail dl dd span {
    font-size: 22px;
  }
  #teiki_cart_modal .cart_mordal_line {
    height: 32px;
  }
  #teiki_cart_modal .cart_mordal_btn_box {
    flex-direction: row;
    gap: 20px;
    margin-top: 24px;
  }
  #teiki_cart_modal .cart_mordal_btn_box a {
    flex: 1;
    height: 60px;
    font-size: 16px;
    transition: background-color 0.2s, opacity 0.2s;
  }
  #teiki_cart_modal .cart_mordal_btn_box a.cart_mordal_btn--order p {
    padding-left: 34px;
    background-size: 24px auto;
  }
  #teiki_cart_modal .cart_mordal_btn_box a.cart_mordal_btn--order:hover {
    background-color: #b9172d;
  }
  #teiki_cart_modal .cart_mordal_btn_box a.cart_mordal_btn--close:hover {
    opacity: 0.8;
  }
}

/*=============================
 teiki-cart-single（商品詳細コース用）
=============================*/
#teiki_cart_s_modal {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  -webkit-overflow-scrolling: touch;
}
#teiki_cart_s_modal .modal_overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
}
#teiki_cart_s_modal .modal_content {
  width: calc(100% - 40px);
  background-color: #fff;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 80vh;
  padding: 30px clamp(16px, 4vw, 40px) 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  #teiki_cart_s_modal .modal_content {
    width: 680px;
  }
}
#teiki_cart_s_modal .modal_headerWrap {
  display: flex;
  flex-shrink: 0;
}
#teiki_cart_s_modal .modal_header {
  font-size: 16px;
  font-weight: 600;
  color: rgb(51, 51, 51);
  line-height: 1.5;
  width: 100%;
}
#teiki_cart_s_modal .modal_close span {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  cursor: pointer;
}
#teiki_cart_s_modal .modal_close span::before, #teiki_cart_s_modal .modal_close span::after {
  content: "";
  background-color: #5e5e5e;
}
#teiki_cart_s_modal .modal_close span::before {
  display: block;
  width: 2px;
  height: 100%;
  margin-left: 45%;
  transform: rotate(45deg);
}
#teiki_cart_s_modal .modal_close span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
#teiki_cart_s_modal .modal_body {
  margin-top: 18px;
  flex-grow: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
#teiki_cart_s_modal .regularDelivery-selectCourse__header {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
@media only screen and (min-width: 768px) {
  #teiki_cart_s_modal .regularDelivery-selectCourse__header {
    gap: 36px;
  }
}
#teiki_cart_s_modal .regularDelivery-selectCourse__img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
@media only screen and (min-width: 640px) {
  #teiki_cart_s_modal .regularDelivery-selectCourse__img {
    width: 224px;
    height: 224px;
  }
}
@media only screen and (min-width: 768px) {
  #teiki_cart_s_modal .regularDelivery-selectCourse__img {
    width: 112px;
    height: 112px;
  }
}
#teiki_cart_s_modal .regularDelivery-selectCourse__priceWrap {
  margin-top: 11px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}
@media only screen and (min-width: 768px) {
  #teiki_cart_s_modal .regularDelivery-selectCourse__priceWrap {
    margin-top: 13px;
  }
}
#teiki_cart_s_modal .regularDelivery-selectCourse__priceText {
  font-size: 12px;
  font-weight: 300;
  color: #333333;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  #teiki_cart_s_modal .regularDelivery-selectCourse__priceText {
    font-size: 16px;
  }
}
#teiki_cart_s_modal .regularDelivery-selectCourse__priceRegularNum {
  font-weight: 600;
}
#teiki_cart_s_modal .regularDelivery-selectCourse__priceRegularText {
  font-size: 12px;
  font-weight: 300;
  color: rgb(165, 3, 25);
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  #teiki_cart_s_modal .regularDelivery-selectCourse__priceRegularText {
    font-size: 16px;
  }
}
#teiki_cart_s_modal .regularDelivery-selectCourse__iconArrow {
  font-size: 12px;
  font-weight: 300;
  color: rgb(51, 51, 51);
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  #teiki_cart_s_modal .regularDelivery-selectCourse__iconArrow {
    font-size: 16px;
  }
}
#teiki_cart_s_modal .regularDelivery-selectCourse__title {
  font-size: 16px;
  font-weight: 600;
  color: rgb(165, 3, 25);
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  #teiki_cart_s_modal .regularDelivery-selectCourse__title {
    font-size: 20px;
  }
}
#teiki_cart_s_modal .regularDelivery-selectCourse__description {
  font-size: 13px;
  font-weight: 300;
  color: rgb(51, 51, 51);
  line-height: 1.5;
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  #teiki_cart_s_modal .regularDelivery-selectCourse__description {
    font-size: 16px;
  }
}
#teiki_cart_s_modal .regularDelivery-selectCourse__body {
  margin-top: 15px;
}
@media only screen and (min-width: 768px) {
  #teiki_cart_s_modal .regularDelivery-selectCourse__body {
    margin-top: 30px;
  }
}
#teiki_cart_s_modal .regularDelivery-selectCourse__text {
  font-size: 16px;
  font-weight: 600;
  color: rgb(51, 51, 51);
  line-height: 1.5;
}
#teiki_cart_s_modal .regularDelivery-selectCourse__list {
  margin-top: 14px;
}
#teiki_cart_s_modal .regularDelivery-selectCourse__listItem {
  border-bottom: 1px solid #e3e3e3;
  position: relative;
}
#teiki_cart_s_modal .regularDelivery-selectCourse__listItem:first-child {
  border-top: 1px solid #e3e3e3;
}
#teiki_cart_s_modal .regularDelivery-selectCourse__inputRadio {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 32px;
  height: 32px;
  border: 1px solid #cacac6;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  opacity: 1 !important;
}
@media only screen and (min-width: 768px) {
  #teiki_cart_s_modal .regularDelivery-selectCourse__inputRadio {
    width: 22px;
    height: 22px;
  }
}
#teiki_cart_s_modal .regularDelivery-selectCourse__inputRadio:checked::after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #a50319;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 768px) {
  #teiki_cart_s_modal .regularDelivery-selectCourse__inputRadio:checked::after {
    width: 12px;
    height: 12px;
  }
}
#teiki_cart_s_modal .regularDelivery-selectCourse__inputRadio:checked + .regularDelivery-selectCourse__label {
  background-color: #fffbe6;
}
#teiki_cart_s_modal .regularDelivery-selectCourse__label {
  width: 100%;
  height: 100%;
  padding: 18px 0 18px 56px;
  display: flex;
  gap: 10px;
  box-sizing: border-box;
}
@media only screen and (min-width: 768px) {
  #teiki_cart_s_modal .regularDelivery-selectCourse__label {
    padding: 15px 0 13px 42px;
  }
}
#teiki_cart_s_modal .regularDelivery-selectCourse__labelText {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
}
#teiki_cart_s_modal .regularDelivery-selectCourse__footer {
  margin: 20px auto 0;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #teiki_cart_s_modal .regularDelivery-selectCourse__footer {
    margin-top: 25px;
  }
}
#teiki_cart_s_modal .regularDelivery-selectCourse__button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  width: 100%;
  padding: 20px 0 20px;
  border-radius: 3px;
  background-color: rgb(165, 3, 25);
  font-size: 16px;
  font-weight: 600;
  color: rgb(255, 255, 255);
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  #teiki_cart_s_modal .regularDelivery-selectCourse__button {
    width: 290px;
    padding: 18px 0 19px;
  }
}
#teiki_cart_s_modal .regularDelivery-selectProduct__listItem {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #e3e3e3;
  align-items: flex-start;
}
@media only screen and (min-width: 768px) {
  #teiki_cart_s_modal .regularDelivery-selectProduct__listItem {
    gap: 15px;
    cursor: pointer;
  }
}
#teiki_cart_s_modal .regularDelivery-selectProduct__listItem:first-child {
  border-top: 1px solid #e3e3e3;
}
#teiki_cart_s_modal .regularDelivery-selectProduct__listItem:hover .regularDelivery-selectProduct__img,
#teiki_cart_s_modal .regularDelivery-selectProduct__listItem:hover .regularDelivery-selectProduct__content {
  opacity: 0.8;
}
#teiki_cart_s_modal .regularDelivery-selectProduct__listItem.is-selected {
  background-color: #fffbe6;
}
#teiki_cart_s_modal[data-origin=all] .modal_content {
  padding: 40px 54px 54px;
}
#teiki_cart_s_modal[data-origin=all] .modal_header {
  font-size: 42px;
}
#teiki_cart_s_modal[data-origin=all] .modal_close span {
  width: 57px;
  height: 57px;
}
#teiki_cart_s_modal[data-origin=all] .regularDelivery-selectCourse__title {
  font-size: 34px;
}
#teiki_cart_s_modal[data-origin=all] .regularDelivery-selectCourse__description {
  font-size: 30px;
}
#teiki_cart_s_modal[data-origin=all] .regularDelivery-selectCourse__text {
  font-size: 36px;
}
#teiki_cart_s_modal[data-origin=all] .regularDelivery-selectCourse__inputRadio {
  width: 70px;
  height: 70px;
}
#teiki_cart_s_modal[data-origin=all] .regularDelivery-selectCourse__inputRadio:checked::after {
  width: 43px;
  height: 43px;
}
#teiki_cart_s_modal[data-origin=all] .regularDelivery-selectCourse__label {
  padding: 50px 0 50px 123px;
}
#teiki_cart_s_modal[data-origin=all] .regularDelivery-selectCourse__labelText {
  font-size: 35px;
}
#teiki_cart_s_modal[data-origin=all] .regularDelivery-selectCourse__button {
  padding: 56px 0 58px;
  font-size: 44px;
}

#contents {
  position: relative;
}

.c-page-top {
  position: fixed;
  bottom: calc(20px + var(--detail-bar-offset, 0px));
  right: 20px;
  z-index: 1000;
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  background: #fff url("/img/renewal2026/common/icon-arrow-up.svg") no-repeat center center/19px;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, bottom 0.3s ease-in-out;
}
.c-page-top img {
  vertical-align: middle;
}
.c-page-top.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media (hover: hover) {
  .c-page-top:hover {
    opacity: 0.7;
  }
}

.c-footer {
  padding-top: 80px;
}
.c-footer .l-default__inner {
  padding-left: 16px;
  padding-right: 16px;
}
.c-footer-bnr {
  margin-bottom: 80px;
}
.c-footer-bnr__link {
  display: block;
  text-decoration: none;
  line-height: 0;
  transition: opacity 0.3s ease;
}
.c-footer-bnr__link:hover {
  opacity: 0.7;
}
.c-footer-bnr__link img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-footer-bnr__link--full {
  margin-bottom: 30px;
}
.c-footer-bnr__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.c-footer-support {
  padding: 36px 0px 44px;
  border-top: 1px solid #D6D6D6;
}
.c-footer-support__title {
  font-size: 2.4rem;
  color: #666666;
  margin-bottom: 30px;
}
.c-footer-support__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.c-footer-support__nav a {
  font-size: 1.4rem;
  color: var(--color-root);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.c-footer-support__nav a:hover {
  color: var(--color-highlight);
}
.c-footer-support-inquiry {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border: 1px var(--color-highlight) solid;
  background-color: var(--color-white);
}
.c-footer-support-inquiry__text {
  font-size: 1.2rem;
  color: #666666;
}
.c-footer-support-inquiry__title {
  font-size: 1.4rem;
  color: var(--color-root);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.c-footer-support-inquiry__title:hover {
  opacity: 0.7;
}
.c-footer-support-inquiry__link {
  color: #666666;
  transition: color 0.3s ease;
}
.c-footer-support-inquiry__link:hover {
  color: var(--color-highlight);
}
.c-footer-main {
  position: relative;
  background-color: var(--color-root);
  padding: 64px 0px;
}
.c-footer-logo {
  width: 160px;
  text-align: center;
  margin: 0 auto 50px;
}
.c-footer-nav {
  color: var(--color-white);
}
.c-footer-nav a {
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.c-footer-nav a:hover {
  opacity: 0.7;
}
.c-footer-nav__item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.c-footer-nav__item--guide {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.c-footer-nav__item--guide .c-footer-nav__list {
  padding-left: 0;
  font-size: 1.2rem;
}
.c-footer-nav__item--guide .c-footer-nav__list a {
  font-size: 1.2rem !important;
}
.c-footer-nav__title {
  display: block;
  font-size: 1.6rem;
  min-width: 70px;
  color: var(--color-white);
}
.c-footer-nav__title--small {
  font-size: 1.4rem;
}
.c-footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 1.4rem;
}
.c-footer-nav__list a {
  font-size: 1.4rem !important;
}
.c-footer-nav__list-guide, .c-footer-nav__list--small {
  font-size: 1.2rem;
}
.c-footer-nav__list-guide a, .c-footer-nav__list--small a {
  font-size: 1.2rem !important;
}
.c-footer-nav .only-pc {
  display: none;
}
.c-footer-contact-box {
  background-color: var(--color-white);
  padding: 4px;
  margin-bottom: 30px;
}
.c-footer-contact__wrapper {
  border: 1px solid var(--color-highlight);
  padding: 16px;
  text-align: center;
}
.c-footer-contact-title {
  font-size: 2.4rem;
  color: var(--color-highlight);
  margin-bottom: 16px;
}
.c-footer-contact-label {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.c-footer-contact-info {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
}
.c-footer-contact-phone {
  display: inline-block;
  font-size: 1.6rem;
  color: var(--color-root);
  text-decoration: none;
}
.c-footer-contact-hours {
  display: inline-block;
  font-size: 1.2rem;
  color: var(--color-root);
}
.c-footer-sns-title {
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 8px;
}
.c-footer-sns-icons {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
.c-footer-sns-icons a {
  display: inline-block;
  width: 30px;
  height: 30px;
}
.c-footer-sns-icons a.sns-x {
  width: 23px;
  height: auto;
  margin-top: 4px;
}
.c-footer-sns-icons a img {
  width: 100%;
  height: 100%;
}
.c-footer-sns-icon-text {
  text-align: center;
  font-size: 1rem;
  color: var(--color-white);
}
.c-footer-copyright {
  text-align: center;
  color: var(--color-white);
  font-size: 1.2rem;
  margin-top: 40px;
}

@media only screen and (min-width: 640px) {
  .c-footer-support-inquiry__title {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-footer-bnr__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
}
@media only screen and (min-width: 1024px) {
  .c-footer {
    padding-top: 120px;
  }
  .c-footer-bnr {
    margin-bottom: 120px;
  }
  .c-footer-support {
    padding: 40px 0px;
  }
  .c-footer-support__wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
  }
  .c-footer-support__content {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .c-footer-support__title {
    margin-bottom: 0;
  }
  .c-footer-support__nav {
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 10px;
    margin-bottom: 0;
  }
  .c-footer-support-inquiry {
    min-width: 350px;
  }
  .c-footer-top {
    display: flex;
    justify-content: space-between;
    gap: 4%;
  }
  .c-footer-logo {
    min-width: 200px;
    margin-bottom: 0px;
  }
  .c-footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3%;
    width: 100%;
  }
  .c-footer-nav {
    display: flex;
    justify-content: space-between;
    gap: 2%;
    width: 100%;
  }
  .c-footer-nav__item {
    display: block;
    width: 33.3333333333%;
    margin-bottom: 0;
  }
  .c-footer-nav__list {
    flex-direction: column;
    gap: 8px;
    padding-left: 24px;
  }
  .c-footer-nav__title {
    margin-bottom: 20px;
  }
  .c-footer-nav__title--small {
    margin-top: 40px;
  }
  .c-footer-nav .only-sp {
    display: none;
  }
  .c-footer-nav .only-pc {
    display: block;
  }
  .c-footer-contact-box {
    margin-bottom: 25px;
    min-width: 235px;
  }
  .c-footer-contact__wrapper {
    text-align: left;
    padding: 8px;
  }
  .c-footer-contact-title {
    margin-bottom: 8px;
  }
  .c-footer-contact-label {
    margin-bottom: 4px;
  }
  .c-footer-contact-info {
    justify-content: flex-start;
  }
  .c-footer-sns-title {
    font-size: 1.4rem;
    text-align: left;
  }
  .c-footer-sns-icons {
    gap: 16px;
    justify-content: left;
  }
  .c-footer-copyright {
    margin-top: 30px;
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1280px) {
  .c-footer-support__content, .c-footer-support__nav {
    gap: 35px;
  }
  .c-footer-top {
    gap: 10%;
  }
  .c-footer-nav {
    gap: 4%;
  }
}
#wrapper {
  padding-bottom: var(--detail-bar-offset, 0px);
}

.l-default__container {
  width: 100%;
  background-color: #FAFAFA;
}
.l-default__main {
  overflow: hidden;
}
.l-default__inner {
  width: 100%;
  max-width: 1232px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media only screen and (min-width: 768px) {
  .l-default__inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.l-default__inner02 {
  width: 100%;
  max-width: 1232px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 8px;
  padding-right: 8px;
}
@media only screen and (min-width: 768px) {
  .l-default__inner02 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.l-default__inner03 {
  width: 100%;
  max-width: 1232px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0px;
  padding-right: 0px;
}
@media only screen and (min-width: 768px) {
  .l-default__inner03 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.l-default__inner04 {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media only screen and (min-width: 768px) {
  .l-default__inner04 {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.l-default__inner--1200 {
  width: 100%;
  max-width: 1232px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media only screen and (min-width: 768px) {
  .l-default__inner--1200 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.l-default__inner--1200-p15 {
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.l-default__inner--1200-full {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}
.l-default__inner--1200-pc {
  width: 100%;
  max-width: 1232px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 768px) {
  .l-default__inner--1200-pc {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.l-default__inner--1264 {
  width: 100%;
  max-width: 1264px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media only screen and (min-width: 768px) {
  .l-default__inner--1264 {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.l-default__inner--1352 {
  width: 100%;
  max-width: 1384px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media only screen and (min-width: 768px) {
  .l-default__inner--1352 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.l-default__inner--1480 {
  width: 100%;
  max-width: 1512px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 8px;
  padding-right: 8px;
}
@media only screen and (min-width: 768px) {
  .l-default__inner--1480 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.l-default__inner--1060 {
  width: 100%;
  max-width: 1090px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.l-default__inner--1060-full {
  width: 100%;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}
.l-default__inner--830 {
  width: 100%;
  max-width: 862px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media only screen and (min-width: 768px) {
  .l-default__inner--830 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.l-default__inner--930 {
  width: 100%;
  max-width: 962px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media only screen and (min-width: 768px) {
  .l-default__inner--930 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.l-default__inner--970 {
  width: 100%;
  max-width: 1002px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media only screen and (min-width: 768px) {
  .l-default__inner--970 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.l-default__inner--960 {
  width: 100%;
  max-width: 992px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media only screen and (min-width: 768px) {
  .l-default__inner--960 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.l-default__inner--980 {
  width: 100%;
  max-width: 1010px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media only screen and (min-width: 768px) {
  .l-default__inner--980 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.l-default__inner--714 {
  width: 100%;
  max-width: 743px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media only screen and (min-width: 768px) {
  .l-default__inner--714 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.l-default__inner--1100 {
  width: 100%;
  max-width: 1132px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media only screen and (min-width: 768px) {
  .l-default__inner--1100 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.l-default__mobile {
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0px;
  padding-right: 0px;
}
@media only screen and (min-width: 768px) {
  .l-default__mobile {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.l-default__mobile--inner {
  width: 100%;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media only screen and (min-width: 768px) {
  .l-default__mobile--inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.l-section {
  margin-bottom: 80px;
}
.l-section__inner {
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media only screen and (min-width: 768px) {
  .l-section__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 1023px) {
  .l-section--overlap {
    margin-left: -24px;
    margin-right: -24px;
  }
}
@media only screen and (min-width: 1024px) {
  .l-section {
    margin-bottom: 64px;
  }
}
.l-section-02 {
  padding: 24px 0;
}
@media only screen and (min-width: 768px) {
  .l-section-02 {
    padding: 56px 0;
  }
}

.l-bnr--demo {
  width: 100%;
  height: 196px;
  background-color: #C4C4C4;
}
@media only screen and (min-width: 768px) {
  .l-bnr--demo {
    margin: unset;
  }
}

@media only screen and (max-width: 767px) {
  .l-expand-sp {
    margin-left: -16px;
    margin-right: -16px;
  }
}

.bg--white {
  background-color: var(--color-white);
}

body {
  background-color: var(--bg-root);
}

.flex-align-end {
  align-items: flex-end;
}

.limit-row-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.limit-row-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

@media only screen and (min-width: 1024px) {
  .left--lg {
    text-align: left !important;
  }
}
@media only screen and (min-width: 768px) {
  .center--md {
    text-align: center !important;
  }
}
.t-default {
  background-color: #fff;
  min-height: 100vh;
}/*# sourceMappingURL=style.min.css.map */
