@charset "UTF-8";



/************************************************************************
* reset
************************************************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: .2em;
  background: #fff;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #343A40;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

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

a {
  display: inline-block;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  color: inherit;
  text-decoration: none;
}

a[href='*'] {
  cursor: pointer;
}

a[href='*']:hover, a[href='*']:focus-visible {
  opacity: .7;
}

img,
svg {
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #F8F8F8;
  padding: .25em .5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

pre {
  display: block;
  background-color: #F8F8F8;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #F8F8F8;
  padding: .25em .5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
.js-fadeIn {
  visibility: hidden;
  opacity: 0;
}

.js-fadeInUp {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInLeft {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInRight {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeIn,
.fadeOut {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.fadeInLeft {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeInLeft;
}

.fadeInRight {
  -webkit-animation-name: fadeinright;
  animation-name: fadeInRight;
}

.fadeInUp {
  -webkit-animation-name: fadeinup;
  animation-name: fadeInUp;
}

.fadeIn {
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
}

.fadeOut {
  opacity: 1;
  -webkit-animation-name: fadeout;
  animation-name: fadeOut;
}

[data-target] {
  cursor: pointer;
}

html {
  font-size: 16px;
}

button {
  color: #343A40;
}

/************************************************************************
* layout
************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 18px;
  padding-bottom: 1.125rem;
  min-height: 100vh;
  min-height: 100dvh;
}

body.fadeIn {
  opacity: 0;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
a[target=_blank]:not([class]) {
  -webkit-transition: color .3s;
  transition: color .3s;
}

a[target=_blank]:not([class])::after {
  display: inline-block;
  -webkit-mask-image: url('../img/common/icon-outerLink.svg');
  mask-image: url('../img/common/icon-outerLink.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  margin-left: .7647058824em;
  background-color: currentColor;
  width: .8529411765em;
  height: .7647058824em;
  font-weight: 900;
  content: '';
}

a:not([class]) {
  color: #03c;
}

a:not([class]):visited {
  color: #639;
}

a:not([class]):hover {
  text-decoration: underline;
}

table {
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: auto;
  min-width: 100%;
  table-layout: fixed;
}

th,
td {
  border: 1px solid;
}

address {
  font-style: normal;
}

details .icon {
  aspect-ratio: 1;
  display: block;
  position: relative;
  width: 24px;
  width: 1.5rem;
}

details .icon::before, details .icon::after {
  inset: 0;
  position: absolute;
  margin: auto;
  background-color: #343A40;
  width: 13px;
  width: .8125rem;
  height: 1px;
  content: '';
}

details .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

details[open] > summary .icon::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

details.is-closing[open] > summary .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

summary {

  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {

  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

/************************************************************************
* end base
************************************************************************/

/************************************************************************
* form
************************************************************************/
form {
  margin: 0;
  padding: 0;
}

form button[type=submit],
form input[type=submit],
form input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: auto;
}

form button[type=submit]:hover, form button[type=submit]:focus-visible,
form input[type=submit]:hover,
form input[type=submit]:focus-visible,
form input[type=button]:hover,
form input[type=button]:focus-visible {
  outline: none;
}

form button[type=submit]:disabled,
form input[type=submit]:disabled,
form input[type=button]:disabled {
  cursor: default;
  border-color: transparent;
  background-color: #b2b2b2;
  pointer-events: none;
  color: #fff;
}

form button[type=submit] ::-moz-focus-inner,
form input[type=submit] ::-moz-focus-inner,
form input[type=button] ::-moz-focus-inner {
  border: none;
  padding: 0;
}

label {
  cursor: pointer;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  background-image: none;
  padding: 8px;
  padding: .5rem;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

textarea {
  resize: vertical;
}

textarea:hover, textarea:focus-visible {
  outline: none;
}

textarea:focus-visible {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

textarea ::-moz-focus-inner {
  border: none;
  padding: 0;
}

input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

input[type=radio] {
  position: absolute;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=radio] + span {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin: 0;
  padding: 0 0 0 1.875em;
  line-height: 1.5;
}

input[type=radio] + span::before {
  display: block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  border-radius: 50%;
  background: #fff;
  width: 1.625em;
  height: 1.625em;
  content: '';
}

input[type=radio] + span::after {
  display: block;
  position: absolute;
  top: .5lh;
  left: .5em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-radius: 50%;
  background: #707070;
  width: .625em;
  height: .625em;
  content: '';
}

input[type=radio]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=radio]:checked + span::after {
  opacity: 1;
}

input[type=checkbox] {
  position: absolute;
  vertical-align: middle;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  padding-left: 1.875em;
  line-height: 1.5;
}

input[type=checkbox] + span::before {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  width: 1.625em;
  height: 1.625em;
  content: '';
}

input[type=checkbox] + span::after {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-70%) translateX(.5em) rotate(45deg);
  transform: translateY(-70%) translateX(.5em) rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-right: .25em solid #343A40;
  border-bottom: .25em solid #343A40;
  width: .8125em;
  height: 1.625em;
  content: '';
}

input[type=checkbox]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=checkbox]:checked:focus-visible + span::before {
  outline: none;
}

input[type=checkbox]:checked + span::after {
  opacity: 1;
}

input[type=number], input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  margin: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  padding: .4em 2.4em .4em .8em;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
}

select::-ms-expand {
  display: none;
}

select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

select:focus-visible {
  outline: initial;
}

select:invalid {
  color: #b2b2b2;
}

select:not(:disabled) {
  cursor: pointer;
}

:root {

  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);

  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');

  /* ヘッダー高さ */
  --header-height: 75px;
}

.l-breadcrumb {
  margin-top: 10px;
  margin-top: .625rem;
}

.l-breadcrumb.l-breadcrumb--sub {
  margin-top: 7px;
  margin-top: .4375rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.l-container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 500px;
}

.l-container.l-container--sub {
  padding-inline: 15px;
  padding-inline: .9375rem;
}

.l-container.l-container--full {
  margin-left: calc((100% - 100vw) / 2);
  width: 100vw;
  max-width: none;
}

.l-cta {
  margin-top: 85px;
  margin-top: 5.3125rem;
}

.l-header {
  position: -webkit-sticky;
  position: sticky;
  top: -110%;
  left: 0;
  z-index: 20;
  -webkit-transition: top .3s ease 0s;
  transition: top .3s ease 0s;
  width: 100%;
}

.l-header.is-fixed {
  top: 0;
  -webkit-box-shadow: 0 3px 6px rgba(117, 117, 117, .16);
  box-shadow: 0 3px 6px rgba(117, 117, 117, .16);
}

.l-top-product {
  margin-top: 35px;
  margin-top: 2.1875rem;
}

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: prop;
  transition-property: prop;
  margin: 0;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  border: 1px solid transparent;
  border-radius: 10px;
  background-color: #343A40;
  background-image: none;
  padding: 1em 2em;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.c-btn:hover, .c-btn:focus-visible {
  outline: none;
  border-color: currentColor;
  background-color: #fff;
  color: #343A40;
}

/************************************************************************
* modifier
************************************************************************/
.c-btn.c-btn--shine {
  position: relative;
  overflow: hidden;
}

.c-btn.c-btn--shine::before {

  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .8)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .8) 100%);

  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  content: '';
}

.c-btn.c-btn--shine:hover, .c-btn.c-btn--shine:focus-visible {
  opacity: 1;
  border-color: #343A40;
  background-color: #343A40;
  color: #fff;
}

.c-btn.c-btn--shine:hover::before, .c-btn.c-btn--shine:focus-visible::before {
  -webkit-animation: shine .7s;
  animation: shine .7s;
}

@-webkit-keyframes shine {

  100% {
    left: 125%;
  }
}

@keyframes shine {

  100% {
    left: 125%;
  }
}

.c-btn--arrowRight {
  position: relative;
  padding-right: 2em;
  padding-left: 1.38em;
}

.c-btn--arrowRight::after {
  position: absolute;
  top: 50%;
  right: .83em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font: var(--fa-font-solid);
  font-weight: 900;
  content: '\f061';
}

.c-btn--yellow {
  background-color: yellow;
  color: #222;
}

.c-btn--yellow:hover, .c-btn--yellow:focus {
  border-color: yellow;
  color: #222;
}

/************************************************************************
* バリエーション:角丸ボタン
************************************************************************/
.c-roundedBtn {
  display: inline-block;
  -webkit-transition: .25s;
  transition: .25s;
  border: 2px solid transparent;
  border-radius: 10px;
  border-bottom-color: rgb(29.1379310345, 32.5, 35.8620689655);
  background-color: #343A40;
  padding: 15px 10px;
  width: 236px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
}

.c-roundedBtn:hover, .c-roundedBtn:focus {
  border-color: currentColor;
  background-color: #fff;
  color: #343A40;
}

/************************************************************************
* バリエーション：アイコン付き小ボタン
************************************************************************/
.c-beforeIconBtn {
  display: inline-block;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid currentColor;
  padding: .2em .3em;
  color: #343A40;
  text-decoration: none;
}

.c-beforeIconBtn:hover, .c-beforeIconBtn:focus {
  background-color: #343A40;
  color: #fff;
}

.c-beforeIconBtn::before {
  display: inline-block;
  margin-right: .5em;
  font: var(--fa-font-solid);
  font-weight: 900;
}

.c-beforeIconBtn--download::before {
  content: '\f019';
}

.c-btn1 {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border: 1px solid #494C9E;
  border-radius: 1.875rem;
  background-color: #494C9E;
  padding: 15px;
  padding: .9375rem;
  min-width: 300px;
  min-width: 18.75rem;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
}

.c-btn2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border: 2px solid #E95931;
  border-radius: .625rem;
  background-color: #fff;
  padding: 4px 11px 4px 18px;
  padding: 4px .6875rem 4px 1.125rem;
  color: #403845;
}

.c-btn2.c-btn2--blue {
  border: 2px solid #3E98CF;
}

.c-btn2__text {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
}

.c-btn2__img-wrapper {
  width: 21px;
  width: 1.3125rem;
}

