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

body {
  min-height: 100vh;
  color: #262626;
  font-family: futura-pt, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.1em;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

section {
  padding: 80px 30px;
}

section:nth-of-type(even) {
  background-color: #F4F4F4;
}

@media screen and (max-width: 1120px) {
  section {
    padding: 80px 15px;
  }
}

.Title {
  margin-bottom: 60px;
  font-size: 3.2rem;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  color: #262626;
}

@media screen and (max-width: 400px) {
  .Title {
    font-size: 2.4rem;
  }
}

.Title span {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #F45454;
}

@media screen and (max-width: 400px) {
  .Title span {
    font-size: 1.4rem;
  }
}

.SubTitle {
  font-size: 2.4rem;
  font-weight: 600;
  position: relative;
  padding-left: 16px;
}

@media screen and (max-width: 400px) {
  .SubTitle {
    font-size: 2rem;
  }
}

.SubTitle::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 100%;
  background-color: #F48B54;
  top: 0;
  left: 0;
}

.Pcver {
  display: block;
}

@media screen and (max-width: 768px) {
  .Pcver {
    display: none;
  }
}

.Spver {
  display: none;
}

@media screen and (max-width: 768px) {
  .Spver {
    display: block;
  }
}

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

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

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #FAFAFA;
}

.flexWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1120px) {
  .flexWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* ------- BTN -------- */
.Btn {
  max-width: 300px;
  width: 100%;
  padding: 25px;
  font-size: 1.8rem;
  margin: 0 0 0 auto;
  background-color: #363636;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  position: relative;
}

@media screen and (max-width: 768px) {
  .Btn {
    margin: 0 auto;
    max-width: unset;
  }
}

.Btn:hover {
  -webkit-filter: unset;
          filter: unset;
  -webkit-transform: scale(0.99, 0.99) translateY(3px);
          transform: scale(0.99, 0.99) translateY(3px);
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.Btn:before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.Btn:hover::before {
  right: 25px;
}

/* 共通設定 */
/* HEADER */
header {
  width: 100%;
  position: absolute;
  top: -60px;
}

header .Header__inner {
  width: 100%;
  height: 100px;
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: all 1s;
  transition: all 1s;
}

@media screen and (max-width: 1120px) {
  header .Header__inner {
    padding: 20px 15px;
  }
}

.Logo {
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
}

@media screen and (max-width: 400px) {
  .Logo {
    font-size: 2.4rem;
  }
}

.Header__inner.is-animation .Logo,
.under_Header_inner .Logo {
  color: #262626;
  -webkit-filter: unset;
          filter: unset;
}

.is-animation,
.under_Header_inner {
  background-color: #fff;
  color: #262626;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.Header__inner.is-animation .Menu__item,
.under_Header_inner .Menu__item {
  color: #262626;
  -webkit-filter: unset !important;
          filter: unset !important;
}

.Header__inner.is-animation .Menu__item:last-child,
.under_Header_inner .Menu__item:last-child {
  color: #fff;
}

.Header__inner.is-animation .OpenBtn,
.under_Header_inner .OpenBtn {
  -webkit-filter: unset;
          filter: unset;
}

.Header__inner.is-animation .OpenBtn span,
.under_Header_inner .OpenBtn span {
  background-color: #262626;
}

/* NAV */
@media screen and (max-width: 1120px) {
  nav {
    width: 100%;
    height: 100vh;
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    background: #000000e6;
    text-align: center;
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: hidden;
  }
  nav.panelactive {
    visibility: visible;
    opacity: 1;
  }
}

@media screen and (max-width: 1120px) {
  .Menu__content {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.Menu__content .Menu__list {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1120px) {
  .Menu__content .Menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.Menu__content .Menu__list .Menu__item {
  margin-left: 40px;
  font-weight: 600;
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
}

@media screen and (max-width: 1120px) {
  .Menu__content .Menu__list .Menu__item {
    margin: 0 0 40px 0;
    margin-left: unset;
    font-size: 4rem;
    color: #fff;
  }
  .Menu__content .Menu__list .Menu__item:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .Menu__content .Menu__list .Menu__item {
    font-size: 3.2rem;
  }
}

.Menu__content .Menu__list .Menu__item:hover {
  opacity: 0.6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.Menu__content .Menu__list .Btn {
  padding: 15px 40px;
  margin-top: 0;
  font-size: 1.6rem;
}

.Menu__content .Menu__list .Btn::before {
  font-size: 1.4rem;
}

@media screen and (max-width: 1120px) {
  .Menu__content .Menu__list .Btn::before {
    font-size: 2.8rem;
  }
}

.Menu__content .Menu__list .Btn:hover::before {
  right: 22px;
}

@media screen and (max-width: 1120px) {
  .Menu__content .Menu__list .Btn {
    max-width: unset;
    width: 90%;
    padding: 40px;
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 768px) {
  .Menu__content .Menu__list .Btn {
    padding: 30px;
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 400px) {
  .Menu__content .Menu__list .Btn {
    font-size: 2.4rem;
  }
}

/* HAMBERGER MENU */
.OpenBtn {
  display: none;
}

@media screen and (max-width: 1120px) {
  .OpenBtn {
    width: 50px;
    height: 29px;
    position: relative;
    z-index: 1000;
    display: block;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
            filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
  }
  .OpenBtn span {
    width: 100%;
    height: 3px;
    background: #fff;
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: absolute;
    border-radius: 50px;
  }
  .OpenBtn span:nth-of-type(2) {
    top: 13px;
  }
  .OpenBtn span:nth-of-type(3) {
    bottom: 0;
  }
  .OpenBtn.active span {
    background-color: #fff !important;
  }
  .OpenBtn.active span:nth-of-type(1) {
    top: 14px;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  .OpenBtn.active span:nth-of-type(2) {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  .OpenBtn.active span:nth-of-type(3) {
    bottom: 12px;
    -webkit-transform: rotate(150deg);
            transform: rotate(150deg);
  }
}

/*----------------- KEY-VISUAL ------------------ */
.KeyVisual {
  height: 100vh;
  position: relative;
}

.KeyVisual .wrapper {
  max-width: 1100px;
}

.KeyVisual .KeyVisualInner {
  width: 100%;
  height: 100%;
  position: relative;
}

.KeyVisual .KeyVisualInner .blur {
  width: 100%;
  height: 100%;
}

.KeyVisual .KeyVisualInner .KeyVisualAutoplay {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.KeyVisual .KeyVisualInner .KeyVisualAutoplay li {
  height: 100vh;
}

.KeyVisual .KeyVisualInner .KeyVisualAutoplay li img {
  height: 100vh;
}

.KeyVisual .KeyVisualInner .KeyVisualAutoplay .slick-dots {
  margin-top: -40px;
}

.KeyVisual .KeyVisualInner .KeyVisualTextInner {
  width: 100%;
  height: 100%;
}

.KeyVisual .KeyVisualInner .KeyVisualText {
  font-size: 4rem;
  color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
  z-index: 10;
}

@media screen and (max-width: 1120px) {
  .KeyVisual .KeyVisualInner .KeyVisualText {
    padding: 15px;
  }
}

@media screen and (max-width: 768px) {
  .KeyVisual .KeyVisualInner .KeyVisualText {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 480px) {
  .KeyVisual .KeyVisualInner .KeyVisualText {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 400px) {
  .KeyVisual .KeyVisualInner .KeyVisualText {
    font-size: 2rem;
  }
}

.KeyVisual .KeyVisualInner .KeyVisualText p {
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.KeyVisual .KeyVisualInner .KeyVisualText .Btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 60px;
  margin: unset;
  color: #262626;
  background-color: #fff;
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
}

@media screen and (max-width: 400px) {
  .KeyVisual .KeyVisualInner .KeyVisualText .Btn {
    padding: 20px 40px;
    margin: 0 auto;
  }
}

/* ABOUT */
#About .AboutInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}

@media screen and (max-width: 1120px) {
  #About .AboutInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

#About .AboutInner .TextConter,
#About .AboutInner img {
  width: 50%;
}

@media screen and (max-width: 1120px) {
  #About .AboutInner .TextConter,
  #About .AboutInner img {
    width: 100%;
  }
}

#About .AboutInner img {
  aspect-ratio: 4 / 3;
}

@media screen and (max-width: 1120px) {
  #About .AboutInner img {
    aspect-ratio: 16 / 9;
  }
}

#About .AboutInner .TextConter {
  padding: 20px 0;
  position: relative;
}

@media screen and (max-width: 1120px) {
  #About .AboutInner .TextConter {
    padding: 0 0;
  }
}

#About .AboutInner .TextConter p {
  line-height: 1.5;
}

#About .AboutInner .TextConter p:first-child {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 1120px) {
  #About .AboutInner .TextConter p:first-child {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media screen and (max-width: 768px) {
  #About .AboutInner .TextConter p:first-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (max-width: 400px) {
  #About .AboutInner .TextConter p:first-child {
    font-size: 2rem;
  }
}

#About .AboutInner .TextConter p:first-child span {
  font-size: 1.8rem;
}

@media screen and (max-width: 400px) {
  #About .AboutInner .TextConter p:first-child span {
    font-size: 1.6rem;
  }
}

#About .AboutInner .TextConter .Btn {
  max-width: unset;
  margin: unset;
  position: absolute;
  bottom: 20px;
}

@media screen and (max-width: 1120px) {
  #About .AboutInner .TextConter .Btn {
    margin: 40px 0 0 auto;
    position: unset;
  }
}

@media screen and (max-width: 400px) {
  #About .AboutInner .TextConter .Btn {
    max-width: unset;
  }
}

#About .AboutInner .TextConter .SmallTitle {
  margin-bottom: 10px;
}

