@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --maintit: clamp(3rem, 8vw, 5rem);
  --setit: clamp(2.5rem, 3vw, 9rem);
  --sesub: clamp(1.5rem, 1.3vw, 2rem);
  --basetit: clamp(2rem, 2.5vw, 5.5rem);
  --labeltit: clamp(1.7rem, 1.5vw, 3rem);
  --steptxt: clamp(1.5rem, 1.5vw, 2rem);
  --makernav: clamp(1.5rem, 1.5vw, 1.7rem);
  --arrow: clamp(1rem, 3vw, 3rem);
  --steparrow: clamp(1rem, 3vw, 3rem);
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, main, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article, aside, details, figcaption, figure, footer, header, hgroup, nav, main, section, summary {
  display: block;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}

body {
  line-height: 1.5;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-optical-sizing: auto;
  font-weight: 400;
  overflow: hidden;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

@media only screen and (min-width: 768px) {
  body {
    font-size: 1.5rem;
    letter-spacing: 0.01em;
  }
}

@media only screen and (min-width: 1025px) {
  body {
    font-size: 1.5rem;
    line-height: 2;
  }
}

@media only screen and (min-width: 1441px) {
  body {
    font-size: 1.5rem;
  }
}

@media only screen and (min-width: 1920px) {
  body {
    font-size: 1.5rem;
  }
}

ul {
  list-style: none;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  font-size: 100%;
  color: #000;
  background: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
}

a:focus {
  outline: none;
}

a:hover, a:active {
  text-decoration: none;
  color: #1a1a1a;
}

img {
  vertical-align: top;
  -ms-interpolation-mode: bicubic;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #999999;
}

::selection {
  color: #FFFFFF;
  background: #0d0d0d;
}

input::selection,
textarea::selection {
  color: #000000;
}

textarea {
  resize: vertical;
}

:placeholder-shown {
  color: rgba(0, 0, 0, 0.4);
}

::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

:-moz-placeholder {
  opacity: 1;
  color: rgba(0, 0, 0, 0.4);
}

::-moz-placeholder {
  opacity: 1;
  color: rgba(0, 0, 0, 0.4);
}

:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.row {
  width: 90%;
  margin: auto;
}

@media only screen and (min-width: 1025px) {
  .row {
    max-width: 1200px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
}

/* webfontを読み込んでから表示 */
html {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

html.wf-active {
  visibility: visible;
  opacity: 1;
}

html.wf-active, html.loading-delay {
  visibility: visible;
  opacity: 1;
}

.page-id-11 .global .m-i-rise a::after {
  width: 100%;
}

.page-id-12 .global .m-shop a::after {
  width: 100%;
}

.page-id-13 .global .m-tire a::after {
  width: 100%;
}

.page-id-14 .global .m-who a::after {
  width: 100%;
}

.page-id-15 .global .m-company a::after {
  width: 100%;
}

.page-id-16 .global .m-access a::after {
  width: 100%;
}

/*text animetions*/
@-webkit-keyframes showTextFromBottom {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes showTextFromBottom {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

.anime-up.displayed span {
  -webkit-animation: showText 1s backwards;
  animation: showText 1s backwards;
  display: inline-block;
}

.anime-up.displayed > span {
  overflow: hidden;
}

.anime-up.displayed > span > span {
  -webkit-animation: showTextFromBottom 0.5s backwards;
  animation: showTextFromBottom 0.5s backwards;
}

.btn-base {
  margin-top: 40px;
  display: block;
}

.btn-base a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 10px 35px;
  border: 1px solid #ccc;
  border-radius: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  width: auto;
  -webkit-transition: .5s;
  transition: .5s;
}

.btn-base a:hover {
  background: #000;
  color: #FFFFFF;
}

.btn-base a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  margin-left: 1.5rem;
  color: #ccc;
}

.btn-base.jp a {
  font-family: "Noto Sans JP", serif;
}

.l-content {
  max-width: 1000px;
  width: 90%;
  margin: auto;
}

.l-content .wp-block-heading {
  margin-top: 50px;
  font-size: 1.7rem;
  margin-bottom: 10px;
}

@media only screen and (min-width: 1025px) {
  .l-content .wp-block-heading {
    font-size: 2.2rem;
  }
}

.line {
  max-width: 1000px;
  margin: 70px auto;
  width: 90%;
}

@media only screen and (min-width: 1025px) {
  .line {
    margin: 250px auto 30px;
  }
}

.line h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

@media only screen and (min-width: 1025px) {
  .line h2 {
    font-size: 3.3rem;
  }
}

header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 30;
  background: #FFFFFF;
}

header h1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  margin-right: 5vw;
  margin-left: 3vw;
  white-space: nowrap;
}

header h1 img {
  width: 120px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media only screen and (min-width: 1025px) {
  header h1 img {
    width: 170px;
  }
}

header h1 span {
  display: block;
  -webkit-transition: .3s;
  transition: .3s;
  margin-top: 3px;
  font-size: 1.3rem;
  display: none;
}

@media only screen and (min-width: 1025px) {
  header h1 span {
    display: block;
  }
}

header .global {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
  white-space: nowrap;
  font-weight: 500;
}

header nav {
  display: none;
}

@media only screen and (min-width: 1025px) {
  header nav {
    display: inherit;
  }
}

header nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

header nav ul span {
  color: #ccc;
  display: block;
  font-size: 1.3rem;
  line-height: 1.3;
}

header nav ul li {
  -webkit-transition: .3s;
  transition: .3s;
}

@media only screen and (min-width: 1025px) {
  header nav ul li {
    font-size: 1.3rem;
    margin: 0 1vw;
  }
}

@media only screen and (min-width: 1280px) {
  header nav ul li {
    font-size: 1.5rem;
    margin: 0 1.5vw;
  }
}

@media only screen and (min-width: 1441px) {
  header nav ul li {
    font-size: 1.6rem;
    margin: 0 1.5vw;
  }
}

header nav ul li a {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  position: relative;
}

header nav ul li a::after {
  position: absolute;
  bottom: 0px;
  left: 50%;
  content: '';
  width: 0%;
  height: 1px;
  background-color: #000000;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

header nav ul li a:hover::after {
  width: 100%;
}

header .contact {
  display: none;
  margin-left: .5rem;
}

@media only screen and (min-width: 1025px) {
  header .contact {
    display: inherit;
  }
}

header .contact ul li a {
  padding: 5px 20px;
  border-radius: 30px;
  height: 35px;
  display: block;
  line-height: 1.7;
  -webkit-transition: .3s;
  transition: .3s;
  text-align: center;
  font-size: 1.2rem;
}

@media only screen and (min-width: 1280px) {
  header .contact ul li a {
    padding: 5px 25px;
    font-size: 1.5rem;
    height: 40px;
  }
}

header .contact ul li:nth-child(1) a {
  background: #000;
  color: #FFFFFF;
}

header .contact ul li:nth-child(1) a:hover {
  background: #888;
}

header .contact ul li:nth-child(2) {
  margin-top: 5px;
}

header .contact ul li:nth-child(2) a {
  border: 1px solid #ccc;
}

header .contact ul li:nth-child(2) a:hover {
  background: #888;
  color: #FFFFFF;
}

@media only screen and (min-width: 1025px) {
  header.fixed h1 img {
    width: 150px;
  }
}

header.fixed h1 span {
  font-size: 1rem;
}

header.fixed nav ul li {
  font-size: 1.3rem;
}

header.fixed nav ul li span {
  font-size: 1rem;
}

header.fixed .contact a {
  font-size: 1.2rem;
  height: 30px !important;
}

.mv {
  position: relative;
  height: 100vh;
}

.mv .swiper-wrapper {
  height: calc(95vh - 200px);
  margin-top: 200px;
  height: calc(95dvh - 200px);
  width: calc(100vw - 20px);
  margin-left: 20px;
}

@media only screen and (min-width: 1025px) {
  .mv .swiper-wrapper {
    margin-left: 150px;
    height: calc(95vh - 300px);
    margin-top: 300px;
    height: calc(95dvh - 300px);
    width: calc(100vw - 150px);
  }
}

.mv .swiper-wrapper .swiper-slide img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.mv h2 {
  position: absolute;
  top: 120px;
  left: 30px;
  font-size: var(--maintit);
  color: #000000;
  line-height: 1.5;
  z-index: 20;
  letter-spacing: .5rem;
  white-space: nowrap;
  -webkit-transition: .2s;
  transition: .2s;
}

@media only screen and (min-width: 768px) {
  .mv h2 {
    top: 100px;
  }
}

@media only screen and (min-width: 1025px) {
  .mv h2 {
    font-size: 4rem;
    top: 210px;
    left: 250px;
  }
}

@media only screen and (min-width: 1280px) {
  .mv h2 {
    font-size: 5rem;
    top: 180px;
    left: 250px;
  }
}

.mv .anime-up span:nth-child(n+9) {
  position: relative;
  left: -47%;
  top: 50px;
}

@media only screen and (min-width: 768px) {
  .mv .anime-up span:nth-child(n+9) {
    top: 60px;
  }
}

@media only screen and (min-width: 1025px) {
  .mv .anime-up span:nth-child(n+9) {
    position: relative;
    top: 50px;
    left: -360px;
  }
}

@media only screen and (min-width: 1280px) {
  .mv .anime-up span:nth-child(n+9) {
    top: 70px;
    left: -440px;
  }
}

.swiper-pagination {
  text-align: left;
  padding-left: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media only screen and (min-width: 1025px) {
  .swiper-pagination {
    padding-left: 150px;
  }
}

.swiper-pagination .swiper-pagination-bullet {
  width: 35px;
  border-radius: 0px;
  height: 2px;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background: #000;
}

.greet-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-flow: column-reverse;
  -ms-flex-flow: column-reverse;
  flex-flow: column-reverse;
}

@media only screen and (min-width: 1025px) {
  .greet-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row;
  }
}

.greet-column .pic {
  	margin-bottom: 50px;
	text-align: center;
}
.yamauchi_logo{
	width: 80%;
	margin: 2em 0 1em;
}

@media only screen and (min-width: 1025px) {
  .greet-column .pic {
    margin-left: 50px;
    margin-bottom: 0;
	width: 55%;
	text-align: center;
	}
}

.greet {
  margin: 12vw 0 20vw;
}

@media only screen and (min-width: 1025px) {
  .greet {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 10vw 0 7vw;
  }
}

.greet h3 {
  width: 200px;
  margin-bottom: 7vw;
}

@media only screen and (min-width: 1025px) {
  .greet h3 {
    margin-right: 5rem;
    width: 300px;
    margin-bottom: 0;
  }
}

section.yamauchi_top_logo {
	width: 70%;
	margin: auto;
	text-align: center;
	margin-top: 7%;
}
@media only screen and (max-width: 1025px) {
  section.yamauchi_top_logo {
    width: 90%;
  }
}
@media only screen and (max-width: 768px) {
  section.yamauchi_top_logo {
    width: 100%;
	margin-top: 2%;
  }
}

section.base-top {
  width: 90%;
  margin: auto;
}

@media only screen and (min-width: 1025px) {
  section.base-top {
    padding-left: 10%;
    width: 95%;
  }
}

section.base-top .car-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-flow: column-reverse;
  -ms-flex-flow: column-reverse;
  flex-flow: column-reverse;
  margin-bottom: 20vw;
}

@media only screen and (min-width: 1025px) {
  section.base-top .car-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row;
    margin-bottom: 50px;
  }
}

