@charset "UTF-8";
@media screen and (max-width: 767px) {
  html {
    overflow-y: scroll;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
  }

  p {
    line-height: 1.5rem;
    letter-spacing: 0.05em;
    font-size: 3.8vw;
  }

  ul {
    list-style: none;
  }

  span {
    line-height: 1.4;
  }

  img {
    max-width: 100%;
  }

  div img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    width: 100%;
    overflow: hidden;
    vertical-align: top;
    display: block;
  }

  .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .has-image {
    width: 100%;
    height: 0;
    position: relative;
    overflow: hidden;
    padding-bottom: 70%;
  }

  .has-image .has-images-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .has-image img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .item-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .header-container {
    max-width: 2200px;
    margin: 0 auto;
    width: 90%;
  }

  .container {
    max-width: unset;
    width: unset;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .max-img {
    width: 100%;
  }

  .max-img img {
    width: 100%;
  }

  .relative {
    position: relative;
  }

  .absolute {
    position: absolute;
  }

  .br {
    border-radius: 7px;
  }

  ul li p {
    cursor: pointer;
  }

  .section-inner {
    padding: 35px 0;
  }

  main {
    margin-top: 0px;
  }

  h2 {
    font-weight: bold;
  }

  h3 {
    font-weight: normal;
    line-height: 1.2;
  }
  .cw {
    color: #fffffc !important;
  }

  .border-btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px 15px;
    border-radius: 7px;
    border: solid 2px #fffffc;
  }

  .border-blk {
    border: solid 2px #222;
  }

  .navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0rem 4vw;
    height: 55px;
  }

  .nav-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    padding: 10px 0;
  }
  .nav-right .btn {
    background-color: #824880;
    padding: 7px 12px;
    margin-bottom: 0px;
    font-size: 12px;
    color: #fffffc;
    font-weight: normal;
    letter-spacing: 0.05em;
    border-radius: 5px;
  }

  .nav-logo {
    width: 200px;
    padding: 0;
  }



  .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .hambuger-wrap.active span:nth-child(1) {
    -webkit-transform: translateY(9px) rotate(45deg);
            transform: translateY(9px) rotate(45deg);
    height: 3px;
    width: 25px;
    border-radius: 3px;
  }

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

  .hambuger-wrap.active span:nth-child(3) {
    -webkit-transform: translateY(-7px) rotate(-45deg);
            transform: translateY(-7px) rotate(-45deg);
    height: 3px;
    width: 25px;
    border-radius: 3px;
  }

  .open {
    right: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 1;
    visibility: visible;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    z-index: 1000;
  }
  .hamburger p {
    font-size: 10px;
    line-height: 1;
  }

  #footer {
    color: #fffffc;
  }
  #footer .f-owner {
    background-color: #F5F5F7;
    padding: 0;
  }
  #footer .f-owner .sensei-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5%;
    margin-top: 0;
  }
  #footer .f-owner .sensei-box img {
    width: 100%;
    margin-bottom: 5vw;
  }
  #footer .f-owner .sensei-box .sensei-text {
    width: 100%;
    color: #222222;
  }
  #footer .f-owner .sensei-box .sensei-text h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  #footer .f-owner .sensei-box .sensei-text h3 span {
    font-size: 1rem;
    margin-right: 0.5rem;
  }
  #footer .f-owner .sensei-box .sensei-text .mb-text {
    margin-bottom: 5vw;
    color: #00000080;
  }
  #footer .f-contact {
    padding: 10vw 0;
  }
  #footer .f-contact-box .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5%;
  }
  #footer .f-contact-box .flex .f-contact-box-text {
    width: 100%;
    margin-bottom: 5vw;
  }
  #footer .f-contact-box .flex .f-contact-box-text h4 {
    text-align: center;
    font-size: 5.8vw;
    margin-bottom: 1rem;
  }
  #footer .f-contact-box .flex span {
    height: 230px;
    width: 2px;
    background-color: #fff;
    border: solid 1px #fff;
    display: none;
  }
  #footer .f-contact-box .flex .f-contact-box-img {
    width: 100%;
  }
  #footer .f-contact-box .flex .f-contact-box-img img {
    border-radius: 7px;
  }

  .f-contain {
    background: #031A34;
    font-size: 16px;
    padding: 8vw 4vw 5vw;
  }

  .l-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-bottom: 7vw;
  }

  #footer .flogo {
    width: 100%;
    text-align: center;
    margin-bottom: 0vw;
  }
  #footer .flogo img {
    margin: 0 auto;
    -o-object-fit: contain;
       object-fit: contain;
    width: 170px;
    margin-bottom: 3vw;
  }
  #footer .flogo span {
    font-size: 4vw;
    margin-bottom: 3vw;
  }
  #footer .flogo .flex {
    gap: 0%;
    margin: 0 auto;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  #footer .flogo .flex .i-logo {
    width: 25px;
    margin: unset;
    margin-right: 6px;
  }
  #footer .flogo .flex .y-logo {
    width: 35px;
    margin: unset;
    margin-left: 6px;
  }

  #footer .fnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  #footer .fnav > div a {
    display: block;
    padding: 0 0;
    color: #fffffc;
    font-size: 14px;
    margin-bottom: 3vw;
  }

  #footer .fnav > div:nth-child(n+2) {
    padding: 0;
  }

  #footer .fabout {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin: 0 auto;
  }
  #footer .fabout ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
  #footer .fabout ul li {
    padding-left: 4vw;
    margin-bottom: 3vw;
  }
  #footer .fabout ul li a {
    color: #cecece;
    font-size: 0.8rem;
  }

  #footer #copyright {
    font-size: 0.6rem;
    padding: 5px 0 0;
    text-align: center;
    margin: 0 auto;
  }

  .main-vis {
    height: 90vh;
    position: relative;
  }
  .main-vis .main-vis-content {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 40%;
    left: 50%;
    width: 100%;
    -webkit-transform: translateY(-40%) translateX(-50%);
            transform: translateY(-40%) translateX(-50%);
    padding: 0 5vw;
  }
  .main-vis .main-vis-content .main-vis-logo {
    width: 100%;
    margin-bottom: 5vw;
  }
  .main-vis .main-vis-content .main-vis-text h1 {
    font-size: 7.2vw;
    color: #fff;
    line-height: 1.4;
    font-weight: bold;
  }

  .swiper {
    height: 100%;
    z-index: 0 !important;
  }
  .swiper .swiper-wrapper {
    width: 100%;
    /* transform: translate3d(18.455px, 0px, 0px) !important;/ */
  }
  .swiper .swiper-wrapper .swiper-slide {
    /* width: 90% !important; */
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }


  .news-wrap {
    padding: 6vw 4vw;
    border-radius: 5px;
  }
  .news-wrap .news-box {
    gap: 0;
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 15px 0;
    border-bottom: solid #D5D5D5 1px;
  }
  .news-wrap .news-box .date {
    padding-right: 3vw;
    font-size: 12px;
  }
  .news-wrap .news-box .tag {
    font-size: 0.6rem;
    background-color: #00C944;
    padding: 2px 2px;
    color: #fffffc;
    border-radius: 3px;
  }
  .news-wrap .news-box .title {
    margin-top: 0vw;
    font-size: 14px;
  }

}
/* pc＆sp表示切替 */
.jump_point {
  display: block;
  padding-top: 70px;
  margin-top: -70px;
}

.fix-bnr {
  position: fixed;
  right: 10px;
  width: 90px;
  bottom: 10px;
}