@charset "UTF-8";
html {
  overflow-x: hidden;
  font-size: 10px;
  /*&::-webkit-scrollbar {
    width: 15px;
    background-color: $yellow; 
  }

  &::-webkit-scrollbar-thumb {
    background: $bpink;
    width: 7px;
    border-radius: 7px;
  }*/
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #505050;
  min-height: 100dvh;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
  font-weight: 400;
  line-height: 2;
  position: relative;
}

html, body {
  transition: background 0.5s ease, color 0.5s ease;
}

main, header, footer, section, div {
  transition: all 0.6s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1;
}

p {
  margin: 0 0 0.5em;
}

footer {
  position: sticky;
  top: 100%;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: #505050;
}
a:hover {
  transition: 0.3s;
}

a[href*=tel] {
  pointer-events: none;
}
@media (max-width: 769px) {
  a[href*=tel] {
    pointer-events: auto;
  }
}

img {
  width: 100%;
  vertical-align: middle;
  height: auto;
}

video {
  display: block;
}

.DIN {
  font-family: "din-2014", "Noto Sans JP", sans-serif;
}

/* フェードインアニメーション（6パターン） */
.fade-up, .fade-down, .fade-left, .fade-right, .fade-in, .zoom-in {
  opacity: 0;
  transition: all 1s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-down.in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.fade-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

.fade-in.in-view {
  opacity: 1;
}

.zoom-in.in-view {
  opacity: 1;
  transform: scale(1);
}

.fade-up {
  transform: translateY(30px);
}

.fade-down {
  transform: translateY(-30px);
}

.fade-left {
  transform: translateX(-30px);
}

.fade-right {
  transform: translateX(30px);
}

.zoom-in {
  transform: scale(0.95);
}

.Pc-only {
  display: block;
}

@media (max-width: 769px) {
  .Pc-only {
    display: none;
  }
}
.Sp-only {
  display: none;
}

@media (max-width: 769px) {
  .Sp-only {
    display: block;
  }
}
header {
  background: #fff;
  z-index: 101;
  position: fixed;
  width: 100%;
  height: 90px;
  top: 0;
}
@media (max-width: 769px) {
  header {
    height: auto;
  }
}
header #header-Wrap {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 1rem 0.5rem;
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#LT-h-logo {
  max-width: 250px;
  margin-left: 25px;
}
@media (max-width: 769px) {
  #LT-h-logo {
    max-width: 250px;
    margin-left: 1rem;
  }
}

.LT-h-MenuBox {
  display: flex;
  width: 100%;
  max-width: 895px;
  justify-content: space-between;
  align-items: center;
  margin-right: 25px;
}
@media (max-width: 1400px) {
  .LT-h-MenuBox {
    max-width: 830px;
  }
}
@media (max-width: 1200px) {
  .LT-h-MenuBox {
    flex-direction: column;
  }
}
@media (max-width: 769px) {
  .LT-h-Menu {
    width: 100%;
  }
}
.LT-h-Menu ol {
  list-style: none;
  display: flex;
  max-width: 470px;
  padding: 0;
}
@media (max-width: 769px) {
  .LT-h-Menu ol {
    flex-direction: column;
  }
}
.LT-h-Menu ol li {
  position: relative;
  font-weight: bold;
  margin-left: 1.5rem;
}
@media (max-width: 769px) {
  .LT-h-Menu ol li {
    margin-left: 0rem;
    border-bottom: solid 1px #00ABE5;
    display: block;
    text-align: center;
    padding: 0.25em;
  }
}
.LT-h-Menu ol li::before {
  content: "●";
  position: absolute;
  display: inline-block;
  font-size: 1rem;
  color: #00ABE5;
  padding-right: 0.5rem;
  top: 0.25rem;
}
@media (max-width: 769px) {
  .LT-h-Menu ol li::before {
    position: absolute;
    left: 2em;
    top: 1em;
  }
}
.LT-h-Menu ol li a {
  vertical-align: middle;
  font-size: 1.6rem;
  position: relative;
  line-height: 1;
  display: block;
  padding: 0.25em 0.5em 0.25em 1em;
}
@media (max-width: 769px) {
  .LT-h-Menu ol li a {
    font-size: 1.8rem;
    padding: 0.5em 0.5em 0.5em 1em;
  }
}
.LT-h-Menu ol li a::after {
  content: "";
  position: absolute;
  bottom: -0.25em;
  left: 0;
  width: 0;
  height: 2px;
  background: #00ABE5;
  transition: width 0.4s ease;
}
.LT-h-Menu ol li a:hover::after, .LT-h-Menu ol li a.current::after {
  width: 100%;
}
@media (max-width: 1200px) {
  .LT-h-Menu ol li a:hover::after, .LT-h-Menu ol li a.current::after {
    display: none;
  }
}
.LT-h-Menu ol li a.current {
  font-weight: bold;
  color: #00ABE5;
}
.LT-h-Menu ol li:nth-child(1) {
  margin-left: 0em;
}
.LT-h-TCpair {
  display: flex;
  width: 100%;
  max-width: 350px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1200px) {
  .LT-h-TCpair {
    margin-top: 2rem;
  }
}
@media (max-width: 769px) {
  .LT-h-TCpair {
    flex-direction: column;
  }
}
.LT-h-tel {
  font-size: 1.2rem;
  font-weight: 500;
}
.LT-h-tel span {
  display: block;
  color: #004FE5;
  font-size: 3rem;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 0.75;
}
@media (max-width: 769px) {
  .LT-h-tel {
    margin-bottom: 1em;
    text-align: center;
  }
}
.LT-h-contact {
  display: block;
  width: 100%;
  max-width: 152px;
  height: 40px;
  font-size: 1.6em;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
  background-color: #00ABE5;
  color: #fff;
  border-radius: 6px;
  transition: 0.3s;
}
.LT-h-contact:hover {
  background-color: #004FE5;
  transition: 0.3s;
}

/* ハンバーガー本体 */
.LT-hamburger {
  display: none;
  width: 45px;
  height: 45px;
  position: relative;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  background: none;
  border: none;
  cursor: pointer;
}

.LT-hamburger span {
  display: block;
  width: 28px;
  height: 4px;
  background: #00ABE5;
  margin: 3px auto;
  transition: 0.3s;
}

/* ハンバーガーがアクティブになった時の "×" アニメーション */
.LT-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 6px);
}

.LT-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.LT-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -6px);
}

/* メニューの初期状態 */
@media (max-width: 1200px) {
  .LT-hamburger {
    display: flex;
    position: absolute;
    top: 2rem;
    right: 1rem;
    flex-direction: column;
  }
}
@media (max-width: 1200px) and (max-width: 769px) {
  .LT-hamburger {
    top: 1rem;
  }
}
@media (max-width: 1200px) {
  #LT-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: #E6F8FF;
    padding: 3rem 2rem 4rem;
    /*border-bottom: solid 2px $mainColor;*/
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    z-index: 1000;
    max-width: none;
    box-shadow: 0 10px 10px -6px rgba(150, 150, 150, 0.4);
  }
}
@media (max-width: 1200px) and (max-width: 769px) {
  #LT-nav {
    padding: 7rem 2rem 3rem;
  }
}
@media (max-width: 1200px) {
  #LT-nav.active {
    transform: translateY(0);
  }
}
.LT-body {
  margin: 0 auto;
}
.LT-main {
  margin: 0 auto;
  position: relative;
}

#LT-F-Recruit {
  margin: 120px auto 0px;
}
@media (max-width: 769px) {
  #LT-F-Recruit {
    margin: 25vw auto 0px;
  }
}
#LT-F-Recruit h2 {
  width: 100%;
  max-width: 1100px;
  font-size: 6rem;
  font-weight: 900;
  color: #004FE5;
  margin: 0 auto 0px;
}
@media (max-width: 769px) {
  #LT-F-Recruit h2 {
    font-size: 4rem;
  }
}
#LT-F-Recruit h2 span {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 1.25rem;
  vertical-align: top;
}
@media (max-width: 769px) {
  #LT-F-Recruit h2 span {
    font-size: 1.5rem;
  }
}
#LT-F-Recruit .LT-inner {
  position: relative;
  width: 100%;
  max-width: 1260px;
  margin: auto;
  padding: 1px 80px 95px;
  background-color: #00ABE5;
  border-radius: 30px;
}
@media (max-width: 1400px) {
  #LT-F-Recruit .LT-inner {
    padding: 1px 40px 95px;
  }
}
#LT-F-Recruit .LT-Box-Parent {
  margin: auto;
}
#LT-F-Recruit .LT-Box-Child {
  display: flex;
  overflow: hidden;
  position: relative;
  height: 355px;
}
@media (max-width: 769px) {
  #LT-F-Recruit .LT-Box-Child {
    height: 37vw;
  }
}
#LT-F-Recruit .LT-Box-Child::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background-position: center;
}
#LT-F-Recruit .LT-Box-Child:hover::after {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 0.9;
}
#LT-F-Recruit .LT-Box-Child:nth-child(1)::after {
  background-image: url("../img/footer/LT-F-Recruit-P01.png");
  z-index: -1;
}
#LT-F-Recruit .LT-Box-Child:nth-child(2)::after {
  background-image: url("../img/footer/LT-F-Recruit-P02.png");
  z-index: -1;
}
#LT-F-Recruit .LT-Box-Child-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  width: 100%;
  max-width: 1100px;
}
@media (max-width: 1400px) {
  #LT-F-Recruit .LT-Box-Child-inner {
    flex-wrap: nowrap;
    padding: 0 3vw;
  }
}
#LT-F-Recruit .LT-Box-Child h3 {
  width: 60%;
  margin-right: 5%;
  font-size: 6rem;
  font-weight: 900;
  color: #FFFF00;
  line-height: 1.6;
}
@media (max-width: 769px) {
  #LT-F-Recruit .LT-Box-Child h3 {
    width: 80%;
    margin-right: 0%;
    font-size: 7.5vw;
  }
}
#LT-F-Recruit .LT-Box-Child-Link {
  display: flex;
  width: 35%;
  max-width: 300px;
  height: 60px;
  background-color: #fff;
  color: #004FE5;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  align-content: center;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background-position: center;
}
@media (max-width: 769px) {
  #LT-F-Recruit .LT-Box-Child-Link {
    width: 43%;
    font-size: 3.5vw;
    height: 11vw;
  }
}
#LT-F-Recruit .LT-Box-Child:hover .LT-Box-Child-Link {
  background-color: #FFFF00;
  box-shadow: 3px 10px 15px -6px rgba(0, 0, 0, 0.4);
}

