@charset "UTF-8";
/*------------------------------------------------------------
Reset
------------------------------------------------------------*/
/* 1. 基本のリセット */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 2. HTML要素の初期化 */
html, body {
  height: 100%;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  font-size: 16px;
}

/* 3. リスト要素 */
ul, ol {
  list-style: none;
}

/* 4. aタグ */
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* 5. メディア要素 */
img,
picture,
video,
canvas,
svg:not(.svg-defs) {
  display: block;
  width: 100%;
  height: auto;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* 6. フォーム要素 */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
  appearance: none;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

/* 7. テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 8. その他 */
address {
  font-style: normal;
}

fieldset {
  border: none;
}

/* 9. Utility（任意） */
:where(:focus-visible) {
  outline: 2px solid #007acc;
  outline-offset: 2px;
}

/*------------------------------------------------------------
colors
------------------------------------------------------------*/
/*------------------------------------------------------------
breakpoint
------------------------------------------------------------*/
/*------------------------------------------------------------
font family
------------------------------------------------------------*/
/*------------------------------------------------------------
font size
------------------------------------------------------------*/
/*------------------------------------------------------------
container
------------------------------------------------------------*/
/*------------------------------------------------------------
bg
------------------------------------------------------------*/
/*------------------------------------------------------------
border radius
------------------------------------------------------------*/
/*------------------------------------------------------------
flex
------------------------------------------------------------*/
/*------------------------------------------------------------
list dot
------------------------------------------------------------*/
/*------------------------------------------------------------
animation
------------------------------------------------------------*/
@keyframes flt-01 {
  0% {
    transform: translateY(0) rotate(calc(var(--base-rotate))) scale(1);
  }
  50% {
    transform: translateY(calc(var(--jump) * -1)) rotate(calc(var(--base-rotate) + 5deg)) scale(1.5);
  }
  100% {
    transform: translateY(0) rotate(calc(var(--base-rotate))) scale(1);
  }
}
@keyframes lop-scr {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-25%);
  }
}
/*------------------------------------------------------------
〇行以上3点リーダー置いて省略
------------------------------------------------------------*/
/*------------------------------------------------------------
案件別セッティング
------------------------------------------------------------*/
body {
  width: 100%;
  background: #fff;
  color: #363E46;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(clamp(0.8rem, 0.7286rem + 0.3571vw, 0.9rem));
  font-weight: 500;
  letter-spacing: 0.08rem;
}
body.is-fixed {
  position: fixed;
  width: 100%;
  left: 0;
  overflow: hidden;
}

table, input, textarea, select, option {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  background: #fff;
}

input, textarea, button, select, a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*------------------------------------------------------------
news
------------------------------------------------------------*/
.news-meta {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.news-meta time {
  font-size: calc(clamp(0.7rem, 0.6318rem + 0.3409vw, 0.85rem));
  white-space: nowrap;
}
.news-meta .tag {
  white-space: nowrap;
  padding: .2rem .3rem;
  border-radius: 2px;
  font-size: calc(clamp(0.7rem, 0.6318rem + 0.3409vw, 0.85rem));
  color: #fff;
  letter-spacing: 0;
  line-height: 1;
  background: #ECC11A;
}

/*------------------------------------------------------------
    header
------------------------------------------------------------*/
.hdr {
  visibility: hidden;
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: center;
  justify-content: space-between;
  transition: .5s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  transform: translateY(0);
}
.hdr.is-visible {
  visibility: visible;
  transform: translateY(0);
}
.hdr.is-hidden {
  visibility: hidden;
  transform: translateY(-10vh);
}
.hdr.is-inside {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 1024px) {
  .hdr {
    transform: translate(-50%, 0);
    background: #fff;
    width: 92dvw;
    border-radius: 12px;
    top: 20px;
    left: 50%;
    right: 20px;
    padding: 40px 2dvw;
  }
  .hdr.is-visible {
    transform: translate(-50%, 0);
  }
  .hdr.is-hidden {
    transform: translate(-50%, calc(-100% - 20px));
  }
}
.hdr .logo {
  will-change: transform;
  transition: .8s;
  width: 180px;
}
.hdr .logo.is-hidden {
  transform: translateY(-20vh);
}
@media (max-width: 1023px) {
  .hdr .logo {
    position: fixed;
    top: 18px;
    left: 5dvw;
    width: 140px;
  }
}
.hdr .gnav {
  will-change: transform;
  display: flex;
  font-weight: 600;
}
@media (max-width: 1023px) {
  .hdr .gnav {
    background: linear-gradient(to bottom, #00A0D1 0%, rgba(152, 234, 199, 0.8) 100%);
    padding: 15dvw 10dvw;
    width: 100dvw;
    height: 100dvh;
    opacity: 0;
    pointer-events: none;
    transition: .5s;
    position: absolute;
    top: 0;
    right: 0;
    overflow-y: auto;
    flex-direction: column;
    gap: 2rem;
    color: #fff;
  }
  .hdr .gnav.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .hdr .gnav.is-open .gnav-list li:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.1s;
  }
  .hdr .gnav.is-open .gnav-list li:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.2s;
  }
  .hdr .gnav.is-open .gnav-list li:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.3s;
  }
  .hdr .gnav.is-open .gnav-list li:nth-child(4) {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.4s;
  }
  .hdr .gnav.is-open .gnav-list li:nth-child(5) {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.5s;
  }
  .hdr .gnav.is-open .gnav-list li:nth-child(6) {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.6s;
  }
  .hdr .gnav.is-open .gnav-list li:nth-child(7) {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.7s;
  }
  .hdr .gnav.is-open .gnav-list li:nth-child(8) {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.8s;
  }
  .hdr .gnav.is-open .gnav-list li:nth-child(9) {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.9s;
  }
}
@media (min-width: 1024px) {
  .hdr .gnav {
    transition: .8s;
    font-size: 1rem;
    gap: 1.5rem;
  }
  .hdr .gnav.is-hidden {
    transform: translateY(-20dvh);
  }
}
.hdr .gnav-list {
  gap: 2rem;
}
@media (max-width: 1023px) {
  .hdr .gnav-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: .9rem;
  }
}
@media (max-width: 1023px) {
  .hdr .gnav-list li {
    opacity: 0;
    transform: translateX(-20px);
  }
}
@media (min-width: 1024px) {
  .hdr .gnav-list li:first-child {
    display: none;
  }
}