section.base-top .car-wrap .l-box {
  margin-top: 5vw;
}

@media only screen and (min-width: 1025px) {
  section.base-top .car-wrap .l-box {
    width: 30%;
    margin-top: 0;
  }
}

section.base-top .car-wrap .pic-box {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

@media only screen and (min-width: 1025px) {
  section.base-top .car-wrap .pic-box {
    width: 60%;
    position: inherit;
    left: inherit;
    right: inherit;
    margin-left: inherit;
    margin-right: inherit;
  }
}

section.base-top .car-wrap h4 {
  color: #ccc;
  margin-bottom: 10px;
}

section.base-top .car-wrap .tit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

section.base-top .car-wrap .tit .log {
  width: 90px;
}

section.base-top .car-wrap .txt {
  margin-top: 30px;
}

section.base-top .car-wrap .logo-tire img {
  width: 290px;
}

section.base-top .car-wrap .logo-txt {
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 1;
}

section.base-top .car-wrap h5 {
  font-size: 1.8rem;
}

@media only screen and (min-width: 1025px) {
  section.base-top .car-wrap h5 {
    font-size: 1.7rem;
    line-height: 1.3;
    white-space: nowrap;
  }
}

@media only screen and (min-width: 1280px) {
  section.base-top .car-wrap h5 br {
    display: none;
  }
}

section.base-top .car-wrap .logo-imaoka {
  width: 230px;
}

.mid-v {
  margin-top: 15vw;
}

.mid-v img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  aspect-ratio: 2.5 / 1;
  width: 100%;
  height: auto;
  -webkit-transition: .5s;
  transition: .5s;
}

@media only screen and (min-width: 1025px) {
  .mid-v img {
    aspect-ratio: 4 / 1;
  }
}

.insta {
  max-width: 750px;
  width: 80%;
  margin: 15vw auto;
}

@media only screen and (min-width: 1025px) {
  .insta {
    margin: 10vw auto;
  }
}

.insta .tit {
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: .1rem;
  font-size: 2.2rem;
}

@media only screen and (min-width: 1025px) {
  .insta .tit {
    font-size: 3rem;
  }
}

.insta .tit i {
  margin-right: 1rem;
  color: #aaa;
}

.insta .link {
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 1.7rem;
  text-align: right;
}

@media only screen and (min-width: 1025px) {
  .insta .link {
    font-size: 1.9rem;
  }
}

.insta .link i {
  margin-right: 1rem;
  color: #aaa;
}

.insta .link .fa-angle-right {
  margin-left: 2rem;
  font-size: 1.4rem;
}

.l-footer {
  border-top: 1px solid #ccc;
  padding: 5vw 0;
  margin-top: 10vw;
  font-size: 1.4rem;
}

.l-footer .sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2vw;
}

@media only screen and (min-width: 1025px) {
  .l-footer .sns {
    margin-top: 0;
  }
}

.l-footer .sns li {
  margin-right: 1.5rem;
  font-size: 2.2rem;
}

.l-footer .logo {
  width: 80px;
}

@media only screen and (min-width: 1025px) {
  .l-footer .logo {
    width: 100px;
  }
}

.l-footer .add-wrap {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  width: 100%;
}

@media only screen and (min-width: 1025px) {
  .l-footer .add-wrap {
    width: 30%;
  }
}

.l-footer .add-box {
  margin-top: 20px;
}

.l-footer .add-box dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0.5vw 0;
}

@media only screen and (min-width: 1025px) {
  .l-footer .add-box dl {
    display: block;
    line-height: 1.5;
  }
}

.l-footer .add-box dl dt {
  margin-right: 1rem;
}

.l-footer .add-box span {
  font-size: 1.2rem;
  display: block;
  margin-top: 20px;
}

@media only screen and (min-width: 1025px) {
  .l-footer .add-box span {
    font-size: 1.4rem;
  }
}

@media only screen and (min-width: 1025px) {
  .l-footer .add-box br {
    display: none;
  }
}

.l-footer .footer-inner {
  width: 90%;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
}

@media only screen and (min-width: 1025px) {
  .l-footer .footer-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row;
  }
}

.l-footer .f-nav {
  margin-left: auto;
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
}

@media only screen and (min-width: 1025px) {
  .l-footer .f-nav {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    border-right: 1px solid #ccc;
  }
}

@media only screen and (min-width: 1025px) {
  .l-footer .f-nav {
    width: 40%;
  }
}

.l-footer .f-nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
}

