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

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

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

body {
  color: #333333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
  font-size: 18px;
  position: relative;
  overflow-x: hidden;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

body::after {
  position: absolute;
  content: "";
  background: url(../img/bg-base-line.webp) center center/contain repeat;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -999;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  width: 1580px;
  max-width: 100%;
  padding: 0 40px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}

.sec-ttl {
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .sec-ttl {
    margin-bottom: 30px;
  }
}

.sec-ttl .en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: #224981;
  letter-spacing: 0.05em;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .sec-ttl .en {
    font-size: 32px;
  }
}

.sec-ttl .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.sec-ttl .arrow::before {
  position: absolute;
  content: "";
  background: url(../img/arrow-blue.png) center center/cover no-repeat;
  width: 65px;
  height: 28px;
}

@media screen and (max-width: 767px) {
  .sec-ttl .arrow::before {
    width: 40px;
    height: 18px;
  }
}

.sec-ttl .arrow span {
  font-size: 26px;
  color: #363636;
  letter-spacing: 0.06em;
  font-weight: 600;
  padding-left: 100px;
}

@media screen and (max-width: 767px) {
  .sec-ttl .arrow span {
    font-size: 18px;
    padding-left: 50px;
  }
}

.sec-ttl .ja {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #333333;
}

@media screen and (max-width: 767px) {
  .sec-ttl .ja {
    font-size: 16px;
  }
}

.btn-primary {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 60px;
  background-color: #074799;
  color: #ffffff;
  border-radius: 999px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .btn-primary {
    font-size: 16px;
    width: 300px;
    height: 50px;
  }
}

.btn-primary::after {
  position: absolute;
  content: "";
  background: url(../img/btn-arrow-white.png) center center/cover no-repeat;
  width: 19px;
  height: 17px;
  right: 23px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 48px;
  border: 2px solid #224981;
  color: #224981;
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-outline::after {
  content: "›";
  font-size: 20px;
  line-height: 1;
}

.btn-outline:hover {
  background-color: #224981;
  color: #ffffff;
}

.bg_blue {
  background: url(../img/bg-blue.png) center center/100% 100% no-repeat;
  position: relative;
  z-index: 0;
}

.bg_blue::before {
  position: absolute;
  content: "";
  background: url(../img/bg-blue-top.png) center center/100% 100% no-repeat;
  width: 100%;
  height: 7.03125vw;
  top: -6.25vw;
  left: 50%;
  transform: translateX(-50%);
}

.bg_blue::after {
  position: absolute;
  content: "";
  background: url(../img/bg-blue-bottom.png) center center/100% 100% no-repeat;
  width: 100%;
  height: 7.03125vw;
  bottom: -6.25vw;
  left: 0;
  right: 0;
  z-index: -2;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  height: 100px;
  padding: 0 0 0 40px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .header .inner {
    height: 65px;
    padding: 0 20px;
  }
}

.header .header_discription {
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 10px;
  font-weight: 600;
  color: #8e8e8e;
}

@media screen and (max-width: 767px) {
  .header .header_discription {
    left: unset;
    right: 10px;
    font-size: 8px;
  }
}

.header-logo {
  width: 280px;
}

@media screen and (max-width: 767px) {
  .header-logo {
    width: 180px;
  }
}

.header-logo a {
  display: block;
}

.header-nav {
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .header-nav {
    display: none;
  }
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 45px;
}

.header-nav a {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  position: relative;
}

.header-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #224981;
  transition: all 0.3s ease;
}

.header-nav a:hover::after {
  width: 100%;
}

.header-cta {
  position: relative;
}

@media screen and (max-width: 767px) {
  .header-cta {
    display: none;
  }
}

.header-cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 28px;
  height: 100px;
  background: linear-gradient(to top right, #044396, #2f85bd);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.header-cta-btn i {
  font-size: 22px;
}

.header-cta-btn:hover, .header-cta-btn[aria-expanded="true"] {
  background: linear-gradient(to top right, #033070, #2f85bd);
}

.header-cta-dropdown {
  display: none;
  position: absolute;
  top: 100px;
  right: 0;
  width: 330px;
  background-color: #f0f0f0;
  padding: 25px 20px;
  z-index: 999;
}

.header-cta-dropdown.is-open {
  display: block;
}

.header-cta-dropdown-btns {
  display: flex;
  gap: 5px;
}

.header-cta-dropdown-btns a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  transition: all 0.3s ease;
}

.header-cta-dropdown-btns a i {
  font-size: 28px;
}

.header-cta-dropdown-btns .cta-form {
  width: 205px;
  background-color: #53bfe0;
}

.header-cta-dropdown-btns .cta-form:hover {
  background-color: #2ba0cf;
}

.header-cta-dropdown-btns .cta-line {
  width: 80px;
  background-color: #3bb35c;
}

.header-cta-dropdown-btns .cta-line:hover {
  background-color: #059f44;
}

.header-cta-dropdown-tel {
  margin-top: 5px;
  padding: 20px 10px;
  background-color: #ffffff;
  text-align: center;
}

.header-cta-dropdown-tel .tel-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.header-cta-dropdown-tel .tel-row i {
  font-size: 24px;
  color: #707070;
}

.header-cta-dropdown-tel .tel-row a {
  font-size: 30px;
  font-weight: 600;
  color: #414141;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.02em;
}

.header-cta-dropdown-tel .tel-time {
  font-size: 16px;
  color: #707070;
  margin-top: 2px;
  padding-top: 2px;
  border-top: 1px dashed #707070;
  text-align: center;
  font-weight: 600;
}

.header-drawer {
  display: none;
}

@media screen and (max-width: 767px) {
  .header-drawer {
    display: block;
  }
}

.header-drawer .drawer-icon {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.header-drawer .drawer-icon span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #224981;
  transition: all 0.3s ease;
}

.drawer-content {
  display: none;
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, #0d3a8a 0%, #1a5fbf 50%, #2f85bd 100%);
  z-index: 1001;
  overflow-y: auto;
}

.drawer-content.is-open {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
}

.drawer-close span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #224981;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.drawer-close span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.drawer-close span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.drawer-nav {
  width: 100%;
  padding: 0 32px;
}

.drawer-nav ul {
  display: flex;
  flex-direction: column;
}

.drawer-nav li {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
}

.drawer-nav li:first-child {
  border-top: 1px dashed rgba(255, 255, 255, 0.35);
}

.drawer-nav li a {
  display: block;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.1em;
}

.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.main {
  padding-top: 100px;
}

@media screen and (max-width: 767px) {
  .main {
    padding-top: 65px;
  }
}

.t_fv {
  position: relative;
  height: calc(100vh - 100px);
  width: 97%;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .t_fv {
    height: 420px;
    width: 100%;
  }
}

.t_fv::after {
  position: absolute;
  content: "";
  background: url(../img/fv-label.webp) center center/cover no-repeat;
  right: 0;
  bottom: -1.77083vw;
  width: 94.010416vw;
  height: 31.8749vw;
  animation: fv-label-slide 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

@media screen and (max-width: 767px) {
  .t_fv::after {
    width: 115.010416vw;
    height: 50.8749vw;
  }
}

.t_fv-img {
  width: 100%;
  height: 100%;
}

.t_fv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t_fv-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 15%;
  display: flex;
  align-items: flex-end;
}

.t_fv-txt {
  position: relative;
  z-index: 2;
  padding: 0 40px;
}

@media screen and (max-width: 767px) {
  .t_fv-txt {
    padding: 0 15px;
  }
}

.t_fv-txt .catch {
  font-size: 45px;
  font-weight: 600;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .t_fv-txt .catch {
    font-size: 22px;
  }
}

.t_fv-txt .catch span {
  background: linear-gradient(to top right, #044396, #56c1e1);
  padding: 5px 20px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .t_fv-txt .catch span {
    display: inline-block;
    padding: 4px 7px;
    margin-top: 10px;
  }
}

.t_fv-txt .fv-en {
  font-size: 16px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  margin-top: 10px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .t_fv-txt .fv-en {
    font-size: 10px;
  }
}

@keyframes fv-label-slide {
  from {
    clip-path: inset(0 0 0 100%);
  }
  to {
    clip-path: inset(0 0 0 0%);
  }
}

.sec-ttl--problem {
  text-align: center;
  margin-bottom: 50px;
}

.sec-ttl--problem .up {
  position: relative;
}

.sec-ttl--problem .en-bg {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 90px;
  font-weight: 500;
  color: #f1f6f7;
  line-height: 1;
  user-select: none;
}

@media screen and (max-width: 767px) {
  .sec-ttl--problem .en-bg {
    font-size: 60px;
  }
}

.sec-ttl--problem .sub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  color: #363636;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.sec-ttl--problem .ja {
  display: block;
  font-size: 32px;
  font-weight: 600;
  color: #363636;
}