.SmallTitle {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 14px;
  font-size: 1.4rem;
  font-weight: 600;
  background-color: #676767;
  color: #fff;
}

/* BUSINESS */
.Card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}

@media screen and (max-width: 1120px) {
  .Card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.Card li {
  width: calc(100% / 3 - 20px);
}

@media screen and (max-width: 1120px) {
  .Card li {
    width: 100%;
    margin-bottom: 40px;
  }
  .Card li:last-child {
    margin-bottom: 0;
  }
}

/*----------------- NEWS ------------------ */
#News .News__list {
  width: 100%;
  padding: 30px;
  background-color: #fff;
  font-size: 1.4rem;
  font-weight: normal;
}

@media screen and (max-width: 400px) {
  #News .News__list {
    padding: 20px 15px;
  }
}

#News .News__list .News__item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #CCC;
}

#News .News__list .News__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: unset;
}

#News .News__list .News__item .News__item--Inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  #News .News__list .News__item .News__item--Inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

#News .News__list .News__item .News__item--Inner:hover {
  opacity: 1;
}

#News .News__list .News__item .News__item--Inner .News__item--days--category--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  #News .News__list .News__item .News__item--Inner .News__item--days--category--content {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 400px) {
  #News .News__list .News__item .News__item--Inner .News__item--days--category--content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