.l-footer .f-nav ul li {
  width: 48%;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-footer .f-nav ul li::before {
  content: "－";
  display: block;
  color: #aaa;
  margin-right: .5rem;
}

.l-footer .contact {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  margin: 10vw 0;
  width: 100%;
}

@media only screen and (min-width: 1025px) {
  .l-footer .contact {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    margin: 0 0 0 5vw;
    width: auto;
  }
}

.l-footer .contact dd {
  font-size: 3rem;
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.5;
}

@media only screen and (min-width: 1025px) {
  .l-footer .contact dd {
    font-weight: 400;
    font-size: 3rem;
  }
}

.l-footer .contact dd i {
  font-size: 2rem;
  margin-right: 1rem;
  color: #aaa;
}

.l-footer .contact dd::before {
  content: "";
  display: block;
  background: url(images/tel.svg) center top/cover no-repeat;
  width: 15px;
  height: 20px;
  margin-right: .3rem;
}

.l-footer .contact span {
  color: #aaa;
}

.fax {
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  font-size: 2.2rem;
  margin-top: 10px;
}

.fax i {
  color: #aaa;
  margin-right: .5rem;
}

.copy {
  text-align: center;
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 30px;
}

@media only screen and (min-width: 1025px) {
  .copy {
    font-size: 1.3rem;
  }
}

.se-head {
  position: relative;
}

@media only screen and (min-width: 1025px) {
  .se-head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.se-head .en {
  margin-left: 80px;
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  color: #aaa;
  display: none;
}

@media only screen and (min-width: 1025px) {
  .se-head .en {
    display: inherit;
  }
}

.se-head .tit-wrap {
  width: 90%;
  margin: 0 auto 50px;
  position: relative;
  z-index: 10;
}

@media only screen and (min-width: 1025px) {
  .se-head .tit-wrap {
    width: auto;
    margin: auto;
  }
}

.se-head .tit-wrap .tit-posi {
  position: relative;
  text-shadow: white 0 0 8px, white 0px 0px 8px, white 0px 0px 8px;
}

@media only screen and (min-width: 1025px) {
  .se-head .tit-wrap .tit-posi {
    right: -70px;
  }
}

.se-head .tit-wrap h2 {
  font-size: var(--sesub);
  font-weight: 500;
  margin-bottom: 1vw;
}

.se-head .tit-wrap h3 {
  font-size: var(--setit);
  letter-spacing: .7rem;
  white-space: nowrap;
  font-weight: 500;
}

.se-head .tit-wrap h3::before {
  content: "";
  display: block;
  background: url(images/logo_irise02.png) no-repeat;
  width: 90px;
}

.se-head .head-img {
  margin-left: 20px;
  overflow: hidden;
  position: relative;
}

.se-head .head-img::before {
  -webkit-animation: img-wrap 1.5s cubic-bezier(0, 0, 0.58, 1) forwards;
  animation: img-wrap 1.5s cubic-bezier(0, 0, 0.58, 1) forwards;
  background: #fff;
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

@media only screen and (min-width: 1025px) {
  .se-head .head-img {
    width: 75%;
    margin-left: 0;
  }
}

.se-head .head-img img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  aspect-ratio: 2 / 1.5;
  width: 100%;
  height: auto;
  -webkit-transition: .5s;
  transition: .5s;
}

@media only screen and (min-width: 1025px) {
  .se-head .head-img img {
    aspect-ratio: 2 / 1;
  }
}

.se-head .en {
  position: absolute;
  bottom: 0;
  color: #aaa;
  letter-spacing: .1rem;
}

.se-head.rex h3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.se-head.rex h3::before {
  content: "";
  display: block;
  background: url(images/logo_irise02.png) left top/cover no-repeat;
  width: 80px;
  height: 80px;
  margin-right: 1.5rem;
}

.se-head.company h2 {
  font-size: var(--setit);
}

@media only screen and (min-width: 1025px) {
  .se-head.company .tit-wrap {
    width: 30%;
  }
}

.se-head.away h2 {
  line-height: 1.5;
  font-size: var(--setit);
}

.se-head.away .tit-posi {
  right: 0;
}

@media only screen and (min-width: 1025px) {
  .se-head.away .head-img {
    width: 65%;
  }
}

.se-head.access h2 {
  line-height: 1.5;
  font-size: var(--setit);
}

@media only screen and (min-width: 1025px) {
  .se-head.access .tit-wrap {
    width: 30%;
  }
}

@media only screen and (min-width: 1025px) {
  .se-head.access .head-img {
    width: 75%;
  }
}

@media only screen and (min-width: 1025px) {
  .se-head.shop .tit-wrap {
    width: 35%;
  }
}

@media only screen and (min-width: 1025px) {
  .se-head.shop .head-img {
    width: 65%;
  }
}

.se-head.shop h3 img {
  width: 250px;
}

@media only screen and (min-width: 1025px) {
  .se-head.shop h3 img {
    width: 300px;
  }
}

@media only screen and (min-width: 1025px) {
  .se-head.tire .tit-wrap {
    width: 35%;
  }
}

@media only screen and (min-width: 1025px) {
  .se-head.tire .head-img {
    width: 65%;
  }
}

.se-head.tire h3 img {
  width: 250px;
}

@media only screen and (min-width: 1025px) {
  .se-head.tire h3 img {
    width: 350px;
  }
}

.se-head.privacy-tit h2 {
  line-height: 1.5;
  font-size: var(--setit);
}

@media only screen and (min-width: 1025px) {
  .se-head.privacy-tit .tit-wrap {
    width: 35%;
  }
}

@media only screen and (min-width: 1025px) {
  .se-head.privacy-tit .head-img {
    width: 65%;
  }
}

@-webkit-keyframes img-wrap {
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes img-wrap {
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

#container {
  margin-top: 150px;
}

.base {
  width: 85%;
  margin: 10vw auto 0;
}

.base h4 {
  font-size: var(--basetit);
  font-weight: 500;
  margin-bottom: 8vw;
}

@media only screen and (min-width: 1025px) {
  .base h4 {
    margin-bottom: 3vw;
  }
}

@media only screen and (min-width: 1025px) {
  .base h4 br {
    display: none;
  }
}

@media only screen and (min-width: 1025px) {
  .base .column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media only screen and (min-width: 1025px) {
  .base .column.rex .txt {
    width: 35%;
  }
}

.base .column.rex .pic {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 10vw;
}

@media only screen and (min-width: 1025px) {
  .base .column.rex .pic {
    width: auto;
    left: inherit;
    right: inherit;
    margin-left: inherit;
    margin-right: inherit;
    margin-top: 0;
  }
}

@media only screen and (min-width: 1025px) {
  .base .column.rex .pic {
    width: 60%;
  }
}

.base .column.rex .pic img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  aspect-ratio: 2 / 1;
  width: 100%;
  height: auto;
  -webkit-transition: .5s;
  transition: .5s;
}

@media only screen and (min-width: 1025px) {
  .base .column.tire .txt {
    width: 48%;
  }
}

.base .column.tire .pic {
  margin-top: 50px;
}

@media only screen and (min-width: 1025px) {
  .base .column.tire .pic {
    width: 48%;
    margin-top: 0;
  }
}

.base .column.tire .pic img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  -webkit-transition: .5s;
  transition: .5s;
}

@media only screen and (min-width: 1025px) {
  .base .column.store .pic {
    width: 48%;
  }
}

.base .column.store .txt {
  margin-top: 20px;
}

@media only screen and (min-width: 1025px) {
  .base .column.store .txt {
    width: 48%;
    margin-top: 0;
  }
}

@media only screen and (min-width: 1025px) {
  .base .tire-mv .movie {
    width: 55%;
  }
}

.base .tire-mv .movie .youtube {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-top: 30px;
}

@media only screen and (min-width: 1025px) {
  .base .tire-mv .movie .youtube {
    margin-top: 0;
    aspect-ratio: 16 / 9;
  }
}

.base .tire-mv .movie .youtube iframe {
  width: 100%;
  height: 100%;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

@media only screen and (min-width: 1025px) {
  .base .tire-mv .movie .youtube iframe {
    width: auto;
    left: inherit;
    right: inherit;
    margin-left: inherit;
    margin-right: inherit;
    width: 100%;
  }
}

.base .tire-mv .movie .pic {
  margin-top: 30px;
}

@media only screen and (min-width: 1025px) {
  .base .tire-mv .movie .pic {
    margin-top: 0;
  }
}

.base .tire-mv .movie span {
  display: block;
  margin-top: 15px;
}

@media only screen and (min-width: 1025px) {
  .base .tire-mv .txt {
    width: 40%;
  }
}

.base .tire-mv .txt dl dt {
  font-size: 2.1rem;
  margin-bottom: 2vw;
}

@media only screen and (min-width: 1025px) {
  .base .tire-mv .txt dl dt {
    font-size: 2.5rem;
  }
}

.link-label {
  margin-top: 10vw;
}

@media only screen and (min-width: 1025px) {
  .link-label {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
  }
}

.link-label .label {
  margin-bottom: 5vw;
  border-right: 1px solid #ccc;
  padding-right: 6px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 6px;
  position: relative;
}

.link-label .label::after {
  content: "";
  display: block;
  width: 2px;
  height: 30px;
  background: #FFFFFF;
  position: absolute;
  right: -1px;
  top: 0;
}

.link-label .label::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #FFFFFF;
  position: absolute;
  left: -1px;
  bottom: -1px;
}

@media only screen and (min-width: 1025px) {
  .link-label .label {
    width: 48.5%;
    margin-bottom: 2vw;
  }
}

.link-label .label a {
  display: block;
  border: 1px solid #ccc;
  padding: 3vw;
  -webkit-transition: .3s;
  transition: .3s;
  position: relative;
}

.link-label .label a::before {
  content: "";
  display: block;
  background: url(images/frame03.svg) center top/cover no-repeat;
  position: absolute;
  right: -1px;
  top: -1px;
  width: 25px;
  height: 25px;
}

.link-label .label a::after {
  content: "";
  display: block;
  background: url(images/frame04.svg) center top/cover no-repeat;
  position: absolute;
  left: -1px;
  bottom: -1px;
  width: 25px;
  height: 25px;
}

.link-label .label a:hover {
  background: #ccc;
  color: #FFFFFF;
}

.link-label .label a:hover span::before {
  color: #FFFFFF;
}

.link-label .label a:hover i {
  color: #FFFFFF;
}

.link-label .label a:hover dl dt::before {
  color: #FFFFFF;
}

.link-label .label a dl dt {
  margin-bottom: 2vw;
  font-size: var(--labeltit);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.link-label .label a dl dt::before {
  content: "■";
  display: block;
  margin-right: .5rem;
  color: #ccc;
}

.link-label span {
  margin-top: 4vw;
  display: block;
  text-align: right;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  line-height: 1.3;
}

.link-label span::before {
  content: "－";
  display: block;
  position: relative;
  top: 5px;
  margin-right: .5rem;
  color: #ccc;
}

.link-label span i {
  margin-left: 4rem;
  color: #ccc;
}

.tit-wrap.tit-column {
  margin-bottom: 3vw;
}

@media only screen and (min-width: 1025px) {
  .tit-wrap.tit-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}

.tit-wrap.tit-column h4 {
  font-size: 2.5rem;
  margin-bottom: 0;
  letter-spacing: .3rem;
  line-height: 1.6;
}

@media only screen and (min-width: 1025px) {
  .tit-wrap.tit-column h4 {
    font-size: 2.7rem;
  }
}

.tit-wrap.tit-column span {
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  color: #aaa;
  font-size: 1.1rem;
  line-height: 2;
}

@media only screen and (min-width: 1025px) {
  .tit-wrap.tit-column span {
    font-size: 1.5rem;
    margin-left: 2rem;
  }
}

.achieve {
  margin-top: 10vw;
}

.achieve .achieve-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
}

.achieve .achieve-list::after {
  content: "";
  display: block;
  width: 31%;
}

.achieve .achieve-list .achieve-box {
  width: 47%;
  margin-bottom: 40px;
  position: relative;
  /*    &:hover{
              img{
                -webkit-transform: scale(1.05);
    transform: scale(1.05);
              }
          
        }*/
}

@media only screen and (min-width: 768px) {
  .achieve .achieve-list .achieve-box {
    width: 31%;
  }
}

@media only screen and (min-width: 1025px) {
  .achieve .achieve-list .achieve-box {
    width: 31%;
    margin-bottom: 80px;
  }
}

.achieve .achieve-list .achieve-box .pic {
  overflow: hidden;
}

.achieve .achieve-list .achieve-box .pic img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  aspect-ratio: 1.5 / 1;
  width: 100%;
  height: auto;
  -webkit-transition: .3s;
  transition: .3s;
}

.achieve .achieve-list .achieve-box dl {
  margin-bottom: 10px;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 10px;
}

@media only screen and (min-width: 1025px) {
  .achieve .achieve-list .achieve-box dl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    margin-bottom: 5px;
    padding-bottom: 5px;
  }
}

.achieve .achieve-list .achieve-box dl dt {
  width: 100px;
  font-weight: 500;
}

.achieve .achieve-list .achieve-box h5 {
  margin: 10px 0;
  font-size: 1.5rem;
  font-weight: 600;
}

@media only screen and (min-width: 1025px) {
  .achieve .achieve-list .achieve-box h5 {
    font-size: 1.8rem;
    margin: 20px 0;
  }
}

.achieve .achieve-list .achieve-box .new {
  position: absolute;
  top: 0;
  left: 0;
  background: #c2a35a;
  color: #FFFFFF;
  line-height: 1;
  padding: 5px 10px;
}

@media only screen and (min-width: 1025px) {
  .achieve .achieve-list .achieve-box .new {
    padding: 5px 20px;
  }
}

