@charset "UTF-8";
.js-show-up {
  opacity: 0;
  transform: translate(0, 80px);
}
.js-show-up.is-show {
  opacity: 1;
  transform: none;
}

.js-show-left {
  opacity: 0;
  transform: translate(80px, 0);
}
.js-show-left.is-show {
  opacity: 1;
  transform: none;
}

.js-show-right {
  opacity: 0;
  transform: translate(-80px, 0);
}
.js-show-right.is-show {
  opacity: 1;
  transform: none;
}

html {
  box-sizing: border-box;
  font-family: "BIZ UDPMincho", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0 !important;
  scroll-behavior: smooth;
  color: #222222;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 572px) {
  html {
    font-size: 14px;
  }
}

input {
  -webkit-appearance: auto;
  -moz-appearance: auto;
       appearance: auto;
  margin: 0;
}

.container {
  overflow: hidden;
}

:root {
  --header-height: 100px;
  /* ヘッダーの高さを変数として管理 */
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

.wrap {
  margin-inline: auto;
  padding: 0 20px;
  width: min(100%, 1200px);
}

.wrap-tb {
  margin-inline: auto;
  padding: 0 20px;
  width: min(100%, 940px);
}

.wrap-tb-s {
  margin-inline: auto;
  padding: 0 20px;
  width: min(100%, 808px);
}

.tb-display {
  display: none;
}
@media screen and (max-width: 964px) {
  .tb-display {
    display: block;
  }
}

@media screen and (max-width: 964px) {
  .tb-hide {
    display: none;
  }
}

.mb-display {
  display: none;
}
@media screen and (max-width: 964px) {
  .mb-display {
    display: block;
  }
}

@media screen and (max-width: 572px) {
  .sm-hide {
    display: none;
  }
}

.sm-display {
  display: none;
}
@media screen and (max-width: 572px) {
  .sm-display {
    display: block;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.body-fadein {
  -webkit-animation: fadeIn 1.5s forwards;
          animation: fadeIn 1.5s forwards;
}

.scroll-off {
  overflow: hidden;
}

.scroll-top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  display: block flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 30px;
  right: 20px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
  transition: 0.7s;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 572px) {
  .scroll-top {
    width: 50px;
    height: 50px;
    bottom: 60px;
  }
}
.scroll-top.is-show {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  box-shadow: none;
}
.scroll-top::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-left: 2px solid #1092D4;
  border-top: 2px solid #1092D4;
  transform: rotate(45deg) translate(2px, 2px);
}

.section-title {
  text-align: center;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.section-title__en {
  color: #1092D4;
  font-size: 3.5rem;
}
@media screen and (max-width: 572px) {
  .section-title__en {
    font-size: 2.5rem;
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .section-title__en {
    font-size: 2rem;
  }
}
.section-title__ja {
  line-height: 1;
  margin-top: 1em;
  font-size: 1.125rem;
}
@media screen and (max-width: 572px) {
  .section-title__ja {
    font-size: 1rem;
  }
}

.sec-name {
  position: relative;
  font-size: 1.75rem;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 20px;
  color: #1092D4;
  margin-inline: auto;
}
@media screen and (max-width: 572px) {
  .sec-name {
    font-size: 1.5rem;
    padding: 0 0 0 10px;
  }
}
.sec-name::before {
  content: "";
  width: 1em;
  height: 1em;
  background-image: url(../image/company/icon-sec-name.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translate(0, -50%);
}

.pagination {
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .pagination {
    margin-top: 50px;
  }
}

.nav-links .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.nav-links a.page-numbers,
.nav-links .current,
.nav-links a.prev,
.nav-links a.next,
.nav-links .dots {
  width: 50px;
  height: 50px;
  background: #DCEEF9;
  color: #1092D4;
  margin-right: 1em;
  font-size: 1.25rem;
  font-weight: 400;
  transition: 0.5s;
  border-radius: 50%;
  font-weight: bold;
}
@media screen and (max-width: 572px) {
  .nav-links a.page-numbers,
.nav-links .current,
.nav-links a.prev,
.nav-links a.next,
.nav-links .dots {
    width: 40px;
    height: 40px;
    margin-right: 5px;
    font-size: 1.1rem;
  }
}

.nav-links a.page-numbers:hover {
  opacity: 0.7;
}

.nav-links .current {
  font-weight: bold;
  background-color: #1092D4;
  color: #fff;
  padding: 0;
}

/* 前への「＜」、次への「＞」 */
.nav-links a.prev,
.nav-links a.next {
  color: currentColor;
  position: relative;
  border: none;
  background-color: transparent;
}

.nav-links .dots {
  background: transparent;
  border: none;
}

.next.page-numbers {
  position: relative;
}
.next.page-numbers::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 15px;
  height: 15px;
  display: inline-block;
  background-color: #1092D4;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translate(0, -50%);
}
.next.page-numbers::after {
  content: "･･･";
  position: absolute;
  color: #1092D4;
  top: 50%;
  left: 50%;
  display: inline-block;
  transform: translate(-75%, -50%);
  font-size: 14px;
}

.prev.page-numbers {
  position: relative;
}
.prev.page-numbers::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  width: 15px;
  height: 15px;
  display: inline-block;
  background-color: #1092D4;
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
  transform: translate(0, -50%);
}
.prev.page-numbers::after {
  content: "･･･";
  position: absolute;
  color: #1092D4;
  top: 50%;
  left: 50%;
  display: inline-block;
  transform: translate(-25%, -50%);
  font-size: 14px;
}

@-webkit-keyframes loadOut {
  0% {
    transform: translateX(0%);
    opacity: 1;
    visibility: visible;
  }
  99% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    display: none;
  }
}

@keyframes loadOut {
  0% {
    transform: translateX(0%);
    opacity: 1;
    visibility: visible;
  }
  99% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    display: none;
  }
}
@-webkit-keyframes logoDisp {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes logoDisp {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
.loading {
  display: grid;
  position: fixed;
  place-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  background-color: #fff;
  -webkit-animation: loadOut 1s 2s forwards;
          animation: loadOut 1s 2s forwards;
}
.loading__logo {
  position: relative;
  width: 320px;
  opacity: 0;
  -webkit-animation: logoDisp 1.5s ease forwards;
          animation: logoDisp 1.5s ease forwards;
}
@media screen and (max-width: 572px) {
  .loading__logo {
    width: 220px;
  }
}
.loading__logo img {
  width: 100%;
}

.container {
  position: relative;
}
.container .header {
  width: 100%;
  height: 80px;
  background-color: #fff;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  font-size: 0.875rem;
  padding: 0 40px;
  z-index: 10;
}
@media screen and (max-width: 1440px) {
  .container .header {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1024px) {
  .container .header {
    height: 60px;
  }
}
.container .header__logo {
  height: 60px;
}
@media screen and (max-width: 1024px) {
  .container .header__logo {
    height: 40px;
  }
}
.container .header__logo > a {
  display: block;
  height: 100%;
  transition: 0.3s;
}
.container .header__logo > a:hover {
  opacity: 0.7;
}
.container .header__logo > a > img {
  height: 100%;
}
.container .header__agency {
  margin-left: 1em;
  padding-left: 1em;
  border-left: 1px solid #E5E7EB;
  font-size: 12px;
}
@media screen and (max-width: 572px) {
  .container .header__agency {
    display: none;
  }
}
.container .header__nav {
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .container .header__nav {
    display: none;
  }
}
.container .header__nav-list {
  display: flex;
  align-items: center;
}
.container .header__nav-list > li.is-active > a {
  color: #1092D4;
}
.container .header__nav-list > li > a {
  display: block;
  padding: 0.5em 0.6em;
  transition: 0.3s ease;
}
@media screen and (max-width: 1440px) {
  .container .header__nav-list > li > a {
    font-size: 0.875rem;
    padding: 0.5em;
  }
}
.container .header__nav-list > li > a:hover {
  color: #1092D4;
}
.container .header__nav-list .nav-contact {
  background-color: #1092D4;
  margin-left: 1em;
}
.container .header__nav-list .nav-contact > a {
  line-height: 1;
  transition: 0.3s ease;
  color: #fff;
  padding: 1em 1.5em 1em 2.75rem;
  position: relative;
}
.container .header__nav-list .nav-contact > a:hover {
  opacity: 0.7;
  color: #fff;
}
.container .header__nav-list .nav-contact > a .icon-mail {
  fill: currentColor;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translate(0, -50%);
}
.container .fv {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  overflow: hidden;
  display: flex;
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .container .fv {
    margin-top: 60px;
    height: calc(100vh - 60px);
  }
}
.container .fv__video {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}
.container .fv__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.container .fv__title {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.5;
  text-align: center;
  z-index: 2;
  padding-bottom: 1rem;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 572px) {
  .container .fv__title {
    font-size: 1.375rem;
  }
}
.container .fv__scroll {
  position: absolute;
  inset: auto auto 0 40px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  color: #fff;
  font-size: 11px;
  z-index: 2;
}
.container .fv__scroll.scroll-center {
  inset: auto 0 0;
  margin-inline: auto;
}
.container .fv__scroll.scroll-center .text {
  opacity: 0;
  visibility: hidden;
}
.container .fv__scroll .line {
  display: block;
  height: 40px;
  width: 1px;
  background-color: transparent;
  overflow: hidden;
  position: relative;
  margin: 5px auto 0;
}
.container .fv__scroll .line::before {
  content: "";
  position: absolute;
  width: 1px;
  inset: 0 0 auto 0;
  background-color: currentColor;
  opacity: 0.2;
  height: 40px;
}
.container .fv__scroll .line::after {
  content: "";
  position: absolute;
  width: 1px;
  inset: 0 0 auto 0;
  background-color: currentColor;
  -webkit-animation: border-down 3s infinite cubic-bezier(0.8, 0, 0, 1);
          animation: border-down 3s infinite cubic-bezier(0.8, 0, 0, 1);
}
@-webkit-keyframes border-down {
  0% {
    height: 0;
  }
  45% {
    height: 100%;
  }
  55% {
    height: 100%;
    top: 0;
  }
  100% {
    height: 0;
    top: 100%;
  }
}
@keyframes border-down {
  0% {
    height: 0;
  }
  45% {
    height: 100%;
  }
  55% {
    height: 100%;
    top: 0;
  }
  100% {
    height: 0;
    top: 100%;
  }
}
.container .mv {
  height: 300px;
  width: 100%;
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .container .mv {
    margin-top: 60px;
  }
}
@media screen and (max-width: 572px) {
  .container .mv {
    height: 160px;
  }
}
.container .mv__image {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.container .mv__head {
  background: linear-gradient(90deg, #1769AA 0%, #1092D4 100%);
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(50%);
  padding: 20px 40px 20px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 470px;
}
@media screen and (max-width: 572px) {
  .container .mv__head {
    width: 250px;
  }
}
.container .mv__head::before {
  content: "";
  display: block;
  height: 1px;
  background-color: #fff;
  flex: 1;
}
.container .mv__head-title .ja {
  font-size: 2.5rem;
}
@media screen and (max-width: 572px) {
  .container .mv__head-title .ja {
    font-size: 1.75rem;
    line-height: 1.2;
  }
}
.container .hamburger {
  width: 60px;
  height: 60px;
  padding: 20px 12px;
  margin-left: auto;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #1092D4;
  z-index: 30;
  display: none;
}
@media screen and (max-width: 1024px) {
  .container .hamburger {
    display: block;
  }
}
.container .hamburger.on-click .inner span:nth-child(1) {
  top: 50%;
  translate: 0 -50%;
  rotate: 390deg;
}
.container .hamburger.on-click .inner span:nth-child(2) {
  opacity: 0;
}
.container .hamburger.on-click .inner span:nth-child(3) {
  top: 50%;
  translate: 0 -50%;
  rotate: -390deg;
}
.container .hamburger .inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.container .hamburger .inner span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  transition: 0.3s;
}
.container .hamburger .inner span:nth-child(1) {
  top: 0;
}
.container .hamburger .inner span:nth-child(2) {
  top: 50%;
  translate: 0 -50%;
}
.container .hamburger .inner span:nth-child(3) {
  bottom: 0;
}
.container .hamburger .inner > p {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 572px) {
  .container .hamburger .inner > p {
    top: 115%;
    font-size: 0.875rem;
  }
}
.container .ham-menu {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  position: fixed;
  z-index: 20;
  transition: 0.3s;
  background-color: #fff;
}
.container .ham-menu.is-show {
  opacity: 1;
  visibility: visible;
}
.container .ham-menu__inner {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.container .ham-menu__logo {
  height: 70px;
  text-align: center;
}
@media screen and (max-width: 572px) {
  .container .ham-menu__logo {
    height: 50px;
  }
}
.container .ham-menu__logo > a {
  display: inline-block;
  height: 100%;
}
.container .ham-menu__logo > a > img {
  height: 100%;
}
.container .ham-menu__agency {
  margin-top: 10px;
  text-align: center;
  font-size: 0.875rem;
}
.container .ham-menu__nav {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}
.container .ham-menu__nav-list {
  width: 100%;
}
.container .ham-menu__nav-list > li:not(:first-child) {
  margin-top: 1em;
}
.container .ham-menu__nav-list > li > a {
  display: block;
  text-align: center;
}
.container .ham-menu__nav-list .nav-contact {
  background-color: #1092D4;
  width: 180px;
  margin-top: 30px !important;
  margin-inline: auto;
}
.container .ham-menu__nav-list .nav-contact > a {
  line-height: 1;
  transition: 0.3s ease;
  color: #fff;
  padding: 1em 1.5em 1em 2.75rem;
  position: relative;
  font-size: 1.125rem;
}
.container .ham-menu__nav-list .nav-contact > a:hover {
  opacity: 0.7;
  color: #fff;
}
.container .ham-menu__nav-list .nav-contact > a .icon-mail {
  fill: currentColor;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translate(0, -50%);
}

.sec-contact {
  padding: 80px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../image/bg-seccontact.jpg);
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 572px) {
  .sec-contact {
    padding: 40px 20px;
  }
}
.sec-contact__msg {
  font-size: 1.5rem;
}
.sec-contact__tel {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-top: 1.25rem;
  gap: 1rem;
}
@media screen and (max-width: 572px) {
  .sec-contact__tel {
    font-size: 2.25rem;
  }
}
.sec-contact__tel .icon-tel {
  fill: currentColor;
  width: 27px;
  height: 44px;
}
.sec-contact__btn {
  border-radius: 30px;
  display: block;
  margin: 30px auto 0;
  background-color: #F03C49;
  position: relative;
  width: 210px;
  padding: 0.75rem 0;
  gap: 10px;
  transition: 0.3s ease;
}
@media screen and (max-width: 572px) {
  .sec-contact__btn {
    margin: 20px auto 0;
  }
}
.sec-contact__btn:hover {
  opacity: 0.7;
}
.sec-contact__btn .icon-mail {
  fill: currentColor;
}

.g-map {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 572px) {
  .g-map {
    height: 300px;
  }
}
.g-map iframe {
  width: 100%;
  height: 100%;
}

.footer {
  background-color: #ECF2F5;
}
.footer__info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 0;
}
@media screen and (max-width: 964px) {
  .footer__info {
    justify-content: flex-start;
    gap: 50px;
  }
}
@media screen and (max-width: 572px) {
  .footer__info {
    flex-direction: column;
    gap: 20px;
    padding: 30px 0;
  }
}
.footer__info .l-left > h2 {
  font-size: 1.5rem;
  font-weight: bold;
}
.footer__info .l-left > h2 > a {
  transition: 0.3s ease;
  display: block;
}
.footer__info .l-left > h2 > a:hover {
  opacity: 0.7;
}
.footer__info .l-left > p {
  margin-top: 2rem;
  font-size: 0.875rem;
}
@media screen and (max-width: 572px) {
  .footer__info .l-left > p {
    margin-top: 20px;
  }
}
.footer__info .l-right {
  display: flex;
  gap: 130px;
  align-items: flex-start;
  font-size: 0.875rem;
}
.footer__info .l-right > a {
  display: block;
  transition: 0.3s ease;
  border-bottom: 1px solid currentColor;
}
@media screen and (max-width: 964px) {
  .footer__info .l-right > a {
    display: none;
  }
}
.footer__info .l-right > a:hover {
  opacity: 0.7;
}
.footer__nav {
  padding: 40px 0;
  border-top: 1px solid currentColor;
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}
@media screen and (max-width: 1024px) {
  .footer__nav {
    flex-direction: column-reverse;
    justify-content: center;
    gap: 30px;
  }
}
@media screen and (max-width: 572px) {
  .footer__nav {
    gap: 20px;
    padding: 30px 0;
  }
}
.footer__nav .copyright {
  text-align: center;
}
.footer__nav .l-nav > ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .footer__nav .l-nav > ul {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.footer__nav .l-nav > ul > li > a {
  display: block;
  border-bottom: 1px solid currentColor;
}
.footer__nav .l-nav > ul > li > a:hover {
  opacity: 0.7;
}

.main .vision {
  padding: 80px 0 120px;
  position: relative;
}
@media screen and (max-width: 572px) {
  .main .vision {
    padding: 50px 0;
  }
}
.main .vision::before {
  content: "";
  display: block;
  width: 35%;
  height: 600px;
  background-color: #E9F8FF;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 572px) {
  .main .vision::before {
    height: 250px;
  }
}
.main .vision__msg {
  font-size: 1.5rem;
  text-align: center;
}
.main .vision__video {
  width: 100%;
  margin-top: 30px;
  position: relative;
}
@media screen and (max-width: 572px) {
  .main .vision__video {
    margin-top: 20px;
  }
}
.main .vision__video > video {
  width: 100%;
  height: auto;
}
.main .topics {
  background-color: #E9F8FF;
  position: relative;
  padding-bottom: 80px;
}
@media screen and (max-width: 572px) {
  .main .topics {
    padding-bottom: 50px;
  }
}
.main .topics.bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 300px;
  background: linear-gradient(90deg, rgba(23, 105, 170, 0.85) 0%, rgba(16, 146, 212, 0.85) 100%), url(../image/bg-topics.jpg);
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.main .topics .wrap {
  position: relative;
  z-index: 3;
}
.main .topics .sec-line {
  width: 1px;
  background-color: #fff;
  height: 55px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 572px) {
  .main .topics .sec-line {
    height: 30px;
    margin: 0 auto 20px;
  }
}
.main .topics .more-btn {
  background-color: #1092D4;
  color: #fff;
}
.main .greeting {
  position: relative;
  padding-top: 240px;
}
@media screen and (max-width: 572px) {
  .main .greeting {
    padding-top: 120px;
  }
}
.main .greeting::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 320px;
  background: url(../image/bg-greeting.jpg);
  background-size: cover;
  background-position: center;
  z-index: 2;
}
@media screen and (max-width: 572px) {
  .main .greeting::before {
    height: 180px;
  }
}
.main .greeting::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 480px;
  background: url(../image/bg-greeting-dot.png);
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.main .greeting .wrap-tb {
  position: relative;
  z-index: 3;
}
.main .greeting__content {
  width: 100%;
  background: linear-gradient(360deg, #0F4672 0%, #0D5792 100%);
  color: #fff;
  padding: 1rem;
  position: relative;
}
.main .greeting__content .sec-line {
  width: 1px;
  height: 55px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 572px) {
  .main .greeting__content .sec-line {
    height: 30px;
  }
}
.main .greeting__content .inner {
  border: 1px solid #fff;
  padding-top: 60px;
  padding: 60px 20px;
}
@media screen and (max-width: 572px) {
  .main .greeting__content .inner {
    padding: 40px 10px;
  }
}
.main .greeting__content .inner .sec-head {
  position: relative;
}
.main .greeting__content .inner .sec-head::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background-color: #F5A21D;
  margin: 1.5rem auto 40px;
}
@media screen and (max-width: 572px) {
  .main .greeting__content .inner .sec-head::after {
    width: 30px;
    margin: 1.5rem auto;
  }
}
.main .greeting__content .inner .ttl-main {
  text-align: center;
  font-size: 1.25rem;
}
@media screen and (max-width: 572px) {
  .main .greeting__content .inner .ttl-main {
    font-size: 1.125rem;
  }
}
.main .greeting__content .inner .ttl-sub {
  text-align: center;
  margin-top: 1rem;
}
.main .greeting__content .inner .more-btn {
  border: 1px solid currentColor;
}
.main .service {
  margin-top: 60px;
  position: relative;
}
.main .service::before {
  content: "";
  display: block;
  width: 100%;
  height: 300px;
  position: absolute;
  top: 0;
  -webkit-clip-path: polygon(0 calc(0% + 10vw), 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 calc(0% + 10vw), 100% 0, 100% 100%, 0 100%);
  z-index: -1;
  background-color: #C7E2F0;
}
.main .service .inner {
  padding: 150px 0 0;
  background-color: #E9F8FF;
  -webkit-clip-path: polygon(0 0, 100% calc(0% + 10vw), 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% calc(0% + 10vw), 100% 100%, 0 100%);
  position: relative;
}
@media screen and (max-width: 572px) {
  .main .service .inner {
    padding: 80px 0 0;
  }
}
.main .service .inner .bg-dot1 {
  position: absolute;
  right: 0;
  top: 280px;
  width: 250px;
  z-index: -1;
}
@media screen and (max-width: 572px) {
  .main .service .inner .bg-dot1 {
    top: 350px;
    width: 200px;
  }
}
.main .service .sec-head > h2 {
  color: #222;
}
.main .service .sec-head > p {
  color: #1769AA;
}
.main .service__msg {
  margin-top: 30px;
  text-align: center;
}
.main .service__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 30px;
}
@media screen and (max-width: 572px) {
  .main .service__content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.main .service__content-item {
  width: 100%;
  display: block;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.1019607843);
}
.main .service__content-item:hover .item-image > img {
  transform: scale(1.1);
}
.main .service__content-item .item-image {
  width: 100%;
  height: 270px;
  overflow: hidden;
}
@media screen and (max-width: 572px) {
  .main .service__content-item .item-image {
    height: 200px;
  }
}
.main .service__content-item .item-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
}
.main .service__content-item .item-block {
  background-color: #fff;
  padding: 1.5rem;
  position: relative;
  color: #222;
}
.main .service__content-item .item-block > h3 {
  text-align: center;
  font-size: 1.25rem;
}
.main .service__content-item .item-block > p {
  text-align: center;
  color: #1769AA;
  margin-top: 0.5rem;
}
.main .service__content-item .item-block .icon-rightarrow {
  fill: currentColor;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translate(0, -50%);
}

.sec-head > h2 {
  text-align: center;
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 572px) {
  .sec-head > h2 {
    font-size: 1.5rem;
  }
}
.sec-head > p {
  font-size: 0.875rem;
  text-align: center;
  color: #fff;
  line-height: 1;
  margin-top: 0.5rem;
}

.btn-wrap {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.more-btn {
  display: block;
  width: 210px;
  border-radius: 30px;
  line-height: 1;
  padding: 1em 0;
  font-size: 1rem;
  text-align: center;
  transition: 0.3s ease;
  position: relative;
}
.more-btn:hover {
  opacity: 0.7;
}
.more-btn .icon-rightarrow {
  fill: #fff;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 10px;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translate(0, -50%);
}

.online {
  background-color: #E9F8FF;
  padding: 80px 0;
  position: relative;
}
@media screen and (max-width: 572px) {
  .online {
    padding: 50px 0;
  }
}
.online .bg-dot2 {
  position: absolute;
  left: 0;
  bottom: 50px;
  width: 250px;
}
.online .sec-head > h2 {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.5rem;
  color: #222;
}
.online .sec-head > h2::before {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background-color: #222;
}
.online .sec-head > h2::after {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background-color: #222;
}
.online .sec-head > h2 > span {
  display: block;
  line-height: 1.4;
}
.online .sec-head > p {
  color: #1769AA;
}
.online .more-btn {
  background-color: #1092D4;
  color: #fff;
  width: 240px;
}
.online__content {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 964px) {
  .online__content {
    grid-template-columns: repeat(1, 1fr);
    place-items: center;
  }
}
.online__content-item {
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.1019607843);
  background-color: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media screen and (max-width: 964px) {
  .online__content-item {
    width: min(440px, 100%);
  }
}
@media screen and (max-width: 572px) {
  .online__content-item {
    flex-direction: column;
    padding: 20px;
  }
}
.online__content-item .l-left {
  width: 170px;
}
@media screen and (max-width: 572px) {
  .online__content-item .l-left {
    display: contents;
  }
}
.online__content-item .l-left .item-image {
  width: 100%;
  height: auto;
  display: inline-block;
}
@media screen and (max-width: 572px) {
  .online__content-item .l-left .item-image {
    order: 1;
    width: 80%;
  }
}
.online__content-item .l-left > a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  padding: 0.25rem 0;
  border-radius: 20px;
  margin-top: 1rem;
  font-size: 0.875rem;
  gap: 10px;
  transition: 0.3s ease;
}
@media screen and (max-width: 572px) {
  .online__content-item .l-left > a {
    order: 3;
    margin-top: 0;
    width: 180px;
  }
}
.online__content-item .l-left > a:hover {
  opacity: 0.7;
}
.online__content-item .l-left > a .icon-rightarrow {
  fill: currentColor;
  width: 0.875rem;
  height: 0.875rem;
}
.online__content-item .l-right {
  text-align: center;
  width: 230px;
}
@media screen and (max-width: 572px) {
  .online__content-item .l-right {
    order: 2;
    width: 100%;
  }
}
.online__content-item .l-right > h3 .c-red {
  color: #E5312D;
}
.online__content-item .l-right > h3 .c-orange {
  color: #F5A21D;
}
.online__content-item .l-right > h3 .c-green {
  color: #81B926;
}
.online__content-item .l-right > h3 .c-red2 {
  color: #D33C4E;
}
.online__content-item .l-right > h3 > span:first-child {
  font-weight: bold;
}
.online__content-item .l-right > p {
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

.topics-content {
  width: 100%;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 572px) {
  .topics-content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.topics-content__item {
  width: 100%;
  display: block;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1411764706);
}
.topics-content__item:hover .item-image > img {
  transform: scale(1.1);
}
.topics-content__item .item-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.topics-content__item .item-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
}
.topics-content__item .item-block {
  background-color: #fff;
  padding: 1rem;
}
.topics-content__item .item-block .date {
  color: #4B5563;
  font-size: 12px;
}
.topics-content__item .item-block .ttl {
  font-size: 1.125rem;
}
.topics-content__item .item-block .cat {
  color: #4B5563;
  text-align: right;
  margin-top: 10px;
  font-size: 0.875rem;
}
.topics-content__item .item-block .cat::before {
  content: "#";
}

.company-main .greeting {
  margin-top: 100px;
  padding-bottom: 50px;
}
@media screen and (max-width: 572px) {
  .company-main .greeting {
    margin-top: 80px;
  }
}
.company-main .greeting .sec-head > h2 {
  color: #222;
}
.company-main .greeting .sec-head > p {
  color: #1769AA;
}
.company-main .greeting__content {
  display: flex;
  margin-top: 50px;
}
@media screen and (max-width: 572px) {
  .company-main .greeting__content {
    flex-direction: column;
    margin-top: 30px;
  }
}
.company-main .greeting__content-left {
  flex: 1;
  line-height: 1.6;
}
@media screen and (max-width: 572px) {
  .company-main .greeting__content-left {
    width: 100%;
  }
}
.company-main .greeting__content-left > p:not(:first-child) {
  margin-top: 1rem;
}
.company-main .greeting__content-right {
  margin-left: 40px;
  position: relative;
}
@media screen and (max-width: 572px) {
  .company-main .greeting__content-right {
    margin-left: 0;
  }
}
.company-main .greeting__content-right .greeting-image {
  background-color: #fff;
  width: 290px;
}
@media screen and (max-width: 572px) {
  .company-main .greeting__content-right .greeting-image {
    margin: 30px auto 0;
    width: 250px;
  }
}
.company-main .greeting__content-right .greeting-image > img {
  width: 100%;
  display: block;
  height: auto;
}
.company-main .greeting__content-right .greeting-name {
  text-align: right;
  background: linear-gradient(90deg, rgba(23, 105, 170, 0.9) 0%, rgba(16, 146, 212, 0.9) 100%);
  padding: 1rem;
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  color: #fff;
}
@media screen and (max-width: 572px) {
  .company-main .greeting__content-right .greeting-name {
    right: 0;
  }
}
.company-main .greeting__content-right .greeting-name .name {
  font-size: 1.75rem;
}
.company-main .philosophy {
  position: relative;
  padding-top: 240px;
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .company-main .philosophy {
    margin-top: 50px;
    padding-top: 120px;
  }
}
.company-main .philosophy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 320px;
  background: url(../image/bg-greeting.jpg);
  background-size: cover;
  background-position: center;
  z-index: 2;
}
@media screen and (max-width: 572px) {
  .company-main .philosophy::before {
    height: 180px;
  }
}
.company-main .philosophy .wrap-tb {
  position: relative;
  z-index: 3;
}
.company-main .philosophy__content {
  width: 100%;
  background: linear-gradient(360deg, #0F4672 0%, #0D5792 100%);
  color: #fff;
  padding: 1rem;
  position: relative;
}
.company-main .philosophy__content .sec-line {
  width: 1px;
  height: 55px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 572px) {
  .company-main .philosophy__content .sec-line {
    height: 30px;
  }
}
.company-main .philosophy__content .inner {
  border: 1px solid #fff;
  padding-top: 60px;
  padding: 60px 20px;
}
@media screen and (max-width: 572px) {
  .company-main .philosophy__content .inner {
    padding: 40px 10px;
  }
}
.company-main .philosophy__content .inner .sec-head {
  position: relative;
}
.company-main .philosophy__content .inner .sec-head::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background-color: #F5A21D;
  margin: 1.5rem auto 40px;
}
@media screen and (max-width: 572px) {
  .company-main .philosophy__content .inner .sec-head::after {
    width: 30px;
    margin: 1.5rem auto;
  }
}
.company-main .philosophy__content .inner .msg {
  text-align: center;
}
.company-main .infomation {
  margin-top: 100px;
}
@media screen and (max-width: 572px) {
  .company-main .infomation {
    margin-top: 60px;
  }
}
.company-main .infomation .sec-head > h2 {
  color: #222;
}
.company-main .infomation .sec-head > p {
  color: #1769AA;
}
.company-main .infomation__list {
  margin-top: 30px;
}
.company-main .infomation__list > li {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.935rem;
}
.company-main .infomation__list > li > p {
  padding: 1.5rem;
}
@media screen and (max-width: 572px) {
  .company-main .infomation__list > li > p {
    padding: 1rem 1rem 1rem 0;
  }
}
.company-main .infomation__list > li > p:nth-child(1) {
  border-top: 1px solid #162D27;
  width: 20%;
  padding: 1.5rem;
}
@media screen and (max-width: 572px) {
  .company-main .infomation__list > li > p:nth-child(1) {
    padding: 1rem 1rem 0 0;
    width: 100%;
  }
}
.company-main .infomation__list > li > p:nth-child(2) {
  border-top: 1px solid rgba(22, 45, 39, 0.2392156863);
  width: 80%;
  padding: 1.5rem;
}
@media screen and (max-width: 572px) {
  .company-main .infomation__list > li > p:nth-child(2) {
    width: 100%;
    margin-left: 1em;
    border-top: none;
    padding: 0.5em 1rem 1rem 0;
  }
}
.company-main .history {
  position: relative;
  padding-top: 240px;
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .company-main .history {
    margin-top: 60px;
    padding-top: 120px;
  }
}
.company-main .history::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 320px;
  background: url(../image/bg-history.jpg);
  background-size: cover;
  background-position: center;
  z-index: 2;
}
@media screen and (max-width: 572px) {
  .company-main .history::before {
    height: 180px;
  }
}
.company-main .history .wrap-tb {
  position: relative;
  z-index: 3;
}
.company-main .history__content {
  width: 100%;
  position: relative;
  background-color: #fff;
  padding: 40px;
}
@media screen and (max-width: 572px) {
  .company-main .history__content {
    padding: 20px 10px;
  }
}
.company-main .history__content .sec-head > h2 {
  color: #222;
}
.company-main .history__content .sec-head > p {
  color: #1769AA;
}
.company-main .history__content-list {
  margin-top: 30px;
}
.company-main .history__content-list > li {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.935rem;
}
.company-main .history__content-list > li > p:nth-child(1) {
  border-top: 1px solid #162D27;
  width: 20%;
  padding: 1.5rem;
}
@media screen and (max-width: 572px) {
  .company-main .history__content-list > li > p:nth-child(1) {
    padding: 1rem 1rem 0 0;
    width: 100%;
  }
}
.company-main .history__content-list > li > p:nth-child(2) {
  border-top: 1px solid rgba(22, 45, 39, 0.2392156863);
  width: 80%;
  padding: 1.5rem;
}
@media screen and (max-width: 572px) {
  .company-main .history__content-list > li > p:nth-child(2) {
    margin-left: 1em;
    border-top: none;
    padding: 0.5em 1rem 1rem 0;
    width: 100%;
  }
}
.company-main .insurance {
  margin-top: 60px;
  background-color: #DCEEF9;
  padding: 80px 0;
}
@media screen and (max-width: 572px) {
  .company-main .insurance {
    margin-top: 50px;
    padding: 50px 0;
  }
}
.company-main .insurance .wrap-tb > .sec-head > h2 {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.5rem;
  color: #222;
}
.company-main .insurance .wrap-tb > .sec-head > h2::before {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background-color: #222;
}
.company-main .insurance .wrap-tb > .sec-head > h2::after {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background-color: #222;
}
.company-main .insurance .wrap-tb > .sec-head > h2 > span {
  display: block;
}
.company-main .insurance .wrap-tb > .sec-head > p {
  color: #1769AA;
}
.company-main .insurance__text {
  text-align: center;
  margin-top: 1.5rem;
}
.company-main .insurance__list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 572px) {
  .company-main .insurance__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}
