@charset "utf-8";


/* ----------------------- */

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
}

html {
  font-size: 62.5%;
  line-height: 1.6;
  height: 100%;
}

@font-face {
  font-family: 'sawarabi';
  src: url('../font/SawarabiMincho-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'meiryo';
  src: url('../font/MeiryoUI-03.ttf') format('truetype');
}

@font-face {
  font-family: 'garamond';
  src: url('../font/EBGaramond-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'questrial';
  src: url('../font/Questrial-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'noto-serif-jp';
  src: url('../font/NotoSerifJP-Black.otf') format('opentype'),
    url('../font/NotoSerifJP-Bold.otf') format('opentype'),
    url('../font/NotoSerifJP-ExtraLight.otf') format('opentype'),
    url('../font/NotoSerifJP-Light.otf') format('opentype'),
    url('../font/NotoSerifJP-Medium.otf') format('opentype'),
    url('../font/NotoSerifJP-Medium.otf') format('opentype'),
    url('../font/NotoSerifJP-Regular.otf') format('opentype'),
    url('../font/NotoSerifJP-SemiBold.otf') format('opentype');
}

body {
  background-color: #fff;
  color: #595757;
  font-size: 1.6rem;
  font-family: 'meiryo';
  font-weight: 400;
  font-style: normal;
  width: 100%;
  overflow-x: hidden;
  letter-spacing: 0.1em;
}

.wrap {
  overflow: hidden;
}

@media(min-width: 961px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}


li {
  list-style: none;
}

a {
  text-decoration: none;
}


/* -------------------------- */

/* animation */
/* フェード */
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* fadeUp */


.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(80px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay2 {
  animation-delay: .2s;
}

.delay4 {
  animation-delay: .4s;
}

.delay6 {
  animation-delay: .6s;
}




/* #navmenu */


/*============================
header style
============================*/



#top-head {
  width: 100%;
  height: 140px;
  background: #2f2725;
  display: flex;
  position: fixed;
  z-index: 998;
  transition: .2s;
}

#top-head .inner {
  float: left;
  width: 95%;
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*logo style*/


.inner .header-logo img {
  margin-top: 5px;
}

/*nav style*/
#top-head #navmenu ul {
  display: flex;
  list-style-type: none;
  align-items: center;
}

/* ドロップダウン */

#top-head #navmenu ul .drop-p {
  position: relative;
}

#top-head #navmenu ul .drop-p .drop {
  display: none;
}

@media screen and (min-width:769px) {

  #top-head #navmenu ul .drop-p:hover .drop {
    background-color: #2f2725;
    box-shadow: 0 0 5px #fff, 0 0 5px #ccc, 0 0 1px #aaa;
    -webkit-box-shadow: 0 0 5px #fff, 0 0 5px #ccc, 0 0 1px #aaa;
    -moz-box-shadow: 0 0 5px #fff, 0 0 5px #ccc, 0 0 1px #aaa;
    display: block;
    position: absolute;
    top: 35px;
    left: 0;
  }
}


/*nav link style*/
#top-head #navmenu ul li a {
  padding: 10px;
  color: #fff;
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  white-space: nowrap;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

#top-head #navmenu ul li a img {
  width: 78px;
  height: auto;
}


#top-head #navmenu ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: .4s;
}

#top-head #navmenu ul li a:hover::after {
  bottom: 2px;
  opacity: 1;
  visibility: visible;
}


#nav_toggle {
  display: none;
}

.header-logo img {
  margin-top: 20px;
  width: 80px;
  height: auto;
}



.fax {
  display: block;
  text-align: right;
  color: #fff;
}

.sp-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
}



@media screen and (min-width:769px) {

  .logotxt {
    display: none;
  }

}

/*============================
mobile style
============================*/
@media screen and (max-width:768px) {

  .logotxt {
    display: block;
    color: #fff;
    font-size: 3rem;
    font-family: 'noto-serif-jp';
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  #top-head {
    height: 80px;
  }

  #top-head #navmenu ul .drop-p .drop {
    display: block;
  }
  

  /*hamburger menu style*/
  #top-head .inner {
    clear: both;
  }


  #top-head.open {
    background-color: #231815;
  }

  #nav_toggle {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
    top: 4px;
    z-index: 100;
  }

  #nav_toggle div {
    position: relative;
  }

  /*hamburger menu close style*/
  #nav_toggle span {
    display: block;
    height: 2px;
    background: #fff;
    position: absolute;
    width: 100%;
    left: 0;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }

  #nav_toggle span:nth-child(1) {
    top: 0px;
  }

  #nav_toggle span:nth-child(2) {
    top: 10px;
  }

  #nav_toggle span:nth-child(3) {
    top: 20px;
  }

  /*hamburger menu open style*/
  .open #nav_toggle span:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }

  .open #nav_toggle span:nth-child(3) {
    top: 10px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  /*nav style*/
  #top-head #navmenu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 1040px;
    background: #221715;
    z-index: 990;
  }

  #top-head #navmenu ul {
    display: block;
    width: 80%;
    margin: 0 auto;
  }

  #top-head #navmenu ul li {
    text-align: center;

  }

  #top-head #navmenu ul li:last-child {
    border: none;
  }

  /*nav link style*/
  #top-head #navmenu ul li a {
    display: block;
  }

  #top-head #navmenu ul li a:active::after {
    bottom: 2px;
    opacity: 1;
    visibility: visible;
  }

  #top-head #navmenu ul li a:active {
    color: #FFD700;
    transition: .4s;
  }


  .nav-line {
    display: none;
  }

  .fax {
    text-align: center;
  }
}

/* safari崩れ用 -------------------------------*/

_::-webkit-full-page-media, _:future, :root #top-head {
  width: 100%;
  height: 140px;
  background: #2f2725;
  display: flex;
  position: fixed;
  z-index: 998;
  transition: .2s;
}