/*------------------------------------------------------------
    footer
------------------------------------------------------------*/
.ftr {
  position: relative;
}
.ftr-inr {
  width: 80dvw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .ftr-inr {
    width: 90dvw;
    margin: 0 auto;
  }
}
.ftr .gnav {
  font-size: calc(clamp(0.7rem, 0.6318rem + 0.3409vw, 0.85rem));
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .ftr .gnav {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (min-width: 1024px) {
  .ftr .gnav {
    font-size: 0.8125rem;
  }
}
.ftr .gnav-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem 0;
}
@media (min-width: 768px) {
  .ftr .gnav-list {
    display: flex;
    gap: 2rem;
  }
}
.ftr-btm {
  border-top: 1px solid #E9F1F9;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-end;
}
.ftr-btm .cr {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
}
.ftr-btm .copy {
  white-space: nowrap;
}
.ftr-btm .logo {
  width: 15dvw;
  max-width: 160px;
}
@media (max-width: 767px) {
  .ftr-btm {
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .ftr-btm .cr {
    order: 2;
  }
  .ftr-btm .copy, .ftr-btm .logo {
    order: 1;
  }
  .ftr-btm .logo {
    width: 40dvw;
  }
}
@media (min-width: 768px) {
  .ftr-btm .cr {
    margin-right: auto;
  }
}

/*------------------------------------------------------------
btn
------------------------------------------------------------*/
.btn-01 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  background: linear-gradient(to right, #ECC11A, #FFD224);
  color: #fff;
  font-size: 0.875rem;
  white-space: nowrap;
  padding: 0 1.5rem;
  aspect-ratio: 4/1;
  width: 60dvw;
  max-width: 300px;
  min-width: 220px;
  height: auto;
  overflow: hidden;
  transition: 0.6s;
}
@media (min-width: 768px) {
  .btn-01 {
    aspect-ratio: 249/51;
  }
}
.btn-01 .ico {
  background: #fff;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.btn-01 .ico .ico-svg {
  width: 11px;
}
.btn-01 .ico .ico-svg path {
  transition: .6s;
  fill: #ECC11A;
}
.btn-01:before, .btn-01:after {
  content: "";
  position: absolute;
}
.btn-01:after {
  background: linear-gradient(to right, #00a0d1, #98eac7cc);
  inset: 0;
  opacity: 0;
  transition: .6s;
}
.btn-01:hover .ico-svg path {
  fill: #00A0D1;
}
.btn-01:hover:after {
  opacity: 1;
}
.btn-01 > * {
  position: relative;
  z-index: 1;
}

/*------------------------------------------------------------
title
------------------------------------------------------------*/
.sec-ttl-01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sec-ttl-01 .sec-ttl-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sec-ttl-01 .sec-ttl-main .ja {
  font-size: .8rem;
}
.sec-ttl-01 .sec-ttl-main .en {
  font-size: calc(clamp(3.5rem, 2.4286rem + 5.3571vw, 5rem));
}
.sec-ttl-01 .sec-ttl-lead {
  font-size: calc(clamp(1rem, 0.6429rem + 1.7857vw, 1.5rem));
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.sec-ttl-02 .en {
  text-transform: lowercase;
  font-size: calc(clamp(3.5rem, 2.4286rem + 5.3571vw, 5rem));
}

/*------------------------------------------------------------
   table
------------------------------------------------------------*/
.l-tbl-01 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  row-gap: 1rem;
  margin: 0 auto;
  max-width: 700px;
}
@media (max-width: 767px) {
  .l-tbl-01 {
    column-gap: 0;
  }
}
.l-tbl-01 dt {
  padding: 2rem 0.75rem 1rem;
  align-self: start;
  border-top: 1px solid #d2c9ae;
}
.l-tbl-01 dd {
  margin: 0;
  padding: 2rem 0.75rem 1rem;
  border-top: 1px solid #e7e2d4;
}
.l-tbl-01 dd strong {
  display: block;
  margin-bottom: 0.5rem;
}
.l-tbl-01 dt.full,
.l-tbl-01 dd.full {
  grid-column: 1 / -1;
  border: none;
}
.l-tbl-01 dt.full {
  padding: 0;
}
.l-tbl-01 dd.full {
  padding-top: 0;
}

/*------------------------------------------------------------
form
------------------------------------------------------------*/
.p-contact {
  padding-bottom: 60px;
}
.p-contact main {
  background: #f5f3ed;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .p-contact main {
    padding-top: 10rem;
  }
}
.p-contact .contact-wrap {
  text-align: center;
}
@media (max-width: 600px) {
  .p-contact .contact-wrap {
    padding-left: 5dvw;
    padding-right: 5dvw;
  }
}
.p-contact .contact-wrap .ttl {
  margin-bottom: 1rem;
}
.p-contact .contact-wrap .txt {
  max-width: 700px;
  margin: 0 auto 2rem;
  text-align: justify;
}
@media (min-width: 768px) {
  .p-contact .contact-wrap .txt {
    margin-bottom: 4rem;
  }
}
.p-contact .contact-form {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}
.p-contact .contact-item {
  margin-top: 1.2rem;
}
@media (min-width: 768px) {
  .p-contact .contact-item {
    margin-top: 2rem;
  }
}
.p-contact .contact-item a {
  text-decoration: underline;
  transition: .4s;
}
.p-contact .contact-item a:hover {
  color: #00a0d1;
}
.p-contact .contact-item:has(.contact-select) {
  position: relative;
}
.p-contact .contact-item:has(.contact-select)::after {
  content: "";
  position: absolute;
  top: 65%;
  right: 2rem;
  width: .6rem;
  height: .6rem;
  border-right: 1px solid #363E46;
  border-bottom: 1px solid #363E46;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}
.p-contact .contact-label {
  display: block;
  margin-bottom: .5rem;
}
.p-contact .contact-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.p-contact .contact-input, .p-contact .contact-select, .p-contact .contact-textarea {
  width: 100%;
  padding: 1rem 1rem;
  border: none;
  border-radius: 6px;
}
.p-contact .contact-textarea {
  min-height: 10rem;
}
.p-contact .contact-check {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  cursor: pointer;
  position: relative;
  margin-top: 2rem;
}
.p-contact .contact-check span {
  position: relative;
  padding-left: 2.8rem;
}
.p-contact .contact-check span::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.1rem;
  aspect-ratio: 1/1;
  width: 1.8rem;
  border-radius: 100vmax;
  background: #fff;
}
.p-contact .contact-check span::after {
  content: "";
  position: absolute;
  left: .65rem;
  top: .25rem;
  width: .5rem;
  height: .8rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  opacity: 0;
  transition: .2s ease;
}
.p-contact .contact-checkbox {
  position: absolute;
  opacity: 0;
}
.p-contact .contact-checkbox:checked + span::before {
  background: #00a0d1;
}
.p-contact .contact-checkbox:checked + span::after {
  opacity: 1;
  transform: scale(1) rotate(45deg);
}
.p-contact .contact-btn {
  border: none;
  cursor: pointer;
  min-width: 200px;
}
.p-contact .contact-item-submit {
  text-align: center;
  margin-top: 3rem;
}

/*------------------------------------------------------------
   Breadcrumb
------------------------------------------------------------*/
/*------------------------------------------------------------
list
------------------------------------------------------------*/
/*------------------------------------------------------------
  Nav
------------------------------------------------------------*/
.gnav-list {
  display: flex;
}
.gnav-list a {
  display: inline-block;
  position: relative;
}
@media (min-width: 1024px) {
  .gnav-list a {
    color: #363E46;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #363E46;
    transition: -webkit-text-fill-color 0.3s ease;
  }
}
.gnav-list a:hover {
  background: linear-gradient(to right, #00A0D1, #98EAC7cc, #00A0D1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shine-left 2s linear infinite;
}
@keyframes shine-left {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: 0% center;
  }
}
.gnav a, .gnav a:before, .gnav a svg {
  transition: .3s;
}
.gnav a:hover {
  color: #ECC11A;
}
.gnav a:hover:before {
  background: #ECC11A !important;
}
.gnav a:hover svg {
  fill: #ECC11A;
}
.gnav-btn {
  will-change: transform;
  transition: .8s;
}
.gnav-btn.is-hidden {
  transform: translateY(-20vh);
}
@media (max-width: 1023px) {
  .gnav-btn {
    position: absolute;
    top: 8px;
    right: 5dvw;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    max-width: 40px;
    width: 15dvw;
    height: auto;
    transition: all 0.3s ease;
    border-radius: 12px;
  }
}
@media (min-width: 1024px) {
  .gnav-btn {
    display: none;
  }
}
.gnav-btn-ico {
  display: block;
  position: relative;
  width: 100%;
  height: 0px;
  background: #fff;
  transition: all 0.3s ease;
}
.gnav-btn-ico:before, .gnav-btn-ico:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center center;
  width: 100%;
  height: 1px;
  background: #363E46;
  transition: all 0.3s ease 0.1s;
  will-change: transform;
}
.gnav-btn-ico:before {
  transform: translateX(-50%) translateY(-4px) translateZ(0);
}
.gnav-btn-ico:after {
  transform: translateX(-50%) translateY(4px) translateZ(0);
}
.gnav-btn.is-open {
  background: transparent;
}
.gnav-btn.is-open .gnav-btn-ico {
  background: transparent;
}
.gnav-btn.is-open .gnav-btn-ico:before, .gnav-btn.is-open .gnav-btn-ico:after {
  background: #fff;
  top: 0;
  width: 100%;
}
.gnav-btn.is-open .gnav-btn-ico:before {
  transform: translateX(-50%) rotate(12deg);
}
.gnav-btn.is-open .gnav-btn-ico:after {
  transform: translateX(-50%) rotate(-12deg);
}

/*------------------------------------------------------------
  paginate
------------------------------------------------------------*/
.wp-pagenavi {
  margin-top: 4rem;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  transition: .3s;
  font-family: "Roboto Condensed", sans-serif;
  font-size: .8rem;
}
.wp-pagenavi .current {
  pointer-events: none;
  color: #00a0d1;
  border-bottom: 1px solid #00a0d1;
}
.wp-pagenavi a {
  padding: .5rem;
  transition: .3s;
}
.wp-pagenavi a:hover {
  color: #00a0d1;
}
.wp-pagenavi span {
  padding: .5rem;
}

/*------------------------------------------------------------
  loading
------------------------------------------------------------*/
.c-loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #f5f3ed;
  overflow: hidden;
  z-index: 99999999;
  opacity: 1;
  pointer-events: none;
}
.c-loading__content {
  width: 270px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
@media screen and (max-width: 834px) {
  .c-loading__content {
    width: 270px;
  }
}
.c-loading__content img {
  transition: all .8s ease-in;
  opacity: 0;
}
.c-loading__content .txt {
  width: 100%;
  height: 40px;
  background-color: #f6f4ed;
  position: absolute;
  bottom: 0;
  display: none;
}
@media screen and (max-width: 834px) {
  .c-loading__content .txt {
    height: 30px;
  }
}
.c-loading.logo {
  transition: all .8s ease-in;
}
.c-loading.logo .c-loading__content {
  transition: all .5s ease-in;
  opacity: 1;
}
.c-loading.logo .c-loading__content img {
  opacity: 1;
}

.completed .c-loading {
  opacity: 0;
}
.completed .c-loading .c-loading__content {
  transition: all .4s ease-in;
  opacity: 0;
}

/*------------------------------------------------------------
  slide images
------------------------------------------------------------*/
.c-sld {
  overflow-x: hidden;
}
.c-sld .trk {
  display: flex;
  will-change: transform;
}
.c-sld .trk li {
  flex: 0 0 auto;
  margin-right: 40px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  height: fit-content;
}
@media (max-width: 767px) {
  .c-sld .trk li {
    margin-right: 20px;
  }
}
.c-sld .trk li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c-sld .trk li.typ-a {
  width: 32vw;
  aspect-ratio: 400 / 250;
  margin-top: 7%;
}
.c-sld .trk li.typ-b {
  width: 40vw;
  aspect-ratio: 460 / 280;
}

/*------------------------------------------------------------
display
------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

.d-b {
  display: block;
}
.d-ib {
  display: inline-block;
}
.d-f {
  display: flex;
}

/*------------------------------------------------------------
margin
------------------------------------------------------------*/
.mb-h {
  margin-bottom: .5rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 1rem;
}

/*------------------------------------------------------------
text
------------------------------------------------------------*/
.taj {
  text-align: justify;
}

.tar {
  text-align: right;
}

.ja {
  font-family: "Noto Sans JP", sans-serif;
}

.en {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  line-height: 1;
}

/*------------------------------------------------------------
icon
------------------------------------------------------------*/
.blank {
  display: inline-flex;
  align-items: center;
  gap: .4em;
}
.blank .ico {
  width: 12px;
  height: auto;
  fill: #7d7d7d;
}

/*------------------------------------------------------------
fade/fadein variation
------------------------------------------------------------*/
.fade {
  position: relative;
}
.fade.fadein {
  opacity: 1;
}
.fade-01 {
  z-index: 1;
  opacity: 0;
  transition: all .6s ease-in-out;
}
.fade-02 {
  opacity: 0;
  transform: translateX(-1rem);
}
.fade-02.fadein {
  transition: all 1.2s cubic-bezier(0, 0, 0.6, 1);
  transform: translateX(0);
}

/*------------------------------------------------------------
inview アクション
------------------------------------------------------------*/
.inview-text {
  display: inline-block;
  vertical-align: bottom;
  overflow: hidden;
  position: relative;
}
.inview-text.en {
  padding-bottom: .5rem;
}
.inview-text::before {
  content: "";
  display: block;
  height: 0;
}
.inview-text .text-inner {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
}
.inview-text.inview .text-inner {
  transform: translateY(0);
  opacity: 1;
}
.inview-img {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.inview-img img {
  display: block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
}
.inview-img.inview img {
  transform: translateY(0);
  opacity: 1;
}
.inview-wipe {
  overflow: hidden;
}
.inview-wipe .wipe-inner {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.18, 1);
}
.inview-wipe.inview .wipe-inner {
  clip-path: inset(0 0 0 0);
}
.inview-scale {
  transform: scale(0.8);
  filter: blur(8px);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), filter;
  transform-origin: center bottom;
}
.inview-scale.inview {
  transform: scale(1);
  filter: blur(0);
}
.inview-scale-02.inview {
  filter: blur(4px);
}

