@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

ul,ol,li {
  list-style: none;
}

img {
    width: 100%;
}

a {
  color: #000;
  transition: opacity 0.5s;
  font-weight: 500;
}

a:hover {
    opacity: 0.5;
}

.h-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

section h2 {
  font-size: 70px;
  color: #00BFD3;
  font-weight: 400;
  line-height: 0.7;
}

section h2 span {
  font-size: 16px;
  color: #000;
  font-weight: bold;
}

.sp {
    display: none;
}

/*font*/
body {
  font-family:
    'Outfit',
    'Noto Sans JP',
    'Hiragino Kaku Gothic ProN',
    'Hiragino Sans',
    'Yu Gothic',
    'Meiryo',
    sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* フェードイン */
.fadein {
    opacity: 0;
    transform: translate(0,0);
    transition: opacity 1s, transform 1s;
  &.fadein-left{
      transform: translate(-30px,0);
  }
  &.fadein-bottom{
      transform: translate(0,30px);
  }
  &.scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
}

@media screen and (max-width: 768px) {
    section h2 {
        font-size: 50px;
        line-height: 1.0;
    }

    .sp {
        display: block;
    }

    .h-inner {
        width: 90%;
        padding: 0;
    }
}


/* header */

.header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100000;
    padding: 20px 60px;
    margin: 20px;
    background-color: #fff;
    border-radius: 20px;
    top: 0px;
    right: 0px;
    left: 0px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform .3s ease;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header.hide {
    transform: translateY(-130%);
}

.header h1 {
    width: 150px;
}

.header .menu-container ul {
    display: flex;
    gap: 30px;
}

.hamburger {
  display: none;
  width: 24px;
  height: 18px;
  position: relative;
  cursor: pointer;
  z-index: 200000;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 1.5px;
  background: #000;
  left: 0;
  transition: .3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

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

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

@media screen and (max-width: 1023px) {
  .header {
    display: block;
    padding: 20px;
    border-radius: 15px;
    margin: 10px;
  }

  .header h1 {
    width: 120px;
  }

  .hamburger {
    display: block;
  }

  .menu-container {
    display: none;
    width: 100%;
    background: #fff;
    margin-top: 20px;
  }

  .menu-container ul {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
}


/* footer */
.footer {
    position: relative;
    z-index: 100000;
}

.footer .uing-footer {
    background-color: #00BFD3;
    margin: 0 auto;
    padding: 40px 0;
}

.footer .uing-footer .uing-footer-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 60px;
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.footer .uing-footer .uing-footer-main h2 {
    width: 150px;
}

.footer .uing-footer .uing-footer-main ul {
    display: flex;
    gap: 30px;
}

.footer .uing-footer .uing-footer-policy {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 0;
    max-width: 1200px;
    margin: 30px auto;
}

.footer .uing-footer .uing-footer-policy li {
    position: relative;
    padding-right: 24px;
}


.footer .uing-footer .uing-footer-policy li::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: #B8E9EE;
}

.footer .uing-footer .uing-footer-policy li:last-child::after {
    display: none;
}

.footer .uing-footer .uing-footer-policy li a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.footer .uing-footer .copyright {
    font-size: 12px;
    text-align: center;
    color: #BCE0E4;
    display: block;
    margin: 0 auto;
    font-weight: 100;
}

.footer .hd-footer {
    padding: 40px 0;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .hd-footer .hd-footer-left h2 {
    font-size: 20px;
}

.footer .hd-footer .hd-footer-left h3 {
    color: #959595;
    padding-top: 20px;
    font-size: 14px;
}

.footer .hd-footer .hd-footer-left h3 span {
    color: #00BFD3;
    padding-top: 20px;
}

.footer .hd-footer .hd-footer-right .hd-footer-menu {
    display: flex;
    justify-content: end;
    gap: 30px;
}

.footer .hd-footer .hd-footer-right .hd-footer-policy {
    display: flex;
    justify-content: end;
    padding-top: 40px;
}

.footer .hd-footer .hd-footer-right .hd-footer-policy li {
    padding-right: 24px;
    position: relative;
}

.footer .hd-footer .hd-footer-right .hd-footer-policy li::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: #D9D9D9;
}

.footer .hd-footer .hd-footer-right .hd-footer-policy li a {
    color: #959595;
    font-size: 14px;
}

.footer .hd-footer .hd-footer-right .hd-footer-policy li:last-child {
    padding-right: 0;
}

.footer .hd-footer .hd-footer-right .hd-footer-policy li:last-child::after {
    display: none;
}

@media screen and (max-width: 1023px) {
    .footer .uing-footer .uing-footer-main {
        width: 90%;
        padding: 20px 30px;
        align-items: center;
    }

    .footer .uing-footer .uing-footer-main h2 {
        width: 120px;
    }

    .footer .uing-footer .uing-footer-main ul {
        display: block;
    }

    .footer .uing-footer .uing-footer-main ul li {
        padding-bottom: 10px;
    }

    .footer .uing-footer .uing-footer-main ul li:last-child {
        padding-bottom: 0px;
    }

    .footer .uing-footer .uing-footer-policy {
        width: 90%;
        text-align: center;
    }

    .footer .uing-footer .copyright {
        width: 90%;
    }

    .footer .hd-footer {
        display: block;
        width: 90%;
    }

    .footer .hd-footer .hd-footer-left {
        border-bottom: 1px solid #959595;
        margin-bottom: 30px;
        text-align: center
    }

    .footer .hd-footer .hd-footer-left h3 {
        padding: 10px 0 30px;
    }

    .footer .hd-footer .hd-footer-right .hd-footer-menu {
        display: block;
        text-align: center;
    }

    .footer .hd-footer .hd-footer-right .hd-footer-menu li {
        padding-bottom: 5px;
    }

    .footer .hd-footer .hd-footer-right .hd-footer-policy {
        display: block;
        text-align: center;
        padding-top: 10px;
    }

    .footer .hd-footer .hd-footer-right .hd-footer-policy li {
        padding-right: 0;
        padding-bottom: 5px;
    }

    .footer .hd-footer .hd-footer-right .hd-footer-policy li::after {
        display: none;
    }
    
}

/* button */

a.button {
    padding: 18px 20px 22px;
    display: block;
    width: 220px;
    text-align: center;
    color: #fff;
    background-color: #00BFD3;
    border-radius: 36px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

a.button:hover {
    color: #00BFD3;
    border: 1px solid #00BFD3;
    background-color: #fff;
    opacity: unset;
}

@media screen and (max-width: 768px) {
    a.button {
        width: 150px;
        padding: 10px 12px 13px;
    }
}

/* お知らせ */
.news-list li {
  padding: 30px;
  border-bottom: 1px solid #D9D9D9;
}

.news-list li .time {
  color: #959595;
  padding-bottom: 10px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .news-list li {
    padding: 20px 10px;
  }

  .news-list li .time {
    padding-bottom: 5px;
  }
}