@charset "UTF-8";


/* ============================== */
/* 共通 */
/* ============================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-size: 16px;
  color: #333;
}
@media screen and (max-width:360px) {
  html {
    font-size: 14px;
  }
}
.wf-notosansjapanese {
  font-family: "Noto Sans JP";
}
body {
  background: #f3efee;
  overflow-x: hidden;
  /* z-index: -99; */
}
main {
  overflow: hidden;
}

/* ===== コンテンツサイズ ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}
@media screen and (max-width:1220px) {
  .container {
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media screen and (max-width:767px) {
  main:not(.home) .container , main:not(.shop-hom) .container {
    overflow: visible;
  }
}

.inlineBlock {
  display: inline-block;
}

span.ib {
  display: inline-block;
}



/* ===== デバイス切り替え表示 ===== */
@media screen and (max-width:1000px) {
  .min1001 {
    display: none;
  }
}
@media screen and (min-width:1001px ) {
  .max1000 {
    display: none;
  }
}
@media screen and (max-width:767px) {
  .min768 {
    display: none;
  }
}
@media screen and (min-width:768px) {
  .max767 {
    display: none;
  }
}
@media screen and (max-width:600px ) {
  .min601 {
    display: none;
  }
}
@media screen and (min-width:601px) {
  .max600 {
    display: none;
  }
}

/* ===== 文字設定 ===== */
ol {
  padding-left: 1.3em;
  list-style: decimal;
}
ul {
  padding-left: 1.3em;
  list-style: disc;
}
ol:not(:last-child) , ul:not(:last-child) {
  margin-bottom: 1em;
}
ol li , ul li {
  line-height: 1.75;
}
p {
  line-height: 1.75;
  margin: .5em auto 1em;
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

h2 {
  font-size: 26px;
  font-weight: bold;
  display: table;
  margin: 0 auto 2em;
  max-width: 1200px;
  position: relative;
}
h2:before , h2:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  width: 480px;
  height: 40px;
  background: url(../img/top/h2.png) no-repeat center/contain;
}
h2:before {
  transform: translate(-100% , -50%) rotateX(-180deg);
  left: -3em;
}
h2:after {
  transform: translate(100% , -50%);
  right: -3em;
}
h2 span {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #f29739;
}
@media screen and ( min-width:801px ) {
  main:not(.home):not(.shop-home) h2 {
    margin-bottom: 1.5em;
  }
}
@media screen and ( max-width:800px ) {
  h2 {
    margin-bottom: 1.5em;
  }
  h2:before , h2:after {
    width: 360px;
    height: 30px;
  }
  h2:before {
    left: -2em;
  }
  h2:after {
    right: -2em;
  }
}
@media screen and ( max-width:480px ) {
  h2 {
    /* font-size: 18px; */
    font-size: 22px;
    margin-bottom: 1em;
  }
  h2 span {
    font-size: 12px;
  }
  h2:before , h2:after {
    width: 240px;
    height: 20px;
  }
  h2:before {
    left: -1.5em;
  }
  h2:after {
    right: -1.5em;
  }
}
main:not(.page-post) h2 {
  text-align: center;
}

h3 {
  font-size: 18px;
  font-weight: bold;
}
@media screen and ( max-width:480px ) {
  h3 {
    font-size: 16px;
  }
}

h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 1em;
  padding-bottom: .3em;
  border-bottom: 2px solid #333;
}
@media screen and ( max-width:480px ) {
  h4 {
    font-size: 14px;
  }
}

main:not(.home) h1 {
  background: url(../img/under/h1.png) no-repeat center/cover;
}
main.shop01-under h1 {
  background: url(../img/under/shop01_h1.png) no-repeat center/cover;
}
main.shop02-under h1 {
  background: url(../img/under/shop02_h1.png) no-repeat center/cover;
}
main.shop03-under h1 {
  background: url(../img/under/shop03_h1.png) no-repeat center/cover;
}
main:not(.home) h1 {
  font-size: 30px;
  font-weight: bold;
  padding: 2.6em 0;
  text-align: center;
  color: #fff;
}
@media screen and ( max-width: 800px) {
  main:not(.home) h1 {
    padding: 1.5em 0;
  }
}
@media screen and ( max-width: 480px) {
  main:not(.home) h1 {
    font-size: 22px;
  }
}
main:not(.home):not(.shop-home) h3 {
  margin-bottom: .5em;
  padding-left: 1.3em;
  position: relative;
}
main:not(.home):not(.shop-home) h3:after {
  content: '';
  display: block;
  position: absolute;
  top: .2em;
  left: 0;
  width: 4px;
  height: 1.3em;
  background: #333;
}


