@charset "UTF-8";
/* variable
----------------------------------------------------------------- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

body {
  overflow-x: hidden;
  color: #000;
  font-size: 16px;
  font-family: "NotoSansJP", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0.05em;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

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 {
  margin: 0;
  padding: 0;
  border: 0;
}

a {
  outline: none;
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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

code,
kbd,
pre,
samp {
  font-size: inherit;
  font-family: monospace, sans-serif;
}

ul,
ol {
  list-style: none;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

th,
td {
  padding: 4px 6px;
  vertical-align: top;
  text-align: left;
}

blockquote,
q {
  quotes: none;
}

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

form {
  margin: 0;
  padding: 0;
}

form button {
  display: inline-block;
  margin: 0;
  padding: 0.6em 2em;
  width: auto;
  border: none;
  border-radius: 0;
  background-color: #2281b8;
  background-image: none;
  -webkit-box-shadow: 0.0625em 0.0625em 0.1875em 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0.0625em 0.0625em 0.1875em 0 rgba(0, 0, 0, 0.16);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-appearance: none;
}

form button:hover,
form button:focus {
  outline: none;
}

form button:hover {
  opacity: 0.6;
}

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

input,
textarea {
  padding: 20px 24px;
  width: 100%;
  border: 1px solid #e2e2e2;
  border-radius: 0;
  background-image: none;
  font-size: 1em;
  font-family: inherit;
  -webkit-appearance: none;
}

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

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

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

input::-webkit-input-placeholder {
  color: #e2e2e2;
}

input::-moz-placeholder {
  color: #e2e2e2;
}

input::-ms-input-placeholder {
  color: #e2e2e2;
}

input:-ms-input-placeholder {
  color: #e2e2e2;
}

input::placeholder {
  color: #e2e2e2;
}

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

input[type=submit],
input[type=button] {
  display: inline-block;
  margin: 0;
  padding: 0.6em 2em;
  width: auto;
  border: none;
  border-radius: 0;
  background-color: #2281b8;
  background-image: none;
  -webkit-box-shadow: 0.0625em 0.0625em 0.1875em 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0.0625em 0.0625em 0.1875em 0 rgba(0, 0, 0, 0.16);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-appearance: none;
}

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

input[type=submit]:hover,
input[type=button]:hover {
  opacity: 0.6;
}

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

input[type=radio] {
  display: none;
}

input[type=radio] + span {
  position: relative;
  display: inline-block;
  margin: 0 16px 0 0;
  padding: 0 0 0 30px;
  cursor: pointer;
}

input[type=radio] + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 26px;
  height: 26px;
  border: 1px solid #e2e2e2;
  border-radius: 50%;
  background: #fff;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

input[type=radio] + span::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

input[type=radio]:checked + span::after {
  position: absolute;
  top: 50%;
  left: 8px;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e2e2;
  content: "";
  opacity: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox] + span {
  position: relative;
  display: inline-block;
  margin: 0 16px 0 0;
  padding: 0 0 0 30px;
  cursor: pointer;
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}

input[type=checkbox] + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #e2e2e2;
  border-radius: 2px;
  background: #fff;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

input[type=checkbox] + span::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

input[type=checkbox]:checked + span::after {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  margin-top: -0.2em;
  width: 26px;
  height: 15.6px;
  border-bottom: 4px solid #ccc;
  border-left: 4px solid #ccc;
  content: "";
  opacity: 1;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

select {
  padding: 0.4em 2.4em 0.4em 0.8em;
  border: 1px solid #e2e2e2;
  border-radius: 0;
  background-image: url(../img/select-arrow.svg);
  background-position: right 6px center;
  background-size: 24px;
  background-repeat: no-repeat;
  color: inherit;
  font-size: 1em;
  font-family: inherit;
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
}

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

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

@font-face {
  font-family: "NotoSansJP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansJP-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "NotoSansJP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSansJP-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Roboto-Bold.ttf") format("truetype");
}
.p-editorContents {
  margin-top: 100px;
}
.p-editorContents h2.wp-block-heading {
  font-size: 1.5rem;
  font-weight: 700;
}
.p-editorContents h3.wp-block-heading {
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
}
.p-editorContents * + * {
  margin-top: 16px;
}
.p-editorContents * + h2.wp-block-heading {
  margin-top: 96px;
}
.p-editorContents * + h3.wp-block-heading {
  margin-top: 56px;
}
.p-editorContents * + p {
  margin-top: 16px;
}
.p-editorContents * + .wp-block-image {
  margin-top: 32px;
}
.p-editorContents ul,
.p-editorContents ol {
  padding-left: 32px;
}
.p-editorContents * + ul,
.p-editorContents * + ol {
  margin-top: 32px;
}
.p-editorContents ul {
  list-style: disc;
}
.p-editorContents ol {
  list-style: trad-chinese-informal;
}
.p-editorContents li {
  position: relative;
}
.p-editorContents * + li {
  margin-top: 16px;
}
.p-editorContents * + .wp-block-table {
  margin-top: 16px;
}
.p-editorContents figcaption {
  font-size: 0.75rem;
  color: #787878;
  margin-top: 16px;
}
.p-editorContents .wp-block-table table th {
  border: unset;
  padding: 24px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 21%;
}
.p-editorContents .wp-block-table table td {
  border: unset;
  padding: 24px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 79%;
}

.attachment-post-thumbnail {
  width: 100%;
  aspect-ratio: 58/27;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
  border-radius: 16px;
  margin-top: 32px;
}

.c-pagePostTitle {
  font-size: 2rem;
  font-weight: 700;
}

.wp-block-gallery {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
}
@media screen and (max-width: 600px) {
  .wp-block-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.wp-block-gallery {
  width: 100% !important;
}
.wp-block-gallery .wp-block-image {
  aspect-ratio: 1/1;
  width: 100% !important;
}

.l-inner--1422 {
  width: 1422px;
  max-width: 100%;
}

.l-inner--1010 {
  width: 1010px;
  max-width: 100%;
}

.l-inner--1000 {
  width: 1000px;
  max-width: 100%;
}

.l-inner--900 {
  width: 900px;
  max-width: 100%;
}

.l-inner--920 {
  width: 920px;
  max-width: 100%;
}

.l-inner--870 {
  width: 870px;
  max-width: 100%;
}

.l-inner--670 {
  width: 670px;
  max-width: 100%;
}

.l-inner {
  margin: 0 auto;
}
@media screen and (max-width: 1422px) {
  .l-inner {
    width: 89.3%;
  }
}

.c-outer {
  overflow: hidden;
}

.p-header {
  padding: 1.5625rem 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 9999;
}
@media screen and (max-width: 600px) {
  .p-header {
    padding: 1.125rem;
  }
}

@media screen and (max-width: 600px) {
  .p-siteTitle img {
    width: 7.8125rem;
  }
}

.js-header.change-color {
  background-color: #fff;
}

.p-header--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.625rem;
}

.c-contactBtn {
  position: relative;
  display: block;
  color: #fff;
  background-color: #006cb8;
  border-radius: 0.2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-contactBtn a {
  display: block;
  padding: 0.31rem 0.9rem;
  text-align: center;
}
@media (hover: hover) {
  .c-contactBtn a:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.6;
  }
}

.l-footer {
  padding: 4.1875rem 0 3.8125rem;
}
@media screen and (max-width: 600px) {
  .l-footer {
    padding: 2.5rem 0 5rem;
  }
}

.p-footer {
  background-image: -webkit-gradient(linear, left top, right top, from(#00aae9), to(#004d9a));
  background-image: linear-gradient(to right, #00aae9, #004d9a);
  position: relative;
}

.p-footer__btn {
  border-radius: 0.3125rem;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.125rem;
  padding: 1.75rem 3.125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #004372;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .p-footer__btn {
    font-size: 0.875rem;
    padding: 0.875rem 1rem;
  }
}
.p-footer__btn img {
  width: 1.0625rem;
  height: 1.0625rem;
}
@media (hover: hover) {
  .p-footer__btn:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.6;
  }
}

.p-copyright {
  text-align: center;
  color: #fff;
  font-size: 0.75rem;
  margin-top: 2.375rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 600px) {
  .p-copyright {
    margin-top: 1.0625rem;
  }
}

.p-iconTop {
  display: none;
  position: fixed;
  background: #004e9b;
  border-radius: 50%;
  z-index: 9999;
  bottom: 2.5rem;
  right: 2.5rem;
}
@media screen and (max-width: 600px) {
  .p-iconTop {
    bottom: 1.25rem;
    right: 1.25rem;
  }
}
@media screen and (max-width: 600px) {
  .p-iconTop img {
    width: 2.0625rem;
    height: 2.0625rem;
  }
}
@media (hover: hover) {
  .p-iconTop a:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.6;
  }
}

.l-footer__fixed {
  display: none;
  position: fixed;
  z-index: 5;
  width: 100%;
  bottom: 0;
  left: 0;
}

.l-footer__fixed .l-header__menuItem,
.l-footer__fixed .l-header__menuItem a:hover {
  padding-left: 0;
  background-color: #006cb8;
  color: #fff;
}

.l-footer__fixed .l-header__menuItem a:hover {
  opacity: 0.5;
}

.l-footer__fixed .l-header__menuItem {
  font-size: 1rem;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  letter-spacing: 0.8px;
  place-content: center;
  padding-left: 0;
}

.l-footer__fixed .l-header__menuItem a {
  display: block;
  width: 100%;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-footer__fixed .l-header__menuItem a:before {
  content: unset;
}

@media screen and (max-width: 600px) {
  .l-footer__fixed {
    display: block;
  }
}
.c-box {
  padding: 3.8125rem 7.8%;
  background: #fff;
  border-radius: 1.25rem;
}
@media screen and (max-width: 600px) {
  .c-box {
    border-radius: 0.625rem;
    padding: 1.5rem 0.875rem 2.5rem;
  }
}

.c-title1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #004372;
}
@media screen and (max-width: 600px) {
  .c-title1 {
    font-size: 1.25rem;
  }
}

.c-title2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0.40625rem;
  background: #004372;
}
@media screen and (max-width: 600px) {
  .c-title2 {
    font-size: 1.25rem;
    padding: 0.34375rem 0.9375rem;
    text-align: left;
  }
}

.c-title3 {
  color: #006cb8;
  font-size: 1.5rem;
  font-weight: 700;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #006cb8;
}
@media screen and (max-width: 600px) {
  .c-title3 {
    font-size: 1.25rem;
    padding-bottom: 0.25rem;
  }
}

.c-title4 {
  color: #004372;
  font-size: 1.25rem;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.c-title4::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5.625rem;
  -webkit-transform: translatY(-50%);
          transform: translatY(-50%);
  background: #006cb8;
  width: 4.4375rem;
  height: 0.0625rem;
}
@media screen and (max-width: 600px) {
  .c-title4::before {
    width: 1.25rem;
    left: -1.875rem;
  }
}
.c-title4::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5.625rem;
  -webkit-transform: translatY(-50%);
          transform: translatY(-50%);
  background: #006cb8;
  width: 4.4375rem;
  height: 0.0625rem;
}
@media screen and (max-width: 600px) {
  .c-title4::after {
    width: 1.25rem;
    right: -1.875rem;
  }
}
@media screen and (max-width: 600px) {
  .c-title4 {
    font-size: 1rem;
  }
}

.p-drawer__logoLink {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-hamburger-btn {
  width: 33px;
  height: 20px;
  cursor: pointer;
  z-index: 9999;
  position: relative;
  top: 16%;
}
@media screen and (max-width: 991px) {
  .c-hamburger-btn {
    display: block;
  }
}
.c-hamburger-btn.active {
  width: 60px;
  height: 60px;
}
.c-hamburger-btn.active span {
  background: #000;
}
.c-hamburger-btn.active span:nth-child(3) {
  display: none;
}
.c-hamburger-btn span {
  display: inline-block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: absolute;
  height: 2px;
  background-color: #006cb8;
}
.c-hamburger-btn span:nth-child(1) {
  top: 0;
  right: 0;
  width: 33px;
}
.c-hamburger-btn span:nth-child(2) {
  top: 10px;
  right: 0;
  left: unset;
  width: 33px;
}
.c-hamburger-btn span:nth-child(3) {
  top: 20px;
  right: 0;
  left: unset;
  width: 33px;
}
.c-hamburger-btn.active span:nth-child(1) {
  top: 0;
  right: 0;
  -webkit-transform: translateY(6px) rotate(-30deg);
          transform: translateY(6px) rotate(-30deg);
  width: 2.8125rem;
}
.c-hamburger-btn.active span:nth-child(2) {
  top: 0;
  right: 0;
  -webkit-transform: translateY(6px) rotate(30deg);
          transform: translateY(6px) rotate(30deg);
  width: 2.8125rem;
}
.c-hamburger-btn.active span:nth-child(3) {
  display: none;
}

.c-hamburger-content {
  position: fixed;
  top: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  width: 45.5rem;
  max-width: 100%;
  height: 100%;
  background: #f8f8f8;
  overflow-y: scroll;
  z-index: 9998;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 5rem 1.875rem 1.6875rem 3.4375rem;
}
.c-hamburger-content.active {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 600px) {
  .c-hamburger-content {
    padding: 3.75rem 1rem 1.6875rem;
  }
}

.c-hamburger__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding: 0 2.75rem 0.5625rem 0;
  border-bottom: 1px solid #004372;
  position: relative;
}
.c-hamburger__link::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1.09375rem;
  background: url("../img/arrow-right01.svg") center/cover no-repeat;
  width: 0.625rem;
  height: 0.8125rem;
}
@media (hover: hover) {
  .c-hamburger__link:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.6;
  }
}

.c-hamburger__menuNumber {
  font-size: 2.5rem;
  font-weight: 700;
  color: #004372;
}
@media screen and (max-width: 600px) {
  .c-hamburger__menuNumber {
    font-size: 1.5rem;
  }
}

.c-hamburger__menuText {
  color: #004372;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .c-hamburger__menuText {
    font-size: 0.875rem;
  }
}

.c-hamburger__tableContentTitle {
  padding: 0.625rem 0.8125rem 0.875rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#82daf9), to(#99e6e1));
  background-image: linear-gradient(to right, #82daf9, #99e6e1);
  font-size: 1.5rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  line-height: 1;
  color: #004372;
  width: 38.25rem;
  max-width: 100%;
  gap: 1rem;
}
.c-hamburger__tableContentTitle span {
  font-size: 0.8125rem;
}
@media screen and (max-width: 600px) {
  .c-hamburger__tableContentTitle span {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 600px) {
  .c-hamburger__tableContentTitle {
    font-size: 1rem;
  }
}

.c-hamburger__list {
  width: 37.1875rem;
  max-width: 100%;
}

.c-hamburger__menu {
  margin-top: 0.9375rem;
  padding: 0 0.5625rem;
}
.c-hamburger__menu:not(:first-of-type) {
  margin-top: 2.25rem;
}

.c-hamburger__bottom {
  margin-top: 4.875rem;
}
@media screen and (max-width: 600px) {
  .c-hamburger__bottom {
    margin-top: 2.5rem;
  }
}

.c-hamburger__bottomBtn {
  border: 1px solid #004372;
  background: #fff;
  border-radius: 0.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15rem;
  height: 4rem;
  font-weight: 700;
  color: #004372;
}
.c-hamburger__bottomBtn img {
  width: 0.625rem;
  height: 0.625rem;
}
@media (hover: hover) {
  .c-hamburger__bottomBtn:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.6;
  }
}

.c-hamburger__policy {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  text-decoration: underline;
  display: block;
  color: #004372;
}
@media (hover: hover) {
  .c-hamburger__policy:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.6;
  }
}

.c-hamburger__copyright {
  color: #004372;
  font-size: 0.75rem;
  margin-top: 0.875rem;
}

.c-hamburger__ctaBtns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 600px) {
  .c-hamburger__ctaBtns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.c-hamburger__ctaBtnLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #004372;
  border-radius: 0.3125rem;
  padding: 1rem 0.75rem;
  width: 14.25rem;
  max-width: 100%;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .c-hamburger__ctaBtnLink {
    gap: 1rem;
    height: 3.75rem;
  }
}
@media (hover: hover) {
  .c-hamburger__ctaBtnLink:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.6;
  }
}

.c-hamburger__ctaBtnLinkDocument {
  gap: 1rem;
}

.c-hamburger__ctaBtnLinkContact {
  gap: 0.5rem;
}

.c-hamburger__ctaTitle {
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .c-hamburger__ctaTitle {
    font-size: 1rem;
  }
}

@media screen and (max-width: 600px) {
  .c-hamburger__ctaDocument__icon {
    width: 1.8125rem;
    height: 2.0625rem;
  }
}

@media screen and (max-width: 600px) {
  .c-hamburger__ctaContact__icon {
    width: 1.875rem;
    height: 1.875rem;
  }
}

.c-hamburger__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .c-hamburger__tel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 1.5rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.c-hamburger__telBtn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-hamburger__telBtnLink {
  color: #fff;
  display: block;
  padding: 0.8125rem 0.9375rem;
  background: #004372;
  border-radius: 0.3125rem;
  width: 20rem;
  max-width: 100%;
}
@media (hover: hover) {
  .c-hamburger__telBtnLink:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 600px) {
  .c-hamburger__telBtnLink {
    width: 100%;
  }
}

.c-hamburger__telBtnLead {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
}

.c-hamburger__telBtnNumber {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto";
  font-weight: 700;
  font-size: 1.125rem;
}

.c-hamburger__telText {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  color: #004372;
}
.c-hamburger__telText a {
  text-decoration: underline;
}
@media (hover: hover) {
  .c-hamburger__telText a:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}

.c-annotation, .c-annotation--right, .c-annotation--small {
  margin-top: 1.5625rem;
  font-size: 0.8125rem;
}
@media screen and (max-width: 600px) {
  .c-annotation, .c-annotation--right, .c-annotation--small {
    font-size: 0.625rem;
  }
}
.c-annotation--small {
  font-size: 0.6875rem;
}
.c-annotation--right {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .c-annotation--mobile-left {
    text-align: left;
  }
}

.c-grid, .c-grid--five-column, .c-grid--four-column, .c-grid--three-column, .c-grid--two-column {
  display: grid;
}
.c-grid--two-column {
  grid-template-columns: repeat(2, 1fr);
  gap: 3.1875rem;
}
@media screen and (max-width: 991px) {
  .c-grid--two-column {
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .c-grid--two-column {
    grid-template-columns: 1fr;
  }
}
.c-grid--three-column {
  grid-template-columns: repeat(3, 1fr);
  gap: 3.1875rem;
}
@media screen and (max-width: 991px) {
  .c-grid--three-column {
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .c-grid--three-column {
    grid-template-columns: 1fr;
  }
}
.c-grid--four-column {
  grid-template-columns: repeat(4, 1fr);
  gap: 3.1875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 991px) {
  .c-grid--four-column {
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .c-grid--four-column {
    grid-template-columns: 1fr;
  }
}
.c-grid--five-column {
  grid-template-columns: repeat(5, 1fr);
  gap: 1.875rem;
}
@media screen and (max-width: 1422px) {
  .c-grid--five-column {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 991px) {
  .c-grid--five-column {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .c-grid--five-column {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.c-grid__item img {
  width: 100%;
}
.c-grid__item--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-grid__item--center img {
  margin: 0 auto;
}

.c-card-common {
  background: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
  padding: 1rem;
}
.c-card-common__title, .c-card-common__title--green, .c-card-common__title--blue, .c-card-common__title--yellow {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4642857143;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .c-card-common__title, .c-card-common__title--green, .c-card-common__title--blue, .c-card-common__title--yellow {
    font-size: 1.375rem;
  }
}
.c-card-common__title--yellow {
  color: #e39f14;
}
.c-card-common__title--blue {
  color: #3f6faa;
}
.c-card-common__title--green {
  color: #8cb807;
}
.c-card-common__image-wrap {
  margin-top: 1rem;
}
.c-card-common__image {
  margin-inline: auto;
}

.c-card-circle {
  background: #fff;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1607843137);
  padding: 1rem;
  border-radius: 50%;
  width: 12.5rem;
  height: 12.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 1422px) {
  .c-card-circle {
    width: 11.25rem;
    height: 11.25rem;
  }
}
@media screen and (max-width: 768px) {
  .c-card-circle {
    width: 10.625rem;
    height: 10.625rem;
  }
}
.c-card-circle__text {
  font-size: 1rem;
  line-height: 1.25;
  text-align: center;
  margin-top: 0.5625rem;
}
@media screen and (max-width: 1422px) {
  .c-card-circle__text {
    font-size: 0.75rem;
  }
}
.c-card-circle__image {
  margin-inline: auto;
  width: 5.5rem;
}

.c-lead-text {
  margin-top: 2.5rem;
  letter-spacing: 0.1em;
  line-height: 1.875;
}
@media screen and (max-width: 600px) {
  .c-lead-text {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}
.c-lead-text--center {
  text-align: center;
}
@media screen and (max-width: 600px) {
  .c-lead-text--center {
    text-align: left;
  }
}

.c-product-list, .c-product-list--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.125rem;
}
.c-product-list--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-product-list__box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
}
.c-product-list__title {
  font-size: 0.8125rem;
  font-weight: 700;
}
.c-product-list__image, .c-product-list__image--center {
  min-width: 4.8125rem;
  height: 5.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.5rem;
}
.c-product-list__image--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1rem;
}
.c-product-list__link {
  display: block;
  text-align: center;
  font-size: 0.8125rem;
  text-decoration: underline;
}
@media (hover: hover) {
  .c-product-list__link:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.6;
  }
}

.c-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.125rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .c-flow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-flow__item, .c-flow__item--annotation02, .c-flow__item--annotation01 {
  background: #fff;
  border: 1px solid #231f20;
  padding: 0.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4.0625rem;
  max-width: 100%;
  min-height: 15.6875rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-flow__item, .c-flow__item--annotation02, .c-flow__item--annotation01 {
    width: 100%;
    min-height: 4.125rem;
    padding: 0.625rem 0.3125rem;
  }
}
.c-flow__item--annotation01::before {
  content: "注1";
  position: absolute;
  left: 0.625rem;
  bottom: 0.625rem;
  font-size: 0.625rem;
  width: 0.625rem;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-flow__item--annotation01::before {
    width: 1.25rem;
  }
}
.c-flow__item--annotation02::before {
  content: "注2";
  position: absolute;
  left: 0.625rem;
  bottom: 0.625rem;
  font-size: 0.625rem;
  width: 0.625rem;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-flow__item--annotation02::before {
    width: 1.25rem;
  }
}
.c-flow__item::after, .c-flow__item--annotation01::after, .c-flow__item--annotation02::after {
  position: absolute;
  content: "";
  background: url("../img/icon_arrow_right_aqua.svg") center/cover no-repeat;
  width: 1.625rem;
  height: 4.6875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -3.125rem;
}
@media screen and (max-width: 768px) {
  .c-flow__item::after, .c-flow__item--annotation01::after, .c-flow__item--annotation02::after {
    left: 45%;
    top: unset;
    right: unset;
    -webkit-transform: rotate(90deg) translateX(-50%);
            transform: rotate(90deg) translateX(-50%);
    bottom: -5rem;
  }
}
.c-flow__item:last-child::after, .c-flow__item--annotation01:last-child::after, .c-flow__item--annotation02:last-child::after {
  content: none;
}
.c-flow__text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-flow__text {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}

.c-flex-box, .c-flex-box--mobile-left, .c-flex-box--end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.125rem;
}
.c-flex-box--end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media screen and (max-width: 768px) {
  .c-flex-box--mobile-left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.c-box-icon-text, .c-box-icon-text--no-box {
  letter-spacing: 0.1em;
  line-height: 1.875;
  position: relative;
  padding-left: 1.25rem;
}
@media screen and (max-width: 600px) {
  .c-box-icon-text, .c-box-icon-text--no-box {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}
.c-box-icon-text::before, .c-box-icon-text--no-box::before {
  content: "◼︎";
  position: absolute;
  top: 0;
  left: 0;
}
.c-box-icon-text--no-box {
  display: grid;
  grid-template-columns: -webkit-min-content 1fr;
  grid-template-columns: min-content 1fr;
}
.c-box-icon-text--no-box::before {
  content: none;
}

html {
  scroll-behavior: smooth;
}

.p-mv {
  padding-top: 0.3125rem;
  height: 37.5rem;
  background: url("../img/mv.webp") center bottom/cover no-repeat;
}
@media screen and (max-width: 600px) {
  .p-mv {
    background: url("../img/mv-sp.webp") top center/120% no-repeat;
    height: auto;
  }
}
@media screen and (max-width: 600px) {
  .p-mv {
    padding-top: 1.6875rem;
  }
}

.p-mv__mainCopy {
  font-size: 2.9375rem;
  color: #004372;
  font-weight: 700;
}
.p-mv__mainCopy span {
  color: #006cb8;
}
@media screen and (max-width: 768px) {
  .p-mv__mainCopy {
    font-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .p-mv__mainCopy {
    font-size: 1.125rem;
    text-align: center;
  }
}

.p-mv__contents {
  width: 41.125rem;
  max-width: 100%;
  margin-top: 6.1875rem;
  position: relative;
  z-index: 50;
}
.p-mv__contents::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 13px;
  opacity: 0.87;
  -webkit-filter: blur(37px);
  filter: blur(37px);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-mv__contents {
    margin-top: 21.875rem;
  }
}
@media screen and (max-width: 600px) {
  .p-mv__contents {
    margin-top: 12.125rem;
  }
}

.p-mv__subCopy {
  margin-top: 1.5rem;
  background: #006cb8;
  color: #fff;
  padding: 0.3125rem 0.3125rem 0.5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .p-mv__subCopy {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}

.p-mv__image {
  margin-top: 1.9375rem;
}
@media screen and (max-width: 600px) {
  .p-mv__image {
    margin-top: 0.9375rem;
  }
}

.p-pageTopArea {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#99e6e1), to(#82daf9));
  background-image: linear-gradient(to bottom, #99e6e1, #82daf9);
  padding-bottom: 9.625rem;
}
@media screen and (max-width: 600px) {
  .p-pageTopArea {
    padding-bottom: 2.5rem;
  }
}

.p-pageTopArea__annotation {
  text-align: right;
  padding: 0 1.25rem;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 600px) {
  .p-pageTopArea__annotation {
    font-size: 0.625rem;
    margin-top: 1rem;
  }
}

.l-tableOfContents {
  margin-top: 3.5rem;
}
@media screen and (max-width: 600px) {
  .l-tableOfContents {
    margin-top: 1.75rem;
  }
}

.p-tableOfContents__titleWrap {
  background: #004f87;
  color: #fff;
  text-align: center;
  padding: 0.5rem;
}

.p-tableOfContents__title {
  font-size: 1.25rem;
  font-weight: 700;
}

.p-tableOfContents__annotaion {
  font-size: 0.8125rem;
  margin-top: 0.25rem;
}

.p-tableOfContents__nav {
  margin-top: 1.75rem;
}
@media screen and (max-width: 600px) {
  .p-tableOfContents__nav {
    margin-top: 1rem;
  }
}

.p-tableOfContents__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.75rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 600px) {
  .p-tableOfContents__list {
    gap: 1rem;
  }
}

.p-tableOfContents__menu {
  width: 28.4375rem;
  max-width: 100%;
  border: 3px solid #004f87;
  background: #fff;
  color: #004f87;
  -webkit-box-shadow: 0 3px 6px rgba(11, 146, 174, 0.4392156863);
          box-shadow: 0 3px 6px rgba(11, 146, 174, 0.4392156863);
  border-radius: 0.625rem;
}

.p-tableOfContents__menuLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  height: 5.875rem;
  padding: 0.6875rem 1.875rem 0.6875rem 0.875rem;
  position: relative;
}
.p-tableOfContents__menuLink::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1.09375rem;
  background: url("../img/arrow-right01.svg") center/cover no-repeat;
  width: 0.625rem;
  height: 0.8125rem;
}
@media screen and (max-width: 600px) {
  .p-tableOfContents__menuLink {
    height: 4.625rem;
  }
}
@media (hover: hover) {
  .p-tableOfContents__menuLink:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.6;
  }
}

.p-tableOfContents__menuNumber {
  font-family: "Roboto";
  font-size: 2.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 600px) {
  .p-tableOfContents__menuNumber {
    font-size: 1.5rem;
  }
}

.p-tableOfContents__menuText {
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .p-tableOfContents__menuText {
    font-size: 0.875rem;
  }
}

.l-start {
  margin-top: 6.375rem;
}
@media screen and (max-width: 600px) {
  .l-start {
    margin-top: 4rem;
  }
}

.p-titleStart {
  text-align: center;
}

.p-start__lead {
  margin-top: 1.5rem;
  line-height: 2.1428571429;
}
@media screen and (max-width: 600px) {
  .p-start__lead {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
}

.p-start__contents {
  margin: 1.5rem auto 0;
  background: #eef8ff;
  padding: 0.875rem 2rem 1.5rem;
  width: 51.25rem;
  max-width: 100%;
}
@media screen and (max-width: 600px) {
  .p-start__contents {
    margin: 1rem auto 0;
    padding: 0.875rem 0.8125rem 1rem;
  }
}

.p-start__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.9375rem;
  padding-bottom: 0.75rem;
  position: relative;
}
.p-start__top::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-size: 10px 1px;
  background-image: linear-gradient(to right, #006cb8, #006cb8 5px, transparent 5px, transparent 10px);
  background-repeat: repeat;
}
@media screen and (max-width: 600px) {
  .p-start__top {
    gap: 0.5rem;
    padding-bottom: 0.4375rem;
  }
}
@media screen and (max-width: 600px) {
  .p-start__top img {
    width: 0.75rem;
    height: 0.9375rem;
  }
}

.p-start__year {
  font-size: 2.625rem;
  font-family: "Roboto";
}
.p-start__year span {
  margin-left: 0.5rem;
  font-size: 1.3125rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .p-start__year span {
    font-size: 0.875rem;
    margin-left: 0.25rem;
  }
}
@media screen and (max-width: 600px) {
  .p-start__year {
    font-size: 1.5rem;
  }
}

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

.p-start__bottomTextStartIcon {
  color: #006cb8;
}

.p-start__bottomText {
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
  padding-left: 1rem;
}
.p-start__bottomText:not(:first-of-type) {
  margin-top: 0.9375rem;
}
.p-start__bottomText strong {
  color: #006cb8;
}
.p-start__bottomText::after {
  content: "";
  position: absolute;
  top: 0.3125rem;
  left: 0;
  width: 0.8125rem;
  height: 0.8125rem;
  background: #006cb8;
}
@media screen and (max-width: 600px) {
  .p-start__bottomText {
    font-size: 0.875rem;
  }
}

.l-sectionFirst {
  padding: 8.375rem 0 7.5rem;
}
@media screen and (max-width: 600px) {
  .l-sectionFirst {
    padding: 4.375rem 0 2.5rem;
  }
}

.p-sectionFirst {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#00aae9), to(#004d9a));
  background-image: linear-gradient(to bottom, #00aae9, #004d9a);
}

@media screen and (max-width: 600px) {
  .p-sectionFirst__title {
    font-size: 1.5rem;
  }
}

.p-sectionFourth01__scrollWrap {
  overflow-x: scroll;
}

.p-sectionFourth01__tableBox {
  margin-top: 2.5rem;
  overflow-x: scroll;
  width: 75rem;
}

.p-sectionFirst__contents {
  margin-top: 2.5rem;
  gap: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .p-sectionFirst__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .p-sectionFirst__contents {
    margin-top: 1.5rem;
    gap: 1.5rem;
  }
}

.p-sectionFirst__text {
  width: 41.25rem;
  max-width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1.875;
  letter-spacing: 0.1em;
}
.p-sectionFirst__text span {
  font-size: 0.8125rem;
}
@media screen and (max-width: 1280px) {
  .p-sectionFirst__text {
    width: 31.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-sectionFirst__text {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .p-sectionFirst__text {
    font-size: 0.875rem;
  }
}

.p-sectionFirst__annotaiton {
  margin-top: 4.0625rem;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .p-sectionFirst__annotaiton {
    margin-top: 2rem;
  }
}

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

.p-sectionFirst__annotaitonText span {
  word-break: keep-all;
}

.p-sectionFirst__number {
  font-size: 5.125rem;
  font-family: "Roboto";
  font-weight: 700;
  color: #004372;
  margin-top: -7.5rem;
}
@media screen and (max-width: 600px) {
  .p-sectionFirst__number {
    font-size: 3rem;
    margin-top: -3.75rem;
  }
}

@media screen and (max-width: 1024px) {
  .p-sectionFirst__image {
    width: 100%;
  }
}

.p-sectionSecond {
  padding: 8.1875rem 0 7.5rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#99e6e1), to(#82daf9));
  background-image: linear-gradient(to bottom, #99e6e1, #82daf9);
}
@media screen and (max-width: 600px) {
  .p-sectionSecond {
    padding: 4rem 0 2.5rem;
  }
}

.p-sectionSecond__description {
  margin-top: 2.5rem;
  letter-spacing: 0.1em;
  line-height: 1.875;
}
@media screen and (max-width: 600px) {
  .p-sectionSecond__description {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

.p-sectionSecond__tableWrap {
  margin-top: 1.5rem;
  background: #f1f1f1;
  padding: 2.9375rem;
}
@media screen and (max-width: 600px) {
  .p-sectionSecond__tableWrap {
    padding: 1.375rem 1.875rem 1.5rem;
  }
}

.p-sectionSecond__tableTitle {
  text-align: center;
  background: #004372;
  color: #fff;
  padding: 0.5625rem;
}

.p-sectionSecond__tableInner {
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
@media screen and (max-width: 991px) {
  .p-sectionSecond__tableInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-sectionSecond__tableItem {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .p-sectionSecond__tableItem {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    gap: 0;
  }
}

.p-sectionSecond__tableHead {
  height: 2.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-sectionSecond__tableHead.bgGray500 {
  background: #cfcfcf;
}
.p-sectionSecond__tableHead.bgBlue100 {
  background: #b4e1ff;
}
.p-sectionSecond__tableHead.bgBlue200 {
  background: #84ccff;
}
.p-sectionSecond__tableHead.bgBlue300 {
  background: #41b0ff;
}
.p-sectionSecond__tableHead.bgBlue400 {
  background: #53a6e1;
}
@media screen and (max-width: 600px) {
  .p-sectionSecond__tableHead.fzSm {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 600px) {
  .p-sectionSecond__tableHead.fzMd {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 991px) {
  .p-sectionSecond__tableHead {
    width: 27%;
    height: 2.5rem;
  }
}

.p-sectionSecond__tableData {
  height: 4.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-sectionSecond__tableData.bgWhite {
  background: #fff;
}
.p-sectionSecond__tableData.bgGray1000 {
  background: #bebebe;
}
@media screen and (max-width: 600px) {
  .p-sectionSecond__tableData.fzXs {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 600px) {
  .p-sectionSecond__tableData.fzMd {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 991px) {
  .p-sectionSecond__tableData {
    width: 73%;
    height: 2.5rem;
  }
}

.p-sectionSecond__link {
  margin-top: 1rem;
  color: #006cb8;
  text-decoration: underline;
  letter-spacing: 0.1em;
  display: block;
  text-align: right;
  font-weight: 700;
}
@media (hover: hover) {
  .p-sectionSecond__link:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 600px) {
  .p-sectionSecond__link {
    margin-top: 0.875rem;
    font-size: 0.8125rem;
    text-align: left;
    letter-spacing: 0.05em;
  }
}

.p-sectionThird {
  padding: 7.75rem 0 7.5rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#00aae9), to(#004d9a));
  background-image: linear-gradient(to bottom, #00aae9, #004d9a);
}
@media screen and (max-width: 600px) {
  .p-sectionThird {
    padding: 4.25rem 0 2.5rem;
  }
}

.p-sectionThird__image {
  margin: 3.125rem auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 600px) {
  .p-sectionThird__image {
    margin-top: 1.5rem;
  }
}

.p-sectionThird__link {
  margin-top: 1rem;
  text-align: right;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
}

.p-sectionThird__ref {
  font-size: 0.625rem;
  text-align: right;
  margin-top: 1.25rem;
}

.p-sectionFourth {
  padding: 7.0625rem 0 7.5rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#99e6e1), to(#82daf9));
  background-image: linear-gradient(to bottom, #99e6e1, #82daf9);
}
@media screen and (max-width: 600px) {
  .p-sectionFourth {
    padding: 4.25rem 0 2.5rem;
  }
}

.p-sectionFourth01__imageBox {
  margin-top: 2.5rem;
  padding: 2.75rem 2.3125rem 3.4375rem;
  background: #f8f8f8;
}

.p-sectionFourth02 {
  margin-top: 7.5rem;
}
@media screen and (max-width: 600px) {
  .p-sectionFourth02 {
    margin-top: 6.5rem;
  }
}

.p-sectionFourth02__lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.9375rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-sectionFourth02__lead {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
}

.p-sectionFourth02__leadText {
  line-height: 1.875;
  width: 40.8125rem;
  max-width: 100%;
}
@media screen and (max-width: 600px) {
  .p-sectionFourth02__leadText {
    font-size: 0.875rem;
  }
}

.p-Products {
  margin-top: 2.5rem;
}
@media screen and (max-width: 600px) {
  .p-Products {
    margin-top: 1rem;
  }
}

.p-Products__arrhythmiaTitle {
  background: #b5e1ff;
  color: #004372;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 0.1875rem 1.5rem;
  letter-spacing: 0.1em;
}

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

.p-Products__productBox {
  padding: 1.25rem 2.0625rem 2.5rem;
  background: #f8f8f8;
}
@media screen and (max-width: 600px) {
  .p-Products__productBox {
    padding: 1rem 0.9375rem 2.5rem;
    width: calc(100% + 28px);
    margin-left: -0.875rem;
  }
}

.p-Products__productBoxInner:not(:first-of-type) {
  margin-top: 3rem;
}
@media screen and (max-width: 600px) {
  .p-Products__productBoxInner:not(:first-of-type) {
    margin-top: 2.5rem;
  }
}

.p-Products__productBoxTitle {
  color: #006cb8;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #dedede;
}
@media screen and (max-width: 600px) {
  .p-Products__productBoxTitle {
    font-size: 0.9375rem;
  }
}

.p-Products__productBoxContents {
  margin-top: 1.125rem;
}

.p-Products__productBoxContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 7.2%;
}
.p-Products__productBoxContent:not(:first-of-type) {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-Products__productBoxContent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .p-Products__productBoxContent {
    margin-top: 1.125rem;
  }
}

.p-Products__productBoxContentsImage {
  width: 17.1875rem;
  max-width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-Products__productBoxContentsImage img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .p-Products__productBoxContentsImage {
    width: 100%;
  }
}

.p-Products__productBoxContentsTextBottomImage {
  margin-top: 1rem;
}
.p-Products__productBoxContentsTextBottomImage img {
  margin: 0 auto;
}

.p-Products__productBoxContentsName {
  font-weight: 700;
  margin-top: 0.5rem;
  line-height: 1.875;
  text-align: left;
  width: 17.1875rem;
  margin: 0 auto;
}
.p-Products__productBoxContentsName span {
  text-decoration: underline;
}
@media (hover: hover) {
  .p-Products__productBoxContentsName a:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 768px) {
  .p-Products__productBoxContentsName {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .p-Products__productBoxContentsName {
    font-size: 0.9375rem;
    text-align: center;
  }
}

.p-Products__productBoxContentsText {
  line-height: 1.875;
  letter-spacing: 0.1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 600px) {
  .p-Products__productBoxContentsText {
    line-height: 2.1428571429;
    font-size: 0.875rem;
    margin-top: 1rem;
  }
}
.p-Products__productBoxContentsText p {
  letter-spacing: 0.1em;
  position: relative;
  margin-left: 1.2em;
}
.p-Products__productBoxContentsText p:not(.u-no-disc)::before {
  position: absolute;
  content: "●";
  display: inline-block;
  left: -1.2em;
}
.p-Products__productBoxContentsText p.p-Products__productBoxContentsText--ml0 {
  margin-left: 0;
  position: unset;
}
.p-Products__productBoxContentsText p.p-Products__productBoxContentsText--ml0.u-blue {
  border-bottom: 1px solid #006cb8;
}
.p-Products__productBoxContentsText span {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
}
.p-Products__productBoxContentsText.md-w-50 {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .p-Products__productBoxContentsText.md-w-50 {
    width: 100%;
  }
}

.p-Products__productBoxContentsTextAnnotation {
  display: block;
}

.p-Products__sas {
  margin-top: 4rem;
}
@media screen and (max-width: 600px) {
  .p-Products__sas {
    margin-top: 1.5rem;
  }
}

.p-Products__sasProductTitle {
  background: #c0f6f6;
  color: #004372;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 0.1875rem 1.5rem;
  letter-spacing: 0.1em;
}

.p-sectionFourth03 {
  margin-top: 7.5rem;
}
@media screen and (max-width: 600px) {
  .p-sectionFourth03 {
    margin-top: 4rem;
  }
}

.p-sectionFourth04 {
  margin-top: 7.5rem;
}
@media screen and (max-width: 600px) {
  .p-sectionFourth04 {
    margin-top: 4rem;
  }
}

.p-report, .p-report--aqua {
  margin-top: 3rem;
  background: #006ab5;
  color: #fff;
  padding: 1.875rem 2.1875rem 2.8125rem;
}
@media screen and (max-width: 600px) {
  .p-report, .p-report--aqua {
    padding: 1.25rem 1.25rem 2rem;
  }
}
.p-report--aqua {
  background: #def2ff;
  color: #000;
}

.p-report__title {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .p-report__title {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .p-report__title {
    font-size: 1rem;
  }
}

.p-report__item-inner {
  margin: 0 auto;
}

.p-report__item-contents {
  margin-top: 1.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 1280px) {
  .p-report__item-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-report__img, .p-report__img--large {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 8.4375rem;
  max-width: 100%;
  margin-inline: auto;
}
.p-report__img img, .p-report__img--large img {
  width: 100%;
}
.p-report__img--large {
  width: 12.1875rem;
}

.p-report__list {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6.25rem;
}
@media screen and (max-width: 1280px) {
  .p-report__list {
    gap: 3.125rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-report__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .p-report__list {
    gap: 2.5rem;
  }
}

.p-report__imgText {
  margin-top: 0.5rem;
}

.p-report__item {
  width: 26.875rem;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.5rem;
}
@media screen and (max-width: 1280px) {
  .p-report__item {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-report__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 1.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-report__item img {
    margin: 0 auto;
  }
}

@media screen and (max-width: 1024px) {
  .p-report__contents {
    width: 25rem;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .p-report__contents {
    width: 14.875rem;
  }
}

.p-report__contentsTitle {
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .p-report__contentsTitle {
    font-size: 0.875rem;
  }
}

.p-report__contentsText {
  margin-top: 0.5rem;
  line-height: 1.875;
}
@media screen and (max-width: 600px) {
  .p-report__contentsText {
    font-size: 0.875rem;
  }
}

.p-sectionFourth06 {
  margin-top: 7.5rem;
}
@media screen and (max-width: 600px) {
  .p-sectionFourth06 {
    margin-top: 4rem;
  }
}

.p-sectionFourth06__subTitle {
  margin-top: 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.p-sectionFourth06__subTitle span {
  color: #006cb8;
}
@media screen and (max-width: 600px) {
  .p-sectionFourth06__subTitle {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

.p-sectionFourth06__contents:not(:first-of-type) {
  margin-top: 7.5rem;
}
@media screen and (max-width: 600px) {
  .p-sectionFourth06__contents:not(:first-of-type) {
    margin-top: 4rem;
  }
}

.p-sectionFourth06__content {
  width: 32.125rem;
  max-width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-sectionFourth06__contentsLead {
  margin-top: 0.5rem;
}
@media screen and (max-width: 600px) {
  .p-sectionFourth06__contentsLead {
    font-size: 0.875rem;
    margin-top: 1rem;
  }
}

.p-sectionFourth06__contentsBox {
  margin-top: 1.5rem;
  background: #f8f8f8;
  padding: 2.5rem 3.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4.125rem;
}
@media screen and (max-width: 1280px) {
  .p-sectionFourth06__contentsBox {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-sectionFourth06__contentsBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .p-sectionFourth06__contentsBox {
    background: #fff;
    padding: 1.5rem 0.875rem 0;
    gap: 1rem;
  }
}

.p-sectionFourth06__contentTitle {
  color: #000;
  font-weight: 700;
  font-size: 1.125rem;
}
.p-sectionFourth06__contentTitle span {
  text-decoration: underline;
}
@media screen and (max-width: 600px) {
  .p-sectionFourth06__contentTitle {
    font-size: 1rem;
  }
}

.p-sectionFourth06__contentAnnotation {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
}

.p-sectionFourth06__contentText {
  margin-top: 1.5rem;
  line-height: 1.875;
}
.p-sectionFourth06__contentText span {
  color: #006cb8;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .p-sectionFourth06__contentText {
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

.p-sectionFourth06__contentLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
@media (hover: hover) {
  .p-sectionFourth06__contentLink:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 600px) {
  .p-sectionFourth06__contentLink {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.p-sectionFourth06__bottomText {
  margin-top: 3rem;
  text-align: center;
}
.p-sectionFourth06__bottomText a {
  color: #006cb8;
  text-decoration: underline;
  font-weight: 700;
}
@media (hover: hover) {
  .p-sectionFourth06__bottomText a:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 600px) {
  .p-sectionFourth06__bottomText {
    margin-top: 2.5rem;
    text-align: left;
  }
}

.p-sectionFourth06__image {
  margin-top: 1.5rem;
}
.p-sectionFourth06__image img {
  margin: 0 auto;
}

.p-sectionFourth06__reportBox {
  margin-top: 5rem;
  padding: 2.5rem 6.5%;
  background: #f8f8f8;
}
@media screen and (max-width: 600px) {
  .p-sectionFourth06__reportBox {
    margin-top: 2.5rem;
    padding: 1.5rem 0.625rem;
  }
}

.p-sectionFourth06__reportBoxTitle {
  color: #006cb8;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-sectionFourth06__reportBoxTitle {
    text-align: center;
  }
}

.p-sectionFourth06__reportBoxImages {
  margin-top: 1rem;
  gap: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-sectionFourth06__reportBoxImages {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-sectionFourth06__reportBoxImage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  width: 41.75rem;
  max-width: 100%;
}
.p-sectionFourth06__reportBoxImage img {
  width: 47%;
}
@media screen and (max-width: 600px) {
  .p-sectionFourth06__reportBoxImage img {
    width: 100%;
    max-width: 14rem;
  }
}
@media screen and (max-width: 600px) {
  .p-sectionFourth06__reportBoxImage {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.75rem;
  }
}

.p-sectionFourth06__reportBoxIllust {
  width: 21.5625rem;
  max-width: 100%;
}

.p-sectionFourth06__annotation {
  margin-top: 1rem;
  font-size: 0.8125rem;
}
@media screen and (max-width: 600px) {
  .p-sectionFourth06__annotation {
    margin-top: 1.5rem;
    line-height: 2.3076923077;
  }
}

.p-sectionFourth06__descriptionWrap {
  margin-top: 2.5rem;
  border: 1px solid #006cb8;
  padding: 1.25rem;
}
@media screen and (max-width: 600px) {
  .p-sectionFourth06__descriptionWrap {
    padding: 1rem 0.9375rem;
    margin-top: 1.5rem;
  }
}

.p-sectionFourth06__description {
  width: 47.4375rem;
  max-width: 100%;
  margin: 0 auto;
  font-size: 1.25rem;
  line-height: 2.8;
  font-weight: 700;
  letter-spacing: 0;
}
.p-sectionFourth06__description span {
  color: #006cb8;
}
@media screen and (max-width: 600px) {
  .p-sectionFourth06__description {
    font-size: 0.875rem;
    line-height: 2;
  }
}

.p-sectionFourth05 {
  margin-top: 4rem;
}

.p-Products__productBoxContentsTextWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.6875rem;
}
@media screen and (max-width: 1280px) {
  .p-Products__productBoxContentsTextWrap {
    gap: 1.5625rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-Products__productBoxContentsTextWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .p-Products__productBoxContentsTextWrap {
    gap: 1rem;
  }
}
.p-Products__productBoxContentsTextWrap .p-Products__productBoxContentsText:last-of-type {
  padding: 0.5rem;
  border: 1px solid #006cb8;
  width: calc(50% + 82px);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.p-Products__productBoxContentsTextWrap .p-Products__productBoxContentsText:last-of-type p {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .p-Products__productBoxContentsTextWrap .p-Products__productBoxContentsText:last-of-type {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .p-Products__productBoxContentsTextWrap .p-Products__productBoxContentsText:last-of-type {
    margin-top: 0;
  }
}

.p-ptt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 1rem;
}

.p-ptt__circle {
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  background: #006cb8;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1280px) {
  .p-ptt__circle {
    width: 4.3125rem;
    height: 4.3125rem;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 600px) {
  .p-ptt__circle {
    line-height: 1.3571428571;
  }
}

.p-ptt__text {
  font-size: 0.8125rem;
  margin-left: -0.5rem;
}
@media screen and (max-width: 1280px) {
  .p-ptt__text {
    margin-left: 0;
  }
}
@media screen and (max-width: 600px) {
  .p-ptt__text {
    margin-left: 0.625rem;
  }
}

.p-sectionFourth01__tableRow1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-sectionFourth01__tableRow1 > div:nth-child(1) {
  width: 21.3125rem;
}
.p-sectionFourth01__tableRow1 > div:nth-child(2) {
  width: 38rem;
}
.p-sectionFourth01__tableRow1 > div:nth-child(3) {
  width: 15.6875rem;
}

.p-sectionFourth01__tableRow2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-sectionFourth01__tableRow2 > div:nth-child(1) {
  width: 21.3125rem;
}
.p-sectionFourth01__tableRow2 > div:nth-child(2) {
  width: 38rem;
  padding: 1.5rem 2.1875rem 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}
.p-sectionFourth01__tableRow2 > div:nth-child(3) {
  width: 15.6875rem;
  padding: 1.5rem 1.5rem 1.125rem;
}

.p-sectionFourth01__tableRow3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-sectionFourth01__tableRow3 > div:nth-child(1) {
  width: 21.3125rem;
}
.p-sectionFourth01__tableRow3 > div:nth-child(2) {
  width: 38rem;
  padding: 1.5rem 2.1875rem 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
}
.p-sectionFourth01__tableRow3 > div:nth-child(3) {
  width: 15.6875rem;
  padding: 1.5rem 1.75rem 1.125rem;
}
.p-sectionFourth01__tableRow3--note {
  text-align: right;
  font-size: 0.625rem;
  margin-top: 0.5em;
}

.p-sectionFourth01__tableTh {
  color: #fff;
  font-size: 1.125rem;
  background: #004372;
  padding: 0.6875rem 0;
  text-align: center;
  border: 0.5px solid #b8b8b8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-sectionFourth01__tableTd {
  padding: 1.5rem 1.5rem 1.125rem;
  background: #fff;
  border: 0.5px solid #b8b8b8;
}

.p-sectionFourth01__tableTdContent01 {
  width: 15.375rem;
}

.p-sectionFourth01__tableTdContent02 {
  width: 15.375rem;
  margin-top: 1.5rem;
}

.p-sectionFourth01__tableTdTitle {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

.p-sectionFourth01__tableTdItem:not(:first-of-type) {
  margin-top: 1.5rem;
}

.p-sectionFourth01__tableTdItemName {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
  text-align: center;
}
.p-sectionFourth01__tableTdItemName a {
  text-decoration: underline;
}
@media (hover: hover) {
  .p-sectionFourth01__tableTdItemName a:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.6;
  }
}
.p-sectionFourth01__tableTdItemName span {
  text-decoration: underline;
}

.p-sectionFourth01__tableTdItemTitle {
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  text-align: center;
}

.p-sectionFourth01__tableTdItemTitle {
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

.p-sectionFourth01__tableTdFlexItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-sectionFourth01__tableItemDetail {
  margin-top: 0.8125rem;
}
.p-sectionFourth01__tableItemDetail img {
  margin: 0 auto;
}

sup {
  text-decoration: underline;
  font-size: 0.625rem !important;
  letter-spacing: 0;
}

.p-sectionFourth01__odi {
  text-align: center;
  width: 16.375rem;
  margin: 1.5rem auto 0;
}

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

.p-sectionFourth01__tableTdContentRight {
  width: 14.875rem;
}

.p-sectionFourth01__tableTdContentRightImage {
  margin: 2.25rem auto 0;
}
.p-sectionFourth01__tableTdContentRightImage img {
  margin: 0 auto;
}

.p-sectionFourth01__tableTdItemContents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}

.p-sectionFourth01__tableTdContentRightDetail02.p-sectionFourth01__tableTdContentRightDetail02 {
  margin-top: 2.6875rem;
}

.p-sectionFourth01__tableRow3ContentLeft {
  width: 15.3125rem;
}

.p-sectionFourth01__tableRow3ContentRight {
  width: 16.375rem;
}

.p-frensText {
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}

.p-sectionFourth01__tableTh--inspection {
  position: relative;
}
.p-sectionFourth01__tableTh--inspection::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -2.09125rem;
  background: url(../img/triangle01.svg) center/cover no-repeat;
  width: 2.085rem;
  height: 3.218125rem;
  z-index: 10;
}

.p-sectionFourth01__tableTh--treatment {
  position: relative;
}
.p-sectionFourth01__tableTh--treatment::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -2.09125rem;
  background: url(../img/triangle02.svg) center/cover no-repeat;
  width: 2.085rem;
  height: 3.218125rem;
  z-index: 10;
}

.p-sectionFifth {
  padding: 8.125rem 0 7.5rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#00aae9), to(#004d9a));
  background-image: linear-gradient(to bottom, #00aae9, #004d9a);
}
@media screen and (max-width: 600px) {
  .p-sectionFifth {
    padding: 4.25rem 0 2.5rem;
  }
}

.p-sectionFifth__description {
  margin-top: 1.5rem;
}
@media screen and (max-width: 600px) {
  .p-sectionFifth__description {
    margin-top: 0.25rem;
    font-size: 0.8125rem;
  }
}

.p-sectionFifth__images {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-sectionFifth__images {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-sectionFifth__images img {
    width: 80%;
    margin: 0 auto;
  }
}

.p-sectionSixth {
  padding: 7.0625rem 0 7.5rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#99e6e1), to(#82daf9));
  background-image: linear-gradient(to bottom, #99e6e1, #82daf9);
}
@media screen and (max-width: 600px) {
  .p-sectionSixth {
    padding: 4.25rem 0 2.5rem;
  }
}

.p-sectionSixth__sub-title {
  font-size: 1.125rem;
  font-weight: 700;
}

.js-scrollable-image {
  width: 75rem;
}
.js-scrollable-image__l {
  max-width: 75rem;
  min-width: 37.5rem;
  width: 100%;
}
.js-scrollable-image__m {
  max-width: 52.1875rem;
  min-width: 28.125rem;
  width: 100%;
}

.p-cta {
  padding: 5rem 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#99e6e1), to(#82daf9));
  background-image: linear-gradient(to bottom, #99e6e1, #82daf9);
}
@media screen and (max-width: 600px) {
  .p-cta {
    padding: 2.5rem 0;
  }
}

.p-ctaTel__block {
  background: #fff;
  border-radius: 0.625rem;
  padding: 2.25rem 1rem 2.5rem;
  margin: 0 auto;
  width: 52.5rem;
  max-width: 100%;
}
@media screen and (max-width: 600px) {
  .p-ctaTel__block {
    padding: 1.125rem;
    border-radius: 0;
  }
}

.p-ctaTel__title {
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
  color: #004372;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 600px) {
  .p-ctaTel__title {
    font-size: 1rem;
  }
}

.p-ctaTel__label {
  margin: 2.5rem auto 0;
  border-radius: 0.3125rem;
}

.p-ctaTel__numberLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #004372;
  color: #fff;
  margin: 0 auto;
  gap: 1rem;
  width: 26.4375rem;
  max-width: 100%;
  padding: 1rem 1rem 1.1875rem;
}
@media screen and (max-width: 600px) {
  .p-ctaTel__numberLink {
    padding: 0.9375rem;
    width: 21rem;
  }
}
@media (hover: hover) {
  .p-ctaTel__numberLink:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.6;
  }
}

@media screen and (max-width: 600px) {
  .p-ctaTel__icon {
    width: 1.875rem;
  }
}

.p-ctaTel__number {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Roboto";
}
@media screen and (max-width: 600px) {
  .p-ctaTel__number {
    font-size: 1rem;
  }
}

.p-ctaTel__text {
  margin-top: 1.125rem;
  font-size: 0.875rem;
  color: #004372;
  letter-spacing: 0.1em;
  text-align: center;
}
.p-ctaTel__text a {
  text-decoration: underline;
}
@media (hover: hover) {
  .p-ctaTel__text a:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 600px) {
  .p-ctaTel__text {
    font-size: 0.8125rem;
    color: #000;
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 600px) {
  .p-ctaTel__text .is-spOnly {
    display: inline;
  }
}

.p-ctaBtns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3.0625rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 991px) {
  .p-ctaBtns {
    gap: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .p-ctaBtns {
    margin-top: 1rem;
    gap: 1rem;
  }
}

.p-ctaBtnLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #004372;
  border-radius: 0.3125rem;
  padding: 1.5625rem;
  gap: 1.5rem;
  width: 20rem;
  max-width: 100%;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .p-ctaBtnLink {
    gap: 1rem;
    width: 17.5rem;
    height: 3.75rem;
  }
}
@media (hover: hover) {
  .p-ctaBtnLink:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.6;
  }
}

.p-ctaTitle {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .p-ctaTitle {
    font-size: 1rem;
  }
}

@media screen and (max-width: 600px) {
  .p-ctaDocument__icon {
    width: 1.8125rem;
    height: 2.0625rem;
  }
}

@media screen and (max-width: 600px) {
  .p-ctaContact__icon {
    width: 1.875rem;
    height: 1.875rem;
  }
}

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

.u-grid {
  display: grid;
}

.u-uppercase {
  text-transform: uppercase;
}

.u-capitalize {
  text-transform: capitalize;
}

.u-textCenter {
  text-align: center;
}

.u-blue {
  color: #006cb8;
}

.u-no-disc.u-no-disc {
  margin-left: 0;
}

.u-no-underline {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .is-pcOnly {
    display: none;
  }
}

.is-spOnly {
  display: none;
}
@media screen and (max-width: 600px) {
  .is-spOnly {
    display: block;
  }
}

.is-maxOnly {
  display: block;
}
@media screen and (max-width: 1430px) {
  .is-maxOnly {
    display: none;
  }
}

.is-mdNone {
  display: block;
}
@media screen and (max-width: 768px) {
  .is-mdNone {
    display: none;
  }
}

.is-fixed {
  overflow: hidden !important;
}

@media (hover: hover) {
  .is-hoverOpacity:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.6;
  }
}

.is-notUnderLine.is-notUnderLine {
  text-decoration: unset;
}

.is-no-preservation {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.u-margin-top {
  margin-top: 1;
}
.u-margin-top--normal {
  margin-top: 2.4rem;
}
.u-margin-top--small {
  margin-top: 1.6rem;
}
.u-margin-top--middle {
  margin-top: 3.84rem;
}
.u-margin-top--wide {
  margin-top: 4.8rem;
}

.u-shrink {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}/*# sourceMappingURL=style.css.map */