.point {
  background: url(images/bg_tire.jpg) center top/cover no-repeat;
  position: relative;
  padding: 10vw 7vw;
  margin-top: 6vw;
}

@media only screen and (min-width: 1025px) {
  .point {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 5vw 7vw;
  }
}

.point::after {
  display: block;
  content: "";
  background: #000000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .7;
}

.point .point-l, .point .point-r {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
}

@media only screen and (min-width: 1025px) {
  .point .point-l {
    width: 50%;
  }
}

.point dl dt {
  font-size: 2.2rem;
  margin-bottom: 3vw;
  font-weight: 600;
}

.point .point-r {
  margin: 50px auto 0;
  width: 90%;
}

@media only screen and (min-width: 1025px) {
  .point .point-r {
    width: 37%;
    margin: 0;
  }
}

.point .point-r ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
}

.point .point-r ul li {
  width: 48%;
  border: 1px solid #FFFFFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 7vw;
  margin-bottom: 15px;
  font-size: 2.6rem;
  letter-spacing: .1rem;
  -webkit-transform: skew(-8deg);
  transform: skew(-8deg);
}

@media only screen and (min-width: 1025px) {
  .point .point-r ul li {
    margin-bottom: 1.5vw;
    padding: 3vw;
  }
}

.point .point-r ul li .inner {
  width: 100%;
  white-space: nowrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: skew(8deg);
  transform: skew(8deg);
}

.point .point-r ul li span {
  font-size: 1.9rem;
  display: block;
  position: relative;
  top: 3px;
}

.point .point-r ul li:first-child {
  font-size: 3rem;
}

.point .point-r ul li:nth-child(3) {
  left: -18px;
  position: relative;
}

@media only screen and (min-width: 1025px) {
  .point .point-r ul li:nth-child(3) {
    left: -22px;
  }
}

.point .point-r ul li:nth-child(4) {
  position: relative;
  left: -18px;
}

@media only screen and (min-width: 1025px) {
  .point .point-r ul li:nth-child(4) {
    left: -22px;
  }
}

.service-menu .bnr {
  margin-top: 5vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
}

.service-menu .bnr li {
  width: 48%;
  margin-bottom: 20px;
}

@media only screen and (min-width: 1025px) {
  .service-menu .bnr li {
    width: 23%;
    margin-bottom: 1.7vw;
  }
}

.service-menu .item-wrap {
  margin-top: 10vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
}

.service-menu .item-wrap .box {
  margin-bottom: 30px;
}

@media only screen and (min-width: 1025px) {
  .service-menu .item-wrap .box {
    width: 47%;
    margin-bottom: 5vw;
  }
}

.service-menu .item-wrap .box dl dt {
  margin-bottom: 15px;
  font-size: 2.2rem;
}

@media only screen and (min-width: 1025px) {
  .service-menu .item-wrap .box dl dt {
    margin-bottom: 1.5vw;
  }
}

.service-menu .item-wrap .box dl dd img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  aspect-ratio: 2 / 1;
  width: 100%;
  height: auto;
  -webkit-transition: .5s;
  transition: .5s;
}

.service-menu .item-wrap .box .txt {
  margin-top: 1.5vw;
}

.service-menu .item-wrap .btn-base a {
  font-family: "Noto Sans JP", serif;
}

.service-menu .item-wrap .btn-base a::after {
  position: relative;
  top: 2px;
}

@media only screen and (min-width: 1025px) {
  .price-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.price-container .tit {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

@media only screen and (min-width: 1025px) {
  .price-container .tit {
    width: 30%;
    margin-bottom: 0;
    font-size: 2.7rem;
  }
}

@media only screen and (min-width: 1025px) {
  .price-container .price-content {
    width: 65%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
  }
}

.price-container .price-content .price-inner {
  margin-bottom: 30px;
}

@media only screen and (min-width: 1025px) {
  .price-container .price-content .price-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 3vw;
  }
}

@media only screen and (min-width: 1025px) {
  .price-container .price-content .price-inner .price-txt {
    width: 47%;
  }
}

.price-container .price-content .price-inner .price-txt dl dt {
  font-size: 2rem;
  margin-bottom: 15px;
}

@media only screen and (min-width: 1025px) {
  .price-container .price-content .price-inner .price-txt dl dt {
    font-size: 2.2rem;
    margin-bottom: 1.5vw;
  }
}

.price-container .price-content .price-inner .price-pic {
  margin-top: 20px;
}

@media only screen and (min-width: 1025px) {
  .price-container .price-content .price-inner .price-pic {
    width: 47%;
    margin-top: 0;
  }
}

.price-container .price-content .price-inner .price-pic img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  aspect-ratio: 2 / 1;
  width: 100%;
  height: auto;
  -webkit-transition: .5s;
  transition: .5s;
}

.price-graph {
  margin-top: 3vw;
}

.price-graph .tit {
  font-size: 2.3rem;
  margin-top: 80px;
}

@media only screen and (min-width: 1025px) {
  .price-graph .tit {
    font-size: 2.7rem;
    margin-bottom: 3vw;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.price-graph .tax {
  display: block;
  margin-top: 10px;
}

@media only screen and (min-width: 1025px) {
  .price-graph .tax {
    margin-bottom: 40px;
  }
}

.price-graph .table-column {
  margin-bottom: 5vw;
}

@media only screen and (min-width: 1025px) {
  .price-graph .table-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
  }
}

.price-graph .table-column .table-graph {
  width: 100%;
}

.price-graph .table-column table {
  border-collapse: collapse;
  border: 1px solid #ccc;
  width: 100%;
}

.price-graph .table-column table td, .price-graph .table-column table th {
  border: 1px solid #ccc;
  padding: 4vw;
  font-weight: 400;
  white-space: nowrap;
}

@media only screen and (min-width: 1025px) {
  .price-graph .table-column table td, .price-graph .table-column table th {
    padding: 10px 20px;
  }
}

@media only screen and (min-width: 1025px) {
  .price-graph .table-column table td br, .price-graph .table-column table th br {
    display: none;
  }
}

.price-graph .table-column table td {
  text-align: right;
}

.price-graph .table-column table th {
  background: #ddd;
  border-bottom: 1px solid #fff;
}

.price-graph .table-column .txt-att {
  width: 100%;
  margin-top: 20px;
  display: block;
}

.price-graph .table-column .table01 tr th:first-child {
  width: 30%;
}

@media only screen and (min-width: 1025px) {
  .price-graph .table-column .table01 tr th:first-child {
    width: auto;
  }
}

@media only screen and (min-width: 1025px) {
  .price-graph .table-column .table01 {
    width: 30%;
  }
}

@media only screen and (min-width: 1025px) {
  .price-graph .table-column .table02 {
    width: 65%;
  }
}

@media only screen and (min-width: 1025px) {
  .price-graph .table-column .table03 {
    width: 48%;
  }
}

@media only screen and (min-width: 1025px) {
  .price-graph .table-column .table04 {
    width: 48%;
  }
}

@media only screen and (min-width: 1025px) {
  .price-graph .table-column .table05 {
    width: 48%;
  }
}

@media only screen and (min-width: 1025px) {
  .price-graph .table-column .table05 th {
    width: 41%;
  }
}

@media only screen and (min-width: 1025px) {
  .price-graph .table-column .table06 {
    width: 48%;
  }
}

@media only screen and (min-width: 1025px) {
  .price-graph .table-column .table06 th {
    width: 41%;
  }
}

.price-graph .table-column .pit-tit {
  font-size: 1.5rem;
  margin-bottom: 15px;
  margin-top: 40px;
}

@media only screen and (min-width: 1025px) {
  .price-graph .table-column .pit-tit {
    font-size: 1.7rem;
    margin-bottom: 1vw;
    margin-top: 0;
  }
}

.price-graph .table-column .pit-tit span {
  font-size: 1.3rem;
  margin-top: 10px;
  display: block;
}

@media only screen and (min-width: 1025px) {
  .price-graph .table-column .pit-tit span {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 1.5rem;
    margin-left: 2rem;
    margin-top: 0;
  }
}

.price-graph .table-column .txt-center {
  text-align: center;
}

.table-scroll {
  overflow-x: scroll;
}

.table-scroll table {
  width: 1000px;
}

@media only screen and (min-width: 1025px) {
  .table-scroll table {
    width: auto;
  }
}

.step {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 5vw;
  -webkit-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  margin-top: 50px;
}

@media only screen and (min-width: 1025px) {
  .step {
    -webkit-flex-flow: nowrap;
    -ms-flex-flow: nowrap;
    flex-flow: nowrap;
    margin-top: 0;
  }
}

.step .step-box {
  border: 1px solid #ccc;
  padding: 30px 10px;
  width: 45%;
  position: relative;
  margin-bottom: 30px;
}

@media only screen and (min-width: 1025px) {
  .step .step-box {
    width: 18%;
    margin-bottom: 0;
    padding: 30px;
  }
}

.step .step-box::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #FFFFFF;
  position: absolute;
  left: 5px;
  top: -2px;
}

.step .step-box .num {
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  font-size: 2.5rem;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  color: #ccc;
  -webkit-transform: skew(-5deg);
  transform: skew(-5deg);
}

@media only screen and (min-width: 1025px) {
  .step .step-box .num {
    font-size: 3rem;
  }
}

.step .step-box .num::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #ccc;
  position: relative;
}

.step .step-box .num span {
  padding: 5px 5px 5px 10px;
  display: inline-block;
}

.step .step-box .icon {
  width: 40px;
  margin: auto;
  height: 70px;
}

.step .step-box .icon.icon01 {
  width: 40px;
}

.step .step-box .icon.icon02 {
  width: 70px;
}

.step .step-box .icon.icon03 {
  width: 50px;
}

.step .step-box .icon.icon04 {
  width: 85px;
}

.step .step-box .icon.icon05 {
  width: 70px;
}

.step .step-box dl {
  margin-top: 20px;
}

.step .step-box dl dt {
  font-size: var(--steptxt);
  text-align: center;
  white-space: nowrap;
  margin: 0px 0;
}