#LT-F-Contact {
  display: flex;
  margin: 50px auto 0px;
  padding: 72px 0 136px;
  background-color: #F0F0F0;
}
@media (max-width: 1400px) {
  #LT-F-Contact {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 769px) {
  #LT-F-Contact {
    margin: 10vw auto 0px;
    padding: 10vw 2rem 10vw;
  }
}
#LT-F-Contact h2 {
  width: 100%;
  max-width: 1100px;
  font-size: 6rem;
  font-weight: 900;
  color: #00ABE5;
  margin: 0 auto 30px;
}
@media (max-width: 769px) {
  #LT-F-Contact h2 {
    font-size: 4rem;
  }
}
#LT-F-Contact h2 span {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 1.25rem;
  vertical-align: top;
}
@media (max-width: 769px) {
  #LT-F-Contact h2 span {
    font-size: 1.5rem;
  }
}
#LT-F-Contact .LT-inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: auto;
}
#LT-F-Contact .LT-F-ContactBox {
  display: flex;
}
@media (max-width: 769px) {
  #LT-F-Contact .LT-F-ContactBox {
    flex-direction: column;
  }
}
#LT-F-Contact .LT-F-ContactBox-left {
  position: relative;
  width: 48%;
  margin-right: 4%;
  background-color: #fff;
  padding: 35px 55px;
  border-radius: 30px;
  text-align: center;
  pointer-events: auto;
}
@media (max-width: 769px) {
  #LT-F-Contact .LT-F-ContactBox-left {
    width: 100%;
    margin-right: 0%;
    padding: 5vw 5vw;
    margin-bottom: 5vw;
  }
}
#LT-F-Contact .LT-F-ContactBox-left:hover {
  box-shadow: 0 10px 10px -6px rgba(0, 0, 0, 0.4);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#LT-F-Contact .LT-F-ContactBox-right {
  width: 48%;
  background-color: #fff;
  padding: 35px 55px;
  border-radius: 30px;
  text-align: center;
}
@media (max-width: 769px) {
  #LT-F-Contact .LT-F-ContactBox-right {
    width: 100%;
    padding: 5vw 5vw;
  }
}
#LT-F-Contact .LT-F-ContactBox-right:hover {
  box-shadow: 0 10px 10px -6px rgba(0, 0, 0, 0.4);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#LT-F-Contact .LT-F-ContactBox-ttl {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5em;
}
@media (max-width: 769px) {
  #LT-F-Contact .LT-F-ContactBox-ttl {
    font-size: 2rem;
  }
}
#LT-F-Contact .LT-F-ContactBox-tel {
  font-size: 6rem;
  font-weight: 600;
  line-height: 1;
  color: #00ABE5;
  position: relative;
}
@media (max-width: 769px) {
  #LT-F-Contact .LT-F-ContactBox-tel {
    font-size: 4rem;
  }
}
#LT-F-Contact .LT-F-ContactBox-tel::before {
  content: "";
  width: 40px;
  height: 40px;
  margin-right: 10px;
  display: inline-block;
  background-size: cover;
  background-image: url("../img/Icon-phone.svg");
}
@media (max-width: 769px) {
  #LT-F-Contact .LT-F-ContactBox-tel::before {
    width: 3rem;
    height: 3rem;
  }
}
#LT-F-Contact .LT-F-ContactBox-contact {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 65px;
  color: #00ABE5;
  position: relative;
}
@media (max-width: 769px) {
  #LT-F-Contact .LT-F-ContactBox-contact {
    font-size: 3rem;
    line-height: 1.3;
  }
}
#LT-F-Contact .LT-F-ContactBox-contact::before {
  content: "";
  width: 40px;
  height: 32px;
  margin-right: 10px;
  display: inline-block;
  background-size: cover;
  background-image: url("../img/Iconl-email.svg");
}
@media (max-width: 769px) {
  #LT-F-Contact .LT-F-ContactBox-contact::before {
    width: 2.8rem;
    height: 2.2rem;
  }
}
#LT-F-Contact .LT-F-ContactBox-data {
  font-size: 2rem;
  font-weight: 400;
  margin-top: 0.25em;
}
@media (max-width: 769px) {
  #LT-F-Contact .LT-F-ContactBox-data {
    font-size: 1.6rem;
  }
}

footer {
  border-bottom: solid 25px #00ABE5;
}
footer .LT-F-inner {
  width: 100%;
  max-width: 1100px;
  padding: 36px 0 0;
  margin: auto;
}
@media (max-width: 1400px) {
  footer .LT-F-inner {
    width: auto;
    padding: 36px 20px 0 20px;
  }
}
footer .LT-F-Menu {
  display: flex;
  background: #fff;
  z-index: 101;
  position: relative;
  width: 100%;
  margin: 0 auto 2rem;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 769px) {
  footer .LT-F-Menu {
    flex-direction: column;
    margin: 0 auto 1rem;
  }
}
footer .LT-F-Menu-logo {
  max-width: 299px;
}
@media (max-width: 769px) {
  footer .LT-F-Menu-logo {
    width: 69vw;
  }
}
footer .LT-F-Menu-Link ul {
  display: flex;
  max-width: 572px;
  padding: 0;
  list-style: none;
}
@media (max-width: 769px) {
  footer .LT-F-Menu-Link ul {
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 1.5rem;
    margin: 4vw auto;
  }
}
footer .LT-F-Menu-Link ul li {
  position: relative;
  font-weight: bold;
  margin-left: 2.5rem;
}
@media (max-width: 769px) {
  footer .LT-F-Menu-Link ul li {
    width: 33%;
    margin-left: 0rem;
  }
}
footer .LT-F-Menu-Link ul li::before {
  content: "●";
  display: inline-block;
  font-size: 10px;
  color: #00ABE5;
  vertical-align: middle;
  padding-right: 5px;
}
footer .LT-F-Menu-Link ul li a {
  vertical-align: middle;
  font-size: 1.6rem;
}
footer .LT-F-Menu-Link ul li:nth-child(1) {
  margin-left: 0em;
}
footer .LT-F-Menu-Copyright {
  margin: 0 0 0 auto;
  padding-bottom: 30px;
  border-bottom: solid 1px #00ABE5;
}
@media (max-width: 769px) {
  footer .LT-F-Menu-Copyright {
    margin: 0 auto;
    padding-bottom: 1.5rem;
  }
}
footer .LT-F-Menu-Copyright ol {
  display: flex;
  max-width: 300px;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  justify-content: flex-end;
}
@media (max-width: 769px) {
  footer .LT-F-Menu-Copyright ol {
    margin: 0 auto;
    padding: 0;
    justify-content: center;
  }
}
footer .LT-F-Menu-Copyright ol li {
  position: relative;
  font-weight: bold;
  margin-left: 2.5rem;
  font-size: 1.2rem;
  color: #00ABE5;
}
footer .LT-F-Menu-Copyright ol li a {
  vertical-align: middle;
  color: #00ABE5;
}
footer .LT-F-Menu-Copyright ol li:nth-child(1) {
  margin-left: 0em;
}
footer .LT-F-Ccompany {
  margin-top: 60px;
}
@media (max-width: 769px) {
  footer .LT-F-Ccompany {
    margin-top: 4rem;
  }
}
footer .LT-F-Ccompany h3 {
  font-size: 3.4rem;
  font-weight: 900;
  text-align: center;
  color: #00ABE5;
  margin-bottom: 1.25em;
}
@media (max-width: 769px) {
  footer .LT-F-Ccompany h3 {
    font-size: 3rem;
  }
}
footer .LT-F-Ccompany-Link {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .LT-F-Ccompany-Link a {
  width: 33%;
}
@media (max-width: 769px) {
  footer .LT-F-Ccompany-Link a {
    width: 45%;
    height: 15vw;
  }
}
footer .LT-F-Ccompany-Link a img {
  width: 100%;
  margin: auto;
  display: block;
}
footer .LT-F-Ccompany-Link a:nth-child(1) img {
  max-width: 313px;
}
footer .LT-F-Ccompany-Link a:nth-child(2) img {
  max-width: 287px;
}
footer .LT-F-Ccompany-Link a:nth-child(3) img {
  max-width: 281px;
}
footer .LT-F-Ccompany-Link a:nth-child(4) img {
  max-width: 195px;
}
footer .LT-F-Ccompany-Link a:nth-child(5) {
  display: flex;
  align-items: center;
  height: 110px;
}
footer .LT-F-Ccompany-Link a:nth-child(5) img {
  max-width: 233px;
}
footer .LT-F-Ccompany-Link a:nth-child(6) {
  display: flex;
  align-items: center;
  height: 110px;
}
footer .LT-F-Ccompany-Link a:nth-child(6) img {
  max-width: 233px;
}

/*@include mq("tab"){
    margin-top: 72px;
}

&::after { 
    content: "";
    display: inline-block;
    background-size: contain;
    background-image: url('../../assets/img/about/GO_about_pic07.webp');
    width: 100%;
    max-width: 146px;
    height: 230px;
    position: absolute;
    top: 30px; right: -81px;
    @include mq("tab"){
        max-width: 73px;
        height: 115px;
        top: 12px; right: -41px;
    }
}
*/
#LT-MV {
  position: relative;
  overflow: hidden;
  width: auto;
  min-height: 587px;
  height: 100%;
}
@media (max-width: 769px) {
  #LT-MV {
    min-height: 293px;
  }
}
#LT-MV .mv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/top/LT-HeaderPic.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: blur(0px);
  transition: filter 0.2s ease;
}

#LT-MV {
  position: relative;
  overflow: hidden;
}
#LT-MV .mv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/top/LT-HeaderPic.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: blur(0px);
  transition: filter 0.2s ease;
}

.LT-main {
  margin-top: 9rem;
}
@media (max-width: 769px) {
  .LT-main {
    margin-top: 7rem;
  }
}
.LT-MV-Txt {
  position: absolute;
  top: 11vw;
  left: 0;
  right: 0;
  color: #fff;
  font-size: 6rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
  margin: auto;
  z-index: 1;
}
@media (max-width: 1400px) {
  .LT-MV-Txt {
    top: 14vw;
  }
}
@media (max-width: 1200px) {
  .LT-MV-Txt {
    top: 16vw;
  }
}
@media (max-width: 769px) {
  .LT-MV-Txt {
    font-size: 3.5rem;
    top: 22vw;
  }
}

#LT-Section01 {
  padding: 100px 0 120px;
}
@media (max-width: 769px) {
  #LT-Section01 {
    padding: 35px 0 45px;
  }
}
#LT-Section01 .LT-Box {
  display: flex;
  width: 100%;
  /*width: calc(100% - 150px);*/
  margin: 0;
  padding-left: 150px;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1400px) {
  #LT-Section01 .LT-Box {
    /*width: calc(100% - 10.714285714285714vw);*/
    padding-left: 10.7142857143vw;
  }
}
@media (max-width: 769px) {
  #LT-Section01 .LT-Box {
    flex-direction: column;
    width: 100%;
    padding-left: 0;
  }
}
#LT-Section01 .LT-Box-Left {
  width: 55%;
  margin-right: 4%;
}
@media (max-width: 1400px) {
  #LT-Section01 .LT-Box-Left {
    max-width: 600px;
  }
}
@media (max-width: 769px) {
  #LT-Section01 .LT-Box-Left {
    width: 100%;
    max-width: inherit;
    margin: 0 auto 2em;
    padding: 0 2rem;
  }
}
#LT-Section01 .LT-Box-Left h2 {
  font-size: 4.28vw;
  font-weight: 900;
  line-height: 1.5;
  color: #00ABE5;
  margin-bottom: 0.5em;
}
@media (max-width: 1400px) {
  #LT-Section01 .LT-Box-Left h2 {
    font-size: 4vw;
  }
}
@media (max-width: 769px) {
  #LT-Section01 .LT-Box-Left h2 {
    font-size: 3rem;
  }
}
#LT-Section01 .LT-Box-Left div {
  font-size: 1.65vw;
  text-align: left;
}
@media (max-width: 769px) {
  #LT-Section01 .LT-Box-Left div {
    font-size: 1.4rem;
  }
}
@media (min-width: 1401px) {
  #LT-Section01 .LT-Box-Left h2 {
    font-size: 3.8vw;
  }
  #LT-Section01 .LT-Box-Left div {
    font-size: 1.65vw;
  }
}
#LT-Section01 .LT-Box-Right {
  width: 45%;
}
@media (max-width: 1400px) {
  #LT-Section01 .LT-Box-Right {
    max-width: 522px;
  }
}
@media (max-width: 769px) {
  #LT-Section01 .LT-Box-Right {
    width: 100%;
    padding-left: 18rem;
    max-width: fit-content;
  }
}
@media (max-width: 480px) {
  #LT-Section01 .LT-Box-Right {
    padding-left: 12rem;
  }
}

#LT-Section02 {
  margin: 0 0 0 30px;
  overflow: hidden;
}
@media (max-width: 769px) {
  #LT-Section02 {
    margin: 0;
  }
}
#LT-Section02 .slider-wrapper {
  overflow: hidden;
  width: 100%;
}
#LT-Section02 .slider-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: slide-left 20s linear infinite;
}
@media (max-width: 769px) {
  #LT-Section02 .slider-track {
    gap: 1.5rem;
  }
}
#LT-Section02 .slick-item {
  flex-shrink: 0;
  width: 37.037037037vw;
}
@media (max-width: 769px) {
  #LT-Section02 .slick-item {
    width: 58.8235294118vw;
  }
}
#LT-Section02 .slick-item img {
  width: 95%;
  display: block;
}
@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