@media screen and (max-width: 767px) {
  .sec-ttl--problem .ja {
    font-size: 20px;
  }
}

.t_trouble {
  padding: 130px 0 250px;
}

@media screen and (max-width: 767px) {
  .t_trouble {
    padding: 60px 0 100px;
  }
}

.t_trouble-list {
  display: flex;
  gap: 30px;
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .t_trouble-list {
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
  }
}

.t_trouble-item {
  flex: 1;
  text-align: center;
  padding: 0 50px 50px;
  background-color: #f4f4f4;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 767px) {
  .t_trouble-item {
    padding: 0 24px 30px;
  }
}

.t_trouble-item .icon {
  max-width: 330px;
  margin: -65px auto 20px;
}

@media screen and (max-width: 767px) {
  .t_trouble-item .icon {
    width: 160px;
    margin: -30px auto 16px;
  }
}

.t_trouble-item h3 {
  font-size: 26px;
  font-weight: 700;
  color: #333333;
  padding-bottom: 14px;
  margin-bottom: 14px;
  margin-top: -20px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .t_trouble-item h3 {
    font-size: 18px;
  }
}

.t_trouble-item h3::after {
  position: absolute;
  content: "";
  background-color: #044396;
  width: 40px;
  height: 3px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.t_trouble-item p {
  color: #343434;
  line-height: 2;
  text-align: left;
  font-weight: 600;
}

.t_check {
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .t_check {
    padding: 60px 0;
  }
}

.t_check .sec-ttl {
  text-align: left;
  margin-bottom: 70px;
}

@media screen and (max-width: 767px) {
  .t_check .sec-ttl {
    margin-bottom: 30px;
  }
}

.t_check .sec-ttl .en {
  text-align: left;
  font-size: 90px;
}

@media screen and (max-width: 767px) {
  .t_check .sec-ttl .en {
    font-size: 32px;
  }
}

.t_check .sec-ttl .arrow {
  justify-content: flex-start;
}

.t_check .sec-ttl .ja {
  text-align: left;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #363636;
}

@media screen and (max-width: 767px) {
  .t_check .sec-ttl .ja {
    font-size: 18px;
  }
}

.t_check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

@media screen and (max-width: 767px) {
  .t_check-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.t_check-item {
  background-color: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 50px 50px 40px;
}

@media screen and (max-width: 767px) {
  .t_check-item {
    flex-direction: column;
    padding: 24px 20px 24px;
  }
}

.t_check-item-img {
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .t_check-item-img {
    width: 100%;
    height: 180px;
  }
}

.t_check-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.t_check-item-body {
  margin-top: -60px;
}

@media screen and (max-width: 767px) {
  .t_check-item-body {
    margin-top: 0;
    padding: 0;
  }
}

.t_check-item-body .num {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #aab9cb;
  background-color: #fff;
  letter-spacing: 0.1em;
  padding: 30px 100px 0 20px;
}

@media screen and (max-width: 767px) {
  .t_check-item-body .num {
    padding: 0;
  }
}

.t_check-item-body .num span {
  font-size: 20px;
}

.t_check-item-body h3 {
  font-size: 26px;
  font-weight: 700;
  color: #044396;
  margin-bottom: 10px;
  margin-top: 20px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .t_check-item-body h3 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 5px;
  }
}

.t_check-item-body p {
  color: #343434;
  line-height: 2;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .t_check-item-body p {
    line-height: 1.8;
  }
}

.t_service {
  padding: 260px 0;
  position: relative;
}

@media screen and (max-width: 767px) {
  .t_service {
    padding: 60px 0;
  }
}

.t_service::before {
  position: absolute;
  content: "";
  background: url(../img/service-label.webp) center center/cover no-repeat;
  width: 81.0416vw;
  height: 31.822916vw;
  left: 0;
  top: -5%;
  z-index: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media screen and (max-width: 767px) {
  .t_service::before {
    width: 100.0416vw;
    height: 50.822916vw;
  }
}

.t_service.is-label-visible::before {
  clip-path: inset(0 0% 0 0);
}

.t_service-inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

@media screen and (max-width: 767px) {
  .t_service-inner {
    flex-direction: column;
    gap: 40px;
  }
}

.t_service-left {
  width: 40.51%;
}

@media screen and (max-width: 767px) {
  .t_service-left {
    width: 100%;
  }
}

.t_service-left .badge {
  color: #ffffff;
  font-size: 45px;
  font-weight: 700;
  border-radius: 4px;
}

@media screen and (max-width: 767px) {
  .t_service-left .badge {
    font-size: 20px;
  }
}

.t_service-left .badge span {
  display: inline-block;
  background: linear-gradient(to top right, #044396, #2f85bd);
  padding: 5px 35px;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  .t_service-left .badge span {
    padding: 4px 16px;
  }
}

.t_service-left .badge .space {
  margin-left: 60px;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .t_service-left .badge .space {
    margin-left: 20px;
    margin-top: 6px;
  }
}

.t_service-left .en-sub {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #084999;
  padding-left: 10px;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .t_service-left .en-sub {
    font-size: 16px;
    margin-top: 16px;
  }
}

.t_service-left p {
  font-size: 18px;
  font-weight: 700;
  color: #343434;
  line-height: 2;
  margin-bottom: 60px;
  padding-left: 40px;
}

@media screen and (max-width: 767px) {
  .t_service-left p {
    font-size: 16px;
    padding-left: 0;
    margin-bottom: 30px;
  }
}

.t_service-left .btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.t_service-left .btn-wrap a {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 60px;
  background-color: #074799;
  color: #ffffff;
  border-radius: 999px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .t_service-left .btn-wrap a {
    width: 100%;
    font-size: 16px;
    height: 52px;
  }
}

.t_service-left .btn-wrap a::after {
  position: absolute;
  content: "";
  background: url(../img/btn-arrow-white.png) center center/cover no-repeat;
  width: 19px;
  height: 17px;
  right: 23px;
  top: 50%;
  transform: translateY(-50%);
}

.t_service-right {
  width: 50.63%;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 767px) {
  .t_service-right {
    width: 100%;
  }
}

.t_service-right img {
  text-align: center;
}

.t_service .t_service-img_wrapper {
  margin-top: 140px;
  display: flex;
  gap: 40px;
}

@media screen and (max-width: 767px) {
  .t_service .t_service-img_wrapper {
    margin-top: 30px;
    gap: 12px;
  }
}

.t_service .t_service-img_wrapper .t_service_img {
  flex: 1;
}

.t_service .t_service-img_wrapper .t_service_img:nth-child(even) {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .t_service .t_service-img_wrapper .t_service_img:nth-child(even) {
    margin-top: 10px;
  }
}

.t_flow {
  padding: 100px 0 120px;
  background: url(../img/bg-navy.webp) center center/100% 100% no-repeat;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .t_flow {
    padding: 60px 0;
  }
}

.t_flow::before {
  position: absolute;
  content: "";
  background: url(../img/bg-navy-top.webp) center center/100% 100% no-repeat;
  width: 100%;
  height: 6.77083vw;
  top: -6.77083vw;
  left: 50%;
  transform: translateX(-50%);
}

.t_flow::after {
  position: absolute;
  content: "";
  background: url(../img/bg-navy-bottom.webp) center center/100% 100% no-repeat;
  width: 100%;
  height: 6.77083vw;
  bottom: -6.77083vw;
  left: 50%;
  transform: translateX(-50%);
}

.t_flow .sec-ttl {
  text-align: left;
  margin-bottom: 90px;
}

@media screen and (max-width: 767px) {
  .t_flow .sec-ttl {
    margin-bottom: 30px;
  }
}

.t_flow .sec-ttl .en {
  color: #ffffff;
  font-size: 90px;
}

@media screen and (max-width: 767px) {
  .t_flow .sec-ttl .en {
    font-size: 32px;
  }
}

.t_flow .sec-ttl .arrow {
  justify-content: left;
  font-size: 26px;
}

@media screen and (max-width: 767px) {
  .t_flow .sec-ttl .arrow {
    font-size: 18px;
  }
}

.t_flow .sec-ttl .arrow span {
  color: #ffffff;
}

.t_flow .sec-ttl .arrow::before {
  background: url(../img/arrow-white.png) center center/cover no-repeat;
}

.t_flow-tabs {
  max-width: 1400px;
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 0 auto 20px;
  overflow-x: auto;
  padding-bottom: 4px;
}

@media screen and (max-width: 767px) {
  .t_flow-tabs {
    gap: 2px;
  }
}

.t_flow-tab {
  flex: 1;
  padding: 20px 10px;
  background-color: #ffffff;
  color: #343434;
  font-size: 18px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .t_flow-tab {
    padding: 10px 7px;
    font-size: 12px;
  }
}

.t_flow-tab .num {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #084999;
  margin-bottom: 4px;
  opacity: 0.8;
  line-height: 1;
}

.t_flow-tab .num .f-size {
  font-size: 30px;
}

@media screen and (max-width: 767px) {
  .t_flow-tab .num .f-size {
    font-size: 18px;
  }
}

.t_flow-tab.is-active, .t_flow-tab:hover {
  background: linear-gradient(to top right, #56c1e1, #287ab7);
  color: #ffffff;
  opacity: 1;
}

.t_flow-tab.is-active .num, .t_flow-tab:hover .num {
  color: #fff;
}

.t_flow-detail {
  max-width: 1360px;
  margin: 0 auto;
  padding: 45px;
  display: none;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.t_flow-detail::before {
  position: absolute;
  content: "";
  background-color: #dfe4e8;
  width: 5px;
  height: 100px;
  top: 0;
}

@media screen and (max-width: 767px) {
  .t_flow-detail::before {
    height: 65px;
  }
}

.t_flow-detail.is-active {
  display: flex;
}

@media screen and (max-width: 767px) {
  .t_flow-detail {
    flex-direction: column;
    padding: 24px 20px;
  }
}

.t_flow-detail-body {
  flex: 1;
  padding: 70px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .t_flow-detail-body {
    padding: 0;
  }
}

.t_flow-detail-body .step-label {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #224981;
  letter-spacing: 0.1em;
  line-height: 1;
  position: absolute;
  top: 45px;
}

@media screen and (max-width: 767px) {
  .t_flow-detail-body .step-label {
    top: 15px;
  }
}

.t_flow-detail-body .step-label .num {
  font-size: 30px;
}

.t_flow-detail-body h3 {
  font-size: 26px;
  font-weight: 700;
  color: #044396;
  letter-spacing: 0.06em;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .t_flow-detail-body h3 {
    font-size: 18px;
    margin-left: 65px;
    margin-bottom: 20px;
  }
}

.t_flow-detail-body p {
  font-size: 18px;
  font-weight: 700;
  color: #343434;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .t_flow-detail-body p {
    font-size: 16px;
    line-height: 1.6;
  }
}

.t_flow-detail-img {
  max-width: 600px;
  width: 100%;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .t_flow-detail-img {
    width: 100%;
    height: 220px;
    margin-top: 20px;
  }
}

.t_flow-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t_faq {
  padding: 280px 0;
  position: relative;
}

@media screen and (max-width: 767px) {
  .t_faq {
    padding: 80px 0;
  }
}

.t_faq::after {
  position: absolute;
  content: "";
  background: url(../img/bg-white-bottom.png) left top/100% 100% no-repeat;
  width: 100%;
  height: 5.2083vw;
  bottom: -5.2083vw;
  left: 50%;
  transform: translateX(-50%);
}

.t_faq .sec-ttl .en {
  background: linear-gradient(to right, #044396, #56c1e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 90px;
}

@media screen and (max-width: 767px) {
  .t_faq .sec-ttl .en {
    font-size: 52px;
  }
}

.t_faq .sec-ttl .arrow span {
  padding-left: 0;
}

.t_faq .sec-ttl .arrow::before {
  display: none;
}

.t_faq-list {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
}

.t_faq-item {
  border-bottom: 1px solid #dddddd;
}

.t_faq-item:first-child {
  border-top: 1px solid #dddddd;
}

.t_faq-item.is-open .t_faq-answer {
  display: block;
}

.t_faq-item.is-open .t_faq-question .q-mark,
.t_faq-item.is-open .t_faq-question .txt {
  color: #224981;
}

.t_faq-item.is-open .t_faq-icon i {
  transform: rotate(90deg);
  color: #224981;
}

.t_faq-question {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 10px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .t_faq-question {
    gap: 15px;
    padding: 18px 10px;
  }
}

.t_faq-question .q-mark {
  flex-shrink: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #084999;
  line-height: 1;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .t_faq-question .q-mark {
    font-size: 22px;
  }
}

.t_faq-question .txt {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  color: #343434;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .t_faq-question .txt {
    font-size: 16px;
  }
}

.t_faq-icon {
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.t_faq-icon i {
  font-size: 18px;
  color: #707070;
  transition: all 0.3s ease;
}

.t_faq-answer {
  display: none;
  background-color: #e3e7eb;
  padding: 40px 62px;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  .t_faq-answer {
    padding: 15px;
  }
}

.t_faq-answer p {
  font-size: 16px;
  color: #343434;
  font-weight: 600;
  line-height: 1.9;
}

@media screen and (max-width: 767px) {
  .t_faq-answer p {
    line-height: 1.5;
  }
}

.t_message {
  padding: 180px 0 300px;
  background: url(../img/bg-message.webp) center center/cover no-repeat;
}

@media screen and (max-width: 767px) {
  .t_message {
    padding: 80px 0 150px;
    background: url(../img/bg-message.webp) 20% center/cover no-repeat;
  }
}

.t_message-inner {
  display: flex;
  flex-direction: row-reverse;
  gap: 60px;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .t_message-inner {
    flex-direction: column;
    gap: 30px;
  }
}

.t_message-body {
  width: 47%;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .t_message-body {
    width: 100%;
  }
}

.t_message-body h2 {
  display: inline-block;
  font-size: 45px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(to top right, #044396, #2f85bd);
  margin-bottom: 20px;
  padding: 5px 30px;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  .t_message-body h2 {
    font-size: 22px;
    padding: 4px 16px;
  }
}

.t_message-body p {
  font-size: 18px;
  color: #ffffff;
  line-height: 2;
  margin-bottom: 20px;
  padding-left: 50px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .t_message-body p {
    font-size: 15px;
    padding-left: 0;
    margin-bottom: 30px;
  }
}

.t_message-body .name {
  display: flex;
  justify-content: right;
  align-items: end;
  font-weight: 500;
  color: #ffffff;
}

.t_message-body .name span {
  display: block;
}

.t_message-body .name span img {
  width: 150px;
}

.t_message .t_meaage-btn {
  display: flex;
  justify-content: right;
  margin-right: 60px;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .t_message .t_meaage-btn {
    justify-content: center;
    margin-right: 0;
  }
}

/* ===============================================
# TOPページトピックス
=============================================== */
.t_topics {
  padding: 150px 0 200px;
  max-width: 1360px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .t_topics {
    padding: 50px 0;
  }
}

.t_topics .sec-ttl {
  display: flex;
  gap: 50px;
}

@media screen and (max-width: 767px) {
  .t_topics .sec-ttl {
    flex-direction: column;
    gap: 0;
    justify-content: left;
  }
}

.t_topics .sec-ttl .en {
  font-size: 90px;
}

@media screen and (max-width: 767px) {
  .t_topics .sec-ttl .en {
    font-size: 32px;
    text-align: left;
  }
}

.t_topics .sec-ttl .arrow {
  justify-content: left;
}

.t_topics .sec-ttl .arrow span {
  padding-left: 70px;
}

@media screen and (max-width: 767px) {
  .t_topics .sec-ttl .arrow span {
    padding-left: 50px;
  }
}

.t_topics .wrapper {
  border-top: 1px solid #C9C9C7;
}

.t_topics .wrapper .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #C9C9C7;
  gap: 50px;
}

@media screen and (max-width: 767px) {
  .t_topics .wrapper .item {
    flex-direction: column-reverse;
    gap: 20px;
  }
}

.t_topics .wrapper .item .content .meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.t_topics .wrapper .item .content .meta .topics_cat {
  display: inline-block;
  color: #000000;
  font-weight: 600;
  letter-spacing: .03em;
  background-color: #ffffff;
  border: 1px solid #C9C9C7;
  border-radius: 999px;
  padding: 2px 20px;
  font-size: 14px;
}

.t_topics .wrapper .item .content .item_ttl {
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 2;
  color: #000000;
  margin-top: 20px;
}

.t_topics .wrapper .item .image img {
  max-width: 180px;
  aspect-ratio: 180/120;
  object-fit: cover;
}

.t_topics .t_topics-btn {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.t_topics .slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.t_topics .slick-dots li button {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #C9C9C7;
  border: none;
  font-size: 0;
  padding: 0;
  cursor: pointer;
}

.t_topics .slick-dots li button::before {
  display: none;
}

.t_topics .slick-dots li.slick-active button {
  background: linear-gradient(to top right, #044396, #2f85bd);
}

.t_area {
  padding: 150px 0 270px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .t_area {
    padding: 0px 0 60px;
  }
}

.t_area-inner {
  display: flex;
  gap: 60px;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .t_area-inner {
    flex-direction: column;
    gap: 30px;
  }
}

.t_area-map {
  position: absolute;
  width: 880px;
  top: -35%;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .t_area-map {
    position: static;
    width: 100%;
  }
}

.t_area-body {
  width: 51.71%;
  margin-left: auto;
  position: relative;
}

@media screen and (max-width: 767px) {
  .t_area-body {
    width: 100%;
    margin-left: 0;
  }
}

.t_area-body .sec-ttl {
  text-align: left;
  font-weight: 500;
  margin-bottom: 35px;
}

@media screen and (max-width: 767px) {
  .t_area-body .sec-ttl {
    margin-bottom: 20px;
  }
}

.t_area-body .sec-ttl .en {
  font-size: 90px;
}

@media screen and (max-width: 767px) {
  .t_area-body .sec-ttl .en {
    font-size: 32px;
  }
}

.t_area-body .sec-ttl .arrow {
  justify-content: left;
}

.t_area-body p {
  font-size: 18px;
  color: #343434;
  font-weight: 600;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .t_area-body p {
    font-size: 15px;
  }
}

.t_area-body .area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.t_area-body .area-list li {
  background-color: #e8eef8;
  color: #224981;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
}

.p_t_area .bnr_wrapper {
  position: relative;
  display: flex;
  gap: 20px;
  z-index: 2;
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .p_t_area .bnr_wrapper {
    flex-direction: column;
    margin-bottom: 20px;
  }
}

.p_t_area .bnr_wrapper .item {
  flex: 1;
}

@media screen and (max-width: 767px) {
  .p_t_area .bnr_wrapper .item img {
    width: 80%;
    margin: 0 auto;
  }
}

.p_t_area .t_area-map {
  top: 0;
}

.footer {
  background-color: #e8eef8;
  padding: 130px 0 0;
  width: 96.88%;
  margin: 0 auto;
  border-radius: 10px 10px 0 0;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 50px 0 0;
    width: 100%;
    border-radius: 0;
    margin-bottom: 60px;
  }
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 50px;
}

@media screen and (max-width: 767px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.footer-logo {
  width: 370px;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .footer-logo {
    width: 260px;
  }
}

.footer-tel {
  flex-shrink: 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer-tel {
    padding-right: 0;
    border-right: none;
  }
}

.footer-tel-num {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #707070;
  line-height: 1;
  padding-bottom: 5px;
}

@media screen and (max-width: 767px) {
  .footer-tel-num {
    justify-content: center;
  }
}

.footer-tel-num i {
  color: #224981;
  font-size: 28px;
}

.footer-tel-num a {
  font-size: 37px;
  font-weight: 600;
  color: #414141;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
  .footer-tel-num a {
    font-size: 24px;
  }
}

.footer-tel-time {
  font-size: 19px;
  color: #363636;
  margin-top: 4px;
}

.footer-contact-wrap {
  flex-shrink: 0;
}

.footer-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #074799;
  color: #ffffff;
  padding: 20px 60px;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.footer-contact-btn i {
  font-size: 20px;
}

.footer-contact-btn:hover {
  background-color: #1a3b6e;
}

@media screen and (max-width: 767px) {
  .footer-contact-btn {
    width: 100%;
    padding: 10px 30px;
    font-size: 18px;
  }
}

.footer-nav {
  flex: 1;
}

@media screen and (max-width: 767px) {
  .footer-nav {
    width: 100%;
  }
}

.footer-nav ul {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 12px 48px;
  justify-content: end;
}

@media screen and (max-width: 767px) {
  .footer-nav ul {
    grid-template-columns: repeat(2, 1fr);
    justify-content: start;
    gap: 0;
  }
}

@media screen and (max-width: 767px) {
  .footer-nav li {
    border-bottom: 1px solid rgba(34, 73, 129, 0.15);
  }
}

.footer-nav a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #363636;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .footer-nav a {
    padding: 10px 0;
    text-align: center;
  }
}

.footer-nav a:hover {
  color: #224981;
}

.footer-copy {
  margin-top: 60px;
  padding: 16px 0;
  text-align: center;
  font-size: 13px;
  color: #707070;
}

@media screen and (max-width: 767px) {
  .footer-copy {
    margin-top: 0;
  }
}

.cta-fixed {
  display: none;
}

@media screen and (max-width: 767px) {
  .cta-fixed {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }
}

.cta-fixed a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  gap: 4px;
}

.cta-fixed a.cta-tel {
  background-color: #224981;
}

.cta-fixed a.cta-contact {
  background-color: #1a3b6e;
}

.cta-fixed a.cta-line {
  background-color: #06c755;
}

.cta-fixed a.cta-estimate {
  background-color: #f5a623;
}

.cta-fixed a i {
  font-size: 18px;
}

/* ===============================================
# 下層共通パーツ
=============================================== */
.published {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #adadad;
}

@media screen and (max-width: 767px) {
  .published {
    font-size: 14px;
  }
}

.cat {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to top right, #044396, #2f85bd);
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 10px 60px;
}

@media screen and (max-width: 767px) {
  .cat {
    font-size: 14px;
    padding: 5px 30px;
  }
}

.more_btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}

.more_btn i {
  margin-left: 5px;
}

.btn_back {
  text-align: center;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .btn_back {
    margin-top: 40px;
  }
}

.btn_back a {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  background-color: #074799;
  padding: 15px 100px 15px 60px;
  border-radius: 999px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .btn_back a {
    font-size: 16px;
  }
}

.btn_back a::after {
  position: absolute;
  content: "";
  display: inline-block;
  background: url(../img/arrow-white.png) center center/contain no-repeat;
  width: 36px;
  height: 16px;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .btn_back a::after {
    right: 24px;
    width: 28px;
  }
}

.mv_common {
  position: relative;
  background: url(../img/bg-mv.webp) center center/cover no-repeat;
}

.mv_common .wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 180px 60px 50px;
}

@media screen and (max-width: 767px) {
  .mv_common .wrapper {
    flex-direction: column;
    padding: 40px 0 10px;
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .mv_common .left {
    align-self: baseline;
  }
}

.mv_common .left .sec_ttl-common .en_ttl {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 120px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  .mv_common .left .sec_ttl-common .en_ttl {
    font-size: 32px;
  }
}

.mv_common .left .sec_ttl-common .ja_ttl {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 12px;
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 16px;
}

@media screen and (max-width: 767px) {
  .mv_common .left .sec_ttl-common .ja_ttl {
    margin-top: 0;
  }
}

.mv_common .left .sec_ttl-common .ja_ttl::before {
  content: "";
  display: inline-block;
  background: url(../img/arrow-white.png) center center/contain no-repeat;
  width: 36px;
  height: 16px;
}

@media screen and (max-width: 767px) {
  .mv_common .left .sec_ttl-common .ja_ttl {
    font-size: 15px;
  }
}

.mv_common .right {
  padding-bottom: 6px;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .breadcrumb li {
    font-size: 12px;
  }
}

.breadcrumb li a {
  color: #ffffff;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.breadcrumb li a:hover {
  opacity: 1;
}

.breadcrumb li a i {
  font-size: 18px;
}

.breadcrumb li .sep {
  opacity: 0.6;
}

.breadcrumb li .sep i {
  font-size: 16px;
}

.breadcrumb li span:not(.sep) {
  opacity: 0.9;
}

/* ===============================================
# ページネーション
=============================================== */
.pagination {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 30px;
  }
}

.pagination ul.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination a.page-numbers,
.pagination span.page-numbers {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  background-color: #dedede;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .pagination a.page-numbers,
  .pagination span.page-numbers {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
}

.pagination a.page-numbers.current,
.pagination span.page-numbers.current {
  background: linear-gradient(to top right, #044396, #2f85bd);
}

.pagination span.page-numbers.dots {
  background-color: transparent;
  width: 48px;
  height: 72px;
  color: #333;
  font-size: 28px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .pagination span.page-numbers.dots {
    width: 25px;
    height: 30px;
    font-size: 18px;
  }
}

/* ===============================================
# サイドバー
=============================================== */
.sidebar {
  width: 22.78%;
}

@media screen and (max-width: 767px) {
  .sidebar {
    width: 100%;
  }
}

.sidebar .sec-ttl {
  margin-bottom: 30px;
}

.sidebar .sec-ttl .arrow {
  display: inline-flex;
  justify-content: right;
}

.sidebar .sec-ttl .arrow::before {
  left: 0;
  width: 43px;
  height: 18px;
}

.sidebar .sec-ttl .arrow span {
  font-size: 22px;
  padding-left: 60px;
}

.sidebar .cat_list {
  border-top: 1px dotted #707070;
}

.sidebar .cat_list li a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  padding: 20px;
  border-bottom: 1px dotted #707070;
}

@media screen and (max-width: 767px) {
  .sidebar .cat_list li a {
    font-size: 15px;
    padding: 15px;
  }
}

.sidebar .cat_list li.is-current a {
  color: #fff;
  background: linear-gradient(to top right, #044396, #2f85bd);
}

/* ===============================================
# サービスページ
=============================================== */
.service {
  padding-top: 40px;
}

@media screen and (max-width: 767px) {
  .service {
    padding-bottom: 60px;
  }
}

.service_ttl {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .service_ttl {
    flex-direction: column;
    gap: 0;
  }
}

.service_ttl .en_ttl {
  font-size: 90px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #044396;
}

@media screen and (max-width: 767px) {
  .service_ttl .en_ttl {
    font-size: 40px;
    line-height: 1;
  }
}

.service_ttl .diver {
  background-color: #044396;
  width: 100%;
  height: 2px;
}

@media screen and (max-width: 767px) {
  .service_ttl .diver {
    display: none;
  }
}

.service_ttl .ja_ttl {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
  color: #044396;
}

@media screen and (max-width: 767px) {
  .service_ttl .ja_ttl {
    font-size: 18px;
  }
}

.service_content {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .service_content {
    gap: 50px;
    margin-top: 40px;
  }
}

.service_content .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

@media screen and (max-width: 767px) {
  .service_content .item {
    flex-direction: column !important;
    gap: 20px;
  }
}

.service_content .item:nth-child(even) {
  flex-direction: row-reverse;
  background-color: #eff3f8;
  padding: 30px;
}

@media screen and (max-width: 767px) {
  .service_content .item:nth-child(even) {
    padding: 10px;
  }
}

.service_content .item .body {
  width: 62.03%;
}

@media screen and (max-width: 767px) {
  .service_content .item .body {
    width: 100%;
  }
}

.service_content .item .body .item_ttl span {
  background: linear-gradient(to top right, #56c1e1, #287ab7);
  color: #ffffff;
  padding: 5px 25px;
  border-radius: 5px;
  font-size: 45px;
  font-weight: 600;
  margin-left: 50px;
}

@media screen and (max-width: 767px) {
  .service_content .item .body .item_ttl span {
    display: inline-block;
    font-size: 22px;
    padding: 4px 14px;
    margin-left: 16px;
    margin-top: 5px;
  }
}

.service_content .item .body .item_ttl span:first-child {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .service_content .item .body .item_ttl span:first-child {
    margin-top: 0;
  }
}

.service_content .item .body .item_en_ttl {
  font-size: 20px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.06em;
  color: #084999;
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .service_content .item .body .item_en_ttl {
    font-size: 15px;
    margin-top: 12px;
  }
}

.service_content .item .body .txt {
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
  color: #343434;
  padding: 30px 0 0 40px;
}

@media screen and (max-width: 767px) {
  .service_content .item .body .txt {
    font-size: 15px;
    padding: 16px 0 0 0;
    line-height: 1.8;
  }
}

.service_content .item .body .txt span {
  font-size: 16px;
  color: #606060;
}

@media screen and (max-width: 767px) {
  .service_content .item .body .txt span {
    font-size: 14px;
  }
}

.service_content .item .image {
  width: 33.54%;
}

@media screen and (max-width: 767px) {
  .service_content .item .image {
    width: 100%;
  }
}

/* ===============================================
# 料金ページ
=============================================== */
.price {
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .price {
    padding: 60px 0;
  }
}

.price_content {
  background-color: #eff3f8;
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

@media screen and (max-width: 767px) {
  .price_content {
    padding: 15px;
    gap: 20px;
  }
}

.price_content .item {
  display: flex;
  align-items: center;
  background-color: #ffffff;
}

@media screen and (max-width: 767px) {
  .price_content .item {
    flex-direction: column-reverse;
  }
}

.price_content .item:nth-child(even) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .price_content .item:nth-child(even) {
    flex-direction: column-reverse;
  }
}

.price_content .item .image {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .price_content .item .image {
    width: 100%;
  }
}

.price_content .item .body {
  width: 50%;
  padding: 60px;
}

@media screen and (max-width: 767px) {
  .price_content .item .body {
    width: 100%;
    padding: 15px;
  }
}

.price_content .item .body .type {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #aab9cb;
}

.price_content .item .body .type .num {
  font-size: 20px;
}

.price_content .item .body .item_ttl {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #044396;
}

@media screen and (max-width: 767px) {
  .price_content .item .body .item_ttl {
    font-size: 18px;
    line-height: 1.2;
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .price_content .item .body .list {
    margin-top: 15px;
  }
}

.price_content .item .body .list dl {
  display: flex;
  justify-content: space-between;
  border-top: 1px dotted #707070;
  font-size: 20px;
  font-weight: 600;
  padding: 15px;
}

@media screen and (max-width: 767px) {
  .price_content .item .body .list dl {
    font-size: 16px;
    padding: 5px;
  }
}

.price_content .item .body .list dl:first-child {
  border-top: none;
}

.price_content .item .body .list dl dt {
  color: #343434;
}

.price_content .item .body .list dl dd {
  color: #044396;
}

.price_content .item .body .read {
  font-weight: 600;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .price_content .item .body .read {
    margin-top: 15px;
    font-size: 14px;
  }
}

/* ===============================================
# 会社概要ページ
=============================================== */
.p_company {
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .p_company {
    padding: 60px 0;
  }
}

@media screen and (max-width: 767px) {
  .p_company .message {
    padding-bottom: 80px;
  }
}

.p_company .message .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .p_company .message .wrapper {
    flex-direction: column;
  }
}

.p_company .message .wrapper .image {
  width: 39.24%;
  position: relative;
  z-index: -2;
}

@media screen and (max-width: 767px) {
  .p_company .message .wrapper .image {
    width: 100%;
  }
}

.p_company .message .wrapper .image img {
  width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .p_company .message .wrapper .image img {
    width: 60%;
  }
}

.p_company .message .wrapper .content {
  width: 54.81%;
}

@media screen and (max-width: 767px) {
  .p_company .message .wrapper .content {
    width: 100%;
  }
}

.p_company .message .wrapper .content .message_ttl {
  display: inline-block;
  position: relative;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .p_company .message .wrapper .content .message_ttl {
    display: block;
    text-align: center;
  }
}

.p_company .message .wrapper .content .message_ttl .en_ttl {
  font-size: 90px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #f1f6f7;
}

@media screen and (max-width: 767px) {
  .p_company .message .wrapper .content .message_ttl .en_ttl {
    font-size: 62px;
  }
}

.p_company .message .wrapper .content .message_ttl .ja_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #363636;
}

@media screen and (max-width: 767px) {
  .p_company .message .wrapper .content .message_ttl .ja_ttl {
    font-size: 14px;
    white-space: nowrap;
  }
}

.p_company .message .wrapper .content .sub_ttl {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .p_company .message .wrapper .content .sub_ttl {
    font-size: 18px;
  }
}

.p_company .message .wrapper .content .txt {
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
  color: #343434;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .p_company .message .wrapper .content .txt {
    font-size: 15px;
    margin-top: 15px;
  }
}

.p_company .infomation {
  padding: 130px 0;
}

@media screen and (max-width: 767px) {
  .p_company .infomation {
    padding: 60px 0;
  }
}

.p_company .infomation .sec-ttl {
  text-align: left;
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .p_company .infomation .sec-ttl {
    margin-bottom: 40px;
  }
}

.p_company .infomation .sec-ttl .en {
  font-size: 90px;
}

@media screen and (max-width: 767px) {
  .p_company .infomation .sec-ttl .en {
    font-size: 32px;
  }
}

.p_company .infomation .sec-ttl .arrow {
  justify-content: left;
}

.p_company .infomation .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  gap: 20px;
  padding: 70px;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  .p_company .infomation .wrapper {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }
}

.p_company .infomation .wrapper .content {
  width: 49.83%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

@media screen and (max-width: 767px) {
  .p_company .infomation .wrapper .content {
    width: 100%;
    gap: 20px;
  }
}

.p_company .infomation .wrapper .content dl {
  display: flex;
  font-size: 18px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .p_company .infomation .wrapper .content dl {
    font-size: 15px;
  }
}

.p_company .infomation .wrapper .content dl dt {
  width: 130px;
  color: #044396;
}

@media screen and (max-width: 767px) {
  .p_company .infomation .wrapper .content dl dt {
    width: 100px;
  }
}

.p_company .infomation .wrapper .content dl dd {
  width: calc(100% - 130px);
}

@media screen and (max-width: 767px) {
  .p_company .infomation .wrapper .content dl dd {
    width: calc(100% - 100px);
  }
}

.p_company .infomation .wrapper .image {
  width: 45.3%;
}

@media screen and (max-width: 767px) {
  .p_company .infomation .wrapper .image {
    width: 100%;
    display: none;
  }
}

.p_company .map {
  padding: 250px 0 0;
}

@media screen and (max-width: 767px) {
  .p_company .map {
    padding: 60px 0 0;
  }
}

.p_company .map .image_wrapper {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p_company .map .image_wrapper {
    gap: 6px;
  }
}

.p_company .map .image_wrapper::before {
  position: absolute;
  content: "";
  background: url(../img/service-label.webp) center center/cover no-repeat;
  width: 81.0416vw;
  height: 31.822916vw;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media screen and (max-width: 767px) {
  .p_company .map .image_wrapper::before {
    width: 100.0416vw;
    height: 50.822916vw;
  }
}

.p_company .map .image_wrapper.is-label-visible::before {
  clip-path: inset(0 0% 0 0);
}

.p_company .map .image_wrapper .img {
  flex: 1;
  position: relative;
}

.p_company .map .image_wrapper .img:nth-child(even) {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .p_company .map .image_wrapper .img:nth-child(even) {
    margin-top: 10px;
  }
}

.p_contact {
  padding: 100px 0 80px;
}

@media screen and (max-width: 767px) {
  .p_contact {
    padding: 40px 0 80px;
  }
}

.p_contact .read {
  margin-bottom: 200px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
  color: #343434;
}

@media screen and (max-width: 767px) {
  .p_contact .read {
    margin-bottom: 60px;
    font-size: 14px;
    text-align: justify;
  }
}

.p_contact .wrapper {
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .p_contact .wrapper {
    padding: 50px 0;
  }
}

.p_contact .wrapper .box {
  background-color: #ffffff;
  padding: 70px 70px 100px;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  .p_contact .wrapper .box {
    padding: 30px 20px 40px;
  }
}

.p_contact-form .form-top {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .p_contact-form .form-top {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 0;
  }
}

.p_contact-form .form-top .image {
  width: 45%;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .p_contact-form .form-top .image {
    display: none;
    width: 100%;
  }
}

.p_contact-form .form-top .image img {
  border-radius: 4px;
  width: 100%;
}

.p_contact-form .form-top .form-rows {
  flex: 1;
}

@media screen and (max-width: 767px) {
  .p_contact-form .form-rows {
    width: 100%;
  }
}

.p_contact-form .form-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 7px 0;
}

@media screen and (max-width: 767px) {
  .p_contact-form .form-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 10px 0;
  }
}

.p_contact-form .form-row--textarea {
  align-items: flex-start;
  padding: 20px 0;
}

.p_contact-form .form-row--checkbox {
  align-items: flex-start;
  padding: 20px 0;
}

.p_contact-form .form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 160px;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .p_contact-form .form-label {
    width: auto;
  }
}

.p_contact-form .label-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.p_contact-form .label-icon--required {
  background-color: #224981;
}

.p_contact-form .label-icon--optional {
  border: 2px solid #707070;
  background-color: transparent;
}

.p_contact-form .label-text {
  font-size: 18px;
  font-weight: 600;
  color: #044396;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .p_contact-form .label-text {
    font-size: 16px;
  }
}