/* ボタン、リンク */
.btn {
  text-align: center;
}
.btn a {
  display: inline-block;
  background: #fff;
  border: 2px solid #333;
  color: #333;
  font-size: 20px;
  max-width: 340px;
  width: 100%;
  margin: auto;
  text-align: center;
  text-decoration: none;
  padding: .9em .3em;
  transition: .3s;
  width: 100%;
  height: 100%;
  position: relative;
}
.btn a:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 5%;
  width: .5em;
  height: .5em;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: translateY(-50%) rotate(45deg);
  transition: .3s;
}
.btn a:hover {
  color: #fff;
  background: #333;
}
.btn a:hover:after {
  right: 3%;
  border-color: #fff;
}
@media screen and ( max-width:800px ) {
  .btn a {
    font-size: 16px;
  }
}


/* 横並び要素 */
@media screen and ( min-width:601px ) {
  .clearfix .float {
    float: left;
  }
  .clearfix .float:not(:first-child) {
    margin-left: 2%;
  }
  .clearfix .float.span10 {
    width: 83%;
  }
  .clearfix .float.span9 {
    width: 74.5%;
  }
  .clearfix .float.span8 {
    width: 66%;
  }
  .clearfix .float.span7 {
    width: 58%;
  }
  .clearfix .float.span6 {
    width: 49%;
  }
  .clearfix .float.span5 {
    width: 40%;
  }
  .clearfix .float.span4 {
    width: 32%;
  }
  .clearfix .float.span3 {
    width: 23.5%;
  }
  .clearfix .float.span2 {
    width: 15%;
  }
  .clearfix:after{
    content: "";
    display: block;
    clear: both;
  }
}
@media screen and ( max-width:600px ) {
  .clearfix .float:not(:last-child) {
    margin-bottom: 3%;
  }
}
.row:not(:last-child) {
  margin-bottom: 4%;
}
@media screen and ( max-width:600px ) {
  .row:not(:last-child) {
    margin-bottom: 6%;
  }
}


/* 幅寄せ・カラー指定 */
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.red {
  color: #f00;
}
.blue {
  color: #00f;
}


/* 画像要素 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}



/* ================================================== */
/* ヘッダー */
/* ================================================== */

/* ヘッダー追従 */
#header {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 2px rgba(0 , 0 , 0 , .1);
  margin: 0 auto;
  transition: top 0.3s ease-in;
  width: 100%;
  z-index: 999;
}

#header .container {
  position: relative;
  overflow: visible;
}
@media screen and ( max-width:1219px ){
  #header .container {
    margin: 0 0 0 10px;
    padding: 0;
  }
}
#header.container:after {
  content: '';
  clear: both;
  display: block;
}

/* ヘッダーロゴ */
#header .logo {
  font-size: 1em;
  line-height: 1;
  display: inline-block;
}
#header .logo a {
  display: inline-block;
}
#header .logo img {
  width: 300px;
  height: 40px;
}
@media screen and (min-width:1001px) {
  #header .logo {
    padding: 36px 0;
  }
}
@media screen and ( max-width:1200px ){
  #header .logo img {
    width: 260px;
    height: 40px;
  }
}

/* ============================== */
/* ヘッダーインフォメーション */
/* ============================== */

