@charset "UTF-8";
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px); }
  to {
    opacity: 1;
    transform: translateX(0); } }
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px); }
  to {
    opacity: 1;
    transform: translateX(0); } }
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8); }
  to {
    opacity: 1;
    transform: scale(1); } }
.animate-on-scroll {
  opacity: 0;
  transition: none; }

.animate-fade-up {
  animation: fadeInUp 0.8s ease-out forwards; }

.animate-fade-left {
  animation: fadeInLeft 1s ease-out forwards; }

.animate-fade-right {
  animation: fadeInRight 1s ease-out forwards; }

.animate-scale-in {
  animation: scaleIn 0.8s ease-out forwards; }

body {
  padding-top: 200px; }
  @media (max-width: 1000px) {
    body {
      padding-top: 150px; } }
  @media (max-width: 768px) {
    body {
      padding-top: 70px; } }

.bgB {
  background-color: #EBFAFF;
  padding: 64px 0; }
  @media (max-width: 1000px) {
    .bgB {
      padding: 34px 0; } }

main .sec01 .wrap > *:last-child {
  padding-bottom: 64px; }
main .has-background {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%); }
main h3 {
  font-size: 1.5em;
  font-weight: bold;
  color: #231815;
  margin-bottom: 20px;
  line-height: normal; }
main p {
  font-size: 1em;
  line-height: 1.5em;
  color: #231815;
  padding-bottom: 20px; }

.pageTitle {
  padding-top: 20px;
  position: relative;
  padding-bottom: 100px; }
  @media (max-width: 1000px) {
    .pageTitle {
      padding-bottom: 50px; } }
  .pageTitle h1 {
    font-size: 50px;
    line-height: normal;
    font-weight: bold;
    box-sizing: border-box;
    display: inline-block;
    margin-bottom: 50px; }
    .pageTitle h1 span {
      display: block;
      width: 100%;
      border-top: solid 3px #D3D1D0;
      position: relative;
      margin-top: 20px;
      padding-top: 20px;
      font-size: 14px;
      color: #449DC9;
      font-weight: normal; }
      .pageTitle h1 span::before {
        content: "";
        display: block;
        width: 35px;
        height: 3px;
        background-color: #449DC9;
        position: absolute;
        top: -3px;
        left: 0; }
    @media (max-width: 1000px) {
      .pageTitle h1 {
        font-size: 2em; } }
  .pageTitle .Img {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    z-index: 60; }
    @media (max-width: 768px) {
      .pageTitle .Img {
        position: static;
        margin-bottom: 20px;
        width: 100%;
        display: flex;
        justify-content: flex-end;
        text-align: right;
        height: 150px; } }
    .pageTitle .Img .wrap {
      height: 340px;
      max-width: 100%;
      display: block;
      border-radius: 30px 0 0 30px;
      padding: 0;
      overflow: hidden;
      width: 100%; }
      @media (max-width: 768px) {
        .pageTitle .Img .wrap {
          height: 150px;
          width: 90%;
          max-width: 100%;
          display: inline-block;
          position: absolute; } }
      .pageTitle .Img .wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease; }
  .pageTitle .txt {
    width: 70%;
    background: #EBFAFF;
    padding: 50px 20px;
    border-radius: 0 30px 30px 0; }
    @media (max-width: 768px) {
      .pageTitle .txt {
        width: 95%;
        box-sizing: border-box; } }
    .pageTitle .txt .wrap {
      width: 500px;
      padding: 0;
      margin-left: calc((100vw - 1200px) / 2); }
      @media (max-width: 1200px) {
        .pageTitle .txt .wrap {
          width: 77%;
          margin-left: 0; } }
      @media (max-width: 768px) {
        .pageTitle .txt .wrap {
          width: 100%;
          margin-left: 0; } }

h2 {
  color: #231815;
  font-size: 1.8em;
  font-weight: bold;
  line-height: normal;
  padding-left: 60px;
  position: relative;
  margin-bottom: 30px; }
  h2::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: #449DC9;
    position: absolute;
    border-radius: 100px;
    top: 50%;
    left: 0px;
    transform: translateY(-50%); }
  h2::after {
    content: "";
    display: block;
    width: 46px;
    height: 2px;
    background-color: #449DC9;
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%); }