.p_contact-form .form-field {
  flex: 1;
  width: 100%;
}

.p_contact-form input[type="text"],
.p_contact-form input[type="email"],
.p_contact-form input[type="tel"] {
  width: 100%;
  height: 70px;
  background-color: #f5f5f5;
  border: 1px solid transparent;
  padding: 0 16px;
  font-size: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #333333;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .p_contact-form input[type="text"],
  .p_contact-form input[type="email"],
  .p_contact-form input[type="tel"] {
    height: 40px;
  }
}

.p_contact-form input[type="text"]:focus,
.p_contact-form input[type="email"]:focus,
.p_contact-form input[type="tel"]:focus {
  outline: none;
  border-color: #224981;
  background-color: #ffffff;
}

.p_contact-form textarea {
  width: 100%;
  background-color: #f5f5f5;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #333333;
  resize: vertical;
  transition: all 0.3s ease;
}

.p_contact-form textarea:focus {
  outline: none;
  border-color: #224981;
  background-color: #ffffff;
}

.p_contact-form .wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px 24px;
  justify-content: start;
}

@media screen and (max-width: 767px) {
  .p_contact-form .wpcf7-checkbox {
    grid-template-columns: repeat(1, auto);
    gap: 10px;
  }
}

.p_contact-form .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  margin-left: 0;
  font-weight: 600;
  gap: 5px;
}