/* ===== PCヘッダーインフォボタン ===== */
#header .pc_h_info {
  position: absolute;
  top: 12px;
  right: 0;
  z-index: 999;
  display: block;
  width: 730px;
  height: 78px;
}
/* 注釈コメント */
.pc_h_info_comments {
  background: #333;
  border-radius: 10px 10px 0 0;
  margin-bottom: 4px;
  text-align: center;
}
.pc_h_info_comments p {
  display: table;
  color: #fff;
  font-size: 14px;
  padding: 0 2em;
  position: relative;
}
.pc_h_info_comments span {
  padding-left: 1em;
}
.pc_h_info_comments p:before , .pc_h_info_comments p:after {
  content: '▼';
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #f5ff00;
  width: 1em;
  height: 1.75em;
  z-index: 1;
}
.pc_h_info_comments p:before {
  left: 0;
}
.pc_h_info_comments p:after {
  right: 0;
}
/* ボタンエリア */
.pc_h_info .h_btn_area {
  display: flex;
}
.pc_h_info .h_btn {
  border-radius: 10px;
  width: 100%;
  text-decoration: none;
  transition: .3s;
  position: relative;
}
.pc_h_info .h_btn:not(:last-child) {
  margin-right: 4px;
}
.pc_h_info .h_btn .box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 9px 10px;
}
.pc_h_info .h_btn p:first-child {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
  margin-right: 12px;
  padding-left: 42px;
  white-space: nowrap;
  position: relative;
}
.pc_h_info .h_btn:after , .pc_h_info .h_btn p:first-child:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
}
.pc_h_info .h_btn:after {
  right: 4px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-100% , -50%) rotate(45deg);
}
.pc_h_info .h_btn p:first-child:after {
  left: 0;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
}
.pc_h_info .h_btn .microcopy {
  background: #ffeb00;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  margin: 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
  width: 0;
}
.pc_h_info .h_btn .ib {
  display: block;
}
/* ホバー挙動 */
.pc_h_info .h_btn:hover {
  width: 200%;
}
.pc_h_info .h_btn:hover .microcopy  {
  width: 44%;
}
/* ボタンごとの設定 */
.pc_h_info .tel_info {
  background: #e85300;
}
.pc_h_info .tel_info .microcopy {
  color: #e85300;
}
.pc_h_info .tel_info p:first-child:after {
  background: url(../img/header/pc_h_info_tel.svg) no-repeat center/contain;
}
.pc_h_info .web_info {
  background: #0a7fbc;
}
.pc_h_info .web_info .microcopy {
  color: #0a7fbc;
}
.pc_h_info .web_info p:first-child:after {
  background: url(../img/header/pc_h_info_web.svg) no-repeat center/contain;
}
.pc_h_info .line_info {
  background: #07aa00;
}
.pc_h_info .line_info .microcopy {
  color: #07aa00;
}
.pc_h_info .line_info p:first-child:after {
  background: url(../img/header/pc_h_info_line.svg) no-repeat center/contain;
}
.pc_h_info .visiting_info {
  background: #2323a2;
}
.pc_h_info .visiting_info .microcopy {
  color: #2323a2;
}
.pc_h_info .visiting_info p:first-child:after {
  background: url(../img/header/pc_h_info_visiting.svg) no-repeat center/contain;
}
.pc_h_info .shop_info {
  background: #652388;
}
.pc_h_info .shop_info .microcopy {
  color: #652388;
}
.pc_h_info .shop_info p:first-child:after {
  background: url(../img/header/pc_h_info_shop.svg) no-repeat center/contain;
}

/* =====  スマホ ===== */
@media screen and ( max-width: 1000px ) {
  #header {
    width: 100%;
    height: 64px;
  }
  #mobile-head {
    background: #fff;
    width: 100%;
    height: 64px;
    z-index: 999;
    position: relative;
  }
  #mobile-head .logo {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
}
/* SPハンバーガーメニュー */
#nav-toggle {
  display: none;
  position: absolute;
  right: 10px;
  top: 14px;
  width: 34px;
  height: 36px;
  cursor: pointer;
  z-index: 101;
}
@media screen and ( max-width: 1000px ) {
  #nav-toggle {
    display: block;
  }
}
#nav-toggle div {
  position: relative;
}
#nav-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #333;
  left: 0;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
  top: 2px;
}
#nav-toggle span:nth-child(2) {
  top: 11px;
}
#nav-toggle span:nth-child(3) {
  top: 20px;
}
#nav-toggle span:nth-child(4) {
  top: 25px;
  font-size: 0.8em;
  height: 0;
  text-align: center;
}
/* #nav-toggle 切り替えアニメーション */
.open #nav-toggle span:nth-child(1) {
  top: 11px;
  transform: rotate(315deg);
}
.open #nav-toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 11px;
  transform: rotate(-315deg);
}
/* Gナビ スライドアニメーション */
.open #global_nav {
  right: 0;
}
.drawer-overlay {
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0 , 0 , 0 , .5);
}
header.open + main .drawer-overlay {
  display: block;
}

/* ===== Gナビ  ===== */
#global_nav ul {
  list-style: none;
}
@media screen and ( max-width:1000px ) {
  #global_nav {
    position: absolute;
    /* 開いてないときは画面外に配置 */
    right: -100%;
    /* background: transparent; */
    background: #333;
    /* width: 100%; */
    /* width: calc( 50% - 1px ); */
    width: 75%;
    max-width: 300px;
    /* height: 100vh; */
    height: calc(100vh + 64px);
    padding-bottom: 64px;
    text-align: center;
    transition: .5s ease-in-out;
    overflow-y: scroll;
  }
  #global_nav > ul {
    padding: 0 0 .5em;
  }
  #global_nav ul li {
    position: static;
    transition: .3s;
  }
  #header #global_nav ul li a {
    width: 100%;
    display: block;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    padding: 13px 0;
  }
  #header #global_nav ul li a {
    border-bottom: 1px solid #000;
    box-shadow: 0 1px 0 rgba( 255 , 255 , 255 , .2);
    transition: .3s;
  }
  #header #global_nav ul li a:hover {
    background: #f3efee;
    color: #333;
  }
  #header #global_nav ul li a:hover:after {
    border-color: #333;
  }
  #header #global_nav li:last-child {
    /* 余白24px + ヘッダー高さ64px + α */
    margin-bottom: 88px;
  }
}


