@media screen and (max-width: 481px) {
  /* //▼共通▼ */
  html,
  body {
    width: 100%;
    height: auto;
    letter-spacing: 0.2rem;
    color: #222;
    line-height: 1.5rem;
    font-family: "Noto Sans JP";
    overflow-x: hidden;
  }

  body {
    position: relative;
  }

  html,
  body,
  #wrapper a {
    text-decoration: none;
  }

  body.fixed {
    width: 100%;
    height: 100%;
    position: fixed;
    overflow-y: scroll;
  }

  #wrapper {
    padding-top: 90px;
  }

  .small {
    font-size: 0.8rem;
  }

  /*パンくずリスト*/
  .pan {
    width: 95%;
    margin: auto;
    padding: 1% 0;
    font-size: 0.8rem;
    color: #888;
  }

  .pan a {
    color: #ccc;
  }

  .pan a:hover {
    border-bottom: solid #ccc 1px;
  }

  /*ヘッダー*/
  .header-phone {
    box-sizing: border-box;
    width: 100%;
    height: 80px;

    position: fixed;
    top: 0;
    z-index: 10;

    align-items: flex-start;
    background-color: #fafafa;
    overflow: hidden;
    border-top: 10px solid #001f50;
  }

  .logo-phone {
    width: 45%;
    z-index: 9999;
    margin: 1.5% 0 0 2%;
  }

  /*固定メニュー全面*/
  #sidebarMenu {
    position: fixed;
    width: 100%;
    height: 100%;
    max-height: 100%;

    transform: translateY(-100%);
    transition: transform 250ms ease-in-out;
    top: 80px;

    background-color: #fafafa;
    z-index: 9;
    overflow: hidden;
  }

  /*メニュー下部*/
  .menuul {
    box-sizing: border-box;
    overflow: auto;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .menuul li span {
    display: block;
    color: #222;
  }

  .menuul li a {
    display: block;

    list-style: none;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;

    text-align: left;
    padding-bottom: 4%;
    padding-top: 4%;
    border-bottom: 1px dotted #c8c8c8;

    color: #222;
    text-transform: uppercase;

    cursor: pointer;

    text-decoration: none;

    font-weight: 400;
    font-size: 1.2rem;
    padding-left: 5%;
  }

  .menuul li:hover {
    background-color: #fff;
    transition: all 0.3s ease;
  }

  .menuul li:hover a {
    color: #222;
  }

  input[type="checkbox"]:checked ~ #sidebarMenu {
    transform: translateX(0);
  }

  input[type="checkbox"] {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
  }

  /*メニューバーアイコン*/

  .sidebarIconToggle {
    position: fixed;
    top: 5%;
    right: 4%;
    font-size: 1px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 999;
  }

  .spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #222;
    margin-left: 22%;
    left: 3%;
    width: 35px;
  }
  .horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: right;
    margin-top: 5px;
  }
  .diagonal.part-1 {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    float: right;
    margin-top: 5px;
  }
  .diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: right;
    margin-top: 5px;
  }
  input[type="checkbox"]:checked ~ .sidebarIconToggle > .horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
  }
  input[type="checkbox"]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 8px;
  }
  input[type="checkbox"]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -9px;
  }

  /*フェードイン*/
  #wrapper {
    /*アニメーション設定*/
    animation-name: fade-in1;
    animation-duration: 1.6s; /*アニメーション時間*/
    animation-timing-function: ease-out; /*アニメーションさせるイージング*/
    animation-delay: 0s; /*アニメーション開始させる時間*/
    animation-direction: normal; /*往復処理をするかどうか*/
    animation-fill-mode: forwards; /*アニメーション後のスタイルをどうするか*/
  }

  /*アニメーション*/
  @keyframes fade-in1 {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  /*ヘッダー*/

  #header .logo {
    display: none;
  }

  #header ul {
    display: none;
  }

  /*-- トップへ戻る --*/
  #page_top {
    display: none;
  }

  #page_top a {
    display: none;
  }

  #page_top a::before {
    display: none;
  }

  /*表示を消す場合*/
  #header,
  .phone-footer,
  .phoneimg,
  .thumb_tap,
  .footer_content {
    display: none;
  }

  /*フッター*/
  .footer_content_privacy {
    box-sizing: border-box;
    background-color: #fafafa;
    padding: 5%;
    border-top: 10px solid #001f50;
  }

  .footer_content_privacy {
    color: antiquewhite;
  }
  .footer_content_privacy a {
    color: #222;
    text-decoration: none;
    font-weight: 100;
  }

  .group_footer {
    text-align: center;
    background-color: #fafafa;
    color: #222;
    padding-bottom: 5%;
    padding-top: 2%;
    font-size: 0.8rem;
  }

  /*TOP画像*/
  .slider {
    margin: auto;
  }

  .slider img {
    height: auto;
    width: 100%;
    height: 240px;
    margin: auto;
    text-align: center;
    margin-top: 90px;
    object-fit: cover;
  }

  .slick-prev {
  }

  .slick-next {
    right: 8%;
  }

  /*index-新着情報*/

  .index-news {
    box-sizing: border-box;
    width: 95%;
    margin: auto;
    padding: 4% 0 7% 0;
    margin-top: -90px;
  }

  .index-news table {
    width: 100%;
    margin: auto;
    border-collapse: separate;
    border-spacing: 0 10px;
    margin-top: 1.5%;
    padding-top: 1%;
    border-top: 1px solid #ccc;
  }

  .index-news th {
    background-color: crimson;
    color: #fff;
    font-weight: 200;
    padding: 0.5%;
    width: 30%;
    border-radius: 10px;
    font-size: 0.9rem;
    display: block;
  }

  .index-news td {
    padding-bottom: 2%;
    width: 100%;
    display: block;
  }

  /*会社概要TOP*/

  /*about header共通*/
  .about-header {
    width: 100%;
    margin-top: 2%;
    height: 180px;
    object-fit: cover;
  }

  #about {
    padding-bottom: 10%;
    width: 95%;
    margin: auto;
  }

  .content_title {
    font-size: 1.3rem;
    margin-top: 3%;
    width: 95%;
    margin: auto;
  }

  .about_top {
    width: 100%;
    margin: auto;
  }

  .about_top .content {
    width: 100%;
    margin: auto;
    text-align: center;
  }

  .about_top .content img {
    margin-top: 10%;
    width: 100%;
  }

  .about_top p {
    margin-top: 2%;
  }

  .about_top a {
    color: #222;
  }

  .about_top a:hover img {
    opacity: 0.7;
    transition: all 0.5s ease;
  }

  .about_top a:hover p {
    color: #1c4937;
    transition: all 0.3s ease;
  }

  /*会社情報*/
  .summary table {
    margin: auto;
    text-align: left;
    width: 100%;
    margin-top: 3%;
  }

  .summary table tr {
    border-bottom: 1px dotted #ccc;
  }

  .summary table th {
    display: block;
    padding-top: 7%;
  }

  .summary table td {
    display: block;
    padding: 3% 0;
  }

  iframe {
    width: 100%;
    margin: auto;
    height: 400px;
    margin-top: 8%;
  }

  /*沿革*/
  .history {
    box-sizing: border-box;
    width: 100%;
    margin-top: 5%;
  }

  .history h2 {
    margin-bottom: 3%;
  }

  .naruto_history {
    margin-bottom: 5%;
  }
  .naruto_history,
  .another_history {
    width: 100%;
  }

  .naruto_history table,
  .another_history table {
    width: 100%;
  }

  .naruto_history th,
  .another_history th {
    box-sizing: border-box;
    text-align: left;
    font-weight: 400;
    background-color: #fafafa;
    padding: 2%;
    border: 1px solid #ccc;
    width: 100%;
    display: block;
  }

  .naruto_history td,
  .another_history td {
    box-sizing: border-box;
    padding: 2%;
    border: 1px solid #ccc;
    display: block;
    width: 100%;
  }

  /*ご挨拶*/
  .greeting {
    line-height: 2.5rem;
    margin-top: 3%;
  }

  /*グループ会社*/
  .group {
    width: 100%;
    margin: auto;
    text-align: center;
    margin-top: 4%;
  }

  .group img {
    border: 1px solid #ccc;
    display: block;
    margin: auto;
  }

  .group ul {
    width: 100%;
    display: block;
    margin: auto;
    text-align: center;
  }

  .group li {
    width: 100%;
    margin: auto;
    text-align: center;
    margin-bottom: 20%;
  }

  .group li img {
    width: 100%;
  }

  .group h2 {
    margin-bottom: 3%;
  }

  .group a {
    color: #1c4937;
  }

  .group a:hover img {
    opacity: 0.7;
    transition: 0.3s all ease;
  }

  .group a:hover {
    color: crimson;
    transition: 0.3s all ease;
  }

  /*グループ会社_詳細*/

  .group_content {
    width: 100%;
    margin: auto;
    border-bottom: 1px dotted #ccc;
    margin-top: 3%;
    padding-bottom: 3%;
  }

  .group_content img {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
  }

  .group_content .text {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
  }

  .fa-window-restore {
    font-size: 0.8rem;
  }

  .group_content a {
    box-sizing: border-box;
    color: #222;
    display: inline-block;
    margin: auto;
    border: 1px solid #222;
    text-align: center;
    padding: 2.5%;
    width: 100%;
    margin-top: 10%;
    margin-bottom: 10%;
  }

  .group_content a:hover {
    background-color: #222;
    border: 1px solid #222;
    color: #fff;
    transition: 0.3s all ease;
  }

  .group_information {
    width: 100%;
    margin: auto;
  }

  .group_information h3 {
    font-size: 1.2rem;
    margin: 5% 0;
  }

  .group_information table {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .group_information td {
    border: 1px solid #ccc;
    padding: 5% 2%;
    display: block;
  }

  .group_information th {
    border: 1px solid #ccc;
    padding: 2%;
    background-color: #fafafa;
    display: block;
    text-align: left;
  }

  /*店舗情報_トップ*/
  #shop {
    width: 100%;
    margin: auto;
  }

  #shop .group {
    width: 100%;
    margin: auto;
    text-align: center;
    margin-top: 4%;
  }

  #shop .group img {
    border: 1px solid #ccc;
  }

  #shop .group ul {
    width: 90%;
    display: block;
    margin: auto;
  }

  #shop .group li {
    width: 100%;
    display: inline-block;
    text-align: left;
    margin: auto;
    margin-bottom: 15%;
    margin-right: 2%;
    vertical-align: top;
  }

  #shop .group h2 {
    margin: 5% 0;
  }

  #shop .group a {
  }

  #shop .group a:hover img {
    opacity: 0.7;
    transition: 0.3s all ease;
  }

  #shop .group a:hover {
    color: crimson;
    transition: 0.3s all ease;
  }

  #shop .link {
    box-sizing: border-box;
    display: block;
    margin-top: 5%;
    border: 1px solid #ccc;
    padding: 3%;
    overflow: hidden;
    background-color: #ccc;
    color: #222;
  }

  /*店舗情報_詳細*/
  .shop_details .title {
    box-sizing: border-box;
    background-color: lightgray;
    padding: 2%;
    margin-top: 3%;
    margin-bottom: 3%;
  }

  .shop_details .about p {
    width: 100%;
    margin-top: 5%;
    display: inline-block;
    vertical-align: top;
  }

  .shop_details .about ul {
    margin-top: 10%;
  }

  .shop_details .about li {
    margin: auto;
    width: 100%;
    text-align: center;
    object-fit: cover;
  }

  .shop_details .about li img {
    width: 95%;
    height: 110px;
    object-position: center;
    object-fit: cover;
  }

  .shop_details .about li:hover {
    opacity: 0.7;
  }

  .shop_details .counter {
    float: none;
    box-sizing: border-box;
    display: block;
    width: 100%;
    border: 1px solid crimson;
    padding: 4%;
    margin-top: 10%;
    text-align: center;
    color: crimson;
    font-size: 1.1rem;
  }

  .big {
    font-size: 1.5rem;
    font-weight: 800;
  }

  /*店舗情報_詳細_アクセス*/

  .shop_details .address {
    width: 100%;
    margin-bottom: 10%;
  }

  .shop_details .access img {
    width: 100%;
    display: inline-block;
    height: 240px;
    object-fit: cover;
  }

  #about .phone_none {
    display: none;
  }

  .shop_details .address th {
    text-align: left;
    line-height: 4rem;
    display: block;
  }
  .shop_details .address td {
    display: block;
  }

  /*おすすめメニュー*/
  .shop_details .shop_menu {
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
  }

  .phone_position img {
    object-position: right;
  }

  .shop_details .about img {
    width: 100%;
  }

  .separate {
    border-collapse: separate;
    border-spacing: 0px 30px;
  }

  .shop_details .shop_menu th {
    width: 100%;
    display: block;
  }

  .shop_menu img {
    width: 100%;
  }

  .shop_details .shop_menu td {
    box-sizing: border-box;
    vertical-align: middle;
    font-weight: 600;
    width: 100%;
    display: block;
  }

  .shop_menu br {
    display: none;
  }

  .shop_details .shop_menu td .small {
    color: dimgray;
    font-weight: 400;
    display: block;
  }

  /*フランチャイズ*/

  .franchise {
    width: 100%;
    text-align: center;
    margin: auto;
    margin-top: 3%;
  }

  .support {
    box-sizing: border-box;
    width: 100%;
    background-color: #fafafa;
    padding: 3%;
    margin-top: 5%;
    overflow: hidden;
  }

  .support_content {
  }

  .support_content .content {
    box-sizing: border-box;
    width: 100%;
    padding: 3%;
    overflow: hidden;
    border-bottom: 1px solid #ccc;
  }

  .support_content .content h3 {
    margin: 4% 0;
  }

  /*フランチャイズ_フォーム*/
  .form_text {
    text-align: left;
    margin-top: 15%;
  }

  .form_text h2 {
    margin-bottom: 8%;
  }

  .form_text h3,
  .form_text li {
    font-size: 0.9rem;
    margin-top: 2%;
  }

  .red {
    color: crimson;
  }

  /*ご意見・お問い合わせ*/
  .contact .tel {
    margin-top: 3%;
  }

  .contact .tel h1 {
    margin-bottom: 2%;
  }

  .contact .tel h2 {
    font-size: 1.5rem;
    margin-bottom: 2%;
  }

  .contact .tel a {
    background-color: #001f50;
    color: #fff;
    padding: 2% 5%;
    display: block;
    width: 10%;
    text-align: center;
    margin-top: 2%;
    margin-bottom: 8%;
  }

  .contact .tel a:hover {
    transition: 0.3s all ease;
    opacity: 0.7;
  }

  /*ご意見メールフォーム*/
  .contact .mailform {
    width: 70%;
  }

  .contact .mailform h3 {
    margin-top: 5%;
  }

  /*フォーム本体*/
  #form {
    width: 100%;
    margin: auto;
    margin-bottom: 5%;
    margin-top: 5%;
  }

  #form table {
    width: 100%;
  }

  #form tr {
    border-bottom: 1px dotted #a8a8a8;
  }

  #form th {
    box-sizing: border-box;
    text-align: left;
    font-weight: 100;
    padding-bottom: 1%;
    padding-top: 3%;
    vertical-align: top;
    padding-right: 5%;
    overflow: hidden;
    display: block;
  }

  #form td {
    vertical-align: middle;
    text-align: left;
    display: block;
    margin-bottom: 5%;
  }

  #name,
  #name_kana {
    box-sizing: border-box;
    width: 100%;
    height: 35px;
    font-size: 16px;
  }

  #address1 {
    box-sizing: border-box;
    width: 100%;
    height: 35px;
    font-size: 16px;
  }

  #address2 {
    box-sizing: border-box;
    width: 100%;
    height: 35px;
    font-size: 16px;
  }

  #address3 {
    box-sizing: border-box;
    width: 100%;
    height: 35px;
    font-size: 16px;
  }

  #yuubin {
    box-sizing: border-box;
    width: 100%;
    height: 35px;
    font-size: 16px;
  }

  .ch {
    font-size: 0.9rem;
    color: darksalmon;
    margin-bottom: 1%;
  }

  #tel {
    box-sizing: border-box;
    width: 100%;
    height: 35px;
    font-size: 16px;
  }

  #mail_address {
    box-sizing: border-box;
    width: 100%;
    height: 35px;
    font-size: 16px;
  }

  #naiyo {
    box-sizing: border-box;
    width: 100%;
    font-size: 16px;
  }

  /*確認ボタン*/

  #submit {
    display: block;
    margin: auto;
    width: 40%;
    padding: 10px;
    background-color: #001f50;
    color: #fff;
    margin-top: 6%;
    border-style: none;
    cursor: pointer;
  }

  #submit:hover {
    transition: 0.3s all ease;
    opacity: 0.7;
  }

  /*お礼ページ*/
  .thanks {
    margin-top: 10%;
    text-align: center;
  }

  .thanks a {
    background-color: #001f50;
    color: #fff;
    margin: auto;
    padding: 3%;
    display: block;
    width: 60%;
    margin-top: 10%;
  }

  .thanks a:hover {
    opacity: 0.7;
    transition: all 0.3s ease;
  }

  /*メール送信確認*/

  #formWrap {
    width: 700px;
    margin: 0 auto;
    color: #222;
    line-height: 120%;
    font-family: "Noto Sans JP";
    margin-bottom: 5%;
  }

  #formWrap h3 {
    padding-top: 10%;
    text-align: center;
    margin-bottom: 5%;
  }

  #formWrap p {
    margin-bottom: 10%;
  }
  #formWrap table.formTable {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
  }
  #formWrap table.formTable td,
  #formWrap table.formTable th {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    padding: 2%;
  }
  #formWrap table.formTable th {
    width: 30%;
    font-weight: normal;
    background: #222;
    color: #fff;
    text-align: left;
  }
  #formWrap p.error_messe {
    margin: 5px 0;
    color: red;
  }

  #formWrap input[type="submit"],
  #formWrap input[type="reset"],
  #formWrap input[type="button"] {
    cursor: pointer;
    margin: 5% 0;
    background-color: #fff;
    color: #222;
    border: 1px solid #222;
    padding: 3%;
    -webkit-appearance: none; /* デフォルトスタイルをリセットする */
  }

  #formWrap input[type="reset"],
  #formWrap input[type="button"] {
    background-color: lightgray;
  }

  #formWrap input:hover {
    background-color: #222;
    color: #fff;
    transition: 0.3s all ease;
  }

  /*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
  @media screen and (max-width: 572px) {
    #formWrap h3 {
      margin-top: 15%;
      text-align: center;
    }

    #formWrap p {
      margin-bottom: 10%;
    }

    #formWrap {
      width: 95%;
      padding-top: 15%;
      margin: 0 auto;
      font-family: "Noto Sans JP";
      padding-bottom: 10%;
    }
    #formWrap table.formTable th,
    #formWrap table.formTable td {
      width: auto;
      display: block;
      font-family: "Noto Sans JP";
      padding: 5%;
      border: initial;
    }
    #formWrap table.formTable th {
      margin-top: 5px;
      border-bottom: 0;
    }
    #formWrap input[type="submit"],
    #formWrap input[type="reset"],
    #formWrap input[type="button"] {
      display: block;
      width: 60%;
      margin: auto;
      height: 60px;
      margin: 5% 0;
      background-color: #fff;
      color: #222;
      border: 1px solid #222;
      -webkit-appearance: none; /* デフォルトスタイルをリセットする */
    }

    #formWrap input[type="reset"],
    #formWrap input[type="button"] {
      background-color: lightgray;
    }

    #formWrap input[type="submit"],
    #formWrap input[type="button"] {
      margin-top: 10%;
    }
  }

  /*プライバシーポリシー*/

  #privacy {
    box-sizing: border-box;
    margin: 0 auto;
    width: 95%;
  }

  #privacy h1 {
    margin-top: 3%;

    border-bottom: 2px solid #f00;
    position: relative;
    padding-bottom: 15px;

    font-size: 1.3rem;
    font-weight: normal;

    margin-bottom: 6%;
  }

  #privacy h1:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2px;
    width: 70%;
    border-bottom: 2px solid #ccc;
  }

  #privacy .pr {
    border: none;
  }

  #privacy .pr:after {
    border: none;
  }

  #privacy h2 {
    border-top: 2px solid #f00;
    position: relative;
    padding-top: 15px;

    font-size: 1.3rem;
    font-weight: normal;

    margin-bottom: 6%;
  }

  #privacy h2:after {
    content: "";
    position: absolute;
    right: 0;
    top: -2px;
    width: 70%;
    border-top: 2px solid #ccc;
  }

  #p01,
  #p02,
  #p03,
  #p04,
  #p05,
  #p06,
  #p07,
  #p08,
  #p09 {
    margin-bottom: 12%;
  }

  #nav2 ul {
    width: 100%;
    margin: auto;
    text-align: center;
    margin-bottom: 5%;
  }

  #nav2 li {
    box-sizing: border-box;
    display: inline-block;
    border-bottom: 1px dotted #f00;
    width: 100%;
    padding: 5px;
    text-align: center;
    margin-top: 2%;
    margin-bottom: 2%;
  }

  #nav2 a {
    color: #333;
    text-decoration: none;
  }

  .p_01 {
    border: 1px solid #333;
    padding: 20px;
    margin-top: 7%;
  }

  .p_02 {
    background: #fafafa;
    padding: 3% 2%;
    margin-top: 2%;
  }

  .p_02 span {
    color: #f00;
  }

  .fo {
    font-size: 20px;
    margin-bottom: 3%;
  }

  .k01 {
    margin-top: 2%;
  }

  .p_03 {
    background-color: #f7f7f7;
    padding: 20px;
    margin-top: 2%;
  }

  #p04 span {
    font-weight: bold;
    color: dodgerblue;
  }

  #nav2 p:hover {
    opacity: 0.6;
  }
}