.step .step-box::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  color: #ccc;
  font-size: 2.5rem;
  position: absolute;
  right: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.step .step-box:last-child::before {
  display: none;
}

.maker nav {
  margin-bottom: 7vw;
}

.maker nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
}

@media only screen and (min-width: 1025px) {
  .maker nav ul {
    -webkit-flex-flow: nowrap;
    -ms-flex-flow: nowrap;
    flex-flow: nowrap;
  }
}

.maker nav ul li {
  font-size: var(--makernav);
  width: 50%;
  margin-bottom: 20px;
}

@media only screen and (min-width: 1025px) {
  .maker nav ul li {
    width: auto;
    margin-bottom: 0;
  }
}

.maker nav ul li a {
  position: relative;
  bottom: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.maker nav ul li a:hover {
  bottom: -5px;
}

.maker nav ul li a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  margin-left: .5rem;
  color: #aaa;
  position: relative;
  top: 2px;
  font-size: 1.3rem;
}

.maker nav ul li a::before {
  position: absolute;
  bottom: 0px;
  left: 50%;
  content: '';
  width: 0%;
  height: 1px;
  background-color: #000000;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.maker nav ul li a:hover::before {
  width: 100%;
}

.maker .maker-content {
  margin-bottom: 5vw;
}

.maker .maker-content .tit-maker {
  font-size: 2rem;
  margin-bottom: 3vw;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

@media only screen and (min-width: 1025px) {
  .maker .maker-content .tit-maker {
    font-size: 2.5rem;
    margin-bottom: 0;
  }
}

.maker .maker-content .tit-maker::before {
  content: "";
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 5px;
  height: 25px;
  background: #ccc;
  margin-right: 1rem;
}

@media only screen and (min-width: 1025px) {
  .maker .maker-content .tit-maker::before {
    width: 7px;
    height: 30px;
  }
}

.maker .bnr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
}

.maker .bnr::after {
  content: "";
  display: block;
  width: 18%;
}

.maker .bnr::before {
  content: "";
  display: block;
  width: 18%;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.maker .bnr li {
  width: 45%;
  margin-bottom: 2.5vw;
}

@media only screen and (min-width: 1025px) {
  .maker .bnr li {
    width: 18%;
  }
}

.greet-wrap {
  margin-bottom: 50px;
}

@media only screen and (min-width: 1025px) {
  .greet-wrap {
    margin-bottom: 80px;
  }
}

.greet-wrap .tit-company {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 500;
}

@media only screen and (min-width: 1025px) {
  .greet-wrap .tit-company {
    font-size: 2.2rem;
  }
}

.company-info dl {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

@media only screen and (min-width: 1025px) {
  .company-info dl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 1.5vw;
    margin-bottom: 1.5vw;
  }
}

.company-info dl dt {
  font-weight: 600;
  margin-bottom: 10px;
}

@media only screen and (min-width: 1025px) {
  .company-info dl dt {
    width: 250px;
    margin-bottom: 0;
  }
}

.company-info dl dd {
  width: 100%;
}

.company-info .inner-box {
  margin-bottom: 20px;
}

@media only screen and (min-width: 1025px) {
  .company-info .inner-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 1025px) {
  .company-info .inner-box .tit {
    width: 200px;
  }
}

@media only screen and (min-width: 1025px) {
  .company-info .inner-box .txt {
    width: 100%;
  }
}

.name {
  background: url(images/top01.jpg) center center/cover no-repeat;
  position: relative;
  padding: 10vw 7vw;
  margin-top: 10vw;
}

@media only screen and (min-width: 1025px) {
  .name {
    padding: 5vw 7vw;
  }
}

.name::after {
  display: block;
  content: "";
  background: #000000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .7;
}

.name .name-inner {
  max-width: 1200px;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 90%;
  margin: auto;
  text-align: center;
}

.name .name-graph {
  position: relative;
  z-index: 1;
}

.name span {
  color: #FFFFFF;
  position: relative;
  z-index: 1;
  display: block;
  text-align: left;
  margin-top: 30px;
  line-height: 2;
}

@media only screen and (min-width: 1025px) {
  .name span {
    margin-left: 16vw;
    margin-top: 0;
  }
}

.name .name-l, .name .name-r {
  color: #FFFFFF;
  position: relative;
  z-index: 2;
}

.name .name-l {
  width: 30%;
}

.name .name-r {
  width: 60%;
}

.name .name-detail {
  margin-bottom: 2vw;
}

.name .name-detail dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.name .name-detail dl dt {
  width: 150px;
}

.name .name-detail dl dt span {
  color: #bf0000;
  margin-right: .5rem;
}

.name .name-detail dl dd {
  width: 100%;
}

.name .name-detail .txt-btm {
  display: block;
}

.history-box {
  padding-bottom: 50px;
}

@media only screen and (min-width: 1025px) {
  .history-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 4vw;
    position: relative;
  }
}

.history-box::after {
  content: "";
  display: block;
  width: 1px;
  height: 90%;
  background: #ccc;
  position: absolute;
  left: 4.5px;
  top: 90px;
}

@media only screen and (min-width: 1025px) {
  .history-box::after {
    top: 20px;
    height: 100%;
  }
}

.history-box .year {
  font-size: 2.4rem;
  color: #aaa;
  letter-spacing: .2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 270px;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.history-box .year::before {
  content: "●";
  display: block;
  font-size: 1rem;
  margin-right: 3rem;
  position: relative;
  top: -4px;
}

.history-box .year span {
  font-size: 1.4rem;
  margin-left: .5rem;
}

.history-box .event {
  margin: 10px 0 10px 45px;
  font-weight: 500;
  font-size: 1.5rem;
}

@media only screen and (min-width: 1025px) {
  .history-box .event {
    width: 150px;
    margin: 0;
  }
}

.history-box .detail {
  margin: 0px 0 0px 45px;
}

@media only screen and (min-width: 1025px) {
  .history-box .detail {
    margin: 0;
  }
}

.partner-inner ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  margin-bottom: 5vw;
}

.partner-inner ul::after {
  content: "";
  display: block;
  width: 30%;
}

.partner-inner ul::before {
  content: "";
  display: block;
  width: 30%;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.partner-inner ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.3vw;
  line-height: 1.3;
  width: 100%;
}

@media only screen and (min-width: 1025px) {
  .partner-inner ul li {
    width: 30%;
  }
}

.partner-inner ul li::before {
  content: "■";
  display: block;
  font-size: 1rem;
  color: #ccc;
  margin-right: .7rem;
  position: relative;
  top: 3px;
}

.slide-wrap {
  margin-top: 7vw;
}

.swiper#car-slider {
  margin-bottom: 80px;
}

@media only screen and (min-width: 1025px) {
  .swiper#car-slider {
    margin-bottom: 0;
  }
}

.swiper#car-slider .swiper-button-prev, .swiper#car-slider .swiper-button-next {
  background: rgba(255, 255, 255, 0.7);
  width: 5vw;
  height: 5vw;
  color: #000;
}

.swiper#car-slider .swiper-button-prev::after, .swiper#car-slider .swiper-button-next::after {
  font-size: var(--arrow);
}

.swiper#car-slider .swiper-slide {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.swiper#car-slider .swiper-slide img {
  height: auto;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  aspect-ratio: 2 / 1;
  width: 100%;
  height: auto;
  -webkit-transition: .5s;
  transition: .5s;
}

.swiper#car-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  z-index: 1;
}

@media only screen and (min-width: 1025px) {
  .car-flow .flow-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
  }
}

.car-flow .flow-wrap .step {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 10px 20px 30px;
  position: relative;
  margin-top: 0;
}

@media only screen and (min-width: 1025px) {
  .car-flow .flow-wrap .step {
    width: 30%;
    padding: 10px 40px 120px;
  }
}

.car-flow .flow-wrap .step::before {
  content: "";
  display: block;
  background: url(images/sankaku02.svg) center top/cover no-repeat;
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 25px;
  height: 25px;
}

.car-flow .flow-wrap .step::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d7";
  position: absolute;
  font-size: var(--steparrow);
  color: #ccc;
  font-size: 3rem;
  bottom: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media only screen and (min-width: 1025px) {
  .car-flow .flow-wrap .step::after {
    right: -10%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0da";
    left: inherit;
    bottom: inherit;
  }
}

@media only screen and (min-width: 1025px) {
  .car-flow .flow-wrap .step:nth-child(2) {
    margin-left: 4%;
    margin-right: 4%;
  }
}

@media only screen and (min-width: 1025px) {
  .car-flow .flow-wrap .step:nth-child(4) {
    margin-right: 2%;
  }
}

@media only screen and (min-width: 1025px) {
  .car-flow .flow-wrap .step:last-child {
    margin-left: 2%;
  }
}

.car-flow .flow-wrap .step:last-child::after {
  display: none;
}

.car-flow .flow-wrap .step dl dt {
  font-size: 1.8rem;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.car-flow .flow-wrap .step dl dt .num {
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  color: #ccc;
  font-size: 3.5rem;
  font-weight: 400;
  -webkit-transform: skew(-8deg);
  transform: skew(-8deg);
  display: block;
  margin-right: 1rem;
}

.car-flow .flow-wrap .icon {
  width: 25px;
  position: absolute;
  right: 30px;
  top: 20px;
}

@media only screen and (min-width: 1025px) {
  .car-flow .flow-wrap .icon {
    bottom: 20px;
    right: 40px;
    top: inherit;
    width: 40px;
  }
}

.car-flow .flow-wrap .icon.icon02 {
  width: 40px;
}

@media only screen and (min-width: 1025px) {
  .car-flow .flow-wrap .icon.icon02 {
    width: 70px;
  }
}

.car-flow .flow-wrap .icon.icon03 {
  width: 50px;
}

@media only screen and (min-width: 1025px) {
  .car-flow .flow-wrap .icon.icon03 {
    width: 70px;
  }
}

.car-flow .flow-wrap .icon.icon04 {
  width: 55px;
}

@media only screen and (min-width: 1025px) {
  .car-flow .flow-wrap .icon.icon04 {
    width: 80px;
  }
}

.car-flow .flow-wrap .icon.icon05 {
  width: 60px;
}

@media only screen and (min-width: 1025px) {
  .car-flow .flow-wrap .icon.icon05 {
    width: 80px;
  }
}

.car-flow .btn-base {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.store .bnr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 4vw;
}

.store .bnr li {
  width: 47%;
  margin-bottom: 1vw;
}

.store .bnr li img {
  width: 200px;
}

.store .bnr li.bnr02 img {
  width: 150px;
}

.store .bnr li.bnr03 img {
  width: 150px;
}

.store .bnr li.bnr04 {
  margin-top: 10px;
}

.store .bnr li.bnr04 img {
  width: 150px;
}

.map-wrap {
  /* Google Mapのiframe */
}

.map-wrap .map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 60%;
  margin-top: 4vw;
}