.p_contact-form .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #333333;
}

@media screen and (max-width: 767px) {
  .p_contact-form .wpcf7-list-item label {
    font-size: 16px;
  }
}

.p_contact-form .wpcf7-list-item input[type="checkbox"] {
  width: 35px;
  height: 35px;
  accent-color: #224981;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  border: none;
  background-color: #f5f5f5;
  border-radius: 3px;
}

@media screen and (max-width: 767px) {
  .p_contact-form .wpcf7-list-item input[type="checkbox"] {
    width: 25px;
    height: 25px;
  }
}

.p_contact-form .wpcf7-list-item input[type="checkbox"]:checked {
  background-color: #224981;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M13.3 3.3L6 10.6 2.7 7.3 1.3 8.7l4.7 4.7 8.7-8.7z'/%3E%3C/svg%3E");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}

.p_contact-form .form-privacy {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .p_contact-form .form-privacy {
    margin-top: 0;
  }
}

.p_contact-form .form-privacy .wpcf7-acceptance label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  padding: 12px 140px;
  border: 1px solid #bcbcbc;
}

@media screen and (max-width: 767px) {
  .p_contact-form .form-privacy .wpcf7-acceptance label {
    padding: 12px 10px;
    font-size: 15px;
  }
}

.p_contact-form .form-privacy input[type="checkbox"] {
  width: 35px;
  height: 35px;
  accent-color: #224981;
  cursor: pointer;
  appearance: none;
  border: none;
  background-color: #f5f5f5;
  border-radius: 3px;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .p_contact-form .form-privacy input[type="checkbox"] {
    width: 25px;
    height: 25px;
  }
}