/*------------------------------------------------------------
duplicate text & animation マスクスライドアニメ
------------------------------------------------------------*/
.dup-line {
  display: block;
  position: relative;
}
@media (min-width: 768px) {
  .dup-line.is-rtl {
    text-align: right;
  }
}
.dup-line.is-rtl .mask {
  left: 0;
  right: 0;
}
.dup-line .base {
  opacity: 0.2;
}
.dup-line .mask {
  position: absolute;
  top: 0;
  left: 0;
  mask-image: linear-gradient(to right, black 100%, transparent 0%);
  -webkit-mask-image: linear-gradient(to right, black 100%, transparent 0%);
  mask-size: 0% 100%;
  -webkit-mask-size: 0% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  opacity: 0;
  transition: mask-size 1s cubic-bezier(0.33, 1, 0.68, 1) var(--delay, 0s), -webkit-mask-size 1s cubic-bezier(0.33, 1, 0.68, 1) var(--delay, 0s), opacity 0.3s ease-out var(--delay, 0s);
}
.dup-img {
  position: relative;
  display: block;
}
.dup-img .base {
  display: block;
  opacity: 0.2;
}
.dup-img .mask {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  mask-image: linear-gradient(to right, black 100%, transparent 0%);
  -webkit-mask-image: linear-gradient(to right, black 100%, transparent 0%);
  mask-size: 0% 100%;
  -webkit-mask-size: 0% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  opacity: 0;
  transition: mask-size 1s cubic-bezier(0.33, 1, 0.68, 1) var(--delay, 0s), -webkit-mask-size 1s cubic-bezier(0.33, 1, 0.68, 1) var(--delay, 0s), opacity 0.3s ease-out var(--delay, 0s);
}

