@charset "UTF-8";
/*
Theme Name: 
Description:  Web Site
Author: Hiroki Ishiida
Version: 1.0
*/
/*------------ COMMON SETTING ------------ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px !important;
  font-size: 62.5%;
}

body {
  color: #262626;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "BIZ UDPGothic", sans-serif;
  font-style: normal;
  letter-spacing: 0.02em;
  overflow-wrap: break-word;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px;
  aspect-ratio: 3/2;
}

a {
  transition: all 0.3s;
}
a:hover {
  opacity: 0.6;
  transition: all 0.3s;
}

.wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

section {
  padding: 60px 15px;
}
section:nth-child(odd) {
  background-color: #fff;
}
section:nth-child(even) {
  background-color: #f2f9ff;
}
@media screen and (min-width: 1080px) {
  section {
    padding: 80px 15px;
  }
}
@media screen and (min-width: 1200px) {
  section {
    padding: 80px 0;
  }
}

.recruitPage section,
.servicesPage .services03,
.archive,
#Post {
  padding-bottom: 30px;
}

.Title {
  margin-bottom: 40px;
  font-size: 4.2rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .Title {
    font-size: 5.5rem;
  }
}
.Title span {
  font-size: 1.6rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 20px;
  color: #0f71c6;
}
.Title span::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #0f71c6;
  position: absolute;
  border-radius: 100px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .Title span {
    font-size: 2rem;
  }
}

.Title02 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: grid;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .Title02 {
    font-size: 3.4rem;
  }
}
.Title02 span {
  font-size: 1.8rem;
  color: #0f71c6;
}
@media screen and (min-width: 768px) {
  .Title02 span {
    font-size: 2.2rem;
  }
}

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

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

main {
  overflow: hidden;
}

/* ------- BTN -------- */
.Btn {
  max-width: 400px;
  width: 100%;
  margin: 40px auto 0;
  position: relative;
  color: #fff;
  padding: 20px;
  border-radius: 1000px;
  background-color: #21303e;
  display: block;
  transition: all 0.3s;
  line-height: 1;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .Btn {
    font-size: 1.8rem;
  }
}
.Btn::before {
  content: "";
  background: url(../img/icon/arrow.svg) no-repeat;
  width: 32px;
  height: 32px;
  position: absolute;
  background-size: contain;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.Btn:hover::before {
  right: 22px;
  transition: all 0.3s;
}

.gridContent {
  display: grid;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .gridContent {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 30px;
  }
}
.gridContent .imgContent img {
  aspect-ratio: 16/9;
}

.TextContent p {
  line-height: 1.7;
}
.TextContent .Btn {
  margin: 30px auto 0;
}

/* 共通設定 */
/*----------------- HEADER ----------------- */
header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 10px 10px 0;
  z-index: 100;
}
header .Header__inner {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 3px;
  transition: all 1s;
  background-color: #fff;
}

.logo {
  max-width: 130px;
  z-index: 100;
}
.logo img {
  aspect-ratio: unset;
  border-radius: 0;
}
@media screen and (min-width: 1080px) {
  .logo {
    max-width: 160px;
  }
}

/*------------------- NAV ------------------ */
nav {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9490196078);
  transition: all 0.5s;
  visibility: hidden;
}
nav.panelactive {
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width: 1080px) {
  nav {
    visibility: visible;
    opacity: 1;
    height: -moz-fit-content;
    height: fit-content;
    position: unset;
    background: unset;
    text-align: left;
    padding: 0 0;
    overflow: unset;
  }
}
nav .Menu__content {
  position: absolute;
  top: 50%;
  left: 15px;
  right: 15px;
  transform: translateY(-50%);
}
@media screen and (min-width: 1080px) {
  nav .Menu__content {
    position: unset;
    transform: unset;
    padding: 0 0;
  }
}
@media screen and (min-width: 1080px) {
  nav .Menu__content .Menu__list {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }
}
nav .Menu__content .Menu__list .Menu__item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d8e6f2;
  font-size: 2.4rem;
  font-weight: 700;
  color: #21303e;
}
nav .Menu__content .Menu__list .Menu__item a {
  width: 100%;
  display: block;
}
@media screen and (min-width: 1080px) {
  nav .Menu__content .Menu__list .Menu__item {
    margin: 0 0 0 40px;
    padding: unset;
    border: unset;
    font-size: 1.6rem;
    white-space: nowrap;
  }
}
nav .Menu__content .Menu__list .Menu__item .current::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  opacity: 1;
  transition: all 0.3s;
}
nav .Menu__content .Menu__list .Menu__item.Btn {
  padding: 20px;
  margin: 0 0;
  border-bottom: unset;
  font-size: 1.8rem;
  color: #fff;
}
@media screen and (min-width: 1080px) {
  nav .Menu__content .Menu__list .Menu__item.Btn {
    margin: 0 0 0 40px;
    font-size: 1.4rem;
    max-width: 160px;
    padding: 15px;
  }
}
@media screen and (min-width: 1080px) {
  nav .Menu__content .Menu__list .Menu__item.Btn::before {
    display: none;
  }
}
nav .Copyright {
  position: absolute;
  bottom: 15px;
  width: 100%;
}
@media screen and (min-width: 1080px) {
  nav .Copyright {
    display: none;
  }
}