@media only screen and (min-width: 1025px) {
  .map-wrap .map {
    padding-top: 40%;
  }
}

.map-wrap .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.way .tit-way {
  font-size: 1.8rem;
  margin-bottom: 3vw;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

@media only screen and (min-width: 1025px) {
  .way .tit-way {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
}

.way .tit-way::before {
  content: "";
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 7px;
  height: 30px;
  background: #ccc;
  margin-right: 1rem;
}

.way .way-content {
  margin-bottom: 80px;
}

.way .way-content span {
  display: block;
  margin-top: 30px;
}

.way .way-pic {
  max-width: 1000px;
  margin: auto;
}

.txt-thanks {
  max-width: 1200px;
  margin: 50px auto 0;
  width: 90%;
}

@media only screen and (min-width: 1025px) {
  .txt-thanks {
    margin: 100px auto 0;
  }
}

.contact-content {
  margin-bottom: 50px;
}

@media only screen and (min-width: 1025px) {
  .contact-content {
    margin-bottom: 5vw;
  }
}

.contact-content .tit-contact {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 2vw;
}

@media only screen and (min-width: 1025px) {
  .contact-content .tit-contact {
    font-size: 3.3rem;
  }
}

.contact-content dl.label {
  margin-top: 20px;
}

@media only screen and (min-width: 1025px) {
  .contact-content dl.label {
    margin-top: 1.5vw;
  }
}

.contact-content dl.label dt {
  font-size: 1.6rem;
}

@media only screen and (min-width: 1025px) {
  .contact-content dl.label dt {
    font-size: 2rem;
  }
}

.contact-content dl.label dt::before {
  content: "";
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 7px;
  height: 14px;
  background: #ccc;
  margin-right: 1rem;
}

.contact-content dl.label dd {
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  font-size: 3rem;
  font-weight: 500;
}

.privacy-column .txt-top {
  margin-bottom: 60px;
}

.privacy-column .pr-box {
  margin-bottom: 60px;
}

.privacy-column .pr-box .tit {
  font-weight: 600;
  margin-bottom: 10px;
}

.privacy {
  overflow-y: auto;
  height: 300px;
  border: 1px solid #ccc;
  padding: 30px;
}

.privacy .tit-privacy {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1vw;
}

.privacy dl {
  margin-bottom: 2vw;
  display: block !important;
}

.privacy dl dt {
  font-size: 1.7rem;
  font-weight: 500;
}

.h-adr .title {
  margin-top: 20px;
  display: block;
}

.contact-inner dl {
  margin-bottom: 30px;
}

@media only screen and (min-width: 1025px) {
  .contact-inner dl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 50px;
  }
}

.contact-inner dl dt {
  width: 500px;
  position: relative;
  margin-bottom: 10px;
}

@media only screen and (min-width: 1025px) {
  .contact-inner dl dt {
    width: 500px;
    margin-bottom: 0;
  }
}

.contact-inner dl dd {
  width: 100%;
}

.contact-inner dl dd input[type="text"], .contact-inner dl dd input[type="email"], .contact-inner dl dd input[type="tel"], .contact-inner dl dd textarea {
  width: 100%;
  border: none;
  background: #f2f2f2;
  padding: 10px;
  font-size: 1.6rem;
}

.contact-inner dl.hissu dt::after {
  content: "※";
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #bf0000;
  font-size: 1rem;
  position: relative;
  top: -3px;
  left: .3rem;
}

.wpcf7-list-item {
  display: block;
}

.rec-graph {
  width: 85%;
  margin: 5vw auto;
  text-align: left;
  padding-left: 7vw;
}

.rec-graph img {
  width: 100%;
  max-width: 800px;
}

.appli-flow {
  background: url(images/bg_rec.jpg) center top/cover no-repeat;
  color: #FFFFFF;
}

.appli-flow .base {
  padding-top: 5vw;
  margin-top: 0;
  padding-bottom: 5vw;
}

.appli-flow .tit-wrap span {
  color: #FFFFFF;
}

.appli-flow .appli-wrap {
  margin: 3vw 0;
}

@media only screen and (min-width: 1025px) {
  .appli-flow .appli-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.appli-flow .appli-wrap .appli-box {
  border: 1px solid #FFFFFF;
  padding: 20px 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: skew(-3deg);
  transform: skew(-3deg);
  white-space: nowrap;
  width: 80%;
  margin: 0 auto 50px;
}

@media only screen and (min-width: 1025px) {
  .appli-flow .appli-wrap .appli-box {
    width: 19%;
    margin-bottom: 0;
    min-height: 250px;
  }
}

.appli-flow .appli-wrap .appli-box::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d7";
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 2rem;
}

@media only screen and (min-width: 1025px) {
  .appli-flow .appli-wrap .appli-box::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0da";
    font-size: 3rem;
    position: absolute;
    right: -15%;
    bottom: inherit;
    left: inherit;
    -webkit-transform: none;
    transform: none;
  }
}

.appli-flow .appli-wrap .appli-box .appli-inner {
  -webkit-transform: skew(3deg);
  transform: skew(3deg);
  text-align: center;
}

.appli-flow .appli-wrap .appli-box .num {
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  font-style: italic;
  font-size: 3.5rem;
  line-height: 1;
}

.appli-flow .appli-wrap .appli-box .num::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  bottom: -2px;
  background: #FFFFFF;
  position: relative;
  left: 50%;
  margin-left: -15px;
}

.appli-flow .appli-wrap .appli-box .tit {
  font-size: 2rem;
  margin: 10px 0 20px;
}

.appli-flow .appli-wrap .appli-box .icon01 {
  width: 60px;
  margin: auto;
}

.appli-flow .appli-wrap .appli-box .icon02 {
  width: 50px;
  margin: auto;
}

.appli-flow .appli-wrap .appli-box .icon03 {
  width: 65px;
  margin: auto;
}

.appli-flow .appli-wrap .appli-box .icon04 {
  width: 65px;
  margin: auto;
}

.appli-flow .appli-wrap .appli-box:last-child::after {
  display: none;
}

.job nav {
  margin: 5vw 0 7vw;
}

.job nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.job nav ul li {
  margin-right: 7vw;
  font-size: 1.5rem;
}

@media only screen and (min-width: 1025px) {
  .job nav ul li {
    font-size: 1.8rem;
  }
}

.job nav ul li a {
  position: relative;
  bottom: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
}

.job nav ul li a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  color: #ccc;
  margin-left: .5rem;
}

.job nav ul li a::before {
  position: absolute;
  bottom: 0px;
  left: 50%;
  content: '';
  width: 0%;
  height: 1px;
  background-color: #000000;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.job nav ul li a:hover::before {
  width: 100%;
}

.job #num01, .job #num02, .job #num03, .job #num04, .job #num05, .job #num06 {
  margin-top: -100px;
  padding-top: 100px;
  display: block;
}

.job .job-info {
  margin-bottom: 10vw;
}

.job .job-info .job-tit {
  margin: 3vw 0;
}

.job .job-info .job-tit dt {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: .3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

@media only screen and (min-width: 1025px) {
  .job .job-info .job-tit dt {
    font-size: 2.5rem;
  }
}

.job .job-info .job-tit dt::before {
  margin-right: 2rem;
}

.job .job-info .job-tit.sell dt::before {
  content: "";
  display: block;
  background: url(images/job01.svg) center top/cover no-repeat;
  width: 45px;
  height: 20px;
}

@media only screen and (min-width: 1025px) {
  .job .job-info .job-tit.sell dt::before {
    width: 70px;
    height: 30px;
  }
}

.job .job-info .job-tit.seibi dt::before {
  content: "";
  display: block;
  background: url(images/job02.svg) center top/cover no-repeat;
  width: 25px;
  height: 25px;
}

@media only screen and (min-width: 1025px) {
  .job .job-info .job-tit.seibi dt::before {
    width: 50px;
    height: 50px;
  }
}

.job .job-info .job-tit.ec dt::before {
  content: "";
  display: block;
  background: url(images/job03.svg) center top/cover no-repeat;
  width: 25px;
  height: 25px;
}

@media only screen and (min-width: 1025px) {
  .job .job-info .job-tit.ec dt::before {
    width: 40px;
    height: 40px;
  }
}

.job .job-info .job-tit.oroshi dt::before {
  content: "";
  display: block;
  background: url(images/job04.svg) center top/cover no-repeat;
  width: 25px;
  height: 25px;
}

@media only screen and (min-width: 1025px) {
  .job .job-info .job-tit.oroshi dt::before {
    width: 40px;
    height: 40px;
  }
}

.job .card-wrap .card {
  border: 1px solid #ccc;
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
}

@media only screen and (min-width: 1025px) {
  .job .card-wrap .card {
    padding: 40px;
  }
}

.job .card-wrap .card::before {
  content: "";
  display: block;
  background: url(images/sankaku.svg) center top/cover no-repeat;
  position: absolute;
  left: -1px;
  top: -1px;
  width: 25px;
  height: 25px;
}

.job .card-wrap .card::after {
  content: "";
  display: block;
  background: url(images/sankaku02.svg) center top/cover no-repeat;
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 25px;
  height: 25px;
}

.job .card-wrap .card dl dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.job .card-wrap .card dl dt::before {
  content: "■";
  display: block;
  font-size: 1rem;
  color: #ccc;
  margin-right: .7rem;
  position: relative;
  top: 3px;
}

.staff-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1200px;
  margin: 5vw auto 0;
}