.fadein .mask {
  opacity: 1;
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}

/*------------------------------------------------------------
parallax
------------------------------------------------------------*/
.prx-02-txt {
  will-change: transform;
  transition: transform 0.2s ease-out;
}

/*------------------------------------------------------------
グラデーションテキスト
------------------------------------------------------------*/
.txt-grad {
  display: inline-block;
  color: #363E46;
  background: linear-gradient(to right, #00A0D1, #98EAC7cc, #00A0D1);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #363E46;
  transition: -webkit-text-fill-color 0.3s ease;
}
.txt-grad:hover {
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
}

/* 光が流れるアニメーション */
@keyframes shine {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: 0% center;
  }
}
/*------------------------------------------------------------
modal
------------------------------------------------------------*/
.modal {
  position: fixed;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.modal-inner {
  position: relative;
  place-self: center;
  inset: 0;
  width: 84dvw;
  max-width: 800px;
  background: #fff;
  padding: 5px;
  border-radius: 12px;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .modal-inner {
    height: 90dvh;
  }
}
.modal-inner::after {
  content: "";
  position: absolute;
  bottom: 110px;
  right: -140px;
  width: 250px;
  height: 45px;
  background: url("../../assets/img/logo_02.svg") no-repeat center/contain;
  pointer-events: none;
  transform: rotate(90deg);
}
.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
}
@media (min-width: 1024px) {
  .modal-close {
    top: 16px;
    right: 16px;
  }
}
.modal-content {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding: 35px;
}
@media (max-width: 1023px) {
  .modal-content {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
  }
}
.modal-content img {
  max-width: 260px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 60px 12px 12px 12px;
}
.modal-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.modal-role {
  font-size: .7rem;
  line-height: 1;
  margin-bottom: .6rem;
}
.modal-name {
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.modal-text {
  text-align: justify;
}

/*------------------------------------------------------------
overlay
------------------------------------------------------------*/
.overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url("../../assets/img/test_02.jpg");
  background-size: cover;
  mix-blend-mode: soft-light;
  z-index: 2;
}
.overlay.v2 {
  background-image: url("../../assets/img/test_06.jpg");
  opacity: .6;
}
.overlay.v3 {
  background-image: url("../../assets/img/test_03.jpg");
}
.overlay.v4 {
  background-image: url("../../assets/img/test_02.jpg");
  mix-blend-mode: exclusion;
  opacity: .8;
}