#LT-Section03 {
  width: 100%;
  max-width: 1100px;
  padding: 90px 0px 0px 0px;
  margin: auto;
}
@media (max-width: 1400px) {
  #LT-Section03 {
    width: auto;
    padding: 90px 20px 0 20px;
  }
}
@media (max-width: 769px) {
  #LT-Section03 {
    padding: 60px 2rem 0 2rem;
  }
}
#LT-Section03 h2 {
  font-size: 4rem;
  font-weight: 900;
  color: #00ABE5;
}
@media (max-width: 769px) {
  #LT-Section03 h2 {
    font-size: 3rem;
  }
}
#LT-Section03 h2 span {
  font-size: 2rem;
  margin-left: 1.25rem;
  vertical-align: top;
}
@media (max-width: 769px) {
  #LT-Section03 h2 span {
    font-size: 1.5rem;
  }
}
#LT-Section03 .LT-Button {
  display: block;
  max-width: 300px;
  margin: 0 0 0 auto;
  background-color: #00ABE5;
  color: #fff;
  text-align: center;
  padding: 1.4rem 2.3rem;
  font-size: 1.6rem;
  font-weight: 900;
  border-radius: 6px;
}
#LT-Section03 .LT-Button:hover {
  background-color: #004FE5;
  box-shadow: 0 10px 10px -6px rgba(0, 0, 0, 0.4);
}
@media (max-width: 769px) {
  #LT-Section03 .LT-Button {
    max-width: 200px;
    padding: 1rem 0.5rem;
    margin: 0 auto;
  }
}
#LT-Section03 .LT-News-info {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 28px 0 30px;
  flex-wrap: nowrap;
  justify-content: center;
}
@media (max-width: 769px) {
  #LT-Section03 .LT-News-info {
    flex-wrap: wrap;
    margin: 20px 0 25px;
    justify-content: center;
  }
}
#LT-Section03 .LT-News-wrapper {
  width: 19%;
  margin-right: 25px;
}
#LT-Section03 .LT-News-wrapper:last-child {
  margin-right: 0px;
}
@media (max-width: 769px) {
  #LT-Section03 .LT-News-wrapper {
    width: 47%;
    margin-right: 6%;
  }
  #LT-Section03 .LT-News-wrapper:nth-child(2n) {
    margin-right: 0%;
  }
}
#LT-Section03 .LT-News-classification {
  position: relative;
}
#LT-Section03 .LT-News-pic {
  position: relative;
  width: 100%;
  height: 124px;
  overflow: hidden;
  border-radius: 10px;
}
#LT-Section03 .LT-News-pic img {
  position: absolute;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 769px) {
  #LT-Section03 .LT-News-pic {
    height: 27vw;
  }
}
#LT-Section03 .LT-News-Tag {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: #00ABE5;
  color: #fff;
  font-weight: bold;
  padding: 0.1em 0.5em;
  border-radius: 10px;
}
#LT-Section03 .LT-News-title {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.25;
  margin-top: 0.5em;
}
#LT-Section03 .LT-News-date {
  font-size: 11px;
  color: #969696;
}

#LT-Section04 {
  width: 100%;
  margin: 190px auto 0;
}
@media (max-width: 1400px) {
  #LT-Section04 {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 769px) {
  #LT-Section04 {
    margin: 30vw auto 0;
    padding: 0;
  }
}
#LT-Section04 h2 {
  width: 100%;
  max-width: 1100px;
  font-size: 6rem;
  font-weight: 900;
  color: #00ABE5;
  margin: -58px auto 0px;
}
#LT-Section04 h2 span {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 1.25rem;
  vertical-align: top;
}
@media (max-width: 769px) {
  #LT-Section04 h2 span {
    font-size: 1.5rem;
  }
}
@media (max-width: 769px) {
  #LT-Section04 h2 {
    font-size: 4rem;
    margin: -4rem auto 0px;
  }
}
#LT-Section04 .LT-inner {
  position: relative;
  width: 100%;
  max-width: 1260px;
  margin: auto;
  padding: 1px 80px 95px;
  background-color: #00ABE5;
  border-radius: 30px;
}
@media (max-width: 1400px) {
  #LT-Section04 .LT-inner {
    width: auto;
    padding: 1px 40px 95px;
  }
}
@media (max-width: 769px) {
  #LT-Section04 .LT-inner {
    padding: 1px 2rem 10vw;
  }
}
#LT-Section04 .LT-Box-Parent {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 80px 0 35px;
  margin: auto;
}
@media (max-width: 769px) {
  #LT-Section04 .LT-Box-Parent {
    padding: 9vw 0 3vw;
    flex-direction: column;
  }
}
#LT-Section04 .LT-Box-Child {
  position: relative;
  width: 48%;
  margin-right: 4%;
  margin-bottom: 6%;
  padding-top: 30px;
}
#LT-Section04 .LT-Box-Child:nth-child(2n) {
  margin-right: 0%;
}
@media (max-width: 769px) {
  #LT-Section04 .LT-Box-Child {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 7vw;
  }
}
#LT-Section04 .LT-Box-Child h3 {
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  position: absolute;
  z-index: 1;
  top: 0px;
}
@media (max-width: 769px) {
  #LT-Section04 .LT-Box-Child h3 {
    font-size: 3rem;
    top: 8px;
  }
}
#LT-Section04 .LT-Box-Child-pic {
  position: relative;
  width: 100%;
  max-width: 521px;
  min-height: 278px;
}
#LT-Section04 .LT-Box-Child-pic img {
  position: absolute;
  object-fit: cover;
  border-radius: 20px;
}
#LT-Section04 .LT-Box-Child-Txt {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
  margin-top: 1em;
}
#LT-Section04 .LT-Box-Link {
  display: block;
  width: 100%;
  max-width: 222px;
  padding: 18px;
  margin: auto;
  background-color: #fff;
  color: #00ABE5;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  border-radius: 6px;
}
@media (max-width: 769px) {
  #LT-Section04 .LT-Box-Link {
    padding: 1rem 0.5rem;
  }
}
#LT-Section04 .LT-Box-Link:hover {
  color: #004FE5;
  box-shadow: 3px 10px 15px -6px rgba(0, 0, 0, 0.4);
}

#LT-MVcompany {
  margin: 0 0 0 30px;
  overflow: hidden;
}
@media (max-width: 769px) {
  #LT-MVcompany {
    margin: 7.5rem 0 0;
  }
}
#LT-MVcompany .slider-wrapper {
  overflow: hidden;
  width: 100%;
}
#LT-MVcompany .slider-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: slide-left 20s linear infinite;
}
@media (max-width: 769px) {
  #LT-MVcompany .slider-track {
    gap: 1.5rem;
  }
}
#LT-MVcompany .slick-item {
  flex-shrink: 0;
  width: 37.037037037vw;
}
@media (max-width: 769px) {
  #LT-MVcompany .slick-item {
    width: 58.8235294118vw;
  }
}
#LT-MVcompany .slick-item img {
  width: 95%;
  display: block;
}
@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

#LT-Section-company01 {
  padding: 150px 0 230px;
}
@media (max-width: 769px) {
  #LT-Section-company01 {
    padding: 10vw 0 35vw;
  }
}
#LT-Section-company01 .LT-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1400px) {
  #LT-Section-company01 .LT-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#LT-Section-company01 .LT-Box {
  display: flex;
  width: 100%;
  margin: 0;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 769px) {
  #LT-Section-company01 .LT-Box {
    flex-direction: column;
  }
}
#LT-Section-company01 .LT-Box-Left {
  width: 25%;
  margin-right: 10%;
  max-width: 300px;
}
@media (max-width: 769px) {
  #LT-Section-company01 .LT-Box-Left {
    width: 100%;
    max-width: inherit;
    margin-right: 0;
    margin-bottom: 4vw;
  }
}
@media (max-width: 769px) {
  #LT-Section-company01 .LT-Box-Left img {
    width: 65%;
    margin: auto;
    display: block;
  }
}
#LT-Section-company01 .LT-Box-Right {
  width: 65%;
}
@media (max-width: 769px) {
  #LT-Section-company01 .LT-Box-Right {
    width: 100%;
  }
}
#LT-Section-company01 .LT-Box-Right h2 {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.6;
  color: #00ABE5;
  margin-bottom: 0.75em;
}
@media (max-width: 769px) {
  #LT-Section-company01 .LT-Box-Right h2 {
    font-size: 7vw;
  }
}
#LT-Section-company01 .LT-Box-Daihyo-Title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #00ABE5;
  vertical-align: middle;
  margin-bottom: 0.5em;
}
@media (max-width: 769px) {
  #LT-Section-company01 .LT-Box-Daihyo-Title {
    text-align: center;
  }
}
#LT-Section-company01 .LT-Box-Daihyo-Title span {
  font-size: 3rem;
  font-weight: 900;
  margin-left: 0.25em;
  vertical-align: baseline;
}
#LT-Section-company01 .LT-Box-Daihyo-List {
  font-size: 1.6rem;
  line-height: 1.6;
}
#LT-Section-company01 .LT-Box-Text {
  font-size: 2rem;
  font-weight: 500;
  text-align: left;
  color: #00ABE5;
  position: relative;
}
@media (max-width: 769px) {
  #LT-Section-company01 .LT-Box-Text {
    font-size: 4.5vw;
  }
}
#LT-Section-company01 .LT-Box-Text::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 496px;
  height: 612px;
  background-image: url("../img/company/lifetap-back.svg");
  z-index: -1;
  right: -13%;
}
@media (max-width: 1200px) {
  #LT-Section-company01 .LT-Box-Text::before {
    width: 55vw;
    height: 68vw;
    right: 1vw;
    bottom: -9vw;
    background-size: cover;
  }
}

#LT-Section {
  margin: 0 0 0 30px;
}
#LT-Section-company02 .LT-inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding: 1px 0px 70px;
  background-color: #00ABE5;
  border-radius: 30px;
}
@media (max-width: 1400px) {
  #LT-Section-company02 .LT-inner {
    width: auto;
    padding: 1px 0px 70px;
  }
}
@media (max-width: 769px) {
  #LT-Section-company02 .LT-inner {
    padding: 1px 0px 8vw;
  }
}
#LT-Section-company02 .LT-inner h2 {
  width: 100%;
  max-width: 1100px;
  font-size: 6rem;
  font-weight: 900;
  color: #00ABE5;
  margin: -60px auto 0px;
}
@media (max-width: 1400px) {
  #LT-Section-company02 .LT-inner h2 {
    padding: 0 2rem;
  }
}
@media (max-width: 769px) {
  #LT-Section-company02 .LT-inner h2 {
    font-size: 4rem;
    margin: -4rem auto 0px;
  }
}
#LT-Section-company02 .LT-inner h2 span {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 1.25rem;
  vertical-align: top;
}
@media (max-width: 769px) {
  #LT-Section-company02 .LT-inner h2 span {
    font-size: 1.5rem;
  }
}
#LT-Section-company02 .LT-company-listWrap {
  padding: 70px 9.1% 0px;
}
@media (max-width: 769px) {
  #LT-Section-company02 .LT-company-listWrap {
    padding: 9vw 2rem 3vw;
  }
}
#LT-Section-company02 .LT-company-list {
  padding-bottom: 25px;
}
#LT-Section-company02 .LT-company-list dl {
  margin: 0;
}
#LT-Section-company02 .LT-company-list-flex {
  display: flex;
}
#LT-Section-company02 .LT-company-list-flex dd, #LT-Section-company02 .LT-company-list-flex dt {
  padding: 1.3rem 0;
  margin: 0;
}
#LT-Section-company02 .LT-company-list-flex dt {
  width: 30%;
  max-width: 300px;
  font-size: 2rem;
  font-weight: bold;
  color: #004FE5;
  padding-left: 1em;
  border-top: solid 2px #004FE5;
}
@media (max-width: 769px) {
  #LT-Section-company02 .LT-company-list-flex dt {
    font-size: 1.5rem;
  }
}
#LT-Section-company02 .LT-company-list-flex dd {
  width: 70%;
  max-width: 700px;
  font-size: 2rem;
  color: #fff;
  padding-left: 1em;
  border-top: solid 2px #71DBFF;
}
@media (max-width: 769px) {
  #LT-Section-company02 .LT-company-list-flex dd {
    font-size: 1.5rem;
  }
}
#LT-Section-company02 .LT-company-list-flex dd ul {
  list-style: decimal;
  padding-left: 1em;
}
#LT-Section-company02 .LT-company-list-flex:last-child dt {
  border-bottom: solid 2px #004FE5;
}
#LT-Section-company02 .LT-company-list-flex:last-child dd {
  border-bottom: solid 2px #71DBFF;
}
#LT-Section-company02 .LT-company-Map {
  width: 100%;
  height: 300px;
}
#LT-Section-company02 .LT-company-Map iframe {
  border-radius: 10px;
}