_::-webkit-full-page-media, _:future, :root #top-head .inner {
  float: left;
  width: 95%;
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*logo style*/


_::-webkit-full-page-media, _:future, :root .inner .header-logo img {
  margin-top: 5px;
}

/*nav style*/
_::-webkit-full-page-media, _:future, :root #top-head #navmenu ul {
  display: flex;
  list-style-type: none;
  align-items: center;
}

/* ドロップダウン */

_::-webkit-full-page-media, _:future, :root #top-head #navmenu ul .drop-p {
  position: relative;
}

_::-webkit-full-page-media, _:future, :root #top-head #navmenu ul .drop-p .drop {
  display: none;
}

@media screen and (min-width:769px) {

  _::-webkit-full-page-media, _:future, :root #top-head #navmenu ul .drop-p:hover .drop {
    background-color: #2f2725;
    box-shadow: 0 0 5px #fff, 0 0 5px #ccc, 0 0 1px #aaa;
    -webkit-box-shadow: 0 0 5px #fff, 0 0 5px #ccc, 0 0 1px #aaa;
    -moz-box-shadow: 0 0 5px #fff, 0 0 5px #ccc, 0 0 1px #aaa;
    display: block;
    position: absolute;
    top: 35px;
    left: 0;
  }

}


/*nav link style*/
_::-webkit-full-page-media, _:future, :root #top-head #navmenu ul li a {
  padding: 10px;
  color: #fff;
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  white-space: nowrap;
  font-family: 'sawarabi';
}

_::-webkit-full-page-media, _:future, :root #top-head #navmenu ul li a img {
  width: 40px;
  height: auto;
}


_::-webkit-full-page-media, _:future, :root #top-head #navmenu ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: .4s;
}

_::-webkit-full-page-media, _:future, :root #top-head #navmenu ul li a:hover::after {
  bottom: 2px;
  opacity: 1;
  visibility: visible;
}


_::-webkit-full-page-media, _:future, :root #nav_toggle {
  display: none;
}

_::-webkit-full-page-media, _:future, :root .header-logo img {
  margin-top: 20px;
  width: 80px;
  height: auto;
}



_::-webkit-full-page-media, _:future, :root .fax {
  display: block;
  text-align: right;
  color: #fff;
}

_::-webkit-full-page-media, _:future, :root .sp-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
}



@media screen and (min-width:769px) {

  _::-webkit-full-page-media, _:future, :root .logotxt {
    display: none;
  }

}

/*============================
mobile style
============================*/
@media screen and (max-width:768px) {

  _::-webkit-full-page-media, _:future, :root .logotxt {
    display: block;
    color: #fff;
    font-size: 3rem;
    font-family: 'noto-serif-jp';
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  _::-webkit-full-page-media, _:future, :root #top-head {
    height: 80px;
  }

  _::-webkit-full-page-media, _:future, :root #top-head #navmenu ul .drop-p .drop {
    display: block;
  }
  

  /*hamburger menu style*/
  _::-webkit-full-page-media, _:future, :root #top-head .inner {
    clear: both;
  }


  _::-webkit-full-page-media, _:future, :root #top-head.open {
    background-color: #231815;
  }

  _::-webkit-full-page-media, _:future, :root #nav_toggle {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
    top: 4px;
    z-index: 100;
  }

  _::-webkit-full-page-media, _:future, :root #nav_toggle div {
    position: relative;
  }

  /*hamburger menu close style*/
  _::-webkit-full-page-media, _:future, :root #nav_toggle span {
    display: block;
    height: 2px;
    background: #fff;
    position: absolute;
    width: 100%;
    left: 0;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }

  _::-webkit-full-page-media, _:future, :root #nav_toggle span:nth-child(1) {
    top: 0px;
  }

  _::-webkit-full-page-media, _:future, :root #nav_toggle span:nth-child(2) {
    top: 10px;
  }

  _::-webkit-full-page-media, _:future, :root #nav_toggle span:nth-child(3) {
    top: 20px;
  }

  /*hamburger menu open style*/
  _::-webkit-full-page-media, _:future, :root .open #nav_toggle span:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  _::-webkit-full-page-media, _:future, :root .open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }

  _::-webkit-full-page-media, _:future, :root .open #nav_toggle span:nth-child(3) {
    top: 10px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  /*nav style*/
  _::-webkit-full-page-media, _:future, :root #top-head #navmenu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 1040px;
    background: #221715;
    z-index: 990;
  }

  _::-webkit-full-page-media, _:future, :root #top-head #navmenu ul {
    display: block;
    width: 80%;
    margin: 0 auto;
  }

  _::-webkit-full-page-media, _:future, :root #top-head #navmenu ul li {
    text-align: center;

  }

  _::-webkit-full-page-media, _:future, :root #top-head #navmenu ul li:last-child {
    border: none;
  }

  /*nav link style*/
  _::-webkit-full-page-media, _:future, :root #top-head #navmenu ul li a {
    display: block;
  }

  _::-webkit-full-page-media, _:future, :root #top-head #navmenu ul li a:active::after {
    bottom: 2px;
    opacity: 1;
    visibility: visible;
  }

  _::-webkit-full-page-media, _:future, :root #top-head #navmenu ul li a:active {
    color: #FFD700;
    transition: .4s;
  }


  _::-webkit-full-page-media, _:future, :root .nav-line {
    display: none;
  }

  _::-webkit-full-page-media, _:future, :root .fax {
    text-align: center;
  }
}

@media screen and (max-width:480px) {

  _::-webkit-full-page-media, _:future, :root .logotxt {
    font-size: 6vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/* -------------------------safari崩れ用ここまで */


/* tel-button */
#tel-button {
    text-align: right;
    display: block;
    z-index: 980;
    position: fixed;
    top: 158px;
    right: 0px;
    background-color: darkred;
    font-size: 2rem;
    padding: 5px 10px 5px 10px;
    clip-path: polygon(100% 0, 100% 100%, 0% 100%, 0 0);
}

#tel-button a {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  display: block;
}