@media only screen and (min-width: 1025px) {
  .staff-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-flow: row-reverse;
    -ms-flex-flow: row-reverse;
    flex-flow: row-reverse;
  }
}

.staff-box .pic {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  width: 70%;
  margin: auto;
}

@media only screen and (min-width: 1025px) {
  .staff-box .pic {
    -webkit-box-ordinal-group: inherit;
    -webkit-order: inherit;
    -ms-flex-order: inherit;
    order: inherit;
    width: 30%;
    margin: 0;
  }
}

.staff-box .pic img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  aspect-ratio: 1.7 / 2;
  width: 100%;
  height: auto;
  -webkit-transition: .5s;
  transition: .5s;
}

.staff-box .detail {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

@media only screen and (min-width: 1025px) {
  .staff-box .detail {
    -webkit-box-ordinal-group: inherit;
    -webkit-order: inherit;
    -ms-flex-order: inherit;
    order: inherit;
    width: 65%;
  }
}

.staff-box .label {
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 20px;
}

@media only screen and (min-width: 1025px) {
  .staff-box .label {
    font-size: 2rem;
  }
}

.staff-box .staff-name {
  margin: 30px 0;
}

.staff-box .staff-name dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  text-align: center;
}

@media only screen and (min-width: 1025px) {
  .staff-box .staff-name dl {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
  }
}

.staff-box .staff-name dl dt {
  font-size: 1.8rem;
  font-weight: 500;
}

@media only screen and (min-width: 1025px) {
  .staff-box .staff-name dl dt {
    font-size: 2.3rem;
  }
}

.staff-box .staff-name dl dt .en {
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  font-size: 1.3rem;
}

.staff-box .staff-name dl dd {
  margin-top: 10px;
}

@media only screen and (min-width: 1025px) {
  .staff-box .staff-name dl dd {
    margin-left: 5rem;
    margin-top: 0;
  }
}

.staff-box .en {
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  color: #999;
  text-align: center;
  margin-top: 10px;
}

@media only screen and (min-width: 1025px) {
  .staff-box .en {
    text-align: left;
    margin-top: 0;
  }
}

.staff-box .comment {
  background: #f2f2f2;
}

.staff-box .comment dl dt {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

@media only screen and (min-width: 1025px) {
  .staff-box .comment dl dt {
    font-size: 1.9rem;
  }
}

.staff-box .comment dl dt::after {
  content: "";
  display: block;
  width: 300px;
  height: 1px;
  background: #FFFFFF;
  position: relative;
}

.staff-box .comment dl dt span {
  display: inline-block;
  padding: 15px 0 15px 30px;
}

@media only screen and (min-width: 1025px) {
  .staff-box .comment dl dt span {
    padding: 15px 0 15px 50px;
  }
}

.staff-box .comment dl dd {
  padding: 0px 30px 30px;
}

.job-content {
  background: #f2f2f2;
  padding: 30px;
  max-width: 1200px;
  margin: 5vw auto;
}

@media only screen and (min-width: 1025px) {
  .job-content {
    padding: 40px 50px;
  }
}

.job-content .tit {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: .3rem;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (min-width: 1025px) {
  .job-content .tit {
    font-size: 2.8rem;
  }
}

.job-content .tit::before {
  content: "";
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 7px;
  height: 25px;
  background: #ccc;
  margin-right: 2rem;
}

.job-content dl {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

@media only screen and (min-width: 1025px) {
  .job-content dl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.job-content dl dt {
  width: 200px;
  margin-bottom: 5px;
  font-weight: 600;
}

@media only screen and (min-width: 1025px) {
  .job-content dl dt {
    margin-bottom: 0;
  }
}

.job-content dl dd {
  width: 100%;
}

/*------------------------------------------------------------
.notes_required
------------------------------------------------------------*/
.checkBtn_area {
  text-align: center;
}

.notes_required {
  margin-top: 3vw;
}

.notes_required label {
  color: #333;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  cursor: pointer;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  position: relative;
}

.notes_required label .label_inner {
  padding-left: .5rem;
  font-size: 1.4rem;
}

@media only screen and (min-width: 1025px) {
  .notes_required label .label_inner {
    font-size: 1.6rem;
  }
}

.notes_required label .label_inner:before {
  content: "";
  width: 20px;
  height: 20px;
  background: #ccc;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -9px;
}

.notes_required._check label .label_inner:after {
  content: '';
  width: 20px;
  height: 12px;
  border-top: 6px solid #000;
  border-right: 6px solid #000;
  -webkit-transform: rotate(130deg);
  transform: rotate(130deg);
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -.9em;
}

.notes_required label input {
  position: relative;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .notes_required label:hover {
    border-bottom: 2px solid #000;
  }
}

@media screen and (max-width: 1024px) {
  .notes_required label {
    font-size: 18px;
  }
  .notes_required .check_text_b {
    font-size: 14px;
  }
  .notes_required label .label_inner {
    padding-left: 10px;
  }
  .notes_required label .label_inner:before {
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
  .notes_required._check label .label_inner:after {
    width: 16px;
    height: 8px;
    margin-top: -0.8em;
  }
}

@media screen and (max-width: 767px) {
  .notes_required {
    padding: 20px 15px;
  }
  .notes_required .check_text_b {
    font-size: 13px;
  }
  .notes_required._check label .label_inner:after {
    width: 16px;
    height: 8px;
    margin-top: -0.8em;
  }
}

.satei-flow {
  background: url(images/bg_satei.jpg) center top/cover no-repeat;
  color: #FFFFFF;
  margin-top: 10vw;
}

.satei-flow .base {
  padding: 50px 0;
}

@media only screen and (min-width: 1025px) {
  .satei-flow .base {
    padding: 5vw 0;
  }
}

.satei-flow .tit-wrap span {
  color: #FFFFFF;
}

.satei-flow .satei-wrap {
  margin-top: 7vw;
}

@media only screen and (min-width: 1025px) {
  .satei-flow .satei-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.satei-flow .satei-box {
  border: 1px solid #FFFFFF;
  -webkit-transform: skew(-5deg);
  transform: skew(-5deg);
  position: relative;
  padding: 20px 0 40px;
  margin-bottom: 60px;
}

@media only screen and (min-width: 1025px) {
  .satei-flow .satei-box {
    width: 30%;
    margin-bottom: 0;
  }
}

.satei-flow .satei-box::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background: #000;
  position: absolute;
  left: 50%;
  margin-left: -40px;
  top: -1px;
}

.satei-flow .satei-box:last-child {
  margin-bottom: 0;
}

.satei-flow .satei-box .satei-box-inner {
  -webkit-transform: skew(5deg);
  transform: skew(5deg);
}

.satei-flow .satei-box .satei-box-inner .num {
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  font-size: 3.5rem;
  -webkit-transform: skew(-5deg);
  transform: skew(-5deg);
  line-height: 1.5;
  left: 50%;
  margin-left: -15px;
  position: absolute;
  top: -90px;
  display: block;
}

.satei-flow .satei-box .satei-box-inner .num span {
  position: relative;
}

.satei-flow .satei-box .satei-box-inner .num::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #FFFFFF;
  position: relative;
  margin-left: 7px;
}

.satei-flow .satei-box .tit {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin: 30px 0;
}

.satei-flow .satei-box .icon {
  width: 70px;
  margin: auto;
}

.satei-flow .satei-box .icon.icon01 {
  width: 80px;
}

.satei-flow .satei-box .icon.icon02 {
  width: 80px;
}

.satei-flow .satei-box .icon.icon03 {
  width: 60px;
}

.satei-flow .txt-satei {
  margin-top: 20px;
  display: block;
}

@media only screen and (min-width: 1025px) {
  .satei-flow .txt-satei {
    margin-top: 50px;
  }
}

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

買取査定

---------------------------------- */
.faq-inner {
  margin-top: 40px;
}

.faq-inner dl {
  position: relative;
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
  padding-top: 30px;
}

.faq-inner dl dt {
  font-size: 1.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  line-height: 1.4;
  padding-right: 50px;
  position: relative;
}

@media only screen and (min-width: 1025px) {
  .faq-inner dl dt {
    font-size: 2rem;
  }
}

.faq-inner dl dt::before {
  content: "Q";
  display: block;
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  font-size: 2.5rem;
  color: #aaa;
  margin-right: 1rem;
  line-height: 0;
  margin-top: 12px;
}

@media only screen and (min-width: 1025px) {
  .faq-inner dl dt::before {
    font-size: 4.5rem;
    margin-right: 2rem;
  }
}

.faq-inner dl dt::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f067";
  color: #aaa;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -15px;
}

.faq-inner dl dt.ac::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f068";
}

.faq-inner dl dd {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 33px;
  padding: 10px 0;
}

@media only screen and (min-width: 1025px) {
  .faq-inner dl dd {
    margin-left: 60px;
  }
}

.pic-send {
  margin-bottom: 30px;
}

.pic-send .tit {
  margin-bottom: 10px;
}

.pic-send span {
  display: block;
  margin-top: 5px;
  font-size: 1.1rem;
}

@media only screen and (min-width: 1025px) {
  .pic-send span {
    font-size: 1.3rem;
  }
}

.buy-form {
  margin: 100px 0 0;
}

@media only screen and (min-width: 1025px) {
  .buy-form .syurui .wpcf7-form-control {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.ap-year input, .ap-km input {
  width: 100px !important;
}

.btn-submit-ap {
  text-align: center;
}

.btn-submit-ap .wpcf7-submit {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 20px 65px;
  border: 1px solid #ccc;
  border-radius: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  width: auto;
  -webkit-transition: .5s;
  transition: .5s;
  background: none;
}

.btn-submit-ap .wpcf7-submit:hover {
  background: #000000;
  color: #FFFFFF;
}

.achieve-app .btn-base {
  margin-top: 0;
}

.achieve-app .achieve-list {
  margin-top: 50px;
}

.achieve-app .achieve-list h5 {
  margin: 10px 0;
}

.achieve-app .achieve-list dl {
  border-bottom: none !important;
  border-top: 1px dotted #ccc;
  padding-top: 15px;
}

@media only screen and (min-width: 1025px) {
  .syuuri .wpcf7-radio {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

/*------------------------------------------------------------
.btnArea
------------------------------------------------------------*/
.btnArea {
  position: relative;
  text-align: center;
  margin-top: 3vw;
}

input.wpcf7-form-control.wpcf7-text.p-postal-code {
  width: 150px;
}

.btn-submit p {
  display: inline;
}

.btn-submit {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 30px;
  border: 1px solid #ccc;
  border-radius: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  width: auto;
  -webkit-transition: .5s;
  transition: .5s;
  background: #ddd;
  font-family: "Noto Sans JP", serif;
  color: #FFFFFF;
  width: 250px;
  border-radius: 100px;
}

.btn-submit::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  margin-left: 1.5rem;
  color: #ddd;
  position: absolute;
  right: 20px;
}

._check .btn-submit {
  background: #FFFFFF;
}

.btnArea input[type="submit"] {
  pointer-events: none;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
}

.page-id-21 .btnArea input[type="submit"] {
  pointer-events: inherit;
}

.btnArea input[type="submit"] {
  cursor: default;
  z-index: +1;
  outline: none;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: none;
}

.btnArea._check input[type="submit"] {
  pointer-events: inherit;
  cursor: pointer;
}

a.btn_one {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 15px 30px;
  border: 1px solid #ccc;
  border-radius: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  width: auto;
  -webkit-transition: .5s;
  transition: .5s;
  background: #acacac;
  font-family: "Noto Sans JP", serif;
  color: #FFFFFF;
}

._check a.btn_one._a {
  background: #FFFFFF;
  color: #000000;
}

a.btn_one._a:hover {
  background: #000;
  opacity: 1;
  color: #FFFFFF;
}

.effect {
  opacity: 0;
}

.effect.is-active {
  -webkit-animation-name: fadeup;
  animation-name: fadeup;
  /*--アニメーション名--*/
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  /*--時間--*/
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  /*--3秒後に開始--*/
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  /*--状態指定--*/
}

.effect-01 {
  opacity: 0;
}

.effect-01.is-active {
  -webkit-animation-name: fadeup;
  animation-name: fadeup;
  /*--アニメーション名--*/
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  /*--時間--*/
  -webkit-animation-delay: .1s;
  animation-delay: .1s;
  /*--3秒後に開始--*/
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  /*--状態指定--*/
}

.effect-02 {
  opacity: 0;
}

.effect-02.is-active {
  -webkit-animation-name: fadeup;
  animation-name: fadeup;
  /*--アニメーション名--*/
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  /*--時間--*/
  -webkit-animation-delay: .2s;
  animation-delay: .2s;
  /*--3秒後に開始--*/
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  /*--状態指定--*/
}

.effect-03 {
  opacity: 0;
}

.effect-03.is-active {
  -webkit-animation-name: fadeup;
  animation-name: fadeup;
  /*--アニメーション名--*/
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  /*--時間--*/
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
  /*--3秒後に開始--*/
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  /*--状態指定--*/
}

.effect-04 {
  opacity: 0;
}

.effect-04.is-active {
  -webkit-animation-name: fadeup;
  animation-name: fadeup;
  /*--アニメーション名--*/
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  /*--時間--*/
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
  /*--3秒後に開始--*/
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  /*--状態指定--*/
}

.effect-05 {
  opacity: 0;
}

.effect-05.is-active {
  -webkit-animation-name: fadeup;
  animation-name: fadeup;
  /*--アニメーション名--*/
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  /*--時間--*/
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
  /*--3秒後に開始--*/
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  /*--状態指定--*/
}

.effect-06 {
  opacity: 0;
}

.effect-06.is-active {
  -webkit-animation-name: fadeup;
  animation-name: fadeup;
  /*--アニメーション名--*/
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  /*--時間--*/
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
  /*--3秒後に開始--*/
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  /*--状態指定--*/
}

@-webkit-keyframes fadeup {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fadeup {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

/*========= ハンバーガーメニュー ===============*/
.openbtn {
  position: fixed;
  z-index: 99999;
  /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 70px;
  height: 65px;
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
}

@media only screen and (min-width: 1025px) {
  .openbtn {
    top: 37px;
    right: 15px;
  }
}

@media only screen and (min-width: 1025px) {
  .openbtn {
    display: none;
  }
}

.openbtn.active {
  position: fixed;
}

.openbtn.fixed {
  top: 18px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #000000;
  width: 55%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 27px;
}

.openbtn span:nth-of-type(3) {
  top: 39px;
}

.openbtn.active span:nth-of-type(1) {
  /*top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-35deg);
    width: 60%;
        background-color: $black;*/
  display: inline-block;
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #000000;
  width: 55%;
  -webkit-transform: translateY(6px) rotate(-40deg);
  transform: translateY(6px) rotate(-40deg);
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  /*top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(35deg);
    width: 60%;
    background-color: $black;*/
  display: inline-block;
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #000000;
  width: 55%;
  -webkit-transform: translateY(-18px) rotate(40deg);
  transform: translateY(-18px) rotate(40deg);
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 9999;
  /*ナビのスタート位置と形状*/
  top: 0;
  -webkit-transform: translate(100vw, 0);
  transform: translate(100vw, 0);
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background: white;
  /*動き*/
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: .5;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  -webkit-transform: translate(0px, 0);
  transform: translate(0px, 0);
  opacity: 1;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 0;
}

#g-nav.panelactive #g-nav-list a {
  -webkit-transition: .5s;
  transition: .5s;
}

#g-nav.panelactive #g-nav-list a:hover {
  opacity: .5;
}

#g-nav-list .nav-logo {
  position: absolute;
  left: 30px;
  top: 20px;
}

#g-nav-list .nav-logo img {
  width: 120px;
}

#g-nav-list nav {
  width: 80%;
  margin: 100px auto 0;
}

#g-nav-list nav ul li {
  margin-bottom: 30px;
  font-size: 1.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-weight: 600;
}

#g-nav-list nav ul li::before {
  content: "－";
  display: block;
  color: #aaa;
  margin-right: .5rem;
  line-height: 1;
}