/* ===== SPインフォ  ===== */
@media screen and (max-width:1000px) {
  #header .pc_h_info {
    display: none;
  }
  #header .sp_h_info {
    display: block;
    position: static;
    width: 100%;
    height: auto;
  }
  .sp_h_info .tel_info , .sp_h_info .web_info , .sp_h_info .line_info {
    display: block;
    background: #eee;
    text-align: center;
    margin: auto;
  }
  .sp_h_info .tel_info {
    padding-bottom: 1.5%;
  }
  .sp_h_info .web_info , .sp_h_info .line_info {
    padding-bottom: 3%;
  }
  .sp_h_info p {
    margin: 0;
  }
  .sp_h_info p.title {
    color: #fff;
    font-weight: bold;
    margin-bottom: 3%;
  }
  .sp_h_info p.title span {
    font-size: 16px;
  }
  /* 各タイトル */
  .sp_h_info .tel_info p.title {
    background: linear-gradient(to right, #f38f1e, #f37b1e, #f3691e);
  }
  .sp_h_info .web_info p.title {
    background: #1496b4;
  }
  .sp_h_info .line_info p.title {
    background: #00b43c;
  }
  /* ハンバーガー内ボタン 共通装飾 */
  .sp_h_info a {
    display: block;
    border-radius: 5px;
    text-decoration: none;
    margin: auto;
    max-width: 268px;
    width: 94%;
  }
  .sp_h_info a p  {
    display: table;
    color: #fff;
    font-weight: bold;
    margin: auto;
    white-space: nowrap;
    position: relative;
  }
  .sp_h_info a p:before , .sp_h_info a p:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
  }
  .sp_h_info a p:before  {
    right: 0;
    transform: translateY(-50%) rotate(45deg);
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
  .sp_h_info a p:after  {
    left: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
  }
  /* SP TEL */
  .sp_h_info .tel_info a {
    background: linear-gradient(to right, #f38f1e, #f37b1e, #f3691e);
    border-bottom: 4px solid #9a3f00;
  }
  .sp_h_info .tel_info a p  {
    font-size: 30px;
    line-height: 1;
    padding: 14px .65em 12px 1em;
  }
  .sp_h_info .tel_info a p:after {
    background: url(../img/header/lp_tel_icon.svg) no-repeat center/contain;
  }
  .sp_h_info .tel_info .reception_time {
    color: #666;
  }
  /* SP WEB */
  .sp_h_info .web_info a {
    background: #1496b4;
    border-bottom: 4px solid #006a7c;
  }
  .sp_h_info .web_info a p {
    font-size: 18px;
    padding: 12px 1.1em 13px 1.65em;
  }
  .sp_h_info .web_info a p:after {
    background: url(../img/header/lp_web_icon.svg) no-repeat center/contain;
  }
  /* SP LINE */
  .sp_h_info .line_info a {
    background: #00b43c;
    border-bottom: 4px solid #006f18;
  }
  .sp_h_info .line_info a p {
    font-size: 18px;
    padding: 12px 1.1em 13px 1.65em;
  }
  .sp_h_info .line_info a p:after {
    background: url(../img/header/lp_line_icon.svg) no-repeat center/contain;
  }
}
@media screen and (max-width:374px) {
  .sp_h_info .tel_info a p {
    font-size: 8vw;
  }
  .sp_h_info .web_info a p , .sp_h_info .line_info a p {
    font-size: 4.8vw;
  }
}



/* ============================== */
/* フッター */
/* ============================== */

footer {
  background: #333;
  position: relative;
  z-index: 99;
}

/* ===== フッターナビ ===== */
.footer_nav .container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5% 0;
}
/* フッターナビ中身 */
.footer_nav_text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
}
.footer_nav_text li {
  line-height: 2.125;
}
.footer_nav_text a {
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: .3s;
}
.footer_nav_text a:hover {
  opacity: .8;
}
/* フッターロゴ */
.footer_logo img {
  display: block;
  width: 90%;
  height: auto;
  max-width: 348px;
  /* max-height: 38px; */
  margin: auto;
}
@media screen and (min-width:768px) {
  .footer_nav .container > * {
    width: 48.75%;
  }
  .footer_nav_text {
    margin-left: 2.5%;
  }
}
@media screen and (max-width:767px) {
  .footer_nav .container {
    flex-wrap: wrap;
    padding: 12% 0;
  }
  .footer_nav .container > * {
    width: 100%;
  }
  .footer_logo {
    margin-bottom: 5%;
  }
}
@media screen and (min-width:1281px) {
  .footer_nav .container {
    padding: 64px 0;
  }
  .footer_nav_text li {
    width: 32%;
    margin-left: 2%;
  }
  .footer_nav_text li:nth-child(3n+1) {
    margin-left: 0;
  }
}
@media screen and (max-width:1280px) {
  .footer_nav_text li {
    width: 49%;
    margin-left: 2%;
    font-size: 14px;
  }
  .footer_nav_text li:nth-child(odd) {
    margin-left: 0;
  }
}
@media screen and (max-width:374px) {
  .footer_nav_text li {
    font-size: 3.7vw;
  }
}