#tel-button span {
  font-family: 'meiryo';
  font-weight: bold;
  font-size: 3.3rem;
  letter-spacing: 0.1em;
}

@media screen and (601px < width <=768px) {
  #tel-button {
    top: 80px;
  }
}


#footer-tel-button {
  display: none;
}

/* tel-button end */

@media screen and (max-width:600px) {

  /* fotter-tel-button */
  #tel-button {
    display: none;
  }

  .is-hidden {
    visibility: hidden;
    transition: .2s;
    opacity: 0;
  }

  #footer-tel-button {
    display: block;
    transition: .2s;
    z-index: 999;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #22ac38;
    font-size: 2rem;
    padding: 3px 5px;
    text-align: center;
  }

  #footer-tel-button span {
    font-family: 'century-gothic';
    font-size: 3rem;
    font-family: 'meiryo';
    font-weight: bold;
    letter-spacing: 0.1em;
  }

  #footer-tel-button a {
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    display: block;
    font-weight: 500;
  }

  #footer-tel-button a:before {
    content: "";
    background: url(../image/tel-button-freedial.png) no-repeat;
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    width: 50px;
    height: 43px;
    align-items: center;
  }

}

/* footer-tel-button end */


/* 共通 */

/* breadcrumb */
.breadcrumb-parent {
  margin: 30px auto auto 20px;
}
.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: inline;/*横に並ぶように*/
  list-style: none;
  font-weight: bold;/*太字*/
}


.breadcrumb li:after {/* >を表示*/
  content: '>';
  padding: 0 0.2em;
  color: #3e3a39;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  text-decoration: none;
  color: #3e3a39;/*色*/
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

@media screen and (max-width:428px) {
  .breadcrumb li {
font-size: 1.4rem;
  }
  
  .breadcrumb li:after {/* >を表示*/
    padding: 0 0.05em;
  }
  
}


/* ---------- */

.container {
  width: 95%;
  max-width: 1250px;
  margin: 0 auto;
}

.w-container {
  max-width: 1320px;
  margin: 0 auto;
}


.title-a {
  font-family: 'noto-serif-jp';
  font-weight: 900;
  font-size: 6.4rem;
  text-align: center;
  margin-top: 50px;
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.title-a::before {
  content: "";
  background-image: url(../image/form-title-before.png);
  display: inline-block;
  width: 135px;
  height: 158px;
  background-size: contain;
  vertical-align: middle;
}

.title-a::after {
  content: "";
  background-image: url(../image/form-title-after.png);
  display: inline-block;
  width: 135px;
  height: 158px;
  background-size: contain;
  vertical-align: middle;
}

.title-a-bg {
  position: relative;
  height: 250px;
  width: 100%;
}

.title-price {
    width: 700px;
    margin: 0 auto;
    display: block;
}

.arrow-bottom-b {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(100% 55%, 50% 100%, 0 55%, 0 50%, 50% 95%, 100% 50%);
  background-color: #231815;
  width: 70px;
  height: 70px;
}
.privacy {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

@media screen and (max-width:840px) {
  .title-a {
    font-size: 7vw;
    margin-top: 30px;

  }

  .title-a::before {
    width: 13vw;
    height: 15vh;
  }

  .title-a::after {
    width: 13vw;
    height: 15vh;
  }

  .title-a-bg {
    height: 180px;
  }
  .title-price {
    width: 95%;
}
.privacy {
    max-width: 95%;
}

}

.title-b {
  font-family: 'noto-serif-jp';
  font-weight: 400;
  font-size: 4.1rem;
  text-align: center;
  color: darkred;
  position: relative;
}

.title-b::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 8px;
  background-color: darkred;
}

.title-b span {
  display: inline-block;
}

.title-b-sub {
  text-align: center;
  display: block;
  margin-top: 10px;
  font-family: 'noto-serif-jp';
  font-weight: 400;
}



.title-c {
  font-family: 'noto-serif-jp';
  font-weight: 900;
  font-size: 6.4rem;
  text-align: center;
  margin-top: 50px;
  position: absolute;
  top: 17%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 100%;
  white-space: nowrap;
}

.arrow-bottom-w {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(100% 55%, 50% 100%, 0 55%, 0 50%, 50% 95%, 100% 50%);
  background-color: #fff;
  width: 70px;
  height: 70px;
}

.title-c-bg {
  position: relative;
  background: url(../image/title-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  height: 243px;
  width: 100%;
}




h3 {
  font-family: 'noto-serif-jp';
  font-size: 2.6rem;
  font-weight: 600;
  text-align: center;
  margin: 25px 0;
}

.red-title {
  color: #c30d23;
}
.button-style {
    background: #000;
    color: #fff;
    width: 300px;
    padding: 10px 12px;
    text-align: center;
    margin: 0 auto;
}
.button-style a{
    color: #fff;
    text-decoration: none;
        color: #fff;
    text-decoration: none;
    padding: 12px 42px;
}
.button-style:hover {
    background: #fff;
    border: 1px solid #000;
}
.button-style a:hover {
    color: #262626;
    text-decoration: none;
}
@media screen and (max-width:768px) {
  .title-a {
    top: 10%;
  }

  .title-a-bg {
    height: 100px;
  }

  .title-a::before {
    position: absolute;
    left: 10%;
  }

  .title-a::after {
    position: absolute;
    right: 10%;
  }


  .title-b {
    font-size: 4rem;
  }

  .title-b::after {
    width: 70px;
  }

  .title-c {
    font-size: 5rem;
  }

  .title-c-bg {
    background-position: center;
    height: 190px;
    width: 100%;
  }




  h3 {
    font-family: 'noto-serif-jp';
    font-size: 3.5rem;
    font-weight: 600;
    text-align: center;
    margin: 25px 0;
  }

}



@media screen and (max-width:599px) {

  .title-a {
    font-size: 3.8rem;
  }


  .title-b {
    font-size: 2.1rem;
  }


  h3 {
    font-size: 1.4rem;
    margin: 15px 0;
  }

  .title-c {
    font-size: 7vw;
  }

}

@media screen and (max-width:480px) {

  .title-a {
    font-size: 3.8rem;
  }

  .title-a-bg {
    height: 100px;
  }

  .title-a::before {
    position: absolute;
    top: 90%;
    left: 5%;
    width: 100px;
    height: 85px;
  }

  .title-a::after {
    position: absolute;
    top: 90%;
    right: 0%;
    width: 100px;
    height: 85px;
  }

  .arrow-bottom-b {
    width: 50px;
    height: 50px;
  }

  .title-c {
    font-size: 8vw;
    top: 7%;
    left: 50%;
    transform: translate(-50%, -50%);
  }


  .title-c-bg {
    background-position: center;
    height: 120px;
    width: 100%;
  }

  .arrow-bottom-w {
    width: 50px;
    height: 50px;
  }

}

/* main */
.main-v {
  position: relative;
}

.main-v img {
  width: 100%;
  height: auto;
  margin-top: 140px;
}

h1 {
  position: absolute;
  top: 60%;
  left: 33%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: 'noto-serif-jp';
  font-weight: bold;
  font-size: 3vw;
  text-shadow: #444 1px 3px;
}

.big-catch {
  font-size: 5.2vw;
}

.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;

}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0;
  /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }

  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}