/*------------------------------------------------------------
toppage
------------------------------------------------------------*/
.p-top main.main {
  overflow-x: hidden;
}
.p-top .sec-hero {
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .p-top .sec-hero {
    margin-bottom: 8rem;
  }
}
.p-top .sec-hero-kv {
  width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-top .sec-hero-kv {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .p-top .sec-hero-kv .kv-list {
    position: relative;
    height: 93dvw;
  }
}
@media (min-width: 768px) {
  .p-top .sec-hero-kv .kv-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
  }
}
.p-top .sec-hero-kv .kv-item {
  width: calc(100% / 3);
}
@media (max-width: 767px) {
  .p-top .sec-hero-kv .kv-item {
    position: absolute;
    width: 50dvw;
  }
}
.p-top .sec-hero-kv .kv-item-circle {
  margin: 0;
}
@media (max-width: 767px) {
  .p-top .sec-hero-kv .kv-item-circle {
    top: 0;
    left: 38%;
    z-index: 3;
  }
}
.p-top .sec-hero-kv .kv-item-square {
  margin: 0;
}
@media (max-width: 767px) {
  .p-top .sec-hero-kv .kv-item-square {
    top: 18dvw;
    left: 0;
    z-index: 1;
  }
}
@media (max-width: 767px) {
  .p-top .sec-hero-kv .kv-item-triangle {
    top: 39dvw;
    right: -5dvw;
    z-index: 2;
  }
}
@media (min-width: 768px) {
  .p-top .sec-hero-kv .kv-item-triangle {
    margin: 0 10px 0 -5dvw;
    transition-delay: .1s;
    transition-duration: .8s;
  }
}
.p-top .sec-hero-kv .kv-item img {
  display: block;
  width: 100%;
  height: auto;
}
.p-top .sec-hero-ttl {
  position: relative;
  width: 80dvw;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-top .sec-hero-ttl {
    width: 82dvw;
    margin-top: -21dvw;
    margin-left: 3dvw;
  }
  .p-top .sec-hero-ttl li {
    margin-top: -0.8rem;
  }
  .p-top .sec-hero-ttl li:first-child {
    margin-top: 0;
    width: 52dvw;
  }
}
.p-top .sec-hero-ttl img {
  display: block;
  width: 100%;
  height: auto;
}
.p-top .sec-hero-desc {
  position: relative;
  width: 80dvw;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-top .sec-hero-desc {
    width: 90dvw;
    font-size: calc(clamp(0.615rem, 0.1349rem + 2.7433vw, 1.45rem));
    line-height: 1.75;
    margin-top: -0.5rem;
  }
}
@media (min-width: 768px) {
  .p-top .sec-hero-desc {
    font-size: calc(clamp(0.1rem, -0.2859rem + 1.9294vw, 1.74rem));
  }
}
.p-top .sec-hero .txt-link {
  text-align: right;
  width: 90dvw;
  font-size: calc(clamp(0.615rem, 0.1349rem + 2.7433vw, 1.45rem));
  margin: 0.7rem auto 0 5dvw;
  border-bottom: 2px solid;
  width: fit-content;
  transition-delay: 1.6s;
}
@media (min-width: 768px) {
  .p-top .sec-hero .txt-link {
    font-size: calc(clamp(0.1rem, -0.2859rem + 1.9294vw, 1.74rem));
    margin-top: 1.5rem;
    margin-left: 10dvw;
  }
}
@media (min-width: 1025px) {
  .p-top .sec-hero .txt-link {
    display: none;
  }
}

/*------------------------------------------------------------
about / 私たちについて
------------------------------------------------------------*/
.p-about .about {
  position: relative;
  overflow: hidden;
  color: #fff;
}
.p-about .about-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}
.p-about .about-bg.is-absolute {
  position: absolute;
  top: 0;
}
.p-about .about.is-end .about-inner {
  position: relative;
  height: auto;
}
.p-about .about.is-end .about-item {
  position: relative;
  top: auto;
  left: auto;
  height: auto;
  opacity: 1;
}
.p-about .about-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .8s ease;
  will-change: opacity;
}
.p-about .about-video.is-active {
  opacity: 1;
}
.p-about .about-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .8s ease;
  mix-blend-mode: soft-light;
}
.p-about .about-overlay.is-active {
  opacity: 1;
}
.p-about .about-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-about .about-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: opacity 0.8s ease;
}
@media (max-width: 767px) {
  .p-about .about-item.item-03 {
    min-height: 100vh;
  }
}
.p-about .about-item .overlay {
  opacity: 0;
}
.p-about .about-item video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}
.p-about .about-item .about-txt {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  padding: 0 10dvw;
  text-align: justify;
}
@media (min-width: 1024px) {
  .p-about .about-item .about-txt {
    max-width: 700px;
    padding: 0;
  }
}
.p-about .about-item .about-txt .sec-ttl {
  display: flex;
  flex-direction: column;
  gap: 0rem;
  align-items: center;
  line-height: 1.35;
}
.p-about .about-item .about-txt .sec-ttl .en {
  margin-bottom: .5rem;
}
.p-about .about-item .about-txt .sec-ttl .ja {
  font-size: 1rem;
}
@media (min-width: 1024px) {
  .p-about .about-item .about-txt .sec-ttl .ja {
    font-size: 1.2rem;
  }
}
.p-about .about-item.active {
  opacity: 1;
  z-index: 2;
}
.p-about .about-item.active .overlay {
  opacity: 1;
}
.p-about .about .about-progress {
  position: fixed;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 20;
}
.p-about .about .about-progress .dot {
  display: block;
  width: 4px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 100vmax;
  transition: .4s;
}
.p-about .about .about-progress .dot.is-active {
  background-color: white;
  height: 32px;
}
@media (max-width: 767px) {
  .p-about .about .about-progress {
    right: 2dvw;
  }
}
.p-about .team {
  position: relative;
  padding: 5rem 0;
  background: #fff;
}
.p-about .team .sec-ttl {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .p-about .team .sec-ttl {
    margin-bottom: 4rem;
  }
}
.p-about .team .sec-ttl .en:first-child {
  padding-bottom: 0;
  font-size: 1rem;
}
.p-about .team .photo {
  width: 90dvw;
  max-width: 1000px;
  margin: 0 auto 6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 8dvw;
}
@media (max-width: 1023px) {
  .p-about .team .photo {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 5dvw;
  }
}
.p-about .team .photo .item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 1023px) {
  .p-about .team .photo .item {
    gap: .6rem;
  }
}
.p-about .team .photo .item.js-modal {
  cursor: pointer;
}
.p-about .team .photo .item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 60px 12px 12px 12px;
}
.p-about .team .photo .item figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
  justify-content: center;
  line-height: 1;
}
@media (max-width: 1023px) {
  .p-about .team .photo .item figcaption {
    gap: .4rem;
  }
}
.p-about .team .photo .item .role {
  font-size: .8rem;
}
.p-about .team .photo .item .name {
  font-size: 1.0rem;
}
.p-about .team .l-tbl-01 {
  margin-bottom: 3rem;
}
.p-about .team .map {
  width: 100dvw;
  height: 50dvh;
}
@media (min-width: 1024px) {
  .p-about .team .map {
    width: 90dvw;
    border-radius: 60px 0 0 12px;
    margin-left: auto;
  }
}
.p-about .team .btn-wrap {
  text-align: center;
  margin-top: 3rem;
}