#LT-MVbusiness {
  margin: 0px;
}
#LT-MVbusiness .LT-Box {
  display: flex;
  width: 100%;
  height: auto;
  min-height: 640px;
  margin: 0;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  background-color: #00ABE5;
}
@media (max-width: 1400px) {
  #LT-MVbusiness .LT-Box {
    min-height: 400px;
  }
}
@media (max-width: 769px) {
  #LT-MVbusiness .LT-Box {
    flex-direction: column-reverse;
  }
}
#LT-MVbusiness .LT-Box-Left {
  width: 45%;
  max-width: 480px;
  margin-right: 5%;
}
@media (max-width: 1400px) {
  #LT-MVbusiness .LT-Box-Left {
    width: 45%;
    padding-left: 6vw;
  }
}
@media (max-width: 769px) {
  #LT-MVbusiness .LT-Box-Left {
    width: 100%;
    padding: 4em 2em;
    margin-right: 0%;
  }
}
#LT-MVbusiness .LT-Box-Left h2 {
  font-size: 6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5em;
}
#LT-MVbusiness .LT-Box-Left h2 span {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 1.25rem;
  vertical-align: top;
}
#LT-MVbusiness .LT-Box-Left div {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
  color: #fff;
}
#LT-MVbusiness .LT-Box-Left-Text {
  font-size: 2rem;
  text-align: left;
}
#LT-MVbusiness .LT-Box-Left-List {
  font-size: 2rem;
  text-align: left;
}
@media (min-width: 1401px) {
  #LT-MVbusiness .LT-Box-Left h2 {
    font-size: 3.8vw;
  }
  #LT-MVbusiness .LT-Box-Left div {
    font-size: 1.0416666667vw;
  }
}
@media (max-width: 1400px) {
  #LT-MVbusiness .LT-Box-Left h2 {
    font-size: 3.285714vw;
  }
  #LT-MVbusiness .LT-Box-Left h2 span {
    font-size: 1vw;
  }
  #LT-MVbusiness .LT-Box-Left div {
    font-size: 1.3vw;
  }
}
@media (max-width: 769px) {
  #LT-MVbusiness .LT-Box-Left h2 {
    font-size: 3rem;
    text-align: center;
  }
  #LT-MVbusiness .LT-Box-Left h2 span {
    font-size: 1.6rem;
  }
  #LT-MVbusiness .LT-Box-Left div {
    font-size: 3.5vw;
  }
}
#LT-MVbusiness .LT-Box-Right {
  width: 50%;
  overflow: hidden;
}
@media (max-width: 1400px) {
  #LT-MVbusiness .LT-Box-Right {
    width: 50%;
  }
}
@media (max-width: 769px) {
  #LT-MVbusiness .LT-Box-Right {
    width: 100%;
    height: 200px;
  }
}
#LT-MVbusiness .LT-Box-Right img {
  height: 100%;
  min-height: 640px;
}
@media (max-width: 1400px) {
  #LT-MVbusiness .LT-Box-Right img {
    min-height: 400px;
  }
}
@media (max-width: 769px) {
  #LT-MVbusiness .LT-Box-Right img {
    min-height: 200px;
    object-fit: cover;
  }
}

#LT-Section-business01 {
  padding: 100px 0 0px;
}
@media (max-width: 769px) {
  #LT-Section-business01 {
    padding: 45px 0rem 0px;
  }
}
#LT-Section-business01 .LT-Box {
  display: flex;
  width: 100%;
  width: calc(100% - 150px);
  margin: 0 auto 100px;
  padding-left: 150px;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1400px) {
  #LT-Section-business01 .LT-Box {
    width: calc(100% - 10.7142857143vw);
    padding-left: 10.7142857143vw;
  }
}
@media (max-width: 769px) {
  #LT-Section-business01 .LT-Box {
    width: 100%;
    padding-left: 0;
    flex-direction: column;
    margin: 0 auto 6rem;
  }
}
#LT-Section-business01 .LT-Box-Left {
  width: 45%;
  margin-right: 5%;
}
@media (max-width: 1400px) {
  #LT-Section-business01 .LT-Box-Left {
    width: 50%;
    max-width: 550px;
  }
}
@media (max-width: 769px) {
  #LT-Section-business01 .LT-Box-Left {
    width: 100%;
    max-width: none;
    padding: 0 2rem 2rem;
  }
}
#LT-Section-business01 .LT-Box-Left h2 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: #00ABE5;
  margin-bottom: 0.4em;
}
@media (min-width: 1401px) {
  #LT-Section-business01 .LT-Box-Left h2 {
    font-size: 3.5vw;
  }
}
@media (max-width: 1400px) {
  #LT-Section-business01 .LT-Box-Left h2 {
    font-size: 3.6vw;
  }
}
@media (max-width: 1200px) {
  #LT-Section-business01 .LT-Box-Left h2 {
    font-size: 3.6vw;
  }
}
@media (max-width: 769px) {
  #LT-Section-business01 .LT-Box-Left h2 {
    font-size: 7vw;
  }
}
#LT-Section-business01 .LT-Box-Left-Text {
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  border-bottom: solid #D2D2D2 1px;
}
@media (min-width: 1401px) {
  #LT-Section-business01 .LT-Box-Left-Text {
    font-size: 1.0416666667vw;
  }
}
@media (max-width: 1400px) {
  #LT-Section-business01 .LT-Box-Left-Text {
    font-size: 1.4285714286vw;
  }
}
@media (max-width: 769px) {
  #LT-Section-business01 .LT-Box-Left-Text {
    font-size: 3.5vw;
  }
}
#LT-Section-business01 .LT-Box-Left-List {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: left;
  padding: 20px;
  background-color: #F0F0F0;
  border-radius: 10px;
}
@media (max-width: 769px) {
  #LT-Section-business01 .LT-Box-Left-List {
    padding: 1.5rem;
  }
}
#LT-Section-business01 .LT-Box-Left-List ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#LT-Section-business01 .LT-Box-Left-List ul li {
  position: relative;
  font-size: 1.6rem;
  vertical-align: middle;
  line-height: 1.6;
}
@media (min-width: 1401px) {
  #LT-Section-business01 .LT-Box-Left-List ul li {
    font-size: 0.8333333333vw;
  }
}
@media (max-width: 1400px) {
  #LT-Section-business01 .LT-Box-Left-List ul li {
    font-size: 1.1428571429vw;
  }
}
@media (max-width: 769px) {
  #LT-Section-business01 .LT-Box-Left-List ul li {
    font-size: 3.8vw;
    padding-left: 1.25em;
  }
}
#LT-Section-business01 .LT-Box-Left-List ul li::before {
  content: "●";
  display: inline-block;
  font-size: 2rem;
  color: #000000;
  vertical-align: middle;
  line-height: 1.6;
  margin-right: 0.25em;
}
@media (max-width: 769px) {
  #LT-Section-business01 .LT-Box-Left-List ul li::before {
    position: absolute;
    font-size: 1.6rem;
    left: -0.1em;
    top: -0.05em;
  }
}
#LT-Section-business01 .LT-Box-Right {
  width: 50%;
}
@media (max-width: 1400px) {
  #LT-Section-business01 .LT-Box-Right {
    max-width: 616px;
  }
}
@media (max-width: 769px) {
  #LT-Section-business01 .LT-Box-Right {
    width: 100%;
    max-width: none;
    padding-left: 22vw;
  }
}

#LT-MVrecruit {
  margin: 0px;
}
#LT-MVrecruit .LT-Box {
  display: flex;
  width: 100%;
  height: auto;
  min-height: 640px;
  margin: 0;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  background-color: #004FE5;
  overflow: hidden;
}
@media (max-width: 1400px) {
  #LT-MVrecruit .LT-Box {
    min-height: 400px;
  }
}
@media (max-width: 769px) {
  #LT-MVrecruit .LT-Box {
    flex-direction: column-reverse;
  }
}
#LT-MVrecruit .LT-Box-Left {
  width: 45%;
  max-width: 480px;
  margin-right: 5%;
  position: relative;
}
#LT-MVrecruit .LT-Box-Left::before {
  content: "";
  position: absolute;
  z-index: 1;
  display: inline-block;
  background-size: cover;
  background-image: url("../img/recruit/backlogo.svg");
  width: 427px;
  height: 527px;
  left: -7%;
  top: -42%;
  user-select: none;
  pointer-events: none;
}
@media (max-width: 1400px) {
  #LT-MVrecruit .LT-Box-Left::before {
    top: -31%;
    left: 19%;
    width: 31vw;
    height: 38.3vw;
  }
}
@media (max-width: 769px) {
  #LT-MVrecruit .LT-Box-Left::before {
    top: 8%;
    left: 47%;
    width: 47vw;
    height: 57vw;
  }
}
@media (max-width: 1400px) {
  #LT-MVrecruit .LT-Box-Left {
    width: 45%;
    padding-left: 10.7142857143vw;
  }
}
@media (max-width: 769px) {
  #LT-MVrecruit .LT-Box-Left {
    width: 100%;
    padding: 4em 2em;
    margin-right: 0%;
  }
}
#LT-MVrecruit .LT-Box-Left h2 {
  font-size: 6rem;
  font-weight: 900;
  color: #FFFF00;
  margin-bottom: 0.75em;
  z-index: 2;
  position: relative;
}
#LT-MVrecruit .LT-Box-Left div {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
  color: #fff;
  z-index: 2;
  position: relative;
}
#LT-MVrecruit .LT-Box-Left div span {
  font-weight: 900;
}
#LT-MVrecruit .LT-Box-Left-Text {
  font-size: 2rem;
  text-align: left;
}
#LT-MVrecruit .LT-Box-Left-List {
  font-size: 2rem;
  text-align: left;
}
@media (min-width: 1401px) {
  #LT-MVrecruit .LT-Box-Left h2 {
    font-size: 3.8vw;
  }
  #LT-MVrecruit .LT-Box-Left div {
    font-size: 1.0416666667vw;
  }
}
@media (max-width: 1400px) {
  #LT-MVrecruit .LT-Box-Left h2 {
    font-size: 4.2857142857vw;
  }
  #LT-MVrecruit .LT-Box-Left h2 span {
    font-size: 1.4285714286vw;
  }
  #LT-MVrecruit .LT-Box-Left div {
    font-size: 1.4285714286vw;
  }
}
@media (max-width: 769px) {
  #LT-MVrecruit .LT-Box-Left h2 {
    font-size: 3rem;
    text-align: center;
  }
  #LT-MVrecruit .LT-Box-Left h2 span {
    font-size: 1.6rem;
  }
  #LT-MVrecruit .LT-Box-Left div {
    font-size: 1.6rem;
  }
}
#LT-MVrecruit .LT-Box-Right {
  width: 50%;
  overflow: hidden;
}
@media (max-width: 1400px) {
  #LT-MVrecruit .LT-Box-Right {
    width: 50%;
    z-index: 2;
    position: relative;
  }
}
@media (max-width: 769px) {
  #LT-MVrecruit .LT-Box-Right {
    width: 100%;
    height: 200px;
  }
}
#LT-MVrecruit .LT-Box-Right img {
  height: 100%;
  min-height: 640px;
}
@media (max-width: 1400px) {
  #LT-MVrecruit .LT-Box-Right img {
    min-height: 400px;
  }
}
@media (max-width: 769px) {
  #LT-MVrecruit .LT-Box-Right img {
    min-height: 200px;
    object-fit: cover;
  }
}