@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}


/* mailform */

.appraisal-bg {
  margin-top: -50px;
  padding: 50px 0;
  background: url(../image/form-bg.png)no-repeat;
  background-size: contain;
  background-position: center;
}

/* form */
.contact-form-parts {
  margin-top: 50px;
  padding: 0;
  text-align: center;
}

.content-wrapper {
  width: 90%;
  margin: 0 auto;
  max-width: 700px;
}


#formWrap {
  width: 100%;
  margin: 0 auto;
  color: #555;
  line-height: 120%;
  font-size: 90%;
  text-align: left;
}

table.formTable {
  width: 100%;
  margin: 0 auto 20px;
  border-collapse: separate;
  border-spacing: 15px 20px;
}


table.formTable td, table.formTable th {
  /* border:1px solid #ccc; */
  padding: 7px;
}


table.formTable th {
  width: 40%;
  font-family: 'meiryo';
  font-weight: 700;
  /* background:#4ba8de; */
  color: #fff;
  vertical-align: middle;
  text-align: left;
  background-color: darkred;
  padding-left: 15px;
}

.formTable .caution-text {
  color: #fff;
  font-size: 1.3rem;
}
table.formTable textarea {
  width: 100%;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
}


.contact-button {
  display: inline-block;
  border-radius: 5%;
  /* 角丸    */
  font-family: 'meiryo';
  font-weight: 700;
  font-size: 16px;
  /* 文字サイズ */
  text-align: center;
  /* 文字位置   */
  cursor: pointer;
  /* カーソル   */
  padding: 12px 12px;
  /* 余白       */
  background: darkred;
  /* 背景色     */
  color: #ffffff;
  /* 文字色     */
  line-height: 1em;
  /* 1行の高さ  */
  transition: .3s;
  /* なめらか変化 */
  box-shadow: 2px 2px 0px #dcdddd;
  /* 影の設定 */
  /* 枠の指定 */
  width: 100%;
  max-width: 150px;
  border: darkred solid 2px;
}

.contact-button:hover {
  box-shadow: none;
  /* カーソル時の影消去 */
  color: #cd0000;
  /* 背景色     */
  background: #ffffff;
  border: #cd0000 solid 2px;
  /* 文字色     */
}

.reset-button {
  background: #fff;
  /* 背景色     */
  color: darkred;
  /* 文字色     */
}

.reset-button:hover {
  box-shadow: none;
  /* カーソル時の影消去 */
  color: #fff;
  /* 背景色     */
  background: darkred;
  /* 文字色     */
}


.button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button-wrapper input {
  margin-bottom: 20px;
}


.m-form-text {
  height: 2.4em;
  width: 100%;
  padding: 0 16px;
  border: none;
  box-shadow: 0 0 0 1px #ccc;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.m-form-text:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}



.button {
  display: inline-block;
  border-radius: 5%;
  /* 角丸       */
  font-size: 12pt;
  /* 文字サイズ */
  text-align: center;
  /* 文字位置   */
  cursor: pointer;
  /* カーソル   */
  padding: 10px 25px;
  /* 余白       */
  background: #333333;
  /* 背景色     */
  color: #ffffff;
  /* 文字色     */
  line-height: 1em;
  /* 1行の高さ  */
  transition: .3s;
  /* なめらか変化 */
  box-shadow: 1px 1px #666666;
  /* 影の設定 */
  border: 1px solid #333333;
  /* 枠の指定 */
}

.button:hover {
  box-shadow: none;
  /* カーソル時の影消去 */
  color: #333333;
  /* 背景色     */
  background: #ffffff;
  /* 文字色     */
}

@media screen and (max-width:599px) {
  #formWrap {
    width: 95%;
    margin: 0 auto;
  }

  table.formTable th, table.formTable td {
    width: auto;
    display: block;
    padding-bottom: 0;
  }

  table.formTable th {
    margin-top: 5px;
    border-bottom: 0;
    padding: 5px;
    
  }

  input[type="text"], textarea {
    width: 100%;
    padding: 5px;
    font-size: 110%;
    display: block;
  }

  input[type="submit"], input[type="reset"], input[type="button"] {
    /* display:block; */
    height: 40px;
  }

}