#News .News__list .News__item .News__item--Inner .category {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 40px 0 20px;
  padding: 7px 14px;
  background-color: #676767 !important;
  color: #fff;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  #News .News__list .News__item .News__item--Inner .category {
    margin-right: 0;
  }
}

@media screen and (max-width: 400px) {
  #News .News__list .News__item .News__item--Inner .category {
    margin: 15px 0 0 0;
  }
}

#News .News__list .News__item .News__item--Inner .News__item--title {
  line-height: 1.5;
}

@media screen and (max-width: 400px) {
  #News .News__list .News__item .News__item--Inner .News__item--date {
    margin-right: 20px;
  }
}

#News .Btn {
  max-width: 350px;
  width: 100%;
  margin: 40px auto 0;
  display: block;
}

/* NEWS */
#Column .TextInner {
  width: 100%;
  padding: 15px 0;
}

#Column .TextInner .NewsContent {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#Column .TextInner .NewsContent .category {
  background-color: #676767 !important;
  color: #fff;
  margin-left: 10px;
  padding: 7px 15px;
  font-size: 1.4rem;
}

#Column .TextInner .NewsContent:last-child {
  font-size: 1.2rem;
}

#Column .TextInner .NewsTitle {
  width: 100%;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

#Column .slick-slide {
  margin: 0 10px;
}

#Column img {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

/* RECRUIT */
aside {
  width: 23%;
  background-color: #fff;
}