.company-main .insurance__list > li {
  width: 100%;
}
@media screen and (max-width: 572px) {
  .company-main .insurance__list > li {
    width: 80%;
    margin: 0 auto;
  }
}
.company-main .insurance__list > li > img {
  width: 100%;
  display: block;
  height: auto;
}
.company-main .insurance .policy {
  margin-top: 80px;
  background-color: #fff;
  padding: 60px;
  font-size: 0.875rem;
}
@media screen and (max-width: 572px) {
  .company-main .insurance .policy {
    margin-top: 50px;
    padding: 30px 20px;
  }
}
.company-main .insurance .policy .sec-head > h2 {
  color: #222;
  font-size: 1.5rem;
}
.company-main .insurance .policy .sec-head > p {
  color: #1769AA;
}
.company-main .insurance .policy__ttl {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1.125rem;
}
@media screen and (max-width: 572px) {
  .company-main .insurance .policy__ttl {
    margin-top: 30px;
  }
}
.company-main .insurance .policy__ttl::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: currentColor;
  margin: 1rem auto 0;
}
.company-main .insurance .policy__msg {
  margin-top: 1.5rem;
}
.company-main .insurance .policy__list {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #CBCBCB;
  counter-reset: num 0;
}
@media screen and (max-width: 572px) {
  .company-main .insurance .policy__list {
    margin-top: 30px;
    padding-top: 30px;
  }
}
.company-main .insurance .policy__list > li {
  display: flex;
  gap: 1rem;
}
.company-main .insurance .policy__list > li:not(:first-child) {
  margin-top: 2rem;
}
@media screen and (max-width: 572px) {
  .company-main .insurance .policy__list > li:not(:first-child) {
    margin-top: 20px;
  }
}
.company-main .insurance .policy__list > li::before {
  counter-increment: num 1;
  content: counter(num) ".";
  display: block;
}

