@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] { /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/* ==================================================
   Base
   ================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  font-size: 62.5%;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: "Shippori Mincho B1", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝体", "Yu Mincho", serif;
  color: #3A3A3A;
  font-size: 1.6rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.6;
}

.sp {
  display: none;
}
@media (width <= 768px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}
@media (width <= 768px) {
  .pc {
    display: none;
  }
}

.l-header {
  height: 120px;
  width: 100%;
  background: #fff;
}
@media (width <= 768px) {
  .l-header {
    min-height: 64px;
    height: min(96px, 17.0666666667vw);
    position: fixed;
    z-index: 999;
  }
}
.l-header .l-header__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  background: #fff;
  justify-content: center;
}
.l-header .l-header__logo {
  margin-top: 24px;
  text-align: center;
}
@media (width <= 768px) {
  .l-header .l-header__logo {
    margin: 0;
  }
}
.l-header .l-header__title {
  margin: 0;
  color: #64676A;
  font-size: 40px;
  font-weight: 700;
}
@media (width <= 1040px) {
  .l-header .l-header__title {
    font-size: 3.8461538462vw;
  }
}
@media (width <= 768px) {
  .l-header .l-header__title {
    font-size: min(36px, 6.4vw);
  }
}
.l-header .l-header__en-title {
  color: #6AA7A3;
  font-size: 16px;
  margin: 0;
}
@media (width <= 1040px) {
  .l-header .l-header__en-title {
    font-size: 1.5384615385vw;
  }
}
@media (width <= 768px) {
  .l-header .l-header__en-title {
    font-size: min(21px, 3.7333333333vw);
  }
}
.l-header .l-header__btn {
  width: 230px;
  position: absolute;
  line-height: 58px;
  right: 20px;
  transform: translateY(-50%);
  top: 58%;
  font-size: 18px;
  font-weight: 700;
}
@media (width <= 1040px) {
  .l-header .l-header__btn {
    width: 22.1153846154vw;
    font-size: 1.7307692308vw;
    line-height: 5.5769230769vw;
  }
}
@media (width <= 768px) {
  .l-header .l-header__btn {
    display: none;
  }
}
.l-header .l-header__hamburger {
  height: 20px;
  width: min(30px, 5.3333333333vw);
  cursor: pointer;
  position: absolute;
  right: 6.4vw;
  transform: translateY(-50%);
  top: 50%;
}
.l-header .l-header__hamburger .l-header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
}
.l-header .l-header__hamburger span {
  height: 3px;
  width: 100%;
  border-radius: 4px;
  background: #36B4BF;
  transition: all 0.3s;
  position: absolute;
}
.l-header .l-header__hamburger span:nth-of-type(1) {
  top: 0;
}
.l-header .l-header__hamburger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.l-header .l-header__hamburger span:nth-of-type(3) {
  top: 100%;
  transform: translateY(-100%);
}
.l-header .l-header__hamburger.active span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.l-header .l-header__hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.l-header .l-header__hamburger.active span:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.l-header .l-header__humb-menu {
  display: none;
}
@media (width <= 768px) {
  .l-header .l-header__humb-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #FFF;
    padding-top: 80px;
    transform: translateY(-100%);
    pointer-events: none;
    transition: all 0.4s ease-in-out;
    opacity: 0;
  }
  .l-header .l-header__humb-menu.active {
    transform: translateY(0);
    display: block;
    z-index: -1;
    opacity: 1;
    pointer-events: auto;
  }
}
.l-header .l-header__humb-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-header .l-header__humb-nav li {
  background: #D7EBEE;
  border-bottom: 1px solid #fff;
}
.l-header .l-header__humb-nav li a {
  display: block;
  padding: 5.0666666667vw 4vw 5.0666666667vw 8vw;
  color: #447782;
  font-size: min(24px, 4.2666666667vw);
  text-decoration: none;
}
.l-header .l-header__humb-nav li.menu-item-has-children > a {
  display: block;
  padding-right: 40px;
  position: relative;
}
.l-header .l-header__humb-nav li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("../img/icon-plus-green.svg") no-repeat center/contain;
}
.l-header .l-header__humb-nav li.menu-item-has-children .sub-menu {
  display: none;
}
.l-header .l-header__humb-nav li.menu-item-has-children .sub-menu li {
  background: #fff;
  border-bottom: 1px solid #D7EBEE;
}
.l-header .l-header__humb-nav li.menu-item-has-children.is-open > a::after {
  background: url("../img/icon-minus-green.svg") no-repeat center/contain;
}
.l-header .l-header__humb-btn {
  max-width: min(330px, 58.6666666667vw);
  width: 100%;
  line-height: min(76.5px, 13.6vw);
  margin: 0 auto;
  margin-top: min(48px, 8.5333333333vw);
  font-size: min(21px, 3.7333333333vw);
}

.l-footer {
  background: #EDF9F8;
  padding-top: 40px;
}
@media (width <= 768px) {
  .l-footer {
    padding-top: min(85.5px, 15.2vw);
  }
}
.l-footer .l-footer__inner {
  max-width: 1000px;
  padding: 0 20px;
  padding-bottom: 56px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 150px;
}
@media (width <= 1040px) {
  .l-footer .l-footer__inner {
    gap: 14.4230769231vw;
    padding: 0 20px 5.3846153846vw;
  }
}
@media (width <= 768px) {
  .l-footer .l-footer__inner {
    flex-direction: column;
    padding: 0 min(60px, 10.6666666667vw) min(22.5px, 4vw);
    gap: min(15px, 2.6666666667vw);
  }
}
.l-footer .l-footer__left {
  flex-shrink: 0;
}
@media (width <= 768px) {
  .l-footer .l-footer__left {
    width: 100%;
  }
}
.l-footer .l-footer__right {
  display: flex;
  gap: 80px;
  padding-top: 4px;
}
@media (width <= 1040px) {
  .l-footer .l-footer__right {
    gap: 7.6923076923vw;
  }
}
@media (width <= 768px) {
  .l-footer .l-footer__right {
    flex-direction: column;
    gap: 0;
    display: flex;
    align-items: center;
  }
}
.l-footer .l-footer__logo {
  display: inline-block;
}
@media (width <= 768px) {
  .l-footer .l-footer__logo {
    display: block;
    text-align: center;
  }
}
.l-footer .l-footer__title {
  margin: 0;
  color: #64676A;
  font-size: 40px;
  font-weight: 700;
}
@media (width <= 1040px) {
  .l-footer .l-footer__title {
    font-size: 3.8461538462vw;
  }
}
@media (width <= 768px) {
  .l-footer .l-footer__title {
    font-size: min(42px, 7.4666666667vw);
  }
}
.l-footer .l-footer__en-title {
  margin: 0;
  color: #6AA7A3;
  text-align: center;
  font-size: 16px;
}
@media (width <= 1040px) {
  .l-footer .l-footer__en-title {
    font-size: 1.5384615385vw;
  }
}
@media (width <= 768px) {
  .l-footer .l-footer__en-title {
    font-size: min(21px, 3.7333333333vw);
  }
}
.l-footer .l-footer__add {
  margin-top: 14px;
  line-height: 180%;
}
@media (width <= 1040px) {
  .l-footer .l-footer__add {
    margin-top: 1.3461538462vw;
    font-size: 1.5384615385vw;
  }
}
@media (width <= 768px) {
  .l-footer .l-footer__add {
    font-size: min(24px, 4.2666666667vw);
    margin-top: min(48px, 8.5333333333vw);
  }
}
.l-footer .l-footer__btn {
  margin-top: 30px;
  width: 251px;
  line-height: 60px;
  font-size: 20px;
  font-weight: 700;
}
@media (width <= 1040px) {
  .l-footer .l-footer__btn {
    width: 24.1346153846vw;
    line-height: 5.7692307692vw;
    font-size: 1.9230769231vw;
    margin-top: 2.8846153846vw;
  }
}
@media (width <= 768px) {
  .l-footer .l-footer__btn {
    width: min(316.5px, 56.2666666667vw);
    line-height: min(76.5px, 13.6vw);
    font-size: min(24px, 4.2666666667vw);
    margin: 0 auto;
    margin-top: min(31.5px, 5.6vw);
  }
}
.l-footer .l-footer__btn .c-btn--mail::after {
  content: "";
  width: 34px;
  height: 29px;
  left: 20px;
}
@media (width <= 1040px) {
  .l-footer .l-footer__btn .c-btn--mail::after {
    width: 3.2692307692vw;
    height: 2.7884615385vw;
    left: 1.9230769231vw;
  }
}
@media (width <= 768px) {
  .l-footer .l-footer__btn .c-btn--mail::after {
    width: min(42px, 7.4666666667vw);
    height: min(27px, 4.8vw);
    left: min(30px, 5.3333333333vw);
  }
}
.l-footer .l-footer__link {
  margin-top: 46px;
  font-size: 15px;
}
@media (width <= 1040px) {
  .l-footer .l-footer__link {
    margin-top: 4.4230769231vw;
    font-size: 1.4423076923vw;
  }
}
@media (width <= 768px) {
  .l-footer .l-footer__link {
    margin-top: min(36px, 6.4vw);
    font-size: min(22.5px, 4vw);
  }
}
.l-footer .l-footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
}
@media (width <= 1040px) {
  .l-footer .l-footer__nav ul {
    font-size: 1.4423076923vw;
    gap: 0.7692307692vw;
  }
}
@media (width <= 768px) {
  .l-footer .l-footer__nav ul {
    font-size: min(22.5px, 4vw);
    gap: min(12px, 2.1333333333vw);
  }
}
.l-footer .l-footer__nav--2 {
  margin-top: 16px;
}
@media (width <= 1040px) {
  .l-footer .l-footer__nav--2 {
    margin-top: 1.5384615385vw;
  }
}
@media (width <= 768px) {
  .l-footer .l-footer__nav--2 ul {
    margin-top: 2.6666666667vw;
  }
}
.l-footer .l-footer__nav-title {
  margin: 0;
  color: #447782;
  font-weight: 700;
  font-size: 15px;
}
@media (width <= 1040px) {
  .l-footer .l-footer__nav-title {
    font-size: 1.4423076923vw;
  }
}
@media (width <= 768px) {
  .l-footer .l-footer__nav-title {
    font-size: min(22.5px, 4vw);
  }
}
.l-footer .l-footer__copy {
  text-align: center;
  background: #36B4C1;
  padding: 7px;
}
.l-footer .l-footer__copy p {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}
@media (width <= 1040px) {
  .l-footer .l-footer__copy p {
    font-size: 1.3461538462vw;
  }
}
@media (width <= 768px) {
  .l-footer .l-footer__copy p {
    font-size: min(18px, 3.2vw);
  }
}

.l-section {
  padding-top: 80px;
}
@media (width <= 768px) {
  .l-section {
    padding-top: min(96px, 17.0666666667vw);
  }
}
.l-section--mt {
  margin-top: 80px;
}
@media (width <= 768px) {
  .l-section--mt {
    margin-top: min(96px, 17.0666666667vw);
  }
}
.l-section--fst{
	padding-top:60px;
}
@media (width <= 768px) {
  .l-section--fst {
    padding-top: min(60px, 10.6666666667vw);
  }
}

.l-section__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  align-items: center;
  justify-content: center;
}
@media (width <= 768px) {
  .l-section__inner {
    padding: 0 40px;
  }
}
@media (width <= 480px) {
  .l-section__inner {
    padding: 0 20px;
  }
}

.l-top h2 {
  margin: 0;
}
.l-top h3 {
  margin: 0;
}
.l-top p {
  margin: 0;
}
@media (width <= 768px) {
  .l-top {
    padding-top: 64px;
  }
}

.l-flex {
  display: flex;
  gap: 40px;
}
@media (width <= 768px) {
  .l-flex {
    flex-direction: column;
  }
}

.l-page {
  padding-bottom: 80px;
}
@media (width <= 768px) {
  .l-page {
    padding-bottom: 40px;
  }
}

.c-column {
  display: flex;
}

.c-col {
  display: flex;
}

.c-col20 {
  width: 20%;
}

.c-col30 {
  width: 30;
}

.c-col50 {
  width: 50%;
}

.c-col70 {
  width: 70%;
}

.c-col80 {
  width: 80%;
}

.c-grid {
  display: grid;
}

.c-grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.c-grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (width <= 768px) {
  .c-grid3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media (width <= 1040px) {
  .c-gridlg4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (width <= 1040px) {
  .c-gridlg3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (width <= 1040px) {
  .c-gridlg2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <= 768px) {
  .c-gridmd3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (width <= 768px) {
  .c-gridmd2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <= 768px) {
  .c-gridmd1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-card {
  padding: 2rem;
}

.c-title {
  color: #447782;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  position: relative;
}
@media (width <= 1040px) {
  .c-title {
    font-size: 2.6923076923vw;
  }
}
@media (width <= 768px) {
  .c-title {
    font-size: min(31.5px, 5.6vw);
  }
}

.c-entitle {
  color: #97C7C4;
  text-align: center;
  font-family: "Fenix", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 10px;
}
@media (width <= 1040px) {
  .c-entitle {
    font-size: 1.7307692308vw;
  }
}
@media (width <= 768px) {
  .c-entitle {
    font-size: min(24px, 4.2666666667vw);
    padding-bottom: 0;
  }
}

.c-ptitle {
  position: relative;
  color: #447782;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  padding-left: 20px;
}
.c-ptitle::after {
  left: 0;
  top: 0;
  content: "";
  position: absolute;
  width: 8px;
  height: 100%;
  background: #36B4BF;
}

.c-highlight {
  font-size: 16px;
  font-weight: 700;
}
@media (width <= 768px) {
  .c-highlight {
    font-size: min(24px, 4.2666666667vw);
  }
}
.c-highlight--green {
  color: #36B4BF;
}

.c-gradient {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  background: linear-gradient(90deg, #33B3AB 0%, #3AB4DB 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
@media (width <= 768px) {
  .c-gradient {
    font-size: 5.3333333333vw;
  }
}

.c-head {
  position: relative;
  padding-bottom: 36px;
}
@media (width <= 1040px) {
  .c-head {
    padding-bottom: 3.4615384615vw;
  }
}
@media (width <= 768px) {
  .c-head {
    padding-bottom: min(30px, 5.3333333333vw);
  }
}
.c-head::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 1px;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  background: #37B4C5;
}
@media (width <= 768px) {
  .c-head::after {
    width: min(120px, 21.3333333333vw);
  }
}

.c-hidden {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.c-marker {
  background-image: linear-gradient(#fffd3e, #fffd3e);
  background-position: 0 92%;
  background-repeat: no-repeat;
  background-size: 100% 0.4em;
  display: inline;
  padding-bottom: 0.2em;
}

.c-decorator:after, .c-decorator:before {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(-90deg, currentColor 50%, rgba(0, 0, 0, 0) 0);
  background-size: 6px 6px;
  content: "";
  display: inline-block;
  height: 2px;
  width: 1.2em;
}

.c-decorator::after {
  transform: translate(0.2em, -0.3em) rotate(-45deg);
}

.c-decorator::before {
  transform: translate(-0.2em, -0.3em) rotate(45deg);
}

.c-baloon {
  text-align: center;
  color: #ffffff;
  background-color: #858585;
  border-radius: 2rem;
  padding: 1.2rem 0;
  margin-bottom: 3.8rem;
  position: relative;
}

.c-baloon::after {
  content: "";
  width: 2.8rem;
  height: 3.2rem;
  background-color: #858585;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.c-gnav {
  height: 70px;
  width: 100%;
  background: #fff;
  z-index: 999;
  transition: top 0.5s ease;
  position: inherit;
  top: -70px;
}
@media (width <= 768px) {
  .c-gnav {
    display: none;
  }
}

.c-gnav.active {
  background: rgba(195, 233, 238, 0.8);
  transition: all 0.5s ease;
  top: 0;
  position: fixed;
}
.c-gnav.active:hover {
  background: #fff;
}

.c-gnav.acc-active {
  background: #fff;
}

.c-gnav__nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.c-gnav__nav .c-gnav__list {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 17px;
}
@media (width <= 1040px) {
  .c-gnav__nav .c-gnav__list {
    font-size: 1.6346153846vw;
    gap: 3.0769230769vw;
  }
}
.c-gnav__nav li a {
  padding: 8px 10px;
}

.c-gnav__acc {
  display: none;
  top: 100%;
  left: 0;
  position: absolute;
  background: #fff;
  width: 100%;
  z-index: 98;
  padding: 20px 10px 54px 10px;
}

.c-gnav__acc-warap {
  display: flex;
  max-width: 1040px;
  margin: 0 auto;
}

.c-gnav__acc-head {
  flex-basis: 280px;
}

.c-gnav__list {
  flex-wrap: wrap;
}

.c-gnav__acc-titlewrap {
  padding: 0 20px;
  position: relative;
}
.c-gnav__acc-titlewrap::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(90deg, #33B3AB 0%, #3AB4DB 100%);
}

.c-gnav__acc-title {
  color: #447782;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.c-gav__acc-entitle {
  color: #9DD0CD;
  font-family: Fenix;
  font-size: 17px;
  font-weight: 400;
  margin: 0;
}

.c-nav__sbmenu {
  cursor: pointer;
  padding: 10px 8px;
}

.c-gnav__sublist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  row-gap: 26px;
}
.c-gnav__sublist li {
  min-width: 224px;
  max-width: 100%;
}
.c-gnav__sublist li:hover {
  color: #36B4BF;
}
.c-gnav__sublist i {
  color: #36B4BF;
  margin-right: 8px;
}

.c-gnav__body {
  flex: 1;
}

.c-crt {
  position: relative;
}
.c-crt::after {
  content: "";
  position: absolute;
  bottom: -6px;
  transform: translateY(-50%);
  left: 0%;
  background: linear-gradient(90deg, #33B3AB 0%, #3AB4DB 100%);
  width: 95%;
  height: 2px;
}

.c-backtop {
  position: fixed;
  bottom: 40px;
  right: 80px;
  width: 80px;
  height: 80px;
  aspect-ratio: 1;
  background: linear-gradient(90deg, rgba(51, 179, 171, 0.7) 0%, rgba(58, 180, 219, 0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  z-index: 97;
  cursor: pointer;
}
@media (width <= 1040px) {
  .c-backtop {
    width: 7.6923076923vw;
    height: 7.6923076923vw;
    right: 5.7692307692vw;
    bottom: 3.8461538462vw;
  }
}
@media (width <= 768px) {
  .c-backtop {
    width: min(75px, 13.3333333333vw);
    height: min(75px, 13.3333333333vw);
    right: min(15px, 2.6666666667vw);
    bottom: min(15px, 2.6666666667vw);
  }
}
.c-backtop i {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 32px;
}
@media (width <= 1040px) {
  .c-backtop i {
    font-size: 3.8461538462vw;
  }
}

.c-box {
  border: 1px solid #36B4BF;
  padding: 40px 62px;
}
@media (width <= 768px) {
  .c-box {
    padding: 20px 32px;
  }
}
.c-box .c-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.c-box .c-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (width <= 768px) {
  .c-box .c-item {
    flex-direction: column;
    gap: 10px;
  }
}
.c-box .c-left {
  background: #36B4BF;
  color: #fff;
  width: 116px;
  height: 117px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
@media (width <= 768px) {
  .c-box .c-left {
    width: 100%;
    height: auto;
    padding: 10px;
  }
}
.c-box .c-right {
  flex: 1;
}

.c-form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  gap: 14px;
}

.c-form__group {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 16px;
}

.c-form__label {
  color: #447782;
  line-height: 1.8;
}

.c-form__required {
  border-radius: 5px;
  background: #E2736C;
  padding: 2px 8px;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  margin-right: 10px;
}

.c-form__input {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #C8C8C8;
  background: #FFF;
  flex-shrink: 0;
  padding: 8px 17px;
  line-height: 1.8;
}

.c-form__textarea {
  border-radius: 5px;
  border: 1px solid #C8C8C8;
  background: #FFF;
  padding: 8px 17px;
  line-height: 1.8;
  height: 200px;
}

.c-form__submit {
  transition: all 0.3s;
  cursor: pointer;
  color: #FFF;
  font-weight: 700;
  border: none;
  margin-top: 25px;
  max-width: 500px;
  width: 100%;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0px;
  background: linear-gradient(90deg, #33B3AB 0%, #3AB4DB 100%);
  border-radius: 5px;
}
.c-form__submit:hover {
  opacity: 0.8;
}

.c-tabel {
  margin: 0 auto;
  max-width: 780px;
  width: 100%;
  border-collapse: collapse;
}

.c-table__row {
  border: 1px solid #BCD7DD;
}

.c-table__header {
  background-color: #36B4BF;
  color: #fff;
  padding: 10px 20px;
  border-bottom: 1px solid #BCD7DD;
  line-height: 2;
  width: 192px;
}
@media (width <= 768px) {
  .c-table__header {
    width: 105px;
    padding: 10px;
    font-size: 15px;
  }
}

.c-table__data {
  padding: 10px 40px;
  border-bottom: 1px solid #BCD7DD;
  line-height: 1.8;
}
@media (width <= 768px) {
  .c-table__data {
    font-size: 15px;
    padding: 10px 14px;
  }
}

.c-tabel__note {
  font-size: 14px;
}
@media (width <= 768px) {
  .c-tabel__note {
    font-size: 13px;
  }
}

.c-table__ul ul {
  margin: 0.25em 0 0.25em 0;
  padding-inline-start: 1.7em;
}
@media (width <= 768px) {
  .c-table__ul ul {
    padding-inline-start: 1.2em;
  }
}
.c-table__ul li::marker {
  font-size: 0.8em;
}
@media (width <= 768px) {
  .c-table__ul li::marker {
    font-size: 0.6em;
  }
}

.c-service__items {
  margin-top: 40px;
  row-gap: 30px;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
@media (width <= 1040px) {
  .c-service__items {
    row-gap: 2.8846153846vw;
    -moz-column-gap: 4.8076923077vw;
         column-gap: 4.8076923077vw;
  }
}
@media (width <= 768px) {
  .c-service__items {
    margin: 0 auto;
    padding: 0;
    row-gap: min(19.5px, 3.4666666667vw);
    margin-top: min(60px, 10.6666666667vw);
  }
}

.p-mservice__item {
  max-width: 310px;
  width: 100%;
}
@media (width <= 768px) {
  .p-mservice__item {
    max-width: min(472.5px, 84vw);
  }
}

.c-service__btn {
  height: 100%;
  max-height: 74px;
  width: 100%;
  font-size: 19px;
  font-weight: 700;
}
@media (width <= 1040px) {
  .c-service__btn {
    font-size: 1.8269230769vw;
  }
}
@media (width <= 768px) {
  .c-service__btn {
    font-size: min(25.5px, 4.5333333333vw);
    height: auto;
    max-height: min(150px, 26.6666666667vw);
  }
}
.c-service__btn a {
  transition: all 0.3s;
padding: 8px 28px 8px 8px;
}

.c-service__link {
  margin: 0 auto;
  margin-top: 55px;
  width: 283px;
  line-height: 62px;
  font-size: 18px;
  font-weight: 700;
}
@media (width <= 768px) {
  .c-service__link {
    margin-top: 8.5333333333vw;
    line-height: min(82.5px, 14.6666666667vw);
    font-size: min(24px, 4.2666666667vw);
    width: min(384px, 68.2666666667vw);
  }
}

.c-service__text {
  margin-top: 16px;
  line-height: 1.45;
	display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (width <= 1040px) {
  .c-service__text {
    font-size: 1.5384615385vw;
  }
}
@media (width <= 768px) {
  .c-service__text {
    font-size: min(24px, 4.2666666667vw);
    padding-top: 2.6666666667vw;
    margin-top: 1.0666666667vw;
  }
}

.c-service__bottom-link {
  margin-top: 16px;
  text-align: right;
  margin-right: 8px;
}
.c-service__bottom-link a {
  color: #36b4bf;
  position: relative;
  padding-left: 1em;
}
.c-service__bottom-link a::after {
  content: "";
  position: absolute;
  bottom: 1px;
  height: 1px;
  width: 100%;
  left: 0;
  background: #36b4bf;
}
.c-service__bottom-link a::before {
  content: "";
  background: url(../img/icon-arrow-blue.svg) no-repeat center center/cover;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  transform: translateY(-50%);
  top: 55%;
}

.c-chklist {
  list-style: none;
  margin-top: 20px;
  margin-left: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 17px;
  color: #516968;
  font-weight: 700;
}
@media (width <= 1040px) {
  .c-chklist {
    margin-top: 1.9230769231vw;
    margin-left: 4.6153846154vw;
    gap: 1.1538461538vw;
    font-size: 1.6346153846vw;
  }
}
@media (width <= 768px) {
  .c-chklist {
    font-size: min(24px, 4.2666666667vw);
    line-height: 1.6;
    gap: min(18px, 3.2vw);
    margin-left: 0;
    margin-top: min(30px, 5.3333333333vw);
    padding-left: 8vw;
  }
}
.c-chklist li {
  position: relative;
}
.c-chklist li::after {
  content: "";
  position: absolute;
  background: url(../img/icon-chk.svg) no-repeat center center/cover;
  width: 20px;
  height: 14px;
  left: -2em;
  transform: translateY(-50%);
  top: 50%;
}
@media (width <= 1040px) {
  .c-chklist li::after {
    width: 1.9230769231vw;
    height: 1.3461538462vw;
  }
}
@media (width <= 768px) {
  .c-chklist li::after {
    width: min(22.5px, 4vw);
    height: min(15px, 2.6666666667vw);
    transform: translateY(0%);
    top: 0.5em;
    left: -1.5em;
  }
}

.c-form__group:has(.error) .c-form__input {
  border: 1px solid #ED9494;
  background: #FFE7E7;
}

.c-form__group:has(.error) .c-form__textarea {
  border: 1px solid #ED9494;
  background: #FFE7E7;
}

.c-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-profile .c-profile__role {
  font-family: "Shippori Mincho B1", serif;
}
.c-profile .c-profile__info {
  margin-top: 8px;
  text-align: center;
}
.c-profile .c-profile__name {
  font-size: 24px;
  font-weight: 700;
}
.c-profile .c-profile__name--en {
  font-size: 17px;
  color: #9DD0CD;
  font-family: "Fenix", serif;
}
@media (width <= 768px) {
  .c-profile .c-profile__img {
    width: min(291px, 51.7333333333vw);
  }
}
@media (width <= 768px) {
  .c-profile {
    flex-direction: column-reverse;
    gap: min(30px, 5.3333333333vw);
  }
}

.u-pb {
  padding-bottom: 100px;
}
@media (width <= 1040px) {
  .u-pb {
    padding-bottom: 9.6153846154vw;
  }
}
@media (width <= 768px) {
  .u-pb {
    padding-bottom: 16vw;
  }
}

.u-mt {
  margin-top: 40px;
}
@media (width <= 768px) {
  .u-mt {
    margin-top: 5.3333333333vw;
  }
}

.c-pagination {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 60px;
}
@media (width <= 768px) {
  .c-pagination {
    margin-top: 10.6666666667vw;
  }
}
.c-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid #B2C8CB;
  background: #FFF;
  color: #333;
  text-decoration: none;
  font-weight: 400;
  margin: 0;
}
.c-pagination .page-numbers:hover {
  opacity: 0.8;
}
.c-pagination .current {
  border: 1px solid #B2C8CB;
  background: #36B4BF;
  color: #FFF;
  font-weight: 600;
}
.c-pagination img {
  width: 20px;
  height: 18px;
  margin-left: 5px;
}
.c-pagination .dots {
  background: none;
  border: none;
}

.c-btn {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  width: 100%;
}

.c-btn__container {
  line-height: 48px;
}

.c-btn--pry {
  color: #fff;
  background: linear-gradient(90deg, #33B3AB 0%, #3AB4DB 100%);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.c-btn--pry:hover {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.c-btn--yellow {
  color: #FFF;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  background: #CFAF3C;
  font-weight: 700;
  position: relative;
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, filter 0.5s ease;
}
.c-btn--yellow::after {
  content: "";
  position: absolute;
  background: url(../img/icno-arrow-right-wh.svg) no-repeat center center/cover;
  transform: translateY(-50%);
  top: 50%;
  right: 16px;
  width: 24px;
  height: 12px;
}
@media (width <= 1040px) {
  .c-btn--yellow::after {
    width: 2.3076923077vw;
    height: 1.1538461538vw;
    right: 1.5384615385vw;
  }
}
@media (width <= 768px) {
  .c-btn--yellow::after {
    width: min(36px, 6.4vw);
    height: min(18px, 3.2vw);
    right: min(24px, 4.2666666667vw);
  }
}
.c-btn--yellow:hover {
  opacity: 1;
  transform: scale(1.06);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  filter: brightness(1.07);
}
.c-btn--yellow:hover::after {
  transform: translateY(-50%) translateX(4px);
}

.c-btn--green {
  color: #FFF;
  background: #36B4BF;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  position: relative;
}
@media (width <= 768px) {
  .c-btn--green {
    min-height: min(75px, 13.3333333333vw);
    padding-top: min(18px, 3.2vw);
    padding-bottom: min(18px, 3.2vw);
  }
}
.c-btn--green::after {
  content: "";
  position: absolute;
  background: url(../img/icno-arrow-right-wh.svg) no-repeat center center/cover;
  transform: translateY(-50%);
  top: 50%;
  right: 16px;
  width: 24px;
  height: 12px;
}
@media (width <= 1040px) {
  .c-btn--green::after {
    right: 1.5384615385vw;
    width: 2.3076923077vw;
    height: 1.1538461538vw;
  }
}
@media (width <= 768px) {
  .c-btn--green::after {
    right: min(24px, 4.2666666667vw);
    width: min(36px, 6.4vw);
    height: min(18px, 3.2vw);
  }
}
.c-btn--green:hover {
  opacity: 1;
  transform: scale(1.06);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  filter: brightness(1.07);
}
.c-btn--green:hover::after {
  transform: translateY(-50%) translateX(4px);
}

.c-btn--green2 {
  color: #fff;
  background: #36B4BF;
  border: 1px solid #B2C8CB;
  text-decoration: none !important;
  color: #fff !important;
}

.c-btn--next {
  border: 1px solid #B2C8CB;
  background: #FFF;
}

.c-btn--wh {
  background: #fff;
  color: #36B4BF;
}

.c-btn--mail {
  position: relative;
  padding-left: 36px;
}
@media (width <= 768px) {
  .c-btn--mail {
    padding-left: min(60px, 10.6666666667vw);
  }
}
.c-btn--mail::after {
  content: "";
  position: absolute;
  background: url(../img/icon-mail.svg) no-repeat center center/cover;
  width: 31px;
  height: 18px;
  left: 24px;
  transform: translateY(-50%);
  top: 50%;
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.25));
}
@media (width <= 1040px) {
  .c-btn--mail::after {
    left: 2.3076923077vw;
  }
}
@media (width <= 1040px) {
  .c-btn--mail::after {
    width: 2.9807692308vw;
    height: 1.7307692308vw;
    left: 2.3076923077vw;
  }
}
@media (width <= 768px) {
  .c-btn--mail::after {
    left: 6.4vw;
    width: min(30px, 5.3333333333vw);
    height: min(30px, 5.3333333333vw);
  }
}

.c-btn--mailgr {
  position: relative;
  padding-left: 42px;
  transition: all 0.3s ease;
}
@media (width <= 1040px) {
  .c-btn--mailgr {
    padding-left: 4.0384615385vw;
  }
}
@media (width <= 768px) {
  .c-btn--mailgr {
    padding-left: min(36px, 6.4vw);
  }
}
.c-btn--mailgr::after {
  content: "";
  position: absolute;
  background: url(../img/icon-mail-gr.svg) no-repeat center center/cover;
  width: 28px;
  height: 20px;
  left: 53px;
  transform: translateY(-50%);
  top: 50%;
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.25));
}
@media (width <= 1040px) {
  .c-btn--mailgr::after {
    width: 2.5961538462vw;
    height: 1.8269230769vw;
    left: 5.0961538462vw;
  }
}
@media (width <= 768px) {
  .c-btn--mailgr::after {
    width: min(36px, 6.4vw);
    height: min(25.5px, 4.5333333333vw);
  }
}
.c-btn--mailgr:hover {
  opacity: 1;
  background: #36B4BF;
  box-shadow: 0px 0px 50px 0px rgba(255, 255, 255, 0.8);
  color: #fff;
}
.c-btn--mailgr:hover::after {
  background: url(../img/icon-mail-wh-lg.svg) no-repeat center center/cover;
}

.p-mfv {
  background: url(../img/img-mfv.jpg) no-repeat center center/cover;
  width: 100%;
  height: 490px;
}
@media (width <= 1040px) {
  .p-mfv {
    height: 47.1153846154vw;
  }
}
@media (width <= 768px) {
  .p-mfv {
    height: min(690px, 122.6666666667vw);
    background: url(../img/img-mfv-sp.jpg) no-repeat center center/cover;
  }
}
.p-mfv .l-section__inner {
  position: relative;
  max-width: 1080px;
}
.p-mfv .p-mfv__img {
  width: 304px;
}
@media (width <= 1040px) {
  .p-mfv .p-mfv__img {
    width: min(304px, 29.2307692308vw);
  }
}
@media (width <= 768px) {
  .p-mfv .p-mfv__img {
    position: absolute;
    bottom: 0;
    left: min(-51px, -9.0666666667vw);
    width: min(334.5px, 59.4666666667vw);
  }
}
.p-mfv .p-mfv__content {
  position: absolute;
  top: 84px;
  left: 300px;
}
@media (width <= 1040px) {
  .p-mfv .p-mfv__content {
    left: min(300px, 28.8461538462vw);
  }
}
@media (width <= 768px) {
  .p-mfv .p-mfv__content {
    top: min(51px, 9.0666666667vw);
    left: 0;
    width: 100%;
  }
}
.p-mfv .p-mfv__lable {
  background: linear-gradient(90deg, rgba(51, 179, 171, 0.7) 0%, rgba(58, 180, 219, 0.7) 100%);
  display: inline-block;
  max-width: 700px;
  width: 100%;
  padding: 10px 24px 14px;
  color: #FFF;
  font-size: 31px;
  font-weight: 800;
  text-shadow: 0px 0px 6px rgba(10, 48, 48, 0.6);
}
@media (width <= 1040px) {
  .p-mfv .p-mfv__lable {
    max-width: 67.3076923077vw;
    padding: 0.9615384615vw 2.3076923077vw 1.3461538462vw;
    font-size: 2.9807692308vw;
  }
}
@media (width <= 768px) {
  .p-mfv .p-mfv__lable {
    width: 100%;
    text-align: center;
    max-width: 100%;
    font-size: 5.3333333333vw;
    padding: min(13.5px, 2.4vw) min(24px, 4.2666666667vw) min(10.5px, 1.8666666667vw) min(24px, 4.2666666667vw);
  }
}
.p-mfv .p-mv__textwrap {
  position: relative;
  z-index: 1;
}
@media (width <= 768px) {
  .p-mfv .p-mv__textwrap {
    width: 62.6666666667vw;
    height: min(375px, 66.6666666667vw);
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: min(52.5px, 9.3333333333vw);
  }
}
@media (width <= 768px) {
  .p-mfv .p-mv__textwrap::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 50px 0px 0px 50px;
    background: rgba(255, 255, 255, 0.7);
    filter: blur(10px);
  }
}
.p-mfv .p-mfv__lg-text {
  text-shadow: 0px 0px 10px #FFF;
  font-size: 36px;
  letter-spacing: 2.16px;
  margin-left: 80px;
  margin-top: 34px;
}
@media (width <= 1040px) {
  .p-mfv .p-mfv__lg-text {
    font-size: 3.4615384615vw;
    letter-spacing: 0.2076923077vw;
    margin-left: 7.6923076923vw;
    margin-top: 3.2692307692vw;
  }
}
@media (width <= 768px) {
  .p-mfv .p-mfv__lg-text {
    font-size: min(36px, 6.4vw);
    font-weight: 400;
    letter-spacing: 1.56px;
    margin-left: 0;
  }
}
.p-mfv .p-mfv__lg-text span {
  font-size: 46px;
  letter-spacing: 2.76px;
}
@media (width <= 1040px) {
  .p-mfv .p-mfv__lg-text span {
    font-size: min(46px, 4.4230769231vw);
    letter-spacing: 0.2653846154vw;
  }
}
@media (width <= 768px) {
  .p-mfv .p-mfv__lg-text span {
    font-size: min(36px, 6.4vw);
    font-weight: 400;
    letter-spacing: 1.56px;
  }
}
.p-mfv .p-mfv__text {
  margin-top: 18px;
  margin-left: 80px;
  font-size: 24px;
}
@media (width <= 1040px) {
  .p-mfv .p-mfv__text {
    font-size: 2.5vw;
    margin-top: 1.7307692308vw;
    margin-left: 7.6923076923vw;
  }
}
@media (width <= 768px) {
  .p-mfv .p-mfv__text {
    font-size: min(25.5px, 4.5333333333vw);
    margin-left: 0;
    margin-top: 1.6vw;
  }
}

.p-mabout {
  margin-top: 68px;
}
@media (width <= 768px) {
  .p-mabout {
    margin-top: min(60px, 10.6666666667vw);
  }
}
.p-mabout .p-mabout__box {
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(102, 165, 161, 0.44);
  padding: 24px 78px 48px 78px;
}
@media (width <= 1040px) {
  .p-mabout .p-mabout__box {
    padding: 2.3076923077vw 7.5vw 4.6153846154vw 7.5vw;
  }
}
@media (width <= 768px) {
  .p-mabout .p-mabout__box {
    padding: min(30px, 5.3333333333vw) 2.6666666667vw min(45px, 8vw);
    max-width: min(720px, 128vw);
  }
}
.p-mabout .p-mabout__box-head {
  text-align: center;
}
.p-mabout .c-title {
  color: #447782;
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  position: relative;
  display: inline;
  padding-bottom: 6px;
}
@media (width <= 1040px) {
  .p-mabout .c-title {
    font-size: 3.0769230769vw;
  }
}
@media (width <= 768px) {
  .p-mabout .c-title {
    font-size: min(33px, 5.8666666667vw);
  }
}
.p-mabout .c-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  left: 50%;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #7EDCD6 0%, #8DDBF4 100%);
}
.p-mabout .p-about__box-body {
  margin-top: 42px;
}
@media (width <= 1040px) {
  .p-mabout .p-about__box-body {
    margin-top: 4.0384615385vw;
  }
}
@media (width <= 768px) {
  .p-mabout .p-about__box-body {
    margin-top: min(40.5px, 7.2vw);
  }
}
.p-mabout .p-about__box-body p {
  font-size: 16px;
}
@media (width <= 1040px) {
  .p-mabout .p-about__box-body p {
    font-size: 1.5384615385vw;
  }
}
@media (width <= 768px) {
  .p-mabout .p-about__box-body p {
    font-size: min(24px, 4.2666666667vw);
  }
}
.p-mabout .c-entitle {
  padding-bottom: 4px;
}
.p-mabout .c-chklist {
  margin-top: 20px;
  margin-left: 75px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 18px;
  color: #516968;
  font-weight: 700;
}
@media (width <= 1040px) {
  .p-mabout .c-chklist {
    margin-top: 1.9230769231vw;
    margin-left: 7.2115384615vw;
    gap: 1.1538461538vw;
    font-size: 1.7307692308vw;
  }
}
@media (width <= 768px) {
  .p-mabout .c-chklist {
    font-size: min(25.5px, 4.5333333333vw);
    line-height: 1.6;
    gap: min(18px, 3.2vw);
    margin-left: min(6px, 1.0666666667vw);
    margin-top: min(30px, 5.3333333333vw);
  }
}
.p-mabout .p-mabou__items {
  margin-top: 55px;
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (width <= 1040px) {
  .p-mabout .p-mabou__items {
    margin-top: 5.2884615385vw;
    gap: 4.8076923077vw;
  }
}
@media (width <= 768px) {
  .p-mabout .p-mabou__items {
    flex-direction: column;
    gap: min(15px, 2.6666666667vw);
  }
}
.p-mabout .p-mabout__item {
  border-radius: 50%;
  background: #D8F2F2;
  width: 280px;
  height: 280px;
  aspect-ratio: 1;
  padding: 50px 23px;
}
@media (width <= 1040px) {
  .p-mabout .p-mabout__item {
    width: 26.9230769231vw;
    height: 26.9230769231vw;
    padding: 4.8076923077vw 2.2115384615vw;
  }
}
@media (width <= 768px) {
  .p-mabout .p-mabout__item {
    width: min(427.5px, 76vw);
    height: min(427.5px, 76vw);
    padding: min(75px, 13.3333333333vw) min(42px, 7.4666666667vw);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.p-mabout .p-mabout__title {
  display: flex;
  justify-content: center;
  white-space: nowrap;
  color: #0D838A;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
}
@media (width <= 1040px) {
  .p-mabout .p-mabout__title {
    font-size: 1.9230769231vw;
  }
}
@media (width <= 768px) {
  .p-mabout .p-mabout__title {
    font-size: min(27px, 4.8vw);
  }
}
.p-mabout .p-mabout__text {
  margin-top: 14px;
  line-height: 1.45;
  padding: 0 5px;
}
@media (width <= 1040px) {
  .p-mabout .p-mabout__text {
    margin-top: 1.3461538462vw;
    padding: 0 0.4807692308vw;
    font-size: 1.5384615385vw;
  }
}
@media (width <= 768px) {
  .p-mabout .p-mabout__text {
    font-size: min(24px, 4.2666666667vw);
  }
}
.p-mabout .p-mabout__btn {
  margin: 0 auto;
  margin-top: 55px;
  width: 283px;
  line-height: 62px;
  font-size: 18px;
  font-weight: 700;
}
@media (width <= 1040px) {
  .p-mabout .p-mabout__btn {
    margin-top: 5.2884615385vw;
    width: 27.2115384615vw;
    line-height: 5.9615384615vw;
    font-size: 1.7307692308vw;
  }
}
@media (width <= 768px) {
  .p-mabout .p-mabout__btn {
    width: min(384px, 68.2666666667vw);
    font-size: min(24px, 4.2666666667vw);
    line-height: min(82.5px, 14.6666666667vw);
    margin-top: min(42px, 7.4666666667vw);
  }
}

@media (width <= 768px) {
  .p-profile {
    padding-top: min(60px, 10.6666666667vw);
    padding-bottom: min(79.5px, 14.1333333333vw);
  }
}
.p-profile .l-section__content {
  margin-top: 32px;
}
@media (width <= 768px) {
  .p-profile .l-section__content {
    margin-top: min(30px, 5.3333333333vw);
  }
}
.p-profile .p-profile__box {
  display: flex;
  align-items: flex-start;
  gap: 58px;
  padding: 0 48px;
}
@media (width <= 1040px) {
  .p-profile .p-profile__box {
    gap: 5.5769230769vw;
    padding: 0 4.6153846154vw;
  }
}
@media (width <= 768px) {
  .p-profile .p-profile__box {
    flex-direction: column-reverse;
    padding: 0 min(12px, 2.1333333333vw);
    gap: min(57px, 10.1333333333vw);
  }
}
.p-profile .p-profile__left {
  width: 63%;
}
@media (width <= 1040px) {
  .p-profile .p-profile__left {
    width: 52.8846153846vw;
  }
}
@media (width <= 768px) {
  .p-profile .p-profile__left {
    width: 100%;
  }
}
.p-profile .p-profile__head {
  position: relative;
  padding-left: 24px;
}
@media (width <= 768px) {
  .p-profile .p-profile__head {
    padding-left: min(30px, 5.3333333333vw);
  }
}
.p-profile .p-profile__head::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background: linear-gradient(180deg, #33B3AB 0%, #3AB4DB 100%);
}
@media (width <= 1040px) {
  .p-profile .p-profile__head::after {
    width: 0.9615384615vw;
  }
}
@media (width <= 768px) {
  .p-profile .p-profile__head::after {
    width: min(12px, 2.1333333333vw);
  }
}
.p-profile .p-profile__name {
  font-size: 24px;
  font-weight: 700;
}
@media (width <= 1040px) {
  .p-profile .p-profile__name {
    font-size: 2.3076923077vw;
  }
}
@media (width <= 768px) {
  .p-profile .p-profile__name {
    font-size: min(27px, 4.8vw);
  }
}
.p-profile .p-profile__en-name {
  color: #9DD0CD;
  font-family: Fenix;
  font-size: 17px;
}
@media (width <= 1040px) {
  .p-profile .p-profile__en-name {
    font-size: 1.6346153846vw;
  }
}
@media (width <= 768px) {
  .p-profile .p-profile__en-name {
    font-size: min(19.5px, 3.4666666667vw);
  }
}
.p-profile .p-profile__body {
  margin-top: 26px;
  line-height: 1.8;
}
@media (width <= 1040px) {
  .p-profile .p-profile__body {
    margin-top: 2.5vw;
    line-height: 1.6;
  }
}
.p-profile .p-profile__block {
  margin-top: 26px;
}
@media (width <= 768px) {
  .p-profile .p-profile__block {
    margin-top: 6.9333333333vw;
  }
}
.p-profile .p-profile__block-img {
  max-width: 320px;
  width: 100%;
  margin-top: 16px;
}
@media (width <= 1040px) {
  .p-profile .p-profile__text {
    font-size: 1.5384615385vw;
  }
}
@media (width <= 768px) {
  .p-profile .p-profile__text {
    font-size: min(22.5px, 4vw);
  }
}
.p-profile .p-profile__text--sm {
  font-size: 15px;
}
@media (width <= 1040px) {
  .p-profile .p-profile__text--sm {
    font-size: 1.4423076923vw;
  }
}
@media (width <= 768px) {
  .p-profile .p-profile__text--sm {
    font-size: min(21px, 3.7333333333vw);
  }
}
.p-profile .p-profile__right {
  flex: 1;
}
@media (width <= 768px) {
  .p-profile .p-profile__right {
    width: 100%;
  }
}
.p-profile .p-profile__img {
  margin-top: 84px;
  max-width: 300px;
  width: 100%;
  height: auto;
  position: relative;
}
@media (width <= 1040px) {
  .p-profile .p-profile__img {
    margin-top: 8.0769230769vw;
    width: 28.8461538462vw;
    height: auto;
  }
}
@media (width <= 768px) {
  .p-profile .p-profile__img {
    width: min(267px, 47.4666666667vw);
    height: auto;
    margin: 0 auto;
  }
}
.p-profile .p-profile__img img {
  position: relative;
  z-index: 1;
}
.p-profile .p-profile__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #33B3AB 0%, #3AB4DB 100%);
  z-index: 0;
  opacity: 0.1;
  transform: translate(40px, 40px);
  box-shadow: 0 0 0 10px white;
}
@media (width <= 1040px) {
  .p-profile .p-profile__img::after {
    transform: translate(3.8461538462vw, 3.8461538462vw);
  }
}
.p-profile .p-profile__subtitle {
  margin-top: 30px;
  color: #447782;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
@media (width <= 1040px) {
  .p-profile .p-profile__subtitle {
    font-size: 1.9230769231vw;
    margin-top: 2.8846153846vw;
  }
}
@media (width <= 768px) {
  .p-profile .p-profile__subtitle {
    font-size: min(27px, 4.8vw);
    margin-top: min(30px, 5.3333333333vw);
  }
}
.p-profile .p-profile__subtitle::after {
  content: "";
  position: absolute;
  right: -128px;
  top: 50%;
  height: 1px;
  width: 112px;
  background: #37B4C5;
  transform: translateY(-50%);
}
@media (width <= 1040px) {
  .p-profile .p-profile__subtitle::after {
    right: -12.3076923077vw;
    width: 10.7692307692vw;
  }
}
@media (width <= 768px) {
  .p-profile .p-profile__subtitle::after {
    right: min(-136.5px, -24.2666666667vw);
    width: min(168px, 29.8666666667vw);
  }
}
.p-profile .p-profile__dl {
  margin: 0;
  margin-top: 6px;
  padding: 0 22px;
}
@media (width <= 1040px) {
  .p-profile .p-profile__dl {
    margin-top: 0.5769230769vw;
    padding: 0 2.1153846154vw;
    font-size: 1.5384615385vw;
  }
}
@media (width <= 768px) {
  .p-profile .p-profile__dl {
    font-size: min(22.5px, 4vw);
    padding: 0;
    margin-top: min(6px, 1.0666666667vw);
  }
}
.p-profile .p-profile__dl dd {
  margin: 0;
  line-height: 1.8;
}
.p-profile .p-profile__dl dt {
  margin: 0;
  flex-basis: 65px;
  line-height: 1.8;
}
@media (width <= 1040px) {
  .p-profile .p-profile__dl dt {
    flex-basis: 6.25vw;
  }
}
@media (width <= 768px) {
  .p-profile .p-profile__dl dt {
    flex-basis: min(87px, 15.4666666667vw);
  }
}
.p-profile .p-profile__dl .p-profile__dl-item {
  display: flex;
}

.p-mvideo {
  background: #fff;
  padding-top: 90px;
  padding-bottom: 45px;
}
@media (width <= 768px) {
  .p-mvideo {
    padding-top: min(76.5px, 13.6vw);
    padding-bottom: min(52.5px, 9.3333333333vw);
  }
}
.p-mvideo .l-section__content {
  margin-top: 40px;
}
@media (width <= 768px) {
  .p-mvideo .l-section__content {
    margin-top: 5.3333333333vw;
  }
}
.p-mvideo .p-mvideo__items {
  gap: 35px;
}
.p-mvideo .p-mvideo__item {
  width: 100%;
  max-width: 310px;
  height: auto;
  background: #D9D9D9;
}
@media (width <= 768px) {
  .p-mvideo .p-mvideo__item {
    max-width: 80%;
    margin: 0 auto;
  }
}
.p-mvideo .p-mvideo__btn {
  margin: 0 auto;
  margin-top: 80px;
  width: 283px;
  line-height: 62px;
  font-size: 18px;
  font-weight: 700;
}
@media (width <= 768px) {
  .p-mvideo .p-mvideo__btn {
    margin-top: min(120px, 21.3333333333vw);
    line-height: min(82.5px, 14.6666666667vw);
    font-size: min(24px, 4.2666666667vw);
    width: min(384px, 68.2666666667vw);
  }
}

.p-voice .l-section__content {
  margin-top: 40px;
  padding: 0 14px;
}
@media (width <= 1040px) {
  .p-voice .l-section__content {
    padding: 0 1.3461538462vw;
  }
}
@media (width <= 768px) {
  .p-voice .l-section__content {
    margin-top: min(37.5px, 6.6666666667vw);
    padding: 0 min(12px, 2.1333333333vw);
  }
}
.p-voice .p-voice__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (width <= 1040px) {
  .p-voice .p-voice__items {
    gap: 3.8461538462vw;
  }
}
@media (width <= 768px) {
  .p-voice .p-voice__items {
    gap: min(75px, 13.3333333333vw);
  }
}
.p-voice .p-voice__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media (width <= 1040px) {
  .p-voice .p-voice__item {
    gap: 1.9230769231vw;
  }
}
@media (width <= 768px) {
  .p-voice .p-voice__item {
    flex-direction: column;
    gap: min(15px, 2.6666666667vw);
  }
}
.p-voice .p-voice__left {
  width: 130px;
}
@media (width <= 1040px) {
  .p-voice .p-voice__left {
    width: 12.5vw;
  }
}
@media (width <= 768px) {
  .p-voice .p-voice__left {
    width: 100%;
  }
}
.p-voice .p-voice__img {
  width: 100%;
  height: 160px;
  background: #D9D9D9;
}
@media (width <= 1040px) {
  .p-voice .p-voice__img {
    height: 15.3846153846vw;
  }
}
@media (width <= 768px) {
  .p-voice .p-voice__img {
    margin: 0 auto;
    width: min(157.5px, 28vw);
    height: min(195px, 34.6666666667vw);
  }
}
.p-voice .p-voice__name {
  font-size: 14px;
  margin-top: 5px;
  text-align: center;
  line-height: 1.8;
}
@media (width <= 1040px) {
  .p-voice .p-voice__name {
    font-size: 1.3461538462vw;
    margin-top: 0.4807692308vw;
  }
}
@media (width <= 768px) {
  .p-voice .p-voice__name {
    font-size: min(21px, 3.7333333333vw);
  }
}
.p-voice .p-voice__right {
  flex: 1;
  line-height: 1.8;
  border: 1px solid #9CD3D7;
  background: #fff;
  padding: 20px;
  position: relative;
}
@media (width <= 1040px) {
  .p-voice .p-voice__right {
    padding: 1.9230769231vw;
  }
}
@media (width <= 768px) {
  .p-voice .p-voice__right {
    padding: min(12px, 2.1333333333vw) 2.6666666667vw;
    line-height: 1.6;
  }
}
.p-voice .p-voice__right::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #33B3AB 0%, #3AB4DB 100%);
  z-index: -1;
  transform: translate(14px, 14px);
  opacity: 0.2;
  box-shadow: 0 0 0 10px white;
}
@media (width <= 1040px) {
  .p-voice .p-voice__right p {
    font-size: 1.5384615385vw;
  }
}
@media (width <= 768px) {
  .p-voice .p-voice__right p {
    font-size: min(22.5px, 4vw);
  }
}

.p-cta {
  background: url(../img/img-mcta-bg.png) no-repeat center center/cover;
  width: 100%;
  height: 370px;
  padding: 38px 0;
}
@media (width <= 1040px) {
  .p-cta {
    height: 35.5769230769vw;
    padding: 3.6538461538vw 0;
  }
}
@media (width <= 768px) {
  .p-cta {
    background: url(../img/img-cta-bg-sp.png) no-repeat center center/cover;
    height: 87.2vw;
  }
}
.p-cta .p-cta__inner {
  display: flex;
  align-items: center;
}
.p-cta .l-section__content {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  height: 295px;
  background: rgba(0, 0, 0, 0.1);
  padding: 33px 20px 34px;
}
@media (width <= 1040px) {
  .p-cta .l-section__content {
    height: 28.3653846154vw;
    padding: 3.1730769231vw 40px 3.2692307692vw;
  }
}
@media (width <= 768px) {
  .p-cta .l-section__content {
    padding: 33px 20px 34px;
    min-height: 71.2vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.p-cta .p-mcta__title {
  color: #FFF;
  text-align: center;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 16px;
}
@media (width <= 1040px) {
  .p-cta .p-mcta__title {
    font-size: 3.0769230769vw;
  }
}
@media (width <= 768px) {
  .p-cta .p-mcta__title {
    font-size: 5.3333333333vw;
  }
}
.p-cta .p-mcta__text {
  margin-top: 14px;
  text-align: center;
  color: #FFF;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}
@media (width <= 1040px) {
  .p-cta .p-mcta__text {
    margin-top: 1.3461538462vw;
    font-size: 1.6346153846vw;
  }
}
@media (width <= 768px) {
  .p-cta .p-mcta__text {
    margin: 0 auto;
    font-size: min(24px, 4.2666666667vw);
    text-align: left;
  }
}
.p-cta .p-mcta__btn {
  margin: 0 auto;
  margin-top: 28px;
  line-height: 73px;
  width: 303px;
  font-size: 20px;
  font-weight: 700;
}
@media (width <= 1040px) {
  .p-cta .p-mcta__btn {
    margin-top: 2.6923076923vw;
    width: 29.1346153846vw;
    font-size: 1.9230769231vw;
    line-height: 7.0192307692vw;
  }
}
@media (width <= 768px) {
  .p-cta .p-mcta__btn {
    margin-top: 5.3333333333vw;
    font-size: min(27px, 4.8vw);
    width: min(375px, 66.6666666667vw);
    line-height: min(97.5px, 17.3333333333vw);
  }
}

.p-blog {
  padding-top: 90px;
  padding-bottom: 45px;
}
@media (width <= 768px) {
  .p-blog {
    padding-top: min(52.5px, 9.3333333333vw);
    padding-bottom: min(52.5px, 9.3333333333vw);
  }
}
.p-blog .l-section__content {
  margin-top: 40px;
}
@media (width <= 768px) {
  .p-blog .l-section__content {
    margin-top: min(37.5px, 6.6666666667vw);
  }
}
.p-blog .p-mblog__items {
  gap: 35px;
}
@media (width <= 1040px) {
  .p-blog .p-mblog__items {
    gap: 3.3653846154vw;
  }
}
.p-blog .c-card {
  border: 1px solid #ABD2D4;
}
.p-blog .slick-slide {
  margin: 10px;
}
.p-blog .c-card__en-title {
  color: #9DD0CD;
  font-family: Fenix;
  font-size: 17px;
}
@media (width <= 1040px) {
  .p-blog .c-card__en-title {
    font-size: 1.6346153846vw;
  }
}
@media (width <= 768px) {
  .p-blog .c-card__en-title {
    font-size: min(25.5px, 4.5333333333vw);
  }
}
.p-blog .c-card__title {
  font-weight: 700;
  line-height: 1.4;
  font-size: 16px;
}
@media (width <= 1040px) {
  .p-blog .c-card__title {
    font-size: 1.5384615385vw;
  }
}
@media (width <= 768px) {
  .p-blog .c-card__title {
    font-size: min(24px, 4.2666666667vw);
  }
}
.p-blog .c-card__body {
  margin-top: 10px;
}
@media (width <= 1040px) {
  .p-blog .c-card__body {
    margin-top: 0.9615384615vw;
  }
}
@media (width <= 768px) {
  .p-blog .c-card__body {
    margin-top: 3.2vw;
  }
}
.p-blog .c-card__text {
  line-height: 1.63;
}
@media (width <= 1040px) {
  .p-blog .c-card__text {
    font-size: 1.5384615385vw;
  }
}
@media (width <= 768px) {
  .p-blog .c-card__text {
    font-size: min(22.5px, 4vw);
  }
}
.p-blog .c-card__day {
  text-align: right;
  color: #447782;
  font-weight: 700;
}
@media (width <= 1040px) {
  .p-blog .c-card__day {
    font-size: 1.5384615385vw;
  }
}
@media (width <= 768px) {
  .p-blog .c-card__day {
    font-size: min(22.5px, 4vw);
  }
}
.p-blog .c-card {
  padding: 12px 14px;
}
@media (width <= 1040px) {
  .p-blog .c-card {
    padding: 1.1538461538vw 1.3461538462vw;
  }
}
@media (width <= 768px) {
  .p-blog .c-card {
    padding: min(15px, 2.6666666667vw);
  }
}
.p-blog .p-mblog__btn {
  margin: 0 auto;
  margin-top: 55px;
  width: 247px;
  line-height: 62px;
  font-size: 18px;
  font-weight: 700;
}
@media (width <= 1040px) {
  .p-blog .p-mblog__btn {
    margin-top: 5.2884615385vw;
    width: 23.75vw;
    line-height: 5.9615384615vw;
    font-size: 1.7307692308vw;
  }
}
@media (width <= 768px) {
  .p-blog .p-mblog__btn {
    width: min(336px, 59.7333333333vw);
    line-height: min(82.5px, 14.6666666667vw);
    font-size: min(24px, 4.2666666667vw);
    margin-top: min(70.5px, 12.5333333333vw);
  }
}
.p-blog .slick-dots li button:before {
  line-height: min(15px, 2.6666666667vw);
  font-size: min(12px, 2.1333333333vw);
  color: #D9D9D9;
  opacity: 1;
}
.p-blog .slick-dots .slick-active button:before {
  color: #A2D4D0;
}
.p-blog .slick-dots li {
  margin: 0 min(0px, 0vw);
}
.p-blog .slide-arrow {
  position: absolute;
  width: min(75px, 13.3333333333vw);
  height: min(75px, 13.3333333333vw);
  transform: translateY(-50%);
  top: 50%;
  z-index: 2;
}
.p-blog .prev-arrow {
  left: min(-12px, -2.1333333333vw);
}
.p-blog .next-arrow {
  right: min(-12px, -2.1333333333vw);
}

.p-macc {
  padding-top: 45px;
  padding-bottom: 210px;
}
@media (width <= 768px) {
  .p-macc {
    padding-top: min(45px, 8vw);
    padding-bottom: min(165px, 29.3333333333vw);
  }
}
.p-macc .l-section__content {
  margin-top: 40px;
  display: flex;
  gap: 26px;
}
@media (width <= 1040px) {
  .p-macc .l-section__content {
    gap: 2.5vw;
  }
}
@media (width <= 768px) {
  .p-macc .l-section__content {
    flex-direction: column;
    margin-top: min(40.5px, 7.2vw);
    gap: min(48px, 8.5333333333vw);
  }
}
.p-macc .p-macc__title {
  font-size: 20px;
  font-weight: 700;
}
@media (width <= 1040px) {
  .p-macc .p-macc__title {
    font-size: 1.9230769231vw;
  }
}
@media (width <= 768px) {
  .p-macc .p-macc__title {
    font-size: min(27px, 4.8vw);
  }
}
.p-macc .p-macc__item {
  margin-top: 14px;
}
.p-macc .p-macc__item:first-child {
  margin-top: 15px;
}
@media (width <= 1040px) {
  .p-macc .p-macc__item:first-child {
    margin-top: 1.4423076923vw;
  }
}
@media (width <= 768px) {
  .p-macc .p-macc__item:first-child {
    margin-top: min(15px, 2.6666666667vw);
  }
}
@media (width <= 1040px) {
  .p-macc .p-macc__item {
    margin-top: 1.3461538462vw;
  }
}
@media (width <= 768px) {
  .p-macc .p-macc__item {
    margin-top: min(15px, 2.6666666667vw);
  }
}
@media (width <= 1040px) {
  .p-macc .p-macc__item p {
    font-size: 1.5384615385vw;
  }
}
@media (width <= 768px) {
  .p-macc .p-macc__item p {
    font-size: min(22.5px, 4vw);
    line-height: 1.8;
  }
}
.p-macc .p-macc__subtitle {
  color: #447782;
  font-weight: 700;
  line-height: 1.8;
}
@media (width <= 1040px) {
  .p-macc .p-macc__subtitle {
    font-size: 1.5384615385vw;
  }
}
@media (width <= 768px) {
  .p-macc .p-macc__subtitle {
    font-size: min(22.5px, 4vw);
  }
}
.p-macc .p-macc__right {
  width: 545px;
  height: 330px;
}
@media (width <= 1040px) {
  .p-macc .p-macc__right {
    width: 52.4038461538vw;
    height: 31.7307692308vw;
  }
}
@media (width <= 768px) {
  .p-macc .p-macc__right {
    width: 100%;
    height: min(360px, 64vw);
  }
}
.p-macc .p-macc__right iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.p-macc .p-macc__left {
  flex: 1;
}
@media (width <= 768px) {
  .p-macc .p-macc__left {
    width: 100%;
  }
}

@media (width <= 768px) {
  .p-faq {
    padding-top: min(60px, 10.6666666667vw);
    padding-bottom: min(52.5px, 9.3333333333vw);
  }
}
.p-faq .l-section__content {
  margin: 0 auto;
  margin-top: 35px;
  max-width: 720px;
}
@media (width <= 768px) {
  .p-faq .l-section__content {
    max-width: none;
    padding: 0 min(12px, 2.1333333333vw);
    margin-top: 20px;
  }
}
.p-faq .p-faq__box {
  max-width: 1000px;
  background: #EDF9F8;
  padding: 52px 20px 104px 20px;
}
.p-faq .c-faq {
  cursor: pointer;
  border-bottom: 1px solid #88D7E1;
}
.p-faq .c-faq__q {
  padding: 3px 0;
  position: relative;
  display: flex;
}
.p-faq .c-faq__q .c-faq__icon {
  background: #36B4BF;
}
.p-faq .c-faq__q .c-faq__icon span {
  color: #fff;
}
.p-faq .c-faq__a-warp {
  padding: 3px 0;
  position: relative;
}
@media (width <= 768px) {
  .p-faq .c-faq__a-warp {
    padding: min(7.5px, 1.3333333333vw) 0;
  }
}
.p-faq .c-faq__a-warp::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 670px;
  height: 1px;
  background: #CADADF;
}
@media (width <= 1040px) {
  .p-faq .c-faq__a-warp::after {
    width: 64.4230769231vw;
  }
}
@media (width <= 768px) {
  .p-faq .c-faq__a-warp::after {
    width: min(429px, 76.2666666667vw);
  }
}
.p-faq .c-faq__a {
  display: flex;
}
.p-faq .c-faq__a .c-faq__icon {
  background: #C9EAF1;
}
.p-faq .c-faq__a .c-faq__icon span {
  color: #4C9CAD;
}
.p-faq .c-faq__a-warp {
  display: none;
}
.p-faq .c-faq__icon {
  width: 48px;
  height: 48px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-family: "Fenix", serif;
}
@media (width <= 1040px) {
  .p-faq .c-faq__icon {
    width: 4.6153846154vw;
    height: 4.6153846154vw;
    font-size: 2.4038461538vw;  
  }
}
@media (width <= 768px) {
  .p-faq .c-faq__icon {
    width: min(48px, 8.5333333333vw);
    height: min(48px, 8.5333333333vw);
    font-size: min(22.5px, 4vw);
    min-width: min(48px, 8.5333333333vw);
	  margin-top:min(7.5px, 1.33333vw);
  }
}
.p-faq .c-faq__toggle {
  position: absolute;
  right: 8px;
  top: 45%;
  transform: translateY(-50%);
}
@media (width <= 1040px) {
  .p-faq .c-faq__toggle {
    width: 1.9230769231vw;
  }
}
@media (width <= 768px) {
  .p-faq .c-faq__toggle {
    width: min(12px, 2.1333333333vw);
  }
}
.p-faq .c-faq.is-open img {
  content: url("../img/icon-minus.svg");
}
.p-faq .c-faq__text {
  padding: 14px 22px;
}
@media (width <= 1040px) {
  .p-faq .c-faq__text {
    padding: 1.3461538462vw 2.1153846154vw;
    font-size: 1.5384615385vw;
  }
}
@media (width <= 768px) {
  .p-faq .c-faq__text {
    font-size: min(22.5px, 4vw);
    padding: min(7.5px, 1.3333333333vw) min(36px, 6.4vw) min(3px, 0.5333333333vw) min(18px, 3.2vw);
  }
}

@media (width <= 768px) {
  .l-page {
    padding-top: min(96px, 17.0666666667vw);
  }
}
.l-page h2, .l-page h3, .l-page p {
  margin: 0;
}
.l-page .l-page__fv {
  height: 140px;
  background: linear-gradient(90deg, #33B3AD 0%, #37B4C5 21%, #37B4C5 81%, #34B3AF 100%);
  padding: 24px 0 36px 0;
}
@media (width <= 768px) {
  .l-page .l-page__fv {
    height: 140px;
  }
}
.l-page .l-page__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  align-items: center;
  justify-content: center;
}
@media (width <= 768px) {
  .l-page .l-page__inner {
    padding: 0 min(30px, 5.3333333333vw);
    max-width: min(720px, 128vw);
  }
}
.l-page .l-page__fv-head {
  position: relative;
  color: #fff;
  padding-left: 25px;
}
@media (width <= 768px) {
  .l-page .l-page__fv-head {
    padding-left: 25px;
  }
}
.l-page .l-page__fv-head::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 85px;
  left: 0;
  top: 0;
  background: #fff;
}
@media (width <= 768px) {
  .l-page .l-page__fv-head::after {
    height: 85px;
  }
}
.l-page .l-page__fv-head--service {
  height: 85px;
  display: flex;
  align-items: center;
}
@media (width <= 768px) {
  .l-page .l-page__fv-head--service {
    height: 85px;
  }
}
.l-page .l-page__en {
  font-size: 18px;
  font-family: "Fenix", serif;
  padding-top: 8px;
}
@media (width <= 768px) {
  .l-page .l-page__en {
    font-size: 18px;
  }
}
.l-page .l-page__title {
  font-size: 28px;
  font-weight: 800;
  margin: 0;
}
@media (width <= 768px) {
  .l-page .l-page__title {
    font-size: 28px;
  }
}
.l-page .l-page__head {
  margin-top: 55px;
}
@media (width <= 768px) {
  .l-page .l-page__head {
    margin-top: 55px;
  }
}
.l-page .l-page__img {
  width: 420px;
  height: 280px;
  margin: 0 auto;
}
@media (width <= 768px) {
  .l-page .l-page__img {
    max-width: 320px;
    width: 100%;
    height: auto;
  }
}
.l-page .l-page__desc {
  margin-top: 30px;
  line-height: 2;
}

.p-about .p-about__box {
  max-width: 780px;
  margin: 0 auto;
  margin-top: 57px;
  line-height: 1.8;
}
.p-about .p-about__service {
  margin-top: 120px;
}
.p-about .p-about__item {
  margin-top: 50px;
}
.p-about .p-about__block {
  margin-top: 23px;
}
.p-about .p-about__block:first-child {
  margin-top: 16px;
}
.p-about .p-about__block-title {
  display: inline-flex;
  padding: 5px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid #36B4BF;
  background: #FFF;
  color: #36B4BF;
}
.p-about .p-about__block-text {
  margin-top: 10px;
  margin-left: 20px;
  line-height: 1.8;
}
@media (width <= 768px) {
  .p-about .p-about__block-text {
    margin-left: 5px;
  }
}
.p-about .p-about__note {
  margin-top: 42px;
  font-size: 15px;
}

.p-about__office .l-section__content {
  max-width: 520px;
  margin: 0 auto;
  margin-top: 50px;
}
@media (width <= 768px) {
  .p-about__office .l-section__content {
    padding: 0 min(12px, 2.1333333333vw);
  }
}
.p-about__office .p-about__dl {
  margin: 0;
}
.p-about__office .p-about__dl-item {
  display: flex;
  padding: 26px 0;
  border-bottom: 1px solid #BCD7DD;
}
@media (width <= 768px) {
  .p-about__office .p-about__dl-item {
    padding: 10px 0;
  }
}
.p-about__office .p-about__dl-item dd {
  margin: 0;
  flex: 1;
}
.p-about__office .p-about__dl-item dt {
  color: #447782;
  font-weight: 700;
  margin: 0;
  flex-basis: 116px;
  flex-shrink: 0;
}
@media (width <= 768px) {
  .p-about__office .p-about__dl-item dt {
    flex-basis: 80px;
  }
}
.p-about__office .p-about__map-wrap {
  margin: 0 auto;
  margin-top: 25px;
  width: 520px;
  height: 340px;
}
@media (width <= 768px) {
  .p-about__office .p-about__map-wrap {
    max-width: 320px;
    width: 100%;
  }
}
.p-about__office .p-about__map {
  width: 100%;
  height: 100%;
}
.p-about__office .p-about__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.p-strengths .p-strengths__block {
  margin-top: 100px;
}
.p-strengths .p-specialty {
  margin-top: 68px;
}
.p-strengths .p-support {
  margin-bottom: 180px;
}
.p-strengths .c-col {
  gap: 40px;
  align-items: center;
}
@media (width <= 768px) {
  .p-strengths .c-col {
    flex-direction: column-reverse;
    gap: 24px;
    margin-top: 24px;
  }
}
.p-strengths .c-col__left {
  flex: 1;
  padding: 20px;
  line-height: 1.8;
}
@media (width <= 768px) {
  .p-strengths .c-col__left {
    padding: 0;
  }
}
.p-strengths .c-col__right {
  flex-shrink: 1;
  width: 280px;
  height: 377px;
}
@media (width <= 768px) {
  .p-strengths .c-col__right {
    width: 100%;
    max-height: 340px;
  }
  .p-strengths .c-col__right .c-img {
    height: 100%;
    max-height: 340px;
  }
  .p-strengths .c-col__right .c-img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

.p-process .p-process__box {
  background: linear-gradient(90deg, rgba(51, 179, 171, 0.4) 0%, rgba(58, 180, 219, 0.4) 100%);
  padding: 72px 145px;
  display: flex;
  flex-direction: column;
  gap: 46px;
  margin-top: 60px;
}
@media (width <= 1040px) {
  .p-process .p-process__box {
    margin-top: 5.7692307692vw;
  }
}
@media (width <= 768px) {
  .p-process .p-process__box {
    margin-top: 10.6666666667vw;
    padding: 24px 16px;
  }
}
.p-process .p-process__item {
  position: relative;
  background: #fff;
  display: flex;
  padding: 24px 35px 47px;
}
@media (width <= 768px) {
  .p-process .p-process__item {
    padding: 16px 24px 32px;
  }
}
.p-process .p-process__item::after {
  content: "";
  position: absolute;
  background: url(../img/icon-flow-arrow.svg) no-repeat center center/cover;
  width: 92px;
  height: 30px;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.p-process .p-process__item:last-child::after {
  content: "";
  display: none;
}
.p-process .p-process__left {
  flex-shrink: 0;
  width: 80px;
}
@media (width <= 768px) {
  .p-process .p-process__left {
    display: none;
  }
}
.p-process .p-process__num {
  font-size: 53px;
  color: #36B4BF;
  font-family: Fenix;
}
@media (width <= 768px) {
  .p-process .p-process__num {
    display: inline;
    font-size: 24px;
    margin-right: 10px;
  }
}
@media (width <= 768px) {
  .p-process .p-process__right {
    width: 100%;
  }
}
.p-process .p-process__lable {
  font-size: 18px;
  color: #36B4BF;
  font-weight: 700;
}
.p-process .p-process__desc {
  margin-top: 17px;
}
@media (width <= 768px) {
  .p-process .p-process__desc {
    margin-top: 8px;
  }
}
.p-process .p-contact .l-section__content {
  margin-top: 48px;
}

.p-recruit .p-jobinfo {
  margin-top: 87px;
}
.p-recruit .l-section__content {
  margin-top: 49px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.p-recruit .c-tabel {
  margin-top: 30px;
}
.p-recruit .p-app {
  margin-top: 197px;
  margin-bottom: 160px;
}

.p-single h1 {
  font-size: 23px;
  font-weight: 800;
  line-height: 2;
}
@media (width <= 768px) {
  .p-single h1 {
    line-height: 1.6;
  }
}
.p-single h2 {
  color: #447782;
  font-size: 22px;
  font-weight: 700;
  line-height: 2;
  position: relative;
  padding-left: 1em;
  margin: 32px 0 24px 0;
}
@media (width <= 768px) {
  .p-single h2 {
    margin: 16px 0 24px 0;
  }
}
.p-single h2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 6px;
  background: #36b4bf;
}
@media (width <= 768px) {
  .p-single h2::after {
    width: 4px;
  }
}
.p-single h3 {
  color: #447782;
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
  padding-bottom: 8px;
  margin: 24px 0;
  position: relative;
}
@media (width <= 768px) {
  .p-single h3 {
    margin: 18px 0;
  }
}
.p-single h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20%;
  height: 4px;
  background: #36b4bf;
}
.p-single h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: #d8ebed;
}
.p-single h4 {
  background: #1999a5;
  display: inline-flex;
  padding: 4px 24px;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  color: #FFF;
  margin: 24px 0;
}
@media (width <= 768px) {
  .p-single h4 {
    margin: 18px 0;
  }
}
.p-single h5 {
  color: #0098A6;
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
  position: relative;
  padding-left: 60px;
}
@media (width <= 768px) {
  .p-single h5 {
    padding-left: 10.6666666667vw;
  }
}
.p-single h5::after {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  width: 50px;
  height: 2px;
  background: #36B4BF;
}
@media (width <= 768px) {
  .p-single h5::after {
    width: 8vw;
  }
}
.p-single .p-single__date {
  color: #929292;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  text-align: right;
  display: block;
}
.p-single .p-post__thumbnail {
  max-width: 720px;
  margin: 0 auto;
  margin-top: 58px;
  margin-bottom: 58px;
}
@media (width <= 1040px) {
  .p-single .p-post__thumbnail {
    margin-top: 5.5769230769vw;
    margin-bottom: 5.5769230769vw;
  }
}
@media (width <= 768px) {
  .p-single .p-post__thumbnail {
    margin-top: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-single p {
  margin: 14px 0;
  line-height: 2;
}
@media (width <= 768px) {
  .p-single p {
    line-height: 1.6;
  }
}
.p-single a {
  color: #008F98;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.p-single ul {
  list-style: none;
  padding-left: 0.5em;
}
.p-single ul li {
  position: relative;
}
.p-single ul li::before {
  content: "・";
  left: 0;
  top: 0.6em;
}
.p-single .wp-block-image {
  margin: 40px 0;
}
@media (width <= 768px) {
  .p-single .wp-block-image {
    margin: 8.5333333333vw 0;
  }
}
.p-single .wp-block-image .wp-element-caption {
  color: #6A9EA3;
  font-weight: 700;
  font-size: 15px;
}
.p-single .wp-block-table {
  margin-top: 60px;
  max-width: 880px;
  margin-left: auto;
}
@media (width <= 768px) {
  .p-single .wp-block-table {
    margin-top: 10.6666666667vw;
  }
}
.p-single table {
  border-color: #BCD7DD;
}
.p-single table thead {
  background: #36B4BF;
  color: #fff;
  border-bottom: 1px solid #BCD7DD;
}
.p-single table tbody {
  border-color: #BCD7DD;
}
.p-single table th,
.p-single table td {
  padding: 10px;
  border: 1px solid #BCD7DD;
}
.p-single table figcaption {
  font-size: 15px;
}
.p-single blockquote {
  margin: 0;
  border-left: 8px solid #61C4CD;
  background: #F5FAFB;
  padding: 20px 28px;
}
.p-single .p-single__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 140px;
}
@media (width <= 768px) {
  .p-single .p-single__nav {
    margin-top: min(150px, 26.6666666667vw);
  }
}
.p-single .p-single__nav--service {
  justify-content: center;
}
.p-single .p-single__nav-archive {
  max-width: 188px;
  width: 100%;
  line-height: 47px;
}
@media (width <= 768px) {
  .p-single .p-single__nav-archive {
    max-width: 140px;
  }
}
.p-single .p-single__nav-prev,
.p-single .p-single__nav-next {
  max-width: 194px;
  width: 100%;
  line-height: 47px;
}
@media (width <= 1040px) {
  .p-single .p-single__nav-prev,
  .p-single .p-single__nav-next {
    max-width: 180px;
  }
}
@media (width <= 768px) {
  .p-single .p-single__nav-prev,
  .p-single .p-single__nav-next {
    max-width: min(135px, 24vw);
  }
}
.p-single .p-single__nav-prev a,
.p-single .p-single__nav-next a {
  border: 1px solid #B2C8CB;
  text-decoration: none !important;
  background: #FFF;
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  width: 100%;
}
.p-single .p-single__nav-prev a::after,
.p-single .p-single__nav-next a::after {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  width: 22px;
  height: 10px;
}
.p-single .p-single__nav-prev {
  margin-left: 24px;
}
@media (width <= 1040px) {
  .p-single .p-single__nav-prev {
    margin-left: 0;
  }
}
.p-single .p-single__nav-prev a {
  padding-left: 16px;
}
.p-single .p-single__nav-prev a::after {
  background: url(../img/icon-arrow-green-left.svg) no-repeat center center/cover;
  left: 16px;
}
@media (width <= 1040px) {
  .p-single .p-single__nav-prev a {
    padding-left: 8px;
  }
}
@media (width <= 768px) {
  .p-single .p-single__nav-prev a {
    padding-left: 2.1333333333vw;
  }
}
.p-single .p-single__nav-next {
  margin-right: 24px;
}
@media (width <= 1040px) {
  .p-single .p-single__nav-next {
    margin-right: 0;
  }
}
.p-single .p-single__nav-next a {
  padding-right: 16px;
}
.p-single .p-single__nav-next a::after {
  background: url(../img/icon-arrow-green-right.svg) no-repeat center center/cover;
  right: 16px;
}
@media (width <= 1040px) {
  .p-single .p-single__nav-next a {
    padding-right: 8px;
  }
}
@media (width <= 768px) {
  .p-single .p-single__nav-next a {
    padding-right: 2.1333333333vw;
  }
}

.p-problem .p-problem__box {
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(102, 165, 161, 0.44);
  padding: 24px 16px 48px 16px;
}
@media (width <= 1040px) {
  .p-problem .p-problem__box {
    padding: 20px 30px 30px 20px;
  }
}
@media (width <= 768px) {
  .p-problem .p-problem__box {
    padding: 20px 30px 30px 20px;
  }
}
.p-problem .p-problem__box-head {
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}
.p-problem .p-problem__box-head::after {
  content: "";
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  left: 50%;
  height: 2px;
  width: 50%;
  background: linear-gradient(90deg, #7edcd6 0%, #8ddbf4 100%);
}
.p-problem .p-problem__box-body {
  margin-top: 42px;
}
@media (width <= 1040px) {
  .p-problem .p-problem__box-body {
    margin-top: 4.0384615385vw;
  }
}
@media (width <= 768px) {
  .p-problem .p-problem__box-body {
    margin-top: min(30px, 5.3333333333vw);
  }
}
.p-problem .p-problem__box-body p {
  font-size: 16px;
}
@media (width <= 1040px) {
  .p-problem .p-problem__box-body p {
    font-size: 1.5384615385vw;
  }
}
@media (width <= 768px) {
  .p-problem .p-problem__box-body p {
    font-size: min(24px, 4.2666666667vw);
  }
}

.p-feature .p-feature__items {
  margin-top: 55px;
  display: flex;
  align-items: center;
justify-content: center;
gap: 50px;
}
@media (width <= 1040px) {
  .p-feature .p-feature__items {
    margin-top: 5.2884615385vw;
    gap: 4.8076923077vw;
  }
}
@media (width <= 768px) {
  .p-feature .p-feature__items {
    flex-direction: column;
    gap: min(15px, 2.6666666667vw);
  }
}
.p-feature .p-feature__item {
  border-radius: 50%;
  background: #d8f2f2;
  width: 280px;
  height: 280px;
  aspect-ratio: 1;
  padding: 50px 23px;
}
@media (width <= 1040px) {
  .p-feature .p-feature__item {
    width: 26.9230769231vw;
    height: 26.9230769231vw;
    padding: 4.8076923077vw 2.2115384615vw;
  }
}
@media (width <= 768px) {
  .p-feature .p-feature__item {
    width: min(427.5px, 76vw);
    height: min(427.5px, 76vw);
    padding: min(75px, 13.3333333333vw) min(42px, 7.4666666667vw);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.p-feature .p-feature__title {
  display: flex;
  justify-content: center;
  white-space: nowrap;
  color: #0d838a;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
}
@media (width <= 1040px) {
  .p-feature .p-feature__title {
    font-size: 1.9230769231vw;
  }
}
@media (width <= 768px) {
  .p-feature .p-feature__title {
    font-size: min(27px, 4.8vw);
  }
}
.p-feature .p-feature__text {
  margin-top: 14px;
  line-height: 1.45;
  padding: 0 5px;
}
@media (width <= 1040px) {
  .p-feature .p-feature__text {
    margin-top: 1.3461538462vw;
    padding: 0 0.4807692308vw;
    font-size: 1.5384615385vw;
  }
}
@media (width <= 768px) {
  .p-feature .p-feature__text {
    font-size: min(21px, 3.7333333333vw);
  }
}
.p-feature .p-feature__btn {
  margin: 0 auto;
  margin-top: 55px;
  width: 283px;
  line-height: 62px;
  font-size: 18px;
  font-weight: 700;
}
@media (width <= 1040px) {
  .p-feature .p-feature__btn {
    margin-top: 5.2884615385vw;
    width: 27.2115384615vw;
    line-height: 5.9615384615vw;
    font-size: 1.7307692308vw;
  }
}
@media (width <= 768px) {
  .p-feature .p-feature__btn {
    width: min(384px, 68.2666666667vw);
    font-size: min(24px, 4.2666666667vw);
    line-height: min(82.5px, 14.6666666667vw);
    margin-top: 7.4666666667vw;
  }
}

.p-greeting {
  background: #F3FCFA;
  padding-bottom: 80px;
}
@media (width <= 768px) {
  .p-greeting {
    padding-bottom: min(96px, 17.0666666667vw);
  }
}
.p-greeting .p-greeting__profile {
  flex: 0 0 18%;
}
.p-greeting .p-greeting__message {
  flex: 1;
}
.p-greeting .p-greeting__message p {
  line-height: 1.8;
}
@media (width <= 1040px) {
  .p-greeting .p-greeting__message p {
    font-size: 1.5384615385vw;
  }
}
@media (width <= 768px) {
  .p-greeting .p-greeting__message p {
    font-size: min(24px, 4.2666666667vw);
    line-height: 1.6;
  }
}
.p-greeting .p-greeting__content {
  gap: 40px;
}
@media (width <= 768px) {
  .p-greeting .p-greeting__content {
    gap: min(42px, 7.4666666667vw);
  }
}
.p-greeting .p-greeting__content {
  margin-top: 40px;
}
@media (width <= 768px) {
  .p-greeting .p-greeting__content {
    margin-top: min(30px, 5.3333333333vw);
  }
}

.p-vision {
  padding-bottom: 80px;
}
.p-vision .p-vision__content {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}
.p-vision .p-vision__main {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.p-vision .p-vision__main::before, .p-vision .p-vision__main::after {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}
@media (width <= 768px) {
  .p-vision .p-vision__main::before, .p-vision .p-vision__main::after {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
  }
}
.p-vision .p-vision__main::before {
  border-top: 1px solid #33B3AB;
  border-left: 1px solid #33B3AB;
  margin-right: 12px;
  margin-top: -56px;
}
@media (width <= 768px) {
  .p-vision .p-vision__main::before {
    margin-right: 0;
  }
}
.p-vision .p-vision__main::after {
  border-bottom: 1px solid #33B3AB;
  border-right: 1px solid #33B3AB;
  margin-left: 12px;
  margin-bottom: -56px;
}
@media (width <= 768px) {
  .p-vision .p-vision__main::after {
    margin-left: 0;
  }
}

.p-dental-office .p-dental-office__content {
  margin: 0 auto;
  margin-top: 30px;
  max-width: 800px;
  width: 100%;
}
.p-dental-office .p-dental-office__img {
  max-width: 420px;
  width: 100%;
  margin: 32px auto;
}

.p-blog-list {
  padding-bottom: 80px;
}
@media (width <= 768px) {
  .p-blog-list {
    padding-bottom: min(90px, 16vw);
  }
}
.p-blog-list .p-blog-list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  row-gap: 60px;
}
@media (width <= 768px) {
  .p-blog-list .p-blog-list__grid {
    grid-template-columns: 1fr;
  }
}
.p-blog-list .p-blog-list__item a {
  background: #fff;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.p-blog-list .p-blog-list__item a:hover {
  opacity: 0.8;
}
.p-blog-list .p-blog-list__item a:hover .p-blog-list__img-wrap img {
  transform: scale(1.06);
}
.p-blog-list .p-blog-list__item a .p-blog-list__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 200%;
  color: #447782;
  margin: 16px 0 8px;
}
.p-blog-list .p-blog-list__item a .p-blog-list__img-wrap {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.p-blog-list .p-blog-list__item a .p-blog-list__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.p-blog-list .p-blog-list__item a .p-blog-list__excerpt {
  line-height: 180%;
  color: #3A3A3A;
  margin: 0 0 8px;
}
.p-blog-list .p-blog-list__item a .p-blog-list__date {
  font-size: 15px;
  font-weight: 700;
  line-height: 180%;
  color: #929292;
  margin: 0 0 12px;
  padding: 0 12px;
  text-align: right;
}
.p-blog-list .p-blog-list__item a .p-blog-list__bottom {
  margin-top: auto;
}
.p-blog-list .p-blog-list__item a .p-blog-list__readmore {
  text-align: right;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #008F98;
  text-decoration: none;
  margin-left: 12px;
  margin-bottom: 16px;
  display: flex;
  justify-content: flex-end;
}
.p-blog-list .p-blog-list__item a .p-blog-list__readmore:hover {
  opacity: 0.8;
}
.p-blog-list .p-blog-list__item a .p-blog-list__readmore .p-blog-list__arrow {
  width: 16px;
  height: 16px;
}

.p-post h2 {
  color: #447782;
  font-size: 22px;
  font-weight: 700;
  line-height: 2;
  position: relative;
  padding-left: 1em;
  margin: 32px 0 14px;
}
@media (width <= 768px) {
  .p-post h2 {
    margin: 24px 0 8px;
  }
}
.p-post h2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 6px;
  background: #36B4BF;
}
@media (width <= 768px) {
  .p-post h2::after {
    width: 4px;
  }
}
.p-post ul {
  list-style: none;
  padding-left: 0.5em;
}
.p-post ul li {
  position: relative;
}
.p-post ul li::before {
  content: "・";
  left: 0;
  top: 0.6em;
}

.p-error404 {
  padding-bottom: 80px;
}/*# sourceMappingURL=style.css.map */