@charset "utf-8";


/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
  margin: 0px;
  padding: 0px;
  color: #fff;
  /*全体の文字色*/
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  /*フォント種類*/
  font-size: 16px;
  /*文字サイズ*/
  line-height: 2;
  /*行間*/
  background: #000;
  /*背景色*/
  -webkit-text-size-adjust: none;
}

h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
li,
dl,
dt,
dd,
form,
figure,
form {
  margin: 0px;
  padding: 0px;
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style-type: none;
}

ol {
  padding-left: 40px;
  padding-bottom: 15px;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  font-size: 100%;
  border-spacing: 0;
}

iframe {
  width: 80%;
  height: 560px;
  display: block;
  margin: auto;
  padding: 10px;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
  color: #d8d8d8;
  /*リンクテキストの色*/
  transition: 0.2s;
  /*マウスオン時の移り変わるまでの時間設定。0.2秒。*/
}

a:hover {
  color: #c73302;
  /*マウスオン時の文字色*/
  text-decoration: none;
  /*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*containerブロック
---------------------------------------------------------------------------*/
#container {
  max-width: 100%;
  /*サイトの最大幅*/
  margin: 0 auto;
}

/*ロゴ　＋　メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
.menubar {
  width: 100%;
  height: 80px;
  background: #fff;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.5);
  background: linear-gradient(rgba(255, 255, 255, 0.9), #fff 60%);
  /*グラデーション*/
}

.menubar a img {
  width: 160px;
  margin-left: 32px;
}

.menu_list {
  height: 80px;
  align-items: center;
  display: flex;
}

.menu_list ul {
  display: flex;
  margin-left: 32px;
}

.menu_list ul li {
  margin: 0px 16px;
}

.menu_list ul li a {
  font-size: 18px;
  position: relative;
  color: #000;
  display: flex;
  align-items: center;
}

.menu_list ul li a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #c73302;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: center top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s;
  /*変形の時間*/
}

.menu_list ul li a:hover::after {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}

/* LINE ヘッダー用*/
.menubar_line {
  margin: 8px;
}

.menubar_line a {
  color: #fff;
  background-color: #06C755;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  padding: 0.3rem 2.5rem 0.3rem 1rem;
  max-width: 240px;
  font-size: 1.3rem;
  border-radius: 10px;
}

.menubar_line a:after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

.menubar_line a:hover {
  opacity: 0.7;
}

.menubar_line a .icon-svg-button {
  width: 32px;
  height: 32px;
  margin: 0 8px;
}

/*スマホ用メニューを表示させない*/
#menubar-s {
  display: none;
}

/*ヘッダー
---------------------------------------------------------------------------*/
/*ロゴ画像（トップページのロゴ画像）*/
header #logo img {
  position: absolute;
  left: 45%;
  /*左から45%の場所に配置*/
  top: 0px;
  /*上から0pxの場所に配置*/
  width: 15%;
  /*画像幅*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
  overflow: hidden;
  position: relative;
  z-index: 10;
  background: #000;
  /*背景色*/
  padding: 120px 5% 50px;
  /*上、左右、下へのボックス内の余白*/
}

/*h2見出し*/
#contents h2,
#contents h1.c-page-title {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  /*フォント指定*/
  font-size: 40px;
  /*文字サイズ*/
  margin-bottom: 30px;
  /*下に空ける余白*/
  text-align: center;
  /*文字をセンタリング*/
  letter-spacing: 0.2em;
  /*文字間隔を広くとる設定*/
  color: #fff;
  /*文字色*/
}

/*h2見出しの１文字目*/
#contents h2::first-letter,
#contents h1.c-page-title::first-letter {
  font-size: 60px;
  /*文字サイズ*/
  border: 1px solid #333;
  /*枠線の幅、線種、色*/
  padding: 10px;
  /*余白*/
  margin-right: 5px;
  /*右側に空けるスペース*/
  letter-spacing: normal;
  /*文字間隔を通常に*/
  text-shadow: 5px 5px rgba(255, 255, 255, 0.2);
  /*文字の影。右に、下に、255,255,255は白の事で0.2は透明度20%の事。*/
}