#LT-Section-recruit01 {
  padding: 30px 0 0px;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 {
    padding: 1rem 0 0px;
  }
}
#LT-Section-recruit01 .LT-content-area {
  width: 100%;
  margin: 0 auto;
}
#LT-Section-recruit01 .LT-tab-container ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 .LT-tab-container ul {
    flex-wrap: nowrap;
    padding: 0 2em;
  }
}
#LT-Section-recruit01 .LT-tab-container ul li {
  font-weight: 600;
  font-size: 3rem;
  text-align: center;
  line-height: 1;
  width: 50%;
  max-width: 300px;
  margin-right: 30px;
  cursor: pointer;
  position: relative;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 .LT-tab-container ul li {
    font-size: 2rem;
    margin-right: 1.5rem;
  }
  #LT-Section-recruit01 .LT-tab-container ul li:nth-child(2) {
    margin-right: 0;
  }
}
#LT-Section-recruit01 .LT-tab-container {
  margin: 0;
}
#LT-Section-recruit01 .LT-tab {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 6px;
}
#LT-Section-recruit01 .LT-tab.blue {
  background-color: #fff;
  color: #004FE5;
  border: solid 3px #004FE5;
}
#LT-Section-recruit01 .LT-tab.blue.active {
  background-color: #004FE5;
  color: #fff;
}
#LT-Section-recruit01 .LT-tab.blue.active::after {
  content: "";
  position: absolute;
  bottom: -29px;
  left: 0;
  right: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border: 15px solid transparent;
  border-top: 15px solid #004FE5;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 .LT-tab.blue.active::after {
    bottom: -15px;
    border: 8px solid transparent;
    border-top: 8px solid #004FE5;
  }
}
#LT-Section-recruit01 .LT-tab.maincolor {
  margin-right: 0;
  background-color: #fff;
  color: #00ABE5;
  border: solid 3px #00ABE5;
}
#LT-Section-recruit01 .LT-tab.maincolor.active {
  background-color: #00ABE5;
  color: #fff;
}
#LT-Section-recruit01 .LT-tab.maincolor.active::after {
  content: "";
  position: absolute;
  bottom: -29px;
  left: 0;
  right: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border: 15px solid transparent;
  border-top: 15px solid #00ABE5;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 .LT-tab.maincolor.active::after {
    bottom: -15px;
    border: 8px solid transparent;
    border-top: 8px solid #00ABE5;
  }
}
#LT-Section-recruit01 .LT-content-inner {
  max-width: 1100px;
  margin: auto;
  padding: 80px 40px 136px;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 .LT-content-inner {
    padding: 4rem 2rem 6.5rem;
  }
}
#LT-Section-recruit01 .LT-content-Midashi {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 0.7em;
  color: #fff;
  border-bottom: solid 3px #fff;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 .LT-content-Midashi {
    font-size: 2rem;
  }
}
#LT-Section-recruit01 .LT-content-Wrap {
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 .LT-content-Wrap {
    margin-bottom: 4.5rem;
  }
}
#LT-Section-recruit01 .LT-content-Wrap2 {
  display: flex;
  margin-bottom: 80px;
  text-align: left;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 .LT-content-Wrap2 {
    margin-bottom: 4.5rem;
    flex-direction: column;
  }
}
#LT-Section-recruit01 .LT-content-Wrap2 div:nth-child(1) {
  width: 45%;
  margin-right: 5%;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 .LT-content-Wrap2 div:nth-child(1) {
    width: 100%;
    margin-right: 0;
  }
}
#LT-Section-recruit01 .LT-content-Wrap2 div:nth-child(2) {
  width: 50%;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 .LT-content-Wrap2 div:nth-child(2) {
    width: 100%;
    margin-top: 2rem;
  }
}
#LT-Section-recruit01 .LT-content-Text {
  font-size: 6rem;
  font-weight: 900;
  line-height: 1.5;
  color: #fff;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 .LT-content-Text {
    font-size: 5.5vw;
  }
}
#LT-Section-recruit01 .LT-content-Text span {
  color: #FFFF00;
}
#LT-Section-recruit01 .LT-content-Stext {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
  margin-top: 1.5em;
  color: #00ABE5;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 .LT-content-Stext {
    font-size: 3.5vw;
    margin-top: 1em;
  }
}
#LT-Section-recruit01 .LT-content-Stext span {
  color: #FFFF00;
}
#LT-Section-recruit01 .LT-content-Stext2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 2;
  color: #fff;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 .LT-content-Stext2 {
    font-size: 1.6rem;
  }
}
#LT-Section-recruit01 .LT-content-Stext2 span {
  color: #FFFF00;
}
#LT-Section-recruit01 .LT-content-Stext3 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.5;
  color: #FFFF00;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 .LT-content-Stext3 {
    font-size: 4.6vw;
  }
}
#LT-Section-recruit01 .LT-content-container#Recruit01 {
  padding: 110px 0 0;
  margin-top: -80px;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 .LT-content-container#Recruit01 {
    padding: 60px 0 0;
    margin-top: -50px;
  }
}
#LT-Section-recruit01 .LT-content-container#Recruit02 {
  padding: 110px 0 0;
  margin-top: -110px;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 .LT-content-container#Recruit02 {
    padding: 60px 0 0;
    margin-top: -60px;
  }
}
#LT-Section-recruit01 .LT-content1 {
  display: none; /*必須*/
  background-color: #004FE5;
  border-radius: 40px 40px 0 0;
}
#LT-Section-recruit01 .LT-content2 {
  display: none; /*必須*/
  background-color: #00ABE5;
  border-radius: 40px 40px 0 0;
}
#LT-Section-recruit01 .LT-content2 .LT-content-Wrap {
  margin-bottom: 0px;
}
#LT-Section-recruit01 .LT-content1.show {
  display: block; /*必須*/
}
#LT-Section-recruit01 .LT-content2.show {
  display: block; /*必須*/
}
#LT-Section-recruit01 .LT-inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding: 1px 0px 70px;
  background-color: #fff;
  border-radius: 30px;
}
@media (max-width: 1400px) {
  #LT-Section-recruit01 .LT-inner {
    width: auto;
    padding: 1px 0px 70px;
  }
}
#LT-Section-recruit01 .LT-inner h2 {
  width: 100%;
  max-width: 1100px;
  font-size: 6rem;
  font-weight: 900;
  color: #fff;
  margin: -60px auto 0px;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 .LT-inner h2 {
    font-size: 4rem;
    margin: -40px auto 0px;
  }
}
#LT-Section-recruit01 .LT-inner h2 span {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 1.25rem;
  vertical-align: top;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 .LT-inner h2 span {
    font-size: 1.5rem;
  }
}
#LT-Section-recruit01 .LT-recruit-Wrap {
  margin-top: 170px;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 .LT-recruit-Wrap {
    margin-top: 110px;
  }
}
#LT-Section-recruit01 .LT-recruit-listWrap {
  padding: 55px 9.1% 0px;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 .LT-recruit-listWrap {
    padding: 2rem 2rem 0px;
  }
}
#LT-Section-recruit01 .LT-recruit-Midashi {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 0.25em;
  color: #004FE5;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 .LT-recruit-Midashi {
    font-size: 3rem;
  }
}
#LT-Section-recruit01 .LT-recruit-Text {
  font-size: 2rem;
  font-weight: 600;
  color: #004FE5;
  margin-bottom: 1em;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 .LT-recruit-Text {
    font-size: 1.5rem;
  }
}
#LT-Section-recruit01 .LT-recruit-list dl {
  margin: 0;
}
#LT-Section-recruit01 .LT-recruit-list-flex {
  display: flex;
}
#LT-Section-recruit01 .LT-recruit-list-flex dd, #LT-Section-recruit01 .LT-recruit-list-flex dt {
  padding: 13px 0;
  margin: 0;
}
#LT-Section-recruit01 .LT-recruit-list-flex dt {
  width: 30%;
  max-width: 300px;
  font-size: 2rem;
  font-weight: bold;
  color: #004FE5;
  padding-left: 1em;
  border-top: solid 2px #004FE5;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 .LT-recruit-list-flex dt {
    font-size: 1.5rem;
  }
}
#LT-Section-recruit01 .LT-recruit-list-flex dd {
  width: 70%;
  max-width: 700px;
  font-size: 2rem;
  font-weight: 400;
  padding-left: 1em;
  border-top: solid 2px #71DBFF;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 .LT-recruit-list-flex dd {
    font-size: 3.5vw;
  }
}
#LT-Section-recruit01 .LT-recruit-list-flex dd ul {
  list-style: none;
  padding: 0;
}
#LT-Section-recruit01 .LT-recruit-list-flex dd ul li {
  font-size: 2rem;
  font-weight: 400;
  position: relative;
  line-height: 1.6;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 .LT-recruit-list-flex dd ul li {
    font-size: 3.5vw;
  }
}
#LT-Section-recruit01 .LT-recruit-list-flex dd ul li::before {
  content: "●";
  display: inline-block;
  font-size: 2rem;
  color: #000000;
  vertical-align: baseline;
  padding-right: 5px;
}
@media (max-width: 769px) {
  #LT-Section-recruit01 .LT-recruit-list-flex dd ul li::before {
    font-size: 3.5vw;
  }
}
#LT-Section-recruit01 .LT-recruit-list-flex:last-child dt {
  border-bottom: solid 2px #004FE5;
}
#LT-Section-recruit01 .LT-recruit-list-flex:last-child dd {
  border-bottom: solid 2px #71DBFF;
}