.p_contact-form .form-privacy input[type="checkbox"]:checked {
  background-color: #224981;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M13.3 3.3L6 10.6 2.7 7.3 1.3 8.7l4.7 4.7 8.7-8.7z'/%3E%3C/svg%3E");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}

.p_contact-form .form-privacy a {
  color: #224981;
  text-decoration: underline;
}

.p_contact-form .form-note {
  font-size: 18px;
  font-weight: 600;
  color: #343434;
  text-align: center;
  margin-top: 30px;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .p_contact-form .form-note {
    font-size: 14px;
    text-align: justify;
    margin-top: 10px;
  }
}

.p_contact-form .form-submit {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .p_contact-form .form-submit {
    margin-top: 30px;
  }
}

.p_contact-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 65px;
  background-color: #074799;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

@media screen and (max-width: 767px) {
  .p_contact-form .wpcf7-submit {
    width: 100%;
    justify-content: center;
    font-size: 17px;
    padding: 14px 30px;
  }
}

.p_contact-form .wpcf7-submit i {
  font-size: 24px;
}

.p_contact-form .wpcf7-submit:hover {
  background-color: #1a3b6e;
}

.wpcf7-spinner {
  display: none;
}

.privacy-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}

.privacy-modal.is-open {
  display: flex;
}