@media screen and (max-width: 1120px) {
  aside {
    width: 100%;
  }
}

aside .SideTitle {
  padding: 25px 30px;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 600;
  background-color: #262626;
}

@media screen and (max-width: 1120px) {
  aside .SideTitle {
    padding: 30px 15px;
    font-size: 2.4rem;
  }
}

aside .SideInner {
  padding: 30px;
}

@media screen and (max-width: 1120px) {
  aside .SideInner {
    padding: 30px 15px;
  }
}

/* SIDE BAR */
#Ranking ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

#Ranking ul li:last-child {
  border: unset;
  margin-bottom: 20px;
}

#Ranking ul li:nth-child(1) p,
#Ranking ul li:nth-child(2) p,
#Ranking ul li:nth-child(3) p {
  font-size: 1.6rem;
}

#Ranking ul li p {
  font-size: 1.5rem;
  font-weight: 600;
}

#Ranking ul li:nth-child(1) .num,
#Ranking ul li:nth-child(2) .num,
#Ranking ul li:nth-child(3) .num {
  width: 40px;
  height: 40px;
  line-height: 40px;
}

#Ranking ul li:nth-child(1) .num {
  background-color: #EDC20E;
}

#Ranking ul li:nth-child(2) .num {
  background-color: #BBC8CB;
}

#Ranking ul li:nth-child(3) .num {
  background-color: #A87500;
}

#Ranking ul li .num {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  background-color: #808080;
  margin-right: 10px;
}

#Ranking .Btn {
  max-width: unset;
  padding: 15px;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  #Ranking .Btn {
    padding: 20px 10px;
  }
}

/* RANKING */
#Certification ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

#Certification ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  font-weight: 600;
  font-size: 1.6rem;
}

#Certification ul li img {
  margin-bottom: 15px;
  border: 1px solid #ddd;
}

/* CERTIFICATION */
#Link ul li {
  margin-bottom: 20px;
  border: 2px solid #ddd;
}

/* LINK */
/* TABLE BOX */
.TableBox {
  width: 100%;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.TableBox table {
  width: 100%;
  border: 1px solid #ddd;
}

.TableBox tr {
  border-bottom: 1px solid #ddd;
  font-size: 1.4rem;
  line-height: 1.8;
}

.TableBox tr:last-child {
  border: unset;
}

.TableBox tr th,
.TableBox tr td {
  padding: 15px 30px;
}

@media screen and (max-width: 768px) {
  .TableBox tr th,
  .TableBox tr td {
    display: block;
    width: 100%;
    padding: 15px 20px;
  }
}

.TableBox tr th {
  width: 25%;
  background-color: #E8E8E8;
}

@media screen and (max-width: 768px) {
  .TableBox tr th {
    width: 100%;
    text-align: center;
  }
}

.TableBox tr td {
  width: 75%;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .TableBox tr td {
    width: 100%;
  }
}

.TableBox tr td span {
  width: 65px;
  display: inline-block;
  position: relative;
}

.TableBox tr td span::before {
  content: ":";
  position: absolute;
  top: 50%;
  right: 4px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* Greetings */
#Greetings .Greetings_Content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

@media screen and (max-width: 1120px) {
  #Greetings .Greetings_Content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#Greetings .Greetings_Content .ImgBox,
#Greetings .Greetings_Content img {
  width: 50%;
}

@media screen and (max-width: 1120px) {
  #Greetings .Greetings_Content .ImgBox,
  #Greetings .Greetings_Content img {
    width: 100%;
  }
}

#Greetings .Greetings_Content img {
  height: auto;
}

@media screen and (max-width: 1120px) {
  #Greetings .Greetings_Content img {
    aspect-ratio: 16 / 9;
  }
}

#Greetings .Greetings_Content .TextBox {
  padding: 20px 0;
}

#Greetings .Greetings_Content .TextBox .Title {
  font-size: 2.4rem;
  font-weight: 600;
}

#Greetings .Greetings_Content p {
  margin-bottom: 10px;
}

#Greetings .Greetings_Content p:nth-child(2) {
  margin: 20px 0;
  font-size: 2rem;
  font-weight: 600;
}

#Greetings .Greetings_Content p:nth-child(2) span {
  font-size: 1.4rem;
}