/*------------- HAMBERGER MENU ------------ */
.OpenBtn {
  width: 35px;
  height: 20px;
  position: relative;
  z-index: 1000;
  display: block;
  cursor: pointer;
  transition: all 0.3s;
}
.OpenBtn span {
  width: 100%;
  height: 3px;
  background-color: #0f71c6;
  display: block;
  transition: all 0.3s;
  position: absolute;
  border-radius: 50px;
}
.OpenBtn span:nth-of-type(2) {
  top: 9px;
}
.OpenBtn span:nth-of-type(3) {
  bottom: 0;
}
.OpenBtn.active span:nth-of-type(1) {
  top: 9px;
  transform: rotate(30deg);
}
.OpenBtn.active span:nth-of-type(2) {
  transform: scaleX(0);
}
.OpenBtn.active span:nth-of-type(3) {
  bottom: 9px;
  transform: rotate(150deg);
}
@media screen and (min-width: 1080px) {
  .OpenBtn {
    display: none;
  }
}

/*----------------- KEY-VISUAL ------------------ */
.KeyVisual {
  height: 45vh;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .KeyVisual {
    height: 50vh;
  }
}
.KeyVisual .full {
  overflow: hidden;
  margin-bottom: 0;
}
.KeyVisual .full div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 45vh;
}
@media screen and (min-width: 768px) {
  .KeyVisual .full div {
    height: 50vh;
  }
}
.KeyVisual .full div.img01 {
  background-image: url(../img/KeyVisual/keyVisual01.png);
}
.KeyVisual .full div.img02 {
  background-image: url(../img/KeyVisual/keyVisual02.png);
}
.KeyVisual .full div.img03 {
  background-image: url(../img/KeyVisual/keyVisual03.png);
}
.KeyVisual .swiper-pagination-wrapper {
  position: absolute;
  right: 15px;
  bottom: 20px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.7);
  padding: 6px 12px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.KeyVisual .swiper-pagination {
  display: flex;
  gap: 10px;
  opacity: 0.8;
  bottom: 15px !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  right: 15px !important;
  left: unset !important;
}
.KeyVisual .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  margin: 0 !important;
  background: #21303e;
  opacity: 1;
  cursor: pointer;
  transition: background-color 0.3s;
}
.KeyVisual .swiper-pagination-bullet-active {
  background: #0f71c6;
}