.privacy-modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.privacy-modal-inner {
  position: relative;
  z-index: 1;
  width: 860px;
  max-width: calc(100% - 40px);
  max-height: 80vh;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.privacy-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #707070;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.privacy-modal-close:hover {
  background-color: #f4f4f4;
  color: #333333;
}

.privacy-modal-body {
  padding: 48px 48px 40px;
  overflow-y: auto;
}

@media screen and (max-width: 767px) {
  .privacy-modal-body {
    padding: 40px 20px 30px;
  }
}

.privacy-modal-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: #224981;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #224981;
}

.privacy-modal-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #224981;
  margin: 24px 0 8px;
}

.privacy-modal-body p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 8px;
}

.privacy-modal-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 8px;
}

.privacy-modal-body ul li {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
  color: #333333;
}

/* ===============================================
# 投稿一覧
=============================================== */
.archive_common {
  padding: 160px 0 100px;
}

@media screen and (max-width: 767px) {
  .archive_common {
    padding: 60px 0 80px;
  }
}

.archive_common .wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .archive_common .wrapper {
    flex-direction: column;
    gap: 60px;
  }
}

.archive_common .wrapper .left {
  width: 70.89%;
}

@media screen and (max-width: 767px) {
  .archive_common .wrapper .left {
    width: 100%;
  }
}