/* ===== フッターコピーライト ===== */
.footer_copyright {
  background: #fff;
  font-size: 14px;
  color: #333;
  margin: 0;
  padding: 0.43em 0;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .footer_copyright {
    font-size: 12px;
  }
}



/* ============================== */
/* SPフッター追従 */
/* ============================== */
@media screen and ( min-width: 1001px ){
  footer .sp_footer {
    display: none !important;
  }
}
@media screen and (max-width: 1000px ){
  .sp_footer {
    display: none;
    width: 100%;
    height: auto;
    position: fixed;
    bottom: 0;
    left: 0;
    /* background-color: #333;
    border-top: 1px solid rgba(255 , 255 , 255 , .2);
    box-shadow: 0 -1px 0px #000; */
    z-index: 99;
  }

  #in_time .intime_tablet {
    display: none;
  }
  @media screen and (min-width:481px) and (max-width:1000px) {
    .sp_footer:after , #off_hours:after {
      clear: both;
      content: '';
      display: block;
    }
    footer .sp_footer #in_time , footer .sp_footer #off_hours {
      display: block !important;
      float: left;
      width: 50%;
    }
    #in_time .intime_sp {
      display: none;
    }
    #in_time .intime_tablet {
      display: block;
    }
    #off_hours > div {
      float: left;
      width: 50%;
    }
    .sp_footer a {
      display: block;
      width: 100%;
      height: 100%;
    }
    .sp_footer img {
      width: 100%;
    }
  }
  @media screen and (max-width:480px) {
    main.home section:last-child , main.shop-home section:last-child {
      /* margin-bottom: 12.5%; */
      margin-bottom: 20%;
    }
    #in_time .intime_sp {
      display: flex;
    }
    .sp_footer #in_time > div a , .sp_footer #off_hours > div a {
      display: block;
      width: 100%;
      height: 100%;
    }
    .sp_footer #off_hours:after {
      clear: both;
      content: '';
      display: block;
    }
    .sp_footer #off_hours > div {
      float: left;
      width: 50%;
    }
  }
  /* ボタンカラー調整追記 */
  .sp_footer ul li {
    box-shadow: -1px 1px 0 rgba(255,255,255,.2);
  }
  .sp_footer ul li:first-child {
    background: #f29739;
    border-left: 1px solid #a25200;
    border-right: 1px solid #a25200;
    border-bottom: 2px solid #a25200;
    /* ディスプレイ変更追記 */
    width: 50%;
  }
  .sp_footer ul li:first-child a {
    border-top: 1px solid rgba(255 , 255 , 255 , .5);
    box-shadow: 0 -1px 0 #a25200;
  }
  /* アイコンディスプレイ変更追記 */
  .sp_footer ul li:first-child i {
    display: inline-block;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .sp_footer ul li:first-child a span:nth-of-type(1) {
    padding-left: .3em;
  }
  .sp_footer ul li:first-child a span:nth-of-type(2) {
    display: block;
    font-size: .8em;
  }

  .sp_footer ul li:nth-child(2) {
    background: #1892d2;
    border-left: 1px solid #015c8c;
    border-right: 1px solid #015c8c;
    border-bottom: 2px solid #015c8c;
  }
  .sp_footer ul li:nth-child(2) a {
    border-top: 1px solid rgba(255 , 255 , 255 , .5);
    box-shadow: 0 -1px 0 #015c8c;
  }
  .sp_footer ul li:nth-child(3) {
    background: #00b900;
    border-left: 1px solid #016e01;
    border-right: 1px solid #016e01;
    border-bottom: 2px solid #016e01;
  }
  .sp_footer ul li:nth-child(3) a {
    border-top: 1px solid rgba(255 , 255 , 255 , .5);
    box-shadow: 0 -1px 0 #016e01;
  }

  .sp_footer ul li a {
    display: block;
    padding: 8px 0 4px;
    width: 100%;
    height: 54px;
  }
  .sp_footer ul li i {
    display: block;
    font-size: 1.5em;
    color: #fff;
  }
  .sp_footer ul li span {
    width: 100%;
    text-align: center;
    /* font-size: 0.8em; */
    color: #fff;
  }
  .sp_footer ul li figure img {
    width: 20px;
    text-align: center;
  }
}



