@charset "UTF-8";
/* Sanitize
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/**
 * 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; /* 4 */
  -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, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: normal;
}

/* 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).
 */
img {
  max-width: 100%;
  height: auto;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: top;
}

/**
 * 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 {
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
  color: inherit; /* 2 */
}

/**
 * 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;
}

/**
 * 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: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-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] {
  -ms-touch-action: manipulation; /* 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;
}

/**
 * Add
 */
dl dd {
  margin-left: 0;
}

figure {
  margin: 0;
}

table {
  table-layout: fixed;
}

menu {
  padding: 0;
}

picture {
  display: block;
}

p {
  margin: 0;
  padding: 0;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  img {
    width: 100%;
  }
}

/*--------------- form reset ------------*/
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  font-family: inherit;
  font-size: 100%;
  display: block;
  padding: 0;
  outline: none;
  margin: 0;
  border: none;
  background-color: transparent;
}
button:hover {
  opacity: 0.7;
  background-color: transparent;
}

input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  color: inherit;
}

input[type=checkbox], input[type=radio] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

label {
  position: relative;
  display: block;
  word-break: break-all;
}
label input[type=checkbox] + span {
  position: relative;
  padding-left: 15px;
}
label input[type=radio] + span {
  position: relative;
  padding-left: 25px;
}
label input[type=checkbox] + span::before {
  border-color: #1E2777;
}
label input[type=checkbox]:checked + span::before {
  background-color: #1E2777;
}
label input[type=checkbox]:checked + span::before {
  background-color: #fff;
}
label input[type=checkbox]:checked + span::after {
  border: 2px solid #313131;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
label input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 1px;
}
label input[type=checkbox] + span::before, label input[type=checkbox] + span::after {
  position: absolute;
  top: 7px;
  left: 0;
  display: inline-block;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
label input[type=checkbox] + span::before {
  z-index: 0;
  background-color: transparent;
  width: 12px;
  height: 12px;
  border: 0.1rem #313131 solid;
}
label input[type=checkbox] + span::after {
  z-index: 1;
  margin: 2px 4px;
  width: 6px;
  height: 9px;
}
label input[type=radio] + span::before {
  position: absolute;
  display: inline-block;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #686868;
  border-radius: 50%;
  z-index: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-color: transparent;
  width: 14px;
  height: 14px;
}
label input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 1px;
}
label input[type=radio]:checked + span::before {
  border-color: #007acc;
}
label input[type=radio]:checked + span::after {
  position: absolute;
  display: inline-block;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #007acc;
  border-radius: 50%;
  z-index: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 3px;
  width: 8px;
  height: 8px;
}

/*-------- text email tel ---------*/
input[type=text], input[type=email], input[type=tel], input[type=search], input[type=date] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}

input[type=button], input[type=submit] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}

button[type=submit], input[type=reset], button[type=button] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
}

/*-------- select ------------*/
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}

input[type=text], input[type=email], input[type=tel], input[type=date] {
  max-width: 100%;
}

textarea {
  width: 100%;
  max-width: 100%;
  resize: vertical;
  overflow: auto;
}

