@media screen and (max-width: 780px), print {
  .header__logo img {
    width: 120px;
  }

  .title {
    padding-bottom: 15px;
  }

  .swiper-slide>img {
    height: 200px;
  }

  .site-header {
    height: 64px;
  }



  /* 
hamburger(ハンバーガーアイコン)
=================================== */
  .hamburger {
    position: absolute;
    right: 20px;
    top: 10px;
    width: 50px;
    height: 40px;
    cursor: pointer;
    z-index: 200;
  }

  .hamburger__line {
    position: absolute;
    width: 40px;
    height: 2px;
    right: 0;
    background-color: #252525;
    transition: all 0.5s;
  }

  .hamburger__line--1 {
    top: 20px;
  }

  .hamburger__line--2 {
    top: 10px;
  }

  .hamburger__line--3 {
    top: 30px;
  }

  .open .hamburger__line--1 {
    transform: rotate(-45deg);
    top: 11px;
  }

  .open .hamburger__line--2 {
    opacity: 0;
  }

  .open .hamburger__line--3 {
    transform: rotate(45deg);
    top: 11px;
  }

  .sp-nav__list {
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .sp__link:hover {
    color: #ccab8b;
    opacity: 0.8;
    transition: all 0.3s ease-in;
  }


  .sp__item {
    padding: 15px 10px;
    font-family: "EB Garamond", serif;
    font-weight: bold;
    border-bottom: 1px dotted var(--color-sub);
    color: var(--color-sub);
  }


  /* 
sp-nav(ナビ)
=================================== */
  .sp-nav {
    position: fixed;
    right: -100%;
    top: 0;
    width: 80%;
    height: 100vh;
    background-color: var(--color-base);

    transition: all 0.5s;
    z-index: 200;
    overflow-y: auto;
  }

  .open .sp-nav {
    right: 0;
  }

  .gnav__link, .gnav__link:first-child::after {
    content: none;
  }

  /* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
  .black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 100;
    display: block;
  }

  /*ハンバーガーメニューが開いたら表示*/
  .open .black-bg {
    opacity: 0.3;
    visibility: visible;
  }

  /*container*/
  .container {
    padding: 0 4%;
  }

  .sub_title {
    position: static;

  }

  .container::before {
    display: none;
  }

  .concept_img img {
    padding-bottom: 20px;

  }


  .address th,
  .address td {
    width: 100%;
    display: block;
  }

  .address th {
    width: 100%;
  }

  .address td {
    padding-top: 0;
  }

  .contact_title {
    margin-bottom: 40px;
  }

  .banner {
    width: 100%;
    margin: 0px;
  }

  .banner-icon {
    font-size: 28px;
  }

  .banner-body {
    width: 100%;
    border-radius: 0px;
  }

  .banner-back {
    width: 100%;
    margin: 0px;
    border-radius: 0px;
  }

  .banner-top {
    padding: 5px;
    border-radius: 0px;
    background: radial-gradient(#45C70A, #00B07F 70%);
  }

  .banner-bottom {
    padding: 10px 10px 18px 10px;
  }

  .banner-copy {
    font-size: 15px;
  }

  .banner-copy::after {
    font-size: 12px;
    margin-top: 1.4px;
    margin-left: 12px;
    top: initial;
    right: initial;
  }

  .banner-close {
    top: 8px;
    right: 15px;
  }

  .banner-copy-br {
    display: none;
  }

  .gnav__list, .sns {
    display: none;
  }
}