/* ============================== */
/* PCサイド追従 */
/* ============================== */

#pc_side {
  display: none;
  z-index: 100;
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
#pc_side ul {
  list-style: none;
  padding: 0;
}
#pc_side a img {
  display: block;
  width: 220px;
  height: 200px;
  transform: translateX(70px);
  transition: .3s;
}
#pc_side a:hover img {
  transform: translateX(0);
}
@media screen and (max-width:1200px) {
  #pc_side a img {
    width: 165px;
    height: 150px;
    transform: translateX(52px);
  }
}
@media screen and (max-width:1000px) {
  #pc_side {
    display: none !important;
  }
}



/* ============================== */
/* コンバージョンエリア */
/* ============================== */
.main_cv_area {
  background: #fff;
  text-align: center;
  max-width: 1200px;
  margin: auto;
  border-top: 2px solid #afaeae;
  border-bottom: 2px solid #afaeae;
}
.main_cv_area .satei_title {
  background: #ddd;
}
.main_cv_area h2 {
  display: table;
  color: #333;
  font-size: 18px;
  margin: 0 auto !important;
  padding: .3em 1em .3em 3em;
  line-height: 1.2;
}
.main_cv_area h2:before {
  content: none;
}
.main_cv_area h2:after {
  content: '';
  display: block;
  position: absolute;
  top: auto;
  bottom: .15em;
  left: 0;
  transform: translate(0 , 0);
  width: 50px;
  height: 46px;
  width: 2.7778em;
  height: 2.5556em;
  background: url(../img/assessment/assessment_staff.png) no-repeat center/contain;
}
.main_cv_area h2 span {
  color: #333;
  font-size: 14px;
  margin-left: -1em;
}
/* ボタン */
.main_cv_flex {
  border-bottom: 10px solid #ddd;
}
.cv_btn {
  text-align: center;
  margin: auto;
  padding: 16px 0 6px;
  width: calc(100% - 20px);
}
.cv_btn a {
  display: inline-block;
  border: none;
  border-radius: 5px;
  color: #fff !important;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-decoration: none;
  transition: .3s;
  max-width: 400px;
  width: 100%;
  padding: 1.15em 2.2em 1.15em 3.7em;
  position: relative;
}
.cv_tel a {
  background: linear-gradient(to right, #e88b25, #e66723);
  box-shadow: 0 6px 0 #9e3424;
  font-size: 26px;
  padding: .425em 1.7em .425em 2.85em;
}
.cv_web a {
  background: linear-gradient(to right, #278faa, #0d6778);
  box-shadow: 0 6px 0 #1a4b63;
}
.cv_line a {
  background: linear-gradient(to right, #29ab38, #29943a);
  box-shadow: 0 6px 0 #1f552d;
}
.cv_btn a:hover {
  transform: translateY(5px);
}
.cv_tel a:hover {
  box-shadow: 0 1px 0 #9e3424;
}
.cv_web a:hover {
  box-shadow: 0 1px 0 #1a4b63;
}
.cv_line a:hover {
  box-shadow: 0 1px 0 #1f552d;
}
.cv_btn a:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 2.7em;
  height: 2.7em;
  z-index: 1;
}
.cv_tel a:before {
  width: 2.077em;
  height: 2.077em;
  background: url(../img/assessment/assessment_tel_icon.svg) no-repeat center/cover;
}
.cv_web a:before {
  background: url(../img/assessment/assessment_web_icon.svg) no-repeat center/cover;
}
.cv_line a:before {
  background: url(../img/assessment/assessment_line_icon.svg) no-repeat center/cover;
}
.cv_btn a:after {
  content: '';
  display: block;
  position: absolute;
  top: calc(50% + 3px);
  right: 5%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.cv_btn p {
  margin: 0;
  line-height: 1.2;
}
.cv_btn .balloon {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50% , -16px);
  background: #fff;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.2;
  min-width: 18em;
  padding: .175em;
}
.cv_tel .balloon {
  border: 2px solid #e76723;
  color: #e76723;
}
.cv_web .balloon {
  border: 2px solid #2389a2;
  color: #2389a2;
}
.cv_line .balloon {
  border: 2px solid #2bab38;
  color: #2bab38;
}
.cv_btn .balloon:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translate(-50% , 100%);
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-bottom: 0;
  border-top: 8px solid #fff;
}
.cv_tel .reception {
  font-size: 14px;
  font-weight: normal;
  padding-right: 1em;
  white-space: nowrap;
}
@media screen and (min-width:768px) {
  .main_cv_area {
    border-left: 2px solid #afaeae;
    border-right: 2px solid #afaeae;
  }
  .main_cv_area h2 {
    font-size: 28px;
    padding: .5em 2em .5em 100px;
  }
  .main_cv_area h2 span {
    font-size: 16px;
    margin-left: -2em;
  }
  .main_cv_area h2:after {
    width: 80px;
    height: 72px;
  }
  /* ボタン */
  .main_cv_flex {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .cv_btn {
    width: 30%;
    margin: 24px 0 30px;
  }
  .cv_btn:not(:first-child) {
    margin-left: 2.5%;
  }
}
@media screen and (min-width:768px) and (max-width:1220px) {
  .home .cv_sec {
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media screen and (min-width:768px) and (max-width:1000px) {
  .cv_btn a {
    font-size: 2vw;
  }
  .cv_tel a {
    font-size: 2.6vw;
  }
  .cv_btn .balloon , .cv_tel .reception {
    font-size: 1.4vw;
  }
}
@media screen and (max-width:767px) {
  .cv_btn {
    margin-top: 20px;
  }
  .cv_tel {
    margin-top: 24px;
  }
  .cv_btn:last-child {
    margin-bottom: 20px;
  }
}

/* ===== 下層エリア ===== */
@media screen and (max-width:767px) {
  .under_cv_area {
    width: calc(100% + 20px);
    margin-left: -10px;
  }
}

/* ===== 買取実績エリア ===== */
.prompt_cv_area h2:after {
  content: '' !important;
}
@media screen and (min-width:801px) {
  .prompt_cv_area h2 {
    font-size: 20px;
  }
  .prompt_cv_area .cv_btn a {
    font-size: 16px;
  }
  .prompt_cv_area .cv_btn a:before {
    width: 2.25em;
    height: 2.25em;
  }
  .prompt_cv_area .cv_btn .balloon {
    font-size: 12px;
  }
  .prompt_cv_area .cv_tel a {
    font-size: 20px;
  }
  .prompt_cv_area .cv_tel a:before {
    width: 1.8em;
    height: 1.8em;
  }
  .prompt_cv_area .cv_tel .reception {
    font-size: 10px;
  }
}
@media screen and (max-width:1200px) {
  .prompt_cv_area .main_cv_flex {
    display: block;
  }
  .prompt_cv_area .cv_btn {
    width: calc(100% - 20px);
    margin: 20px auto 0;
  }
  .prompt_cv_area .cv_tel {
    margin-top: 24px;
  }
  .prompt_cv_area .cv_line {
    margin-bottom: 30px;
  }
}
@media screen and (max-width:800px) {
  .prompt_cv_area {
    border-left: 2px solid #afaeae;
    border-right: 2px solid #afaeae;
  }
}
@media screen and (max-width:400px) {
  .prompt_cv_area h2 {
    font-size: 16px;
  }
}
@media screen and (max-width:374px) {
  .prompt_cv_area h2 {
    font-size: 14px;
  }
  .prompt_cv_area .cv_btn a {
    font-size: 16px;
  }
  .prompt_cv_area .cv_btn a:before {
    width: 2.25em;
    height: 2.25em;
  }
  .prompt_cv_area .cv_btn .balloon {
    font-size: 12px;
  }
  .prompt_cv_area .cv_tel a {
    font-size: 20px;
  }
  .prompt_cv_area .cv_tel a:before {
    width: 1.8em;
    height: 1.8em;
  }
  .prompt_cv_area .cv_tel .reception {
    font-size: 10px;
  }
}

/* ===== アーカイブ買取実績エリア ===== */
.main_cv_area.archive_cv_area {
  margin-top: 0;
}
.main_cv_area.archive_cv_area h2 span {
  margin-left: 0;
}

/* ===== CVエリア アニメーション ===== */
/* 人物アニメーション */
.main_cv_area h2:after {
  animation: pyonbayashi 2s linear infinite;
}
@keyframes pyonbayashi {
  0% {
    transform: translate(0, 0);
  }
  5% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(0, -8px);
  }
  25% {
    transform: translate(0, 0);
  }
  30% {
    transform: translate(0, -5px);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
/* ボタンアニメーション */
.cv_btn {
  overflow: hidden;
  position: relative;
}
.cv_btn:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: auto;
  bottom: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: rgba(255 , 255 , 255 , .7);
  animation: shiny 6s ease-in-out infinite;
  z-index: 2;
}
@-webkit-keyframes shiny {
  0% { -webkit-transform: scale(0) rotate(315deg); opacity: 0; }
  88% { -webkit-transform: scale(0) rotate(315deg); opacity: 0.5; }
  90% { -webkit-transform: scale(4) rotate(315deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(315deg); opacity: 0; }
}
/* ボタン時間差調整 */
.cv_tel:before {
  animation-delay: -5s;
}
.cv_web:before {
  animation-delay: -3s;
}
.cv_line:before {
  animation-delay: -1s;
}



/* ============================== */
/* 20230403_新CVエリア */
/* ============================== */
.cv2 {
  display: grid;
  gap: 20px;
  padding: 48px 3%;
  border-bottom: 10px solid #ddd;
}

.cv2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 4%;
  justify-items: center;
}

.cv2 a {
  transition: 0.5s;
  transition-property: opacity;
}

.cv2 a:hover {
  opacity: 0.5;
}

.cv2 img {
  inline-size: 100%;
}

.cv2-grid:first-child :first-child a {
  background: linear-gradient(to bottom, #fff, #e5eaed);
  border: 2px solid #b8c7cf;
  border-radius: 10px;
  padding: 14px 0 13px;
  width: 100%;
}

.cv2-grid:first-child :first-child {
  width: 100%;
}

.cv2-grid:first-child > :last-child {
  display: grid;
}

.cv2-grid:first-child > :last-child > :last-child {
  align-self: end;
}

.cv2-grid .yantramanav {
  display: grid;
  grid-template-columns: max-content auto;
  justify-content: center;
  gap: 16px;
  /* 34 - 56px */
  font-size: clamp(2.125rem, -0.3194rem + 5.0926vw, 3.5rem);
  font-weight: bold;
  line-height: .75;
  margin: 0 auto 10px;
  white-space: nowrap;
  margin-bottom: 10px;
}

.cv2-grid .yantramanav::before {
  content: '';
  display: block;
  width: .8276em;
  height: .8276em;
  background: url(../img/top/tel_icon.svg) no-repeat center/contain;
}

.cv2-grid .reception {
  /* 15 - 18px */
  font-size: clamp(0.9375rem, 0.6042rem + 0.6944vw, 1.125rem);
  text-align: center;
  margin: auto;
}

.cv2-grid .balloon {
  background: #1e2436;
  border-radius: 30px;
  color: #fff;
  font-size: clamp(1rem, 0.3333rem + 1.3889vw, 1.375rem);
  font-weight: bold;
  text-align: center;
  margin: auto;
  padding: 4px;
  position: relative;
  width: 100%;
}

.cv2-grid .balloon span {
  color: #ff0;
}

.cv2-grid .balloon + a {
  display: block;
  margin-top: 24px;
  text-decoration: none;
  color: #1e2436;
}

.cv2-grid .balloon::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom: none;
  border-top: 14px solid #1e2436;
}

.cv2-grid .comments {
  font-size: 18px;
  text-align: center;
  margin-top: 5px;
}

.cv2-grid .title {
  background: #b8c7cf;
  /* 12 - 20px */
  font-size: clamp(0.75rem, -0.1389rem + 1.8519vw, 1.25rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  padding: 6px 0;
  width: 100%;
}

.cv2-grid:last-child > :last-child {
  display: grid;
}

.cv2-grid .cv2-map-grid p {
  /* 11 - 14px */
  font-size: clamp(0.6875rem, 0.3542rem + 0.6944vw, 0.875rem);
  text-align: justify;
  margin: 0;
  line-height: 1.5;
}

.cv2-grid .cv2-map-grid {
  display: grid;
  grid-template-columns: max-content auto;
}
.cv2-grid .comments.sp {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .cv2 {
    padding: 4.8% 3%;
  }
  .cv2-grid .comments {
    font-size: 14px;
  }
  .cv2-grid .reception {
    font-size: 12px;
  }
  /* .cv2-grid:first-child > :last-child img {
    display: inline-block;
    height: 90px;
  } */
}
@media screen and (max-width: 767px) {
  .cv2 {
    padding: 18px 3%;
    gap: 12px;
  }

  .cv2-grid {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 12px;
    max-width: 600px;
    width: 100%;
    margin: auto;
  }

  .cv2-grid:last-child {
    order: -1;
  }

  .cv2-grid .comments {
    font-size: 14px;
  }

  .cv2-grid .comments.sp {
    display: block;
  }

  .cv2-grid:last-child > :last-child {
    display: none;
  }

  .cv2-grid:first-child > :first-child {
    max-width: min(600px, 100%);
    order: 2;
  }

  .cv2-grid .balloon {
    display: none;
  }
  .cv2-grid .balloon + a {
    margin-top: 0;
  }
  .cv2-grid .yantramanav {
    margin-bottom: 0px;
  }
  .cv2-grid:first-child :first-child a {
    padding: 12px 0 10px;
  }
}