#Greetings .Greetings_Content p:nth-child(4) {
  margin-bottom: 15px;
}

#Greetings .Greetings_Content p:nth-child(4), #Greetings .Greetings_Content p:nth-child(6) {
  line-height: 1.5;
}

#Greetings .Greetings_Content p:last-child {
  margin-bottom: unset;
}

/* Access */
#Access ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#Access ul li {
  width: calc(100% / 2 - 10px);
  margin-bottom: 40px;
}

@media screen and (max-width: 1120px) {
  #Access ul li {
    width: 100%;
  }
}

#Access ul li:nth-child(3), #Access ul li:nth-child(4) {
  margin-bottom: unset;
}

@media screen and (max-width: 1120px) {
  #Access ul li:nth-child(3) {
    margin-bottom: 40px;
  }
}

#Access ul li .SubTitle {
  font-size: 1.8rem;
  padding-left: 15px;
}

#Access ul li .SubTitle::before {
  width: 5px;
}

#Access ul li p:nth-child(2) {
  line-height: 1.8;
  margin: 20px 0;
}

#Access ul li iframe {
  width: 100%;
  height: 230px;
}

/* Column /* SINGLE */
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 80px;
}

.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 2.4rem;
  margin: 20px !important;
  border: unset !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.wp-pagenavi .current {
  color: #959595;
  font-weight: 500 !important;
}

.wp-pagenavi .pages {
  display: none !important;
}

.LinkBtn {
  text-align: right;
  font-size: 2rem;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .LinkBtn {
    margin-bottom: 40px;
  }
}

.LinkBtn .next-link i {
  margin-right: 10px;
}

.LinkBtn .prev-link {
  margin-left: 80px;
}

@media screen and (max-width: 768px) {
  .LinkBtn .prev-link {
    margin-left: 40px;
  }
}

.LinkBtn .prev-link i {
  margin-left: 10px;
}

.single #Column .NewsTitle {
  font-size: 2.4rem;
}

.single #Column .NewsPageText {
  margin: 40px auto 80px auto;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .single #Column .NewsPageText {
    margin: 40px auto;
    word-break: break-all;
  }
}

/* RANKING */
.page main #Ranking ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .page main #Ranking ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.page main #Ranking ul li {
  width: calc(100% / 2 - 10px);
}

@media screen and (max-width: 768px) {
  .page main #Ranking ul li {
    width: 100%;
  }
}

.page main #Ranking ul li:nth-child(9) {
  border: none;
}

@media screen and (max-width: 768px) {
  .page main #Ranking ul li:nth-child(9) {
    border-bottom: 1px solid #ddd;
  }
}

.page main #Ranking ul li .num {
  width: 40px;
  height: 40px;
  line-height: 40px;
}

.page main #Ranking ul:nth-child(2) li .num, .page main #Ranking ul:nth-child(3) li .num {
  background-color: #808080;
}

#ServicesCategory ul li {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  #ServicesCategory ul li {
    margin-bottom: 40px;
  }
}

#ServicesCategory ul li img {
  max-width: 260px;
  height: 80px;
  margin: 20px 0;
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
}

#ServicesCategory ul li p:nth-child(4) {
  line-height: 1.5;
  margin-bottom: 20px;
}

#TsukiBoard p {
  margin-bottom: 40px;
  line-height: 1.5;
}

#TsukiBoard p:last-child {
  margin-bottom: unset;
}

#TsukiBoard p:last-child strong {
  font-weight: 600;
}

#TsukiBoard ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

#TsukiBoard ul li {
  width: calc(100% / 5 - 20px);
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  #TsukiBoard ul li {
    width: calc(100% / 3 - 15px);
  }
}

@media screen and (max-width: 480px) {
  #TsukiBoard ul li {
    width: calc(100% / 2 - 10px);
  }
}

#TsukiBoard ul li img {
  aspect-ratio: 5 / 5;
  margin-bottom: 10px;
}

#VeneerBoard p:nth-child(2) {
  margin-bottom: 40px;
  line-height: 1.5;
}

#VeneerBoard .SubTitle {
  margin-bottom: 20px;
}

#VeneerBoard ul li {
  padding: 30px;
  margin-bottom: 20px;
  background-color: #EFEFEF;
}