/* form end */


/* about */
.about {
  margin-bottom: 130px;
}

.flex-box {
  display: flex;
  justify-content: center;
  gap: 0 40px;
}

.txt-box {
    width: 50%;
    line-height: 2;
    font-size: 1.6rem;
}

.about-v {
  width: 50%;
  height: auto;
}

.about-v img {
  width: 100%;
  height: auto;
}

.about-p {
  background-image: url("../image/back01.jpg");
  width: 100%;
  padding: 70px;
  margin: 100px auto 70px;
}

.about-ch-v {
  width: calc(100%/3);
  height: auto;
  position: relative;
  overflow: hidden;
}

.about-ch-v img {
  width: 100%;
  height: auto;
  transition: .2s;
}

.about-ch-v span {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: red;
    width: 100%;
    padding: 9px 0;
    text-align: center;
    font-size: 1.9rem;
    font-weight: bold;
    color: #fff;
    line-height: .8;
}

.about-ch-v a {
  color:#595757;
}
.about-ch-v a:hover  img {
transform: scale(1.05,1.05);
transition: .2s;
}

/* tab */


/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}

/*タブのスタイル*/
.tab-parent {
  margin: 50px auto;
}

.tab_item {
  width: calc(100%/3);
  height: 70px;
  border-bottom: 3px solid #c30d23;
  background-color: #d9d9d9;
  line-height: 70px;
  font-size: 2.7rem;
  font-family: 'noto-serif-jp';
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: track 0.2s ease;
}

.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 40px 40px 0;
  clear: both;
  overflow: hidden;
}

.u-indent span {
  display: block;
  padding-left: 2rem;
  text-indent: -2rem;
}


/*選択されているタブのコンテンツのみを表示*/
#track:checked~#track_content,
#achievement:checked~#achievement_content,
#farm:checked~#farm_content,
#design:checked~#design_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked+.tab_item {
  background-color: #c30d23;
  color: #fff;
}

.farm_headline {
  color: #232323;
  font-weight: bold;
}

#farm_content span {
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 768px) {
  .tab_item {
    font-size: 2.1rem;
  }


  .tab_content {
    padding: 20px;
  }

  .p-mv__figure img {
    width: 100%;
  }
}


.tab-parent table {
  width: 100%;
}

.tab-parent table tr th {
  position: relative;
  padding-right: 5%;
  width: 20%;
  font-weight: bold;
  color: #232323;
  vertical-align: middle;
}

.tab-parent table tr th::before {
  content: '';
  position: absolute;
  top: 33px;
  right: 20%;
  bottom: 34px;
  border-left: 1px solid #dfdfdf;
}

.tab-parent table tr td {
  padding: 30px 0;
  line-height: 2;
  vertical-align: top;
}

/* tabここまで */

/* 買い取り実績grid */

.achievement-list {
  margin-top: 50px;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 350px;
}

/* 買い取り実績flex */
.achievement-flex {
  display: flex;
  justify-content: space-around;
  gap: 50px;
  margin: 0 auto 500px;
}



.achievement-child {
  width: 100%;
  height: 0px;
}

.achievement-child img {
  width: 100%;
  height: auto;
}

.details {
  width: 100%;
  border-top: #231815 solid 1px;
  border-bottom: #231815 solid 1px;
  margin: 10px 0;
}

.details, .details td, .details th {
  border-collapse: separate;
  border-spacing: 5px;
}

.details th {
  padding: 5px;
  width: 40%;
  height: 30px;
  border: none;
  text-align: center;
  background-color: #c9caca;
  white-space: nowrap;
}

.details td {
  padding: 5px;
  width: 60%;
  height: 30px;
  border: none;
  text-align: right;
  white-space: nowrap;
}


.red-triangle {
  width: 100px;
  height: 55px;
  background-color: #d61718;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  margin: 0 auto;
}

.red-txt {
  font-weight: bold;
  color: #d61718;
  text-align: center;
  display: block;
}

.price-box {
  background-color: #d61718;
  width: 100%;
  height: 80px;
  line-height: 80px;
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
}

.price-big {
  font-size: 6.4rem;
  font-weight: bold;
  color: #fff;
}

.to-stock {
  text-align: center;
  background-color: #8fc31f;
  margin: 320px auto 0;
  width: 80%;
  max-width: 700px;
  height: 60px;
  line-height: 60px;
}

.to-stock a {
  width: 100%;
  height: 100%;
  display: block;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  box-shadow: 2px 2px 0px #dcdddd;
  border: #8fc31f solid 2px;
  transition: .3s;
}

.to-stock a:hover {
  box-shadow: none;
  /* カーソル時の影消去 */
  color: #8fc31f;
  /* 背景色     */
  background: #ffffff;
  border: #8fc31f solid 2px;
  /* 文字色     */
  transition: .3s;

}

/* column-list */