.archive_common .wrapper .left .item_wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.archive_common .wrapper .left .item_wrap .item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px 60px;
  gap: 40px;
  background-color: #eff3f8;
}

@media screen and (max-width: 767px) {
  .archive_common .wrapper .left .item_wrap .item {
    flex-direction: column;
    padding: 20px 15px 40px;
    gap: 20px;
  }
}

.archive_common .wrapper .left .item_wrap .item .cat {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to top right, #044396, #2f85bd);
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 10px 60px;
}

@media screen and (max-width: 767px) {
  .archive_common .wrapper .left .item_wrap .item .cat {
    font-size: 14px;
    padding: 5px 30px;
  }
}

.archive_common .wrapper .left .item_wrap .item .image {
  max-width: 360px;
}

.archive_common .wrapper .left .item_wrap .item .image img {
  aspect-ratio: 360 / 280;
  width: 100%;
  object-fit: cover;
}

.archive_common .wrapper .left .item_wrap .item .body .item_ttl {
  font-size: clamp(20px, 1.25vw, 24px);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #0b4d9c;
}

@media screen and (max-width: 767px) {
  .archive_common .wrapper .left .item_wrap .item .body .item_ttl {
    font-size: 18px;
  }
}

.archive_common .wrapper .left .item_wrap .item .body .item_txt {
  font-size: clamp(16px, 0.9375vw, 18px);
  font-weight: 600;
  line-height: 2;
  color: #343434;
}

@media screen and (max-width: 767px) {
  .archive_common .wrapper .left .item_wrap .item .body .item_txt {
    font-size: 16px;
    line-height: 1.8;
  }
}

.archive_common .wrapper .left .item_wrap .item .body .more_btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}

.archive_common .wrapper .left .item_wrap .item .body .more_btn i {
  margin-left: 5px;
}

/* ===============================================
# 詳細ページ
=============================================== */
.single_common {
  padding: 160px 0 100px;
}

@media screen and (max-width: 767px) {
  .single_common {
    padding: 60px 0;
  }
}

.single_common .wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .single_common .wrapper {
    flex-direction: column;
    gap: 60px;
  }
}

.single_common .wrapper .left {
  width: 70.89%;
}

@media screen and (max-width: 767px) {
  .single_common .wrapper .left {
    width: 100%;
  }
}

.single_common .wrapper .left .single_ttl {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.8;
  color: #0b4d9c;
}

@media screen and (max-width: 767px) {
  .single_common .wrapper .left .single_ttl {
    font-size: 18px;
  }
}

.single_common .wrapper .left .published {
  display: block;
  text-align: right;
}

.single_common .wrapper .left .diver {
  display: block;
  width: 50%;
  height: 2px;
  background-color: #044396;
  margin-left: auto;
}

.single_common .wrapper .left .image {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .single_common .wrapper .left .image {
    margin-top: 20px;
  }
}

.single_common .wrapper .left .content {
  margin-top: 30px;
  padding: 0 30px;
}

@media screen and (max-width: 767px) {
  .single_common .wrapper .left .content {
    padding: 0;
    margin-top: 20px;
  }
}

.single_common .wrapper .left .content h2 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: linear-gradient(to top right, #044396, #2f85bd);
  color: #ffffff;
  padding: 15px 30px;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .single_common .wrapper .left .content h2 {
    font-size: 18px;
    padding: 8px 20px;
    margin-top: 20px;
  }
}

.single_common .wrapper .left .content h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: 2px dashed #094b9b;
  padding: 10px 20px;
  margin-top: 30px;
  color: #145ba5;
}

@media screen and (max-width: 767px) {
  .single_common .wrapper .left .content h3 {
    font-size: 16px;
    padding: 8px 15px;
    margin-top: 20px;
  }
}

.single_common .wrapper .left .content h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #363636;
  padding-left: 35px;
  margin-top: 20px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .single_common .wrapper .left .content h4 {
    font-size: 16px;
    margin-top: 15px;
  }
}

.single_common .wrapper .left .content h4::before {
  position: absolute;
  content: "";
  background: url(../img/arrow-blue.png) center center/cover no-repeat;
  width: 28px;
  height: 11px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.single_common .wrapper .left .content h5 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #145ba5;
  margin-top: 20px;
  border-bottom: 1px dotted #707070;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .single_common .wrapper .left .content h5 {
    font-size: 16px;
    margin-top: 15px;
  }
}

.single_common .wrapper .left .content p {
  font-size: 18px;
  font-weight: 600;
  color: #343434;
  line-height: 2;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .single_common .wrapper .left .content p {
    font-size: 15px;
  }
}

.single_common .wrapper .left .content img {
  margin-top: 30px;
}

.article_connect {
  margin-top: 160px;
}

@media screen and (max-width: 767px) {
  .article_connect {
    margin-top: 60px;
  }
}

.article_connect .connect-ttl {
  text-align: center;
  position: relative;
}

.article_connect .connect-ttl .en_ttl {
  font-size: 90px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #f1f6f7;
}

@media screen and (max-width: 767px) {
  .article_connect .connect-ttl .en_ttl {
    font-size: 48px;
  }
}

.article_connect .connect-ttl .ja_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #363636;
}

@media screen and (max-width: 767px) {
  .article_connect .connect-ttl .ja_ttl {
    font-size: 18px;
  }
}

.article_connect .connect_wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .article_connect .connect_wrapper {
    display: block;
    margin-top: 10px;
  }
  .article_connect .connect_wrapper .slick-dots {
    bottom: -28px;
  }
  .article_connect .connect_wrapper .slick-dots li button::before {
    font-size: 10px;
    color: #224981;
  }
  .article_connect .connect_wrapper .slick-dots li.slick-active button::before {
    color: #224981;
  }
}