.contType01 {
  margin-bottom: 50px;
  border-top: solid 2px #D3D1D0;
  padding: 30px 0;
  display: grid;
  gap: 30px;
  grid-template-columns: 0.8fr 1.2fr; }
  @media (max-width: 768px) {
    .contType01 {
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 0; } }
  .contType01 h3 {
    font-size: 1.5em;
    font-weight: bold;
    color: #231815;
    margin-bottom: 20px;
    line-height: normal; }

ol {
  padding-left: 20px;
  margin-bottom: 30px;
  counter-reset: ol-counter; }
  ol li {
    font-size: 1em;
    line-height: 1.5em;
    color: #231815;
    margin-bottom: 10px;
    counter-increment: ol-counter;
    list-style: none;
    position: relative;
    padding-left: 40px;
    font-weight: bold; }
    ol li::before {
      content: counter(ol-counter);
      display: inline-block;
      width: 24px;
      height: 24px;
      background-color: #449DC9;
      color: white;
      border-radius: 50%;
      text-align: center;
      line-height: 24px;
      font-size: 0.7em;
      position: absolute;
      font-weight: 600;
      left: 0;
      top: 2px; }
    ol li::after {
      content: "";
      position: absolute;
      left: 18px;
      top: 18px;
      width: 0;
      height: 0;
      display: block;
      border-left: 5px solid #449DC9;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
      transform: rotate(-70deg); }

section ul {
  padding-left: 20px;
  margin-bottom: 30px; }
  section ul li {
    font-size: 1em;
    line-height: 1.5em;
    color: #231815;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    font-weight: 600;
    list-style: none; }
    section ul li::before {
      content: "●";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      color: #449DC9;
      font-size: 0.8em; }

section a:not(.btn01, .news a) {
  color: #273775;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease; }
  section a:not(.btn01, .news a)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #273775;
    transition: width 0.3s ease; }
  section a:not(.btn01, .news a):hover {
    color: #273775;
    opacity: 1; }
    section a:not(.btn01, .news a):hover::after {
      width: 100%; }

.news section dl {
  display: flex;
  align-items: center; }
.news section .newsItem {
  display: flex;
  align-items: center;
  padding: 20px 40px 20px 0;
  border-top: 1px solid #231815;
  gap: 20px;
  box-sizing: border-box;
  position: relative; }
  .news section .newsItem:first-child {
    border-bottom: none; }
  .news section .newsItem:before {
    content: '→';
    width: 30px;
    height: 30px;
    background: #449cc9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 0.8em;
    flex-shrink: 0;
    font-weight: bold;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto; }
.news section .newsImg {
  width: 160px;
  height: 100px;
  background-color: #d9d9d9;
  border-radius: 10px;
  margin-right: 48px;
  overflow: hidden; }
  .news section .newsImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease; }
.news section .newsTitle h3 {
  font-family: 'Yu Gothic', Helvetica;
  font-weight: bold;
  color: black;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px; }
.news section .newsTitle .newsDate {
  font-family: 'Yu Gothic', Helvetica;
  font-weight: bold;
  color: black;
  font-size: 20px;
  line-height: 28px; }
.news section .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  gap: 10px; }
  .news section .pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #D3D1D0;
    color: #231815;
    text-decoration: none;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease; }
    .news section .pagination .page-numbers:hover {
      background-color: #449DC9;
      color: white;
      border-color: #449DC9; }
    .news section .pagination .page-numbers.current {
      background-color: #449DC9;
      color: white;
      border-color: #449DC9; }
    .news section .pagination .page-numbers.prev, .news section .pagination .page-numbers.next {
      width: 80px;
      border-radius: 20px;
      font-size: 12px; }
    .news section .pagination .page-numbers.dots {
      border: none;
      background: none;
      cursor: default; }
      .news section .pagination .page-numbers.dots:hover {
        background: none;
        color: #231815;
        border: none; }

/* sns
---------------------------------------*/
section .sns {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 20px;
  box-sizing: border-box; }

section .sns ul {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0; }

section .sns ul li {
  list-style: none;
  margin: 0 15px;
  padding: 0; }

section .sns ul li:before {
  display: none; }

section .sns ul li a:after {
  display: none; }