.column-list-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: repeat(2,1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.column-list-ch {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.column-list-ch img {
  width: 100%;
  height: auto;
}

.column-list-ch a {
  display: block;
  color: #595757;
  font-size: 1.8rem;
  font-weight: 600;
}

.column-list-title {
  padding: 5px;
}

.column-list-ch a:hover  img {
  transform: scale(1.05,1.05);
  transition: .2s;
  }

  .column-list .to-stock {
    margin-top: 50px;
  }
.campaign {
    background: #f1f1f1;
    padding: 20px 10px;
}

/* map */
.map iframe {
  margin-top: 50px;
  width: 100%;
  height: 480px;
  vertical-align: bottom;
}


/* faq.html */
/* faq */

.faq {
  margin-bottom: 50px;
}

.faq .to-stock {
  margin-top: 50px;
}

.qa-list {
  width: 90%;
  max-width: 900px;
  margin: 70px auto 0;
}


.qa-list dl {
  position: relative;
  margin: 0;
  padding: 28px 80px 28px 30px;
  cursor: pointer;
  border-bottom: 1px solid #03003f;
}

.qa-list dl:first-child {
  border-top: 1px solid #03003f;
}

.qa-list dl::before {
  position: absolute;
  top: 35px;
  right: 35px;
  display: block;
  width: 7px;
  height: 7px;
  margin: auto;
  content: '';
  transform: rotate(135deg);
  border-top: 2px solid #03003f;
  border-right: 2px solid #03003f;
}

.qa-list .open::before {
  transform: rotate(-45deg);
}

.qa-list dl dt {
  position: relative;
  margin: 0;
  padding: 0 0 0 50px;
  font-weight: bold;
  font-size: 2rem;
}

.qa-list dl dt::before {
  font-size: 22px;
  line-height: 1;
  position: absolute;
  top: 3px;
  left: 0;
  display: block;
  content: 'Q.';
  color: #036eb8;
}

.qa-list dl dd::before {
  font-size: 2.2rem;
  line-height: 1;
  position: absolute;
  top: 3px;
  left: 2px;
  display: block;
  content: 'A.';
  font-weight: bold;
  color: #c30d23;
}

.qa-list dl dd {
  position: relative;
  display: none;
  height: auto;
  margin: 20px 0 0;
  padding: 0 0 0 50px;
}

.qa-list dl dd p {
  margin: 30px 0 0;
}

.qa-list dl dd p:first-child {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .qa-list dl {
    position: relative;
    padding: 15px 40px 15px 10px;
  }

  .qa-list dl::before {
    top: 20px;
    right: 20px;
    width: 7px;
    height: 7px;
  }

  .qa-list dl dt {
    padding: 0 0 0 30px;
    font-size: 1.4rem;
  }

  .qa-list dl dt::before {
    font-size: 1.4rem;
    top: 3px;
    left: 5px;
    content: 'Q.';
  }

  .qa-list dl dd::before {
    font-size: 1.4rem;
    top: 5px;
    left: 5px;
    content: 'A.';
  }

  .qa-list dl dd {
    margin: 10px 0 0;
    padding: 0 0 0 30px;
    font-size: 1.4rem;
  }

  .qa-list dl dd p {
    margin: 30px 0 0;
  }

  .qa-list dl dd p:first-child {
    margin-top: 0;
  }
}

/* faq end */

/* company.html */
/* company-profile */

.top-space {
  margin-top: 150px;
}

.bottom-space {
  margin-top: 350px;
}

.adjustment {
  margin-top: 50px;
}

@media screen and (max-width:768px) {
  .top-space {
    margin-top: 200px;
  }

  .bottom-space {
    margin-top: 150px;
  }
}

@media screen and (max-width:599px) {
  .adjustment {
    margin-top: 30px;
  }
  
  .bottom-space {
    margin-top: 180px;
  }
}
@media screen and (max-width:480px) {
  .bottom-space {
    margin-top: 140px;
  }
}

.company-profile {
  width: 100%;
  max-width: 900px;
  margin: 70px auto;
  border-collapse: collapse;
}


.company-profile th,
.company-profile td {
  border: 1px solid #3e3a39;
  padding: 15px;
  text-align: left;
}

.company-profile th {
    width: 35%;
    font-weight: bold;
    color: #fff;
    background-color: #a9a9a9;
}

.company-profile td {
  width: 65%;
}

@media screen and (max-width:520px) {

  .company-profile,
  .company-profile tr,
  .company-profile td,
  .company-profile th {
    display: inline-block;
    width: 100%;
  }
}

/* staff */

.staff-intro {
  margin-bottom: 150px;
}

.staff-intro .txt-box .line {
  border-bottom: #03003f solid 1px;
  margin: 10px auto;
}

.staff-intro .txt-box .name {
  text-align: left;
  font-size: 2.4rem;
  color: #2f2725;
  font-family: 'noto-serif-jp';
  font-weight: 600;
}

.staff-intro .txt-box .name span {
  font-family: 'garamond';
  font-size: 2.9rem;
  color: #9fa0a0;
  font-weight: 400;
}

.staff-intro .flex-box {
  margin: 60px auto;
}

.staff-v {
  width: 50%;
  height: auto;
}

.staff-v img {
  width: 100%;
  height: auto;
}


/* performance */
/* ページネーション */
.pager {
  margin: 0 auto 60px;
}

.pager ul.pagination {
  text-align: center;
  margin: 0;
  padding: 0;
}

.pager .pagination li {
  display: inline;
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  background: #c9caca;
  width: 50px;
  height: 50px;
  text-align: center;
  position: relative;
}

.pager .pagination li a {
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  color: #2f2725;
  text-decoration: none;
}

.pager .pagination li a span {
  display: table-cell;
  vertical-align: middle;
}

.pager .pagination li a:hover,
.pager .pagination li a.active {
  color: #fff;
  background: #c30d23;
}

/* respect.html */

.respect {
  margin-bottom: 50px;
}

.respect-v {
  width: 50%;
  height: auto;
}

.respect-v img {
  width: 100%;
  height: auto;
}

/* respect-feature */

.respect-feature {
  margin: 80px auto;
}

.grid-p-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2vw;
}

.respect-feature img {
  height: 120px;
  width: auto;
  vertical-align: bottom;
}

.respect-feature .dl-gray {
  background-color: #888888;
  text-align: center;
  padding: 50px 0 0;
}

.respect-feature .dl-red {
  background-color: #c30d23;
  text-align: center;
  padding: 50px 0 0;
}

.respect-feature dd {
  text-align: left;
  padding: 20px;
  color: #fff;
}

.feature-hl {
  font-family: 'noto-serif-jp';
  font-weight: 600;
  font-size: 3.5rem;
  color: #fff;
  margin-top: 30px;
}

.respect .to-stock {
  margin: 80px auto;
}


/* flow.html */
.flow {
  margin-bottom: 50px;
}

.flow-v {
  width: 50%;
  height: auto;
}

.flow-v img {
  width: 100%;
  height: auto;
}

.flow-chart {
  margin: 70px 0;
}

.flex-grid {
  display: flex;
  justify-content: center;
}

.contact-box {
  position: relative;
  width: calc(100%/4);
  height: 275px;
  text-align: center;
  background-color: rgba(195, 13, 35, .15);
  display: block;
  color: #595757;
  padding-top: 60px;
}

.contact-box:nth-of-type(2n) {
  background-color: #c30d23;
  color: #fff;
}

.contact-box>.arrow-bottom-b,
.contact-box>.arrow-bottom-w {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateX(-50%);
  transition: .2s;
}

.contact-box:hover .arrow-bottom-b,
.contact-box:hover .arrow-bottom-w {
  top: 60%;
  transition: .2s;
}

.contact-box img {
  width: 80px;
  height: auto;
}

.contact-box span {
  display: block;
  font-size: 1.9rem;
}

.contact-box .to-click {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5%;
  font-size: 1.7rem;
  font-family: 'questrial';
  font-weight: bold;
}

.flow-arrow>.arrow-bottom-b {
  position: sticky;
  margin: 50px auto;
}

.flow .to-stock {
  margin: 80px auto;
}
   
/* promise.html */
.promisetxt-box {
  text-align: left;
  font-size: 1.6rem;
  color: #2f2725;
  font-family: 'noto-serif-jp';
  font-weight: 600;
}
    .promise h2{
       padding: 0.5em;/*文字周りの余白*/
  color: #010101;/*文字色*/
  background: #e8e9e9;/*背景色*/
  border-bottom: solid 5px #c30d23;/*下線*/
  width: 95%;
  max-width: 1250px;
  margin: 0 auto;
  font-family: 'noto-serif-jp'
    }
    
/* model.html */
.model {
  margin: 80px auto 50px;
}

.model .title-c-bg {
  height: 110px;
  width: 100%;
  margin: 100px auto;
}

.model .title-c {
  position: absolute;
  margin-top:0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.grid-9 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: repeat(3,1fr);
  gap: 50px;
}

 .grid-ch p{
  padding: 0 15px;
}

.grid-9 .grid-ch img {
  width: 100%;
}

.model .flex-box {
  gap: 50px;
}

.model .flex-box>.grid-ch img {
  width: 100%;
}

.model .to-stock {
  margin: 80px auto;
}

.area-style img {
    margin: 0 auto;
    display: block;
    max-width: 900px;
}


/* footer */

footer {
  background-color: #2f2725;
  height: 100px;
  width: 100%;
  color: #fff;
  align-items: center;
  vertical-align: middle;
}

footer>.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 170px;

}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  width: 80px;
  height: auto;
}