/*-----------------  TOP ------------------ */
/*-----------------  KeySection ------------------ */
.KeySection {
  padding: 30px 15px;
}
@media screen and (min-width: 768px) {
  .KeySection {
    padding: 60px 15px;
  }
}
.KeySection .KeySectionImg {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 30px;
}
@media screen and (min-width: 768px) {
  .KeySection .KeySectionImg {
    margin: 0 auto 40px;
  }
}
.KeySection .KeySectionImg img {
  border-radius: 0;
  aspect-ratio: unset;
}
.KeySection .NewsContent {
  background-color: #f6f6f6;
  padding: 15px;
  border-radius: 10px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

/*-----------------  NEWS ------------------ */
.NewsList .NewsListItem {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e8ebf0;
}
.NewsList .NewsListItem a {
  transition: all 0.3s;
  position: relative;
  display: block;
}
.NewsList .NewsListItem a:hover::before {
  right: 15px;
  transition: all 0.3s;
}
.NewsList .NewsListItem a::before {
  content: "";
  background: url(../img/icon/arrow.svg) no-repeat;
  width: 32px;
  height: 32px;
  position: absolute;
  background-size: contain;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s;
}
@media screen and (min-width: 1080px) {
  .NewsList .NewsListItem a {
    display: grid;
    align-items: center;
    grid-template-columns: 130px 1fr;
    gap: 15px;
  }
}
.NewsList .NewsListItem:last-child {
  border-bottom: unset;
  padding-bottom: 0;
  margin-bottom: 0;
}
.NewsList .NewsListItem .Date {
  font-size: 1.4rem;
  color: #656565;
  margin-bottom: 5px;
}
@media screen and (min-width: 1080px) {
  .NewsList .NewsListItem .Date {
    padding-left: 15px;
    margin-bottom: 0;
  }
}
.NewsList .NewsListItem .NewsListText {
  padding-right: 40px;
  display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 2; /* 行数を制限 */
  overflow: hidden; /* はみ出た部分を非表示 */
}
@media screen and (min-width: 1080px) {
  .NewsList .NewsListItem .NewsListText {
    padding-right: 15px;
  }
}

/*-----------------  About ------------------ */
.about .gridContent .TextContent p:nth-child(1) {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .about .gridContent .TextContent p:nth-child(1) {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 768px) {
  .about .gridContent .TextContent p:nth-child(2) {
    font-size: 1.8rem;
  }
}

/*-----------------  Services ------------------ */
.services .servicesList {
  display: grid;
  gap: 30px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .services .servicesList {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.services .servicesList li {
  border-radius: 30px;
  padding: 20px;
  aspect-ratio: 3/2;
  position: relative;
}
.services .servicesList li a .TextContent {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}
.services .servicesList li a .TextContent p {
  font-weight: 700;
}
.services .servicesList li a .TextContent p:nth-child(1) {
  background-color: #fff;
  border-radius: 100px;
  padding: 10px 15px;
  margin-bottom: 7px;
  line-height: 1;
}
.services .servicesList li a .TextContent p:nth-child(1) span {
  font-size: 1.4rem;
}
.services .servicesList li a .TextContent p:nth-child(2) {
  color: #fff;
  line-height: 1.3;
  padding-right: 50px;
  position: relative;
}
.services .servicesList li a .TextContent p:nth-child(2)::before {
  content: "";
  background: url(../img/icon/arrow.svg) no-repeat;
  width: 32px;
  height: 32px;
  position: absolute;
  background-size: contain;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.services .servicesList li:nth-child(1) {
  background: url(../img/top/services01.png);
  background-size: cover;
}
.services .servicesList li:nth-child(2) {
  background: url(../img/top/services02.png);
  background-size: cover;
}
.services .servicesList li:nth-child(3) {
  background: url(../img/top/services03.png);
  background-size: cover;
}

/*-----------------  Partner ------------------ */
.partner .partnerContent {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid #d8e6f2;
}
.partner .partnerContent:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: unset;
}
.partner .partnerContent:last-child .partnerContentList {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.partner .partnerContent .partnerContentList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 20px;
}
@media screen and (min-width: 768px) {
  .partner .partnerContent .partnerContentList {
    grid-template-columns: repeat(5, 1fr);
  }
}
.partner .partnerContent .partnerContentList .partnerContentListImg {
  aspect-ratio: 16/9;
  background-color: #fff;
  border: 1px solid #d8e6f2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 15px;
}
.partner .partnerContent .partnerContentList .partnerContentListImg img {
  border-radius: 10px;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
}
.partner .partnerContent .partnerContentList p {
  color: #545c63;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .partner .partnerContent .partnerContentList p {
    font-size: 1.6rem;
  }
}

/*-----------------  Recruit ------------------ */
.recruit .recruitContent {
  padding: 60px 15px;
  background: url(../img/cta/cta-sp.png) no-repeat;
  background-size: cover;
  color: #fff;
}
@media screen and (min-width: 1080px) {
  .recruit .recruitContent {
    background: url(../img/cta/cta-pc.png) no-repeat;
    background-size: cover;
    padding: 100px 15px;
  }
}
@media screen and (min-width: 768px) {
  .recruit .recruitContent .recruitContentInner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    gap: 30px;
  }
}
.recruit .recruitContent .recruitContentInner .Title {
  margin-bottom: 30px;
  color: #fff;
}
.recruit .recruitContent .recruitContentInner .Title span {
  color: #fff;
}
.recruit .recruitContent .recruitContentInner .Title span::before {
  background-color: #fff;
}
.recruit .recruitContent .recruitContentInner .Btn {
  margin-top: 30px;
  color: #21303e;
  background-color: #fff;
}
.recruit .recruitContent .recruitContentInner .Btn::before {
  background: url(../img/icon/arrow02.svg) no-repeat;
}

/*----------------- CTA ------------------ */
.CTA {
  padding: 30px 15px;
}
.CTA .wrapper {
  padding: 60px 20px;
  background-color: #f2f9ff;
  border-radius: 30px;
}
@media screen and (min-width: 1080px) {
  .CTA .wrapper {
    padding: 80px 20px;
  }
}
@media screen and (min-width: 768px) {
  .CTA .wrapper .CTACOntent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    gap: 30px;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }
}
.CTA .wrapper .CTACOntent .Title {
  margin-bottom: 30px;
}
.CTA .wrapper .CTACOntent .Btn {
  margin-top: 30px;
}

.page-id-30 .CTA {
  display: none;
}

/*----------------- LOW KEYVISUAL ------------------ */
.LowKeyVisual {
  padding: 140px 15px 70px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1080px) {
  .LowKeyVisual {
    padding: 170px 15px 100px;
  }
}
@media screen and (min-width: 1200px) {
  .LowKeyVisual {
    padding: 170px 0 100px;
  }
}
.LowKeyVisual::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -30%;
  width: 85%;
  aspect-ratio: 1/1;
  background: url(../img/KeyVisual/kv02.png) no-repeat;
  transform: translateY(-50%);
  background-size: contain;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .LowKeyVisual::before {
    right: -20%;
    width: 75%;
  }
}
@media screen and (min-width: 1080px) {
  .LowKeyVisual::before {
    right: -10%;
    width: 60%;
  }
}
.LowKeyVisual .Title {
  margin-bottom: 0;
  z-index: 2;
  position: relative;
}