.advantage-main {
  margin-top: 120px;
  width: 100%;
  padding-bottom: 80px;
}
@media screen and (max-width: 572px) {
  .advantage-main {
    margin-top: 80px;
    padding-bottom: 60px;
  }
}
.advantage-main .advantage__msg {
  text-align: center;
}
.advantage-main .advantage__list {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #CBCBCB;
  counter-reset: num 0;
}
@media screen and (max-width: 572px) {
  .advantage-main .advantage__list {
    margin-top: 30px;
    padding-top: 30px;
  }
}
.advantage-main .advantage__list-item:not(:first-child) {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #CBCBCB;
}
@media screen and (max-width: 572px) {
  .advantage-main .advantage__list-item:not(:first-child) {
    margin-top: 40px;
    padding-top: 40px;
  }
}
.advantage-main .advantage__list-item > h3 {
  color: #1769AA;
  font-size: 1.75rem;
  line-height: 1;
}
@media screen and (max-width: 572px) {
  .advantage-main .advantage__list-item > h3 {
    font-size: 1.375rem;
    line-height: 1.4;
  }
}
.advantage-main .advantage__list-item > h3::before {
  counter-increment: num 1;
  content: "0" counter(num);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 10px;
  border-bottom: 1px solid #1769AA;
  margin-bottom: 10px;
  font-weight: bold;
}
@media screen and (max-width: 572px) {
  .advantage-main .advantage__list-item > h3::before {
    font-size: 1.25em;
  }
}
.advantage-main .advantage__list-item > p {
  margin-top: 2.5rem;
}
@media screen and (max-width: 572px) {
  .advantage-main .advantage__list-item > p {
    margin-top: 20px;
  }
}