@media screen and (max-width: 768px) {
  #VeneerBoard ul li {
    padding: 30px 15px;
  }
}

#VeneerBoard ul li p:nth-child(1) {
  font-size: 2rem;
  font-weight: 600;
}

#VeneerBoard ul li p:nth-child(2) {
  margin: 15px 0 20px;
}

#VeneerBoard ul li .imgContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  #VeneerBoard ul li .imgContent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#VeneerBoard ul li .imgContent img {
  width: calc(100% / 2 - 15px);
}

@media screen and (max-width: 768px) {
  #VeneerBoard ul li .imgContent img {
    width: 100%;
  }
  #VeneerBoard ul li .imgContent img:first-child {
    margin-bottom: 20px;
  }
}

#UkiZukuri .UkiZukuriInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  #UkiZukuri .UkiZukuriInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#UkiZukuri .UkiZukuriInner img,
#UkiZukuri .UkiZukuriInner p {
  width: 50%;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #UkiZukuri .UkiZukuriInner img,
  #UkiZukuri .UkiZukuriInner p {
    width: 100%;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  #UkiZukuri .UkiZukuriInner img {
    aspect-ratio: 16 / 9;
  }
}

#UkiZukuri .UkiZukuriInner p {
  padding: 20px 0;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  #UkiZukuri .UkiZukuriInner p {
    margin-bottom: 20px;
  }
}

#UkiZukuri .imgContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  #UkiZukuri .imgContent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

#UkiZukuri .imgContent img {
  width: calc(100% / 3 - 20px);
}

@media screen and (max-width: 768px) {
  #UkiZukuri .imgContent img {
    width: 100%;
  }
  #UkiZukuri .imgContent img:nth-child(5) {
    display: none;
  }
}

/* CTA */
#CTA {
  text-align: center;
  background: url(../img/img02.jpeg) no-repeat center center/cover;
  color: #fff;
}

#CTA .CTAInner {
  padding: 80px 15px;
  -webkit-backdrop-filter: blur(3px) brightness(0.5);
          backdrop-filter: blur(3px) brightness(0.5);
}

#CTA .Title {
  color: #fff;
  margin-bottom: 40px;
}

#CTA .Title span {
  color: #fff;
}

#CTA .Btn {
  max-width: 500px;
  padding: 30px;
  margin: 40px auto 0 auto;
  font-size: 2.4rem;
  background-size: 200% auto;
  background-color: #F48B54;
}

@media screen and (max-width: 768px) {
  #CTA .Btn {
    padding: 30px 15px;
  }
}

@media screen and (max-width: 400px) {
  #CTA .Btn {
    font-size: 2rem;
  }
}

#CTA p {
  line-height: 2;
  font-weight: 600;
}

/* LOW KEYVISUAL */
.LowKeyVisual {
  padding-top: 100px;
  background: url(../img/img02.jpeg) no-repeat center center/cover;
}

.LowKeyVisual .LowKeyVisualInner {
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(5px) brightness(0.7);
          backdrop-filter: blur(5px) brightness(0.7);
}

.LowKeyVisual .LowKeyVisualTitle {
  font-size: 4rem;
  font-weight: 600;
  color: #fff;
  padding: 100px 60px;
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
  margin-bottom: unset;
}

@media screen and (max-width: 1120px) {
  .LowKeyVisual .LowKeyVisualTitle {
    font-size: 3.2rem;
    padding: 100px 15px;
  }
}

@media screen and (max-width: 768px) {
  .LowKeyVisual .LowKeyVisualTitle {
    font-size: 3rem;
    padding: 80px 15px;
  }
}

.LowKeyVisual .LowKeyVisualTitle span {
  color: #fff;
}

/* パンクズリスト */
.breadcrumb-trail {
  background-color: #fff;
}

.breadcrumb-trail p a {
  color: #125E9F;
  cursor: pointer;
}

.breadcrumb-trail .fbc-wrap {
  width: 100%;
  padding: 0 60px;
  background-color: #fff;
}

@media screen and (max-width: 1120px) {
  .breadcrumb-trail .fbc-wrap {
    padding: 0 15px;
  }
}