/* ABOUT */
.page-id-728 .LowKeyVisual::before {
  background: url(../img/KeyVisual/kv04.png) no-repeat;
  background-size: contain;
}

/* SERVICES */
.page-id-730 .LowKeyVisual::before {
  background: url(../img/KeyVisual/kv01.png) no-repeat;
  background-size: contain;
}

/* RECRUIT */
.archive-recruit .LowKeyVisual::before,
.single-recruit .LowKeyVisual::before {
  background: url(../img/KeyVisual/kv03.png) no-repeat;
  background-size: contain;
}

/* パンクズリスト */
.breadcrumb-trail {
  background-color: #f2f9ff;
  margin: 15px 15px 0;
  border-radius: 100px;
  font-family: "BIZ UDPGothic", sans-serif !important;
}
.breadcrumb-trail .fbc-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 15px;
  word-break: break-word;
}
.breadcrumb-trail .fbc-wrap .fbc-items {
  padding: 0 0 !important;
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.breadcrumb-trail .fbc-wrap .fbc-items li {
  padding: 0 0 !important;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  line-height: 1;
}
.breadcrumb-trail .fbc-wrap .fbc-items li:first-child {
  padding: 0 0 !important;
}

/*----------------- ABOUT PAGE ------------------ */
.about .tableContent {
  margin: 60px auto 0;
}

.tableContent {
  padding: 20px 15px;
  background-color: #f2f9ff;
  border-radius: 10px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .tableContent {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 30px;
  }
}
.tableContent table {
  width: 100%;
}
.tableContent table tbody {
  display: grid;
  gap: 15px;
}
.tableContent table tbody tr {
  display: grid;
  gap: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid #d8e6f2;
}
@media screen and (min-width: 768px) {
  .tableContent table tbody tr {
    grid-template-columns: 10% 1fr;
    align-items: center;
  }
}
.tableContent table tbody tr:last-child {
  border-bottom: unset;
  padding-bottom: 0;
}
.tableContent table tbody tr th {
  font-weight: 700;
}

.mission .missionList {
  display: grid;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .mission .missionList {
    gap: 60px;
  }
}
@media screen and (min-width: 768px) {
  .mission .missionList .missionListItem {
    display: grid;
    grid-template-columns: 1fr 30%;
    gap: 30px;
    align-items: center;
  }
}
.mission .missionList .missionListItem .Title02 {
  margin-bottom: 15px;
}
.mission .missionList .missionListItem p:nth-child(2) {
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .mission .missionList .missionListItem p:nth-child(2) {
    font-size: 1.8rem;
  }
}
.mission .missionList .missionListItem .imgContent {
  margin-top: 20px;
}
.mission .missionList .missionListItem .imgContent img {
  border-radius: unset;
  aspect-ratio: unset;
}
.mission .missionList .missionListItem:nth-child(1) .imgContent img {
  border-radius: 50px;
}
.mission .missionList .missionListItem:nth-child(3) ul {
  display: grid;
  gap: 20px;
}
.mission .missionList .missionListItem:nth-child(3) ul li:nth-child(1) span {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f71c6;
  margin-bottom: 7px;
  display: block;
}
@media screen and (min-width: 768px) {
  .mission .missionList .missionListItem:nth-child(3) ul li:nth-child(1) span {
    font-size: 2.2rem;
  }
}
.mission .missionList .missionListItem:nth-child(3) ul li:nth-child(1) p:nth-child(2) {
  font-size: 1.8rem;
  display: flex;
  gap: 5px;
  font-weight: 700;
  align-items: baseline;
  margin-bottom: 10px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .mission .missionList .missionListItem:nth-child(3) ul li:nth-child(1) p:nth-child(2) {
    font-size: 2.4rem;
  }
}
.mission .missionList .missionListItem:nth-child(3) ul li:nth-child(1) p:nth-child(2) b {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .mission .missionList .missionListItem:nth-child(3) ul li:nth-child(1) p:nth-child(2) b {
    font-size: 3.2rem;
  }
}
.mission .missionList .missionListItem:nth-child(3) ul li:nth-child(1) p:nth-child(3) {
  line-height: 1.5;
}
.mission .missionList .missionListItem:nth-child(3) ul li p:nth-child(1) {
  font-size: 1.8rem;
  display: flex;
  gap: 5px;
  font-weight: 700;
  align-items: baseline;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .mission .missionList .missionListItem:nth-child(3) ul li p:nth-child(1) {
    font-size: 2.4rem;
  }
}
.mission .missionList .missionListItem:nth-child(3) ul li p:nth-child(1) b {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .mission .missionList .missionListItem:nth-child(3) ul li p:nth-child(1) b {
    font-size: 3.2rem;
  }
}

@media screen and (min-width: 768px) {
  .biography .biographyScrollWrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 40px;
    background-color: #f2f9ff;
    border-radius: 30px;
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .biography .biographyScrollWrapper::before {
    content: "Scroll →";
    bottom: 40px;
    left: 40px;
    font-size: 2rem;
    position: absolute;
    color: #7990a4;
  }
}
.biography .biographyList {
  display: grid;
  gap: 25px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .biography .biographyList {
    grid-template-columns: repeat(7, 1fr);
    width: 170%;
  }
}
.biography .biographyList::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #d8e6f2 90%, rgba(216, 230, 242, 0));
  top: 0;
  left: 7px;
}
@media screen and (min-width: 768px) {
  .biography .biographyList::before {
    display: none;
  }
}
.biography .biographyList li {
  padding-left: 30px;
  position: relative;
  display: grid;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .biography .biographyList li {
    padding-left: 0;
    padding-top: 30px;
    align-content: start;
  }
}
.biography .biographyList li::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 100px;
  background-color: #0f71c6;
  top: -3px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .biography .biographyList li::before {
    top: 0px;
    z-index: 2;
  }
}
.biography .biographyList li::after {
  content: "";
}
@media screen and (min-width: 768px) {
  .biography .biographyList li::after {
    position: absolute;
    width: 115%;
    height: 3px;
    background-color: #0f71c6;
    top: 7px;
    left: 0;
    z-index: 1;
    background: linear-gradient(to right, #d8e6f2 90%, rgba(216, 230, 242, 0));
  }
}
@media screen and (min-width: 768px) {
  .biography .biographyList li:nth-child(2) {
    margin-top: 15px;
  }
}
@media screen and (min-width: 768px) {
  .biography .biographyList li:nth-child(3) {
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .biography .biographyList li:nth-child(4) {
    margin-top: 45px;
  }
}
@media screen and (min-width: 768px) {
  .biography .biographyList li:nth-child(5) {
    margin-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  .biography .biographyList li:nth-child(6) {
    margin-top: 75px;
  }
}
@media screen and (min-width: 768px) {
  .biography .biographyList li:nth-child(7) {
    margin-top: 90px;
  }
}
.biography .biographyList li p {
  font-size: 1.8rem;
}
.biography .biographyList li p:nth-child(1) {
  font-size: 1.4rem;
}

.message img {
  aspect-ratio: unset;
}
.message .TextContent p:nth-child(1) {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .message .TextContent p:nth-child(1) {
    font-size: 3.2rem;
  }
}
.message .TextContent p:nth-child(2) {
  line-height: 1.7;
  margin-bottom: 20px;
}
.message .TextContent p:nth-child(2) span {
  display: block;
  height: 20px;
}
.message .TextContent p:nth-child(3) {
  text-align: right;
}

/*----------------- Services ------------------ */
.servicesPage .servicesTitleContent {
  display: grid;
  gap: 5px;
  margin-bottom: 20px;
}
.servicesPage .servicesTitleContent .servicesTitle {
  display: grid;
  gap: 5px;
}
.servicesPage .servicesTitleContent .servicesTitle p {
  font-size: 1.8rem;
  display: flex;
  gap: 5px;
  font-weight: 700;
  align-items: baseline;
  margin-bottom: 10px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .servicesPage .servicesTitleContent .servicesTitle p {
    font-size: 2.8rem;
  }
}
.servicesPage .servicesTitleContent .servicesTitle p b {
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  .servicesPage .servicesTitleContent .servicesTitle p b {
    font-size: 3.4rem;
  }
}
.servicesPage .servicesTitleContent .servicesTitle span {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f71c6;
}
@media screen and (min-width: 768px) {
  .servicesPage .servicesTitleContent .servicesTitle span {
    font-size: 2.2rem;
  }
}
.servicesPage .servicesTitleContent .servicesTitleText {
  color: #626262;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .servicesPage .servicesTitleContent .servicesTitleText {
    font-size: 2rem;
  }
}
.servicesPage .services01 .servicesPageList {
  display: grid;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .servicesPage .services01 .servicesPageList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.servicesPage .services01 .servicesPageList li {
  display: grid;
  gap: 15px;
  align-content: start;
}
.servicesPage .services01 .servicesPageList li p {
  line-height: 1.5;
}
.servicesPage .services01 .servicesPageList li .servicesPageListTitle {
  line-height: 1;
  font-size: 2rem;
  padding-left: 20px;
  position: relative;
  font-weight: 700;
  margin-bottom: 10px;
}
.servicesPage .services01 .servicesPageList li .servicesPageListTitle::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #0f71c6;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.servicesPage .services01 .servicesPageList li .servicesPageListTitle span {
  color: #626262;
  font-size: 1.6rem;
  margin-left: 5px;
}
.servicesPage .services02 .services02KeyText {
  font-size: 2rem;
  text-align: center;
  line-height: 1.2;
  font-weight: 700;
  margin: 20px auto;
}
@media screen and (min-width: 768px) {
  .servicesPage .services02 .services02KeyText {
    font-size: 3.4rem;
    margin: 60px auto;
  }
}
@media screen and (min-width: 768px) {
  .servicesPage .services02 .sectionimgContent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.servicesPage .services02 .services02List {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .servicesPage .services02 .services02List {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.servicesPage .services02 .services02List li {
  padding: 15px;
  background-color: #21303e;
  border-radius: 20px;
}
.servicesPage .services02 .services02List li p {
  text-align: center;
}
.servicesPage .services02 .services02List li p:nth-child(1) {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}
.servicesPage .services02 .services02List li p:nth-child(1) span {
  font-size: 1.7rem;
}
.servicesPage .services02 .services02List li p:nth-child(2) {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  line-height: 1.3;
}
.servicesPage .services02 .services02List li p:nth-child(2) span {
  font-size: 1.4rem;
}
.servicesPage .services02 .tableContent {
  background-color: #fff;
}
.servicesPage .services03 .sectionimgContent {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .servicesPage .services03 .sectionimgContent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.servicesPage .servicesPostTitle {
  line-height: 1;
  font-size: 2rem;
  padding-left: 20px;
  position: relative;
  font-weight: 700;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .servicesPage .servicesPostTitle {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
.servicesPage .servicesPostTitle::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #0f71c6;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.servicesPage .servicesPost {
  margin-bottom: 60px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .servicesPage .servicesPost {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .servicesPage .servicesPost .servicesPostList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.servicesPage .servicesPost .servicesPostList .servicesPostItem .imgContent {
  margin-bottom: 10px;
}
.servicesPage .servicesPost .servicesPostList .servicesPostItem .imgContent img {
  aspect-ratio: 3/2;
}
.servicesPage .servicesPost .servicesPostList .servicesPostItem .servicesTitle {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.servicesPage .servicesPost .servicesPostList .servicesPostItem p:nth-child(3) {
  line-height: 1.5;
  -webkit-line-clamp: 2; /* 行数を制限 */
  display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  overflow: hidden; /* はみ出た部分を非表示 */
}
.servicesPage .servicesPost .servicesSwiper {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .servicesPage .servicesPost .servicesSwiper {
    padding-bottom: 0;
  }
}
.servicesPage .servicesPost .swiper-pagination {
  bottom: 0 !important;
  top: unset !important;
}
.servicesPage .servicesPost:last-child {
  margin-bottom: 0;
}
.servicesPage .services03 .imgContent {
  margin-bottom: 20px;
}
.servicesPage .tableContent tr {
  gap: 5px;
}
.servicesPage .tableContent td {
  line-height: 1.5;
}
.servicesPage .tableContent td span {
  font-size: 1.4rem;
}

.post-type-archive-lecture .servicesPostList {
  display: grid;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .post-type-archive-lecture .servicesPostList {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media screen and (min-width: 1080px) {
  .post-type-archive-lecture .servicesPostList {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
.post-type-archive-lecture .servicesPostList .servicesTitle {
  -webkit-line-clamp: 2 !important; /* 行数を制限 */
}

/*----------------- Recruit ------------------ */
.recruitPage section .gridContent {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .recruitPage section .gridContent {
    margin-bottom: 60px;
  }
}
.recruitPage section .gridContent .TextContent {
  line-height: 1.5;
}
.recruitPage section .gridContent .TextContent .Title02 {
  line-height: 1;
}
.recruitPage section .recruitListContent .recruitList {
  display: grid;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .recruitPage section .recruitListContent .recruitList {
    grid-template-columns: repeat(2, 1fr);
  }
}
.recruitPage section .recruitListContent .recruitList .recruitListItem {
  padding: 20px 15px 15px;
  border-radius: 10px;
  background-color: #f2f9ff;
}
.recruitPage section .recruitListContent .recruitList .recruitListItem .recruitListTitle {
  font-size: 1.8rem;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d8e6f2;
  font-weight: 700;
}
.recruitPage section .recruitListContent .recruitList .recruitListItem .recruitListText {
  line-height: 1.5;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d8e6f2;
}
.recruitPage section .recruitListContent .recruitList .recruitListItem .recruitListOption {
  display: grid;
  gap: 5px;
}
.recruitPage section .recruitListContent .recruitList .recruitListItem .recruitListOption li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.recruitPage section .recruitListContent .recruitList .recruitListItem .recruitListOption li p:nth-child(1) {
  width: 85px;
  height: 30px;
  background-color: #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 1.4rem;
  font-weight: 700;
  color: #21303e;
}

/*- Recruit SINGLE - */
.single-recruit .tableContent {
  padding: 0 0;
  background-color: unset;
  border-radius: 0;
  margin-top: 0;
  padding-bottom: 30px;
  border-bottom: 1px solid #dddddd;
}
.single-recruit .tableContent tr {
  border-bottom: 1px solid #dddddd;
}
.single-recruit .tableContent td {
  line-height: 1.5;
}
.single-recruit .tableContent .Btn::before {
  right: 12px !important;
  left: unset !important;
  transform: translateY(-50%) !important;
}

/*----------------- Archive ------------------ */
.archive .NewsCategory {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  font-size: 1.4rem;
}
@media screen and (min-width: 1080px) {
  .archive .NewsCategory {
    font-size: 1.6rem;
    justify-content: center;
    margin-bottom: 60px;
  }
}
.archive .NewsCategory li button {
  padding: 10px 30px;
  border-radius: 2px;
  background-color: #999;
  color: #fff;
  font-weight: 500;
}

.Pagenation {
  font-size: 2rem;
  width: 100%;
  text-align: center;
  margin-top: 80px;
  font-weight: 500;
  letter-spacing: 0.3em;
}

/*--------------- WP-PAGENAVI -------------- */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  font-size: 2rem;
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 2.4rem;
  margin: 20px !important;
  border: unset !important;
  transition: all 0.3s;
  font-weight: 600 !important;
}
.wp-pagenavi .current {
  color: #555;
}
.wp-pagenavi .pages {
  display: none !important;
}

/*----------------- Single ------------------ */
.CardContent {
  display: flex;
  align-items: center;
  gap: 20px;
}
.CardContent .Date {
  font-size: 1.4rem;
  color: #666666;
  line-height: 1;
}
.CardContent .post-categories {
  padding: 5px 15px;
  border-radius: 2px;
  border: 1px solid #318999;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
}

#Post {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  word-wrap: break-word;
}
#Post .TextInner {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
#Post .CardTitle {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
}
#Post h2.wp-block-heading {
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
  padding-left: 10px;
  line-height: 1;
  margin-bottom: 20px;
}
#Post h2.wp-block-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 140%;
  transform: translateY(-50%);
}
#Post h3.wp-block-heading {
  font-size: 1.8rem;
  font-weight: 500;
  padding: 15px;
  background-color: #eee;
  border-radius: 3px;
  margin-bottom: 20px;
  line-height: 1.5;
}
#Post p {
  line-height: 1.7;
}
#Post iframe,
#Post img {
  margin-bottom: 20px;
}
#Post .Btn {
  font-style: normal;
}
#Post .Btn::before {
  right: unset;
  left: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}
#Post .Btn:hover::before {
  left: 15px;
}
#Post .wp-block-columns {
  gap: 20px;
}
#Post .wp-block-buttons {
  display: flex;
  justify-content: center;
}
#Post .wp-block-image.aligncenter {
  display: block !important;
}
#Post .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
  width: 100%;
}