/*h2見出し内のspanタグ*/
#contents h2 span,
#contents h1.c-page-title span {
  display: block;
  font-size: 14px;
  /*文字サイズ*/
  margin-top: -10px;
  /*少し上に詰める設定*/
}

/*h3見出し*/
#contents h3 {
  font-size: 24px;
  /*文字サイズ*/
  color: #c73302;
  /*文字色*/
  margin-bottom: 20px;
  /*下に空ける余白*/
  letter-spacing: 0.1em;
  /*文字間隔を広くとる設定*/
}

/*本文内の小見出しをh2として扱いながら、旧h3の見た目を維持*/
#contents h2.c-content-subtitle {
  font-family: inherit;
  font-size: 24px;
  color: #c73302;
  margin-bottom: 20px;
  text-align: left;
  letter-spacing: 0.1em;
}

#contents h2.c-content-subtitle::first-letter {
  font-size: inherit;
  border: 0;
  padding: 0;
  margin: 0;
  letter-spacing: inherit;
  text-shadow: none;
}

#contents h2.service_detail_title {
  margin: 50px 0 20px;
  color: #c73302;
  font-family: inherit;
  font-size: 24px;
  text-align: left;
  letter-spacing: 0.1em;
}

#contents h2.service_detail_title:first-child {
  margin-top: 0;
}

#contents h2.service_detail_title::first-letter {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: inherit;
  letter-spacing: inherit;
  text-shadow: none;
}

/*段落タグ*/
#contents p {
  margin-bottom: 20px;
  /*下に空ける余白*/
}

/*段落タグにh3見出しが続いた場合、段落タグにh2見出しが続いた場合の設定*/
#contents p+h3,
#contents p+h2 {
  margin-top: 50px;
  /*見出しの上に空ける余白*/
}

/*段落タグが続いた場合の設定*/
#contents p+p {
  margin-top: -5px;
  /*続いた段落タグを少し上に詰める設定*/
}

.content_notes,
.included_items {
  margin: 0 0 20px;
  padding-left: 1.5em;
}

.content_notes {
  list-style: none;
}

.content_notes li::before {
  content: "※";
  margin-left: -1.5em;
  margin-right: 0.5em;
}

.included_items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  list-style: disc;
}

.content_example {
  padding: 12px 16px;
  border-left: 3px solid #c73302;
  background: #1a1a1a;
}

.content_example strong {
  margin-right: 0.5em;
  color: #c73302;
}

.privacy_policy {
  width: 100%;
}

.privacy_section {
  padding-top: 0;
}

.privacy_section+.privacy_section {
  padding-top: 0;
}

#contents .privacy_section h2.service_detail_title {
  margin-top: 50px;
}

.privacy_list {
  margin: 0 0 20px;
  padding-left: 1.5em;
  list-style: disc;
}

.privacy_contact {
  padding: 20px;
  border: 1px solid #555;
  font-style: normal;
}

.privacy_contact span {
  display: block;
}

section+section {
  padding-top: 100px;
}

/*menu_bg（メニューページの小見出し含めた各メニューブロック）
---------------------------------------------------------------------------*/
#contents .menu_bg {
  overflow: hidden;
  background: #000;
  /*背景色*/
  padding: 3%;
  /*ボックス内の余白*/
}

/*box2（メニューページで使用）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#contents .box2 {
  padding: 3%;
  /*ボックス内の余白*/
}

/*ボックス内のh3タグ*/
#contents .box2 h3 {
  margin-bottom: 0;
  color: #fff;
  /*文字色*/
  font-size: 16px;
  /*文字サイズ*/
  font-weight: bold;
  /*太字にする*/
  background: none;
}