.c-btn2__icon {
  aspect-ratio: 21/27;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-btn3 {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border: solid 1px #EDF4F8;
  border-radius: 50vmax;
  background: #EDF4F8;
  padding: 7px 21px;
  padding: .4375rem 1.3125rem;
  color: #00548C;
  font-size: max(10px, 16px);
  font-size: max(10px, 1rem);
  line-height: 1.5;
}

.c-btn3.current {
  background: #00548C;
  color: #EDF4F8;
}

.c-btn3.is-current {
  background: #00548C;
  color: #EDF4F8;
}

.c-outerlink {
  display: inline-grid;
  grid-template-columns: auto 1rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: .375rem;
  -moz-column-gap: .375rem;
  column-gap: .375rem;
  padding-right: 5px;
  padding-right: .3125rem;
  color: #00548C;
}

.c-outerlink::after {
  -webkit-mask-image: url('../img/common/icon_outerLink.svg');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  display: inline-block;
  mask-image: url('../img/common/icon_outerLink.svg');
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  background: #00548C;
  width: 16px;
  width: 1rem;
  height: 13px;
  height: .8125rem;
  content: '';
}

.c-outerlink--black {
  color: #343A40;
}

.c-outerlink--black::after {
  background: #343A40;
}

.c-outerlink--white {
  color: #fff;
}

.c-outerlink--white::after {
  background: #fff;
}

.c-section-title02 {
  position: relative;
  border-bottom: solid 1px #00548C;
  border-bottom: solid .0625rem #00548C;
}

.c-section-title02 span {
  display: inline-block;
  position: relative;
  bottom: -1px;
  bottom: -.0625rem;
  left: 15px;
  left: .9375rem;
  z-index: 1;
  border: 1px solid;
  border: .0625rem solid;
  border-bottom: none;
  border-radius: .625rem .625rem 0 0;
  background: #fff;
  padding: 6px 20px;
  padding: .375rem 1.25rem;
  min-width: 150px;
  min-width: 9.375rem;
  max-width: calc(100% - 1.875rem);
  color: #00548C;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4166666667;
  text-align: center;
}

.c-section-title02 span::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  bottom: -.1875rem;
  left: 0;
  z-index: 2;
  background: #fff;
  height: 5px;
  height: .3125rem;
  content: '';
}

.c-section-title03 {
  color: #00548C;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2.1428571429;
  text-decoration: underline;
}

.c-section-title04 {
  position: relative;
  padding-left: 18px;
  padding-left: 1.125rem;
  color: #11233C;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5384615385;
}

.c-section-title04 span {
  display: inline-block;
}

.c-section-title04::before {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(.5em) rotate(45deg);
  transform: translateY(.5em) rotate(45deg);
  background-color: #5CB531;
  width: 10px;
  width: .625rem;
  height: 10px;
  height: .625rem;
  content: '';
}

.c-section-title04.c-section-title04--sup::after {
  vertical-align: text-top;
  font-size: 10px;
  content: attr(data-num);
}

.c-sp-btn {
  display: block;
  border: 50vmax;
  border-radius: 50vmax;
  background: #D0E7D0;
  padding: 5px 10px;
  padding: .3125rem .625rem;
  width: 100%;
  color: #403845;
  font-size: max(10px, 14px);
  font-size: max(10px, .875rem);
  font-weight: bold;
  line-height: 1.4285714286;
  text-align: center;
}

.c-sp-btn.is-open {
  background: #9CD289;
}

.c-sp-btn--green {
  background: #5CB531;
  color: #fff;
}

.c-sp-btn--blue {
  background: #00548C;
  color: #fff;
}

.c-sp-btn--white {
  background: #fff;
}

.c-subtitle-product {
  display: grid;
  grid-template-columns: 1.875rem auto;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-column-gap: .625rem;
  -moz-column-gap: .625rem;
  column-gap: .625rem;
}

.c-subtitle-product__title {
  color: #00548C;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
}

.c-subtitle-product__img {
  aspect-ratio: 30/4;
  -webkit-transform: translateY(.6em);
  transform: translateY(.6em);
}

.c-subtitle-product__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-title-product {
  padding-top: 13px;
  padding-top: .8125rem;
}

.c-title-product__img {
  aspect-ratio: 320/80;
  margin-inline: auto;
  width: 320px;
  width: 20rem;
}

.c-title-product__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-title-product__title {
  margin-top: 12px;
  margin-top: .75rem;
  background-color: #5CB531;
  padding: 13px;
  padding: .8125rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2.5;
  text-align: center;
}

.c-totop {
  display: block;
  position: fixed;
  right: 15px;
  right: .9375rem;
  bottom: 15px;
  bottom: .9375rem;
  visibility: hidden;
  opacity: 0;
  z-index: 10;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  border: solid 1px #00548C;
  border-radius: 50%;
  background-color: #00548C;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
}

.c-totop::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -20%) rotate(-45deg);
  transform: translate(-50%, -20%) rotate(-45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 10px;
  width: .625rem;
  height: 10px;
  height: .625rem;
  content: '';
}

.c-totop.is-active {
  visibility: visible;
  opacity: 1;
}

.c-totop.is-stopped {
  position: absolute;
  bottom: auto;
}

.p-404 {
  padding: 100px 0;
  padding: 6.25rem 0;
  text-align: center;
}

.p-section__title {
  font-size: 24px;
  font-size: 1.5rem;
}

.p-404__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.p-404__foot {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-breadcrumb {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}

.p-breadcrumb__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-breadcrumb__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-breadcrumb__item::after {
  margin: 0 8px;
  margin: 0 .5rem;
  color: #403845;
  font-size: 1em;
  content: '＞';
}

.p-breadcrumb__item:first-child {
  text-transform: capitalize;
}

.p-breadcrumb__item:last-child::after {
  content: none;
}

.p-breadcrumb__link {
  color: #403845;
}

.p-breadcrumb__current,
.p-breadcrumb__text {
  color: #403845;
}

.p-cta {
  background: #EDEDED;
  padding-top: 15px;
  padding-top: .9375rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  text-align: center;
}

.l-container.p-cta__container {
  padding-right: 28px;
  padding-right: 1.75rem;
  padding-left: 28px;
  padding-left: 1.75rem;
}

.p-cta__logo {
/*   aspect-ratio: 130/61; */
  margin-inline: auto;
/*   width: 130px;
  width: 8.125rem; */
	font-size:18px;
	font-weight: bold;
}

.p-cta__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-cta__tel {
  margin-top: 8px;
  margin-top: .5rem;
  color: #11233C;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.25;
}

.p-cta__info {
  margin-inline: -5px;
  margin-top: 12px;
  margin-top: .75rem;
  color: #11233C;
  font-size: 10px;
  font-size: .625rem;
  line-height: 2;
}

.p-cta__info span {
  display: inline-block;
}

.p-cta__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #11233C;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2;
}

.p-cta__text a {
  text-decoration: underline;
}

.p-cta__text a:hover {
  opacity: .7;
}

.p-cta__text span {
  display: inline-block;
}

.p-deb {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  color: #403845;
}

