/* =========================================
  Base
========================================= */

:root {
  --container: 1100px;
  --font: 16px;
  --text: #1a1a1a;
  --muted: #666;
  --line: #e5e7eb;
  --bg: #f8f8f8;
  --soft: #f6f7f9;
  --brand: #156c3c;

  --radius: 16px;
  --shadow: 0 10px 24px rgba(0,0,0,.08);

  --header-top-h: 44px;
  --header-bottom-h: 76px;
  --textbar-h: 56px;
}

*{
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
}

body {
  margin:0;
  font-size: var(--font);
  color: var(--text);
  background: var(--bg);
  font-family: system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  line-height:1.7;
}

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

a {
  color:inherit; text-decoration:none;
}

a:hover {
  opacity:.85;
}

.l-container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.sp_img {
  display: none;
}

@media (max-width: 480px) {
  .pc_img {
    display: none;
  }

  .sp_img {
    display: block;
  }
}


/* ===============================
   Loading Overlay
================================= */

.p-loading {
  position: fixed;
  inset: 0;
  background: #48E5E4;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.p-loading__inner {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}

.p-loading.is-show .p-loading__inner {
  opacity: 1;
  transform: translateY(0);
}

.p-loading.is-fade .p-loading__inner {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity .6s ease, transform .6s ease;
}

.p-loading.is-hide {
  transform: translateY(-100%);
  transition: transform 1.2s cubic-bezier(.76,0,.24,1);
}

.p-loading__inner {
  transform: translateY(30px) scale(.95);
}

.p-loading.is-show .p-loading__inner {
  transform: translateY(0) scale(1);
}

.p-loading__logo {
  width: 280px;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

/* ===============================
  見出しデザイン no1
================================= */

.p-sectionHead {
  text-align:center;
  margin: 20px 0 50px;
}

.p-sectionHead__sub {
  position: relative;
  display: inline-block;
  font-size: 20px;
  letter-spacing: .1em;
  margin: 0;
  padding-left: 60px;
}

.p-sectionHead__sub::before {
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform: translateY(-50%);
  width: 50px;
  height: 3px;
  background:#1a1a1a;
  border-radius: 3px;
}

.p-sectionHead__main {
  font-size: 65px;
  font-weight: 800;
  margin: 5px 0 0;
  line-height: 1;
  letter-spacing: .02em;
}

/* ===============================
  見出しデザイン no2
================================= */

.p-sectionHead--aqua {
  text-align:center;
}

.p-sectionHead__sub--aqua {
  position: relative;
  display: inline-block;
  font-size: 20px;
  letter-spacing: .1em;
  margin: 0;
  padding-left: 60px;
}

.p-sectionHead__sub--aqua::before {
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform: translateY(-50%);
  width: 50px;
  height: 3px;
  background:#48E5E4;
  border-radius: 3px;
}

/* ===============================
  リンクボタンデザイン no1
================================= */

.c-roundBtn{
  position:relative;
  display:inline-flex;
  align-items:center;
  width:250px;
  height:70px;
  border-radius:999px;
  background:#3a3a3a; 
  color:#fff;
  text-decoration:none;
  font-size:18px;

  transition:.3s ease;
}

.c-roundBtn__text{
  pointer-events:none;
  padding-left: 60px;
}

.c-roundBtn__icon{
  position:absolute;
  right:40px;
  width:24px;
  transition: transform .3s ease;
}

.c-roundBtn:hover{
  background:#48E5E4;
}

.c-roundBtn:hover .c-roundBtn__icon{
  filter: brightness(0) invert(1);
  transform: translateX(8px);
}

/* ===============================
  リンクボタンデザイン no2
================================= */

.c-roundBtn2{
  position:relative;
  display:inline-flex;
  align-items:center;
  width:300px;
  height:70px;
  border-radius:999px;
  background:#3a3a3a; 
  color:#fff;
  text-decoration:none;
  font-size:20px;
  transition:.3s ease;
  line-height: 1.2;
}

.c-roundBtn2__text{
  pointer-events:none;
  padding-left: 60px;
}

.c-roundBtn2__icon{
  position:absolute;
  right:40px;
  width:24px;
  transition: transform .3s ease;
}

.c-roundBtn2:hover{
  background:#48E5E4;
}

.c-roundBtn2:hover .c-roundBtn2__icon{
  filter: brightness(0) invert(1);
  transform: translateX(8px);
}


@media (max-width: 768px) {
  .p-sectionHead__sub{
    padding-left: 50px;
    font-size: 16px;
  }

  .p-sectionHead__sub::before{
    width: 35px;
    height: 4px;
  }

  .p-sectionHead__sub--aqua{
    padding-left: 50px;
    font-size: 16px;
  }

  .p-sectionHead__sub--aqua::before{
    width: 35px;
    height: 4px;
  }

  .p-sectionHead__main{
    font-size: 56px;
  }
}

/* =========================================
  メタボール背景
========================================= */

#jellyCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

.page-content {
  position: relative;
  z-index: 1;
}

/* =========================================
  header
========================================= */

.l-header {
  position: fixed;
  top:0;left:0; right:0;
  z-index: 1000;
  background:transparent;
  transition:
    background .4s ease,
    box-shadow .4s ease;
}

.l-header.is-scrolled{
  background:#fff;
  box-shadow:0 4px 20px rgba(0,0,0,.05);
}

body.is-subpage .l-header{
  background:#fff;
  box-shadow:0 4px 20px rgba(0,0,0,.05);
}

.l-header .l-container {
  width: 90%;
  max-width: none;
}

/* darkスライド */
.l-header.is-dark .c-headerTopLinks__link,
.l-header.is-dark .c-headerTopLinks__btn,
.l-header.is-dark .c-gnav__link {
  color: #fff;
}

/* lightスライド */
.l-header.is-light .c-headerTopLinks__link,
.l-header.is-light .c-headerTopLinks__btn,
.l-header.is-light .c-gnav__link {
  color: #000;
}

.l-header.is-dark .c-gnav a {
  color: #fff;
}

.l-header.is-light .c-gnav a {
  color: #000;
}

.l-header__top {
  padding: 10px 0 0;
  display:flex;
  align-items:center;
  color:#fff;
}

.c-headerTopLinks {
  list-style:none;
  display:flex;
  align-items:center;
  gap: 18px;
  margin:0;
  padding:0;
  justify-content:flex-end;
  font-size: 14px;
  font-weight:600;
}

.c-headerTopLinks__link {
  color:#fff;
  padding: 6px 4px;
  transition:.25s;
}

.c-headerTopLinks__link:hover {
  opacity:.7;
}

.c-headerTopLinks__btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 5px 20px;
  border-radius: 999px;
  border: 2px solid;
  font-weight:700;
  transition:.25s;
  background: transparent;
}

@media (min-width: 1800px) {
  .l-header .l-container {
    width: 70%;
  }
}

/* ===============================
  ヘッダー　FAQ
================================= */

.c-headerTopLinks__btn--faq {
  border-color:#38cfd9;
  color:#38cfd9;
}

.c-headerTopLinks__btn--faq:hover {
  background:#38cfd9;
  color:#0f172a;
}

/* ===============================
  ヘッダー　CONTACT
================================= */

.c-headerTopLinks__btn--contact {
  border-color:#ff8a00;
  color:#ff8a00;
}

.c-headerTopLinks__btn--contact:hover {
  background:#ff8a00;
  color:#fff;
}

.c-headerTopLinks a {
  color: #1a1a1a;
}

.l-header__bottomInner {
  min-height: var(--header-bottom-h);
  height: auto;
  padding: 10px 0;
  display:flex;
  justify-content:space-between;
  gap: 16px;
}

.c-logo img {
  width: 120px;
  height:auto;
  position: absolute;
  top: 10px;
}

/* ===============================
  PC nav
================================= */

.c-gnav {
  display:block;
}

.c-gnav__list {
  list-style:none;
  display:flex;
  margin:0; padding:0;
  align-items:center;
}

.c-gnav__link {
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 10px 8px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
}

.c-gnav__item.has-sub > .c-gnav__link{
  position:relative;
  display:flex;
  align-items:center;
  gap:8px;
}

.c-gnav__item > .c-gnav__link{
  padding: 10px 18px;
  border-radius: 999px;
  transition: .25s ease;
}

.c-gnav__item:hover > .c-gnav__link{
  background:#48E5E4;
  color:#000;
}

.c-gnav__item.has-sub > .c-gnav__link::after{
  content:"";
  width:10px;
  height:10px;
  border-right:3px solid currentColor;
  border-bottom:3px solid currentColor;
  transform:rotate(45deg);
  transition:transform .3s ease;
  margin-top:-2px;
  border-radius: 1px;
}

/* subnav */
.c-gnav__item {
  position:relative;
}

.l-header .c-subnav,
.l-header .c-subnav a{
  color:#222 !important;
}

.c-subnav {
  position:absolute;
  top: 100%;
  left:0;
  right: auto;
  min-width: 320px;
  list-style:none;
  margin: 8px 0 0;
  padding: 10px 20px;
  background:#fff;
  border: 1px solid #48E5E4;
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity:0;
  visibility:hidden;
  transform: translateY(6px);
  transition: .18s;
}

.c-subnav li{
  position:relative;
  border-bottom:1px dashed #7fd3d2;
}

.c-subnav li:last-child{
  border-bottom:none;
}

.c-gnav__item.is-right .c-subnav{
  left:auto;
  right:0;
}

.c-subnav a {
  display:block;
  border-radius: 10px;
  padding: 16px 50px 16px 24px;
}

.c-subnav a::after{
  content:"";
  position:absolute;
  right:24px;
  top:50%;
  transform:translateY(-50%);
  width:18px;
  height:18px;
  background:url("../img/btn_arrow_b.png") no-repeat center/contain;
  transition:.2s ease;
}

.c-subnav a:hover {
  color: #48E5E4 !important;
}

.c-gnav__item:hover > .c-subnav,
.c-gnav__item.is-open > .c-subnav {
  opacity:1;
  visibility:visible;
  transform: translateY(0);
  z-index: 99;
}

/* ===============================
  hamburger / drawer
================================= */

.c-hamburger {
  display: none;
  width: 48px;
  height: 40px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.c-hamburger span {
  display: block;
  width: 40px;
  height: 5px;
  background: #48E5E4;
  border-radius: 4px;
  margin: 8px auto;
  transition: all .35s cubic-bezier(.68,-0.55,.27,1.55);
}

.c-hamburger.is-open span:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}

.c-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.c-hamburger.is-open span:nth-child(3) {
  transform: translateY(-13px) rotate(-45deg);
}

/* ===============================
   Drawer デザイン
================================= */

.c-drawer {
  position: fixed;
  top: var(--header-bottom-h);
  left: 0;
  right: 0;
  bottom: 0;

  background: #fff;
  z-index: 999;
  overflow-y: auto;

  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: .3s ease;
  z-index: 999;
}

.c-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.c-drawer__inner {
  border: 2px solid #48E5E4;
  border-radius: 20px;
  padding: 24px;
  margin: 20px;
}

.c-drawer__nav {
  display:block;
  padding-left: 0;
  list-style-type: none;
}

.c-drawer__nav > li {
  border-bottom: 1px dashed #999;
}

.c-drawer__nav > li:last-child {
  border-bottom: none;
}

.c-drawer__nav > li > a {
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 18px 0;
  border:none;
  border-radius:0;
  font-weight:600;
  font-size:16px;
  background:none;
  color: #48AEB5;
}

.c-drawer__nav a::after {
  content:"";
  width:20px;
  height:20px;
  background:url("../img/btn_arrow_b.png") no-repeat center/contain;
}

.c-acc {
  border:none;
  border-radius:0;
  overflow:visible;
  background:none;
}

.c-acc,
.c-acc__btn {
  background: transparent !important;
  border: none;
}

.c-acc__btn {
  padding: 20px 0;
  font-size:18px;
  font-weight:700;
  color:#48AEB5;
  border:none;
}

.c-acc__btn::after {
  display:none;
}

.c-acc__panel {
  padding:0;
}

.c-acc__panel a {
  display:flex;
  justify-content:space-between;
  padding:16px 0;
  border-bottom:1px dashed #999;
  background:none;
  border-radius:0;
}

.c-acc__panel a:last-child {
  border-bottom: none;
}

.c-spContactBtn {
  display: none;
}

/* ===============================
  Text Bar
================================= */

.c-textBar {
  position: relative;
  height:56px;
  z-index:10;
  transition: .25s;
}

.c-textBar--sub {
  position: relative;
  z-index:10;
  transition: .25s;
}

.c-textBar.is-fixed {
  position:fixed;
  top: var(--header-height);
  left:0;
  right:0;
}


@keyframes fadeInBar {
  from{ opacity:0; transform: translateY(-8px); }
  to{ opacity:1; transform: translateY(0); }
}

.c-textBar__inner {
  position: relative;
}

.c-textBar_sp_img {
  display: none;
}

@media (max-width: 750px) {
  .c-textBar_pc_img {
    display: none;
  }

  .c-textBar_sp_img {
    display: block;
  }
}

/* ===============================
  リンクボタンデザイン　no3
================================= */

.c-roundBtn--bar{
  position: absolute;
  top: 20%;
  right: 20%;
  display: block;
  width:200px;
  height:30px;
  line-height: 30px;
  border-radius:50px;
  background:#3a3a3a; 
  color:#fff;
  text-decoration:none;
  font-size:16px;
  transition:.3s ease;
}

.c-roundBtn--bar__text{
  pointer-events:none;
  padding-left: 60px;
}

.c-roundBtn--bar__text::after{
  content: "";
  display: inline-block;
  width: 17px;
  height: 12px;
  background: url('../img/btn_arrow_w.png') no-repeat;
  background-position: center;
  background-size: contain;
  padding-left: 20px;
}

.c-roundBtn--bar:hover{
  background: #48E5E4;
}

.c-textBar__link {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #b8dfc7;
  background:#fff;
  font-weight: 700;
}

@media (min-width: 1800px) {
  .c-roundBtn--bar{
    position: absolute;
    top: 20%;
    right: 20%;
    display: block;
    width:250px;
    height:50px;
    line-height: 50px;
    border-radius:50px;
    background:#3a3a3a; 
    color:#fff;
    text-decoration:none;
    font-size:20px;
    transition:.3s ease;
  }
}

@media (max-width: 1024px) {
  .c-roundBtn--bar{
    top: 10%;
    right: 12%;
  }
}

@media (max-width: 768px) {
  .c-roundBtn--bar{
    height:20px;
    line-height: 20px;
    font-size:14px;
    right: 8%;
  }
}

@media (max-width: 750px) {
  .c-roundBtn--bar{
    height:50px;
    line-height: 50px;
    font-size:14px;
    right: 5%;
    width: 150px;
  }

  .c-roundBtn--bar__text{
    padding-left: 30px;
  }
}

@media (max-width: 480px) {
  .c-roundBtn--bar{
    height:30px;
    line-height: 30px;
    right: 2%;
    font-size: 12px;
    width: 130px;
  }
}

/* ===============================
  リンクボタンデザイン　no4
================================= */

.c-roundBtn3{
  position:relative;
  display:inline-flex;
  align-items:center;
  width:230px;
  height:70px;
  border-radius:999px;
  background:#3a3a3a; 
  color:#fff;
  text-decoration:none;
  font-size:20px;
  transition:.3s ease;
}

.c-roundBtn3__text{
  pointer-events:none;
  padding-left: 60px;
}

.c-roundBtn3__icon{
  position:absolute;
  right:40px;
  width:24px;
  transition: transform .3s ease;
}

.c-roundBtn3:hover{
  background:#48E5E4;
}

.c-roundBtn3:hover .c-roundBtn3__icon{
  filter: brightness(0) invert(1);
  transform: translateX(8px);
}

/* ===============================
  リンクボタンデザイン　no5
================================= */

.c-roundBtn4{
  position:relative;
  display:inline-flex;
  align-items:center;
  width:280px;
  height:70px;
  border-radius:999px;
  background:#3a3a3a; 
  color:#fff;
  text-decoration:none;
  font-size:20px;
  transition:.3s ease;
}

.c-roundBtn4__text{
  pointer-events:none;
  padding-left: 60px;
}

.c-roundBtn4__icon{
  position:absolute;
  right:40px;
  width:24px;
  transition: transform .3s ease;
}

.c-roundBtn4:hover{
  background:#48E5E4;
}

.c-roundBtn4:hover .c-roundBtn4__icon{
  filter: brightness(0) invert(1);
  transform: translateX(8px);
}

/* ===============================
  fixed partner cta
================================ */

.c-fixedBta {
  position: fixed;
  top: 200px;
  right: 0;
  z-index: 99;
}

.c-fixedBta img {
  display:block;
  width: 100px;
  height:auto;
}

@media (max-width: 480px) {
  .c-fixedBta {
    display: none;
  }
}

/* ===============================
  Floating contact cta
================================ */

.c-floatingCta{
  position:fixed;
  left:20px;
  bottom:20px;
  z-index:999;
  opacity:0;
  transform:translateY(20px);
  pointer-events:none;
  transition:all .4s ease;
}

.c-floatingCta.is-show{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.c-floatingCta img{
  display:block;
  width:320px;
  border-radius:28px;
}

.c-floatingCta__link{
  display:block;
}

.c-floatingCta__close{
  position:absolute;
  top:-10px;
  right:-10px;
  width:30px;
  height:30px;
  border:none;
  border-radius:50%;
  background:#fff;
  font-size:18px;
  cursor:pointer;
  line-height:28px;
  text-align:center;
  box-shadow:0 2px 8px rgba(0,0,0,.15);
  z-index: 2;
}

@media (max-width: 480px) {
  .c-floatingCta img{
    width:270px;
  }
}

/* ===============================
　　　Main / Sections
================================ */

.p-section {
  padding: 64px 0;
}

.p-anniversary {
  padding: 0 0 80px;
}

.p-banner {
  width: 80%;
  margin: 0 auto;
}

.p-service,
.p-material,
.p-framework,
.p-achievements {
  padding: 64px 0;
}

.p-vision {
  background: url(../img/top_vi_mi_bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: 100px 0;
}

.p-sustainability {
  background: url(../img/top_sustainability_bg.png) no-repeat center top;
  background-size: 100% 100%;
  padding: 160px 0;
}

.p-sustainability__head {
  position:relative;
  font-size:30px;
  font-weight:700;
  text-align:center;
  z-index:1;
  margin: 50px 0;
}

.p-sustainability__head::before{
  content:"";
  position:absolute;
  width:100px;
  height:100px;
  border-radius:50%;
  background:#cfcfcf;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%) scale(1);
  z-index:-1;
  animation: floatCircle 4s ease-in-out infinite;
}

@keyframes floatCircle{
  0%{
    transform:translate(-50%, -50%) scale(1);
    opacity:.9;
  }
  50%{
    transform:translate(-50%, -50%) scale(1.18);
    opacity:1;
  }
  100%{
    transform:translate(-50%, -50%) scale(1);
    opacity:.9;
  }
}

.p-sustainability__read {
  text-align: center;
  width: 50%;
  margin: 20px auto 40px;
  font-weight: 600;
}

.p-sustainability__box img {
  margin: 30px 0;
}

.p-sustainability__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-sustainability__item {
  flex: 1;
}

.p-sustainability__text {
  flex: 1.2;
}

.p-vision--layout {
  text-align: center;
}

.c-sectionHead {
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap: 12px;
}

.c-sectionHead__title {
  margin:0;
  font-size: 28px;
  letter-spacing:.02em;
}

.c-title {
  margin:0;
  font-size: 26px;
  text-transform: lowercase;
}

.c-text {
  margin:0;
  font-weight: 600;
}

.u-mt12 {
  margin-top:12px;
}

.u-mt16 {
  margin-top:16px;
}

.u-mt24 {
  margin-top:24px;
}

.c-btnRow {
  display:flex;
  justify-content:center;
  gap:80px;
}

.c-serviceBtn {
  text-align:center;
  text-decoration:none;
  color:#111;
}

.c-serviceBtn__circle {
  position:relative;
  width:420px;
  height:420px;
  border-radius:50%;
  border:1px solid #6eaab0;
  overflow:hidden;
  margin:0 auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .c-btnRow {
    gap:40px;
  }
}

@media (max-width: 940px) {
  .c-serviceBtn__circle {
    width:320px;
    height:320px;
  }
}

@media (max-width: 768px) {
  .c-btnRow {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .p-section {
    padding: 0 0 64px;
  }
	
  .p-banner {
    margin: 80px auto 0;
  }

  .p-vision {
    background: url(../img/top_vi_mi_bg_sp.png) no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 0 0 100px;
  }

  .p-vision--layout .c-text br {
    display: none;
  }

  .p-sustainability {
  background: url(../img/top_sustainability_bg.png) no-repeat center top;
    background-size: cover;
    padding: 100px 0 160px;
  }

  .p-sustainability__head {
    font-size:24px;
  }

  .p-sustainability__inner {
    flex-direction: column;
  }

  .p-sustainability__read {
    width: 100%;
  }

  .p-sustainability__text ul {
    padding-left: 20px;
  }

  .p-service,
  .p-achievements {
    padding: 0;
  }

  .p-material {
    padding: 100px 0 0;
  }

  .p-framework {
    padding: 0 0 50px;
  }
}

.c-serviceBtn__circle--corp{
  background-image:url("../img/top_service_corp.png");
}

.c-serviceBtn__circle--ind{
  background-image:url("../img/top_service_indivi.png");
}

.c-serviceBtn__person {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%) scale(1);
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}

.c-serviceBtn__person {
  width:75%;
}

.c-serviceBtn__person--ind {
  max-width:25%;
  max-height:65%;
}

.c-serviceBtn:hover .c-serviceBtn__person {
  transform:translate(-50%, -50%) scale(1.6);
}

.c-serviceBtn__label {
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  text-align:center;
  z-index:3;
}

.c-serviceBtn__en {
  display:block;
  font-size:32px;
  font-weight:700;
  color:#111;
}

.c-serviceBtn__jp {
  display:block;
  font-size:14px;
  color:#6eaab0;
}

.c-serviceBtn__jp--o {
  display:block;
  font-size:14px;
  color:#E68247;
}

.c-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color:#fff;
  font-weight: 800;
  letter-spacing:.02em;
}

/* ===============================
  FV Swiper
================================= */

.p-fv {
  background:#fff;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.p-fv__swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.p-fv__swiper .swiper-slide {
  display: flex;
  width: 100%;
  height: 100%;
}

.p-fv__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-fv__swiper .swiper-pagination-bullet {
  opacity:.5;
}

.p-fv__swiper .swiper-pagination-bullet-active {
  opacity:1;
}

/* ===============================
  banner
================================= */

.p-banner__item {
  display:block;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}

/* ===============================
  News
================================= */

.c-newsList {
  list-style:none;
  padding:0;
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
}

.c-newsItem a {
  display:flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items:baseline;
}
.c-newsItem__date {color: var(--muted);
  font-weight: 700;
}

.c-newsItem__title {
  font-weight: 700;
}

.c-media {
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items:center;
}

.c-media__img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.c-wideLinks {
  width: min(80%, 860px);
  margin-inline: auto;
  display:grid;
  gap: 14px;
}

.c-wideLink {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 16px 18px;
  border-radius: 14px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow: 0 6px 14px rgba(0,0,0,.05);
  font-weight: 800;
}

.c-wideLink::after {
  content:"→";
  color: var(--brand);
  font-weight: 900;
}

.c-grid2x2 {
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.c-card {
  display:block;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:#fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.05);
}

.c-card__title {
  margin:0;
  font-size:18px;
}

.c-card__text {
  margin:10px 0 0;
  color: var(--muted);
}

/* ===============================
  Anniversary
================================= */

.p-anniversary--container {
  text-align: center;
}

.p-anniversary--container img {
  width: 70%;
  margin: 50px auto;
}

.p-anniversary--container p {
  font-size: 20px;
}

@media (max-width: 480px) {
  .p-anniversary--container p {
    text-align: left;
  }
}

/* ===============================
  material
================================= */

.c-sectionTitle {
  font-size: 48px;
  text-align: center;
}

.c-sectionTitle::before { 
  content:"";
  display:inline-block;
  width: 30px;
  height:4px;
  background:#48E5E4;
  margin-right:20px;
  vertical-align: middle;
}

.c-sectionTitle::after { 
  content:"";
  display:inline-block;
  width: 30px;
  height:4px;
  background:#48E5E4;
  margin-left:20px;
  vertical-align: middle;
}

.c-infoCards{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.c-infoCard{
  position:relative;
  display:block;
  padding:10px 56px;
  border:2px solid #6fbac3;
  border-radius:28px;
  text-decoration:none;
  color:#222;
  background:#fff;
  transition:all .35s ease;
}

.c-infoCard__title{
  font-size:32px;
  font-weight:700;
  margin-bottom:12px;
}

.c-infoCard__subtitle{
  font-size:22px;
  font-weight:600;
  margin-bottom:16px;
}

.c-infoCard__text{
  font-size:16px;
  line-height:1.8;
  max-width:800px;
}

.c-infoCard__arrow{
  position:absolute;
  right:40px;
  top:50%;
  transform:translateY(-50%);
  width:28px;
  height:28px;
  background:url("../img/btn_arrow_b.png") no-repeat center;
  background-size:contain;
  transition:transform .3s ease;
}

.c-infoCard:hover{
  background:#48E5E4;
  color:#fff;
  border-color:#5CB0BA;
  transform:translateY(-4px);
  box-shadow:0 16px 32px rgba(0,0,0,0.1);
}

.c-infoCard:hover .c-infoCard__arrow{
  background:url("../img/btn_arrow_w.png") no-repeat center;
  background-size:contain;
  transform:translateY(-50%) translateX(8px);
}

/* ===============================
  carbon
================================= */

.p-carbon{
  position:relative;
  overflow:hidden;
  padding:120px 0;
}

.p-carbon__inner{
  display:flex;
  align-items:center;
  position:relative;
}

.p-carbon__content{
  width:65%;
  margin-left:5%;
  background:#fff;
  padding:80px;
  border-radius:40px;
  position:relative;
  z-index:2;
}

.p-carbon__text {
  width: 90%;
}

.p-carbon__image{
  width:55%;
  margin-left:-8%;
  z-index:3;
  position:relative;
}

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

@media (min-width: 1800px) {
  .p-carbon__text {
    width: 70%;
  }
}

@media (max-width: 1024px) {
  .p-carbon__content{
    padding:40px;
  }
}

@media (max-width: 900px){

  .p-carbon__inner{
    flex-direction:column;
  }

  .p-carbon__content,
  .p-carbon__image{
    width:100%;
    margin-right:0;
  }
}
 
@media (max-width: 768px) {
  .p-carbon__content{
    background: none;
  }
}

@media (max-width: 480px) {
  .p-carbon{
    padding: 0;
  }
  .p-carbon__content{
    padding: 10px;
  }

  .c-sectionTitle {
    font-size: 36px;
  }

  .c-infoCard__arrow{ 
    top:90%;
  }

  .c-infoCard{
    padding:10px 56px 50px;
  }
 
  .p-achievements {
    padding: 0 0 80px;
  }
}

/* ===============================
  project
================================= */

.p-project{
  position:relative;
  overflow:hidden;
  padding:120px 0;
}

.p-project__title::before {
  content:"";
  display:inline-block;
  width: 50px;
  height:2px;
  background:#48E5E4;
  margin-right:8px;
}

.p-project__inner{
  display:flex;
  align-items:center;
  position:relative;
}

.p-project--reverse .p-project__inner{
  flex-direction:row-reverse;
}

.p-project_content{
  width:65%;
  margin-right:5%;
  background:#fff;
  padding: 80px 80px 80px 120px;
  border-radius:40px;
  position:relative;
  z-index:2;
}

.p-project__image{
  width:55%;
  margin-left:0;
  margin-right:-8%;
  z-index:3;
  position:relative;
}

.p-project__image img{
  width:95%;
  height:auto;
  display:block;
}

@media (min-width:1800px) {
  .p-project_content{
    width:50%;
    padding: 80px 80px 80px 200px;
  }
}

@media (max-width:1024px) {
  .p-project_content{
    padding: 40px 40px 40px 80px;
  }
}

@media (max-width:900px) {
  .p-project_content{
    width: 90%;
    padding: 40px 40px 40px 80px;
  }

  .p-project__inner,
  .p-project--reverse .p-project__inner{
    flex-direction:column;
  }

  .p-project__image{
    margin:0;
  }
}

@media (max-width:768px) {
  .p-project_content{
    background: none;
    padding: 0;
  }

  .p-project__image{
    width: 100%;
  }
}

@media (max-width: 480px) {
  .p-project{
    padding:120px 0 0;
  }
}

/* ===============================
  achievements
================================= */

.p-achievements__grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:24px;
  background: #fff;
}

.p-achievements__period {
  margin: 0;
}

.p-achievements__heading {
  font-size: 18px;
  margin: 5px 0 0;
  line-height: 1.2;
}

.p-achievements__item{
  position:relative;
  padding:100px 40px;
  min-height:260px;
  border:1px solid #a8d0d2;
  overflow:hidden;
}

.p-achievements__item p{
  margin-bottom: 4px;
  font-size: 30px;
  font-weight: 600;
}

.p-achievements__item--01 {
  background: url(../img/top_achievements_img_01.png) no-repeat center;
  background-size: cover;
}

.p-achievements__item--02 {
  background: url(../img/top_achievements_img_02.png) no-repeat right bottom;
  background-size: 50%;
}

.p-achievements__item--03 {
  background: url(../img/top_achievements_img_03.png) no-repeat right bottom;
  background-size: 50%;
}

.p-achievements__item--04 {
  background: url(../img/top_achievements_img_04.png) no-repeat right bottom;
  background-size: 50%;
}

.p-achievements__visualInner{
  text-align:left;
}

.p-achievements__title{
  font-size:56px;
  color:#fff;
}

.p-achievements__number{
  display:inline-block;
  gap: 8px;
  margin-top:0;
  position: relative;
}

.slot{
  display:flex;
}

.slot__digit{
  position:relative;
  width:100px;
  height:160px;
  overflow:hidden;
  font-size:160px;
  font-weight:800;
  line-height:160px;
  color:#48E5E4;
  text-align:center;
}

.slot__numbers{
  position:absolute;
  top:0;
  left:0;
  width:100%;
}

.slot__comma{
  font-size:80px;
  font-weight:800;
  line-height:160px;
  color:#48E5E4;
  width:40px;
  text-align:center;
}

.p-achievements__unit{
  font-size:24px;
  font-weight:700;
  margin-bottom:12px;
  position: absolute;
  right: -30px;
  top: 110px;
}

@media (max-width:768px){
  .p-achievements__grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 480px) {
  .p-achievements__item{
    position:relative;
    padding:50px 30px;
    min-height:260px;
    border:1px solid #a8d0d2;
    overflow:hidden;
  }

  .p-achievements__item .p-heading__main {
    font-size: 44px;
  }
  
  .slot__digit{
    width:65px;
    font-size:100px;
  }
}

/* ===============================
  X blog
================================= */

.c-snsX-container h3,
.c-snsBlog-container h3 {
  border-bottom: 1px solid #5CB0BA;
  padding-left: 10px;
}

.c-snsX-container h3::before,
.c-snsBlog-container h3::before {
  content:"";
  display:inline-block;
  width: 15px;
  height:15px;
  background:#48E5E4;
  margin-right:8px;
}

.c-snsX-inner {
  display: flex;
  justify-content: center;
  gap: 30px;
  width: 80%;
  margin: 0 auto;
}

.c-snsBlog {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}

.c-snsBlog__x,
.c-snsBlog__blog {
  border:1px solid var(--line);
  border-radius: var(--radius);
  background:#fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.05);
  padding: 16px;
}

.c-blogList { 
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 10px;
}

.c-blogList a {
  display:flex;
  gap: 10px;
  align-items:baseline;
}

.c-blogList time {
  color: var(--muted);
  font-weight: 700;
}

/* ======================
   Top Blog Layout
====================== */

.p-topBlog__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:60px;
}

.p-topBlog__main a{
  text-decoration:none;
  color:#222;
  display:block;
}

.p-topBlog__thumb img{
  width:100%;
  height:auto;
  border-radius:16px;
}

.p-topBlog__date{
  display:block;
  margin-top:24px;
  font-size:16px;
  color:#69aeb5;
}

.p-topBlog__title{
  margin-top:12px;
  font-size:22px;
  line-height:1.6;
  font-weight:700;
}

.p-topBlog__sub{
  display:flex;
  flex-direction:column;
  gap:40px;
}

.p-topBlog__item a{
  display:flex;
  align-items:center;
  gap:24px;
  text-decoration:none;
  color:#222;
}

.p-topBlog__thumbSmall{
  width:180px;
  aspect-ratio: 16 / 9;
  flex-shrink:0;
  overflow:hidden;
  border-radius:16px;
}

.p-topBlog__thumbSmall img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.p-topBlog__item time{
  display:block;
  font-size:14px;
  color:#69aeb5;
  margin-bottom:6px;
}

.p-topBlog__item h5{
  font-size:18px;
  line-height:1.5;
  margin-top: 0;
}

.p-topBlog__btn {
  text-align: center;
  margin-top: 50px;
}

.p-topBlog a:hover img{
  opacity:.85;
  transition:.3s;
}

.p-topBlog a:hover h3,
.p-topBlog a:hover h4{
  color:#5bb5bb;
  transition:.3s;
}

@media(max-width:768px){
  .c-snsX-inner {
    flex-direction: column;
  }

  .p-topBlog__grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .p-topBlog__item a{
    gap:16px;
  }

  .p-topBlog__thumbSmall{
    width:120px;
  }

  .p-topBlog__thumbSmall img{
    width:120px;
    height:80px;
  }

  .p-topBlog__title{
    font-size:20px;
  }
}

/* ===============================
  Banner 4
================================= */

.c-bannerGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* =========================================
  TOP CONTACT
========================================= */


.l-top-contact {
  background: url(../img/top_contact_bg1.png) no-repeat center;
  background-size: cover;
  padding: 100px 0;
}

.l-top-contact2 {
  background: url(../img/page/sub_contact_bg2.png) no-repeat center;
  background-size: cover;
  padding: 100px 0;
}

.c-btnGroup {
  display:flex;
  justify-content: center;
  gap:24px;
}

.c-btn-image{
  display:block;
  width:250px;
  height:250px;
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
  transition:transform .3s ease;
}

.c-btn-image:hover{
  transform:translateY(-4px);
  transition:transform .3s ease;
}

.c-btn-image--primary{
  background-image:url("../img/top_contact_btn.png");
}

.c-btn-image--primary:hover{
  background-image:url("../img/top_contact_hoverBtn.png");
}

.c-btn-image--secondary{
  background-image:url("../img/top_seminar_btn.png");
}

.c-btn-image--secondary:hover{
  background-image:url("../img/top_seminar_hoverBtn.png");
}

@media (max-width:480px){
  .l-top-contact {
    background: url(../img/top_contact_bg1_sp.png) no-repeat center top;
    background-size: cover;
    padding: 100px 0;
  }

  .c-btnGroup{
    flex-direction:column;
    align-items:center;
  }

  .c-btn-image{
    width:100%;
    max-width:320px;
  }

  .l-top-contact2 {
    background: url(../img/page/sub_contact_bg2_sp.png) no-repeat center;
    background-size: cover;
    padding: 100px 0;
  }
}

/* =========================================
  SUB CONTACT
========================================= */

.l-sub-contact {
  background: url(../img/page/sub_contact_bg1.png) no-repeat center;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.l-sub-contact h2 {
  font-size: 38px;
}

.l-sub-contact p {
  font-size: 22px;
  font-weight: 600;
}

.l-sub-contact span {
  display: block;
  font-size: 14px;
  margin-bottom: 50px;
}

@media (max-width: 480px) {
  .l-sub-contact {
    background: url(../img/page/sub_contact_bg1_sp.png) no-repeat center top;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 80px 10px;
  }
}

/* =========================================
  footer
========================================= */

.l-footer__bottom {
  padding: 42px 0 18px;
  position: relative;
}

.l-footer__cols {
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  align-items:start;
}

.c-logo--footer img {
  width: 180px;
}

.c-footerTitle {
  margin:0 0 12px;
  font-size: 16px;
}

.c-footerNav {
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap: 10px;
}

.c-footerNav a:hover {
  color: #41D2D1;
  transition:.3s ease;
}

.separator {
  display: none;
}

.l-footer__copy {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
  text-align:center;
}

@media (max-width: 980px) {
  :root {
    --header-bottom-h: 70px;
  }

  .l-header__top {
    display: none;
  }

  .c-headerTopLinks li {
    display: none;
  }

  .l-header__bottom {
    background: #fff;
  }

  .l-header__bottomInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 12px 0;
  }

  .c-spContactBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 999px;
    border: 2px solid #ff8a00;
    color: #1a1a1a;
    margin-left: auto;
    margin-right: 8px;
  }

  .l-header.is-scrolled {
    height: auto;
  }

  .c-gnav {
    display: none;
  }

  .c-logo img {
    height: 60px;
    width: auto;
  }

  .c-hamburger {
    display: block;
  }

  .c-drawer.is-open {
    display:block;
  }

  .c-headerTopLinks__btn--contact {
    padding: 8px 16px;
    font-size: 14px;
  }

  .c-media {
    grid-template-columns: 1fr;
  }

  .c-snsBlog {
    grid-template-columns: 1fr;
  }

  .c-grid2x2 {
    grid-template-columns: 1fr;
  }

  .c-wideLinks {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .c-bannerGrid {
    grid-template-columns: 1fr;
  }
	
  .l-footer {
    padding-bottom: 120px;
  }

  .l-footer__cols {
    grid-template-columns: 1fr;
  }

  .c-logo--footer {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
  }

  .separator {
    display: block;
    width: 100%;
  }

  .l-footer__copy {
    margin-top: 200px;
  }
}

/* =========================
   共通アニメーション Heading
========================= */

.p-heading{
  text-align:center;
  padding:100px 0 0;
  position:relative;
}

.p-heading__subWrap{
  display:flex;
  align-items:center;
  justify-content:center;
  opacity: 0;
  gap:0;
  margin-bottom: 10px;
}

.p-heading__line{
  width:30px;
  height:3px;
  background:#48E5E4;
  margin-right:8px;
}

.p-heading__sub{
  font-size: 18px;
  margin:0;
  line-height:1;
}

.p-heading__main{
  font-size:64px;
  font-weight:800;
  line-height:1;
  position:relative;
  display:inline-block;
  overflow:hidden;
  color:#111;
  margin-top: 0;
}

.p-heading.js-heading .p-heading__main{
  opacity:0;
}

.p-heading__mask{
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:#48E5E4;
  transform:translateX(-100%);
  z-index:2;
}

.p-heading.is-active .p-heading__mask{
  animation: headingMask 1.2s ease forwards;
}

.p-heading.is-active .p-heading__main{
  opacity:1;
  transition-delay:.6s;
}

.p-heading.is-active .p-heading__sub{
  opacity:1;
  transform:translateX(0);
  transition-delay:.8s;
}

@keyframes headingMask{
  0%   { transform:translateX(-100%); }
  50%  { transform:translateX(0); }
  100% { transform:translateX(100%); }
}

.p-heading.is-white .p-heading__main{
  color:#fff;
}

.p-heading.is-white .p-heading__sub{
  color:#fff;
}

.p-heading.is-white .p-heading__line{
  background:#fff;
}

.p-heading.is-line-black .p-heading__line{
  background:#000;
}

.p-heading.is-left{
  text-align:left;
}

.p-heading.is-left .p-heading__subWrap{
  justify-content:flex-start;
}

.p-heading.is-right .p-heading__main{
  text-align:left;
}

.p-heading--simple{
  position:relative;
  padding-left:70px;
  opacity:1;
  font-size: 40px;
  line-height: 1.2;
}

.p-heading--simple::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:40px;
  height:3px;
  background:#67c5c5;
}

/* ===============================
   Detail Heading
================================= */

.p-heading--detail {
  text-align:left;
}

.p-heading__detail {
  font-size: 18px;
  font-weight: 700;
  color: #5CB0BA;
  margin-top: 16px;

  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}

.p-heading.is-show .p-heading__detail {
  opacity: 1;
  transform: translateY(0);
}

.p-heading--detail .p-heading__main {
  margin-bottom: 0;
  font-size: 80px;
}

.p-heading--detail .p-heading__detail {
  margin-top: 20px;
}

/* 見出し 大サイズ */

.p-heading--lg .p-heading__sub {
  font-size: 24px;
}

.p-heading--lg .p-heading__main {
  font-size: 68px;
  line-height: 1.1;
}

.p-heading--lg .p-heading__line {
  width: 70px;
}

@media(max-width:1024px){
  .p-heading--simple{
    font-size: 30px;
  }
}

@media(max-width:768px){
  .p-heading__main{
    font-size:48px;
  }

  .p-heading--simple{
    font-size: 30px !important;
  }
}

@media(max-width:480px){
  .p-heading--simple{
    font-size: 24px !important;
  }

  .p-heading.is-left{
    text-align:left;
    padding-top: 0;
  }

  .p-heading--detail .p-heading__main {
    font-size: 64px;
  }
	
  .p-heading--lg .p-heading__sub{
    font-size:16px;
  }

  .p-heading--lg .p-heading__main{
    font-size:40px;
  }
}

/* =========================
   to TOP
========================= */

.c-pageTop{
  position:fixed;
  right:20px;
  bottom:40px;
  z-index:1000;

  transform:translateX(200%);
  transition:transform .4s ease;
}

.c-pageTop img{
  display:block;
  width:60px;
  height:auto;
}

.c-pageTop.is-visible{
  transform:translateX(0);
}

/* =========================================
  sub page
========================================= */

.l-submain {
  margin-top: 180px;
}

.p-vision--sub {
  background: url(../img/page/sub_company_bg_01.png) no-repeat top center;
  background-size: cover;
  width: 100%;
  padding: 100px 0;
}

.c-text-emphasis {
  font-weight: 700;
}

.p-company-profile {
  padding-bottom: 0;
}

.p-anniversary {
	width: 60%;
	margin: 50px auto 0;
}

.c-career {
  background: url(../img/page/sub_company_career_bg.png) no-repeat top center;
  background-size: cover;
  padding: 100px 0;
  margin-top: 80px;
}

.c-career--inner h3 {
  margin-top: 30px;
}

.c-map {
  padding: 80px 0;
}

.c-map--inner{
  width:100%;
  aspect-ratio: 16 / 9;
  overflow:hidden;
  border-radius:16px;
}

.c-map--inner iframe{
  width:100%;
  height:100%;
  border:0;
}

@media (max-width: 980px) {
  .l-submain {
    margin-top: 80px;
  }

  .p-vision--sub {
    padding: 0 0 100px;
  }
}

@media (max-width: 768px) {
	.p-anniversary {
		width: 90%;
	}
}

@media (max-width: 750px) {
  .l-submain {
    margin-top: 180px;
  }
}


@media (max-width:480px) {
  .l-submain {
    margin-top: 100px;
  }

  .c-map--inner{
    aspect-ratio: 4 / 3;
  }

  .c-career {
    background: url(../img/page/sub_company_career_bg_sp.png) no-repeat top center;
    background-size: cover;
    padding: 100px 0;
    margin-top: 80px;
  }
}

.p-serviceIndividual__sub {
  background: url(../img/page/sub_service_individual_bg.png) no-repeat center center;
  background-size: 70% 70%;
  background-color: #f8f8f8;
  padding: 80px 0;
}

.p-serviceIndividual__sub--inner {
  width: 60%;
  margin: 0 0 0 auto;
}

.p-serviceIndividual__sub--inner h3 {
  font-size: 32px;
}

.p-serviceIndividual__sub--inner h3 span {
  display: block;
  font-size: 48px;
}

.p-serviceIndividual__sub--inner p span {
  display: block;
  color: #5CB0BA;
  font-weight: 500;
}

.p-serviceValue {
  background: url(../img/page/sub_service_individualValue_bg.png) no-repeat center;
  background-size: cover;
  padding: 120px 0;
}

.p-serviceFlow {
  padding: 50px 0;
}

.p-serviceFlow--inner {
  display: flex;
}

.p-serviceFlow--inner__head {
  flex: 4;
}

.p-serviceFlow--inner__txt {  
  flex: 6;
}

.p-serviceMarket {
  padding: 80px 0;
}

.p-serviceMarket--inner {
  display: flex;
}

.p-serviceReason {
  padding: 80px 0;
}

.p-serviceFeature {
  padding: 80px 0;
}

.p-serviceFeature--inner { 
  display: flex;
  gap: 30px;
}

.p-serviceVietnam {
  padding: 80px 0;
}

.p-serviceVietnam--inner {
  display: flex;
  align-items: center;
}

.p-serviceVietnam--inner > div {
  flex: 1;
}

.p-serviceVietnam__img img {
  margin-top: 20px;
}

.p-serviceCorporation__sub {
  background: url(../img/page/sub_service_corporation_bg.png) no-repeat center bottom;
  background-size: 70% 70%;
  background-color: #f8f8f8;
  padding: 80px 0;
}
  
.p-serviceCorporation__sub--inner {
  width: 50%;
  margin: 0 0 0 auto;
}

.p-serviceCorporation__sub--inner h3 {
  font-size: 64px;
  line-height: 1.2;
  margin-bottom: 30px;
}

.p-serviceCorporation__sub--inner h3 span {
  display: block;
  font-size: 36px;
}

.p-serviceCorporation__sub--inner p span {
  display: block;
  font-size: 22px;
  font-weight: 600;
}

.p-serviceRole__img img {
  padding: 50px 0;
  border-bottom: 0.5px solid #5CB0BA;
}

.p-serviceRole__img img:last-child {
  border-bottom: none;
}

.p-consulting__sub {
  background: url(../img/page/sub_consulting_bg.png) no-repeat center center;
  background-size: 70% 70%;
  background-color: #f8f8f8;
  padding: 80px 0;
}

.p-consulting__sub--inner {
  width: 50%;
  margin: 0 0 0 auto;
}

.p-consulting__sub--inner h3 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 30px;
}

