@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: #444;
  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: #9f9f9f;
  padding: .25em .5em;
}

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

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

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

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

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

/************************************************************************
* end reset
************************************************************************/
[data-target] {
  cursor: pointer;
}

html {
  scrollbar-gutter: stable;
  font-size: 100%;
}

button {
  color: #444;
}

/************************************************************************
* 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;
  background-color: #EBF4F3;
  min-height: 100vh;
  min-height: 100dvh;
}

body.fadeIn {
  opacity: 0;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #EBF4F3;
}

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
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: #444;
  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
************************************************************************/
: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: 60px;
}

/************************************************************************
* overwrite mfp
************************************************************************/
.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  background-color: #AFA688;
}

.mfp-bg.mfp-ready {
  opacity: .8;
}

.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.mfp-wrap .mfp-arrow {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-wrap.mfp-ready .mfp-arrow {
  opacity: 1;
}

.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-wrap.mfp-removing .mfp-arrow {
  opacity: 0;
}

/************************************************************************
* overwrite mfp end
************************************************************************/

/************************************************************************
* MW WP Form Over write
************************************************************************/
.mwform-radio-field,
.mwform-checkbox-field {
  display: inline-block;
}

.mw_wp_form_preview .c-select::after {
  content: none;
}

.mw_wp_form_preview .p-hasPlaceholder__text {
  display: none;
}

/************************************************************************
* swiper
************************************************************************/
.swiper-button-prev,
.swiper-button-next {
  aspect-ratio: 1;
  z-index: 1;
  cursor: pointer;
  background: transparent no-repeat center center/contain;
  width: 30px;
  width: 1.875rem;
}

.swiper-button-prev {
  rotate: 180deg;
  background-image: url('../img/common/icon-slider-arrow.svg');
}

.swiper-button-next {
  background-image: url('../img/common/icon-slider-arrow.svg');
}

.swiper-pagination {
  font-size: 0;
}

.swiper-pagination-bullet {
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  background-color: #D5D5D5;
  width: 5px;
  height: 5px;
}

.swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 5px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0C4A6E;
}

/* rtl ******************************************************************/
.swiper[dir=rtl] .swiper-button-prev {
  background-image: url('../img/common/icon-chevron-right.svg');
}

.swiper[dir=rtl] .swiper-button-next {
  background-image: url('../img/common/icon-chevron-left.svg');
}

.swiper[dir=rtl] .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-right: 5px;
  margin-left: 0;
}

/************************************************************************
* swiper end
************************************************************************/
.wpcf7-spinner {
  display: none;
}

/************************************************************************
* Table of Contents Plus
************************************************************************/
#toc_container {
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
  width: 100% !important;
}

#toc_container .toc_number {
  margin-right: .5em;
  color: #0C4A6E;
  font-weight: 700;
}

#toc_container .toc_list li {
  color: #444;
}

#toc_container .toc_list li::before {
  display: none;
  color: #0C4A6E;
}

#toc_container .toc_list li + li {
  margin-top: .5em;
}

#toc_container .toc_list a {
  color: #444;
}

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

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

.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);
}

.c-section-title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
}

.c-section-title.c-section-title--row {
  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: .625rem;
  -moz-column-gap: .625rem;
  column-gap: .625rem;
}

.c-section-title__en {
  color: #24B5A7;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 1.5;
}

.c-section-title__en.c-section-title__en--yellow {
  color: #fff6aa;
}

.p-company {
  padding-block: 60px 73px;
  padding-block: 3.75rem 4.5625rem;
}

.p-company__inner {
  margin-right: auto;
  margin-left: auto;
  max-width: 600px;
  max-width: 37.5rem;
}

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

.p-company__list {
  gap: 2px;
  gap: .125rem;
  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: 24px;
  margin-top: 1.5rem;
  border-radius: .4375rem;
  background-color: #fff;
  padding: 20px 15px;
  padding: 1.25rem .9375rem;
  padding-right: 10px;
  padding-right: .625rem;
  overflow: hidden;
}

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

.p-company__item {
  position: relative;
}