/*ボックス内のh3タグの１文字目*/
#contents .box2 h3::before {
  content: "◇ ";
  /*このテキストを冒頭に表示させる。変更してもらって構いませんが機種依存文字は化けるので使わないように。*/
  background: #000;
  /*背景色*/
}

/*ボックス内のh3タグ内のspanタグ*/
#contents .box2 h3 span {
  background: #000;
  /*背景色*/
  padding-right: 30px;
  /*右側に空ける余白*/
}

/*ボックス内のh3タグ内のprice*/
#contents .box2 h3 .price {
  float: right;
  /*右に回り込み*/
  padding-right: 0;
  /*上で設定したspanタグの右の余白をリセット*/
  padding-left: 30px;
  /*左側に空ける余白*/
  font-weight: normal;
  /*太字から標準に戻す*/
}

/*ボックス内の段落タグ*/
#contents .box2 p {
  margin: 0;
  margin-left: 24px;
  /*左に空けるスペース*/
  font-size: 12px;
  /*文字サイズ*/
}

/*ボックス内のfigure画像*/
#contents .box2 figure {
  width: 100%;
  /*幅*/
}

/*box1（トップページの「私たちのこだわり食材」以下の４つのブロック）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box1 {
  overflow: hidden;
  margin-bottom: 30px;
}

/*説明文*/
.box1 figcaption.w50 {
  width: 47%;
}

/*説明文内のstrongタグ*/
.box1 figcaption strong {
  display: block;
  font-weight: normal;
  font-size: 20px;
  /*文字サイズ*/
  color: #c73302;
  /*文字色*/
}

/* よくある質問 
---------------------------------------------------------------------------*/
.accordion-001 {
  width: 80%;
  background-color: #333;
  margin: auto;
  display: block;
  box-shadow: 0 0 5px #f8f8ff;
}

.accordion-001:not([open]) {
  margin-bottom: 16px;
}

.accordion-001 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0.8em 1em;
  background-color: #fff;
  color: #000;
  font-weight: 600;
  font-size: 24px;
  cursor: pointer;
}

.accordion-001 summary::-webkit-details-marker {
  display: none;
}

.accordion-001 summary::before,
.accordion-001 summary::after {
  width: 3px;
  height: .9em;
  border-radius: 5px;
  background: #000;
  content: '';
}

.accordion-001 summary::before {
  position: absolute;
  right: 1em;
  rotate: 90deg;
}

.accordion-001 summary::after {
  transition: rotate .3s;
}

.accordion-001[open] summary::after {
  rotate: 90deg;
}

.accordion-001 p {
  transform: translateY(-10px);
  opacity: 0;
  margin-bottom: 16px;
  padding: 1em 2em 2em 2em;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  transition: transform .5s, opacity .7s;
}

.accordion-001[open] p {
  transform: none;
  opacity: 1;
}

/*フッター設定
---------------------------------------------------------------------------*/
.footer_top {
  width: 100%;
  height: 400px;
  background-image: url(../images/common/backgrounds/washi_bg.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: space-around;
}

.footer_one #footer_top_img img {
  width: 240px;
  margin-bottom: 24px;
}

.footer_sns {
  margin-top: 40px;
}

.footer_sns .footer_heading span {
  color: #000;
  font-size: 24px;
  line-height: 2;
  border-bottom: 2px solid red;
}

.footer_sns a .icon-svg-social {
  width: 40px;
  height: 40px;
  margin: 0;
}

.footer_sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-right: 4px;
  line-height: 1;
  vertical-align: middle;
}

.footer_sns a img {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0;
  object-fit: contain;
}

.footer_sns a:last-child {
  margin-right: 0;
}

.footer_sns a .icon-svg-social:hover {
  opacity: 0.8;
}

.footer_sns a img:hover {
  opacity: 0.8;
}

.footer_second {
  line-height: 2;
  padding-top: 40px;
}

.footer_second .footer_heading span {
  color: #000;
  font-size: 32px;
  border-bottom: 2px solid red;
}

.footer_second p a {
  color: #000;
  line-height: 2.5;
  font-size: 16px;
}