.p-consultingPoint__img img {
  padding: 50px 0;
  border-bottom: 0.5px solid #5CB0BA;
}

.p-consultingPoint__img img:last-child {
  border-bottom: none;
}

.p-creation__sub {
  background: url(../img/page/sub_creation_bg.png) no-repeat center center;
  background-size: 70% 70%;
  background-color: #f8f8f8;
  padding: 80px 0;
}

.p-creation__sub--inner {
  width: 50%;
  margin: 0 0 0 auto;
}

.p-creation__sub--inner h3 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 30px;
}

.p-creationService__img {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.p-creationService__img > div {
  width: 48%;
}

.p-partner__sub {
  background: #fff;
  padding-top: 80px;
}

.p-partner__sub img {
  width: 70%;
  margin: 0 auto;
}

.p-recruit--inner {
  display: flex;
}

.p-recruitment {
  padding: 80px 0;
  position: relative;
}

.p-recruitment__head {
  position: absolute;
  top: 30%;
}

.p-recruitment__img {
  width: 70%;
  margin: 0 0 0 auto;
}

.p-recruit{
  position:relative;
  overflow:hidden;
  padding:120px 0;
}

.p-recruit__inner{
  display:flex;
  position:relative;
  gap: 50px;
}

.p-recruit__content{
  width:65%;
  margin-left:5%;
  padding:80px;
  border-radius:40px;
  position:relative;
}

.p-recruit__content h2 {
  font-size: 48px;
}

.p-recruit__text {
  width: 90%;
}

.p-recruit__image{
  width:55%;
  margin-left:-8%;
  position:relative;
}

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

@media (max-width: 1024px) {
  .p-serviceCorporation__sub {
    background-size: contain;
  }
  .p-serviceCorporation__sub--inner {
    width: 90%;
    margin: 0 auto;
  }

  .p-serviceIndividual__sub {
    background-size: contain;
  }

  .p-serviceIndividual__sub--inner {
    width: 90%;
    margin: 0 auto;
  }

  .p-consulting__sub--inner {
    width: 90%;
    margin: 0 auto;
  }

  .p-consulting__sub {
    background: url(../img/page/sub_consulting_bg.png) no-repeat center bottom;
    background-size: contain;
  }

  .p-creation__sub--inner {
    width: 90%;
    margin: 0 auto;
  }

  .p-creation__sub {
    background: url(../img/page/sub_creation_bg.png) no-repeat center bottom;
    background-size: contain;
  }

  .p-recruit__content h2 {
    font-size: 38px;
  }
}

@media (max-width: 900px){
  .p-recruit__inner{
    flex-direction:column;
    gap: 0;
    align-items: flex-end;
  }

  .p-recruit__content,
  .p-recruit__image {
    width:100%;
    margin-right:0;
  }

  .p-recruit__image {
    margin-left: 0;
    width: 70%;
  }

  .p-recruit__text {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .p-serviceMarket {
    padding: 0;
  }

  .p-serviceFeature {
    padding: 0 0 80px;
  }

  .p-serviceVietnam--inner {
    flex-direction: column;
  }

  .p-partner__sub img {
    width: 80%;
  }

  .p-recruit__content {
    text-align: center;
    padding: 80px 30px 0;
  }

  .p-recruit__content h2 {
    font-size: 36px;
  }

  .p-recruitment__head {
    top: 20%;
  }
}

@media (max-width: 480px) {
  .p-serviceCorporation__sub--inner h3 {
    font-size: 42px;
  }

  .p-serviceCorporation__sub {
    background: url(../img/page/sub_service_corporation_bg_sp.png) no-repeat center bottom;
    background-size: contain;
    padding: 80px 0;
  }

  .p-serviceFeature--inner { 
    flex-direction: column;
  }

  .p-serviceReason {
    padding: 0;
  }

  .p-serviceFeature--inner {
    gap: 80px;
  }

  .p-serviceValue {
    background: url(../img/page/sub_service_individualValue_bg_sp.png) no-repeat center;
    background-size: cover;
    padding: 120px 0;
  }

  .p-serviceFlow--inner {
    flex-direction: column;
  }

  .p-serviceMarket--inner {
    flex-direction: column;
  }

  .p-serviceIndividual__sub--inner h3 {
    font-size: 28px;
  }

  .p-serviceIndividual__sub--inner h3 span {
    display: block;
    font-size: 42px;
  }

  .p-serviceFeature {
    padding: 0 0 80px;
  }

  .p-serviceVietnam {
    padding: 0 0 80px;
  }

  .p-consulting__sub--inner h3 {
    font-size: 42px;
  }

  .p-consulting__sub {
    background: url(../img/page/sub_consulting_bg_sp.png) no-repeat center bottom;
    background-size: contain;
    padding: 80px 0 0;
  }

  .p-creation__sub--inner h3 {
    font-size: 38px;
  }

  .p-creation__sub {
    background: url(../img/page/sub_creation_bg_sp.png) no-repeat center bottom;
    background-size: contain;
    padding: 80px 0 0;
  }

  .p-creationService__img {
    flex-direction: column;
  }

  .p-creationService__img > div {
    width: 100%;
  }

  .p-recruit__content {
    padding: 80px 20px 0;
  }

  .p-recruit__content h2 {
    font-size: 32px;
  }

  .p-recruitment__img {
    width: 90%;
  }

  .p-recruitment__head {
    top: 5%;
  }

  .p-recruitment {
    padding: 0;
    position: relative;
  }
}

.c-brushTitle{
  position: relative;
  display: block;
  font-weight: 800;
  line-height: 1.1;
}

.c-brushTitle::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 66%;
  height: 15px;
  background: #adebeb;
  z-index: -1;
}

.p-member {
  background: url(../img/page/sub_member_bg.png) no-repeat center;
  background-size: cover;
  padding: 100px 0;
}

.p-member--inner {
  text-align: center;
  color: #fff;
}

.p-member--inner h1 {
  font-size: 64px;
}

.p-memberRead {
  background: #fff;
  text-align: center;
  padding: 100px 0 50px;
}

.p-memberRead p {
  width: 50%;
  margin: 0 auto;
}

.p-memberRead img {
  width: 50px;
  height: 50px;
  margin: 80px auto 0;
}

.p-memberChallenge {
  background: url(../img/page/sub_memberChallenge_bg.png) no-repeat center;
  background-size: cover;
  padding: 100px 0;
}

.p-memberChallenge h2 {
  font-size: 46px;
  line-height: 1.5;
}

.p-memberChallenge__read {
  width: 50%;
  margin: 0 0 0 auto;
}

.p-memberVision {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.p-memberVision__txt {
  width: 70%;
}

.p-worldview {
  padding: 80px 0 100px;
}

.p-worldview h2 {
  font-size: 46px;
}

.p-worldview--inner {
  display: flex;
  margin-bottom: 20px;
}

.p-worldview--inner h3 {
  flex: 1;
  margin-top: 10px;
}

.p-worldview--inner p {
  flex: 2;
}

.p-worldview--inner h3 span {
  display: inline-block;
  color: #48E5E4;
  font-size: 24px;
  padding-right: 10px;
}

.p-worldview__txt {
  font-weight: 600;
}

.p-memberCulture {
  background: url(../img/page/sub_memberCulture_bg.png) no-repeat center;
  background-size: cover;
  padding: 80px 0;
  text-align: center;
}

.p-memberCulture h2 {
  font-size: 46px;
}

.p-memberCulture h2 br {
  display: none;
}

.p-memberCulture img {
  width: 70%;
  margin: 80px auto 0;
}

.p-memberCulture__read {
  font-weight: 600;
}

.p-memberCulture h3 {
  font-size: 22px;
  margin-top: 0;
}

.p-memberJob {
  padding: 80px 0;
}

.p-memberJob h2 {
  font-size: 46px;
  text-align: center;
}

.p-memberJob h3 {
  font-size: 32px;
}

.p-memberJob h4 {
  position: relative;
  font-size: 26px;
  font-weight: 700;
  padding-left: 2em;
  line-height: 1.3;
}

.p-memberJob h4::before {
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:1.2em;
  height:1.2em;
  background:url("../img/page/sub_square_icon.png") no-repeat center/contain;
}

.c-heading{
  font-size:18px;
  font-weight:700;
}

.c-heading__label{
  position:relative;
  padding-left:2em;
  display:inline-block;
}

.c-heading__label::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:1.0em;
  height:1.0em;
  background:#7cc8c8;
}

.p-memberJob--inner {
  padding: 0 40px;
}

.p-memberJob--inner p {
  padding-left: 50px;
}

.p-memberJob h5 {
  font-size: 26px;
  margin-bottom: 10px;
}

.p-memberJob ul {
  list-style-type: none;
  padding-left: 0;
}

.p-memberJob ul li {
  padding: 5px 0;
}

.p-memberJob ul li::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url("../img/page/check_icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  vertical-align: middle;
}

.p-memberJob ul li span {
  font-weight: 700;
}

.p-memberJob img {
  width: 45%;
}

.p-seminarDetail {
  padding: 80px 0;
}

.p-seminarDetail img {
  width: 50%;
}

.p-seminarDetail p {
  margin-top: 50px;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .c-brushTitle::after{
    width: 86%;
  }
}

@media (max-width: 768px) {
  .c-brushTitle{
    font-size: 42px;
  }

  .c-brushTitle::after{
    width: 60%;
    left: 20%;
  }

  .p-memberRead p {
    width: 90%;
  }

  .p-memberChallenge__read {
    width: 90%;
    margin: 0 auto;
  }

  .p-memberVision {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  .p-memberVision__txt {
    width: 90%;
  }

  .p-worldview--inner {
    flex-direction: column;
    margin-bottom: 0;
  }

  .p-worldview--inner h3 {
    margin: 15px 0 0;
  }

  .p-memberCulture img {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .c-brushTitle{
    font-size: 36px;
  }

  .c-brushTitle::after{
    width: 100%;
    left: 0;
  }

  .p-member {
    background: url(../img/page/sub_member_bg_sp.png) no-repeat center;
    background-size: cover;
    padding: 200px 0;
  }

  .p-member--inner h1 {
    font-size: 34px;
  }

  .p-memberRead p {
    width: 100%;
  }

  .p-memberChallenge__read {
    width: 100%;
  }

  .p-memberChallenge {
    background: url(../img/page/sub_memberChallenge_bg_sp.png) no-repeat center;
    background-size: cover;
    padding: 100px 0;
  }

  .p-memberVision__txt {
    width:  100%;
  }

  .p-worldview h2 {
    font-size: 40px;
  }

  .p-memberCulture h2 {
    font-size: 34px;
  }

  .p-memberCulture h2 br {
    display: block;
  }

  .p-memberCulture {
    background: url(../img/page/sub_memberCulture_bg_sp.png) no-repeat center;
    background-size: cover;
    padding: 80px 0;
    text-align: center;
  }

  .p-memberCulture img {
    width: 100%;
    margin-bottom: 100px;
  }
  
  .p-memberJob h2 {
    font-size: 36px;
  }

  .p-memberJob--inner {
    padding: 0;
  }

  .p-memberJob--inner p {
    padding-left: 0;
  }

  .p-seminar h1 {
    margin-top: 140px;
  }
}

/* =============================
   セミナーテーブル
================================ */

.c-seminarTable{
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #048869;
  font-size: 16px;
}

.c-seminarTable th,
.c-seminarTable td{
  border: 1px solid #048869;
  padding: 50px 30px;
}

.c-seminarTable th{
  width: 250px;
  background: #5BBAA4;  
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.c-seminarTable td{

  background: #fff;
  color: #222;
}

.c-seminarTable ul {
  list-style-type: none;
  padding-left: 0;
}

.c-seminarTable ul li {
  padding: 8px 0;
}

.c-seminarTable--subject li::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url("../img/page/check_icon2.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  vertical-align: middle;
}

.c-seminarTable--content li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #5BBAA4;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}

@media (max-width: 480px) {
  .c-seminarTable{
    border: none;
  }

  .c-seminarTable th,
  .c-seminarTable td{
    display: block;
    padding: 10px;
    border: none;
  }

  .c-seminarTable th {
    width: 100%;
  }
}

/* =============================
   採用情報テーブル
================================ */

.c-jobTableWrap{
  max-width: 900px;
}

.c-jobTable{
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #333;
  font-size: 18px;
}

.c-jobTable th,
.c-jobTable td{
  border: 1px solid #333;
  padding: 18px 24px;
}

.c-jobTable th{
  width: 180px;
  background: #7cc8c8;  
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.c-jobTable td{
  background: #fff;
  color: #222;
}

@media (max-width: 480px) {
  .c-jobTable th,
  .c-jobTable td{
    padding: 10px;
  }

  .c-jobTable th{
    width: 120px;
  }
}

/* =============================
   会社概要テーブル
================================ */

.c-company-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px auto 60px;
}

.c-company-table th,
.c-company-table td {
  border-bottom: 1px solid #5CB0BA;
  padding: 20px;
  font-size: 15px;
  text-align: left;
}

.c-company-table th {
  width: 20%;
  font-weight: 600;
  background: transparent;
}

.c-company-table td {
  width: 80%;
  color: #555;
}

.c-company-table tr:last-child th,
.c-company-table tr:last-child td {
  border-bottom: none;
}

.p-flow-inner {
  padding: 50px 0;
}

.p-faq-container {
  background: #fff;
}

@media (max-width: 480px) {
  .c-company-table {
    width: 100%;
    margin: 0 auto 50px;
  }

  .c-company-table th,
  .c-company-table td {
    padding: 10px 0 10px 10px;
  }

  .c-company-table th {
    width: 40%;
  }
}

/* =============================
   FAQ accordion
================================ */

.c-faq{
/*   border-top:1px solid #cde5e5; */
  padding: 80px 0;
  background: #fff;
}

.c-faqItem{
  border-bottom:1px dashed #9fcfcf;
}

.c-faqTrigger{
  width:100%;
  background:none;
  border:none;
  padding:28px 0;
  display:flex;
  align-items:center;
  gap:20px;
  cursor:pointer;
  position:relative;
  text-align:left;
}

.c-faqLabel{
  background:#48E5E4;
  color:#fff;
  padding:14px 18px;
  font-weight:700;
  font-size:20px;
}

.c-faqQuestion{
  flex:1;
  font-weight:600;
  color: #1a1a1a;
}

.c-faqIcon{
  width:28px;
  height:28px;
  position:relative;
}

.c-faqIcon::before,
.c-faqIcon::after{
  content:"";
  position:absolute;
  background:#48E5E4;
  transition:.3s ease;
}

.c-faqIcon::before{
  width:100%;
  height:3px;
  top:50%;
  left:0;
  transform:translateY(-50%);
}

.c-faqIcon::after{
  width:3px;
  height:100%;
  left:50%;
  top:0;
  transform:translateX(-50%);
}

.c-faqItem.is-open .c-faqIcon::after{
  opacity:0;
}

.c-faqItem.is-open{
  border-bottom:1px dashed #999;
}

.c-faqContent{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease, opacity .3s ease;
  opacity:0;
  padding:0 0;
}

.c-faqItem.is-open .c-faqContent{
  max-height:500px;
  opacity:1;
  padding:20px 0 40px;
}

@media (max-width: 480px) {
  .c-faqTrigger{
    align-items:flex-start;
  }
}

/* =============================
  news 
================================ */

.p-topNews{
  padding:120px 0;
  background:#f8f8f8;
  position: relative;
}

.p-topNews__grid{
  display:grid;
  grid-template-columns: 380px 1fr;
}

.p-topNews__sub{
  color:#63b3b9;
  margin-bottom:12px;
  position:relative;
  padding-left:24px;
}

.p-topNews__sub::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:16px;
  height:2px;
  background:#63b3b9;
}

.p-topNews__title{
  font-size:60px;
  font-weight:700;
  margin-bottom:40px;
}

.p-topNews__btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#333;
  color:#fff;
  padding:16px 30px;
  border-radius:40px;
  text-decoration:none;
  transition:.3s;
}

.p-topNews__btn:hover{
  opacity:.85;
}

.p-topNews__btnArrow{
  width:20px;
  height:20px;
  background:url("./assets/img/arrow-white.png") no-repeat center/contain;
}

.p-topNews__item{
  border-bottom:1px solid #a8d3d6;
}

.p-topNews__item a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:32px 0;
  text-decoration:none;
  color:#222;
  transition:.3s;
}

.p-topNews__meta{
  min-width:160px;
  display:flex;
  gap:12px;
  align-items:center;
}

.p-topNews__meta time{
  color:#63b3b9;
  font-size:14px;
}

.p-topNews__cat{
  background:#48E5E4;
  /* color:#fff; */
  font-size:12px;
  padding:4px 10px;
  border-radius:20px;
  font-weight: 600;
}

.p-topNews__text{
  flex:1;
  font-size:18px;
}

.p-topNews__icon{
  width:52px;
  height:52px;
  flex-shrink:0;
  background:url("../img/top_news_arrow_w.png") no-repeat center/contain;
  transition:.3s ease;
}

.p-topNews__item:hover .p-topNews__icon{
  background:url("../img/top_news_arrow_b.png") no-repeat center/contain;
}

.p-topNews__item:hover{
  background:rgba(99,179,185,0.05);
}

@media(max-width:768px){
  .p-topNews__grid{
    grid-template-columns:1fr;
    gap:60px;
  }

  .p-topNews__title{
    font-size:42px;
  }

  .p-topNews__item a{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .p-topNews__icon{
    align-self:flex-end;
  }

  .p-topNews__roundBtn {
    position: absolute;
    bottom: 15px;
    left:50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .p-topNews{
    padding: 80px 0 120px;
    margin-bottom: 30px;
  }

  .p-topNews__grid{
    gap:0;
  }
}

/* =============================
   news Archive
============================= */

.l-list {
  width: 80%;
}

.p-newsArchive{
  padding: 50px 0 80px;
  background:#f8f8f8;
}

.p-newsList{
  list-style:none;
  padding:0;
  margin:0;
}

.p-newsItem{
  border-bottom:1px solid #b7d2d6;
}

.p-newsItem a{
  display:flex;
  align-items:center;
  gap:40px;
  padding:28px 0;
  text-decoration:none;
  color:#222;
  transition:.3s;
}

.p-newsItem:hover{
  background:rgba(124,200,200,0.08);
}

.p-newsMeta{
  min-width:160px;
  display:flex;
  align-items:center;
  gap:12px;
}

.p-newsDate{
  font-size:14px;
  color:#6aa9b0;
  letter-spacing:.05em;
}

.p-newsBadge{
  font-size:12px;
  background:#41D2D1;
  color:#fff;
  padding:4px 10px;
  border-radius:20px;
}

.p-newsTitle{
  flex:1;
  font-size:18px;
  line-height:1.6;
}

@media (max-width: 480px) {
  .p-newsItem a{
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 28px 0 0;
  }
}


.p-newsTitle{
  flex:1;
  font-size:18px;
  line-height:1.6;
}

@media (max-width: 480px) {
  .p-newsItem a{
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 28px 0 0;
  }
}

/* =============================
   news Article
============================= */

.p-singleNews__date {
  color: #6aa9b0;
  font-size: 18px;
  font-weight: 700;
}

.p-singleNews__title {
  font-size: 24px;
}

.p-singleNews__content {
  margin: 50px 0;
}

/* =============================
   blog Archive
============================= */

.p-blogArchive{
  padding: 50px 0 80px;
  background:#f8f8f8;
}

.p-blogList{
  list-style:none;
  padding:0;
  margin:0;
}

.p-blogItem{
  border-bottom:1px solid #b7d2d6;
}

.p-blogItem a{
  display:flex;
  align-items:center;
  gap:40px;
  padding:28px 0;
  text-decoration:none;
  color:#222;
  transition:.3s;
}

.p-blogItem:hover{
  background:rgba(124,200,200,0.08);
}

.p-blogMeta{
  min-width:160px;
  display:flex;
  align-items:center;
  gap:12px;
}

.p-blogDate{
  font-size:14px;
  color:#6aa9b0;
  letter-spacing:.05em;
}

.p-blogBadge{
  font-size:12px;
  background:#41D2D1;
  color:#fff;
  padding:4px 10px;
  border-radius:20px;
}

.p-blogTitle{
  flex:1;
  font-size:18px;
  line-height:1.6;
}

@media (max-width: 480px) {
  .p-blogItem a{
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 28px 0 0;
  }
}

.p-blogTitle{
  flex:1;
  font-size:18px;
  line-height:1.6;
}

@media (max-width: 480px) {
  .p-blogItem a{
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 28px 0 0;
  }
}

/* =============================
   blog article
============================= */

.p-blogArticle {
  padding: 80px 0;
  background: #fff;
}

/* =============================
   archive Pagination
============================= */

.p-pagination{
  margin-top:60px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:20px;
}

.p-pagination a,
.p-pagination span{
  font-size:16px;
  text-decoration:none;
/*   color:#333; */
}

.p-pagination__btn{
  background:#6cc3c3;
  color:#fff !important;
  padding:8px 18px;
  border-radius:10px;
  transition:.3s;
}

.p-pagination__btn:hover{
  background:#58b2b2;
}

.p-pagination .is-current{
  color:#6cc3c3;
  font-weight:700;
}

/* =============================
   single Pagination
============================= */

.post-nav{
  display:flex;
  justify-content:center;
  gap:20px;
}

.post-nav a{
  position:relative;
  display:inline-block;
  padding:10px 30px;
  font-size:16px;
  text-decoration:none;
  border-radius:8px;
  transition:.25s;
}

.post-nav a.prev{
  padding:12px 30px 10px 45px;
}

.post-nav a.next{
  padding: 12px 45px 10px 30px;
}

.prev,
.next{
  background:#48AEB5;
  color:#fff;
	padding: 5px 10px;
	border-radius: 5px;
}

.archive{
  background:#fff;
  color:#48AEB5;
  border:1px solid #48AEB5;
	padding-top: 5px;
}

.prev::before{
  content:"";
  position:absolute;
  left:22px;
  top:50%;
  width:8px;
  height:8px;
  border-left:1px solid #fff;
  border-bottom:1px solid #fff;
  transform:translateY(-50%) rotate(45deg);
}

.next::after{
  content:"";
  position:absolute;
  right:22px;
  top:50%;
  width:8px;
  height:8px;
  border-right:1px solid #fff;
  border-top:1px solid #fff;
  transform:translateY(-50%) rotate(45deg);
}

/* hover */

.post-nav a:hover{
  opacity:.8;
}

@media (max-width: 480px) {
  .post-nav{
    gap:5px;
  }

  .post-nav a{
    padding:10px;
  }

  .post-nav a.prev{
    padding: 12px 15px 10px 40px;
  }

  .post-nav a.next{
    padding: 12px 40px 10px 15px;
  }
}

/* =========================================
   404
========================================= */

.l-404-container {
  text-align: center;
  padding: 50px 0;
}

.p-404__head p {
  font-size: 36px;
  margin: 0;
}

.p-404__head h1 {
  font-size: 120px;
  color: #48E5E4;
  margin: 0;
}

.p-404__message {
  font-size: 18px;
}

.p-404__btn a {
  display: block;
  background: #48AEB5;
  color: #fff;
  width: 200px;
  margin: 0 auto;
  padding: 15px;
  border-radius: 20px;
}

/* =========================================
   contact form
========================================= */

.p-contact {
  background: #fff;
  padding: 50px 0;
}

.p-contact--read {
  text-align: center;
  margin-bottom: 30px;
}

.p-contactForm{
  max-width:700px;
  margin:auto;
}

.p-formItem{
  margin-bottom:24px;
}

.p-formLabel{
  display:block;
  font-weight:700;
  margin-bottom:8px;
  font-size:16px;
}

.required{
  color:#fff;
  font-size:12px;
  margin-left:6px;
  display: inline-block;
  background: #48E5E4;
  padding: 3px 5px;
  border-radius: 10px;
}

.p-contactForm input,
.p-contactForm select,
.p-contactForm textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid #ccc;
  border-radius:6px;
  font-size:16px;
  background:#fff;
}

.p-contactForm textarea{
  resize:vertical;
}

.p-contactForm input:focus,
.p-contactForm textarea:focus,
.p-contactForm select:focus{
  outline:none;
  border-color:#48E5E4;
  box-shadow:0 0 0 2px rgba(72,229,228,.2);
}

.p-formSubmit{
  text-align:center;
  margin-top:40px;
}

.c-btn--submit{
  background:#48E5E4 !important;
  color:#fff;
  padding:14px 40px !important;
  border:none !important;
  border-radius:999px !important;
  font-weight:700;
  cursor:pointer;
  transition:.3s;
  width: 30% !important;
}

.c-btn--submit:hover{
  background:#33cfcf !important;
}

@media (max-width: 768px) {
  .p-contactForm{
    padding:0 16px;
  }
	
  .c-btn--submit{
	 width: 50% !important;
  }
}

/* =========================================
   マイページ
========================================= */

.mypage {
	padding: 200px 0 50px;
}

.mypage h2 {
	text-align: center;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
	color: #48AEB5;
}

.mypage_btn {
  text-align: center;
  background: #48AEB5;
  color: #fff;
  width: 200px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 10px;
}

.tabs {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.tab-buttons {
  display: flex;
  border-bottom: 2px solid #ccc;
  flex-wrap: nowrap;
}

.tab-btn {
  flex: 1;
  padding: 20px 10px;
  cursor: pointer;
  background: #f5f5f5;
  border: none;
  outline: none;
  transition: background 0.3s;
  text-align: center;
  font-size: 14px;
}

.tab-btn.active {
  background: #fff;
  border-bottom: 2px solid #48E5E4;
  font-weight: bold;
}

.tab-btn:hover {
  background: #eaeaea;
}

/* コンテンツ全体 */
.tab-contents {
  position: relative;
}

/* 通常は非表示 */
.tab-content {
  display: none;
  opacity: 0;
  padding: 40px 20px;
  border: 1px solid #ccc;
  border-top: none;
  background: #fff;
  box-sizing: border-box;
  animation: tabFade 0.4s ease;
}

/* activeだけ表示 */
.tab-content.active {
  display: block;
  opacity: 1;
}

@keyframes tabFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* スマホ用調整 */
@media (max-width: 768px) {
  .tabs {
    width: 95%;
  }
  .tab-buttons {
    flex-wrap: wrap; /* 折り返しOK */
  }

  .tab-btn {
    flex: 1 1 100%; /* スマホでは2列 */
    font-size: 13px;
    padding: 15px;
  }

  .tab-content {
    top: 0;
    border-top: 1px solid #ccc;
  }
}

.mypege_move {
	width:60%;
	margin: 0 auto;
}

@media (max-width:480px) {
	.mypege_move {
		width:90%;
	}
}

.mypage-video-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.mypage-video-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform .2s;
}

.mypage-video-card:hover {
    transform: translateY(-3px);
}

.mypage-video-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* 画像を入れる枠（常に16:9） */
.mypage-video-thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

/* アイキャッチ画像を綺麗にトリミング */
.mypage-video-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 通常動画（横長 16:9） */
.mypage-video-thumb.is-normal {
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
}

.mypage-video-thumb.is-normal img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.mypage-video-title {
    padding: 12px;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.4;
}

.mypage-video-date {
    padding: 0 12px 12px;
    font-size: 13px;
    color: #666;
}

.mypage-video-excerpt {
    padding: 0 12px 8px;
    font-size: 13px;
    line-height: 1.5;
    color: #444;
}


/* マイページ お知らせ一覧 */

.mypage-notice-list {
    border-top: none;
	padding: 50px;
}

.mypage-notice-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid #48AEB5;
    text-decoration: none;
    color: #6b8e23;
    transition: opacity 0.2s ease;
}

.mypage-notice-item:hover {
    opacity: 0.7;
}

/* 日付 */
.mypage-notice-date {
    font-weight: 700;
    color: #000;
    min-width: 110px;
}

/* NEWバッジ */
.mypage-notice-new {
    background: #48AEB5;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    line-height: 1;
}

/* タイトル */
.mypage-notice-title {
    color: #48AEB5;
    font-weight: 600;
    line-height: 1.6;
}

/* マイページ利用申請フォーム */

.p-page-form__title {
	margin-top: 150px;
	font-size: 36px;
	font-weight: 600;
}

.p-page-form__content {
	width: 70%;
    margin: 0 auto;
    padding: 30px 0;
}

.p-page-form__title {
    text-align: center;
    color: #52a552;
}

.o-style {
    margin-bottom: 20px;
}

.o-style span {
    display: block;
    font-weight: 600;
    text-decoration: underline;
}

.circle-number {
  list-style-type: circled-decimal;
}

.circle-number li::marker {
  font-size: 1.2em;
  color: #107538;
}

.dot-list {
  list-style-type: "・";
}

@media (max-width: 768px) {
	.p-page-form__content {
		width: 90%;
	}
}

@media (max-width: 480px) {
	.p-page-form__title {
		font-size: 24px;
	}
}

/* =========================================
   policy 関連
========================================= */
.p-policy {
  background: #fff;
}

.p-policy h2 {
  font-size: 46px;
  background: #48AEB5;
  color: #fff;
  text-align: center;
  padding: 50px 0;
}

.p-policy h3 {
  font-size: 30px;
  background: #e4fbff;
  padding-left: 20px;
}

.p-policy__point {
  font-size: 22px;
  font-weight: 600;
  text-decoration: underline;
  margin-bottom: 0;
}

.p-policy--inner {
  padding: 20px 0;
}

.p-policy--inner:last-child {
  padding-bottom: 100px;
}

.p-policy--inner h3 {
  border-left: 10px solid #48E5E4;
  padding-left: 10px;
}

.p-policy--inner h4 {
  border-left: 10px solid #48E5E4;
  padding-left: 10px;
  font-size: 18px;
}

@media (max-width: 480px) {
  .p-policy h2 {
    font-size: 30px;
    padding: 80px 0 30px;
  }

  .p-policy h3 {
    font-size: 22px;
  }

  .p-policy__point {
    font-size: 18px;
  }
}

/* =========================================
   mypage repoty
========================================= */

/* === Report Card Grid Layout === */
.report-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

/* ------- カード本体 ------- */
.report-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 15px;
}