.article_connect .connect_wrapper .item {
  display: block;
  width: calc((100% - 2.083vw) / 3);
  margin-right: 2.083vw;
  background-color: #eff3f8;
  padding: 40px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .article_connect .connect_wrapper .item {
    width: 100%;
    margin-right: 0;
    padding: 15px 15px 30px;
    margin: 0 10px;
  }
}

.article_connect .connect_wrapper .item:nth-child(3) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .article_connect .connect_wrapper .item:nth-child(3) {
    margin-right: 10px;
  }
}

.article_connect .connect_wrapper .item .image img {
  width: 100%;
  aspect-ratio: 390/280;
  object-fit: cover;
}

.article_connect .connect_wrapper .item .body {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .article_connect .connect_wrapper .item .body {
    margin-top: 10px;
  }
}

.article_connect .connect_wrapper .item .body .item_ttl {
  font-size: 22px;
  font-weight: 600;
  color: #0b4d9c;
}

@media screen and (max-width: 767px) {
  .article_connect .connect_wrapper .item .body .item_ttl {
    font-size: 16px;
  }
}

.article_connect .connect_wrapper .item .body .item_txt {
  font-weight: 600;
  color: #343434;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .article_connect .connect_wrapper .item .body .item_txt {
    font-size: 14px;
    line-height: 1.8;
  }
}

@media screen and (min-width: 768px) and (max-width: 1600px) {
  .header .inner {
    gap: 30px;
  }
  .header-nav ul {
    gap: 28px;
  }
  .header-cta-btn {
    padding: 0 20px;
    font-size: 14px;
    height: 100px;
  }
  .header-logo {
    width: 230px;
  }
  .t_fv-txt .catch {
    font-size: 36px;
  }
  .sec-ttl .en {
    font-size: 40px;
  }
  .sec-ttl--problem .en-bg {
    font-size: 72px;
  }
  .t_check .sec-ttl .en {
    font-size: 72px;
  }
  .t_flow .sec-ttl .en {
    font-size: 72px;
  }
  .t_faq {
    padding: 200px 0;
  }
  .t_faq .sec-ttl .en {
    font-size: 72px;
  }
  .t_message-body h2 {
    font-size: 36px;
  }
  .t_area {
    padding: 150px 0 180px;
  }
  .t_area-map {
    width: 700px;
  }
  .p_t_area {
    padding: 120px 0 150px;
  }
  .footer-inner {
    gap: 30px;
  }
  .footer-logo {
    width: 280px;
  }
  .footer-tel-num a {
    font-size: 30px;
  }
  .mv_common .left .sec_ttl-common .en_ttl {
    font-size: 90px;
  }
  .service_ttl .en_ttl {
    font-size: 72px;
  }
  .service_content .item .body .item_ttl span {
    font-size: 36px;
  }
  .p_company .message .wrapper .content .message_ttl .en_ttl {
    font-size: 72px;
  }
  .p_company .infomation .sec-ttl .en {
    font-size: 72px;
  }
  .article_connect .connect-ttl .en_ttl {
    font-size: 72px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
  .header .inner {
    gap: 16px;
  }
  .header-nav ul {
    gap: 18px;
  }
  .header-nav a {
    font-size: 14px;
  }
  .header-cta-btn {
    padding: 0 16px;
    font-size: 13px;
    height: 100px;
  }
  .header-cta-btn i {
    font-size: 18px;
  }
  .header-logo {
    width: 190px;
  }
  .container {
    padding: 0 30px;
  }
  .t_fv-txt .catch {
    font-size: 28px;
  }
  .sec-ttl .en {
    font-size: 34px;
  }
  .sec-ttl--problem .en-bg {
    font-size: 56px;
  }
  .sec-ttl--problem .ja {
    font-size: 24px;
  }
  .t_trouble {
    padding: 80px 0 160px;
  }
  .t_trouble-list {
    gap: 20px;
    margin-top: 70px;
  }
  .t_trouble-item {
    padding: 0 30px 30px;
  }
  .t_trouble-item .icon {
    width: 240px;
    margin-top: -50px;
  }
  .t_trouble-item h3 {
    font-size: 20px;
  }
  .t_check .sec-ttl .en {
    font-size: 56px;
  }
  .t_check-list {
    gap: 30px;
  }
  .t_check-item {
    padding: 36px 30px 28px;
  }
  .t_check-item-body h3 {
    font-size: 20px;
  }
  .t_service {
    padding: 160px 0;
  }
  .t_service-inner {
    gap: 40px;
  }
  .t_service-left .badge {
    font-size: 32px;
  }
  .t_service-left p {
    font-size: 16px;
    padding-left: 20px;
    margin-bottom: 40px;
  }
  .t_service-left .btn-wrap a {
    width: 340px;
    font-size: 17px;
  }
  .t_flow .sec-ttl .en {
    font-size: 56px;
  }
  .t_flow-tabs {
    max-width: 100%;
  }
  .t_flow-tab {
    font-size: 15px;
    padding: 16px 8px;
  }
  .t_flow-detail {
    padding: 30px;
  }
  .t_flow-detail-body h3 {
    font-size: 20px;
  }
  .t_flow-detail-img {
    max-width: 440px;
  }
  .t_faq {
    padding: 160px 0;
  }
  .t_faq .sec-ttl .en {
    font-size: 56px;
  }
  .t_faq-question .txt {
    font-size: 16px;
  }
  .t_message {
    padding: 120px 0 200px;
  }
  .t_message-body {
    width: 52%;
  }
  .t_message-body h2 {
    font-size: 34px;
  }
  .t_message-body p {
    padding-left: 24px;
  }
  .t_area {
    padding: 80px 0 180px;
  }
  .t_area-map {
    width: 560px;
  }
  .t_area-body {
    width: 58%;
  }
  .t_area-body .sec-ttl .en {
    font-size: 56px;
  }
  .footer-inner {
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-logo {
    width: 220px;
  }
  .footer-tel-num a {
    font-size: 26px;
  }
  .footer-tel-time {
    font-size: 15px;
  }
  .footer-contact-btn {
    padding: 16px 36px;
    font-size: 17px;
  }
  .footer-nav ul {
    gap: 10px 24px;
  }
  .mv_common .wrapper {
    padding: 130px 40px 40px;
  }
  .mv_common .left .sec_ttl-common .en_ttl {
    font-size: 72px;
  }
  .mv_common .left .sec_ttl-common .ja_ttl {
    font-size: 20px;
  }
  .service_ttl .en_ttl {
    font-size: 60px;
  }
  .service_ttl .ja_ttl {
    font-size: 20px;
  }
  .service_content {
    gap: 60px;
    margin-top: 50px;
  }
  .service_content .item {
    gap: 30px;
  }
  .service_content .item .body .item_ttl span {
    font-size: 30px;
    margin-left: 30px;
  }
  .service_content .item .body .txt {
    padding: 20px 0 0 20px;
    font-size: 16px;
  }
  .price_content {
    padding: 40px;
  }
  .price_content .item .body {
    padding: 40px;
  }
  .price_content .item .body .item_ttl {
    font-size: 22px;
  }
  .price_content .item .body .list dl {
    font-size: 16px;
  }
  .p_company .message .wrapper .content .message_ttl .en_ttl {
    font-size: 60px;
  }
  .p_company .message .wrapper .content .sub_ttl {
    font-size: 24px;
  }
  .p_company .infomation .sec-ttl .en {
    font-size: 60px;
  }
  .p_company .infomation .wrapper {
    padding: 50px 40px;
  }
  .p_company .infomation .wrapper .content {
    gap: 30px;
  }
  .p_company .map {
    padding: 120px 0 0;
  }
  .p_contact .read {
    margin-bottom: 100px;
  }
  .p_contact .wrapper .box {
    padding: 50px 50px 70px;
  }
  .p_contact-form .form-top .image {
    width: 38%;
  }
  .archive_common,
  .single_common {
    padding: 80px 0 100px;
  }
  .article_connect .connect-ttl .en_ttl {
    font-size: 56px;
  }
}

@media screen and (max-width: 767px) {
  .t_topics {
    padding: 80px 0 100px;
  }
  .t_topics .wrapper {
    border-top: none;
  }
  .t_topics .wrapper .item {
    flex-direction: column-reverse;
    gap: 16px;
    padding: 20px 0;
  }
  .t_topics .wrapper .item .image img {
    max-width: 100%;
    width: 100%;
  }
}