.footer_second p a:hover {
  border-bottom: 1px solid red;
}

.footer_third {
  line-height: 2;
  padding-top: 40px;
}

.footer_third .footer_heading span {
  color: #000;
  font-size: 32px;
  border-bottom: 2px solid red;
}

.footer_line {
  margin: 32px 0px;
}

.footer_line a {
  color: #fff;
  background-color: #06C755;
  border-bottom: 5px solid #094;
  padding: 1rem 3rem 1rem 2rem;
  font-size: 1.5rem;
  border-radius: 100vh;
}

.footer_line a:hover {
  color: #fff;
  background: #4CC764;
  border-bottom: 2px solid #4CC764;
}

.footer_line a .icon-svg-button {
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 1rem;
}

.footer_tel {
  margin-top: 40px;
}

.footer_tel a {
  color: #fff;
  background-color: #eb6100;
  border-bottom: 5px solid #d25600;
  padding: 1rem 3rem 1rem 2rem;
  font-size: 1.5rem;
  border-radius: 100vh;
}

.footer_tel a:hover {
  background-color: #eb7900;
  border-bottom: 2px solid #eb7900;
}

.footer_tel a .icon-svg-button {
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 1rem;
}


/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
  clear: both;
  text-align: center;
  background: #c73302;
  /*背景色*/
}

#copyright a {
  text-decoration: none;
}

#copyright a:hover {
  color: #d8d8d8;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
  border-top: 1px solid #222;
  /*上の幅、線種、色*/
}

/*日付設定*/
#new dt {
  float: left;
  width: 9em;
  /*幅*/
  color: #c73302;
  /*文字色*/
  letter-spacing: 0.1em;
}

/*記事設定*/
#new dd {
  padding-left: 9em;
  border-bottom: 1px solid #222;
  /*下線の幅、線種、色*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
  width: 100%;
  margin: 0 auto 30px;
}

.ta1,
.ta1 td,
.ta1 th {
  border: 1px solid #222;
  /*テーブルの枠線の幅、線種、色*/
  padding: 10px 15px;
  /*ボックス内の余白*/
  word-break: break-all;
}

/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
  width: auto;
  text-align: left;
  /*左よせ*/
}

/*ta1の左側ボックス*/
.ta1 th {
  width: 140px;
  /*幅*/
  text-align: center;
  /*センタリング*/
  font-weight: normal;
}

/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
  width: 100%;
}

/*inputボタン
---------------------------------------------------------------------------*/
#contents input[type="submit"].btn,
#contents input[type="button"].btn,
#contents input[type="reset"].btn {
  padding: 5px 10px;
  /*上下、左右へのボックス内の余白*/
  border: 1px solid #ccc;
  /*枠線の幅、線種、色*/
  font-size: 20px;
  /*文字サイズ*/
  border-radius: 3px;
  /*角丸のサイズ*/
  background: #eee;
  /*背景色*/
}

/*マウスオン時の設定*/
#contents input[type="submit"].btn:hover,
#contents input[type="button"].btn:hover,
#contents input[type="reset"].btn:hover {
  border: 1px solid #999;
  /*枠線の幅、線種、色*/
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
  background: #F00;
  /*背景色*/
  color: #FFF;
  /*文字色*/
  font-size: 70%;
  /*文字サイズ*/
  line-height: 1.5;
  padding: 2px 5px;
  border-radius: 2px;
  margin: 0px 5px;
  vertical-align: text-top;
}

/*その他
---------------------------------------------------------------------------*/
.look {
  background: #333;
  padding: 5px 10px;
  border-radius: 4px;
}