#LT-recruit-Contact {
  display: flex;
  margin: 50px auto 0px;
  padding: 72px 0 0px;
}
@media (max-width: 769px) {
  #LT-recruit-Contact {
    padding: 4rem 0 0px;
    margin: 3rem auto 0px;
  }
}
#LT-recruit-Contact-Title {
  width: 100%;
  max-width: 1100px;
  font-size: 6rem;
  font-weight: 900;
  color: #FFFF00;
  margin: 0 auto 30px;
}
@media (max-width: 769px) {
  #LT-recruit-Contact-Title {
    font-size: 4rem;
  }
}
#LT-recruit-Contact-Title span {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 1.25rem;
  vertical-align: top;
}
@media (max-width: 769px) {
  #LT-recruit-Contact-Title span {
    font-size: 1.6rem;
  }
}
#LT-recruit-Contact-Title.white {
  color: #fff;
}
#LT-recruit-Contact .LT-inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding: 0;
  background-color: transparent;
}
#LT-recruit-Contact .LT-recruit-ContactBox {
  display: flex;
}
@media (max-width: 769px) {
  #LT-recruit-Contact .LT-recruit-ContactBox {
    flex-direction: column;
  }
}
#LT-recruit-Contact .LT-recruit-ContactBox-left {
  position: relative;
  width: 48%;
  margin-right: 4%;
  background-color: #fff;
  padding: 35px;
  border-radius: 30px;
  text-align: center;
}
@media (max-width: 769px) {
  #LT-recruit-Contact .LT-recruit-ContactBox-left {
    width: 100%;
    margin-right: 0%;
    padding: 5vw 5vw;
    margin-bottom: 4vw;
  }
}
#LT-recruit-Contact .LT-recruit-ContactBox-left:hover {
  box-shadow: 0 10px 10px -6px rgba(0, 0, 0, 0.4);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#LT-recruit-Contact .LT-recruit-ContactBox-right {
  width: 48%;
  background-color: #fff;
  padding: 35px;
  border-radius: 30px;
  text-align: center;
}
@media (max-width: 769px) {
  #LT-recruit-Contact .LT-recruit-ContactBox-right {
    width: 100%;
    padding: 5vw 5vw;
  }
}
#LT-recruit-Contact .LT-recruit-ContactBox-right:hover {
  box-shadow: 0 10px 10px -6px rgba(0, 0, 0, 0.4);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#LT-recruit-Contact .LT-recruit-ContactBox-ttl {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5em;
}
@media (max-width: 769px) {
  #LT-recruit-Contact .LT-recruit-ContactBox-ttl {
    font-size: 2rem;
  }
}
#LT-recruit-Contact .LT-recruit-ContactBox-tel {
  font-size: 6rem;
  font-weight: 600;
  line-height: 1;
  color: #00ABE5;
  position: relative;
}
@media (max-width: 769px) {
  #LT-recruit-Contact .LT-recruit-ContactBox-tel {
    font-size: 4rem;
  }
}
#LT-recruit-Contact .LT-recruit-ContactBox-tel::before {
  content: "";
  width: 40px;
  height: 40px;
  margin-right: 10px;
  display: inline-block;
  background-image: url("../img/Icon-phone.svg");
  background-size: contain;
}
@media (max-width: 769px) {
  #LT-recruit-Contact .LT-recruit-ContactBox-tel::before {
    width: 3rem;
    height: 3rem;
  }
}
#LT-recruit-Contact .LT-recruit-ContactBox-contact {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 65px;
  color: #00ABE5;
  position: relative;
}
@media (max-width: 769px) {
  #LT-recruit-Contact .LT-recruit-ContactBox-contact {
    font-size: 3rem;
    line-height: 1.3;
  }
}
#LT-recruit-Contact .LT-recruit-ContactBox-contact::before {
  content: "";
  width: 40px;
  height: 32px;
  margin-right: 10px;
  display: inline-block;
  background-image: url("../img/Iconl-email.svg");
  background-size: contain;
}
@media (max-width: 769px) {
  #LT-recruit-Contact .LT-recruit-ContactBox-contact::before {
    width: 2.8rem;
    height: 2.2rem;
  }
}
#LT-recruit-Contact .LT-recruit-ContactBox-data {
  font-size: 2rem;
  font-weight: 400;
  margin-top: 0.25em;
}
@media (max-width: 769px) {
  #LT-recruit-Contact .LT-recruit-ContactBox-data {
    font-size: 1.6rem;
  }
}

#LT-qa {
  margin: 0 0 150px;
  text-align: justify;
}
@media (max-width: 769px) {
  #LT-qa {
    margin: 0 0 7rem;
  }
}
#LT-qa h2 {
  font-size: 6rem;
  font-weight: 900;
  color: #00ABE5;
  padding-bottom: 0.5em;
  margin-bottom: 0.75em;
  border-bottom: solid 1px #D2D2D2;
}
@media (max-width: 1200px) {
  #LT-qa h2 {
    font-size: 4rem;
    line-height: 1.2;
  }
}
@media (max-width: 769px) {
  #LT-qa h2 {
    font-size: 3rem;
    line-height: 1.2;
  }
}
#LT-qa h2 span {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 1.25rem;
  vertical-align: top;
}
@media (max-width: 769px) {
  #LT-qa h2 span {
    font-size: 1.5rem;
    vertical-align: middle;
  }
}
#LT-qa .LT-inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding-top: 35px;
}
@media (max-width: 1400px) {
  #LT-qa .LT-inner {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 769px) {
  #LT-qa .LT-inner {
    padding-top: 1em;
  }
}
#LT-qa .LT-qa-Wrap h3, #LT-qa .LT-qa-Wrap2 h3 {
  font-size: 2.4rem;
  font-weight: 600;
  position: relative;
  text-align: center;
  margin-bottom: 2em;
}
#LT-qa .LT-qa-Wrap h3::after, #LT-qa .LT-qa-Wrap2 h3::after {
  content: "";
  position: absolute;
  display: inline-block;
  height: 4px;
  width: 100%;
  max-width: 142px;
  background-color: #00ABE5;
  border-radius: 4px;
  bottom: -0.5em;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 769px) {
  #LT-qa .LT-qa-Wrap h3, #LT-qa .LT-qa-Wrap2 h3 {
    font-size: 2rem;
  }
}
#LT-qa .LT-qa-Wrap2 {
  margin-top: 6.5rem;
}
@media (max-width: 769px) {
  #LT-qa .LT-qa-Wrap2 {
    font-size: 4rem;
  }
}
#LT-qa .LT-qa-accordion, #LT-qa .LT-qa-accordion2 {
  border-radius: 20px;
  max-width: 800px;
  margin: auto;
}
@media (max-width: 1400px) {
  #LT-qa .LT-qa-accordion, #LT-qa .LT-qa-accordion2 {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 769px) {
  #LT-qa .LT-qa-accordion, #LT-qa .LT-qa-accordion2 {
    width: auto;
    padding-left: 0px;
    padding-right: 0px;
    border-radius: 1rem;
  }
}
#LT-qa .LT-qa-accordion-item, #LT-qa .LT-qa-accordion-item2 {
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 20px;
  background: #E6F8FF;
}
@media (max-width: 769px) {
  #LT-qa .LT-qa-accordion-item, #LT-qa .LT-qa-accordion-item2 {
    border-radius: 1rem;
  }
}
#LT-qa .LT-qa-accordion-item.active .LT-qa-accordion-body, #LT-qa .LT-qa-accordion-item.active .LT-qa-accordion-body2, #LT-qa .LT-qa-accordion-item2.active .LT-qa-accordion-body, #LT-qa .LT-qa-accordion-item2.active .LT-qa-accordion-body2 {
  display: table;
  padding: 16px;
}
@media (max-width: 769px) {
  #LT-qa .LT-qa-accordion-item.active .LT-qa-accordion-body, #LT-qa .LT-qa-accordion-item.active .LT-qa-accordion-body2, #LT-qa .LT-qa-accordion-item2.active .LT-qa-accordion-body, #LT-qa .LT-qa-accordion-item2.active .LT-qa-accordion-body2 {
    padding: 1rem;
  }
}
#LT-qa .LT-qa-accordion-header, #LT-qa .LT-qa-accordion-header2 {
  width: 100%;
  background: #00ABE5;
  color: #fff;
  text-align: left;
  padding: 12px 10px 12px 23px;
  font-size: 2rem;
  font-weight: bold;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 769px) {
  #LT-qa .LT-qa-accordion-header, #LT-qa .LT-qa-accordion-header2 {
    font-size: 1.6rem;
    border-radius: 1rem;
  }
}
#LT-qa .LT-qa-accordion-body, #LT-qa .LT-qa-accordion-body2 {
  max-height: 0;
  overflow: hidden;
  background: #E6F8FF;
  padding: 0 16px;
  font-size: 1.6rem;
  transition: max-height 0.5s ease, padding 0.5s ease;
}
@media (max-width: 769px) {
  #LT-qa .LT-qa-accordion-body, #LT-qa .LT-qa-accordion-body2 {
    font-size: 1.4rem;
  }
}
#LT-qa .LT-qa-accordion-body p, #LT-qa .LT-qa-accordion-body2 p {
  line-height: 2;
}
#LT-qa .LT-qa-accordion-body ul, #LT-qa .LT-qa-accordion-body2 ul {
  list-style: none;
  font-size: 1.6rem;
  padding: 0;
  margin: 0;
}
@media (max-width: 769px) {
  #LT-qa .LT-qa-accordion-body ul, #LT-qa .LT-qa-accordion-body2 ul {
    font-size: 1.4rem;
  }
}
#LT-qa .LT-qa-accordion-body ul li, #LT-qa .LT-qa-accordion-body2 ul li {
  position: relative;
  line-height: 2;
}
#LT-qa .LT-qa-accordion-body ul li::before, #LT-qa .LT-qa-accordion-body2 ul li::before {
  content: "●";
  color: #00ABE5;
  font-size: 1.2rem;
  margin-right: 0.5em;
}
@media (max-width: 769px) {
  #LT-qa .LT-qa-accordion-body ul li::before, #LT-qa .LT-qa-accordion-body2 ul li::before {
    font-size: 1rem;
  }
}

#LT-contact {
  margin: 0 0 150px;
}
@media (max-width: 480px) {
  #LT-contact {
    margin: 0 0 70px;
  }
}
#LT-contact h2 {
  font-size: 6rem;
  font-weight: 900;
  color: #00ABE5;
  padding-bottom: 0.5em;
  margin-bottom: 0.75em;
  border-bottom: solid 1px #D2D2D2;
}
@media (max-width: 1200px) {
  #LT-contact h2 {
    font-size: 4rem;
    line-height: 1.2;
  }
}
@media (max-width: 769px) {
  #LT-contact h2 {
    font-size: 3rem;
    line-height: 1.2;
  }
}
#LT-contact h2 span {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 1.25rem;
  vertical-align: top;
}
@media (max-width: 769px) {
  #LT-contact h2 span {
    font-size: 1.5rem;
    vertical-align: middle;
  }
}
#LT-contact .mw_wp_form_confirm .LT-qa-Wrap, #LT-contact .mw_wp_form_complete .LT-qa-Wrap {
  display: block !important;
}
#LT-contact .mw_wp_form_confirm .LT-qa-Wrap h3, #LT-contact .mw_wp_form_complete .LT-qa-Wrap h3 {
  font-size: 2.4rem;
  font-weight: 600;
  position: relative;
  text-align: center;
  margin-bottom: 2em;
}
@media (max-width: 769px) {
  #LT-contact .mw_wp_form_confirm .LT-qa-Wrap h3, #LT-contact .mw_wp_form_complete .LT-qa-Wrap h3 {
    font-size: 2rem;
  }
}
#LT-contact .mw_wp_form_confirm .LT-qa-Wrap h3::after, #LT-contact .mw_wp_form_complete .LT-qa-Wrap h3::after {
  content: "";
  position: absolute;
  display: inline-block;
  height: 4px;
  width: 100%;
  max-width: 142px;
  background-color: #00ABE5;
  border-radius: 4px;
  bottom: -0.5em;
  left: 0;
  right: 0;
  margin: auto;
}
#LT-contact .mw_wp_form_confirm .LT-qa-Wrap-Text, #LT-contact .mw_wp_form_complete .LT-qa-Wrap-Text {
  font-size: 2rem;
  text-align: center;
}
@media (max-width: 769px) {
  #LT-contact .mw_wp_form_confirm .LT-qa-Wrap-Text, #LT-contact .mw_wp_form_complete .LT-qa-Wrap-Text {
    font-size: 1.6rem;
    text-align: left;
  }
}
#LT-contact .LT-inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding-top: 35px;
}
@media (max-width: 1400px) {
  #LT-contact .LT-inner {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 769px) {
  #LT-contact .LT-inner {
    padding-top: 1em;
  }
}
#LT-contact .LT-contact-Text {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 2em;
}
@media (max-width: 769px) {
  #LT-contact .LT-contact-Text {
    text-align: left;
    margin-bottom: 1em;
  }
}
#LT-contact .LT-contact-TelLink {
  display: block;
  position: relative;
  width: 100%;
  max-width: 525px;
  margin-bottom: 75px;
  background-color: #00ABE5;
  color: #fff;
  margin: 0 auto 75px;
  padding: 35px 55px;
  border-radius: 30px;
  text-align: center;
}
@media (max-width: 480px) {
  #LT-contact .LT-contact-TelLink {
    padding: 5vw;
    margin: 0 auto 6vw;
    border-radius: 20px;
  }
}
#LT-contact .LT-contact-TelLink span {
  display: block;
}
#LT-contact .LT-contact-TelLink:hover {
  box-shadow: 0 10px 10px -6px rgba(0, 0, 0, 0.4);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#LT-contact .LT-contact-TelLink-ttl {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5em;
  color: #fff;
}
@media (max-width: 480px) {
  #LT-contact .LT-contact-TelLink-ttl {
    font-size: 5.5vw;
  }
}
#LT-contact .LT-contact-TelLink-tel {
  font-size: 6rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  position: relative;
}
@media (max-width: 480px) {
  #LT-contact .LT-contact-TelLink-tel {
    font-size: 11vw;
  }
}
#LT-contact .LT-contact-TelLink-tel::before {
  content: "";
  width: 40px;
  height: 40px;
  margin-right: 10px;
  display: inline-block;
  background-size: cover;
  background-image: url("../img/Icon-phoneW.svg");
  background-size: contain;
}
@media (max-width: 480px) {
  #LT-contact .LT-contact-TelLink-tel::before {
    width: 8vw;
    height: 8.15vw;
    background-size: cover;
  }
}
#LT-contact .LT-contact-TelLink-data {
  font-size: 2rem;
  font-weight: 400;
  margin-top: 0.25em;
  color: #fff;
}
@media (max-width: 480px) {
  #LT-contact .LT-contact-TelLink-data {
    font-size: 4vw;
    margin-top: 0em;
  }
}
#LT-contact .LT-qa-Wrap {
  display: none !important;
}