.footer-logo p {
  font-size: 1.3rem;
}

.footer-p {
  width: 80%;
}

.footer-menu ul {
  display: flex;
  justify-content: space-around;
}

.footer-menu ul li a {
  color: #fff;
  font-size: 1.4rem;
  position: relative;
}

/*  */
.footer-menu ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: .4s;
}

.footer-menu ul li a:hover::after {
  bottom: 0px;
  opacity: 1;
  visibility: visible;
}

/*  */


hr {
  margin: 10px 0;
  border-color: #fff;
}

.footer-info {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  width: 100%;
  font-size: 1.4rem;
}

.footer-tel {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;

}

.footer-tel::before {
  content: "";
  background: url(../image/free-dial.png) no-repeat;
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  width: 45px;
  height: 30px;
  align-items: center;
}

.copy {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
}



/*tab sp */
@media screen and (max-width:768px) {

  .container {
    width: 90%;
  }

  .flex-box {
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
  }

  .txt-box,
  .about-v,
  .staff-v,
  .respect-v,
  .flow-v,
  .about-ch-v {
    width: 100%;
    margin: 0 auto;
  }

  .about {
    margin-bottom: 50px;
  }

  .about-ch-v {
    margin-bottom: 20px;
  }

  .order1 {
    order: 1;
  }

  .order2 {
    order: 2;
  }



  .main-v img {
    margin-top: 80px;
  }


  /* achievement */

  .achievement-grid {
    grid-column-gap: 10px;
    grid-row-gap: 100px;
  }

  .achievement-flex {
    gap: 10px;
    margin: 0 auto 200px;
  }


  .details th {

    font-size: 1.4rem;
  }

  .details td {
    font-size: 1.4rem;
  }


  .red-triangle {
    width: 100px;
    height: 50px;
  }

  .price-box {
    width: 100%;
    height: 70px;
    line-height: 70px;
    font-size: 2vw;
  }

  .price-big {
    font-size: 5rem;
  }

  .to-stock {
    margin: 160px auto 0;
  }

  .respect .to-stock,
  .flow .to-stock,
  .model .to-stock {
    margin: 80px auto;
  }

  /* map */
  .map iframe {
    height: 380px;
  }


  /* respect.html */
  .grid-p-6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0;
  }

  .grid-p-6 dl:first-of-type {
    order: 1;
  }

  .grid-p-6 dl:nth-of-type(2) {
    order: 2;
  }

  .grid-p-6 dl:nth-of-type(3) {
    order: 4;
  }

  .grid-p-6 dl:nth-of-type(4) {
    order: 3;
  }

  .grid-p-6 dl:nth-of-type(5) {
    order: 5;
  }

  .grid-p-6 dl:nth-of-type(6) {
    order: 6;
  }


  .feature-hl {
    font-size: 2.7rem;
    margin-top: 20px;
  }

    /* flow.html */