/*----------------- FORM ------------------ */
.Form {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.Form .FormText {
  line-height: 1.8;
  text-align: left;
}
.Form dl {
  text-align: left;
}
.Form dl .must,
.Form dl .any {
  font-size: 1.2rem;
  color: #fff;
  background-color: #21303e;
  height: 26px;
  width: 60px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.Form dl .any {
  background-color: #fff;
  color: #21303e;
  border: 2px solid #21303e;
}
.Form dl dt {
  font-size: 1.8rem;
  font-weight: 700;
}
.Form dl dt p {
  display: flex;
  gap: 5px;
  align-items: center;
}
.Form dl dt p span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.Form dl dd {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 30px;
}
.Form dl dd:last-child {
  margin-bottom: 0;
}
.Form dl input[type=text],
.Form dl input[type=tel],
.Form dl input[type=email],
.Form dl select,
.Form dl textarea {
  font-size: 1.6rem;
  border-radius: 5px;
  background-color: #fcfcfc;
  border: 1px solid #d6d7d9;
  width: 100%;
  padding: 15px;
  text-align: left;
}
.Form dl ::-moz-placeholder {
  color: #ccc;
}
.Form dl ::placeholder {
  color: #ccc;
}
.Form dl .wpcf7-not-valid-tip {
  text-align: left;
}
.Form dl .wpcf7-checkbox,
.Form dl .wpcf7-radio {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 400;
}
.Form dl .wpcf7-checkbox .wpcf7-list-item,
.Form dl .wpcf7-radio .wpcf7-list-item {
  margin: 0 0;
  display: block;
}
.Form dl select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url(../img/icon/select-icon.svg);
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 20px;
  cursor: pointer;
}
.Form dl textarea {
  height: 300px;
}
.Form .Btn {
  width: 100%;
  max-width: 600px;
  padding: 20px 0;
  font-size: 1.8rem;
  font-style: normal;
}
@media screen and (min-width: 1080px) {
  .Form .Btn {
    max-width: 440px;
  }
}
.Form .privacyContent {
  display: block;
  text-align: center;
  padding: 18px;
  border-radius: 3px;
  background: #ececec;
  max-width: 400px;
  margin: 20px auto 0;
  color: #262626;
}
.Form .privacyContent input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-top: -3px;
}
.Form .privacyContent .privacyText {
  font-size: 1.5rem;
  font-weight: 500;
}
.Form .privacyContent .privacyText a {
  color: #1d8ad9;
  text-decoration: underline;
}