/* フォーム全体 */
#LT-contact {
  /* レスポンシブ対応 */
}
#LT-contact .mw_wp_form {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0rem;
}
#LT-contact .mw_wp_form form {
  width: 100%;
}
#LT-contact .mw_wp_form dl.form-group dt {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  line-height: 1;
}
#LT-contact .mw_wp_form dl.form-group dt .required {
  color: #FF0000;
  margin-left: 1em;
}
#LT-contact .mw_wp_form dl.form-group dd {
  margin: 0 auto 2.5rem;
  font-size: 1.6rem;
}
@media (max-width: 769px) {
  #LT-contact .mw_wp_form dl.form-group dd {
    margin: 0.5em auto 2.5rem;
  }
}
#LT-contact .mw_wp_form dl.form-group dd input[type=text],
#LT-contact .mw_wp_form dl.form-group dd input[type=tel],
#LT-contact .mw_wp_form dl.form-group dd input[type=email],
#LT-contact .mw_wp_form dl.form-group dd textarea {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.6rem;
  border: 2px solid #D2D2D2;
  border-radius: 1rem;
  margin-top: 0.5rem;
}
#LT-contact .mw_wp_form dl.form-group dd textarea {
  min-height: 20rem;
  resize: vertical;
}
#LT-contact .mw_wp_form dl.form-group dd .error {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 600;
  color: #FF0000;
  margin-top: 0em;
}
#LT-contact .mw_wp_form .radio-group,
#LT-contact .mw_wp_form .LT-contact-privacy-button {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 769px) {
  #LT-contact .mw_wp_form .radio-group,
  #LT-contact .mw_wp_form .LT-contact-privacy-button {
    flex-direction: column;
    gap: 0rem;
  }
}
#LT-contact .mw_wp_form .radio-group .mwform-radio-field,
#LT-contact .mw_wp_form .radio-group .mwform-checkbox-field,
#LT-contact .mw_wp_form .LT-contact-privacy-button .mwform-radio-field,
#LT-contact .mw_wp_form .LT-contact-privacy-button .mwform-checkbox-field {
  position: relative;
  display: inline-flex;
  align-items: center;
}
#LT-contact .mw_wp_form .radio-group .mwform-radio-field label,
#LT-contact .mw_wp_form .radio-group .mwform-checkbox-field label,
#LT-contact .mw_wp_form .LT-contact-privacy-button .mwform-radio-field label,
#LT-contact .mw_wp_form .LT-contact-privacy-button .mwform-checkbox-field label {
  position: relative;
  padding-left: 1.6rem;
  cursor: pointer;
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
}
#LT-contact .mw_wp_form .radio-group .mwform-radio-field label::before,
#LT-contact .mw_wp_form .radio-group .mwform-checkbox-field label::before,
#LT-contact .mw_wp_form .LT-contact-privacy-button .mwform-radio-field label::before,
#LT-contact .mw_wp_form .LT-contact-privacy-button .mwform-checkbox-field label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-40%);
  width: 1.8rem;
  height: 1.8rem;
  border: 2px solid #D2D2D2;
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
}
#LT-contact .mw_wp_form .radio-group .mwform-radio-field label input[type=radio],
#LT-contact .mw_wp_form .radio-group .mwform-radio-field label input[type=checkbox],
#LT-contact .mw_wp_form .radio-group .mwform-checkbox-field label input[type=radio],
#LT-contact .mw_wp_form .radio-group .mwform-checkbox-field label input[type=checkbox],
#LT-contact .mw_wp_form .LT-contact-privacy-button .mwform-radio-field label input[type=radio],
#LT-contact .mw_wp_form .LT-contact-privacy-button .mwform-radio-field label input[type=checkbox],
#LT-contact .mw_wp_form .LT-contact-privacy-button .mwform-checkbox-field label input[type=radio],
#LT-contact .mw_wp_form .LT-contact-privacy-button .mwform-checkbox-field label input[type=checkbox] {
  display: none;
}
#LT-contact .mw_wp_form .radio-group .mwform-radio-field label input[type=radio]:checked + .mwform-radio-field-text::before, #LT-contact .mw_wp_form .radio-group .mwform-radio-field label input[type=radio]:checked + .mwform-checkbox-field-text::before,
#LT-contact .mw_wp_form .radio-group .mwform-radio-field label input[type=checkbox]:checked + .mwform-radio-field-text::before,
#LT-contact .mw_wp_form .radio-group .mwform-radio-field label input[type=checkbox]:checked + .mwform-checkbox-field-text::before,
#LT-contact .mw_wp_form .radio-group .mwform-checkbox-field label input[type=radio]:checked + .mwform-radio-field-text::before,
#LT-contact .mw_wp_form .radio-group .mwform-checkbox-field label input[type=radio]:checked + .mwform-checkbox-field-text::before,
#LT-contact .mw_wp_form .radio-group .mwform-checkbox-field label input[type=checkbox]:checked + .mwform-radio-field-text::before,
#LT-contact .mw_wp_form .radio-group .mwform-checkbox-field label input[type=checkbox]:checked + .mwform-checkbox-field-text::before,
#LT-contact .mw_wp_form .LT-contact-privacy-button .mwform-radio-field label input[type=radio]:checked + .mwform-radio-field-text::before,
#LT-contact .mw_wp_form .LT-contact-privacy-button .mwform-radio-field label input[type=radio]:checked + .mwform-checkbox-field-text::before,
#LT-contact .mw_wp_form .LT-contact-privacy-button .mwform-radio-field label input[type=checkbox]:checked + .mwform-radio-field-text::before,
#LT-contact .mw_wp_form .LT-contact-privacy-button .mwform-radio-field label input[type=checkbox]:checked + .mwform-checkbox-field-text::before,
#LT-contact .mw_wp_form .LT-contact-privacy-button .mwform-checkbox-field label input[type=radio]:checked + .mwform-radio-field-text::before,
#LT-contact .mw_wp_form .LT-contact-privacy-button .mwform-checkbox-field label input[type=radio]:checked + .mwform-checkbox-field-text::before,
#LT-contact .mw_wp_form .LT-contact-privacy-button .mwform-checkbox-field label input[type=checkbox]:checked + .mwform-radio-field-text::before,
#LT-contact .mw_wp_form .LT-contact-privacy-button .mwform-checkbox-field label input[type=checkbox]:checked + .mwform-checkbox-field-text::before {
  content: "";
  position: absolute;
  left: -1.35em;
  top: 50%;
  transform: translateY(-45%);
  width: 3rem;
  height: 3rem;
  border-color: #00ABE5;
  background: radial-gradient(circle, #00ABE5 40%, transparent 41%);
}
#LT-contact .mw_wp_form .radio-group .mwform-radio-field .mwform-radio-field-text,
#LT-contact .mw_wp_form .radio-group .mwform-radio-field .mwform-checkbox-field-text,
#LT-contact .mw_wp_form .radio-group .mwform-checkbox-field .mwform-radio-field-text,
#LT-contact .mw_wp_form .radio-group .mwform-checkbox-field .mwform-checkbox-field-text,
#LT-contact .mw_wp_form .LT-contact-privacy-button .mwform-radio-field .mwform-radio-field-text,
#LT-contact .mw_wp_form .LT-contact-privacy-button .mwform-radio-field .mwform-checkbox-field-text,
#LT-contact .mw_wp_form .LT-contact-privacy-button .mwform-checkbox-field .mwform-radio-field-text,
#LT-contact .mw_wp_form .LT-contact-privacy-button .mwform-checkbox-field .mwform-checkbox-field-text {
  position: relative;
  padding-left: 0.8rem;
}
#LT-contact .mw_wp_form .LT-contact-privacy-button {
  justify-content: center;
}
#LT-contact .mw_wp_form .LT-contact-privacy {
  margin-top: 3rem;
  font-size: 1.4rem;
  line-height: 1.8;
}
#LT-contact .mw_wp_form .LT-contact-privacy span {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
}
#LT-contact .mw_wp_form .submit-area {
  margin-top: 3rem;
  text-align: center;
}
#LT-contact .mw_wp_form .submit-area button,
#LT-contact .mw_wp_form .submit-area input[type=submit] {
  background: #00ABE5;
  color: #fff;
  width: 100%;
  max-width: 300px;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1.2rem 4rem;
  border-radius: 0.6rem;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.3s;
}
#LT-contact .mw_wp_form .submit-area .back_button {
  margin-bottom: 2rem;
  background: #969696 !important;
}
@media (max-width: 768px) {
  #LT-contact .mw_wp_form {
    padding: 1.5rem;
  }
  #LT-contact .mw_wp_form dl.form-group dt {
    font-size: 1.4rem;
  }
  #LT-contact .mw_wp_form dl.form-group dd input[type=text],
  #LT-contact .mw_wp_form dl.form-group dd input[type=tel],
  #LT-contact .mw_wp_form dl.form-group dd input[type=email],
  #LT-contact .mw_wp_form dl.form-group dd textarea {
    font-size: 1.4rem;
  }
  #LT-contact .mw_wp_form .radio-group label,
  #LT-contact .mw_wp_form .LT-contact-privacy-button label {
    font-size: 1.4rem;
  }
}

.mw_wp_form_confirm .LT-inner-box {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: auto;
}
@media (max-width: 1400px) {
  .mw_wp_form_confirm .LT-inner-box {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.mw_wp_form_confirm .LT-inner-box .LT-contact-Text, .mw_wp_form_confirm .LT-inner-box .LT-contact-TelLink {
  display: none !important;
}

@media (max-width: 769px) {
  .mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0px !important;
  }
}
#LT-privacy {
  margin: 0px;
  text-align: justify;
}
#LT-privacy h2 {
  font-size: 6rem;
  font-weight: 900;
  color: #00ABE5;
  padding-bottom: 0.5em;
  margin-bottom: 0.75em;
  border-bottom: solid 1px #D2D2D2;
}
@media (max-width: 1200px) {
  #LT-privacy h2 {
    font-size: 4rem;
    line-height: 1.2;
  }
}
@media (max-width: 769px) {
  #LT-privacy h2 {
    font-size: 3rem;
    line-height: 1.2;
  }
}
#LT-privacy h2 span {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 1.25rem;
  vertical-align: top;
}
@media (max-width: 769px) {
  #LT-privacy h2 span {
    font-size: 1.5rem;
    vertical-align: middle;
  }
}
#LT-privacy .LT-inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding-top: 35px;
}
@media (max-width: 1400px) {
  #LT-privacy .LT-inner {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
#LT-privacy .LT-privacy-Text1 {
  font-size: 1.6rem;
  margin-bottom: 1.5em;
}
@media (max-width: 769px) {
  #LT-privacy .LT-privacy-Text1 {
    font-size: 1.4rem;
  }
}
#LT-privacy .LT-privacy-Link {
  color: #00ABE5;
  font-weight: bold;
}
#LT-privacy .LT-privacy-Box {
  margin-bottom: 40px;
}
#LT-privacy .LT-privacy-Box-Title {
  color: #00ABE5;
  font-size: 2rem;
  line-height: 1.75em;
  font-weight: 600;
  padding-left: 0.25em;
  margin-bottom: 1em;
  border-left: solid 4px #00ABE5;
  border-radius: 2px;
}
@media (max-width: 769px) {
  #LT-privacy .LT-privacy-Box-Title {
    padding-left: 0.5em;
    font-size: 1.6rem;
  }
}
#LT-privacy .LT-privacy-Box-Text {
  font-size: 1.6rem;
  margin-bottom: 1em;
}
@media (max-width: 769px) {
  #LT-privacy .LT-privacy-Box-Text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
#LT-privacy .LT-privacy-Box-List {
  font-size: 1.6rem;
  padding-left: 1.5em;
  margin: -1em 0 0;
  line-height: 1.6;
}
@media (max-width: 769px) {
  #LT-privacy .LT-privacy-Box-List {
    font-size: 1.4rem;
    margin: -0.5em 0 0;
  }
}