.flex-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-template-rows: repeat(2,1fr);
  gap: 0;
}

.contact-box {
  width: 100%;
  height: 300px;
  padding-top: 30px;
}

.contact-box:first-of-type {
  order: 1;
}

.contact-box:nth-last-of-type(2) {
  order: 2;
}

.contact-box:nth-last-of-type(3) {
  order: 4;
}

.contact-box:nth-last-of-type(4) {
  order: 3;
}

.flow-arrow>.arrow-bottom-b {
  margin: 30px auto;
}


/* model.html */

.model .title-c-bg {
  height: 90px;
  width: 100%;
  margin: 50px auto;
}

.grid-9 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-template-rows: repeat(5,1fr);
  gap: 10px;
}


  /* footer */

  footer {
    height: 300px;
    width: 100%;
    color: #fff;
    align-items: center;
    vertical-align: middle;
  }

  footer>.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 270px;

  }

  .footer-logo {
    text-align: center;
  }

  .footer-logo img {
    width: 80px;
    height: auto;
  }

  .footer-logo p {
    font-size: 1.3rem;
  }

  .footer-p .wrapper {
    display: flex;
    justify-content: space-around;
  }

  .footer-menu ul {
    flex-direction: column;
    text-align: right;
  }

  .footer-menu ul li a {
    color: #fff;
    font-size: 1.3rem;
    white-space: nowrap;
  }



  hr {
    display: none;
  }

  .footer-info {
    flex-direction: column;
    gap: 30px;
    width: 50%;
    font-size: 1.3rem;
    justify-content: center;
    text-align: left;
  }

  .footer-tel {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;

  }

  .footer-tel::before {
    content: "";
    background: url(../image/free-dial.png) no-repeat;
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    width: 35px;
    height: 23px;
    align-items: center;
  }


  .order1-b {
    order: 1;
  }

  .order2-b {
    order: 2;
  }


}

@media screen and (max-width:599px) {

  .container {
    width: 95%;
  }

  .flex-box {
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
  }

  .tab_item {
    font-size: 1.8rem;
  }

  .achievement-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 200px;
  }

  .achievement-flex {
    gap: 10px;
    margin: 0 auto 170px;
  }



  .v-lr {
    writing-mode: vertical-lr;
    line-height: 1.4;
  }

  
/* column-list */
.column-list-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-template-rows: repeat(3,1fr);
  grid-column-gap: 10px;
  grid-row-gap: 30px;
}

.column-list-ch a {
  display: block;
  color: #595757;
  font-size: 1.5rem;
}

  /* respect.html */
  .grid-p-6 {
    display: block;
    width: 90%;
    margin: 0 auto;
  }

  /* model.html */
  .model .title-c-bg {
    height: 70px;
    width: 100%;
    margin: 30px auto;
  }

  /* footer */

  footer {
    height: 110px;
  }

  footer>.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 370px;
  }
.area-style img {
    margin: 0 auto;
    display: block;
    max-width: 95%;
}
}


@media screen and (max-width:480px) {

  .logotxt {
    font-size: 6vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .about-p {
    padding: 20px;
    margin: 50px auto 30px;
  }

  .tab_item {
    position: relative;
  }

  .tab_item span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    font-size: 1.7rem;
    width: 100%;
  }

  .achievement-grid {
    grid-row-gap: 150px;
  }

  .to-stock {
    margin: 110px auto 0;
  }


  footer {
    height: 110px;
  }

  footer>.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 470px;
  }


  .footer-logo img {
    width: 80px;
    height: auto;
  }

  .footer-logo p {
    font-size: 1.3rem;
  }

  .footer-p .wrapper {
    flex-direction: column;
  }

  .order1-b {
    order: 2;
  }

  .order2-b {
    order: 1;
  }

  .footer-menu {
    margin: 20px auto 10px;
  }

  .footer-menu ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 5px;

  }


  .footer-menu ul li a {
    color: #fff;
    font-size: 1.3rem;
    white-space: nowrap;
  }



  hr {
    display: none;
  }

  .footer-info {
    gap: 10px;
    width: 100%;
    font-size: 1.3rem;
    text-align: center;
  }

  .footer-tel {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;

  }

  .footer-tel::before {
    content: "";
    background: url(../image/free-dial.png) no-repeat;
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    width: 35px;
    height: 23px;
    align-items: center;
  }
}

/* sp,tab,pc表示切替 */
/* pc */

@media screen and (max-width:768px) {
  .pc {
display: none;
  }
}
@media screen and (min-width:769px) {
  .pc {
display: block;
  }
}

/* 1160px ~ 769px */
@media screen and (min-width:1161px) {
  .sc1160 {
    display: none;
  }
}

@media screen and (769px <=width < 1160px) {
  .sc1160 {
    display: block;
  }
}

@media screen and (max-width:768px) {
  .sc1160 {
    display: none;
  }
}

/* 960px ~ 769px */
@media screen and (min-width:961px) {
  .sc960 {
    display: none;
  }
}

@media screen and (769px <=width < 960px) {
  .sc960 {
    display: block;
  }
}

@media screen and (max-width:768px) {
  .sc960 {
    display: none;
  }
}

/* ~768px */
@media screen and (min-width:769px) {
  .sp-c {
    display: none;
  }
}

@media screen and (max-width:768px) {
  .sp-c {
    display: block;
  }
}

/* 599px ~ px */
@media screen and (min-width:600px) {
  .sp {
    display: none;
  }
}

@media screen and (max-width:599px) {
  .sp {
    display: block;
  }
}

@media screen and (min-width:481px) {
  .sp-b {
    display: none;
  }
}

@media screen and (max-width:480px) {
  .sp-b {
    display: block;
  }
}

/* ------------------ */