.report-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ------- ① アイキャッチ画像 ------- */
.report-thumb img {
  width: 100%;
  height: 180px;           /* ← アイキャッチの高さここで変更可能 */
  object-fit: cover;
  display: block;
}

/* ------- ② タイトル ------- */
.report-title {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 15px 15px 0;
  margin: 0;
  line-height: 1.4;
}

.report-title a {
  color: #333;
  text-decoration: none;
}

.report-title a:hover {
  color: #709C12;
}

/* ------- ③ 日付 ------- */
.report-date {
  font-size: 0.9rem;
  color: #999;
  padding: 5px 15px;
  margin: 0;
}

/* ------- ④ ロゴ画像 ------- */
.report-logo {
  text-align: right;
  padding: 10px 15px 0;
}

.report-logo img {
  width: 80px;      /* ← ロゴのサイズ調整 */
  height: auto;
}

/* スマホ対応 */
@media (max-width: 600px) {
  .report-thumb img {
    height: 140px;
  }
}

/* =========================================
   ログインフォームカスタマイズ
========================================= */

.login_area {
	margin: 150px 0 50px;
	padding-top: 100px;
}

.um-register-area {
  margin: 30px 0 100px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  text-align: center;
}

.um-register-text {
  font-size: 16px;
  margin-bottom: 20px;
}

.um-register-button {
  display: inline-block;
  padding: 12px 50px;
  background: #3ba1da;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  transition: background 0.3s ease;
}

.um-register-button:hover {
  background: #555;
}

/* =========================================
   マイページ　タブ2 アニメーショングラフ
========================================= */

.progress-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.progress-ring__bg {
  opacity: .3;
  stroke: #48E5E4;
}

.progress-ring__circle {
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  stroke-linecap: round;
  stroke-dasharray: 502; 
  stroke-dashoffset: 502;
  stroke: #48E5E4;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  color: #48E5E4;
  display: flex;
  align-items: baseline;
}

.progress-number {
  font-size: 42px;
}

.percent-sign {
  font-size: 24px;
  margin-left: 4px;
  line-height: 1;
  position: relative;
  top: 1px;
}

.creation {
	color: #709C12;
}