.fbc-page .fbc-wrap .fbc-items li:first-child {
  padding: 0 !important;
}

.fbc-page .fbc-wrap .fbc-items {
  padding: 0 0 !important;
}

/* FOOTER */
footer {
  background-color: #EBEBEB;
  padding-bottom: 15px;
  padding: 60px 30px 15px 30px;
}

@media screen and (max-width: 1120px) {
  footer {
    padding: 80px 15px 15px;
  }
}

footer .FooterContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1120px) {
  footer .FooterContent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

footer .FooterContent .Logo {
  text-align: left;
  color: #262626;
  -webkit-filter: none;
          filter: none;
}

footer .FooterContent .Menu__content {
  position: unset;
  -webkit-transform: unset;
          transform: unset;
}

@media screen and (max-width: 1120px) {
  footer .FooterContent .Menu__content .Menu__list {
    width: 100%;
    margin: 60px 0 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

footer .FooterContent .Menu__content .Menu__list .Menu__item {
  color: #262626;
  -webkit-filter: unset;
          filter: unset;
}

footer .FooterContent .Menu__content .Menu__list .Menu__item:last-child {
  color: #fff;
}

@media screen and (max-width: 1120px) {
  footer .FooterContent .Menu__content .Menu__list .Menu__item {
    margin-bottom: 60px;
  }
  footer .FooterContent .Menu__content .Menu__list .Menu__item:last-child {
    margin-bottom: unset;
  }
}

footer .FooterContent .Menu__content .Menu__list .Btn {
  width: 100%;
}

footer .snsIcon {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  margin: 20px 0 80px;
}

@media screen and (max-width: 1120px) {
  footer .snsIcon {
    width: 60px;
    height: 60px;
  }
}

footer .snsIcon:hover {
  -webkit-transform: scale(0.99, 0.99) translateY(2px);
          transform: scale(0.99, 0.99) translateY(2px);
  -webkit-filter: drop-shadow(0 0px 2px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 0px 2px rgba(0, 0, 0, 0.1));
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

footer .snsIcon a:hover {
  opacity: 1;
}

footer .snsIcon img {
  padding: 10px;
}

@media screen and (max-width: 1120px) {
  footer .snsIcon img {
    padding: 13px;
  }
}

footer .copyright {
  font-size: 1.2rem;
  text-align: center;
}

/* FORM */
form {
  width: 100%;
  margin: 0 auto !important;
}

form .contact7 dt .must {
  font-size: 1.2rem;
  font-weight: 300;
  margin-left: 20px;
  color: #ed1541;
}

form .contact7 dt {
  font-size: 2rem;
  font-weight: 600;
}

form .contact7 dd {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 40px;
}

form .contact7 dd:last-child {
  padding-bottom: 0;
}

form .contact7 input[type="text"],
form .contact7 input[type="tel"],
form .contact7 input[type="email"],
form .contact7 select,
form .contact7 textarea {
  font-size: 2rem;
  font-weight: normal;
  background-color: #fff;
  border: 2px solid #ddd;
  width: 100%;
  padding: 18px;
}

form .contact7 select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url(../img/Icon/BottomArrow.png);
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 20px;
  cursor: pointer;
}

form .contact7 textarea {
  height: 300px;
}

form .contact7 .contact_p {
  margin-bottom: 80px;
  line-height: 2;
}

form .contact7 .wpcf7-not-valid-tip {
  margin-top: 20px;
}

form .contact7 .form_check {
  width: auto;
  margin-top: -3px;
  padding: 0;
}

form .contact7 .form_check .check_p {
  margin-left: 10px;
  font-size: 1.5rem;
  font-weight: normal;
}

form .contact7 .form_check .wpcf7-list-item {
  margin: 0 0 !important;
}

form .contact7 p {
  line-height: 1.5;
  text-align: center;
  margin-bottom: 40px;
}

form .contact7 p:nth-child(3),
form .contact7 p:nth-child(4) {
  margin-bottom: 0;
}

form .contact7 .Btn {
  max-width: 380px;
  padding: 25px 0;
  font-size: 2.4rem;
  background-color: #F48B54;
  margin: 40px auto 0 auto;
}
/*# sourceMappingURL=style.css.map */