/*------ Footer --------*/
footer {
  background-color: #292f32;
  color: #fff;
  padding: 30px 15px 20px;
}
@media screen and (min-width: 1200px) {
  footer {
    padding: 30px 0 20px;
  }
}
@media screen and (min-width: 1080px) {
  footer .FooterTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
}
footer .FooterTop .Menu__content {
  position: unset;
  transform: unset;
  padding: 0 0;
  margin: 30px 0 20px;
}
@media screen and (min-width: 1080px) {
  footer .FooterTop .Menu__content {
    margin: 0 0;
  }
}
footer .FooterTop .Menu__content .Menu__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media screen and (min-width: 1080px) {
  footer .FooterTop .Menu__content .Menu__list {
    display: flex;
    gap: 40px;
  }
}
footer .FooterTop .Menu__content .Menu__list .Menu__item {
  font-size: 1.8rem;
  border-bottom: 1px solid #525a5e;
  padding-bottom: 15px;
}
@media screen and (min-width: 1080px) {
  footer .FooterTop .Menu__content .Menu__list .Menu__item {
    border-bottom: unset;
    padding-bottom: 0;
  }
}
footer .FooterTop .Menu__content .Menu__list .Menu__item.Btn {
  max-width: unset;
  width: 100%;
  margin: unset;
  position: unset;
  color: #fff;
  padding: unset;
  border-radius: unset;
  background-color: unset;
  display: block;
  transition: unset;
  line-height: 1;
  text-align: left;
  font-weight: 300;
  cursor: pointer;
}
footer .FooterTop .Menu__content .Menu__list .Menu__item.Btn::before {
  display: none;
}
footer .privacy,
footer .Copyright {
  font-size: 1.2rem;
  color: #8d9ba2;
}
footer .FooterBottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.Copyright {
  font-size: 1.2rem;
}/*# sourceMappingURL=style.css.map */