/*------------------------------------------------------------
service / 事業内容
------------------------------------------------------------*/
.p-service {
  overflow-x: hidden;
}
.p-service .service-hdr {
  position: relative;
  width: 100dvw;
  height: 60dvh;
  overflow: hidden;
  display: block;
}
.p-service .service-hdr-video {
  z-index: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
}
.p-service .service-hdr .sec-ttl {
  position: absolute;
  place-self: center;
  inset: 0;
  z-index: 3;
  color: #fff;
}
.p-service .service-cnt {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  margin: 80px 0;
}
@media (max-width: 1199px) {
  .p-service .service-cnt {
    gap: 2rem;
  }
}
.p-service .service-cnt-item {
  position: relative;
}
@media (max-width: 1199px) {
  .p-service .service-cnt-item {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (max-width: 1199px) {
  .p-service .service-cnt-item:nth-child(even) {
    align-items: flex-end;
  }
}
.p-service .service-cnt-item:nth-child(even) .img {
  margin-right: auto;
  margin-left: unset;
}
.p-service .service-cnt-item:nth-child(even) .service-cnt-txt {
  right: 5dvw;
  left: unset;
  border-radius: 12px 0 0 12px;
}
@media (max-width: 1199px) {
  .p-service .service-cnt-item:nth-child(even) .service-cnt-txt {
    right: 0;
    padding: 1rem 5dvw 1rem 8dvw;
  }
}
.p-service .service-cnt-item .img {
  width: 70dvw;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .p-service .service-cnt-item .img {
    width: 100dvw;
  }
}
.p-service .service-cnt-item .img img {
  width: 100%;
  height: auto;
  display: block;
}
.p-service .service-cnt-txt {
  max-width: 600px;
  background: #fff;
  border-radius: 0 12px 12px 0;
  padding: 40px;
  z-index: 2;
}
@media (max-width: 1023px) {
  .p-service .service-cnt-txt {
    margin-top: -50px;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .p-service .service-cnt-txt {
    margin-top: -100px;
  }
}
@media (max-width: 1199px) {
  .p-service .service-cnt-txt {
    width: 85dvw;
    position: relative;
    padding: 1rem 8dvw 1rem 5dvw;
  }
}
@media (min-width: 1200px) {
  .p-service .service-cnt-txt {
    position: absolute;
    top: 50%;
    left: 5dvw;
    transform: translateY(-50%);
    width: 50%;
    padding: 40px;
  }
}
.p-service .service-cnt-txt .ttl {
  position: relative;
  font-size: 1.5rem;
  margin-bottom: .5rem;
  width: fit-content;
}
@media (max-width: 1199px) {
  .p-service .service-cnt-txt .ttl {
    font-size: 1.15rem;
  }
}
.p-service .service-cnt-txt .ttl::before {
  position: absolute;
  z-index: -1;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 5rem;
  font-weight: 100;
  color: #00a0d1;
  background: linear-gradient(to right, #00a0d1, #98eac7cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.p-service .service-cnt-txt .ttl-no1::before {
  content: "01";
  top: -5rem;
  left: -2rem;
}
.p-service .service-cnt-txt .ttl-no2::before {
  content: "02";
  top: -5rem;
  right: -4rem;
}
.p-service .service-cnt-txt .ttl-no3::before {
  content: "03";
  top: -5rem;
  left: -2rem;
}
.p-service .service-cnt-txt .txt {
  text-align: justify;
}

/*------------------------------------------------------------
news / お知らせ一覧
------------------------------------------------------------*/
.p-news-list .main {
  margin-bottom: 4rem;
}
.p-news-list .sec-ttl {
  margin-top: 10rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .p-news-list .sec-ttl {
    margin-top: 6rem;
    margin-bottom: 1rem;
  }
}
.p-news-list .nav-cat {
  margin: 0 auto 2rem;
  max-width: 1200px;
  width: 90dvw;
  font-size: .8rem;
  font-family: "Roboto Condensed", sans-serif;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .p-news-list .nav-cat {
    margin-bottom: 1rem;
  }
}
.p-news-list .nav-cat-list {
  display: flex;
  gap: .5rem;
  justify-content: flex-end;
}
.p-news-list .nav-cat-list a {
  display: inline-block;
  position: relative;
  padding: .2rem .4rem;
  transition: .3s;
}
.p-news-list .nav-cat-list a:hover {
  color: #00a0d1;
}
.p-news-list .nav-cat-list a:active {
  color: #00a0d1;
  border-bottom: 1px solid #00a0d1;
}
.p-news-list .nav-cat-list a.active {
  color: #00a0d1;
  border-bottom: 1px solid #00a0d1;
}
.p-news-list .news-list {
  margin: 0 auto;
  max-width: 1200px;
  width: 90dvw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 15px;
}
@media (max-width: 767px) {
  .p-news-list .news-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}
.p-news-list .news-list .item > a {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 10px;
}
.p-news-list .news-list .item > a:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #00a0d1, #98eac7cc);
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 12px;
  z-index: -1;
}
.p-news-list .news-list .item > a:hover {
  color: #fff;
}
.p-news-list .news-list .item > a:hover::before {
  opacity: 1;
}
.p-news-list .news-list .item-img {
  border: 1px solid #E9F1F9;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 210 / 130;
}
.p-news-list .news-list .item-img img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-news-list .news-list .item-txt {
  padding: 0 .5rem 1rem;
}
.p-news-list .news-list .item .meta {
  font-size: .65rem;
  margin-bottom: .3rem;
}
.p-news-list .news-list .item .meta .tag {
  background: #ECC11A;
  color: #fff;
  padding: 0 .3rem;
  border-radius: 2px;
}
.p-news-list .news-list .item .txt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/*------------------------------------------------------------
news-single / 記事
------------------------------------------------------------*/
.p-news-single .main {
  margin-bottom: 4rem;
}
.p-news-single .news-single {
  margin: 8rem auto 0;
  max-width: 1200px;
  width: 90dvw;
}
@media (max-width: 1023px) {
  .p-news-single .news-single {
    margin-top: 4rem;
  }
}
.p-news-single .news-single-kv {
  margin-bottom: 3rem;
  overflow: hidden;
  aspect-ratio: 16/5;
  border-radius: 12px;
}
@media (max-width: 767px) {
  .p-news-single .news-single-kv {
    margin-bottom: 1rem;
    aspect-ratio: 16/6;
  }
}
.p-news-single .news-single-kv img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-news-single .news-single-txt {
  margin: 0 auto;
  width: 90dvw;
  max-width: 800px;
}
.p-news-single .news-single .meta {
  margin-bottom: .5rem;
}
.p-news-single .news-single .ttl {
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.p-news-single .news-single .txt p {
  margin-bottom: 1rem;
}
.p-news-single .news-single .txt a {
  text-decoration: underline;
  transition: .4s;
}
.p-news-single .news-single .txt a:hover {
  color: #00a0d1;
}

/*------------------------------------------------------------
privacy / プライバシーポリシー
------------------------------------------------------------*/
.p-privacy main {
  background: #f5f3ed;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .p-privacy main {
    padding-top: 10rem;
  }
}
.p-privacy .privacy .sec-ttl {
  margin-bottom: 1rem;
}
.p-privacy .privacy-cnt {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .p-privacy .privacy-cnt {
    padding-left: 5dvw;
    padding-right: 5dvw;
  }
}
.p-privacy .privacy-dsc {
  padding-bottom: 1.5rem;
  border-bottom: 1px dotted;
}
.p-privacy .privacy-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.p-privacy .privacy-item ul li {
  position: relative;
  padding-left: 1em;
}
.p-privacy .privacy-item ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.p-privacy .privacy-ttl {
  font-weight: 600;
}
.p-privacy .privacy-contact {
  margin-left: auto;
  text-align: right;
}
.p-privacy .privacy-date {
  margin-left: auto;
  text-align: right;
}

/*------------------------------------------------------------
section
------------------------------------------------------------*/
.sec-fv {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100dvw;
  height: 100dvh;
  overflow: hidden;
  /* overlay color */
  /*&::before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba($col-blue, 0.6);
  pointer-events: none;
  }*/
}
.sec-fv-video {
  z-index: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
}
.sec-fv-main {
  position: relative;
  z-index: 2;
  width: 92%;
  height: 92%;
}
.sec-fv-main .fv-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 16dvw;
  max-width: 180px;
}
@media (max-width: 1023px) {
  .sec-fv-main .fv-logo {
    display: none;
  }
}
.sec-fv-main .fv-copy {
  position: absolute;
  left: 0;
  color: #fff;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .sec-fv-main .fv-copy {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (min-width: 1024px) {
  .sec-fv-main .fv-copy {
    bottom: 0;
    white-space: nowrap;
  }
}
.sec-fv-main .fv-copy-01 {
  font-weight: 300;
  font-size: calc(clamp(4rem, 3.1429rem + 4.2857vw, 7rem));
  display: flex;
  flex-direction: column;
  gap: 0rem;
}
@media (max-width: 469px) {
  .sec-fv-main .fv-copy-01 {
    letter-spacing: 0;
  }
}
.sec-fv-main .fv-copy-02 {
  font-weight: 400;
  font-size: calc(clamp(0.9rem, 0.6273rem + 1.3636vw, 1.5rem));
  line-height: 2;
}
.sec-fv-main .fv-copy .fz-s {
  font-size: .8em;
}
@media (min-width: 375px) {
  .sec-fv-main .fv-copy .fz-l {
    font-size: 1.2em;
  }
}
.sec-fv-main .fv-copy .r-01 {
  display: none;
}
@media (max-width: 434px) {
  .sec-fv-main .fv-copy .r-01 {
    display: block;
  }
}
@media (min-width: 715px) and (max-width: 1199px) {
  .sec-fv-main .fv-copy .r-01 {
    display: block;
  }
}
.sec-fv-main .fv-copy .r-02 {
  display: none;
}
@media (min-width: 582px) and (max-width: 714px) {
  .sec-fv-main .fv-copy .r-02 {
    display: block;
  }
}
.sec-fv .scroll {
  position: absolute;
  bottom: 3dvh;
  left: 50%;
  transform: translateX(-50%);
}
.sec-fv .scroll img {
  width: 20dvw;
  max-width: 70px;
}
.sec-theme {
  position: relative;
  width: 95dvw;
  margin: 0 auto;
  margin: 2.5dvw auto;
}
.sec-theme:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: radial-gradient(circle, #FFFEF4 0%, #FFFEF4 60%, #FFFCDD 100%);
  z-index: -1;
}
.sec-theme-main {
  display: flex;
  flex-direction: row;
  gap: 5dvw;
  align-items: center;
  justify-content: center;
  min-height: 95dvh;
}
@media (max-width: 768px) {
  .sec-theme-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding-bottom: 10dvh;
  }
}
.sec-theme-kv {
  z-index: 10;
}
@media (max-width: 768px) {
  .sec-theme-kv {
    width: 50dvw;
    margin-top: -1rem;
  }
}
@media (min-width: 769px) {
  .sec-theme-kv {
    width: 30dvw;
    max-width: 370px;
  }
}
.sec-theme-txt {
  position: relative;
  flex: 1;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 768px) {
  .sec-theme-txt {
    width: 80dvw;
    gap: 1rem;
    align-items: center;
  }
}
.sec-theme-txt-img {
  position: absolute;
  top: 0dvw;
  right: -6dvw;
  aspect-ratio: 151 / 132;
  width: 15dvw;
  pointer-events: none;
}
@media (max-width: 767px) {
  .sec-theme-txt-img {
    max-width: 80px;
  }
}
@media (min-width: 769px) {
  .sec-theme-txt-img {
    width: 10dvw;
    right: -3dvw;
    max-width: 90px;
  }
}
@media (min-width: 1024px) {
  .sec-theme-txt-img {
    top: -1dvw;
    right: -2dvw;
  }
}
.sec-theme-txt .sec-ttl {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  white-space: nowrap;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .sec-theme-txt .sec-ttl {
    gap: .5rem;
  }
}
.sec-theme-txt .sec-ttl .en {
  font-size: calc(clamp(2.13rem, -0.1633rem + 11.4667vw, 3.42rem));
  color: #ECC11A;
  line-height: 1.1;
}
.sec-theme-txt .sec-ttl .ja {
  font-size: calc(clamp(1.15rem, -0.0944rem + 6.2222vw, 1.85rem));
  line-height: 1.3;
}
.sec-theme-txt .txt {
  text-align: justify;
}
@media (max-width: 768px) {
  .sec-theme-txt .btn-wrap {
    margin-top: 1rem;
  }
}
.sec-service {
  color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  .sec-service {
    padding-left: 10dvw;
    padding-right: 10dvw;
    padding-top: 10dvh;
    padding-bottom: 10dvh;
    gap: 1.2rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .sec-service {
    padding-left: 8dvw;
    padding-right: 8dvw;
  }
}
.sec-service::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #00A0D1 0%, rgba(152, 234, 199, 0.8) 100%);
  pointer-events: none;
  z-index: 1;
}
.sec-service > *:not(.c-sld) {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .sec-service .sec-ttl {
    gap: 0;
  }
}
@media (min-width: 768px) {
  .sec-service .sec-ttl-main {
    align-items: center;
  }
}
.sec-service-main {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .sec-service-main {
    gap: 1rem;
  }
}
@media (min-width: 768px) {
  .sec-service-main {
    display: flex;
    flex-direction: row;
    gap: 5rem;
    align-items: center;
    justify-content: center;
  }
}
.sec-service-txt {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 767px) {
  .sec-service-txt {
    order: 2;
  }
}
@media (min-width: 768px) {
  .sec-service-txt {
    gap: 2rem;
  }
}
.sec-service-txt .ttl {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  line-height: 1;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .sec-service-txt .ttl {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .sec-service-txt .ttl {
    font-size: calc(clamp(2rem, -0.6667rem + 13.3333vw, 3.5rem));
  }
}
@media (max-width: 767px) {
  .sec-service-txt .ttl .logo {
    width: 90%;
    margin: 0 auto;
  }
}
.sec-service-txt .ttl .sub-01 {
  display: block;
  font-size: calc(clamp(1rem, -0.7rem + 3.2vw, 1.1rem));
}
.sec-service-txt .ttl .sub-02 {
  font-size: .8rem;
}
@media (min-width: 375px) {
  .sec-service-txt .ttl .sub-02 {
    font-size: 1rem;
  }
}
.sec-service-txt .desc {
  text-align: justify;
}
@media (max-width: 767px) {
  .sec-service-txt .btn-wrap {
    text-align: center;
    margin-top: 1rem;
  }
}
.sec-service-kv {
  position: relative;
  max-width: 350px;
  width: 30dvw;
}
@media (max-width: 767px) {
  .sec-service-kv {
    width: 55dvw;
    order: 1;
  }
}
.sec-service-kv .name {
  position: absolute;
  top: 0;
  right: 100px;
}
.sec-service .c-sld {
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 50dvh;
}
@media (min-width: 768px) {
  .sec-service .c-sld {
    bottom: 5rem;
  }
}
.sec-news {
  width: 80dvw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 10dvh;
  padding-bottom: 10dvh;
}
@media (min-width: 768px) {
  .sec-news {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.sec-news .sec-ttl {
  gap: .2rem;
}
@media (min-width: 768px) {
  .sec-news .sec-ttl {
    align-items: center;
  }
}
.sec-news .sec-ttl-main {
  line-height: 1;
}
.sec-news-main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
.sec-news-main .btn-wrap {
  text-align: center;
}
.sec-news-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sec-news-item > a {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  transition: .3s;
}
@media (max-width: 767px) {
  .sec-news-item > a {
    gap: 5dvw;
  }
}
@media (min-width: 1024px) {
  .sec-news-item > a {
    padding: 12px 40px 12px 12px;
  }
}
.sec-news-item > a:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #00a0d1, #98eac7cc);
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 12px;
  z-index: -1;
}
.sec-news-item > a:hover {
  color: #fff;
  transition: 0s;
}
.sec-news-item > a:hover:before {
  opacity: 1;
}
.sec-news-thumb {
  border-radius: 4px;
  border: 1px solid #E9F1F9;
  aspect-ratio: 210 / 130;
  max-width: 210px;
  width: 30dvw;
  height: auto;
  overflow: hidden;
  flex-shrink: 0;
}
.sec-news-thumb img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 1s;
}
.sec-news-txt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.sec-about {
  position: relative;
  border-radius: 12px;
  width: 100dvw;
  min-height: 95dvh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .sec-about {
    padding: 4rem;
  }
}
.sec-about-video {
  z-index: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
}
.sec-about::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #00A0D1 0%, rgba(152, 234, 199, 0.8) 100%);
  pointer-events: none;
  z-index: 1;
  opacity: .2;
}
.sec-about .sec-ttl {
  position: relative;
  z-index: 2;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .sec-about .sec-ttl {
    margin-left: 10%;
  }
}
.sec-about .sec-ttl-main {
  align-items: flex-start;
}
.sec-about .sec-ttl-lead {
  text-align: left;
}
.sec-about-main {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #E9F1F9;
}
@media (min-width: 768px) {
  .sec-about-main {
    margin-top: 4rem;
    padding-top: 4rem;
  }
}
.sec-about-txt {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 650px;
  text-align: justify;
}
@media (min-width: 768px) {
  .sec-about-txt {
    width: 55%;
    margin-left: 45%;
  }
}