.service-main .service {
  margin-top: 120px;
  padding-bottom: 80px;
}
@media screen and (max-width: 572px) {
  .service-main .service {
    margin-top: 80px;
    padding-bottom: 60px;
  }
}
.service-main .service__msg {
  text-align: center;
}
.service-main .service__msg > p:not(:first-child) {
  margin-top: 1rem;
}
.service-main .service__link {
  background-color: #ececec;
  padding: 0.5rem;
  display: flex;
  margin-top: 2.5rem;
}
.service-main .service__link-item {
  display: block;
  width: 50%;
  text-align: center;
  padding: 1rem 0;
  background-color: #fff;
  transition: 0.3s ease;
}
.service-main .service__link-item:hover {
  background-color: #70a7d3;
}
.service-main .service__link-item.is-active {
  background-color: #1769AA;
  color: #fff;
}
.service-main .service__list {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 964px) {
  .service-main .service__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 572px) {
  .service-main .service__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.service-main .service__list-item {
  border: 1px solid #ececec;
}
@media screen and (max-width: 572px) {
  .service-main .service__list-item {
    padding: 1rem;
  }
}
.service-main .service__list-item .item-image {
  width: 100%;
  height: 180px;
}
@media screen and (max-width: 572px) {
  .service-main .service__list-item .item-image {
    height: 200px;
  }
}
.service-main .service__list-item .item-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-main .service__list-item .item-block {
  padding: 1rem;
}
@media screen and (max-width: 572px) {
  .service-main .service__list-item .item-block {
    padding: 1rem 0 0 0;
  }
}
.service-main .service__list-item .item-block .ttl {
  line-height: 1.2;
  color: #1769AA;
}
@media screen and (max-width: 572px) {
  .service-main .service__list-item .item-block .ttl {
    font-size: 1.125rem;
  }
}
.service-main .service__list-item .item-block .ttl > .mini {
  font-size: 0.735em;
  display: inline-block;
}
.service-main .service__list-item .item-block .text {
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid #1769AA;
  font-size: 0.75rem;
}
@media screen and (max-width: 572px) {
  .service-main .service__list-item .item-block .text {
    font-size: 1rem;
  }
}
.service-main .service__list-item .item-block .detail {
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid #1769AA;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (max-width: 572px) {
  .service-main .service__list-item .item-block .detail {
    font-size: 1rem;
  }
}
.service-main .service__list-item .item-block .detail a {
  border-bottom: 1px solid currentColor;
  transition: 0.3s ease;
}
.service-main .service__list-item .item-block .detail a:hover {
  color: #1092D4;
}
.service-main .service__supplement {
  margin-top: 1em;
  font-size: 0.875rem;
}

.contact-main .contact {
  margin-top: 120px;
}
@media screen and (max-width: 572px) {
  .contact-main .contact {
    margin-top: 80px;
  }
}
.contact-main .contact__msg {
  text-align: center;
}
.contact-main .contact__msg > p:not(:first-child) {
  margin-top: 1rem;
}
.contact-main .contact__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 572px) {
  .contact-main .contact__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact-main .contact__list-item {
  background-color: #E9F8FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1.5rem;
  gap: 10px;
  transition: 0.3s ease;
}
.contact-main .contact__list-item:hover {
  opacity: 0.7;
}
.contact-main .contact__list-item.item-mail > .ttl {
  color: #1769AA;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-main .contact__list-item.item-mail > .ttl .icon-mail {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
}
.contact-main .contact__list-item.item-tel > .ttl {
  color: #1769AA;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-main .contact__list-item.item-tel > .tel {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: bold;
}
.contact-main .contact__list-item.item-tel > .tel .icon-tel {
  width: 22px;
  height: 37px;
}
.contact-main .contact__list-item.item-tel > .tap {
  display: none;
}
@media screen and (max-width: 572px) {
  .contact-main .contact__list-item.item-tel > .tap {
    display: block;
  }
}
.contact-main .privacy {
  margin-top: 120px;
  padding-bottom: 80px;
}
@media screen and (max-width: 572px) {
  .contact-main .privacy {
    margin-top: 80px;
    padding-bottom: 60px;
  }
}
.contact-main .privacy .sec-head > h2 {
  color: #222;
  font-size: 1.5rem;
}
.contact-main .privacy .sec-head > p {
  color: #1769AA;
}
.contact-main .privacy__content {
  margin-top: 2.5rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.contact-main .privacy__content > h2 {
  font-size: 1.25rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: #1769AA;
  line-height: 1.4;
  padding: 5px 1rem;
  background-color: #fafafa;
}
.contact-main .privacy__content > h3 {
  color: #1769AA;
  font-size: 1.125rem;
  border-left: 4px solid currentColor;
  padding-left: 0.75rem;
  line-height: 1.4;
  margin-top: 1.75rem;
}
.contact-main .privacy__content > ul {
  margin-left: 1.5rem;
  margin-top: 1rem;
}
.contact-main .privacy__content > ul > li {
  margin-top: 0.25rem;
}
.contact-main .privacy__content > p {
  margin-top: 1.125rem;
}
.contact-main .privacy__content > p a {
  color: #1092D4;
  border-bottom: 1px solid currentColor;
  transition: 0.3s ease;
}
.contact-main .privacy__content > p a:hover {
  opacity: 0.7;
}
.contact-main .privacy__content .u-line strong {
  border-bottom: 1px solid currentColor;
}

.p-404 {
  width: 100%;
  padding: 180px 20px;
  text-align: center;
}
@media screen and (max-width: 572px) {
  .p-404 {
    padding: 150px 20px;
  }
}
.p-404 .title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1092D4;
}
.p-404 .title > span {
  display: inline-block;
}
.p-404 .text {
  margin-top: 30px;
  font-size: 1.125rem;
}
.p-404 .text > span {
  display: inline-block;
}
.p-404 .back-btn {
  margin: 80px auto 0;
  display: block;
  color: #1092D4;
  border: 1px solid currentColor;
  border-radius: 30px;
  padding: 1em 0;
  width: 300px;
  transition: 0.3s;
  text-align: center;
}
.p-404 .back-btn:hover {
  background-color: #1092D4;
  color: #fff;
}
@media screen and (max-width: 572px) {
  .p-404 .back-btn {
    margin: 50px auto 0;
    width: 250px;
  }
}

.a-topics-main .a-topics {
  margin-top: 100px;
  padding-bottom: 80px;
}
@media screen and (max-width: 572px) {
  .a-topics-main .a-topics {
    padding-bottom: 60px;
  }
}
.a-topics-main .a-topics .sec-head > h2 {
  color: #222;
}
.a-topics-main .a-topics .sec-head > p {
  color: #1769AA;
}

.data-nothing {
  text-align: center;
  margin-top: 30px;
  font-size: 1.125rem;
}

.single-main .single {
  margin-top: 100px;
  padding-bottom: 80px;
}
@media screen and (max-width: 572px) {
  .single-main .single {
    padding-bottom: 60px;
  }
}
.single-main .single__title {
  font-size: 1.75rem;
  line-height: 1.4;
}
@media screen and (max-width: 572px) {
  .single-main .single__title {
    font-size: 1.5rem;
  }
}
.single-main .single__date {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.875rem;
  margin-top: 20px;
}
.single-main .single__thumbnail {
  width: 100%;
  margin-top: 20px;
}
.single-main .single__thumbnail > img {
  display: block;
  width: 100%;
  height: auto;
}
.single-main .single__content {
  margin-top: 2.5em;
  line-height: 1.8;
}
.single-main .single__content h2 {
  font-size: 1.375rem;
  border-bottom: 3px solid #1769AA;
  margin-top: 3em;
  padding-bottom: 3px;
  color: #1769AA;
}
.single-main .single__content h3 {
  font-size: 1.25rem;
  padding-left: 0.5em;
  border-left: 3px solid #1769AA;
  margin-top: 2em;
  color: #1769AA;
}
.single-main .single__content h4 {
  font-size: 1.125rem;
  margin-top: 1.75em;
}
.single-main .single__content p {
  margin-top: 1em;
  font-weight: 500;
}
.single-main .single__content p a {
  color: #1092D4;
  text-decoration: underline;
  transition: 0.3s;
}
.single-main .single__content p a:hover {
  opacity: 0.7;
}
.single-main .single__content figure {
  margin-top: 1em;
}
.single-main .single__content figure img {
  width: 100%;
}
.single-main .single .more-btn {
  border: 1px solid currentColor;
  margin: 50px auto 0;
}
@media screen and (max-width: 572px) {
  .single-main .single .more-btn {
    margin: 30px auto 0;
  }
}
.single-main .single .more-btn .icon-rightarrow {
  fill: currentColor;
}
/*# sourceMappingURL=style.css.map */