#g-nav-list nav ul li span {
  color: #ccc;
  display: block;
  font-size: 1.3rem;
}

#g-nav-list nav ul li.company {
  font-weight: 400;
}

#g-nav-list nav ul li.access {
  font-weight: 400;
}

#g-nav-list nav ul li.pra {
  font-weight: 400;
}

#g-nav-list nav ul li.fin {
  font-weight: 400;
}

#g-nav-list .sns {
  width: 80%;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

#g-nav-list .sns li {
  margin-right: 20px;
  font-size: 2.2rem;
}

#g-nav-list .contact {
  width: 80%;
  margin: 50px auto 0;
}

#g-nav-list .contact ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (min-width: 1025px) {
  #g-nav-list .contact {
    display: inherit;
  }
}

#g-nav-list .contact ul li {
  width: 48%;
}

#g-nav-list .contact ul li a {
  border-radius: 30px;
  padding: 10px 10px;
  display: block;
  -webkit-transition: .3s;
  transition: .3s;
  text-align: center;
  font-size: 1.5rem;
}

#g-nav-list .contact ul li:nth-child(1) a {
  background: #000;
  color: #FFFFFF;
}

#g-nav-list .contact ul li:nth-child(1) a:hover {
  background: #888;
}

#g-nav-list .contact ul li:nth-child(2) a {
  border: 1px solid #ccc;
}

#g-nav-list .contact ul li:nth-child(2) a:hover {
  background: #888;
  color: #FFFFFF;
}

.contact-confirm {
  max-width: 800px;
  margin: auto;
}

.contact-confirm .btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact-confirm .btn-wrap li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50%;
}

@media only screen and (min-width: 1025px) {
  .contact-confirm .btn-wrap li {
    width: auto;
  }
}

.contact-confirm .wpcf7-previous {
  border: none;
  background: none;
  border: 1px solid #000;
  padding: 15px 30px;
  border-radius: 100px;
  margin-right: 3rem;
  -webkit-transition: .5s;
  transition: .5s;
}

.contact-confirm .wpcf7-previous:hover {
  background: #000000;
  color: #FFFFFF;
}

.contact-confirm .wpcf7-submit {
  border: none;
  background: none;
  border: 1px solid #000000;
  padding: 15px 30px;
  border-radius: 100px;
  -webkit-transition: .5s;
  transition: .5s;
}

.contact-confirm .wpcf7-submit:hover {
  background: #000000;
  color: #FFFFFF;
}

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

共通

---------------------------------- */
.grecaptcha-badge {
  display: none !important;
}

.page-id-19 .grecaptcha-badge, .page-id-21 .grecaptcha-badge {
  display: inherit !important;
}

.en-sp {
  width: 90%;
  margin: auto;
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  color: #aaa;
  margin-bottom: 5px;
  font-size: 1.5rem;
}

.pc-view {
  display: none !important;
}

@media only screen and (min-width: 1025px) {
  .pc-view {
    display: inherit !important;
  }
}

@media only screen and (min-width: 1025px) {
  .sp-view {
    display: none !important;
  }
}

.btn-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ready {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 80px;
}

@media only screen and (min-width: 1025px) {
  .ready {
    margin-top: 200px;
    font-size: 1.8rem;
  }
}