.p-company__item:not(:last-child)::after {
  position: absolute;
  bottom: 0;
  left: -15px;
  left: -.9375rem;
  background: -webkit-gradient(linear, left top, right top, from(#00937A), color-stop(30%, #ccc));
  background: linear-gradient(90deg, #00937A 0%, #ccc 30%);
  width: calc(100% + 1.875rem);
  height: 1px;
  content: '';
}

.p-company__item:last-child .p-company__desc {
  padding-bottom: 0;
}

.p-company__term {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: normal;
}

.p-company__desc {
  margin-top: 11px;
  margin-top: .6875rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
}

.p-flow {
  margin-top: 63px;
  margin-top: 3.9375rem;
}

.p-flow__heading02 {
  color: #24B5A7;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
}

.p-flow__img {
  margin-inline: auto;
  margin-top: 23px;
  margin-top: 1.4375rem;
  width: 100%;
  max-width: 500px;
  max-width: 31.25rem;
}

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

.p-footer {
  background-color: #353535;
  padding-top: 36px;
  padding-top: 2.25rem;
  color: #fff;
}

.p-footer__inner {
  margin-right: auto;
  margin-left: auto;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-footer__logo {
  display: block;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  width: 210px;
  width: 13.125rem;
}

.p-footer__logo:focus-visible {
  opacity: .8;
}

.p-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.p-footer__logo a {
  display: block;
}

.p-footer__nav {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-footer__navList {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-footer__navItem a {
  position: relative;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
}

.p-footer__navItem a::before {
  position: absolute;
  bottom: -2px;
  bottom: -.125rem;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  background: -webkit-gradient(linear, right top, left top, from(rgb(89, 89, 89)), color-stop(87%, rgb(221, 221, 221)));
  background: linear-gradient(-90deg, rgb(89, 89, 89) 0%, rgb(221, 221, 221) 87%);
  width: 100%;
  height: 2px;
  content: '';
}

.p-footer__navItem a:focus-visible::before {
  opacity: 1;
}

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

.p-footer__address address {
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.4;
}

.p-footer__body {
  row-gap: 22px;
  row-gap: 1.375rem;
  display: grid;
  margin-top: 7px;
  margin-top: .4375rem;
  width: 100%;
}

.p-footer__map {
  width: 100%;
}

.p-footer__map iframe {
  aspect-ratio: 345/200;
  border-radius: .625rem;
  width: 100%;
  height: auto;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-footer__contact {
  border-radius: .625rem;
  background: linear-gradient(133deg, #00937A 0%, #32D2B7 104.74%);
  padding: 26px 15px;
  padding: 1.625rem .9375rem;
  width: 100%;
}

.p-footer__heading02 {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
}

.p-footer__contactText {
  margin-top: 14px;
  margin-top: .875rem;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.p-footer__contactMail {
  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: 18px;
  margin-top: 1.125rem;
}

.p-footer__contactMail a {
  display: grid;
  grid-template-columns: -webkit-max-content auto;
  grid-template-columns: max-content auto;
  -webkit-column-gap: .6875rem;
  -moz-column-gap: .6875rem;
  column-gap: .6875rem;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  border: 1px solid #fff;
  padding: 8px 13px;
  padding: .5rem .8125rem;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

.p-footer__contactMail a::before {
  display: block;
  background-image: url('../img/icon_mail.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  width: 1.5625rem;
  height: 25px;
  height: 1.5625rem;
  content: '';
}

.p-footer__contactMail a:focus-visible {
  background-color: #158875;
}

.p-footer__bottom {
  padding-block: 51px 27px;
  padding-block: 3.1875rem 1.6875rem;
  text-align: center;
}

.p-footer__bottom a {
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
  color: #06C;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  text-decoration: underline;
}

.p-footer__bottom a:focus-visible {
  opacity: .4;
}

.p-footer__bottom small {
  display: block;
  margin-top: 17px;
  margin-top: 1.0625rem;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
}

.p-fv {
  aspect-ratio: 375/415;
  position: relative;
  z-index: 0;
  background: url(../img/fv_bg_sp.jpg) no-repeat center/cover;
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 187px;
  padding-bottom: 11.6875rem;
  color: #fff;
}

.p-fv__textBox {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  max-width: 280px;
  max-width: 17.5rem;
}

.p-fv__heading01 {
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: normal;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 0, 0, .5);
}

.p-fv__text {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  text-shadow: 0 0 2px rgba(18, 31, 25, .6);
}

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

.p-header__inner {
  display: grid;
  grid-template: 'logo button' 'nav nav';
  padding-left: 5px;
  padding-left: .3125rem;
}

.p-header__logo {
  display: block;
  grid-area: logo;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  width: 210px;
  width: 13.125rem;
}

.p-header__logo:focus-visible {
  opacity: .8;
}

.p-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.p-header__logo a {
  display: block;
}

.p-header__nav {
  grid-area: nav;
  margin-top: 17px;
  margin-top: 1.0625rem;
}

.p-header__navList {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-header__navItem {
  display: inline-grid;
}

.p-header__navLink {
  position: relative;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
}

.p-header__navLink::before {
  position: absolute;
  bottom: -2px;
  bottom: -.125rem;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  background: -webkit-gradient(linear, right top, left top, color-stop(13%, rgb(221, 221, 221)), to(rgb(36, 181, 167)));
  background: linear-gradient(-90deg, rgb(221, 221, 221) 13%, rgb(36, 181, 167) 100%);
  width: 100%;
  height: 2px;
  content: '';
}

.p-header__navLink:focus-visible::before {
  opacity: 1;
}

.p-header__btn {
  gap: 13px;
  gap: .8125rem;
  display: grid;
  position: relative;
  grid-area: button;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  justify-self: end;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  cursor: pointer;
  border-radius: 4px;
  background-color: #24B5A7;
  padding: 8px 20px;
  padding: .5rem 1.25rem;
  width: 100%;
  max-width: 110px;
  max-width: 6.875rem;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.p-header__btn a {
  display: block;
  text-decoration: none;
}

.p-header__btn span {
  display: none;
}

.p-header__btn:focus-visible {
  background-color: #158875;
}

.p-header__btn:focus-visible a {
  text-decoration: none;
}

.p-header__btn::before {
  background-image: url('../img/icon_download.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 7px;
  width: .4375rem;
  height: 11px;
  height: .6875rem;
  content: '';
}

.p-news {
  padding-inline: 20px;
  padding-inline: 1.25rem;
  position: relative;
  margin-top: -40px;
  margin-top: -2.5rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-news__container {
  padding-block: 34px;
  padding-block: 2.125rem;
  border-radius: .4375rem;
  background-color: #fff;
}

.p-news__inner {
  padding-right: 10px;
  padding-right: .625rem;
  padding-left: 20px;
  padding-left: 1.25rem;
}

.p-news__wrap {
  max-height: 420px;
  max-height: 26.25rem;
  overflow-y: scroll;
}

.p-news__list {
  gap: 20px;
  gap: 1.25rem;
  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-right: 22px;
  padding-right: 1.375rem;

  /* スクロールバー */
}

.p-news__list .p-news__list::-webkit-scrollbar {
  width: 8px;

  /* 横幅設定 */
}

.p-news__list .p-news__list::-webkit-scrollbar-thumb {
  background: #e4e6e6;

  /* ハンドルの色 */
}

.p-news__list .p-news__list::-webkit-scrollbar-track {
  border-radius: .25rem;
  background: #e4e6e6;
  overflow: hidden;
}

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

.p-news__time {
  color: #9f9f9f;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4666666667;
}

.p-news__category {
  display: inline-block;
  margin-left: 16px;
  margin-left: 1rem;
  border: 1px solid #24B5A7;
  padding: 7px 10px;
  padding: .4375rem .625rem;
  min-width: 100px;
  min-width: 6.25rem;
  color: #24B5A7;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 500;
  text-align: center;
}

.p-news__heading03 {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-news__text {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
}

.p-news__text a {
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
  color: #06c;
  text-decoration: underline;
}

.p-news__text a:focus-visible {
  opacity: .4;
}

.p-service {
  container-type: inline-size;
  margin-top: 63px;
  margin-top: 3.9375rem;
  overflow: hidden;
}

.p-service__headingWrap {
  margin-right: auto;
  margin-left: auto;
  max-width: 600px;
  max-width: 37.5rem;
}

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

.p-service__text {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
}

.p-service__list {
  gap: 56px;
  gap: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 18px;
  margin-top: 1.125rem;
  margin-top: 48px;
  margin-top: 3rem;
}

.p-service__img {
  position: relative;
  margin-right: calc(50% - 50cqi);
  margin-left: calc(50% - 50cqi);
}

.p-service__img img {
  aspect-ratio: 375/316;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-service__img[data-img=img1] img {
  aspect-ratio: 375/282;
}

.p-service__itemBlock {
  margin-inline: auto;
  position: relative;
  z-index: 1;
  margin-top: -67px;
  margin-top: -4.1875rem;
  background-color: #fff;
  padding: 35px 30px;
  padding: 2.1875rem 1.875rem;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-service__itemBlock[data-block=block1] {
  margin-top: -65px;
  margin-top: -4.0625rem;
}

.p-service__heading03 {
  color: #24B5A7;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
}

.p-service__cardText {
  margin-top: 26px;
  margin-top: 1.625rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.p-service__cardText a {
  display: inline;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #06C;
  text-decoration: underline;
}

.p-service__cardText a:focus-visible {
  opacity: .4;
}

.p-service__subList {
  gap: 8px;
  gap: .5rem;
  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: 26px;
  margin-top: 1.625rem;
  margin-left: 10px;
  margin-left: .625rem;
}

.p-service__subItem {
  position: relative;
  padding-left: 3px;
  padding-left: .1875rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
}

.p-service__subItem::before {
  position: absolute;
  top: 50%;
  left: -10px;
  left: -.625rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #444;
  width: 8px;
  width: .5rem;
  height: 8px;
  height: .5rem;
  content: '';
}

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

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

.u-onlyTab {
  display: none;
}

.u-onlySp {
  display: none;
}

.u-desktop {
  display: none;
}

.u-mobile {
  display: block;
}

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

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

.u-inline {
  display: inline !important;
}

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

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

.visually-hidden {
  clip: rect(0 0 0 0);
  position: absolute;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

@media (min-width: 576px) {

  .p-fv {
    aspect-ratio: 576/560;
  }

  .p-service__img img {
    aspect-ratio: 380/160;
  }

  .p-service__img[data-img=img1] img {
    aspect-ratio: 380/160;
  }
}

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

  html {
    font-size: 1.2121212121vw;
    font-size: calc(var(--vw-unitless) / 1320 * 100%);
  }

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

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    width: 2.5rem;
  }

  #toc_container {
    padding: 30px 60px;
    padding: 1.875rem 3.75rem;
  }

  .l-container {
    padding-right: 20px;
    padding-left: 20px;
    max-width: 1360px;
  }

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

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

  .c-section-title.c-section-title--small {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .p-company {
    padding-block: 80px 70px;
    padding-block: 5rem 4.375rem;
    background-color: #fff;
  }

  .p-company__list {
    padding-inline: 0;
    margin-top: 34px;
    margin-top: 2.125rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .p-company__item {
    display: grid;
    grid-template-columns: auto 1fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 9.375rem;
    -moz-column-gap: 9.375rem;
    column-gap: 9.375rem;
    padding-top: 20px;
    padding-top: 1.25rem;
    padding-bottom: 17px;
    padding-bottom: 1.0625rem;
    padding-left: 31px;
    padding-left: 1.9375rem;
  }

  .p-company__item:not(:last-child)::after {
    background: -webkit-gradient(linear, left top, right top, from(rgb(36, 181, 167)), color-stop(13%, rgb(221, 221, 221)));
    background: linear-gradient(90deg, rgb(36, 181, 167) 0%, rgb(221, 221, 221) 13%);
  }

  .p-company__term {
    min-width: 112px;
    min-width: 7rem;
  }

  .p-company__desc {
    margin-top: 0;
    padding-bottom: 0;
  }

  .p-flow {
    margin-top: 62px;
    margin-top: 3.875rem;
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
  }

  .p-flow__block {
    margin-inline: auto;
    border-radius: .625rem;
    background-color: #fff;
    padding: 50px 105px;
    padding: 3.125rem 6.5625rem;
    max-width: 1255px;
    max-width: 78.4375rem;
  }

  .p-flow__heading02 {
    margin-top: 0;
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 600;
  }

  .p-flow__img {
    margin-top: 65px;
    margin-top: 4.0625rem;
    max-width: 1045px;
    max-width: 65.3125rem;
  }

  .p-flow__img img {
    aspect-ratio: 1045/400;
  }

  .p-footer {
    padding-top: 43px;
    padding-top: 2.6875rem;
  }

  .p-footer__head {
    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-footer__logo {
    width: 320px;
    width: 20rem;
  }

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

  .p-footer__navList {
    gap: 56px;
    gap: 3.5rem;
  }

  .p-footer__navItem a {
    font-size: 15px;
    font-size: .9375rem;
  }

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

  .p-footer__address address {
    font-size: 15px;
    font-size: .9375rem;
  }

  .p-footer__body {
    gap: 64px;
    gap: 4rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 11px;
    margin-top: .6875rem;
  }

  .p-footer__map {
    max-width: 465px;
    max-width: 29.0625rem;
  }

  .p-footer__map iframe {
    aspect-ratio: 465/230;
    height: 100%;
  }

  .p-footer__contact {
    padding: 32px 40px;
    padding: 2rem 2.5rem;
    max-width: 793px;
    max-width: 49.5625rem;
  }

  .p-footer__contactText {
    margin-top: 19px;
    margin-top: 1.1875rem;
    font-size: 15px;
    font-size: .9375rem;
  }

  .p-footer__contactMail {
    margin-top: 19px;
    margin-top: 1.1875rem;
  }

  .p-footer__bottom {
    padding-block: 40px 47px;
    padding-block: 2.5rem 2.9375rem;
  }

  .p-footer__bottom a {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-footer__bottom small {
    margin-top: 21px;
    margin-top: 1.3125rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-fv {
    aspect-ratio: 1440/380;
    background: url(../img/fv_bg_pc.jpg) no-repeat center/cover;
    padding-top: 148px;
    padding-top: 9.25rem;
    padding-bottom: 131px;
    padding-bottom: 8.1875rem;
    min-height: 380px;
    min-height: 23.75rem;
  }

  .p-fv__textBox {
    max-width: 1050px;
    max-width: 65.625rem;
  }

  .p-fv__heading01 {
    font-size: 40px;
    font-size: 2.5rem;
    text-shadow: 0 0 7px rgba(18, 31, 25, .5);
  }

  .p-fv__text {
    margin-top: 24px;
    margin-top: 1.5rem;
    font-size: 24px;
    font-size: 1.5rem;
    text-shadow: 0 0 7px rgba(18, 31, 25, .8);
  }

  .p-header {
    padding-top: 19px;
    padding-top: 1.1875rem;
    padding-bottom: 19px;
    padding-bottom: 1.1875rem;
  }

  .p-header__inner {
    grid-template: 'logo nav button'/auto 1fr auto;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    padding-left: 0;
  }

  .p-header__logo {
    width: 320px;
    width: 20rem;
  }

  .p-header__nav {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    justify-self: flex-end;
    margin-top: 0;
  }

  .p-header__navList {
    gap: 56px;
    gap: 3.5rem;
  }

  .p-header__navLink {
    font-size: 14px;
    font-size: .875rem;
    letter-spacing: .05em;
  }

  .p-header__btn {
    gap: 11px;
    gap: .6875rem;
    border-radius: 5px;
    padding: 12px 28px;
    padding: .75rem 1.75rem;
    max-width: 184px;
    max-width: 11.5rem;
    font-size: 14px;
    font-size: .875rem;
  }

  .p-header__btn span {
    display: inline;
  }

  .p-news {
    margin-top: -19px;
    margin-top: -1.1875rem;
    max-width: initial;
  }

  .p-news__container {
    padding-block: 24px;
    padding-block: 1.5rem;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-shadow: 7px 7px 8px 0 rgba(197, 205, 206, .2);
    box-shadow: 7px 7px 8px 0 rgba(197, 205, 206, .2);
    max-width: 1320px;
    max-width: 82.5rem;
  }

  .p-news__inner {
    padding-right: 16px;
    padding-right: 1rem;
    padding-left: 105px;
    padding-left: 6.5625rem;
  }

  .p-news__wrap {
    display: grid;
    grid-template-columns: auto 1fr;
    -webkit-column-gap: 5.5625rem;
    -moz-column-gap: 5.5625rem;
    column-gap: 5.5625rem;
    max-height: initial;
    overflow: initial;
  }

  .p-news__heading02 {
    row-gap: 4px;
    row-gap: .25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-news__list {
    padding-right: 117px;
    padding-right: 7.3125rem;
    max-height: 228px;
    max-height: 14.25rem;
    overflow-y: scroll;
  }

  .p-news__list .p-news__list::-webkit-scrollbar-track {
    background: #daefef;
  }

  .p-news__item {
    display: grid;
    grid-template-columns: auto 1fr;
    -webkit-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
  }

  .p-news__box {
    row-gap: 16px;
    row-gap: 1rem;
    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: 0;
    max-width: 100px;
    max-width: 6.25rem;
  }

  .p-news__time {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.7;
  }

  .p-news__category {
    margin-left: 0;
  }

  .p-news__heading03 {
    margin-top: 0;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.7;
  }

  .p-news__text {
    line-height: 1.6;
  }

  .p-service {
    margin-top: 83px;
    margin-top: 5.1875rem;
  }

  .p-service__headingWrap {
    max-width: initial;
  }

  .p-service__text {
    margin-top: 24px;
    margin-top: 1.5rem;
    text-align: center;
  }

  .p-service__list {
    gap: 27px;
    gap: 1.6875rem;
    padding-inline: 2px;
    padding-inline: .125rem;
    grid-template-columns: repeat(3, 1fr);
  }

  .p-service__img {
    aspect-ratio: 420/316;
    margin-right: 0;
    margin-left: 0;
    width: 100%;
  }

  .p-service__img img {
    aspect-ratio: inherit;
  }

  .p-service__img[data-img=img1] img {
    aspect-ratio: inherit;
  }

  .p-service__item {
    gap: 0;
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
  }

  .p-service__itemBlock {
    margin-inline: auto;
    margin-top: -75px;
    margin-top: -4.6875rem;
    padding: 50px 36px 46px;
    padding: 3.125rem 2.25rem 2.875rem;
    max-width: 360px;
    max-width: 22.5rem;
  }

  .p-service__itemBlock[data-block=block1] {
    margin-top: -75px;
    margin-top: -4.6875rem;
  }

  .p-service__cardText {
    margin-top: 24px;
    margin-top: 1.5rem;
    line-height: 210%;
    text-align: justify;
  }

  .p-service__cardText a {
    margin-top: 0;
  }

  .p-service__subList {
    gap: 10px;
    gap: .625rem;
    margin-top: 25px;
    margin-top: 1.5625rem;
  }

  .p-service__subItem {
    padding-left: 5px;
    padding-left: .3125rem;
  }

  .u-desktop {
    display: block;
  }

  .u-mobile {
    display: none;
  }

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

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

  .u-onlyTab {
    display: block;
  }
}

@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: 1320px) {

  html {
    font-size: 100%;
  }
}

@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;
    font-size: calc(var(--vw-unitless) / 375 * 100%);
  }
}

@media (hover: hover) {

  .p-footer__logo:hover {
    opacity: .8;
  }

  .p-footer__navItem a:hover {
    text-decoration: none;
  }

  .p-footer__navItem a:hover::before {
    opacity: 1;
  }

  .p-footer__contactMail a:hover {
    background-color: #158875;
    text-decoration: none;
  }

  .p-footer__bottom a:hover {
    opacity: .4;
  }

  .p-header__logo:hover {
    opacity: .8;
  }

  .p-header__navLink:hover {
    text-decoration: none;
  }

  .p-header__navLink:hover::before {
    opacity: 1;
  }

  .p-header__btn:hover {
    background-color: #158875;
  }

  .p-header__btn:hover a {
    text-decoration: none;
  }

  .p-news__text a:hover {
    opacity: .4;
  }

  .p-service__cardText a:hover {
    opacity: .4;
  }
}
/*# sourceMappingURL=map/style.css.map */