.mb15,
.mb1em {
  margin-bottom: 15px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.p0 {
  padding: 0 !important;
}

.clear {
  clear: both;
}

ul.disc {
  padding: 0em 25px 15px;
  list-style: disc;
}

.color1,
.color1 a {
  color: #c73302 !important;
}

.pr {
  font-size: 10px;
}

.wl {
  width: 96%;
}

.ws {
  width: 50%;
}

.c {
  text-align: center;
}

.r {
  text-align: right;
}

.l {
  text-align: left;
}

.w50 {
  overflow: hidden;
  width: 50%;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.big1 {
  font-size: 50px;
}

.mini1 {
  font-size: 11px;
  display: inline-block;
  line-height: 1.5;
}

.sh {
  display: none;
}

.bg1 {
  overflow: hidden;
  background: #000 !important;
}

.bg2 {
  overflow: hidden;
  background: url(../images/common/backgrounds/bg2.jpg) !important;
}



/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px) {

  .included_items {
    grid-template-columns: 1fr;
  }

  #navArea {
    display: block;
  }

  /*メインメニュー
---------------------------------------------------------------------------*/
  /*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明度(opacity)0%から透明度100%にする指定。*/
  @keyframes menu1 {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  /*ヘッダー
---------------------------------------------------------------------------*/
  /*ロゴ画像（トップページのロゴ画像）*/
  header #logo img {
    left: 5%;
    /*左から5%の場所に配置*/
    width: 20%;
    /*画像幅*/
  }

  /*メインメニュー
---------------------------------------------------------------------------*/
  /*スマホ用メニューブロック*/
  #menubar-s {
    display: flex;
    position: fixed;
    width: 72%;
    top: 0px;
    left: -800px;
    bottom: 0px;
    z-index: 30;
    background: #ffffff;
    /*背景色*/
    transition: all 0.25s;
  }

  .open #menubar-s {
    left: 0;
    opacity: 1;
  }

  #menubar-s .inner {
    padding: 30px;
  }

  #menubar-s ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  #menubar-s ul li {
    margin: 0;
    border-bottom: 1px solid #333;
  }

  /*メニュー１個あたりの設定*/
  #menubar-s li a {
    display: block;
    color: #333;
    font-size: 18px;
    padding: 1rem;
    text-decoration: none;
    transition-duration: 0.2s;
  }

  #menubar-s li a:hover {
    background: #e4e4e4;
  }

  /*PC用メニューを非表示にする*/
  .menubar {
    display: none;
  }

  /*３本バーアイコン設定
---------------------------------------------------------------------------*/
  /*３本バーブロック*/
  .toggle-btn {
    display: block;
    position: fixed;
    top: 30px;
    right: 30px;
    width: 54px;
    height: 48px;
    z-index: 30;
    cursor: pointer;
    background-color: #111;
    border: 1px solid #fff;
  }

  .toggle-btn span {
    position: absolute;
    display: block;
    left: 8px;
    width: 70%;
    height: 3px;
    background-color: #fff;
    transition: all 0.5s;
    border-radius: 4px;
  }

  .toggle-btn span:nth-child(1) {
    top: 10px;
  }

  .toggle-btn span:nth-child(2) {
    top: 22px;
  }

  .toggle-btn span:nth-child(3) {
    bottom: 10px;
  }

  .open .toggle-btn span:nth-child(1) {
    transform: translateY(12px) rotate(-315deg);
  }

  .open .toggle-btn span:nth-child(2) {
    opacity: 0;
  }

  .open .toggle-btn span:nth-child(3) {
    transform: translateY(-11px) rotate(315deg);
  }

  /* 3本線の発生時の背景 */
  #mask {
    display: none;
    transition: all 0.5s;
  }

  .open #mask {
    display: block;
    background: #000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    opacity: 0.8;
    z-index: 20;
    cursor: pointer;
  }

  /*コンテンツ
---------------------------------------------------------------------------*/
  #contents {
    padding-top: 50px;
    /*上側のボックス内の余白*/
  }

  section+section {
    padding-top: 20px;
  }

  /* YouTube */
  iframe {
    width: 96%;
    height: 320px;
    display: block;
    margin: auto;
    padding: 5px;
  }

  /*box1（トップページの「私たちのこだわり食材」以下の４つのブロック）
---------------------------------------------------------------------------*/
  /*説明文*/
  .box1 figcaption.w50 {
    width: auto;
  }

  /* よくある質問
---------------------------------------------------------------------------*/
  .accordion-001 {
    width: 95%;
  }

  .accordion-001 summary {
    padding: 1em 1em;
    font-size: 16px;
  }

  .accordion-001 summary::before {
    right: 1em;
  }

  .accordion-001 p {
    padding: 0.6em 1.5em 1.5em 1.5em;
    font-size: 16px;
    line-height: 1.3;
  }

  /*フッター設定
---------------------------------------------------------------------------*/
  .footer_top {
    height: 1000px;
    display: block;
    padding: 40px 0;
  }

  .footer_one #footer_top_img img {
    margin: auto;
    display: block;
    padding: 18px 0px;
  }

  .footer_sns {
    text-align: center;
  }

  .footer_second .footer_heading {
    text-align: center;
  }

  .footer_second p {
    text-align: center;
  }

  .footer_third {
    text-align: center;
  }

  .footer_line a {
    color: #fff;
    background-color: #06C755;
    border-bottom: 5px solid #094;
    padding: 0.8rem 2.5rem 0.8rem 1.5rem;
    font-size: 1.2rem;
    border-radius: 100vh;
  }

  .footer_line a .icon-svg-button {
    width: 1.4rem;
    height: 1.4rem;
    margin-right: 0.6rem;
  }

  .footer_tel a {
    color: #fff;
    background-color: #eb6100;
    border-bottom: 5px solid #d25600;
    padding: 0.8rem 2.5rem 0.8rem 1.5rem;
    font-size: 1.2rem;
    border-radius: 100vh;
  }

  .footer_tel a .icon-svg-button {
    width: 1.4rem;
    height: 1.4rem;
    margin-right: 1rem;
  }

  /*その他
---------------------------------------------------------------------------*/
  body.s-n #sub,
  body.s-n #footermenu,
  .m-n {
    display: none;
  }

  .big1 {
    font-size: 24px;
  }

  .w50 {
    overflow: hidden;
    width: auto;
  }

  .fl {
    float: none;
  }

  .fr {
    float: none;
  }

}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px) {

  /*全体の設定
---------------------------------------------------------------------------*/
  body {
    font-size: 12px;
    /*文字サイズ*/
    line-height: 1.5;
    /*行間*/
  }

  /*コンテンツ
---------------------------------------------------------------------------*/
  #contents h2,
  #contents h1.c-page-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  #contents h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  #contents h2.c-content-subtitle {
    font-size: 20px;
  }

  /*h2見出しの１文字目*/
  #contents h2::first-letter,
  #contents h1.c-page-title::first-letter {
    border: none;
    padding: 0;
    margin: 0;
    text-shadow: none;
    font-size: 24px;
    /*文字サイズ*/
    letter-spacing: 0.2em;
  }

  /*h2見出し内のspanタグ*/
  #contents h2 span,
  #contents h1.c-page-title span {
    font-size: 10px;
    margin-top: 0px;
  }

  /*フッターメニュー
---------------------------------------------------------------------------*/
  /*ボックス全体*/
  #footermenu {
    display: none;
  }

  /*テーブル（ta1）
---------------------------------------------------------------------------*/
  /*ta1設定*/
  .ta1,
  .ta1 td,
  .ta1 th {
    padding: 5px;
    /*ボックス内の余白*/
  }

  /*ta1の左側ボックス*/
  .ta1 th {
    width: 100px;
  }

  /*inputボタン
---------------------------------------------------------------------------*/
  #contents input[type="submit"].btn,
  #contents input[type="button"].btn,
  #contents input[type="reset"].btn {
    font-size: 16px;
    /*文字サイズ*/
  }

  /*その他
---------------------------------------------------------------------------*/
  .ws,
  .wl {
    width: 94%;
  }

  .big1 {
    font-size: 16px;
  }

  .sh {
    display: block;
  }

  .pc {
    display: none;
  }

}