.p-deb__block + .p-deb__block {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-deb__block-sub .c-subtitle-product {
  letter-spacing: -.02em;
}

.p-deb__catch {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #5CB531;
  font-size: max(10px, 14px);
  font-size: max(10px, .875rem);
  font-weight: bold;
  line-height: 1.7142857143;
}

.p-deb__catch span {
  vertical-align: super;
  font-size: 10px;
  font-size: .625rem;
}

.p-deb__catch.p-deb__catch--bottom {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-deb__catch.p-deb__catch-top {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

.p-deb__note {
  margin-top: 15px;
  margin-top: .9375rem;
  font-size: 10px;
  line-height: 1.5;
  text-align: right;
}

.p-deb__list {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-deb__item {
  list-style: none;
}

.p-deb__item + .p-deb__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-deb__sup::after {
  vertical-align: super;
  font-size: 8px;
  font-size: .5rem;
  content: attr(data-num);
}

.p-deb__graph {
  aspect-ratio: 345/224;
  margin-inline: auto;
  margin-top: 14px;
  margin-top: .875rem;
}

.p-deb__graph img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-deb__text {
  margin-top: 7px;
  margin-top: .4375rem;
  font-size: 10px;
  line-height: 1.8;
}

.p-deb__link {
  display: inline;
  color: #26A9E0;
  word-break: break-all;
}

.p-deb__link.p-deb__link--sub {
  display: inline-block;
}

.p-deb__subblock {
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-deb__flow {
  aspect-ratio: 345/642.5;
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-deb__flow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-deb__flow-text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
  line-height: 2;
}

.p-deb__flow-text em {
  font-weight: normal;
}

.p-deb__flow-note {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 10px;
  line-height: 1.8;
}

.p-deb__structure {
  position: relative;
  margin-top: 5px;
  margin-top: .3125rem;
}

.p-deb__structure-text {
  color: #D51F57;
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
  font-weight: bold;
  line-height: 1.6666666667;
}

.p-deb__structure-text.p-deb__structure-text01 {
  position: relative;
  bottom: 0;
  left: 45px;
  left: 2.8125rem;
  width: calc(100% - 2.8125rem);
}

.p-deb__structure-text.p-deb__structure-text02 {
  display: block;
  margin-top: 7px;
  margin-top: .4375rem;
}

.p-deb__structure-note {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 10px;
  line-height: 1.5;
  text-align: right;
}

.p-deb__images {
  gap: 10px;
  gap: .625rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 15px;
  margin-top: .9375rem;
  width: 95.652173913%;
}

.p-deb__complications-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.p-deb__complications-image {
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-deb__complications-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-deb__complications-text {
  margin-top: 15px;
  margin-top: .9375rem;
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
  line-height: 2;
  text-indent: -1rem;
  padding-left: 1rem;
}

.p-deb__complications-note {
  display: none;
}

.p-deb__complications-catch {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-deb__eb-image, .p-deb__rdeb-image {
  aspect-ratio: 700/353;
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-deb__eb-image img, .p-deb__rdeb-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-deb__eb-info:first-of-type, .p-deb__rdeb-info:first-of-type {
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-deb__eb-info dt, .p-deb__eb-info dd, .p-deb__rdeb-info dt, .p-deb__rdeb-info dd {
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
  line-height: 2;
}

.p-deb__eb-info dt, .p-deb__rdeb-info dt {
  font-weight: bold;
}

.p-deb__eb-info dd em, .p-deb__rdeb-info dd em {
  font-weight: normal;
}

.p-deb__eb-note, .p-deb__rdeb-note {
  margin-top: 15px;
  margin-top: .9375rem;
  font-size: 10px;
  line-height: 1.5;
  text-align: right;
}

.p-deb__rdeb-image {
  aspect-ratio: 700/353;
}

.p-deb__titleSub {
  margin-right: -5px;
  margin-right: -.3125rem;
  padding-left: 15px;
  padding-left: .9375rem;
}

.p-disclaimer-modal {
  inset: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 9999;
}

.p-disclaimer-modal.p-disclaimer-modal--outer {
  display: none;
}

.p-disclaimer-modal__overlay {
  inset: 0;
  position: absolute;
  z-index: 0;
  background-color: rgba(17, 35, 60, .8);
  width: 100%;
  height: 100%;
}

.p-disclaimer-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  border: 1px solid #707070;
  background-color: white;
  padding-top: 77px;
  padding-top: 4.8125rem;
  width: 100%;
  max-width: 500px;
  max-width: 31.25rem;
}

.p-disclaimer-modal__content.p-disclaimer-modal__content--outer {
  padding-inline: 20px;
  padding-inline: 1.25rem;
  padding-bottom: 77px;
  padding-bottom: 4.8125rem;
}

.p-disclaimer-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  color: #00548C;
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.p-disclaimer-modal__title {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #00548C;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2;
  text-align: center;
}

.p-disclaimer-modal__img {
	font-size: 1.8rem;
/*   margin-inline: auto;
  margin-top: 16px;
  margin-top: 1rem;
  width: 200px;
  width: 12.5rem; */
}

.p-disclaimer-modal__img img {
/*   aspect-ratio: 200/95;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover; */
}

.p-disclaimer-modal__tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 6px;
  margin-top: .375rem;
  color: #11233C;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.p-disclaimer-modal__wrap {
  margin-top: 12px;
  margin-top: .75rem;
  background-color: #DCDCDC;
  padding: 17px 15px;
  padding: 1.0625rem .9375rem;
}

.p-disclaimer-modal__date {
  color: #11233C;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6666666667;
  text-align: center;
}

.p-disclaimer-modal__text {
  margin-top: 16px;
  margin-top: 1rem;
  color: #11233C;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2;
  text-align: justify;
}

.p-disclaimer-modal__textLink {
  position: relative;
  padding-right: 20px;
  padding-right: 1.25rem;
  text-decoration: underline;
}

.p-disclaimer-modal__textLink::before {
  position: absolute;
  top: 6px;
  top: .375rem;
  right: 0;
  background: url(../img/common/icon_shikaku.png) no-repeat center/contain;
  width: 16px;
  width: 1rem;
  height: 13px;
  height: .8125rem;
  content: '';
}

.p-disclaimer {
  inset: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 9999;
  background-color: transparent;
  width: 100%;
}

.p-disclaimer__overlay {
  inset: 0;
  position: absolute;
  z-index: 0;
  background-color: rgba(17, 35, 60, .8);
  width: 100%;
  height: 100%;
}

.p-disclaimer__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  border: 1px solid #707070;
  border-radius: 1.875rem;
  background-color: white;
  padding: 78px 28px 24px 28px;
  padding: 4.875rem 1.75rem 1.5rem 1.75rem;
  width: 100%;
  max-width: 500px;
  max-width: 31.25rem;
  text-align: right;
}

.p-disclaimer__logo {
  margin-inline: auto;
  width: 268px;
  width: 16.75rem;
}

.p-disclaimer__logo img {
  aspect-ratio: 268/50;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-disclaimer__title {
  margin-top: 17px;
  margin-top: 1.0625rem;
  color: #403845;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
}

.p-disclaimer__text {
  margin-top: 40px;
  margin-top: 2.5rem;
  color: #403845;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2;
  text-align: center;
}

.p-disclaimer__question {
  margin-top: 30px;
  margin-top: 1.875rem;
  color: #00548C;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3333333333;
  text-align: center;
}

.p-disclaimer__actions {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  margin-top: 1.25rem;
  width: 100%;
}

.p-disclaimer__button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #707070;
  border-radius: .625rem;
  padding: 12px 12px;
  padding: .75rem .75rem;
  width: 50%;
  color: #26A9E0;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
}

.p-disclaimer__buttonIcon {
  display: inline-block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-left: 22px;
  margin-left: 1.375rem;
  background: url(../img/common/icon_arrow_blue.svg) no-repeat center/contain;
  width: 20px;
  width: 1.25rem;
  height: 12px;
  height: .75rem;
}

.p-disclaimer__link {
  display: inline-block;
  margin-top: 14px;
  margin-top: .875rem;
  color: #403845;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4285714286;
  text-align: center;
}

#disclaimer,
#p-disclaimer-modal-contact {
  display: none;
}

.no-scroll {
  height: 100vh;
  overflow: hidden;
}

.p-doctor-cta {
  background: #DCDCDC;
  padding-top: 8px;
  padding-top: .5rem;
  padding-bottom: 12px;
  padding-bottom: .75rem;
}

.p-doctor-cta__inner {
  padding-inline: 10px;
  padding-inline: .625rem;
}

.p-doctor-cta__box {
  display: block;
  border-radius: 1.25rem;
  background: #fff;
  padding: 13px;
  padding: .8125rem;
}

.p-doctor-cta__text {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: .9375rem;
  -moz-column-gap: .9375rem;
  column-gap: .9375rem;
  color: #00548C;
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
  line-height: 1.5;
  text-decoration: underline;
}

.p-doctor-cta__text::before {
  aspect-ratio: 1/1;
  display: block;
  background: url(../img/common/icon_attension.svg) no-repeat center/contain;
  width: 24px;
  width: 1.5rem;
  content: '';
}

.p-drawer {
  z-index: 40;
  margin-left: auto;
}

.p-drawer__icon {
  display: inline-block;
  position: relative;
  z-index: 41;
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  text-align: center;
}

.p-drawer__icon::after {
  display: block;
  margin-top: 4px;
  color: #403845;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  content: 'MENU';
}

.p-drawer__icon.is-opened::after {
  content: '閉じる';
}

.p-drawer__bars {
  display: inline-block;
  vertical-align: bottom;
  width: 40px;
}

.p-drawer__bar {
  display: block;
  -webkit-transition: all .3s linear 0s;
  transition: all .3s linear 0s;
  margin-top: 8px;
  background: #707070;
  width: 100%;
  height: 2px;
}

.p-drawer__bar:first-child {
  margin-top: 0;
}

.is-opened .p-drawer__bar:nth-child(2) {
  background: transparent;
}

.is-opened .p-drawer__bar:first-child {
  -webkit-transform: translateY(10px) rotate(35deg);
  transform: translateY(10px) rotate(35deg);
  width: 100%;
}

.is-opened .p-drawer__bar:last-child {
  -webkit-transform: translateY(-10px) rotate(-35deg);
  transform: translateY(-10px) rotate(-35deg);
  width: 100%;
}

.p-drawer__bg {
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

.p-drawer__bg.is-opened {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100vw;
  height: 100vh;
}

.p-drawer__content {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: var(--header-height, 75px);
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  z-index: 40;
  -webkit-transition: -webkit-transform .5s ease 0s;
  transition: -webkit-transform .5s ease 0s;
  transition: transform .5s ease 0s;
  transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;
  margin-top: 6px;
  margin-top: .375rem;
  background: #fff;
  padding-bottom: var(--header-height, 75px);
  width: 100%;
  max-height: 100dvh;
  overflow: auto;
  color: #343A40;
  text-align: center;
}

.p-drawer__content.is-opened {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.p-drawer__content--left {
  right: auto;
  left: 0;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

.p-drawer__content--top {
  top: 0;
  bottom: auto;
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%);
  width: 100%;
  max-width: 100%;
}

.p-drawer__content--cover {
  width: 100%;
  max-width: 100%;
}

.p-drawer__inner {
  margin-inline: 5px;
  margin-inline: .3125rem;
  background: #EDF4F8;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-right: 20px;
  padding-bottom: 53px;
  padding-bottom: 3.3125rem;
  padding-left: 20px;
}

.p-drawer__navList {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-drawer__navList + .p-drawer__navList {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-drawer__navItem {
  border-radius: .9375rem;
  background: #D0E7D0;
  overflow: hidden;
}

.p-drawer__navItem + .p-drawer__navItem {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-drawer__navAccordion {
  padding-inline: 30px;
  padding-inline: 1.875rem;
  position: relative;
  z-index: 1;
  border-radius: .9375rem;
}

.p-drawer__navAccordion::before, .p-drawer__navAccordion::after {
  position: absolute;
  top: 50%;
  right: 13px;
  right: .8125rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  -webkit-transition: -webkit-transform .3s ease 0s;
  transition: -webkit-transform .3s ease 0s;
  transition: transform .3s ease 0s;
  transition: transform .3s ease 0s, -webkit-transform .3s ease 0s;
  background: #5CB531;
  width: 10px;
  width: .625rem;
  height: 1px;
  content: '';
}

.p-drawer__navAccordion::after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}

.p-drawer__navAccordion.is-open::after {
  -webkit-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
}

.p-drawer__navAccordion span {
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  right: 9px;
  right: .5625rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background: #fff;
  width: 18px;
  width: 1.125rem;
}

.p-drawer__navAccordion-no::before, .p-drawer__navAccordion-no::after {
  display: none;
}

.p-drawer__navAccordion-no span {
  display: none;
}

.p-drawer__navConts {
  display: none;
  margin-top: -15px;
  margin-top: -.9375rem;
  border-radius: 0 0 .9375rem .9375rem;
  padding: 23px 13px 16px;
  padding: 1.4375rem .8125rem 1rem;
}

.p-drawer__navConts.is-open {
  display: block;
}

.p-drawer__navSection {
  display: block;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #403845;
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
}

.p-drawer__navSection::before {
  content: '・';
}

.p-drawer__navOuter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: .375rem;
  -moz-column-gap: .375rem;
  column-gap: .375rem;
  margin-top: 42px;
  margin-top: 2.625rem;
  color: #00548C;
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
  font-weight: normal;
}

.p-event-info {
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

.p-event-info__heading02 {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-event-info__heading02.p-event-info__heading02--mt80 {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.p-event-info__wrap {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-event-info__body {
  position: relative;
  margin-left: 5px;
  border-left: 5px solid #00548C;
  padding-right: 13px;
  padding-right: .8125rem;
  padding-left: 13px;
  padding-left: .8125rem;
}

.p-event-info__body::before {
  position: absolute;
  bottom: -25px;
  bottom: -1.5625rem;
  left: 0;
  border-bottom: 1px dotted #707070;
  width: 100%;
  height: 1px;
  content: '';
}

.p-event-info__body:nth-child(n+2) {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-event-info__noEvent {
  color: #403845;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2.5;
}

.p-event-info__date {
  color: #00548C;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2;
}

.p-event-info__heading03 {
  color: #403845;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.7142857143;
}

.p-event-info__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-event-info__item {
  position: relative;
  padding-left: 50px;
  padding-left: 3.125rem;
  color: #403845;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2;
}

.p-event-info__item::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #403845;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2;
  content: attr(data-label);
}

.p-event-info__link {
  margin-top: 5px;
  color: #403845;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2;
}

.p-event-info__link span {
  color: #00548C;
  text-decoration: underline;
}

.p-footer {
  position: relative;
  background-color: #11233C;
  padding-top: 24px;
  padding-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  color: #fff;
  text-align: center;
}

.p-footer::after {
  display: block;
  position: absolute;
  bottom: -10px;
  bottom: -.625rem;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#FF340D), color-stop(40%, #FF340D), color-stop(40%, #257FFF), color-stop(54.9333333333%, #257FFF), color-stop(54.9333333333%, #4BD9FF), color-stop(76%, #4BD9FF), color-stop(76%, #FFA627), to(#FFA627));
  background: linear-gradient(to right, #FF340D 0%, #FF340D 40%, #257FFF 40%, #257FFF 54.9333333333%, #4BD9FF 54.9333333333%, #4BD9FF 76%, #FFA627 76%, #FFA627 100%);
  width: 100%;
  height: 10px;
  height: .625rem;
  content: '';
}

.p-footer__inner {
  padding-inline: 10px;
  padding-inline: .625rem;
}

.p-footer__logo {
  aspect-ratio: 214/40;
  margin-inline: auto;
  width: 214px;
  width: 13.375rem;
}

.p-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer__company {
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
  line-height: 1.4166666667;
}

.p-footer__text {
  margin-top: 13px;
  margin-top: .8125rem;
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
  line-height: 1.4166666667;
}

.p-footer__list {
  display: none;
}

.p-footer__outerlinks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 13px;
  margin-top: .8125rem;
  white-space: nowrap;
}

.p-footer__outerlink a {
  font-size: 10px;
  font-size: .625rem;
}

.p-footer__outerlink a::after {
  padding-right: 0;
  width: 12px;
  width: .75rem;
}

.p-footer__outerlink + .p-footer__outerlink::before {
  color: #757F8E;
  font-size: 10px;
  font-size: .625rem;
  content: '|';
}

.p-footer__copy {
  display: block;
  margin-top: 24px;
  margin-top: 1.5rem;
  color: #fff;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

/************************************************************************
* p-fv
************************************************************************/
.p-fv {
  padding-top: 10px;
  padding-top: .625rem;
}

.l-container.p-fv__container {
  padding-inline: 3px;
}

.p-fv__imgSp-wrap {
  display: block;
}

.p-fv__imgSp {
  width: 370px;
  width: 23.125rem;
}

.p-fv__imgSp img {
  aspect-ratio: 370/153;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-fv__imgPc-wrap {
  display: none;
}

.p-fv__imgPc {
  max-width: 1280px;
  max-width: 80rem;
}

.p-fv__imgPc img {
  aspect-ratio: 1280/536;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-fv__imgPc-btn {
  position: absolute;
  right: 10.15625%;
  bottom: 42px;
  bottom: 2.625rem;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border: 1px solid #494C9E;
  border-radius: 1.875rem;
  background-color: #494C9E;
  padding: 15px;
  padding: .9375rem;
  min-width: 300px;
  min-width: 18.75rem;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
}

.p-header {
  background-color: #fff;
  padding-top: 7px;
  padding-top: .4375rem;
  padding-bottom: 7px;
  padding-bottom: .4375rem;
}

.p-header__inner {
  margin-inline: -13px;
  margin-inline: -.8125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-header__box {
  z-index: 41;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}

.p-header__logo {
  aspect-ratio: 214/40;
  width: 214px;
  width: 13.375rem;
}

.p-header__logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.p-header__logo img,
.p-header__logo svg {
  width: auto;
  height: inherit;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__text {
  margin-top: 5px;
  margin-top: .3125rem;
  color: #11233C;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.5;
}

.p-header__navTop {
  display: none;
}

.p-header__nav {
  display: none;
}

.p-header__navList {
  gap: 10px 22px;
  gap: .625rem 1.375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-header__outerlink {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 8px 16px;
  padding: .5rem 1rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4285714286;
}

.p-header__navLink {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.4444444444;
}

.p-header__navLink.current {
  color: #494C9E;
}

.p-header2-bottom {
  display: none;
}

.p-header2-bottom__item {
  position: relative;
}

.p-header2-bottom__item:last-child {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.p-header2-bottom__item:last-child .p-header2-bottom__sub {
  width: 100%;
}

.p-header2-bottom__item:hover > .p-header2-bottom__sub {
  visibility: visible;
  opacity: 1;
}

.p-header2__navTop {
  margin-right: -15px;
  margin-right: -.9375rem;
}

.p-header2__wrapper {
  display: none;
}

.p-header2__drawer {
  padding-top: 13px;
  padding-top: .8125rem;
}

.p-header2__product {
  aspect-ratio: 320/80;
  margin-inline: auto;
  width: 320px;
  width: 20rem;
}

.p-header2__drawerInner {
  margin-top: 6px;
  margin-top: .375rem;
}

.p-lead__text {
  margin-top: 17px;
  margin-top: 1.0625rem;
  color: #403845;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2;
  text-align: center;
}

.p-method {
  padding-top: 40px;
  padding-top: 2.5rem;
}

.p-method__heading02-wrap {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-method__line {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background-color: #00548C;
  height: 2px;
}

.p-method__heading02 {
  color: #00548C;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 2.1428571429;
}

.p-method__list {
  row-gap: 10px;
  row-gap: .625rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: .9375rem;
  -moz-column-gap: .9375rem;
  column-gap: .9375rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-method__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #00548C;
  border-radius: 0 1.875rem 0 1.875rem;
}

.p-method__itemLink {
  display: block;
  padding: 13px 15px 16px 15px;
  padding: .8125rem .9375rem 1rem .9375rem;
  width: 100%;
  text-align: center;
}

.p-method__img {
  margin-inline: auto;
  width: 68px;
  width: 4.25rem;
}

.p-method__img img {
  aspect-ratio: 68/68;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-method__title {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 10px;
  margin-top: .625rem;
  color: #494C9E;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2307692308;
}

.p-method__icon {
  display: inline-block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 8px;
  margin-left: .5rem;
  background: url(../img/common/icon_arrow_right.webp) no-repeat center/contain;
  width: 15px;
  width: .9375rem;
  height: 15px;
  height: .9375rem;
}

.p-modal,
.p-modal-overlay {
  display: none;
}

.p-modal.is-active,
.p-modal-overlay.is-active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
}

.p-modal-overlay {
  background: rgba(0, 0, 0, .6);
}

.p-modal-content {
  aspect-ratio: 16/9;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 100;
  background: #000;
  width: min(90vw, 160vh);
  max-width: 1000px;
  overflow: hidden;
}

.p-modal-content iframe {
  border: none;
  width: 100%;
  height: 100%;
}

.p-news {
  padding-top: 35px;
  padding-top: 2.1875rem;
}

.p-news__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-news__heading02Wrap {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  padding: .625rem;
}

.p-news__heading02Wrap::before {
  position: absolute;
  top: 0;
  left: -15px;
  left: -.9375rem;
  z-index: -1;
  border-radius: 0 1.875rem 0 1.875rem;
  background-color: rgba(166, 197, 218, .2);
  width: calc(100% + 1.875rem);
  max-width: 500px;
  max-width: 31.25rem;
  height: 100%;
  content: '';
}

.p-news__heading02 {
  color: #00548C;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2.1428571429;
  text-align: justify;
  text-transform: capitalize;
}

.p-news__line {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background-color: #403845;
  height: 1px;
}

.p-news__border {
  margin-top: 15px;
  margin-top: .9375rem;
  border-bottom: solid 1px #403845;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.p-news__item:nth-child(n+2) {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-news__itemTime {
  color: #403845;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 3;
}

.p-news__itemTitle {
  color: #403845;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6666666667;
}

.p-page-title {
  background-color: #00548C;
  padding: 13px;
  padding: .8125rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2.5;
  text-align: center;
}

.p-page-title.p-page-title--green {
  background-color: #5CB531;
}

/************************************************************************
* p-pagination
************************************************************************/
.p-pagination__inner {
  letter-spacing: 0;
  text-align: center;
}

.page-numbers {
  display: inline-block;
  border: 1px solid #343A40;
  width: 2em;
  height: 2em;
  color: #343A40;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: 0;
  line-height: 2;
}

.page-numbers + .page-numbers {
  margin-left: 10px;
  margin-left: .625rem;
}

.page-numbers.current {
  background-color: #343A40;
  color: #fff;
}

.page-numbers.dots {
  border: none;
}

.p-product {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.p-product__heading02 {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-product__heading03 {
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-product__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-product__img {
  margin-inline: auto;
  margin-top: 15px;
  margin-top: .9375rem;
  width: 150px;
  width: 9.375rem;
}

.p-product__img img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-product__list {
  gap: 15px;
  gap: .9375rem;
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-product__item {
  width: 250px;
  width: 15.625rem;
}

.p-product__heading03.p-product__heading03--mt40 {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-product__heading04 {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #403845;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2.5;
}

.p-product__pdf {
  margin-inline: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
  width: 250px;
  width: 15.625rem;
}

.p-product__pdf.p-product__pdf--mt40 {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-system {
  padding-bottom: 127px;
  padding-bottom: 7.9375rem;
  color: #403845;
}

.p-system__text {
  margin-top: 52px;
  margin-top: 3.25rem;
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
  line-height: 1.4166666667;
  text-align: center;
}

.p-tool {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.p-tool__heading03 {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-tool__list {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-tool__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 1px dotted #707070;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.p-tool__item:nth-child(n+2) {
  padding-top: 20px;
  padding-top: 1.25rem;
}

.p-tool__img {
  width: 100px;
  width: 6.25rem;
}

.p-tool__img img {
  aspect-ratio: 100/140;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-tool__body {
  margin-left: 12px;
  margin-left: .75rem;
  width: 210px;
  width: 13.125rem;
}

.p-tool__body.p-tool__body--jcsb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-tool__heading04 {
  color: #00548C;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6666666667;
}

.p-tool__text {
  margin-top: 10px;
  margin-top: .625rem;
  color: #403845;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align: justify;
}

.p-tool__link {
  color: #00548C;
  text-decoration: underline;
}

.p-tool__pdf {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.u-indent--pc {
  display: none;
}

.p-top-product {
  position: relative;
  padding-top: 25px;
  padding-top: 1.5625rem;
  padding-bottom: 25px;
  padding-bottom: 1.5625rem;
  overflow: clip;
}

.p-top-product::before {
  inset: 0;
  position: absolute;
  z-index: -1;
  border-radius: 0 1.875rem 0 1.875rem;
  background-color: #26A9E0;
  width: 100%;
  height: 100%;
  content: '';
}

.p-top-product__heading02 {
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2.1428571429;
}

.p-top-product__lead {
  margin-top: 25px;
  margin-top: 1.5625rem;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6666666667;
  text-align: justify;
}

.p-top-product__list {
  gap: 15px;
  gap: .9375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-top-product__item {
  border: 1px solid #A6C5DA;
  border-radius: 0 1.875rem 0 1.875rem;
  background-color: #fff;
  padding: 10px 10px 10px 22px;
  padding: .625rem .625rem .625rem 1.375rem;
}

.p-top-product__itemLink {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-top-product__itemTitle {
  color: #494C9E;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.125;
}

.p-top-product__itemText {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #403845;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
}

.p-top-product__itemIcon {
  display: inline-block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 5px;
  background: url(../img/common/icon_arrow_right_black.webp) no-repeat center/cover;
  width: 10px;
  width: .625rem;
  height: 10px;
  height: .625rem;
}

.p-top-product__itemImg {
  width: 68px;
  width: 4.25rem;
}

.p-top-product__itemImg img {
  aspect-ratio: 68/70;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-vyjuvek-gel {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  color: #403845;
}

.p-vyjuvek-gel__block + .p-vyjuvek-gel__block {
  margin-top: 42px;
  margin-top: 2.625rem;
}

.p-vyjuvek-gel__block.p-vyjuvek-gel__block--mt100 {
  margin-top: 40px !important;
  margin-top: 2.5rem !important;
}

.p-vyjuvek-gel__content {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-vyjuvek-gel__content.p-vyjuvek-gel__guide {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-vyjuvek-gel__content.p-vyjuvek-gel__use {
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-vyjuvek-gel__text {
  color: #403845;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2;
  text-align: justify;
}

.p-vyjuvek-gel__text em,
.p-vyjuvek-gel__description em {
  font-weight: 400;
}

.p-vyjuvek-gel__list {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-vyjuvek-gel__item + .p-vyjuvek-gel__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-vyjuvek-gel__action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-vyjuvek-gel__img {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-vyjuvek-gel__description {
  color: #403845;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2;
}

.p-vyjuvek-gel__description span {
  color: #494C9E;
}

.p-vyjuvek-gel__description:nth-child(n+2) {
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-vyjuvek-gel__video {
  margin-top: 10px;
  margin-top: .625rem;
  border-radius: 1.25rem;
  background-color: rgba(157, 190, 209, .2);
  padding: 20px 22px;
  padding: 1.25rem 1.375rem;
}

.p-vyjuvek-gel__videoEl {
  width: 100%;
  height: 100%;
}

.p-vyjuvek-gel__videoEl video, .p-vyjuvek-gel__videoEl img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-vyjuvek-gel__method-box {
  border-radius: 1.25rem;
  background: #EBECF4;
  padding: 15px 20px 27px 20px;
  padding: .9375rem 1.25rem 1.6875rem 1.25rem;
}

.p-vyjuvek-gel__method-top {
  display: grid;
  grid-template-columns: 5rem 1fr;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
}

.p-vyjuvek-gel__method-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.p-vyjuvek-gel__method-info dt {
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
  font-weight: bold;
  line-height: 2;
}

.p-vyjuvek-gel__method-item {
  padding-left: 1em;
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
  line-height: 2;
  text-indent: -1em;
}

.p-vyjuvek-gel__method-cards {
  margin-top: 17px;
  margin-top: 1.0625rem;
}

.p-vyjuvek-gel__method-card {
  display: grid;
  grid-template-columns: 5rem 1fr;
  -webkit-column-gap: .875rem;
  -moz-column-gap: .875rem;
  column-gap: .875rem;
  border: solid 1px #494C9E;
  border-radius: .9375rem;
  background: #fff;
  padding: 15px;
  padding: .9375rem;
}

.p-vyjuvek-gel__method-card + .p-vyjuvek-gel__method-card {
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-vyjuvek-gel__method-image {
  aspect-ratio: 1/1;
}

.p-vyjuvek-gel__method-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-vyjuvek-gel__method-object dt {
  color: #00548C;
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
  font-weight: bold;
  line-height: 1.6666666667;
}

.p-vyjuvek-gel__method-object dd {
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
  line-height: 2;
}

.p-vyjuvek-gel__method-note {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-top: 6px;
  margin-top: .375rem;
  padding-right: 16px;
  padding-right: 1rem;
  font-size: 10px;
  line-height: 1.8;
}

.p-vyjuvek-gel__method-note::before {
  content: '※';
}

.p-vyjuvek-gel__catch02 {
  color: #5CB531;
  font-size: max(10px, 14px);
  font-size: max(10px, .875rem);
  font-weight: bold;
  line-height: 1.7142857143;
  text-align: center;
}

.p-vyjuvek-gel__catch02-under {
  text-decoration: underline;
}

.p-vyjuvek-gel__method-catch {
  margin-top: 26px;
  margin-top: 1.625rem;
}

.p-vyjuvek-gel__use-catch {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-vyjuvek-gel__use-list, .p-vyjuvek-gel__guide-list {
  gap: 15px;
  gap: .9375rem;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-vyjuvek-gel__use-item, .p-vyjuvek-gel__guide-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border: solid 1px #5CB531;
  border-radius: 1.25rem;
  padding: 20px 47px;
  padding: 1.25rem 2.9375rem;
}

.p-vyjuvek-gel__use-head, .p-vyjuvek-gel__guide-head {
  color: #5CB531;
  font-size: max(10px, 13px);
  font-size: max(10px, .8125rem);
  font-weight: bold;
  line-height: 1.5384615385;
  text-align: center;
}

.p-vyjuvek-gel__use-head span, .p-vyjuvek-gel__guide-head span {
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
}

.p-vyjuvek-gel__use-image {
  aspect-ratio: 87/122;
  margin-inline: auto;
  margin-top: 24px;
  margin-top: 1.5rem;
  width: 87px;
  width: 5.4375rem;
}

.p-vyjuvek-gel__use-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-vyjuvek-gel__use-button {
  margin-top: 15px;
  margin-top: .9375rem;
}

.p-vyjuvek-gel__guide-item {
  gap: 4px;
  gap: .25rem;
  padding: 22px 20px;
  padding: 1.375rem 1.25rem;
  min-height: 300px;
  min-height: 18.75rem;
  position:relative;
}

.p-vyjuvek-gel__guide-item .item_sub_m {
    position:absolute;
	top:2px;
	right:5px;
	font-size:85%;
  }

.p-vyjuvek-gel__guide-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-vyjuvek-gel__guide-info {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-top: 10px;
  margin-top: .625rem;
}

.p-vyjuvek-gel__guide-info dt, .p-vyjuvek-gel__guide-info dd {
  font-size: 10px;
  line-height: 1.6;
}

.p-vyjuvek-gel__guide-image {
  aspect-ratio: 300/168.75;
  margin-top: auto;
}

.p-vyjuvek-gel__guide-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-vyjuvek-gel__guide-text {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: max(10px, 12px);
  font-size: max(10px, .75rem);
  line-height: 2;
}

.p-vyjuvek-gel__guide-button {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-vyjuvek-gel__guide-button a {
  display: inline-block;
  border: solid 5px #DCDCDC;
  border: solid .3125rem #DCDCDC;
  border-radius: 1.25rem;
  padding: 30px 45px;
  padding: 1.875rem 2.8125rem;
  color: #403845;
  font-size: max(10px, 14px);
  font-size: max(10px, .875rem);
  font-weight: bold;
  line-height: 1.4285714286;
  text-align: center;
  text-align: center;
}

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

/************************************************************************
* visible device
************************************************************************/
.u-onlyPc {
  display: none;
}

.u-onlyTab {
  display: none;
}

.u-onlySp {
  display: none;
}

/* SPで改行、PCで横並び */
.u-br--sp {
  display: block;
}

/* PCで改行、SPで横並び */
.u-br--pc {
  display: inline;
}

.u-hidden {
  display: none !important;
}

.u-overflowHidden {
  overflow: hidden !important;
}

@media screen and (min-width: 768px) {

  html {
    font-size: 1.3675213675vw;
  }

  body {
    padding-bottom: 23px;
    padding-bottom: 1.4375rem;
  }

  :root {
    --header-height: 140px;
  }

  .l-breadcrumb {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .l-breadcrumb.l-breadcrumb--sub {
    margin-top: 20px;
    margin-top: 1.25rem;
    margin-bottom: 40px;
    margin-bottom: 2.5rem;
  }

  .l-container {
    padding-right: 25px;
    padding-left: 25px;
    max-width: 1220px;
  }

  .l-container.l-container--sub {
    padding-inline: 25px;
  }

  .l-container.l-container--narrow {
    max-width: 986px;
  }

  .l-container.l-container--wide {
    max-width: 1454px;
  }

  .l-cta {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .l-top-product {
    margin-top: 115px;
    margin-top: 7.1875rem;
  }

  .c-btn1 {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .c-btn2 {
    border-radius: .9375rem;
    padding: 12px 18px;
    padding: .75rem 1.125rem;
  }

  .c-btn2__text {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .c-btn3:hover {
    background: #00548C;
    color: #EDF4F8;
  }

  .c-section-title02 span {
    border-radius: 1.25rem 1.25rem 0 0;
    padding: 14px 34px 14px;
    padding: .875rem 2.125rem .875rem;
    min-width: 282px;
    min-width: 17.625rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .c-section-title03 {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .c-section-title04 {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.45;
  }

  .c-subtitle-product {
    grid-template-columns: 3.75rem auto;
  }

  .c-subtitle-product__title {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.4285714286;
  }

  .c-subtitle-product__img {
    aspect-ratio: 60/9;
    -webkit-transform: translateY(1em);
    transform: translateY(1em);
  }

  .c-title-product {
    padding-top: 0;
  }

  .c-title-product__img {
    display: none;
  }

  .c-title-product__title {
    margin-top: 0;
    padding: 35px;
    padding: 2.1875rem;
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.4285714286;
  }

  .c-totop::before {
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    width: 20px;
    width: 1.25rem;
    height: 20px;
    height: 1.25rem;
  }

  .c-totop {
    right: 30px;
    right: 1.875rem;
    bottom: 30px;
    bottom: 1.875rem;
    width: 60px;
    width: 3.75rem;
    height: 60px;
    height: 3.75rem;
  }

  .c-totop:hover {
    opacity: .7;
  }

  .p-404 {
    padding: 150px 0;
    padding: 9.375rem 0;
  }

  .p-section__title {
    font-size: 32px;
    font-size: 2rem;
  }

  .p-404__text {
    margin-top: 30px;
    margin-top: 1.875rem;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-404__foot {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-breadcrumb {
    font-size: 14px;
    font-size: .875rem;
    line-height: 2.1428571429;
  }

  .p-breadcrumb__link:hover {
    opacity: .7;
  }

  .p-cta {
    padding-top: 30px;
    padding-top: 1.875rem;
    padding-bottom: 30px;
    padding-bottom: 1.875rem;
  }

  .p-cta__logo {
	  font-size:1.8rem;
/*     aspect-ratio: 200/95; */
/*     width: 200px; */
/*     width: 12.5rem; */
  }

  .p-cta__tel {
    margin-top: 0;
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1.45;
  }

  .p-cta__info {
    margin-top: 11px;
    margin-top: .6875rem;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5;
  }

  .p-cta__text {
    margin-inline: auto;
    margin-top: 28px;
    margin-top: 1.75rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.8125;
    text-align: left;
  }

  .p-deb {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .p-deb__block + .p-deb__block {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-deb__block + .p-deb__block#deb-burden {
    margin-top: 90px;
    margin-top: 5.625rem;
  }

  .p-deb__block-sub .c-subtitle-product {
    letter-spacing: 0;
  }

  .p-deb__content {
    padding-right: 50px;
    padding-right: 3.125rem;
    padding-left: 70px;
    padding-left: 4.375rem;
  }

  .p-deb__catch {
    margin-top: 40px;
    margin-top: 2.5rem;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.5833333333;
  }

  .p-deb__catch.p-deb__catch--bottom {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-deb__catch.p-deb__catch-top {
    margin-bottom: 40px;
    margin-bottom: 2.5rem;
  }

  .p-deb__note {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: max(10px, 14px);
    font-size: max(10px, .875rem);
    line-height: 1.4285714286;
  }

  .p-deb__list {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-deb__w-st {
        display: grid;
        grid-template-columns: 54.85% 1fr;
        -webkit-column-gap: 40px;
        -moz-column-gap: 40px;
        column-gap: 40px;
        margin-top: 40px;
        margin-left:0x;
  }

  .p-deb__item + .p-deb__item {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-deb__graph {
    aspect-ratio: 700/454;
    margin-top: 20px;
    margin-top: 1.25rem;
    width: 700px;
    width: 43.75rem;
  }

  .p-deb__text {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: max(10px, 14px);
    font-size: max(10px, .875rem);
  }

  .p-deb__link:hover {
    opacity: .7;
  }

  .p-deb__subblock {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-deb__flow {
    aspect-ratio: 895/410;
    margin-top: 20px;
    margin-top: 1.25rem;
    width: 895px;
    width: 55.9375rem;
  }

  .p-deb__flow-text {
    margin-left: 40px;
    margin-left: 2.5rem;
    font-size: 16px;
    font-size: 1rem;
    font-style: normal;
  }

  .p-deb__flow-note {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: max(10px, 14px);
    font-size: max(10px, .875rem);
    line-height: 1.4285714286;
    text-align: right;
  }

  .p-deb__structure {
    margin-top: 0;
  }

  .p-deb__structure-text {
    position: absolute;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .p-deb__structure-text.p-deb__structure-text01 {
    position: absolute;
    bottom: 15px;
    bottom: .9375rem;
    left: 0;
    width: 34.7619047619%;
  }

  .p-deb__structure-text.p-deb__structure-text02 {
    display: inline;
    right: 0;
    bottom: 0;
    margin-top: 0;
    width: 43.2380952381%;
  }

  .p-deb__structure-note {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: max(10px, 14px);
    font-size: max(10px, .875rem);
    line-height: 1.4285714286;
  }

  .p-deb__images {
    gap: 29px;
    gap: 1.8125rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-deb__complications {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-deb__complications-content {
    gap: 30px;
    gap: 1.875rem;
    display: grid;
    grid-template-columns: 31.75rem 1fr;
    margin-left: 10px;
    margin-left: .625rem;
  }

  .p-deb__complications-image {
    aspect-ratio: 508/387;
    margin-top: 0;
  }

  .p-deb__complications-text {
    margin-top: 0;
    font-size: 16px;
    font-size: 1rem;  
	text-indent: -1rem;
    padding-left: 1rem;
  }

  .p-deb__complications-note {
    display: block;
    margin-top: 20px;
    margin-top: 1.25rem;
    margin-left: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: max(10px, 14px);
    font-size: max(10px, .875rem);
    line-height: 2;
  }

  .p-deb__complications-catch {
    margin-top: 70px;
    margin-top: 4.375rem;
  }

  .p-deb__eb-image, .p-deb__rdeb-image {
    margin-inline: auto;
    margin-top: 20px;
    margin-top: 1.25rem;
    width: 700px;
    width: 43.75rem;
  }

  .p-deb__eb-info:first-of-type, .p-deb__rdeb-info:first-of-type {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-deb__eb-info dt, .p-deb__eb-info dd, .p-deb__rdeb-info dt, .p-deb__rdeb-info dd {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.75;
  }

  .p-deb__eb-note, .p-deb__rdeb-note {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: max(10px, 14px);
    font-size: max(10px, .875rem);
    line-height: 1.4285714286;
  }

  .p-deb__titleSub {
    margin-right: 0;
    padding-left: 18px;
    padding-left: 1.125rem;
  }

  .p-disclaimer-modal__content {
    padding-top: 35px;
    padding-top: 2.1875rem;
    width: 90%;
    max-width: 1100px;
    max-width: 68.75rem;
  }

  .p-disclaimer-modal__content.p-disclaimer-modal__content--outer {
    padding-bottom: 35px;
    padding-bottom: 2.1875rem;
  }

  .p-disclaimer-modal__close {
    top: 10px;
    top: .625rem;
    right: 10px;
    right: .625rem;
  }

  .p-disclaimer-modal__title {
    margin-top: 0;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.6666666667;
  }

  .p-disclaimer-modal__img {
    margin-top: 1.75rem;
	  margin-bottom:1.75rem;
	  text-align:center;
	  font-weight:bold;
  }

  .p-disclaimer-modal__tel {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: .75;
  }

  .p-disclaimer-modal__wrap {
    margin-top: 14px;
    margin-top: .875rem;
    padding: 17px 15px 26px 15px;
    padding: 1.0625rem .9375rem 1.625rem .9375rem;
  }

  .p-disclaimer-modal__text {
    margin-inline: auto;
    margin-top: 28px;
    margin-top: 1.75rem;
    width: 830px;
    width: 51.875rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 2;
  }

  .p-disclaimer-modal__textLink::before {
    top: 12px;
    top: .75rem;
  }

  .p-disclaimer__content {
    width: 90%;
    max-width: 1170px;
    max-width: 73.125rem;
  }

  .p-disclaimer__title {
    margin-top: 45px;
    margin-top: 2.8125rem;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1;
  }

  .p-disclaimer__text {
    margin-top: 30px;
    margin-top: 1.875rem;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 2;
  }

  .p-disclaimer__question {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: .8571428571;
  }

  .p-disclaimer__actions {
    gap: 40px;
    gap: 2.5rem;
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-disclaimer__button {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    cursor: pointer;
    border-radius: 1.875rem;
    padding: 22px;
    padding: 1.375rem;
    width: 25.641025641%;
  }

  .p-disclaimer__button:hover {
    opacity: .7;
  }

  .p-disclaimer__buttonIcon {
    margin-left: 14px;
    margin-left: .875rem;
    width: 20px;
    width: 1.25rem;
    height: 12px;
    height: .75rem;
  }

  .p-disclaimer__linkWrap {
    margin-inline: auto;
    padding-right: 45px;
    padding-right: 2.8125rem;
    max-width: 640px;
    max-width: 40rem;
  }

  .p-disclaimer__link {
    margin-top: 8px;
    margin-top: .5rem;
  }

  .p-doctor-cta {
    padding-block: 20px;
    padding-block: 1.25rem;
  }

  .p-doctor-cta__box {
    padding: 8px 15px;
    padding: .5rem .9375rem;
  }

  .p-doctor-cta__box:hover {
    opacity: .7;
  }

  .p-doctor-cta__text {
    margin-inline: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 16px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: initial;
  }

  .p-event-info {
    padding-bottom: 140px;
    padding-bottom: 8.75rem;
  }

  .p-event-info__heading02 {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-event-info__heading02.p-event-info__heading02--mt80 {
    margin-top: 165px;
    margin-top: 10.3125rem;
  }

  .p-event-info__wrap {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-event-info__body::before {
    bottom: -40px;
    bottom: -2.5rem;
  }

  .p-event-info__body:nth-child(n+2) {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-event-info__noEvent {
    padding-left: 20px;
    padding-left: 1.25rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.875;
  }

  .p-event-info__date {
    font-size: 16px;
    font-size: 1rem;
    line-height: 2.125;
  }

  .p-event-info__heading03 {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.8888888889;
  }

  .p-event-info__item {
    padding-left: 65px;
    padding-left: 4.0625rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 2.125;
  }

  .p-event-info__item::before {
    font-size: 16px;
    font-size: 1rem;
    line-height: 2.125;
  }

  .p-event-info__link {
    font-size: 16px;
    font-size: 1rem;
    line-height: 2.125;
  }

  .p-footer {
    padding-top: 38px;
    padding-top: 2.375rem;
    padding-bottom: 32px;
    padding-bottom: 2rem;
    text-align: left;
  }

  .p-footer__inner {
    padding-inline: 30px;
    padding-inline: 1.875rem;
  }

  .p-footer__top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-footer__info {
    width: 300px;
    width: 18.75rem;
    text-align: center;
  }
	.p-footer__info a p{
		text-decoration:none;
		color:#fff;
	}
	
  .p-footer__logo {
    aspect-ratio: 300/56;
    margin-inline: 0;
    width: 300px;
    width: 18.75rem;
  }

  .p-footer__company {
    margin-top: 11px;
    margin-top: .6875rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .p-footer__text {
    margin-top: 15px;
    margin-top: .9375rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .p-footer__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
  }

  .p-footer__link {
    -webkit-transition: all .3s;
    transition: all .3s;
    font-size: 16px;
    font-size: 1rem;
    line-height: 35px;
    line-height: 2.1875rem;
  }

  .p-footer__link:hover {
    text-decoration: underline;
  }

  .p-footer__outerlinks {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-footer__outerlink a {
    padding-inline: 10px;
    padding-inline: .625rem;
    -webkit-transition: all .3s;
    transition: all .3s;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .p-footer__outerlink a::after {
    width: 16px;
    width: 1rem;
  }

  .p-footer__outerlink a:hover {
    text-decoration: underline;
  }

  .p-footer__outerlink + .p-footer__outerlink::before {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-footer__copy {
    margin-top: 30px;
    margin-top: 1.875rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-fv {
    padding-top: 23px;
    padding-top: 1.4375rem;
  }

  .l-container.p-fv__container {
    padding-inline: 25px;
    max-width: 1330px;
    max-width: 83.125rem;
  }

  .p-fv__imgSp-wrap {
    display: none;
  }

  .p-fv__imgPc-wrap {
    display: block;
    position: relative;
  }

  .p-fv__imgPc-btn {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-header {
    padding-top: 25px;
    padding-top: 1.5625rem;
    padding-bottom: 24px;
    padding-bottom: 1.5rem;
  }

  .p-header__inner {
    -webkit-column-gap: 4.375rem;
    -moz-column-gap: 4.375rem;
    column-gap: 4.375rem;
  }

  .p-header__logo {
    aspect-ratio: 268/50;
    width: 268px;
    width: 16.75rem;
  }

  .p-header__text {
    margin-top: 15px;
    margin-top: .9375rem;
    font-size: max(10px, 14px);
    font-size: max(10px, .875rem);
    line-height: 1.4285714286;
  }

  .p-header__navTop {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-header__nav {
    display: block;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .p-header__outerlink:hover {
    opacity: .7;
  }

  .p-header__navBottom {
    gap: 10px 30px;
    gap: .625rem 1.875rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 25px;
    margin-top: 1.5625rem;
  }

  .p-header__navLink:hover {
    opacity: .7;
  }

  .p-header__drawer {
    display: none;
  }

  .p-header2-bottom {
    display: block;
    position: relative;
    border-top: solid 2px #5CB531;
  }

  .p-header2-bottom::before {
    position: absolute;
    top: -1px;
    right: 0;
    background: url(../img/common/header_bar.svg) no-repeat top right -3px/contain;
    width: min(67.1755725191%, 880px);
    width: min(67.1755725191%, 55rem);
    height: 34px;
    height: 2.125rem;
    content: '';
  }

  .p-header2-bottom__container {
    display: grid;
    grid-template-columns: auto 1fr;
    -webkit-column-gap: 5rem;
    -moz-column-gap: 5rem;
    column-gap: 5rem;
    padding-top: 15px;
    padding-top: .9375rem;
  }

  .p-header2-bottom__list {
    margin-top: 45px;
    margin-top: 2.8125rem;
  }

  .p-header2-bottom__link {
    display: grid;
    grid-template-columns: -webkit-max-content .875rem;
    grid-template-columns: max-content .875rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-header2-bottom__link::after {
    -webkit-mask-image: url('../img/common/icon_arrow_link.svg');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    aspect-ratio: 14/8;
    display: none;
    mask-image: url('../img/common/icon_arrow_link.svg');
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    margin-left: 3px;
    background: #343A40;
    content: '';
  }

  .p-header2-bottom__link:has(+ .p-header2-bottom__sub)::after {
    display: inline-block;
  }

  .p-header2-bottom__link:hover:has(+ .p-header2-bottom__sub)::after {
    background: #494C9E;
  }

  .p-header2-bottom__link:hover {
    opacity: 1;
    color: #494C9E;
  }

  .p-header2-bottom__link.is-current {
    color: #494C9E;
  }

  .p-header2-bottom__sub {
    position: absolute;
    top: 100%;
    left: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 100;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }

  .p-header2-bottom__subList {
    border-radius: 0 1.25rem 0 1.25rem;
    background: #494C9E;
    padding: 17px;
    padding: 1.0625rem;
    color: #fff;
  }

  .p-header2-bottom__subLink {
    font-size: max(10px, 14px);
    font-size: max(10px, .875rem);
    font-weight: 500;
    line-height: 2;
  }

  .p-header2-bottom__subLink::before {
    content: '・';
  }

  .p-header2-bottom__subLink:hover {
    opacity: .7;
  }

  .p-header2 {
    -webkit-box-shadow: 0 0 .3125rem #403845;
    box-shadow: 0 0 .3125rem #403845;
    padding-top: 15px;
    padding-top: .9375rem;
    padding-bottom: 15px;
    padding-bottom: .9375rem;
  }

  .p-header2__container {
    padding-inline: 20px;
    padding-inline: 1.25rem;
  }

  .p-header2__inner {
    margin-inline: 0;
    gap: 26px 16px;
    gap: 1.625rem 1rem;
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .p-header2__box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: .9375rem;
    -moz-column-gap: .9375rem;
    column-gap: .9375rem;
  }

  .p-header2__logo {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .p-header2__logo a {
    display: block;
  }

  .p-header2__text {
    margin-top: 0;
    font-size: 12px;
    font-size: .75rem;
    line-height: 17px;
    line-height: 1.0625rem;
  }

  .p-header2__navList {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: .5rem;
    -moz-column-gap: .5rem;
    column-gap: .5rem;
  }

  .p-header__navButton {
    padding: 7px 15px;
    padding: .4375rem .9375rem;
  }

  .p-header2__outerlink {
    font-size: 14px;
    font-size: .875rem;
  }

  .p-header2__bottom {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .p-lead__text {
    margin-top: 60px;
    margin-top: 3.75rem;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.6666666667;
  }

  .p-method {
    padding-top: 70px;
    padding-top: 4.375rem;
  }

  .p-method__heading02-wrap {
    gap: 34px;
    gap: 2.125rem;
  }

  .p-method__line {
    height: 4px;
  }

  .p-method__heading02 {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: .9333333333;
  }

  .p-method__list {
    gap: 40px;
    gap: 2.5rem;
    margin-inline: auto;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 60px;
    margin-top: 3.75rem;
    max-width: 1120px;
    max-width: 70rem;
  }

  .p-method__itemLink {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    padding: 20px;
    padding: 1.25rem;
  }

  .p-method__img {
    width: 106px;
    width: 6.625rem;
  }

  .p-method__img img {
    aspect-ratio: 106/108;
  }

  .p-method__title {
    margin-top: 17px;
    margin-top: 1.0625rem;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .p-method__icon {
    margin-left: 10px;
    margin-left: .625rem;
    width: 20px;
    width: 1.25rem;
    height: 20px;
    height: 1.25rem;
  }

  .p-news {
    position: relative;
    padding-top: 61px;
    padding-top: 3.8125rem;
    padding-bottom: 74px;
    padding-bottom: 4.625rem;
    overflow: clip;
  }

  .p-news__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-news__heading02Wrap {
    gap: 0;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0;
    width: 22.0512820513%;
  }

  .p-news__heading02 {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.0714285714;
  }

  .p-news__line {
    display: none;
  }

  .p-news__border {
    border-top: 1px solid #403845;
    padding-top: 55px;
    padding-top: 3.4375rem;
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
    width: 76.0683760684%;
  }

  .p-news__list {
    padding-right: 20px;
    padding-right: 1.25rem;
    padding-left: 20px;
    padding-left: 1.25rem;
  }

  .p-news__item:nth-child(n+2) {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-news__itemLink {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .p-news__itemTime {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.875;
    white-space: nowrap;
  }

  .p-news__itemTitle {
    margin-left: 50px;
    margin-left: 3.125rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.875;
  }

  .p-page-title {
    padding: 35px;
    padding: 2.1875rem;
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.4285714286;
  }

  .p-product {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .p-product__heading02 {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-product__heading03 {
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .p-product__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-product__img {
    margin-inline: 0;
    width: 330px;
    width: 20.625rem;
  }

  .p-product__list {
    gap: 40px;
    gap: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
    margin-left: 40px;
    margin-left: 2.5rem;
    width: 58.3333333333%;
  }

  .p-product__item {
    width: 330px;
    width: 20.625rem;
  }

  .p-product__heading03.p-product__heading03--mt40 {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-product__heading04 {
    margin-top: 45px;
    margin-top: 2.8125rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .p-product__heading04.p-product__heading04--mt40 {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-product__pdf {
    margin-inline: initial;
    width: 330px;
    width: 20.625rem;
  }

  .p-product__pdf.p-product__pdf--mt40 {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-system {
    padding-bottom: 395px;
    padding-bottom: 24.6875rem;
  }

  .p-system__text {
    margin-top: 57px;
    margin-top: 3.5625rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .p-tool {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .p-tool__heading03 {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-tool__list {
    gap: 40px;
    gap: 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
    margin-top: 3.125rem;
  }

  .p-tool__item {
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
  }

  .p-tool__item:nth-child(n+2) {
    padding-top: 0;
  }

  .p-tool__img {
    width: 200px;
    width: 12.5rem;
  }

  .p-tool__img img {
    aspect-ratio: 200/283;
  }

  .p-tool__body {
    margin-left: 20px;
    margin-left: 1.25rem;
    width: 300px;
    width: 18.75rem;
  }

  .p-tool__heading04 {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .p-tool__text {
    margin-top: 30px;
    margin-top: 1.875rem;
    font-size: 14px;
    font-size: .875rem;
    line-height: 2;
  }

  .p-tool__pdf {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .u-indent--pc {
    display: inline-block;
    width: 1em;
    content: '';
  }

  .p-top-product {
    padding-top: 50px;
    padding-top: 3.125rem;
    padding-bottom: 50px;
    padding-bottom: 3.125rem;
  }

  .p-top-product::before {
    left: clamp(10px, (100vw - 768px) * .047468, 40px);
    border-radius: 0 8.75rem 0 8.75rem;
  }

  .p-top-product__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-top-productWrap {
    width: 540px;
    width: 33.75rem;
  }

  .p-top-product__heading02 {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.0714285714;
  }

  .p-top-product__lead {
    margin-top: 30px;
    margin-top: 1.875rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
  }

  .p-top-product__list {
    margin-top: 0;
    margin-left: 20px;
    margin-left: 1.25rem;
    width: 560px;
    width: 35rem;
  }

  .p-top-product__item {
    padding: 20px 12px 20px 40px;
    padding: 1.25rem .75rem 1.25rem 2.5rem;
  }

  .p-top-product__itemLink {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }

  .p-top-product__itemTitle {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 2;
  }

  .p-top-product__itemText {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.875;
  }

  .p-top-product__itemIcon {
    width: 14px;
    width: .875rem;
    height: 14px;
    height: .875rem;
  }

  .p-top-product__itemImg {
    width: 107px;
    width: 6.6875rem;
  }

  .p-top-product__itemImg img {
    aspect-ratio: 105/107;
  }

  .p-vyjuvek-gel {
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
  }

  .p-vyjuvek-gel__block + .p-vyjuvek-gel__block {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-vyjuvek-gel__block.p-vyjuvek-gel__block--mt100 {
    margin-top: 100px !important;
    margin-top: 6.25rem !important;
  }

  .p-vyjuvek-gel__content {
    margin-top: 32px;
    margin-top: 2rem;
    padding-left: 70px;
    padding-left: 4.375rem;
  }

  .p-vyjuvek-gel__content.p-vyjuvek-gel__guide {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-vyjuvek-gel__content.p-vyjuvek-gel__use {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-vyjuvek-gel__text {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-vyjuvek-gel__list {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-vyjuvek-gel__item + .p-vyjuvek-gel__item {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-vyjuvek-gel__action {
    display: grid;
    grid-template-columns: 47.247706422% 1fr;
    -webkit-column-gap: .9375rem;
    -moz-column-gap: .9375rem;
    column-gap: .9375rem;
    margin-top: 40px;
    margin-top: 2.5rem;
    margin-left: 10px;
    margin-left: .625rem;
  }

  .p-vyjuvek-gel__img {
    margin-top: 0;
  }

  .p-vyjuvek-gel__description {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-vyjuvek-gel__description:nth-child(n+2) {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-vyjuvek-gel__video {
    margin-top: 22px;
    margin-top: 1.375rem;
    padding: 50px 150px;
    padding: 3.125rem 9.375rem;
  }

  .p-vyjuvek-gel__method-box {
    padding: 24px 30px 34px;
    padding: 1.5rem 1.875rem 2.125rem;
  }

  .p-vyjuvek-gel__method-top {
    grid-template-columns: 9.375rem 1fr;
    -webkit-column-gap: 1.5625rem;
    -moz-column-gap: 1.5625rem;
    column-gap: 1.5625rem;
  }

  .p-vyjuvek-gel__method-info dt {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.6;
  }

  .p-vyjuvek-gel__method-item {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-vyjuvek-gel__method-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 1.875rem;
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem;
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-vyjuvek-gel__method-card {
    grid-template-columns: 6.875rem 1fr;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    padding: 20px;
    padding: 1.25rem;
  }

  .p-vyjuvek-gel__method-card + .p-vyjuvek-gel__method-card {
    margin-top: 0;
  }

  .p-vyjuvek-gel__method-object dt {
    font-size: 16px;
    font-size: 1rem;
    line-height: 2;
  }

  .p-vyjuvek-gel__method-object dd {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-vyjuvek-gel__method-note {
    margin-top: 20px;
    margin-top: 1.25rem;
    font-size: max(10px, 14px);
    font-size: max(10px, .875rem);
    line-height: 1.7142857143;
  }

  .p-vyjuvek-gel__catch02 {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.6666666667;
  }

  .p-vyjuvek-gel__method-catch {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-vyjuvek-gel__use-catch {
    margin-top: 72px;
    margin-top: 4.5rem;
  }

  .p-vyjuvek-gel__use-list, .p-vyjuvek-gel__guide-list {
    gap: 30px;
    gap: 1.875rem;
    margin-inline: auto;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
    margin-top: 2.5rem;
    width: 94.5454545455%;
  }

  .p-vyjuvek-gel__use-item, .p-vyjuvek-gel__guide-item {
    padding: 35px 35px 26px;
    padding: 2.1875rem 2.1875rem 1.625rem;
  }

  .p-vyjuvek-gel__use-head, .p-vyjuvek-gel__guide-head {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .p-vyjuvek-gel__use-head span, .p-vyjuvek-gel__guide-head span {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-vyjuvek-gel__use-image {
    aspect-ratio: 177/244;
    margin-top: 51px;
    margin-top: 3.1875rem;
    width: 177px;
    width: 11.0625rem;
  }

  .p-vyjuvek-gel__use-button {
    margin-inline: auto;
    margin-top: 45px;
    margin-top: 2.8125rem;
    width: 100%;
    max-width: 300px;
    max-width: 18.75rem;
  }

  .p-vyjuvek-gel__guide-item {
    gap: 7px;
    gap: .4375rem;
    padding: 20px 40px 28px;
    padding: 1.25rem 2.5rem 1.75rem;
    min-height: auto;
	position:relative;
  }
	
.p-vyjuvek-gel__guide-item .item_sub_m {
    position:absolute;
	top:2px;
	right:5px;
	font-size:85%;
  }

  .p-vyjuvek-gel__guide-info {
    margin-top: 14px;
    margin-top: .875rem;
  }

  .p-vyjuvek-gel__guide-info dt, .p-vyjuvek-gel__guide-info dd {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .p-vyjuvek-gel__guide-image {
    aspect-ratio: 400/225;
    margin-inline: auto;
    width: 100%;
    max-width: 400px;
    max-width: 25rem;
  }

  .p-vyjuvek-gel__guide-text {
    margin-top: 35px;
    margin-top: 2.1875rem;
    font-size: 16px;
    font-size: 1rem;
    text-align: center;
  }

  .p-vyjuvek-gel__guide-button {
    margin-top: 15px;
    margin-top: .9375rem;
  }

  .p-vyjuvek-gel__guide-button a {
    display: block;
    padding: 30px;
    padding: 1.875rem;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .p-vyjuvek-gel__guide-button a:hover {
    opacity: .7;
  }

  .p-vyjuvek-gel__hover {
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    cursor: pointer;
  }

  .p-vyjuvek-gel__hover:hover {
    opacity: .7;
  }

  .u-br--sp {
    display: inline;
  }

  .u-br--pc {
    display: block;
  }
}

@media screen and (min-width: 768px) and (any-hover: hover) {

  .c-btn2:hover {
    opacity: .7;
  }

  .p-fv__imgPc-link:hover .p-fv__imgPc-btn {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }

  .p-method__itemLink:hover {
    opacity: .7;
  }

  .p-news__itemLink:hover .p-news__itemTitle {
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    text-decoration: underline;
  }

  .p-top-product__itemLink:hover {
    opacity: .7;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

  .u-onlyTab {
    display: block;
  }
}

@media screen and (min-width: 768px) and (max-width: 1439px) {

  .p-news__heading02Wrap::before {
    top: -31px;
    top: -1.9375rem;
    right: 20px;
    right: 1.25rem;
    left: auto;
    border-radius: 0 8.75rem 0 10rem;
    width: 29.8611111111vw;
    height: 430px;
    height: 26.875rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {

  .u-hidden--tab {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {

  .u-onlyPc {
    display: block;
  }

  .u-hidden--pc {
    display: none !important;
  }
}

@media (min-width: 1170px) {

  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 1440px) {

  .p-news__heading02Wrap::before {
    aspect-ratio: 1/1;
    top: -31px;
    top: -1.9375rem;
    right: 0;
    left: auto;
    border-radius: 0 8.75rem 0 8.75rem;
    width: 430px;
    width: 26.875rem;
    max-width: none;
    max-width: none;
    height: 430px;
    height: 26.875rem;
  }
}

@media screen and (max-width: 767px) {

  .u-onlySp {
    display: block;
  }

  .u-hidden--sp {
    display: none !important;
  }
}

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
  }
}

@media (any-hover: hover) {

  .c-btn1:hover {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
/*# sourceMappingURL=map/style.css.map */