input[type=button] {
  color: #fff;
  border-style: none;
}
input[type=submit] {
  color: #fff;
  border-style: none;
}
input[type=submit]:hover {
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  input[type=text], input[type=email], input[type=tel] {
    width: 100%;
  }
  textarea {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  input[type=text], input[type=email], input[type=tel] {
    width: 100%;
  }
  textarea {
    width: 100%;
  }
}
::-webkit-input-placeholder {
  color: rgba(45, 44, 53, 0.5);
}
::-webkit-input-placeholder, ::-moz-placeholder, :-ms-input-placeholder, ::-ms-input-placeholder, ::placeholder {
  color: rgba(45, 44, 53, 0.5);
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 1439px) {
  html {
    font-size: 0.68vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.667vw;
  }
}

body {
  line-height: 1.2142857143;
  color: #333;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-break: strict;
}

dl, ul, ol {
  margin: 0;
  padding: 0;
}

img {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

label {
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  html {
    min-height: 100vh;
  }
  body {
    line-height: 2;
    min-width: 1%;
    position: relative;
    font-size: 7.4666666667vw;
    max-width: 100%;
  }
}
/* link
--------------------------------------------------*/
a {
  color: inherit;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a {
  /*&:hover,
  &:focus {
  	text-decoration: underline;
  }*/
}

@media print, screen and (min-width: 768px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
  a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover {
    opacity: 0.7;
  }
  .js-imgHover a:hover,
  .js-imgHover a:hover img {
    opacity: 1;
  }
  a,
  a * {
    outline: 1px solid transparent;
    outline: none;
  }
}
.m-ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  overflow: hidden;
}
.m-ggmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.m-youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.m-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.m-link-close {
  pointer-events: none;
}

.m-blk {
  color: #333;
}

.m-white {
  color: #ffffff;
}

.m-bold {
  font-weight: bold;
}

.m-roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
}

.m-relative {
  position: relative;
}

.m-text {
  font-size: 1.6rem;
  line-height: 2.2;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .m-text {
    font-size: 3.7333333333vw;
    line-height: 2;
  }
}

@media print, screen and (min-width: 768px) {
  a.m-tellink[href^="tel:"] {
    pointer-events: none;
  }
}
.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slick-slide {
  height: auto;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 1 !important;
}

.scroll-hint-icon {
  top: 50% !important;
  left: 50% !important;
  -webkit-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
  width: 15rem !important;
  height: 9.5rem !important;
  background: url(../images/common/img_scrollable.png) no-repeat center/cover !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.scroll-hint-icon::before, .scroll-hint-icon::after {
  display: none !important;
}
.scroll-hint-icon * {
  display: none;
}

.c-fadeup {
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
}
.c-fadeup.js-animeOn {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 1s ease;
  transition: transform 1s ease, opacity 1s ease, -webkit-transform 1s ease;
}

.js-animeOn.-delay1 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.js-animeOn.-delay2 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.js-animeOn.-delay3 {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

.c-btn {
  width: 60rem;
  max-width: 100%;
  height: 7rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 32rem;
    height: 5rem;
  }
}
.c-btn__inn {
  padding: 2.4rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2A706B;
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.3;
  font-weight: 700;
  background: #FFF;
  -webkit-box-shadow: 0 0.2rem 0.8rem 0 rgba(51, 51, 51, 0.4);
          box-shadow: 0 0.2rem 0.8rem 0 rgba(51, 51, 51, 0.4);
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .c-btn__inn {
    padding: 0 0;
    font-size: 1.6rem;
  }
}
.c-btn__inn::after {
  content: "";
  width: 1.3rem;
  height: 2rem;
  background-image: url(../images/common/arrow_right-g.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: block;
  position: absolute;
  right: 3.3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-btn__inn::after {
    width: 0.9rem;
    right: 1.3rem;
  }
}
.c-btn.-yellow .c-btn__inn {
  background: #FFF7C8;
}
.c-btn.-line .c-btn__inn {
  border: 2px solid #2A706B;
  -webkit-box-shadow: 0 2px 8px 0 rgba(23, 114, 114, 0.4);
          box-shadow: 0 2px 8px 0 rgba(23, 114, 114, 0.4);
}
.c-btn.-ma {
  margin-right: auto;
  margin-left: auto;
}

.c-secttl {
  text-align: center;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-secttl {
    font-size: 2.4rem;
  }
}
.c-secttl .small {
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .c-secttl .small {
    font-size: 1.8rem;
  }
}
.c-secttl .green {
  color: #177272;
}

.c-secttl-bar {
  position: relative;
  padding-bottom: 3.7rem;
}
@media screen and (max-width: 767px) {
  .c-secttl-bar {
    padding-bottom: 1.9rem;
  }
}
.c-secttl-bar .bar {
  display: block;
  width: 12rem;
  height: 0.4rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #116F6F), color-stop(50.01%, #2DB1B1), color-stop(85.1%, #2DB1B1));
  background: linear-gradient(90deg, #116F6F 50%, #2DB1B1 50.01%, #2DB1B1 85.1%);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .c-secttl-bar .bar {
    width: 9rem;
  }
}
.c-secttl-bar .bar.-white {
  background: #ffffff;
}

.c-opt {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .c-opt {
    padding: 3.2rem 0;
  }
  .c-opt .l-content-inner {
    padding: 0;
  }
}
.c-opt__btn {
  width: 77.6rem;
  max-width: 100%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .c-opt__btn {
    width: 95.7333333333vw;
  }
}
.c-opt__btn a,
.c-opt__btn img {
  display: block;
}
.c-opt__text {
  margin-bottom: 0.6rem;
  text-align: center;
  font-size: 2.4067rem;
  font-weight: 700;
  line-height: 1.29;
}
@media screen and (max-width: 767px) {
  .c-opt__text {
    font-size: 1.8rem;
  }
}
.c-opt__text2 {
  text-align: center;
  text-shadow: 0.3rem 0.3rem 0.1rem rgba(255, 255, 255, 0.75), -0.3rem 0.3rem 0.1rem rgba(255, 255, 255, 0.75), 0.3rem -0.3rem 0.1rem rgba(255, 255, 255, 0.75), -0.3rem -0.3rem 0.1rem rgba(255, 255, 255, 0.75), 0.3rem 0px 0.1rem rgba(255, 255, 255, 0.75), 0px 0.3rem 0.1rem rgba(255, 255, 255, 0.75), -0.3rem 0px 0.1rem rgba(255, 255, 255, 0.75), 0px -0.3rem 0.1rem rgba(255, 255, 255, 0.75);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-opt__text2 {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
  }
}
.c-opt__text2 .small {
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .c-opt__text2 .small {
    font-size: 1.8rem;
  }
}
.c-opt__text2 .green {
  color: #177272;
}
.c-opt__text2 .red {
  color: #C92222;
}
.c-opt__text3 {
  margin-top: 2.4rem;
  text-align: center;
  text-shadow: 0.2rem 0.2rem 0.1rem rgba(255, 255, 255, 0.75), -0.2rem 0.2rem 0.1rem rgba(255, 255, 255, 0.75), 0.2rem -0.2rem 0.1rem rgba(255, 255, 255, 0.75), -0.2rem -0.2rem 0.1rem rgba(255, 255, 255, 0.75), 0.2rem 0px 0.1rem rgba(255, 255, 255, 0.75), 0px 0.2rem 0.1rem rgba(255, 255, 255, 0.75), -0.2rem 0px 0.1rem rgba(255, 255, 255, 0.75), 0px -0.2rem 0.1rem rgba(255, 255, 255, 0.75);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.29;
  /* 2.3289rem */
}
@media screen and (max-width: 767px) {
  .c-opt__text3 {
    margin-top: 1.6rem;
    font-size: 1.6rem;
  }
}
.c-opt.-opt00 {
  padding: 3.4rem 0 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-opt.-opt00 {
    padding: 2.4rem 0 4.6rem;
  }
}
.c-opt.-opt01 {
  padding: 2.7rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-opt.-opt01 {
    padding-top: 3.2rem;
  }
}
.c-opt.-opt02 {
  background-color: #EEF7F7;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-opt.-opt02 {
    padding: 4rem 0;
  }
}
.c-opt.-opt02::before, .c-opt.-opt02::after {
  content: "";
  display: block;
  width: 25.1rem;
  height: 11.5rem;
  background-color: #B7B7B7;
  opacity: 0.15;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .c-opt.-opt02::before, .c-opt.-opt02::after {
    content: none;
  }
}
.c-opt.-opt02::before {
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.c-opt.-opt02::after {
  right: 0;
  bottom: 0;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.c-opt.-opt03 {
  padding: 4.9rem 0 8rem;
}
@media screen and (max-width: 767px) {
  .c-opt.-opt03 {
    padding: 2.4rem 0 3.2rem;
  }
}
.c-opt.-opt04 {
  padding: 4.2rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-opt.-opt04 {
    padding-top: 2.4rem;
  }
}
.c-opt.-opt05 {
  padding: 5.8rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-opt.-opt05 {
    padding-top: 4rem;
  }
}

.c-flow {
  padding-top: 8.1rem;
}
@media screen and (max-width: 767px) {
  .c-flow {
    padding-top: 2.8rem;
  }
}
.c-flow__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-flow__content {
    gap: 2.4rem;
  }
}
.c-flow__content .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #EFEFEF;
  position: relative;
}
.c-flow__content .item::after {
  content: "";
  display: block;
  width: 6rem;
  height: 2rem;
  background-color: #EFEFEF;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(95%);
          transform: translateX(-50%) translateY(95%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
@media screen and (max-width: 767px) {
  .c-flow__content .item::after {
    width: 4rem;
    height: 1.3rem;
  }
}
.c-flow__content .item:last-of-type::after {
  content: none;
}
.c-flow__content .item .img {
  width: 26rem;
}
@media screen and (max-width: 767px) {
  .c-flow__content .item .img {
    width: 10.9rem;
  }
}
.c-flow__content .item .cnt {
  width: calc(100% - 26rem);
  padding: 2rem 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-flow__content .item .cnt {
    width: calc(100% - 10.9rem);
    padding-left: 1rem;
    padding: 1.6rem 1rem;
  }
}
.c-flow__content .item .title {
  color: #177272;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-flow__content .item .title {
    font-size: 1.8rem;
  }
}
.c-flow__content .item .title .sub {
  display: inline-block;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 500;
  background-color: #059E9E;
  margin-left: 1.5rem;
  padding: 0.4em 1em 0.6em;
  vertical-align: top;
  letter-spacing: 0.05em;
  border-radius: 0.6em;
}
@media screen and (max-width: 767px) {
  .c-flow__content .item .title .sub {
    font-size: 1.2rem;
    margin: 0.6rem 0 0.4rem;
    padding-top: 0.5em;
  }
}
.c-flow__content .item .text {
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .c-flow__content .item .text {
    font-size: 1.4rem;
    margin-top: 0.5rem;
  }
}
.c-flow__content .item .note {
  margin-top: 0.4rem;
  color: #666;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-flow__content .item .note {
    font-size: 0.8rem;
  }
}

.c-contents-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .c-contents-list {
    margin-top: 3.2rem;
    gap: 2.9rem;
  }
}
.c-contents-list .item__inn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0.2rem 0.8rem 0 rgba(23, 114, 114, 0.4);
          box-shadow: 0 0.2rem 0.8rem 0 rgba(23, 114, 114, 0.4);
}
@media screen and (max-width: 767px) {
  .c-contents-list .item__inn {
    display: block;
  }
}
.c-contents-list .item .img {
  width: 36.6rem;
}
@media screen and (max-width: 767px) {
  .c-contents-list .item .img {
    width: 100%;
  }
}
.c-contents-list .item .cnt {
  width: calc(100% - 36.6rem);
  padding: 2rem 2.4rem 0 2.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-contents-list .item .cnt {
    width: 100%;
    padding: 1.6rem 1.6rem 5.2rem;
  }
}
.c-contents-list .item .title {
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-contents-list .item .title {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.c-contents-list .item .title .small {
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .c-contents-list .item .title .small {
    font-size: 1.8rem;
  }
}
.c-contents-list .item .title .green {
  color: #177272;
}
.c-contents-list .item .text {
  margin-top: 0.8rem;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-contents-list .item .text {
    margin-top: 0.4rem;
    font-size: 1.4rem;
  }
}
.c-contents-list .item .link {
  width: 26rem;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.2rem 2.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  background-color: #177272;
  color: #ffffff;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .c-contents-list .item .link {
    width: 100%;
    height: 3.6rem;
    font-size: 1.6rem;
    gap: 0.8rem;
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-contents-list .item .link .icon {
  width: 1.8rem;
  height: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-contents-list .item .link .arrow {
  width: 1rem;
  height: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .c-contents-list .item .link .arrow {
    position: absolute;
    right: 6rem;
  }
}

.c-faq {
  padding: 8.5rem 0 8.8rem;
}
@media screen and (max-width: 767px) {
  .c-faq {
    padding: 4rem 0 6.4rem;
  }
}
.c-faq__content {
  margin-top: 4rem;
  padding: 0 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-faq__content {
    gap: 1.6rem;
    margin-top: 3.2rem;
    padding: 0;
  }
}
.c-faq__box.is-open .c-faq__btn .toggle::after {
  opacity: 0;
}
.c-faq__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border: 1px solid #177272;
  background: #EEF7F7;
}
.c-faq__btn.js-acbtn {
  cursor: pointer;
}
@media print, screen and (min-width: 768px) {
  .c-faq__btn.js-acbtn {
    -webkit-transition: 0.3s opacity;
    transition: 0.3s opacity;
  }
  .c-faq__btn.js-acbtn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .c-faq__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.c-faq__btn .icon {
  border-radius: 0 0.8rem 0 0;
  border: 1px solid #177272;
  background: #177272;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 6.4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-faq__btn .icon {
    min-width: 3.5rem;
    font-size: 2rem;
  }
}
.c-faq__btn .title {
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  padding: 1.5rem 8rem 1.5rem 2rem;
}
@media screen and (max-width: 767px) {
  .c-faq__btn .title {
    font-size: 1.5rem;
    padding: 1.5rem 3.2rem 1.6rem 0.8rem;
    line-height: 1.4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-faq__btn .toggle {
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  right: 3.2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-faq__btn .toggle {
    width: 1.6rem;
    height: 1.6rem;
    right: 1.2rem;
  }
}
.c-faq__btn .toggle::before, .c-faq__btn .toggle::after {
  content: "";
  width: 100%;
  height: 0.2rem;
  background-color: #177272;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  position: absolute;
}
.c-faq__btn .toggle::after {
  width: 0.2rem;
  height: 100%;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
.c-faq__cnt {
  padding: 1.6rem 4rem 2rem;
  border: 1px solid #177272;
  border-top: none;
  background: #FFF;
}
@media screen and (max-width: 767px) {
  .c-faq__cnt {
    padding: 1.4rem 1.6rem;
  }
}
.c-faq__cnt .text {
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-faq__cnt .text {
    font-size: 1.4rem;
  }
}
.c-faq__cnt .text a {
  color: #177272;
  text-decoration: underline;
}
.c-faq .c-btn {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .c-faq .c-btn {
    margin-top: 3.2rem;
  }
}

.c-pagettl {
  height: 40rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-pagettl {
    height: 18.6rem;
  }
}
.c-pagettl__bg {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.c-pagettl__bg .img {
  width: 100%;
  height: 100%;
}
.c-pagettl__bg .img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-pagettl__bg::after {
  content: "";
  width: 62.5rem;
  height: 28.8rem;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-pagettl__bg::after {
    width: 37.5rem;
    height: 17.2rem;
  }
}
.c-pagettl__bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, color-stop(9.09%, rgba(18, 99, 99, 0)), color-stop(18.08%, rgba(18, 99, 99, 0.5)), color-stop(33.72%, #126363), color-stop(68.08%, rgba(18, 99, 99, 0.95)), color-stop(77.4%, #126363));
  background: linear-gradient(270deg, rgba(18, 99, 99, 0) 9.09%, rgba(18, 99, 99, 0.5) 18.08%, #126363 33.72%, rgba(18, 99, 99, 0.95) 68.08%, #126363 77.4%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-pagettl__bg::before {
    background: linear-gradient(347deg, rgba(18, 99, 99, 0) 25.44%, rgba(18, 99, 99, 0.5) 35.01%, #126363 51.65%, rgba(18, 99, 99, 0.95) 88.21%, #126363 98.13%);
  }
}
.c-pagettl__content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.c-pagettl__content .l-content-inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-pagettl__content .l-content-inner {
    padding: 0;
  }
}
.c-pagettl__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF4B4;
  text-align: center;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: 5rem;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 0.09em;
  gap: 4.2rem;
}
@media screen and (max-width: 767px) {
  .c-pagettl__title {
    font-size: 2.6rem;
    gap: 1.4rem;
  }
}
.c-pagettl__title::before, .c-pagettl__title::after {
  content: "";
  display: block;
  width: 2.8rem;
  height: 0.4rem;
  background: #FFF4B4;
}
@media screen and (max-width: 767px) {
  .c-pagettl__title::before, .c-pagettl__title::after {
    height: 0.2rem;
  }
}
.c-pagettl__sub {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.5;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-pagettl__sub {
    font-size: 1.4rem;
    margin-top: 1.6rem;
  }
}

.c-pankz {
  position: relative;
  padding: 3.2rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-pankz {
    padding-top: 1.6rem;
  }
}
.c-pankz__list {
  line-height: 0;
}
.c-pankz__list li {
  display: inline;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.29;
}
@media screen and (max-width: 767px) {
  .c-pankz__list li {
    font-size: 1.2rem;
  }
}
.c-pankz__list li a {
  color: #058989;
  text-decoration: underline;
}
.c-pankz__list li + li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  display: inline-block;
  background-image: url(../images/common/arrow_pankz.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin: 0 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-pankz__list li + li::before {
    margin: 0 0.8rem;
  }
}

.c-results {
  background-color: #EEF7F7;
  padding: 8.6rem 0 8.8rem;
}
@media screen and (max-width: 767px) {
  .c-results {
    padding: 3.7rem 0 4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-results .c-secttl-bar {
    padding-bottom: 1.7rem;
  }
}
.c-results__content {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .c-results__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.2rem;
    margin-top: 3.2rem;
  }
}
.c-results__content .item {
  width: calc((100% - 4rem) / 3);
}
@media screen and (max-width: 767px) {
  .c-results__content .item {
    width: 100%;
  }
}
.c-results__content .item__inn {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
  background-color: #ffffff;
  height: 100%;
  cursor: pointer;
}
.c-results__content .item .img {
  width: 100%;
  height: 100%;
  aspect-ratio: 326/180;
  overflow: hidden;
}
.c-results__content .item .img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-results__content .item .cnt {
  padding: 1.4rem 1.4rem 4.6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-results__content .item .cnt {
    padding: 1.2rem 2.3rem 4.5rem;
  }
}
.c-results__content .item .title {
  margin-top: 0.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 168%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.c-results__content .item .date-list {
  position: absolute;
  bottom: 1.4rem;
  right: 1.2rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .c-results__content .item .date-list {
    bottom: 0;
    right: 2.4rem;
  }
}
.c-results__content .item .date {
  color: #666;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
}
.c-results__content .item .date::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.c-results__content .item .date.-clock::before {
  width: 1.6rem;
  height: 1.6rem;
  background-image: url(../images/blog/icn_clock.svg);
}
.c-results__content .item .date.-update::before {
  background-image: url(../images/blog/icn_update.svg);
}
.c-results__content .item .tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-results__content .item .tag {
  border-radius: 100vh;
  background: #177272;
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 100%;
  padding: 0.5rem 1em 0.6rem;
}
.c-results .c-btn {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .c-results .c-btn {
    margin-top: 3.2rem;
  }
}

.c-owner {
  background-color: #EFEFEF;
  padding: 9.6rem 0;
}
@media screen and (max-width: 767px) {
  .c-owner {
    padding: 3.7rem 0 4rem;
  }
}
.c-owner .c-secttl-bar {
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-owner .c-secttl-bar {
    padding-bottom: 1.7rem;
  }
}
.c-owner__content {
  margin-top: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .c-owner__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.2rem;
    margin-top: 3.2rem;
  }
}
.c-owner__content .item {
  width: calc((100% - 4rem) / 3);
}
@media screen and (max-width: 767px) {
  .c-owner__content .item {
    width: 100%;
  }
}
.c-owner__content .item__inn {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
  background-color: #ffffff;
  height: 100%;
  cursor: pointer;
}
.c-owner__content .item .img {
  width: 100%;
  height: 100%;
  aspect-ratio: 326/180;
  overflow: hidden;
}
.c-owner__content .item .img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-owner__content .item .cnt {
  padding: 2.2rem 1.6rem 6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-owner__content .item .cnt {
    padding: 2.2rem 1.6rem 6rem;
  }
}
.c-owner__content .item .title {
  margin-top: 0.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 168%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.c-owner__content .item .text {
  margin-top: 0.4rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 168%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.c-owner__content .item .date-list {
  position: absolute;
  bottom: 1.9rem;
  right: 1.4rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .c-owner__content .item .date-list {
    bottom: 0.7rem;
    right: 1.5rem;
  }
}
.c-owner__content .item .date {
  color: #666;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
}
.c-owner__content .item .date::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.c-owner__content .item .date.-clock::before {
  width: 1.6rem;
  height: 1.6rem;
  background-image: url(../images/blog/icn_clock.svg);
}
.c-owner__content .item .date.-update::before {
  background-image: url(../images/blog/icn_update.svg);
}
.c-owner__content .item .tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-owner__content .item .tag {
  border-radius: 100vh;
  background: #CE6621;
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 100%;
  padding: 0.5rem 1em 0.6rem;
}
.c-owner .c-btn {
  margin-top: 4.3rem;
}
@media screen and (max-width: 767px) {
  .c-owner .c-btn {
    margin-top: 3.2rem;
  }
}

.c-useful {
  background-color: #EEF7F7;
  padding: 9rem 0 8rem;
}
@media screen and (max-width: 767px) {
  .c-useful {
    padding: 3.5rem 0 3rem;
  }
}
.c-useful__head {
  text-align: center;
  font-weight: 700;
  font-size: 3.68rem;
  padding-bottom: 0.6rem;
}
@media screen and (max-width: 767px) {
  .c-useful__head {
    font-size: 1.8rem;
    padding-bottom: 0;
    margin-bottom: -0.6rem;
  }
}
.c-useful__ttl {
  font-size: 3.2rem;
  text-align: center;
  font-weight: 700;
  margin-top: 5.3rem;
}
@media screen and (max-width: 767px) {
  .c-useful__ttl {
    font-size: 2.4rem;
    margin-top: 2.9rem;
  }
}
.c-useful__ttl.--mt-l {
  margin-top: 9.4rem;
}
@media screen and (max-width: 767px) {
  .c-useful__ttl.--mt-l {
    margin-top: 3.5rem;
  }
}
.c-useful__ttl .inn {
  position: relative;
  display: inline-block;
  padding: 0 0.85em;
}
.c-useful__ttl .inn::before, .c-useful__ttl .inn::after {
  content: "";
  width: 0.2rem;
  height: 85%;
  background-color: #C6C5C5;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-useful__ttl .inn::before, .c-useful__ttl .inn::after {
    width: 0.16rem;
    height: 55%;
  }
}
.c-useful__ttl .inn::before {
  left: 0;
}
.c-useful__ttl .inn::after {
  right: 0;
}
.c-useful__content {
  margin-top: 2.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .c-useful__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.2rem;
    margin-top: 1.8rem;
  }
}
.c-useful__content .item {
  width: calc((100% - 4rem) / 3);
}
@media screen and (max-width: 767px) {
  .c-useful__content .item {
    width: 100%;
  }
}
.c-useful__content .item__inn {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
  background-color: #ffffff;
  height: 100%;
  cursor: pointer;
}
.c-useful__content .item .img {
  width: 100%;
  height: 100%;
  aspect-ratio: 326/180;
  overflow: hidden;
}
.c-useful__content .item .img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-useful__content .item .cnt {
  padding: 2.3rem 1.6rem 5.9rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-useful__content .item .cnt {
    padding: 2.3rem 1.6rem 6rem;
  }
}
.c-useful__content .item .title {
  margin-top: 0.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 168%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.c-useful__content .item .text {
  margin-top: 0.4rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 168%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.c-useful__content .item .date-list {
  position: absolute;
  bottom: 2.1rem;
  right: 1.4rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .c-useful__content .item .date-list {
    bottom: 0.6rem;
    right: 1.6rem;
  }
}
.c-useful__content .item .date {
  color: #666;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
}
.c-useful__content .item .date::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.c-useful__content .item .date.-clock::before {
  width: 1.6rem;
  height: 1.6rem;
  background-image: url(../images/blog/icn_clock.svg);
}
.c-useful__content .item .date.-update::before {
  background-image: url(../images/blog/icn_update.svg);
}
.c-useful__content .item .tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-useful__content .item .tag {
  border-radius: 100vh;
  background: #177272;
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 100%;
  padding: 0.5rem 1em 0.6rem;
}
.c-useful__content.--minimal {
  margin-top: 5.2rem;
}
@media screen and (max-width: 767px) {
  .c-useful__content.--minimal {
    margin-top: 2.6rem;
  }
}
.c-useful__content.--minimal .item__inn {
  -ms-grid-columns: 53.6% 1fr;
  grid-template-columns: 53.6% 1fr;
}
@media screen and (max-width: 767px) {
  .c-useful__content.--minimal .item__inn {
    -ms-grid-columns: 50% 1fr;
    grid-template-columns: 50% 1fr;
  }
}
.c-useful__content.--minimal .item .img {
  background-color: #177272;
  padding: 0.9rem;
}
.c-useful__content.--minimal .item .cnt {
  padding: 0.7rem 1rem 2rem;
}
@media screen and (max-width: 767px) {
  .c-useful__content.--minimal .item .cnt {
    padding-bottom: 1.9rem;
  }
}
.c-useful__content.--minimal .item .tag-list {
  position: absolute;
  top: -1rem;
  left: 1rem;
}
.c-useful__content.--minimal .item .tag {
  font-size: 1.2rem;
  padding: 0.3rem 1.2em 0.5rem;
}
.c-useful__content.--minimal .item .title {
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-line-clamp: 3;
}
.c-useful .c-btn {
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .c-useful .c-btn {
    margin-top: 3.2rem;
  }
}

.c-float {
  z-index: 10000;
  width: 30rem;
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media screen and (max-width: 767px) {
  .c-float {
    width: 94%;
    bottom: 0.8%;
    right: 3%;
  }
}
.c-float.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.c-float__close {
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  border: 0.2rem solid #fff;
  border-radius: 50%;
  position: absolute;
  top: -1.8rem;
  right: -1.7rem;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.2s;
  transition: opacity 0.3s, -webkit-transform 0.2s;
  transition: opacity 0.3s, transform 0.2s;
  transition: opacity 0.3s, transform 0.2s, -webkit-transform 0.2s;
  background-color: #217e90 !important;
  -webkit-box-shadow: 0 0 0.7rem rgba(0, 0, 0, 0.7);
          box-shadow: 0 0 0.7rem rgba(0, 0, 0, 0.7);
  padding: 0;
}
@media screen and (max-width: 767px) {
  .c-float__close {
    top: -1.8rem;
    right: -2%;
  }
}
.c-float__close:hover {
  opacity: 0.7;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.c-float__close::before, .c-float__close::after {
  content: "";
  width: 60%;
  height: 0.25rem;
  border-radius: 0.9rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
}
.c-float__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.c-float__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.c-unei {
  padding: 5.6rem 0;
}
@media screen and (max-width: 767px) {
  .c-unei {
    padding: 4.4rem 0 4rem;
  }
}
.l-bg-gray .c-unei {
  padding: 8.2rem 0;
}
@media screen and (max-width: 767px) {
  .l-bg-gray .c-unei {
    padding: 4.2rem 0;
  }
}
.c-unei__content .bnr-text {
  background: url(../images/top/bg_unei.jpg) no-repeat center/100%;
  margin-top: 3.9rem;
  padding: 4.8rem 4.8rem 5.1rem 35.5rem;
}
@media screen and (max-width: 767px) {
  .c-unei__content .bnr-text {
    background-image: url(../images/top/bg_unei_sp.jpg);
    margin-top: 3.2rem;
    padding: 24.7rem 1.6rem 4.3rem;
  }
}
.c-unei__title {
  text-align: center;
  padding-bottom: 2.6rem;
  text-shadow: 0.2rem 0.2rem 0.1rem rgba(255, 255, 255, 0.5), -0.2rem 0.2rem 0.1rem rgba(255, 255, 255, 0.5), 0.2rem -0.2rem 0.1rem rgba(255, 255, 255, 0.5), -0.2rem -0.2rem 0.1rem rgba(255, 255, 255, 0.5), 0.2rem 0px 0.1rem rgba(255, 255, 255, 0.5), 0px 0.2rem 0.1rem rgba(255, 255, 255, 0.5), -0.2rem 0px 0.1rem rgba(255, 255, 255, 0.5), 0px -0.2rem 0.1rem rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 767px) {
  .c-unei__title {
    padding-bottom: 1.7rem;
  }
}
.c-unei__title .title1 {
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.71;
}
@media screen and (max-width: 767px) {
  .c-unei__title .title1 {
    font-size: 2rem;
    line-height: 1;
  }
}
.c-unei__title .title1 .small {
  font-size: 90%;
}
@media screen and (max-width: 767px) {
  .c-unei__title .title1 .sp-small {
    font-size: 90%;
  }
}
.c-unei__title .title1 .green {
  color: #116F6F;
}
.c-unei__title .title2 {
  margin-top: 0.6rem;
}
@media screen and (max-width: 767px) {
  .c-unei__title .title2 {
    line-height: 0.8;
  }
}
.c-unei__title .title2 .box {
  color: #FFFFCD;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.29;
  background: #177272;
  display: inline-block;
  padding: 0.2em;
  margin-right: 0.3em;
  text-shadow: none;
}
@media screen and (max-width: 767px) {
  .c-unei__title .title2 .box {
    display: inline-block;
    font-size: 2.5rem;
    margin-right: 0;
    padding: 0.15em 0.5em 0.25em;
  }
}
.c-unei__title .title2 .inner {
  text-align: center;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 128.292%;
}
@media screen and (max-width: 767px) {
  .c-unei__title .title2 .inner {
    font-size: 2.7rem;
  }
}
.c-unei__title .title2 .inner .small {
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .c-unei__title .title2 .inner .small {
    font-size: 2rem;
  }
}
.c-unei__text {
  font-size: 2rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-unei__text {
    width: 100%;
    padding: 0;
    margin-top: 1.6rem;
  }
}
.c-unei__text sup {
  font-size: 60%;
}
.c-unei__note {
  font-weight: 400;
  color: #fff;
  font-size: 1.2rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.c-first {
  padding: 6.4rem 0;
  background: url(../images/top/bg_first.jpg) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .c-first {
    padding: 4rem 0;
    background-image: url(../images/top/bg_first_sp.jpg);
  }
}
.c-first__box {
  display: -ms-grid;
  display: grid;
  gap: 2.6rem 3.8rem;
  -ms-grid-columns: 22.1rem 3.8rem 1fr;
  grid-template-columns: 22.1rem 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 4rem 4rem 5.5rem;
  border: 0.2rem solid #177272;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0.6rem 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 0.6rem 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .c-first__box {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 2rem 0;
    padding: 0 0 2.2rem;
  }
}
.c-first__box-img {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
}
@media screen and (max-width: 767px) {
  .c-first__box-img {
    width: 37%;
    margin: 0 auto;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
  }
}
.c-first__box-img img {
  margin-top: -0.7rem;
}
@media screen and (max-width: 767px) {
  .c-first__box-img img {
    margin: 0;
  }
}
.c-first__box-head {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
@media screen and (max-width: 767px) {
  .c-first__box-head {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
  }
}
.c-first__box-head .box {
  text-align: center;
  background-color: #177272;
  color: #fff;
  font-weight: 700;
  font-size: 2.6rem;
  padding: 0.55em;
}
@media screen and (max-width: 767px) {
  .c-first__box-head .box {
    font-size: 1.5rem;
    padding: 0 0 0.3em;
  }
}
.c-first__box-txts {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-first__box-txts {
    margin-top: -1.3rem;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
  }
}
.c-first__box-txts .green {
  color: #177272;
}
.c-first__box-txts .red {
  color: #EF0C0C;
}
.c-first__box-txts .txt01 {
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-first__box-txts .txt01 {
    font-size: 1.4rem;
  }
}
.c-first__box-txts .ttl {
  margin-top: 2rem;
  font-size: 4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-first__box-txts .ttl {
    font-size: 2rem;
    margin-top: -0.5rem;
  }
}
.c-first__box-txts .txt02 {
  font-size: 2rem;
  margin-top: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-first__box-txts .txt02 {
    font-size: 1.4rem;
    text-align: left;
    margin-top: 0.4rem;
    padding: 0 1.5rem;
    line-height: 1.5;
  }
}
.c-first .c-btn {
  margin-top: 2.2rem;
}
@media screen and (max-width: 767px) {
  .c-first .c-btn {
    margin-top: 2.5rem;
    padding: 0 0.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-first .c-btn .c-btn__inn {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-first .c-btn .c-btn__inn::after {
    right: 0.8rem;
  }
}
.c-first__txt {
  margin-top: 5.3rem;
  text-align: center;
  font-weight: 700;
  text-shadow: 0.2rem 0.2rem 0.1rem rgba(255, 255, 255, 0.5), -0.2rem 0.2rem 0.1rem rgba(255, 255, 255, 0.5), 0.2rem -0.2rem 0.1rem rgba(255, 255, 255, 0.5), -0.2rem -0.2rem 0.1rem rgba(255, 255, 255, 0.5), 0.2rem 0px 0.1rem rgba(255, 255, 255, 0.5), 0px 0.2rem 0.1rem rgba(255, 255, 255, 0.5), -0.2rem 0px 0.1rem rgba(255, 255, 255, 0.5), 0px -0.2rem 0.1rem rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 767px) {
  .c-first__txt {
    margin-top: 2.4rem;
  }
}
.c-first__txt .green {
  color: #177272;
}
.c-first__txt .medium {
  display: block;
  font-size: 3.1rem;
}
@media screen and (max-width: 767px) {
  .c-first__txt .medium {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.c-first__txt .large {
  display: block;
  font-size: 4rem;
  line-height: 1.5;
  margin-top: 0.8rem;
  text-decoration: underline;
  text-underline-offset: -0.1em;
  text-decoration-color: #FFFA61;
  text-decoration-thickness: 0.5em;
}
@media screen and (max-width: 767px) {
  .c-first__txt .large {
    font-size: 2.4rem;
    letter-spacing: -0.04em;
    white-space: nowrap;
    margin-top: 0.4rem;
  }
}

.c-strengths {
  background-color: #DCEFEF;
  background-image: url(../images/top/bg_strengths.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
}
.c-strengths .l-content-inner {
  width: 140rem;
}
.l-bg-gray + .c-strengths {
  background-image: url(../images/top/bg_strengths_gray.jpg);
}
@media screen and (max-width: 767px) {
  .l-bg-gray + .c-strengths {
    background-image: url(../images/top/bg_strengths_gray_sp.jpg);
  }
}
.c-strengths__content {
  width: 101.9rem;
  margin: auto;
  max-width: 100%;
  padding: 12.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-strengths__content {
    padding-top: 4.6rem;
    width: 35.3rem;
  }
}
.c-strengths__title {
  text-align: center;
  padding-bottom: 2.9rem;
}
@media screen and (max-width: 767px) {
  .c-strengths__title {
    line-height: 1.1;
    padding-bottom: 2rem;
  }
}
.c-strengths__title .medium {
  font-weight: 700;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .c-strengths__title .medium {
    display: block;
    font-size: 2.3rem;
  }
}
.c-strengths__title .large {
  font-weight: 700;
  font-size: 5rem;
}
@media screen and (max-width: 767px) {
  .c-strengths__title .large {
    font-size: 2.6rem;
    text-shadow: 0.2rem 0.2rem 0.1rem rgba(255, 255, 255, 0.3), -0.2rem 0.2rem 0.1rem rgba(255, 255, 255, 0.3), 0.2rem -0.2rem 0.1rem rgba(255, 255, 255, 0.3), -0.2rem -0.2rem 0.1rem rgba(255, 255, 255, 0.3), 0.2rem 0px 0.1rem rgba(255, 255, 255, 0.3), 0px 0.2rem 0.1rem rgba(255, 255, 255, 0.3), -0.2rem 0px 0.1rem rgba(255, 255, 255, 0.3), 0px -0.2rem 0.1rem rgba(255, 255, 255, 0.3);
  }
}
.c-strengths__title .large .num {
  font-size: 1.6em;
}
@media screen and (max-width: 767px) {
  .c-strengths__title .large .num {
    font-size: 1.1538461538em;
  }
}
.c-strengths__title .green {
  color: #177272;
}
.c-strengths__title .bar {
  -webkit-box-shadow: 0 0 0.2rem 0.2rem rgba(255, 255, 255, 0.8);
          box-shadow: 0 0 0.2rem 0.2rem rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 767px) {
  .c-strengths__title .bar {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.c-strengths__list {
  margin-top: 3.8rem;
}
@media screen and (max-width: 767px) {
  .c-strengths__list {
    margin-top: 2.3rem;
  }
}
.c-strengths .c-btn {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .c-strengths .c-btn {
    margin-top: 1.6rem;
  }
}

/* --------------------------------------------------
  header
-------------------------------------------------- */
.l-header {
  position: fixed;
  z-index: 100;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #ffffff;
}
.l-header__upper {
  border-bottom: 1px solid #C6C5C5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 4rem;
}
.l-header__lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-header__lower {
    height: 6rem;
  }
}
.l-header__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-header__links {
    border-top: 1px solid #C6C5C5;
  }
}
.l-header__link {
  font-size: 1.4rem;
  border-right: 1px solid #C6C5C5;
}
@media screen and (max-width: 767px) {
  .l-header__link {
    font-size: 1.6rem;
    width: 50%;
  }
}
.l-header__link a {
  position: relative;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-header__link a {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font-weight: 700;
    padding: 1.4rem 1.6rem;
  }
}
.l-header__link.is-current a {
  color: #fff;
}
.l-header__link.is-current a .arrow::before {
  background-image: url(../images/common/arrow_spmenu_w.svg);
}
.l-header__link.is-current.-default {
  background-color: #059E9E;
}
.l-header__link.is-current.-tenken {
  background-color: #0092DF;
}
@media screen and (max-width: 767px) {
  .l-header__link .arrow {
    width: 1rem;
    height: 2rem;
    display: block;
    position: absolute;
    right: 2rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .l-header__link .arrow::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    -webkit-transition: 0.3s opacity;
    transition: 0.3s opacity;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/common/arrow_spmenu.svg);
  }
}
.l-header__logo {
  width: 13.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 1.6rem;
}
.l-header__logo a,
.l-header__logo img {
  display: block;
}
.l-header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .l-header__menu {
    display: block;
    height: auto;
  }
}
.l-header__sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-header__sub-menu .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-header__sub-menu .item {
  font-size: 1.4rem;
  position: relative;
}
.l-header__sub-menu .item a,
.l-header__sub-menu .item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 2.4rem;
}
@media print, screen and (min-width: 768px) {
  .l-header__sub-menu .item .child {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    visibility: hidden;
    opacity: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 0fr;
    grid-template-rows: 0fr;
    -webkit-transition: 250ms grid-template-rows ease, opacity 250ms ease;
    transition: 250ms grid-template-rows ease, opacity 250ms ease;
    transition: 250ms grid-template-rows ease, opacity 250ms ease, 250ms -ms-grid-rows ease;
  }
  .l-header__sub-menu .item .child > ul {
    overflow: hidden;
    background-color: #ffffff;
    -webkit-box-shadow: 0 3px 8px 0 rgba(23, 114, 114, 0.4);
            box-shadow: 0 3px 8px 0 rgba(23, 114, 114, 0.4);
  }
}
@media screen and (max-width: 767px) {
  .l-header__sub-menu .item .child {
    border-top: 1px solid #C6C5C5;
    padding-left: 1.6rem;
  }
}
.l-header__sub-menu .item .child-item {
  border-bottom: 1px solid #C6C5C5;
}
@media screen and (max-width: 767px) {
  .l-header__sub-menu .item .child-item:last-of-type {
    border-bottom: none;
  }
}
.l-header__sub-menu .item .child-item__inn {
  padding: 1.1rem 2.6rem 1.1rem 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.8rem;
  position: relative;
  font-weight: 700;
}
.l-header__sub-menu .item .child-item__inn .icon {
  width: 2.6rem;
}
.l-header__sub-menu .item .child-item__inn::after {
  content: "";
  width: 0.9rem;
  height: 1.3rem;
  background-image: url(../images/common/arrow_right-g.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  right: 0.8rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-header__sub-menu .item .child-item__inn::after {
    width: 1rem;
    height: 2rem;
    display: block;
    position: absolute;
    right: 2rem;
    background-image: url(../images/common/arrow_spmenu.svg);
  }
}
@media print, screen and (min-width: 768px) {
  .l-header__sub-menu .item .child-item__inn:hover {
    opacity: 1;
    color: #177272;
  }
}
.l-header__sub-menu .item.is-active .child {
  visibility: visible;
  opacity: 1;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
.l-header__sub-menu .tel {
  font-size: 1.4rem;
}
.l-header__sub-menu .tel .icon {
  width: 2rem;
}
.l-header__sub-menu .tel a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 2.4rem;
  gap: 0.4rem;
}
.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  font-size: 1.4rem;
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    display: block;
    font-size: 1.6rem;
    height: auto;
    border-top: 1px solid #C6C5C5;
    padding: 0;
  }
}
.l-header__nav .item {
  color: #333;
  font-weight: 700;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px solid #C6C5C5;
}
@media screen and (max-width: 767px) {
  .l-header__nav .item {
    display: block;
    height: auto;
    width: 100%;
    border-bottom: 1px solid #C6C5C5;
  }
}
.l-header__nav .item.--no-border {
  border-right: none;
}
.l-header__nav .item__inn {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.15rem 0;
  position: relative;
  margin: 0 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-header__nav .item__inn {
    padding: 1.325rem 1.6rem;
    width: 100%;
    margin: 0;
  }
}
.l-header__nav .item__inn::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #177272;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: 0.3s width;
  transition: 0.3s width;
}
@media screen and (max-width: 767px) {
  .l-header__nav .item__inn::after {
    display: none;
  }
}
.l-header__nav .item__inn a:hover {
  opacity: 1;
}
.l-header__nav .item__inn:not(span):hover {
  color: #177272;
  opacity: 1;
}
.l-header__nav .item__inn:not(span):hover::after {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-header__nav .item .toggle,
  .l-header__nav .item .arrow {
    width: 1rem;
    height: 2rem;
    display: block;
    position: absolute;
    right: 2rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .l-header__nav .item .toggle::before, .l-header__nav .item .toggle::after,
  .l-header__nav .item .arrow::before,
  .l-header__nav .item .arrow::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    -webkit-transition: 0.3s opacity;
    transition: 0.3s opacity;
    position: absolute;
    top: 0;
    left: 0;
  }
  .l-header__nav .item .arrow::before {
    background-image: url(../images/common/arrow_spmenu.svg);
  }
  .l-header__nav .item .toggle {
    z-index: 1;
    height: 1.9rem;
    width: 1.9rem;
    right: 1.7rem;
    top: 2rem;
    -webkit-transform: none;
            transform: none;
  }
  .l-header__nav .item .toggle::before {
    background-image: url(../images/common/spmenu_plus.svg);
  }
  .l-header__nav .item .toggle::after {
    background-image: url(../images/common/spmenu_minus.svg);
    opacity: 0;
  }
  .l-header__nav .item .toggle.is-open::before {
    opacity: 0;
  }
  .l-header__nav .item .toggle.is-open::after {
    opacity: 1;
  }
}
@media print, screen and (min-width: 768px) {
  .l-header__nav .item .child {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    visibility: hidden;
    opacity: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 0fr;
    grid-template-rows: 0fr;
    -webkit-transition: 250ms grid-template-rows ease, opacity 250ms ease;
    transition: 250ms grid-template-rows ease, opacity 250ms ease;
    transition: 250ms grid-template-rows ease, opacity 250ms ease, 250ms -ms-grid-rows ease;
  }
  .l-header__nav .item .child > ul {
    overflow: hidden;
    background-color: #ffffff;
    -webkit-box-shadow: 0 3px 8px 0 rgba(23, 114, 114, 0.4);
            box-shadow: 0 3px 8px 0 rgba(23, 114, 114, 0.4);
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav .item .child {
    border-top: 1px solid #C6C5C5;
    padding-left: 1.6rem;
  }
}
.l-header__nav .item .child-item {
  border-bottom: 1px solid #C6C5C5;
}
@media screen and (max-width: 767px) {
  .l-header__nav .item .child-item:last-of-type {
    border-bottom: none;
  }
}
.l-header__nav .item .child-item__inn {
  padding: 1.1rem 2.6rem 1.1rem 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  position: relative;
}
.l-header__nav .item .child-item__inn .icon {
  width: 2.6rem;
}
.l-header__nav .item .child-item__inn::after {
  content: "";
  width: 0.9rem;
  height: 1.3rem;
  background-image: url(../images/common/arrow_right-g.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  right: 0.8rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-header__nav .item .child-item__inn::after {
    width: 1rem;
    height: 2rem;
    display: block;
    position: absolute;
    right: 2rem;
    background-image: url(../images/common/arrow_spmenu.svg);
  }
}
@media print, screen and (min-width: 768px) {
  .l-header__nav .item .child-item__inn:hover {
    opacity: 1;
    color: #177272;
  }
}
.l-header__nav .item.is-active .child {
  visibility: visible;
  opacity: 1;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
.l-header__btn {
  width: 15.3rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .l-header__btn {
    width: 100%;
    height: 7rem;
  }
}
.l-header__btn-inn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  background-color: #FFDC0C;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-header__btn-inn {
    display: block;
    background-image: url(../images/common/btn_spmenu-contact.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    font-size: 0;
  }
}

@media screen and (max-width: 767px) {
  .drbtn {
    position: absolute;
    z-index: 11;
    width: 5rem;
    height: 6rem;
    padding: 0.7rem 0.8rem;
    gap: 1rem;
    background: #EFEFEF;
    right: 0;
    top: 0;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: none;
    transition: none;
  }
  .drbtn:hover {
    opacity: 1;
  }
  .drbtn {
    color: #666;
  }
  .drbtn.is-action {
    color: #ffffff;
    background-color: #177272;
  }
  .drawer {
    max-height: 100vh;
    width: 100%;
    position: fixed;
    top: 6rem;
    right: 0;
    z-index: 2;
    padding: 0 0 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    background-color: #ffffff;
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .drawer.is-action {
    max-width: 100%;
    position: fixed;
    opacity: 1;
    visibility: visible;
    z-index: 5;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .drawer .l-header__menu {
    max-height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    /* IE, Edge 対応 */
    scrollbar-width: none;
    /* Firefox 対応 */
    width: 100%;
    display: block;
    padding-bottom: 26.6666666667vw;
  }
  .drawer .l-header__menu::-webkit-scrollbar {
    /* Chrome, Safari 対応 */
    display: none;
  }
}
/* --------------------------------------------------
  footer
-------------------------------------------------- */
.l-footer {
  background-color: #F3F3F3;
  padding: 4rem 0;
}
.l-footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__top {
    display: block;
  }
}
.l-footer__top .logo {
  width: 13.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__top .logo {
    margin: auto;
  }
}
.l-footer__top .logo img {
  display: block;
}
.l-footer__top .logo-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-footer__top .logo-text {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0;
    margin-top: 1.6rem;
  }
}
.l-footer__list {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    margin-top: 2.8rem;
  }
}
.l-footer__list .item {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-footer__list .item {
    border-bottom: 1px solid #CBCBCB;
    padding-bottom: 1.1rem;
    padding-top: 1rem;
  }
  .l-footer__list .item:first-of-type {
    padding-top: 0;
  }
}
.l-footer__list .name {
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 767px) {
  .l-footer__list .name {
    border: none;
    font-size: 1.6rem;
    font-weight: bold;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.l-footer__list .add {
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .l-footer__list .add {
    font-size: 1.4rem;
    line-height: 1.64;
    margin-top: 0.55rem;
  }
}
.l-footer .link {
  margin-top: 4rem;
  border-top: 1px solid #CBCBCB;
  padding-top: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 4.8rem;
}
@media screen and (max-width: 767px) {
  .l-footer .link {
    border: none;
    margin-top: 2.4rem;
    padding-top: 0;
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.l-footer .link li {
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 180%;
  /* 2.16rem */
}
@media screen and (max-width: 767px) {
  .l-footer .link li {
    font-size: 1.4rem;
  }
}
.l-footer .copy {
  margin-top: 1.6rem;
  text-align: right;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .l-footer .copy {
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: 0;
  }
}

.l-pagewrap .l-header {
  position: sticky;
  top: 0;
  left: 0;
}

.l-main {
  display: block;
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .l-main {
    padding-top: 6rem;
  }
}

.l-content-inner {
  width: 100rem;
  margin: auto;
  max-width: 100%;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .l-content-inner {
    width: 100%;
    padding: 0 4.2666666667vw;
  }
}
.l-content-inner.-narrow {
  width: 112.8rem;
}

.l-bg-gray {
  background-color: #F3F3F3;
  position: relative;
}
.l-bg-gray::before {
  content: "";
  display: block;
  width: 76.15rem;
  height: 34.0669rem;
  background-color: rgba(255, 255, 255, 0.3);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .l-bg-gray::before {
    width: 37.5rem;
    height: 16.7371rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.l-bg-deep-gray {
  background-color: #EFEFEF;
}

.l-bg-green {
  background-color: #EEF7F7;
  position: relative;
}
.l-bg-green::before {
  content: "";
  display: block;
  width: 76.15rem;
  height: 34.0669rem;
  background-color: rgba(255, 255, 255, 0.3);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .l-bg-green::before {
    width: 37.5rem;
    height: 16.7371rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

/* --------------------------------------------------
  display
-------------------------------------------------- */
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/* --------------------------------------------------
  cleafix
-------------------------------------------------- */
.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/* --------------------------------------------------
  align
-------------------------------------------------- */
.u-alignL {
  text-align: left;
}

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

.u-alignR {
  text-align: right;
}

/* --------------------------------------------------
  preload
-------------------------------------------------- */
.u-preload * {
  -webkit-transition: none !important;
  transition: none !important;
}

/* --------------------------------------------------
  font,text
-------------------------------------------------- */
.u-underline {
  text-decoration: underline !important;
}

.u-bold {
  font-weight: bold;
}

/*----------- shadow ------------*/
.u-boxshadow {
  -webkit-box-shadow: 0 0 10px rgba(24, 99, 175, 0.25);
          box-shadow: 0 0 10px rgba(24, 99, 175, 0.25);
}
/*# sourceMappingURL=common.css.map */