@media (max-width: 769px) {
  .LT-archive {
    margin-top: 8rem;
  }
}
.LT-archive .LT-inner {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 1400px) {
  .LT-archive .LT-inner {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.LT-archive .LT-inner h2 {
  font-size: 6rem;
  font-weight: 900;
  color: #00ABE5;
  padding-bottom: 0.5em;
  margin-bottom: 0.75em;
  border-bottom: solid 1px #D2D2D2;
}
@media (max-width: 1200px) {
  .LT-archive .LT-inner h2 {
    font-size: 4rem;
    line-height: 1.2;
  }
}
@media (max-width: 769px) {
  .LT-archive .LT-inner h2 {
    font-size: 3rem;
    line-height: 1.2;
  }
}
.LT-archive .LT-inner h2 span {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 1.25rem;
  vertical-align: top;
}
@media (max-width: 769px) {
  .LT-archive .LT-inner h2 span {
    font-size: 1.5rem;
    vertical-align: middle;
  }
}

.l-archive__inner,
.l-single__inner {
  display: flex;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0rem;
}
@media (max-width: 1400px) {
  .l-archive__inner,
  .l-single__inner {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1200px) {
  .l-archive__inner,
  .l-single__inner {
    flex-direction: column;
    padding-top: 1em;
  }
}

@media (max-width: 1200px) {
  .l-archive__inner {
    padding-top: 0em;
  }
}

.l-archive__content,
.l-single__content {
  width: 80rem;
}
@media (max-width: 1200px) {
  .l-archive__content,
  .l-single__content {
    width: 100%;
  }
}

.l-archive__sidebar,
.l-single__sidebar {
  width: 24rem;
  padding-top: 10rem;
}
@media (max-width: 1200px) {
  .l-archive__sidebar,
  .l-single__sidebar {
    width: 100%;
    padding-top: 0rem;
  }
}

.archive-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(24rem, 1fr));
  gap: 2.5rem;
}
@media (max-width: 769px) {
  .archive-list {
    grid-template-columns: repeat(auto-fill, minmax(41vw, 2fr));
    gap: 2rem;
  }
}

.archive-item {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  text-align: left;
}
@media (max-width: 769px) {
  .archive-item {
    width: 100%;
  }
}
.archive-item a {
  display: block;
  color: inherit;
  text-decoration: none;
  position: relative;
}
.archive-item__category {
  position: absolute;
  display: inline-block;
  background: #00ABE5;
  color: #fff;
  padding: 0.2rem 1rem;
  font-size: 1.1rem;
  border-radius: 9999px;
  margin: 0;
  right: 5px;
  top: 5px;
}
@media (max-width: 769px) {
  .archive-item__category {
    font-size: 1rem;
  }
}
.archive-item__thumb {
  display: flex;
  height: 140px;
  overflow: hidden;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 769px) {
  .archive-item__thumb {
    height: 29vw;
  }
}
.archive-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.archive-item__title {
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .archive-item__title {
    font-size: 3.2vw;
  }
}
.archive-item__date {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
  color: #969696;
}
@media (max-width: 480px) {
  .archive-item__date {
    font-size: 2.8vw;
    margin-top: 0.25em;
  }
}

.archive-pager {
  margin-top: 4rem;
  text-align: center;
}
.archive-pager .page-numbers {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0 0.5rem;
  padding: 0.2rem 1.3rem;
  background: #D2D2D2;
  color: #fff;
  border-radius: 0.4rem;
  text-decoration: none;
  font-family: "din-2014", "Noto Sans JP", sans-serif;
}
.archive-pager .page-numbers.current {
  background: #00ABE5;
  color: #fff;
}

.single-article__head {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 769px) {
  .single-article__head {
    font-size: 2.8vw;
    margin-bottom: 2rem;
  }
}
.single-article__head_Wrap {
  display: flex;
  align-items: center;
}
.single-article__head .single-article__category {
  display: inline-block;
  background: #00ABE5;
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  line-height: 1;
  border-radius: 9999px;
  margin-right: 1.5em;
}
.single-article__head .single-article__date {
  display: block;
  font-size: 1.2rem;
  color: #969696;
}
.single-article__head .single-article__title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 1rem;
  text-align: left;
  padding-bottom: 0rem;
  border-bottom: none;
}
@media (max-width: 769px) {
  .single-article__head .single-article__title {
    font-size: 2.4rem;
  }
}
.single-article__head .single-article__thumb img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.single-article__body {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 769px) {
  .single-article__body {
    font-size: 1.4rem;
  }
}

.widget_categories_title {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.4rem;
  margin: 2em 0 0.25em;
  color: #00ABE5;
  border-bottom: solid 2px #00ABE5;
}

.widget_block .wp-block-categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget_block .wp-block-categories-list li {
  position: relative;
  font-size: 1.4rem;
  line-height: 1;
  vertical-align: middle;
  padding: 6px 0;
  margin-left: 10px;
  border-bottom: solid 1px #D2D2D2;
}
.widget_block .wp-block-categories-list li::before {
  content: "●";
  display: inline-block;
  font-size: 1.4rem;
  color: #000000;
  vertical-align: bottom;
  line-height: 1;
  margin-right: 0.5em;
}
.widget_block .wp-block-search__label {
  display: none;
}

.widget_popular_posts_widget .popular-posts {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}
.widget_popular_posts_widget .popular-posts__item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}
.widget_popular_posts_widget .popular-posts__link {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
}
.widget_popular_posts_widget .popular-posts__thumb {
  flex-shrink: 0;
  margin-right: 1em;
}
.widget_popular_posts_widget .popular-posts__thumb img {
  width: 4.8rem;
  height: 4.8rem;
  object-fit: cover;
  border-radius: 0.4rem;
}
.widget_popular_posts_widget .popular-posts__title {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.8rem;
  word-break: break-word;
}

.screen-reader-text {
  display: none;
}

/* 目次 */
.l-single__inner .toc-box {
  background: #E6F8FF;
  padding: 2rem;
  border-radius: 2rem;
  margin: 4rem auto;
}
@media (max-width: 769px) {
  .l-single__inner .toc-box {
    margin: 2rem auto;
  }
}
.l-single__inner .toc-box .toc-title {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
  color: #00ABE5;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #00ABE5;
  display: block;
  padding-bottom: 1rem;
}
@media (max-width: 769px) {
  .l-single__inner .toc-box .toc-title {
    font-size: 1.6rem;
  }
}
.l-single__inner .toc-box .toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-single__inner .toc-box .toc-list li {
  display: block;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  padding-left: 1.75em;
}
@media (max-width: 769px) {
  .l-single__inner .toc-box .toc-list li {
    margin-bottom: 0.5rem;
  }
}
.l-single__inner .toc-box .toc-list li::before {
  display: none;
}
.l-single__inner .toc-box .toc-list li .toc-number {
  position: absolute;
  background: #00ABE5;
  color: #fff;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
  font-weight: bold;
  font-family: "din-2014", "Noto Sans JP", sans-serif;
  left: 0;
  top: 0.25em;
}
.l-single__inner .toc-box .toc-list li a {
  text-decoration: none;
  color: inherit;
}
.l-single__inner .toc-box .toc-list li a:hover {
  text-decoration: underline;
}

/*カスタマイズ項目*/
.MCE-maincolor {
  color: #00ABE5;
}

.MCE-picCaption {
  display: block;
  font-size: 14px !important;
  line-height: 1.5;
  text-align: left;
}
@media (max-width: 480px) {
  .MCE-picCaption {
    font-size: 3vw !important;
  }
}

.MCE-inyouSpan {
  color: #707070;
}

/*singleページ　カスタマイズ*/
/*.single-article__body h1::before {
  content: "";
  display: block;
  height: 90px; 
  margin-top: -90px;
  visibility: hidden;
}*/
.single-article h1, .single-article h2, .single-article h3, .single-article h4, .single-article h5, .single-article h6 {
  margin-bottom: 2rem;
  font-weight: bold;
}
.single-article h1 {
  font-size: 2.4rem;
  line-height: 3.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 4px solid #00ABE5;
}
@media (max-width: 480px) {
  .single-article h1 {
    font-size: 5.4vw;
  }
}
.single-article h2 {
  font-size: 2rem;
  line-height: 3rem;
  position: relative;
  color: #00ABE5;
  border-left: solid 4px #00ABE5;
  border-radius: 2px;
  padding-left: 0.5em;
}
@media (max-width: 480px) {
  .single-article h2 {
    font-size: 5vw;
  }
}
.single-article h3 {
  font-size: 2rem;
  line-height: 3rem;
}
@media (max-width: 480px) {
  .single-article h3 {
    font-size: 4.5vw;
  }
}
.single-article h4 {
  display: inline-block;
  font-size: 1.8rem;
  line-height: 2.7rem;
  border-bottom: solid 1px #969696;
}
@media (max-width: 480px) {
  .single-article h4 {
    font-size: 4vw;
  }
}
.single-article h5 {
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: #004FE5;
}
@media (max-width: 480px) {
  .single-article h5 {
    font-size: 3.7vw;
  }
}
.single-article h6 {
  font-size: 1.5rem;
  line-height: 2.2rem;
  color: #00ABE5;
}
@media (max-width: 480px) {
  .single-article h6 {
    font-size: 3.4vw;
  }
}
.single-article blockquote {
  margin: 0;
  padding: 2rem;
  border-radius: 1rem;
  background-color: #F4F4F4;
}
@media (max-width: 769px) {
  .single-article blockquote {
    padding: 2rem 2rem 1rem;
  }
}
.single-article ul {
  list-style: none;
  padding: 0;
}
.single-article ul li {
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  line-height: 1.6;
  margin-bottom: 0.25em;
}
@media (max-width: 480px) {
  .single-article ul li {
    font-size: 3.7vw;
  }
}
.single-article ul li::before {
  content: "●";
  display: inline-block;
  font-size: 1.2rem;
  color: #00ABE5;
  vertical-align: inherit;
  padding-right: 1rem;
}
@media (max-width: 480px) {
  .single-article ul li::before {
    font-size: 2.5vw;
  }
}

.l-archive__inner .post-search-form, .l-single__inner .post-search-form {
  max-width: 24rem;
}
@media (max-width: 769px) {
  .l-archive__inner .post-search-form, .l-single__inner .post-search-form {
    margin: auto;
  }
}
.l-archive__inner .post-search-form__wrapper, .l-single__inner .post-search-form__wrapper {
  display: flex;
  color: #505050;
  border: 1px solid #505050;
  border-radius: 6px;
  overflow: hidden;
}
.l-archive__inner .post-search-form__input, .l-single__inner .post-search-form__input {
  width: 100%;
  flex: 1;
  border: none;
  padding: 0.8rem 1.2rem;
  font-size: 1.6rem;
  outline: none;
  color: #505050;
  background: #fff;
}
.l-archive__inner .post-search-form__button, .l-single__inner .post-search-form__button {
  background-color: #505050;
  border: none;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 6px;
}
.l-archive__inner .post-search-form__button svg, .l-single__inner .post-search-form__button svg {
  width: 2rem;
  height: 2rem;
  stroke: #fff;
  color: #fff;
}