@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Myanmar:wght@500;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@100;300;400;500;700;900&display=swap");
.wrap {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column; }

/*
 * header.css
 *
 */
/* !header
---------------------------------------------------------- */
.header-top {
  display: none;
  background: #000;
  padding: 1rem 5%;
  position: relative;
  z-index: 20; }
  .header-top h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    color: #FFE400; }
  .header-top ul {
    list-style: none;
    display: none; }
    .header-top ul li {
      font-family: 'Noto Sans Myanmar', sans-serif;
      font-size: 1.2rem;
      font-weight: bold;
      color: #fff; }
.header-bottom {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  z-index: 20; }
.header-nav {
  width: 100%;
  position: relative;
  background: #fff;
  z-index: 20; }
  .header-nav .logo {
    width: 45%;
    max-width: 23.2rem;
    padding: 1rem 5%;
    background: url("../../img/short_tire_marks.png") top center no-repeat;
    background-size: contain; }
.header-nav-en {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff; }
.header-nav-ja {
  font-family: 'Noto Sans Myanmar', sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: #C7AD1B; }
.header-tel {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: #FFE400;
  padding: 1rem 5%; }
  .header-tel p {
    text-align: center;
    font-weight: bold; }
  .header-tel-attention {
    font-family: 'Noto Sans Myanmar', sans-serif;
    font-size: 1.2rem;
    padding-right: 1rem;
    transform: translateY(25%); }
  .header-tel-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    letter-spacing: .01rem;
    font-weight: 700; }

.pcnav {
  display: none; }

/* スマホナビの設定 */
.spnav {
  z-index: 10;
  text-align: center;
  transition: all 0.6s;
  width: 100%;
  height: 100%;
  opacity: 0;
  /*　リストを非表示　*/
  position: fixed;
  top: 0;
  visibility: hidden;
  /* ナビボタンを押すと表示 */ }
  .spnav.active {
    opacity: 1;
    visibility: visible; }
  .spnav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: -1; }
    .spnav ul li:not(:last-child) {
      padding-bottom: 2rem; }
    .spnav ul li a {
      display: inline-block;
      color: #fff;
      text-align: center;
      line-height: 1.5;
      -webkit-font-smoothing: subpixel-antialiased;
      -moz-osx-font-smoothing: auto; }

.header-nav.m_fixed {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10; }

/* スマホナビボタンの設定 */
.navbt {
  display: block;
  position: absolute;
  right: 6%;
  top: calc( 50% - 2rem );
  width: 3rem;
  height: 2.7rem;
  cursor: pointer;
  z-index: 3;
  text-align: center; }
  .navbt span {
    display: block;
    position: absolute;
    width: 3rem;
    border-bottom: solid 3px #000;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 0.6rem; }
    .navbt span:nth-child(1) {
      top: 0.9rem; }
    .navbt span:nth-child(2) {
      top: 1.8rem; }
    .navbt span:nth-child(3) {
      top: 2.7rem; }
  .navbt.active span {
    border-color: #000; }
    .navbt.active span:nth-child(1) {
      /* ナビボタンが押された時の処理 */
      /* ラインを45度傾ける */
      top: 1.8rem;
      left: 0.6rem;
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      transform: rotate(-45deg); }
    .navbt.active span:nth-child(2) {
      /* 真ん中のラインは透明にする */
      opacity: 0; }
    .navbt.active span:nth-child(3) {
      /* ラインを45度傾ける */
      top: 1.8rem;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      transform: rotate(45deg); }

@media (min-width: 768px) {
  .header-top ul {
    display: flex; } }
@media (min-width: 1200px) {
  .header-top {
    display: flex;
    justify-content: space-between;
    padding: 1rem 3rem; }
    .header-top ul {
      display: flex; }
      .header-top ul li {
        font-size: 1.3rem; }
  .header-bottom {
    flex-direction: row; }
  .header-nav {
    display: flex; }
    .header-nav .logo {
      margin-right: auto;
      padding-left: 2rem; }
  .header-nav-en {
    color: #000; }
  .header-tel {
    flex-direction: column;
    justify-content: center;
    width: 30rem; }
    .header-tel-attention {
      font-size: 1.5rem;
      padding-right: 0;
      transform: translateY(0%); }
    .header-tel-number {
      font-size: 2.6rem; }

  .spnav {
    display: none; }

  .pcnav {
    opacity: 1;
    /*　リストを非表示　*/
    position: static;
    visibility: visible;
    width: 100%;
    height: auto;
    display: flex; }
    .pcnav ul {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: flex-end;
      background: none;
      padding: 0rem 5%;
      width: 100%;
      height: 100%; }
      .pcnav ul li {
        padding-bottom: 0rem;
        border-top: none; }
        .pcnav ul li:not(:last-child) {
          padding-bottom: 0rem;
          margin-right: 4rem; }
        .pcnav ul li a {
          padding: 0;
          text-align: center;
          line-height: 1.5;
          -webkit-font-smoothing: subpixel-antialiased;
          -moz-osx-font-smoothing: auto; }
          .pcnav ul li a:hover p {
            opacity: 0.7; }

  .navbt {
    /* スマホナビボタンの設定 */
    display: none; }

  .header-nav.m_fixed {
    position: relative; } }
/*
 * style.css
 *
 */
/* !contents
---------------------------------------------------------- */
.contents {
  flex: 1; }

.top-img {
  position: relative; }
  .top-img .img-sp img,
  .top-img .img-pc img {
    width: 100%; }
  .top-img .img-pc {
    display: none; }
  .top-img .img img {
    width: 100%;
    height: 20rem;
    object-fit: cover; }
  .top-img h2 {
    position: absolute;
    width: 90%;
    max-width: 100rem;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: #fff;
    font-size: 2rem;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    letter-spacing: 1rem;
    line-height: 1.5; }
    .top-img h2 span {
      display: block; }
  .top-img .page-title-left {
    text-align: left; }
  .top-img .page-title-right {
    text-align: right; }

.top-news {
  position: absolute;
  bottom: 10%;
  left: 5%;
  display: flex;
  width: 90%;
  max-width: 100rem; }
  .top-news h3 {
    background: #FFE400;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    padding: 1rem;
    display: flex;
    align-items: center;
    animation: flash 2s linear infinite; }
@keyframes flash {
  0%,100% {
    opacity: 1; }
  50% {
    opacity: 0; } }
  .top-news .news-list {
    width: 100%;
    background: #000;
    opacity: 0.8;
    color: #fff;
    font-weight: bold;
    padding: 1rem 2rem; }
    .top-news .news-list div:not(.top-news .news-list div:last-child) {
      border-bottom: .1rem solid #707070;
      padding-bottom: 1rem;
      margin-bottom: 1rem; }
    .top-news .news-list div .news-date {
      display: flex;
      align-items: center;
      padding-bottom: 1rem; }
    .top-news .news-list div .news-title {
      font-family: 'Noto Sans Myanmar', sans-serif; }
    .top-news .news-list div a {
      color: #fff; }

.about {
  background: url("../../img/bg_tire_marks.png") 0 0 no-repeat;
  background-size: 200% auto;
  background-position: top right;
  padding: 10rem 0; }
  .about .breadcrumb {
    display: flex;
    list-style: none; }
  .about .main-title {
    width: 80%;
    max-width: 43rem;
    margin: 0 auto;
    position: relative; }
    .about .main-title .welcome {
      position: absolute;
      top: -6rem;
      left: -4rem;
      z-index: -1; }
  .about-container {
    width: 90%;
    max-width: 120rem;
    margin: 4rem auto;
    background: url("../../img/bg_about@2x.png") 0 0 no-repeat;
    background-size: contain;
    background-position: left center; }
  .about-caption {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    line-height: 1.5;
    padding-bottom: 4rem; }
  .about-text {
    width: 90%;
    margin: 0 auto;
    font-family: 'Noto Sans Myanmar', sans-serif;
    text-align: center;
    line-height: 1.5; }
    .about-text .pc {
      display: none; }
  .about .row {
    display: block; }
  .about-button {
    width: 90%;
    max-width: 50rem;
    margin: 0 auto; }

.shop {
  background: url("../../img/bg_tire_marks_left.png") 0 0 no-repeat;
  background-size: 200% auto;
  background-position: top left;
  background-color: #000;
  padding: 10rem 0; }
  .shop .main-title {
    width: 80%;
    max-width: 42.4rem;
    margin: 0 auto;
    padding-bottom: 4rem;
    position: relative;
    z-index: 1; }
    .shop .main-title .welcome {
      position: absolute;
      top: -6rem;
      left: -4rem;
      z-index: -1; }
  .shop-info {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 4rem; }
    .shop-info-img {
      margin: 0 auto;
      padding-bottom: 4rem; }
      .shop-info-img img {
        width: 100%; }
    .shop-info-list div {
      font-family: 'Noto Sans Myanmar', sans-serif;
      font-weight: bold;
      padding: 1rem 0; }
      .shop-info-list div:last-child {
        border-bottom: .1rem dotted #fff; }
      .shop-info-list div dt, .shop-info-list div dd {
        padding: 1.3rem 0 1rem;
        text-align: center; }
      .shop-info-list div dt {
        background: #FFE400; }
      .shop-info-list div dd {
        color: #fff; }
  .shop-button {
    width: 90%;
    max-width: 50rem;
    margin: 0 auto; }

.special {
  padding: 10rem 0; }
  .special .main-title {
    width: 80%;
    max-width: 30rem;
    margin: 0 auto;
    padding-bottom: 4rem;
    position: relative;
    z-index: 1; }
  .special .banner {
    width: 90%;
    max-width: 34rem;
    margin: 0 auto;
    text-align: center; }
  .special .studless-banner {
    margin-bottom: 4rem; }
  .special .pc {
    display: none; }

.partner {
  background-color: #DDD;
  padding: 10rem 0; }
  .partner .main-title {
    width: 80%;
    max-width: 30rem;
    margin: 0 auto;
    padding-bottom: 4rem;
    position: relative;
    z-index: 1; }
  .partner-list {
    width: 90%;
    max-width: 100rem;
    margin: 0 auto; }
  .partner-container {
    font-family: 'Noto Sans Myanmar', sans-serif;
    width: 100%;
    max-width: 45rem;
    margin: 0 auto; }
    .partner-container:not(.partner-container:last-child) {
      padding-bottom: 2rem; }
    .partner-container dt {
      padding-bottom: 2rem; }
  .partner-caption {
    font-weight: bold; }
  .partner-text {
    font-size: 1.2rem;
    line-height: 1.5; }

.top-blog {
  background: url("../../img/bg_tire_marks.png") 0 0 no-repeat;
  background-size: 200% auto;
  background-position: top right;
  padding: 10rem 0; }
  .top-blog .main-title {
    width: 80%;
    max-width: 30rem;
    margin: 0 auto;
    padding-bottom: 4rem;
    position: relative;
    z-index: 1; }
  .top-blog-list {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 4rem; }
    .top-blog-list div {
      display: flex;
      align-items: flex-start;
      flex-direction: column;
      font-weight: bold;
      border-top: .1rem solid #707070;
      padding-bottom: 1rem; }
      .top-blog-list div:last-child {
        border-bottom: .1rem solid #707070; }
      .top-blog-list div dt {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
        text-align: center; }
        .top-blog-list div dt::after {
          content: "";
          display: inline-block;
          width: 100%;
          height: .1rem;
          margin: 1rem auto 0;
          background: #C7AD1B; }
      .top-blog-list div dd {
        text-align: left; }
        .top-blog-list div dd .caategory {
          display: block;
          font-size: 1.2rem;
          color: #707070;
          padding-bottom: 1rem; }
          .top-blog-list div dd .caategory span:not(:last-child)::after {
            content: ",";
            display: inline-block;
            padding: 0 .5rem; }
        .top-blog-list div dd a {
          color: #000; }
  .top-blog-button {
    width: 90%;
    max-width: 50rem;
    margin: 0 auto; }

.wp-pagenavi {
  text-align: center; }

.resreve-web, .resreve-tel {
  background: url("../../img/bg_resreve_web@2x.png") top right no-repeat;
  background-size: contain;
  padding: 10rem 0; }
  .resreve-web p, .resreve-tel p {
    text-align: center;
    line-height: 1.5;
    padding-bottom: 4rem;
    font-family: 'Noto Sans Myanmar', sans-serif;
    font-weight: bold; }
    .resreve-web p span, .resreve-tel p span {
      display: block; }
.resreve-web {
  background-color: #000; }
  .resreve-web p {
    color: #ffff; }
.resreve-tel {
  background-color: #FFE400; }
.resreve-button {
  width: 90%;
  max-width: 40rem;
  margin: 0 auto;
  text-align: center; }

@media (min-width: 768px) {
  .top-img .img-sp {
    display: none; }
  .top-img .img-pc {
    display: block; }
  .top-img h1 span {
    display: inline-block; }

  .top-news h3 {
    padding: 1rem 3rem; }

  .about,
  .shop,
  .top-blog {
    background-size: 160% auto; }

  .top-blog-img {
    padding-bottom: 0;
    margin-right: auto;
    width: 47rem; }
  .top-blog-list div {
    align-items: center;
    flex-direction: row;
    padding: 1rem; }
    .top-blog-list div dt {
      align-items: center;
      width: 14rem;
      padding: 1rem 0;
      flex-direction: row;
      font-family: 'Oswald', sans-serif; }
      .top-blog-list div dt::after {
        width: .1rem;
        padding: 2rem 0;
        margin: 0 2rem; }
    .top-blog-list div dd {
      text-align: left;
      font-family: 'Noto Sans Myanmar', sans-serif;
      font-weight: bold; }
      .top-blog-list div dd a span {
        font-size: 1.2rem;
        padding-bottom: 1rem; }
  .top-blog-button {
    width: 50rem; }

  .special .banner {
    max-width: 100rem; }
  .special .sp {
    display: none; }
  .special .pc {
    display: block; }

  .resreve {
    display: flex; }
    .resreve-web, .resreve-tel {
      width: 50%;
      padding: 10rem 0  6rem; } }
@media (min-width: 1200px) {
  .top-news {
    position: absolute;
    bottom: 10%;
    left: 50%;
    margin-left: -50rem; }
    .top-news h3 {
      width: 8rem;
      padding: 1rem 0;
      justify-content: center;
      font-size: 1.8rem; }
    .top-news .news-list {
      width: 92rem; }
      .top-news .news-list div {
        display: flex;
        align-items: center; }
        .top-news .news-list div .news-date {
          font-size: 1.8rem;
          padding-bottom: 0; }
          .top-news .news-list div .news-date::after {
            content: "";
            display: inline-block;
            width: .1rem;
            padding: 2rem 0;
            margin: 0 2rem;
            background: #FFE400; }
        .top-news .news-list div .news-title {
          padding-top: .4rem; }

  .about {
    background-size: contain; }
    .about-container {
      padding: 4rem 0; }
    .about-caption {
      font-size: 3rem;
      padding-bottom: 4rem; }
    .about-text {
      width: 100%; }
      .about-text .pc {
        display: block;
        font-size: 1.8rem;
        line-height: 30px; }
    .about-button {
      width: 50rem; }

  .shop {
    background-size: contain; }
    .shop-info {
      width: 100rem;
      display: flex; }
      .shop-info-img {
        padding-bottom: 0;
        margin-right: auto;
        width: 44rem; }
      .shop-info-list {
        width: 50rem; }
        .shop-info-list div {
          display: flex;
          align-items: center;
          padding: 1rem 0;
          margin: auto;
          border-top: .1rem dotted #fff; }
          .shop-info-list div dt {
            padding: .6rem 0;
            margin-right: 5%;
            width: 25%; }
          .shop-info-list div dd {
            width: 70%;
            padding: 0; }
    .shop-button {
      width: 50rem; }

  .partner-list {
    display: flex;
    justify-content: space-between; }
  .partner-container {
    margin: 0; }
    .partner-container:not(.partner-container:last-child) {
      padding-bottom: 0; }

  .top-blog {
    background-size: contain; }
    .top-blog-img {
      padding-bottom: 0;
      margin-right: auto;
      width: 47rem; }
    .top-blog-list {
      width: 100rem;
      padding-bottom: 4rem; }
      .top-blog-list div dt {
        padding: 1rem 0;
        flex-direction: row;
        font-family: 'Oswald', sans-serif; }
        .top-blog-list div dt::after {
          width: .1rem;
          padding: 2rem 0;
          margin: 0 2rem; }
    .top-blog-button {
      width: 50rem; }

  .resreve-button {
    width: 40rem; } }
/*
 * shop.css
 *
 */
.breadcrumb {
  display: flex;
  list-style: none;
  width: 90%;
  max-width: 100rem;
  margin: 0 auto;
  font-family: 'Noto Sans Myanmar', sans-serif;
  font-weight: bold;
  font-size: 1.2rem; }

.staff {
  background: url("../../img/bg_tire_marks.png") 0 0 no-repeat;
  background-size: 200% auto;
  background-position: top right;
  position: relative;
  padding: 10rem 0; }
  .staff .tire-marks {
    position: absolute;
    top: 0;
    right: 0; }
  .staff .main-title {
    width: 80%;
    max-width: 50.5rem;
    margin: 0 auto;
    padding-bottom: 4rem;
    position: relative; }
    .staff .main-title .welcome {
      position: absolute;
      top: -6rem;
      left: -4rem;
      z-index: -1; }
  .staff-container {
    width: 90%;
    max-width: 100rem;
    margin: 0 auto; }
  .staff-img {
    width: 90%;
    max-width: 47rem;
    margin: 0 auto;
    padding-bottom: 2rem; }
  .staff-inner {
    width: 90%;
    max-width: 48rem;
    margin: 0 auto;
    padding-bottom: 2rem; }
  .staff-caption {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    line-height: 1.5;
    padding-bottom: 4rem; }
  .staff-text {
    font-family: 'Noto Sans Myanmar', sans-serif;
    line-height: 1.5;
    padding-bottom: 4rem; }
  .staff .row {
    display: block; }
  .staff-permission {
    padding: 2rem 0;
    background: #000; }
    .staff-permission p {
      font-family: 'Noto Sans Myanmar', sans-serif;
      color: #fff;
      font-weight: 800;
      text-align: center;
      line-height: 1.5; }
      .staff-permission p span {
        display: inline-block; }

.shop-info-middle {
  width: 90%;
  max-width: 100rem;
  margin: 0 auto;
  padding-bottom: 4rem; }
  .shop-info-middle .main-text {
    width: 27.4rem;
    font-size: 3rem;
    font-weight: bold;
    color: #fff; }
  .shop-info-middle .text-img {
    width: 19.6rem;
    padding-bottom: 1rem; }
  .shop-info-middle .line {
    display: none;
    height: 0.1rem;
    background: #FFE400;
    padding: 0 1rem; }
  .shop-info-middle .sub-text {
    width: 3.4rem;
    color: #FFE400;
    font-family: 'Noto Sans Myanmar', sans-serif;
    font-weight: bold; }
  .shop-info-middle .shop-inner {
    max-width: 48rem;
    margin: 0 auto;
    padding-top: 4rem; }
    .shop-info-middle .shop-inner .img {
      padding-bottom: 2rem; }
    .shop-info-middle .shop-inner dd {
      color: #fff; }
    .shop-info-middle .shop-inner .name {
      font-family: 'Noto Sans Myanmar', sans-serif;
      font-weight: bold;
      padding-bottom: 2rem; }
    .shop-info-middle .shop-inner .text {
      font-family: 'Noto Sans Myanmar', sans-serif;
      line-height: 1.5; }
.shop-info-bottom {
  width: 90%;
  max-width: 100rem;
  margin: 0 auto;
  padding-bottom: 4rem; }
  .shop-info-bottom .main-text {
    width: 27.4rem;
    font-size: 3rem;
    font-weight: bold;
    color: #fff; }
  .shop-info-bottom .text-img {
    width: 19.6rem;
    padding-bottom: 1rem; }
  .shop-info-bottom .line {
    display: none;
    height: 0.1rem;
    background: #FFE400;
    padding: 0 1rem; }
  .shop-info-bottom .sub-text {
    width: 3.4rem;
    color: #FFE400;
    font-family: 'Noto Sans Myanmar', sans-serif;
    font-weight: bold; }
  .shop-info-bottom .shop-inner {
    max-width: 31rem;
    margin: 0 auto;
    padding-top: 4rem; }
    .shop-info-bottom .shop-inner .img {
      padding-bottom: 2rem; }
    .shop-info-bottom .shop-inner dd {
      color: #fff; }
    .shop-info-bottom .shop-inner .name {
      font-family: 'Noto Sans Myanmar', sans-serif;
      font-weight: bold;
      padding-bottom: 2rem; }
    .shop-info-bottom .shop-inner .text {
      font-family: 'Noto Sans Myanmar', sans-serif;
      line-height: 1.5; }

@media (min-width: 768px) {
  .staff {
    background-size: 140% auto; } }
@media (min-width: 1200px) {
  .staff {
    background-size: contain; }
    .staff-container {
      display: flex; }
    .staff-img {
      padding-bottom: 0; }
    .staff-caption {
      font-size: 2.2rem; }

  .shop-info-middle .separation, .shop-info-bottom .separation {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .shop-info-middle .text-img, .shop-info-bottom .text-img {
    padding-bottom: 0; }
  .shop-info-middle .line, .shop-info-bottom .line {
    display: inline-flex;
    width: 68rem; }
  .shop-info-middle .shop-container, .shop-info-bottom .shop-container {
    display: flex;
    justify-content: space-between; }
  .shop-info-middle .shop-inner, .shop-info-bottom .shop-inner {
    margin: 0; }
    .shop-info-middle .shop-inner .name, .shop-info-bottom .shop-inner .name {
      font-size: 1.7rem; } }
/*
 * service.css
 *
 */
.service {
  background: url("../../img/bg_tire_marks.png") 0 0 no-repeat;
  background-size: 200% auto;
  background-position: top right;
  position: relative;
  padding: 10rem 0; }
  .service .tire-marks {
    position: absolute;
    top: 0;
    right: 0; }
  .service .main-title {
    width: 80%;
    max-width: 55.8rem;
    margin: 0 auto;
    padding-bottom: 4rem;
    position: relative; }
    .service .main-title .welcome {
      position: absolute;
      top: -6rem;
      left: -4rem;
      z-index: -1; }
  .service-intro {
    width: 90%;
    max-width: 100rem;
    margin: 0 auto;
    padding-bottom: 4rem;
    text-align: center; }
    .service-intro .title {
      font-family: 'Noto Serif JP', serif;
      font-size: 2.2rem;
      padding-bottom: 2rem; }
    .service-intro .text {
      font-family: 'Noto Sans Myanmar', sans-serif;
      line-height: 1.5; }
    .service-intro .row {
      display: block; }
  .service-container {
    width: 90%;
    max-width: 100rem;
    margin: 0 auto; }
  .service .carry,
  .service .direct {
    width: 100%;
    max-width: 47rem;
    padding-bottom: 2rem; }
    .service .carry-title-top,
    .service .direct-title-top {
      text-align: center;
      padding-top: 2rem;
      padding-bottom: 1rem; }
    .service .carry-title-bottom,
    .service .direct-title-bottom {
      font-family: 'Noto Serif JP', serif;
      font-size: 2rem;
      font-weight: bold;
      text-align: center;
      padding-bottom: 3rem; }
    .service .carry .intro,
    .service .direct .intro {
      font-family: 'Noto Sans Myanmar', sans-serif;
      font-size: 1.5rem;
      font-weight: bold;
      width: 90%;
      max-width: 36rem;
      margin: 0 auto; }
    .service .carry-list,
    .service .direct-list {
      width: 90%;
      max-width: 36rem;
      margin: 0 auto; }
    .service .carry .row,
    .service .direct .row {
      display: flex;
      align-items: center;
      padding-bottom: 4rem; }
    .service .carry .img,
    .service .direct .img {
      width: 9.8rem;
      margin-right: auto; }
    .service .carry .text,
    .service .direct .text {
      font-family: 'Noto Sans Myanmar', sans-serif;
      font-size: 1.5rem;
      font-weight: bold;
      width: 14rem;
      line-height: 1.5; }
  .service .carry {
    margin: 0 auto 4rem;
    background: #DDDDDD; }
    .service .carry .intro {
      padding-bottom: 4rem; }
  .service .direct {
    margin: 0 auto;
    background: #000; }
    .service .direct-title-bottom {
      color: #fff; }
    .service .direct .intro {
      padding-bottom: 3rem;
      color: #fff;
      line-height: 1.5; }
    .service .direct .text {
      color: #fff; }

.working {
  background: url("../../img/bg_tire_marks_left.png") 0 0 no-repeat;
  background-size: 200% auto;
  background-position: top left;
  position: relative;
  background-color: #000;
  padding: 10rem 0; }
  .working .tire-marks {
    position: absolute;
    top: 0;
    left: 0; }
  .working .main-title {
    width: 90%;
    max-width: 44.2rem;
    margin: 0 auto;
    padding-bottom: 4rem;
    position: relative;
    z-index: 1; }
    .working .main-title .welcome {
      position: absolute;
      top: -6rem;
      left: -4rem;
      z-index: -1; }
  .working-info-top, .working-info-middle, .working-info-bottom {
    width: 90%;
    max-width: 100rem;
    margin: 0 auto;
    padding-bottom: 4rem; }
    .working-info-top .text-img, .working-info-middle .text-img, .working-info-bottom .text-img {
      padding-bottom: 1rem; }
    .working-info-top .line, .working-info-middle .line, .working-info-bottom .line {
      display: none; }
    .working-info-top .sub-text, .working-info-middle .sub-text, .working-info-bottom .sub-text {
      color: #FFE400;
      font-family: 'Noto Sans Myanmar', sans-serif;
      font-weight: bold;
      width: auto; }
    .working-info-top .working-inner, .working-info-middle .working-inner, .working-info-bottom .working-inner {
      max-width: 49rem;
      margin: 0 auto;
      padding-top: 4rem; }
      .working-info-top .working-inner .img, .working-info-middle .working-inner .img, .working-info-bottom .working-inner .img {
        max-width: 48rem;
        padding-bottom: 2rem; }
      .working-info-top .working-inner dd, .working-info-middle .working-inner dd, .working-info-bottom .working-inner dd {
        color: #fff; }
      .working-info-top .working-inner .name, .working-info-middle .working-inner .name, .working-info-bottom .working-inner .name {
        padding-bottom: 2rem; }
      .working-info-top .working-inner .text, .working-info-middle .working-inner .text, .working-info-bottom .working-inner .text {
        font-family: 'Noto Sans Myanmar', sans-serif;
        font-weight: bold;
        line-height: 1.5; }
  .working-info-top .text-img {
    width: 23.6rem; }
  .working-info-middle .text-img {
    width: 29rem; }
  .working-info-bottom .text-img {
    width: 21.9rem; }

@media (min-width: 321px) {
  .service .carry .text,
  .service .direct .text {
    width: 60%; } }
@media (min-width: 768px) {
  .service,
  .working {
    background-size: 140% auto; } }
@media (min-width: 1200px) {
  .service,
  .working {
    background-size: contain; }

  .service-container {
    display: flex;
    justify-content: space-between; }
  .service .carry-title-top,
  .service .direct-title-top {
    margin-top: 0rem; }
  .service .carry .text,
  .service .direct .text {
    width: 25rem; }
  .service .carry {
    padding-bottom: 0;
    margin-bottom: 0; }

  .working .working-container {
    display: flex;
    justify-content: space-between; }
  .working-info-top .separation, .working-info-middle .separation, .working-info-bottom .separation {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .working-info-top .text-img, .working-info-middle .text-img, .working-info-bottom .text-img {
    padding-bottom: 0; }
  .working-info-top .line, .working-info-middle .line, .working-info-bottom .line {
    display: inline-flex;
    height: 0.1rem;
    background: #FFE400;
    padding: 0 1rem; }
  .working-info-top .working-inner, .working-info-middle .working-inner, .working-info-bottom .working-inner {
    margin: 0; }
  .working-info-top .line {
    width: 60%; }
  .working-info-middle .line {
    width: 55%; }
  .working-info-bottom .line {
    width: 65%; } }
/*
 * blog.css
 *
 */
.page-blog {
  background: url("../../img/bg_tire_marks.png") 0 0 no-repeat;
  background-size: 200% auto;
  background-position: top right;
  padding: 10rem 0; }
  .page-blog .main-title {
    width: 80%;
    max-width: 30rem;
    margin: 0 auto;
    padding-bottom: 4rem;
    position: relative;
    z-index: 1; }
  .page-blog .blog-container {
    width: 90%;
    max-width: 100rem;
    margin: 0 auto;
    padding-bottom: 4rem; }
  .page-blog .blog-inner {
    padding-bottom: 4rem; }
  .page-blog-list {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 4rem; }
    .page-blog-list div {
      display: flex;
      align-items: flex-start;
      flex-direction: column;
      font-weight: bold;
      border-top: .1rem solid #707070;
      padding-bottom: 1rem; }
      .page-blog-list div:last-child {
        border-bottom: .1rem solid #707070; }
      .page-blog-list div dt {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
        text-align: center; }
        .page-blog-list div dt::after {
          content: "";
          display: inline-block;
          width: 100%;
          height: .1rem;
          margin: 1rem 0 0;
          background: #C7AD1B; }
      .page-blog-list div dd {
        text-align: left; }
        .page-blog-list div dd .caategory {
          display: block;
          font-size: 1.2rem;
          color: #707070;
          padding-bottom: 1rem; }
          .page-blog-list div dd .caategory span:not(:last-child)::after {
            content: ",";
            display: inline-block;
            padding: 0 .5rem; }
        .page-blog-list div dd a {
          color: #000; }
  .page-blog-button {
    width: 90%;
    max-width: 50rem;
    margin: 0 auto; }
  .page-blog .single-container {
    width: 90%;
    max-width: 100rem;
    margin: 0 auto;
    padding-bottom: 4rem; }
    .page-blog .single-container .single-inner {
      width: 100%;
      border-top: .1rem solid #707070;
      margin: 0 auto;
      padding: 2rem 0 4rem; }
      .page-blog .single-container .single-inner .single-date {
        font-family: 'Oswald', sans-serif;
        font-weight: bold;
        font-size: 2rem; }
      .page-blog .single-container .single-inner .caategory {
        font-family: 'Noto Sans Myanmar', sans-serif;
        font-weight: bold;
        font-size: 1.2rem;
        color: #707070;
        padding: 1rem 0; }
        .page-blog .single-container .single-inner .caategory span:not(:last-child)::after {
          content: ",";
          display: inline-block;
          padding: 0 .5rem; }
      .page-blog .single-container .single-inner .single-title {
        padding-bottom: 1rem;
        font-family: 'Oswald', sans-serif;
        font-weight: bold;
        font-size: 2rem; }
      .page-blog .single-container .single-inner .single-content {
        border-bottom: .1rem solid #707070;
        padding-top: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        font-family: 'Noto Sans Myanmar', sans-serif;
        line-height: 1.5;
        color: #707070; }
        .page-blog .single-container .single-inner .single-content div {
          width: 100% !important; }
          .page-blog .single-container .single-inner .single-content div p {
            text-align: center;
            padding-top: 1rem; }
      .page-blog .single-container .single-inner .screen-reader-text {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0; }
      .page-blog .single-container .single-inner .bt-container {
        display: flex;
        justify-content: center;
        list-style: none; }
        .page-blog .single-container .single-inner .bt-container li {
          font-size: 1.8rem; }
          .page-blog .single-container .single-inner .bt-container li a {
            color: #000; }
            .page-blog .single-container .single-inner .bt-container li a:hover {
              opacity: 0.8; }
        .page-blog .single-container .single-inner .bt-container .next {
          border-right: .2rem solid #707070;
          padding-right: 1rem;
          margin-right: 1rem; }
        .page-blog .single-container .single-inner .bt-container .back {
          border-left: .2rem solid #707070;
          padding-left: 1rem;
          margin-left: 1rem; }
  .page-blog .side-menu {
    width: 100%;
    margin: 0 auto; }
    .page-blog .side-menu .title {
      background: #FFE400;
      font-family: 'Oswald', sans-serif;
      font-size: 2rem;
      padding: 2rem 1rem; }
      .page-blog .side-menu .title span {
        font-family: 'Noto Sans Myanmar', sans-serif;
        font-weight: bold;
        font-size: 1rem; }
    .page-blog .side-menu ul {
      list-style: none;
      background: #DDDDDD;
      padding: 3rem 1rem;
      font-family: 'Noto Sans Myanmar', sans-serif;
      font-size: 1.2rem; }
      .page-blog .side-menu ul li {
        line-height: 3; }
        .page-blog .side-menu ul li:hover {
          background: #FFE43E; }
        .page-blog .side-menu ul li a {
          color: #000; }
          .page-blog .side-menu ul li a span {
            padding-left: .8rem; }

/* pagenation */
.pagenation {
  display: flex;
  justify-content: center; }
  .pagenation a {
    color: #000; }
    .pagenation a:hover {
      opacity: 0.7; }
  .pagenation .page-numbers {
    font-weight: bold; }
    .pagenation .page-numbers:not(:last-child) {
      padding-right: 1rem; }

@media (min-width: 768px) {
  .page-blog {
    background-size: 160% auto; }
    .page-blog-img {
      padding-bottom: 0;
      margin-right: auto;
      width: 47rem; }
    .page-blog-list {
      width: 100%; }
      .page-blog-list div {
        align-items: center;
        flex-direction: row;
        padding: 1rem; }
        .page-blog-list div dt {
          align-items: center;
          width: 14rem;
          padding: 1rem 0;
          flex-direction: row;
          font-family: 'Oswald', sans-serif; }
          .page-blog-list div dt::after {
            width: .1rem;
            padding: 2rem 0;
            margin: 0 2rem; }
        .page-blog-list div dd {
          text-align: left;
          font-family: 'Noto Sans Myanmar', sans-serif;
          font-weight: bold; }
          .page-blog-list div dd a span {
            font-size: 1.2rem;
            padding-bottom: 1rem; }
    .page-blog-button {
      width: 50rem; }
    .page-blog .side-menu {
      width: 100%; } }
@media (min-width: 1200px) {
  .page-blog {
    background-size: contain; }
    .page-blog .blog-container {
      display: flex;
      justify-content: space-around;
      margin: 0 auto;
      padding-bottom: 4rem; }
    .page-blog .blog-inner {
      padding-bottom: 0; }
    .page-blog-list {
      width: 72rem;
      padding-bottom: 4rem; }
      .page-blog-list div dt {
        padding: 1rem 0;
        flex-direction: row;
        font-family: 'Oswald', sans-serif; }
        .page-blog-list div dt::after {
          width: .1rem;
          padding: 2rem 0;
          margin: 0 2rem; }
    .page-blog-button {
      width: 50rem; }
    .page-blog .single-container {
      display: flex;
      justify-content: space-around; }
      .page-blog .single-container .single-inner {
        width: 72rem;
        padding: 2rem 0; }
    .page-blog .side-menu {
      width: 24rem; } }
/*
 * news.css
 *
 */
.page-news {
  background: url("../../img/bg_tire_marks.png") 0 0 no-repeat;
  background-size: 200% auto;
  background-position: top right;
  padding: 2rem 0; }
  .page-news .main-title {
    width: 80%;
    max-width: 23.6rem;
    margin: 0 auto;
    padding-bottom: 4rem;
    position: relative;
    z-index: 1; }
  .page-news .news-container {
    width: 90%;
    max-width: 100rem;
    margin: 0 auto;
    padding-bottom: 4rem; }
  .page-news .news-inner {
    padding-bottom: 4rem; }
  .page-news-list {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 4rem; }
    .page-news-list div {
      display: flex;
      align-items: flex-start;
      flex-direction: column;
      font-weight: bold;
      border-top: .1rem solid #707070;
      padding-bottom: 1rem; }
      .page-news-list div:last-child {
        border-bottom: .1rem solid #707070; }
      .page-news-list div dt {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
        text-align: center; }
        .page-news-list div dt::after {
          content: "";
          display: inline-block;
          width: 100%;
          height: .1rem;
          margin: 1rem 0 0;
          background: #C7AD1B; }
      .page-news-list div dd {
        text-align: left; }
        .page-news-list div dd .caategory {
          display: block;
          font-size: 1.2rem;
          color: #707070;
          padding-bottom: 1rem; }
          .page-news-list div dd .caategory span:not(:last-child)::after {
            content: ",";
            display: inline-block;
            padding: 0 .5rem; }
        .page-news-list div dd a {
          color: #000; }
  .page-news-button {
    width: 90%;
    max-width: 50rem;
    margin: 0 auto; }
  .page-news .single-container {
    width: 90%;
    max-width: 100rem;
    margin: 0 auto;
    padding-bottom: 4rem; }
    .page-news .single-container .single-inner {
      width: 100%;
      border-top: .1rem solid #707070;
      margin: 0 auto;
      padding: 2rem 0 4rem; }
      .page-news .single-container .single-inner .single-date {
        font-family: 'Oswald', sans-serif;
        font-weight: bold;
        font-size: 2rem; }
      .page-news .single-container .single-inner .caategory {
        font-family: 'Noto Sans Myanmar', sans-serif;
        font-weight: bold;
        font-size: 1.2rem;
        color: #707070;
        padding: 1rem 0; }
        .page-news .single-container .single-inner .caategory span:not(:last-child)::after {
          content: ",";
          display: inline-block;
          padding: 0 .5rem; }
      .page-news .single-container .single-inner .single-title {
        padding-bottom: 1rem;
        font-family: 'Oswald', sans-serif;
        font-weight: bold;
        font-size: 2rem; }
      .page-news .single-container .single-inner .single-content {
        border-bottom: .1rem solid #707070;
        padding-top: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        font-family: 'Noto Sans Myanmar', sans-serif;
        line-height: 1.5;
        color: #707070; }
      .page-news .single-container .single-inner .screen-reader-text {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0; }
      .page-news .single-container .single-inner .bt-container {
        display: flex;
        justify-content: center;
        list-style: none; }
        .page-news .single-container .single-inner .bt-container li {
          font-size: 1.8rem; }
          .page-news .single-container .single-inner .bt-container li a {
            color: #000; }
            .page-news .single-container .single-inner .bt-container li a:hover {
              opacity: 0.8; }
        .page-news .single-container .single-inner .bt-container .next {
          border-right: .2rem solid #707070;
          padding-right: 1rem;
          margin-right: 1rem; }
        .page-news .single-container .single-inner .bt-container .back {
          border-left: .2rem solid #707070;
          padding-left: 1rem;
          margin-left: 1rem; }
  .page-news .side-menu {
    width: 100%;
    margin: 0 auto; }
    .page-news .side-menu .title {
      background: #FFE400;
      font-family: 'Oswald', sans-serif;
      font-size: 2rem;
      padding: 2rem 1rem; }
      .page-news .side-menu .title span {
        font-family: 'Noto Sans Myanmar', sans-serif;
        font-weight: bold;
        font-size: 1rem; }
    .page-news .side-menu ul {
      list-style: none;
      background: #DDDDDD;
      padding: 3rem 1rem;
      font-family: 'Noto Sans Myanmar', sans-serif;
      font-size: 1.2rem; }
      .page-news .side-menu ul li {
        line-height: 3; }
        .page-news .side-menu ul li:hover {
          background: #FFE43E; }
        .page-news .side-menu ul li a {
          color: #000; }
          .page-news .side-menu ul li a span {
            padding-left: .8rem; }

/* pagenation */
.pagenation {
  display: flex;
  justify-content: center; }
  .pagenation a {
    color: #000; }
    .pagenation a:hover {
      opacity: 0.7; }
  .pagenation .page-numbers {
    font-weight: bold; }
    .pagenation .page-numbers:not(:last-child) {
      padding-right: 1rem; }

@media (min-width: 768px) {
  .page-news {
    background-size: 160% auto; }
    .page-news-img {
      padding-bottom: 0;
      margin-right: auto;
      width: 47rem; }
    .page-news-list {
      width: 100%; }
      .page-news-list div {
        align-items: center;
        flex-direction: row;
        padding: 1rem; }
        .page-news-list div dt {
          align-items: center;
          width: 14rem;
          padding: 1rem 0;
          flex-direction: row;
          font-family: 'Oswald', sans-serif; }
          .page-news-list div dt::after {
            width: .1rem;
            padding: 2rem 0;
            margin: 0 2rem; }
        .page-news-list div dd {
          text-align: left;
          font-family: 'Noto Sans Myanmar', sans-serif;
          font-weight: bold; }
          .page-news-list div dd a span {
            font-size: 1.2rem;
            padding-bottom: 1rem; }
    .page-news-button {
      width: 50rem; }
    .page-news .side-menu {
      width: 100%; } }
@media (min-width: 1200px) {
  .page-news {
    background-size: contain; }
    .page-news .news-container {
      display: flex;
      justify-content: space-around;
      margin: 0 auto;
      padding-bottom: 4rem; }
    .page-news .news-inner {
      padding-bottom: 0; }
    .page-news-list {
      width: 72rem;
      padding-bottom: 4rem; }
      .page-news-list div dt {
        padding: 1rem 0;
        flex-direction: row;
        font-family: 'Oswald', sans-serif; }
        .page-news-list div dt::after {
          width: .1rem;
          padding: 2rem 0;
          margin: 0 2rem; }
      .page-news-list div dd {
        padding-top: .4rem; }
    .page-news-button {
      width: 50rem; }
    .page-news .single-container {
      display: flex;
      justify-content: space-around; }
      .page-news .single-container .single-inner {
        width: 72rem;
        padding: 2rem 0; }
    .page-news .side-menu {
      width: 24rem; } }
/*
 * price.css
 *
 */
.price {
  background: url("../../img/bg_tire_marks.png") 0 0 no-repeat;
  background-size: 200% auto;
  background-position: top right;
  padding: 10rem 0; }
  .price .main-title {
    width: 80%;
    max-width: 50rem;
    margin: 0 auto;
    padding-bottom: 4rem;
    position: relative; }
    .price .main-title .welcome {
      position: absolute;
      top: -6rem;
      left: -4rem;
      z-index: -1; }
  .price-intro {
    width: 90%;
    max-width: 100rem;
    margin: 0 auto;
    padding-bottom: 4rem;
    text-align: center; }
    .price-intro .title {
      font-family: 'Noto Serif JP', serif;
      font-size: 2.2rem;
      padding-bottom: 2rem; }
    .price-intro .text {
      font-family: 'Noto Sans Myanmar', sans-serif;
      line-height: 1.5; }
    .price-intro .row {
      display: block; }
  .price-container {
    width: 90%;
    max-width: 100rem;
    margin: 0 auto; }
  .price .text-img {
    max-width: 31.2rem;
    padding-bottom: 1rem; }
  .price .line {
    display: none; }
  .price .sub-text {
    width: auto;
    font-family: 'Noto Sans Myanmar', sans-serif;
    font-weight: bold;
    color: #C7AD1B; }
  .price .table {
    max-width: 100rem;
    margin: 0 auto;
    padding: 2rem 0; }
  .price .img-pc {
    display: none; }
  .price .caution {
    font-family: 'Noto Sans Myanmar', sans-serif;
    line-height: 1.5; }

.other {
  background: url("../../img/bg_tire_marks_left.png") 0 0 no-repeat;
  background-size: 200% auto;
  background-position: top left;
  background-color: #000;
  padding: 4rem 0; }
  .other-intro {
    width: 90%;
    max-width: 100rem;
    margin: 0 auto;
    padding-bottom: 4rem;
    text-align: center;
    color: #fff; }
    .other-intro .title {
      font-family: 'Noto Serif JP', serif;
      font-size: 2.2rem;
      padding-bottom: 2rem; }
    .other-intro .text {
      font-family: 'Noto Sans Myanmar', sans-serif;
      line-height: 1.5; }
    .other-intro .row {
      display: block; }
  .other-info {
    width: 90%;
    max-width: 100rem;
    margin: 0 auto;
    padding-bottom: 4rem; }
    .other-info .main-text {
      width: 27.4rem;
      font-size: 3rem;
      font-weight: bold;
      color: #fff; }
    .other-info .text-img {
      width: 16.2rem;
      padding-bottom: 1rem; }
    .other-info .line {
      display: none;
      width: 20%;
      max-width: 66rem;
      height: 0.1rem;
      background: #C7AD1B;
      padding: 0 1rem; }
    .other-info .sub-text {
      width: auto;
      font-family: 'Noto Sans Myanmar', sans-serif;
      font-weight: bold;
      color: #FFE400; }
    .other-info .table {
      padding-top: 2rem; }
    .other-info .img-pc {
      display: none; }
  .other .precautions {
    width: 90%;
    max-width: 100rem;
    margin: 0 auto;
    font-family: 'Noto Sans Myanmar', sans-serif;
    color: #fff;
    line-height: 1.5; }
    .other .precautions .row {
      display: block; }

@media (min-width: 768px) {
  .price,
  .other {
    background-size: 140% auto; }
    .price .img-sp,
    .other .img-sp {
      display: none; }
    .price .img-pc,
    .other .img-pc {
      display: block; } }
@media (min-width: 1200px) {
  .price {
    background-size: contain; }
    .price .text-img {
      padding-bottom: 0; }
    .price .separation {
      display: flex;
      justify-content: space-between;
      align-items: center; }
    .price .line {
      display: inline-flex;
      width: 48rem;
      height: 0.1rem;
      background: #C7AD1B; }

  .other {
    background-size: contain; }
    .other-info .text-img {
      padding-bottom: 0; }
    .other-info .separation {
      display: flex;
      justify-content: space-between;
      align-items: center; }
    .other-info .line {
      display: inline-flex;
      width: 68rem; }
    .other-info .other-container {
      display: flex;
      justify-content: space-between; }
    .other-info .other-inner {
      padding-top: 4rem; } }
/*
 * reservation.css
 *
 */
.reservation {
  background: url("../../img/bg_tire_marks.png") 0 0 no-repeat;
  background-size: 200% auto;
  background-position: top right;
  padding: 10rem 0 10rem; }
  .reservation .tire-marks {
    position: absolute;
    top: 0;
    right: 0; }
  .reservation .main-title {
    width: 80%;
    max-width: 48.2rem;
    margin: 0 auto;
    padding-bottom: 4rem;
    position: relative; }
    .reservation .main-title .welcome {
      position: absolute;
      top: -6rem;
      left: -4rem;
      z-index: -1; }
  .reservation-intro {
    width: 90%;
    max-width: 100rem;
    margin: 0 auto;
    padding-bottom: 4rem;
    text-align: center; }
    .reservation-intro .title {
      font-family: 'Noto Serif JP', serif;
      font-size: 2.2rem;
      padding-bottom: 2rem; }
    .reservation-intro .text {
      font-family: 'Noto Sans Myanmar', sans-serif;
      line-height: 1.5; }
    .reservation-intro .row {
      display: block; }
  .reservation form {
    max-width: 100rem;
    margin: 0 auto 6rem;
    padding: 6rem 0;
    background: #BCBCBC; }
  .reservation label {
    width: 70%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 4rem;
    font-weight: bold; }
    .reservation label span {
      width: 100%; }
      .reservation label span input {
        padding: 1rem 0; }
      .reservation label span input[type="text"], .reservation label span input[type="checkbox"], .reservation label span input[type="number"], .reservation label span textarea {
        border: none; }
    .reservation label .item-name {
      text-align: center;
      margin-bottom: 2rem; }
  .reservation .mwform-tel-field {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .reservation .mwform-tel-field input[type="text"] {
      width: 25%;
      margin-left: 0; }
  .reservation .exchange {
    display: flex;
    justify-content: flex-start; }
    .reservation .exchange span {
      width: 100%;
      margin-left: 0rem; }
    .reservation .exchange .front {
      padding-top: 2rem; }
    .reservation .exchange .rear {
      padding-bottom: 0; }
    .reservation .exchange inout {
      width: 100%; }
  .reservation .caution {
    justify-content: center;
    line-height: 1.5; }
  .reservation .count {
    margin-bottom: 1rem; }
  .reservation input, .reservation textarea {
    margin-top: 1rem; }
  .reservation input[type="tel"],
  .reservation input[type="text"],
  .reservation input[type="email"],
  .reservation textarea {
    display: block;
    width: 100%; }
  .reservation .checkbox span {
    margin: 0; }
  .reservation .checkbox .item-name {
    margin-bottom: 2rem; }
  .reservation input[type="checkbox"] {
    display: block;
    width: 3rem;
    height: 3rem;
    margin: 2rem auto 0; }
  .reservation .mwform-checkbox-field-text {
    display: none; }
  .reservation button[type="submit"] {
    font-family: 'Noto Sans Myanmar', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    display: block;
    border: none;
    background: #FFE43E;
    width: 90%;
    max-width: 45rem;
    margin: 0 auto 4rem;
    padding: 2rem 0 2rem 4rem;
    letter-spacing: 1rem;
    text-align: center; }
    .reservation button[type="submit"]:hover {
      opacity: .8; }
  .reservation input[type="submit"] {
    font-family: 'Noto Sans Myanmar', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    display: block;
    border: none;
    background: #FFE43E;
    width: 90%;
    max-width: 45rem;
    margin: 0 auto;
    padding: 2rem 0 2rem 4rem;
    letter-spacing: 1rem;
    text-align: center; }
    .reservation input[type="submit"]:hover {
      opacity: .8; }
  .reservation-container {
    width: 90%;
    max-width: 100rem;
    margin: 0 auto; }
    .reservation-container .caution {
      font-family: 'Noto Serif JP', serif;
      font-size: 2.2rem;
      text-align: center;
      padding-bottom: 2rem; }
    .reservation-container .img {
      max-width: 50rem;
      margin: 0 auto; }

@media (min-width: 768px) {
  .reservation {
    background-size: 140% auto; } }
@media (min-width: 1200px) {
  .reservation {
    background-size: contain; }
    .reservation label {
      width: 100%;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center; }
      .reservation label span {
        width: 43rem;
        margin-left: 2rem; }
      .reservation label .item-name {
        width: 24rem;
        text-align: right;
        margin-right: 2rem;
        margin-bottom: 0; }
    .reservation input[type="tel"],
    .reservation input[type="text"],
    .reservation input[type="email"],
    .reservation textarea {
      width: 45rem; }
    .reservation .exchange,
    .reservation .caution,
    .reservation .front {
      padding-right: 0rem; }
    .reservation .exchange {
      align-items: center;
      padding-left: 2rem;
      width: 100%; }
      .reservation .exchange label {
        width: 22rem;
        justify-content: flex-start;
        margin: 0 0 0 0; }
      .reservation .exchange input[type="text"] {
        width: 13rem; }
      .reservation .exchange .front,
      .reservation .exchange .rear {
        padding: 0; }
        .reservation .exchange .front span,
        .reservation .exchange .rear span {
          width: 14rem;
          margin-left: 1rem; }
        .reservation .exchange .front .item-name,
        .reservation .exchange .rear .item-name {
          width: auto;
          margin-left: 0;
          margin-right: 1rem;
          margin-bottom: 0; }
    .reservation .item-count input[type="number"] {
      width: 20rem;
      margin: 0 2rem 0 0; }
    .reservation input, .reservation textarea {
      margin-top: 0; }
    .reservation .remarks,
    .reservation .privacy {
      align-items: flex-start; }
    .reservation .checkbox label {
      padding-bottom: 2rem; }
    .reservation .checkbox .item-name {
      margin-left: 2rem;
      margin-bottom: 0; }
    .reservation input[type="checkbox"] {
      display: inline-block;
      width: 3rem;
      height: 3rem;
      margin: 2rem 0 0; } }
/*
 * studless.css
 *
 */
.top-img .page-title-studless {
  color: #000; }

.studless {
  padding: 2rem 0; }
  .studless .main-title {
    width: 90%;
    max-width: 75rem;
    margin: 0 auto;
    padding: 4rem 0; }
  .studless-img {
    width: 100%;
    max-width: 100rem;
    margin: 0 auto;
    padding-bottom: 5rem; }
  .studless-img-middle {
    width: 90%;
    max-width: 100rem;
    margin: 0 auto;
    padding-bottom: 5rem; }
  .studless-box {
    width: 90%;
    max-width: 100rem;
    margin: 0 auto;
    padding-bottom: 6rem; }
    .studless-box .sub-title-container {
      display: flex;
      align-items: center;
      padding-bottom: 4.5rem; }
      .studless-box .sub-title-container .tire-icon {
        width: 4rem;
        padding-right: 0.5rem; }
      .studless-box .sub-title-container .sub-title {
        width: calc( 100% - 4.5rem );
        font-family: "Noto Sans JP", serif;
        font-size: 1.8rem;
        font-weight: bold;
        letter-spacing: 0.3rem; }
    .studless-box .studless-text-container .studless-text {
      font-family: "Noto Sans JP", serif;
      font-size: 1.8rem;
      font-weight: normal;
      line-height: 1.5;
      letter-spacing: 0.3rem; }
      .studless-box .studless-text-container .studless-text:not(.studless-box .studless-text-container .studless-text:last-child) {
        padding-bottom: 4rem; }
      .studless-box .studless-text-container .studless-text .underline {
        position: relative;
        display: inline-block; }
        .studless-box .studless-text-container .studless-text .underline::after {
          content: "";
          display: block;
          width: 100%;
          height: .8rem;
          background: #7CEBFF;
          position: absolute;
          bottom: 0.2rem;
          left: 0;
          z-index: -1; }
      .studless-box .studless-text-container .studless-text .studless-point {
        display: block;
        font-size: 2rem;
        font-weight: bold;
        color: #00239A; }
      .studless-box .studless-text-container .studless-text .row {
        display: block; }
    .studless-box .studless-company-container .studless-company-intro {
      font-family: "Noto Sans JP", serif;
      font-size: 1.8rem;
      font-weight: normal;
      line-height: 1.5;
      letter-spacing: 0.3rem;
      padding-bottom: 4rem; }
    .studless-box .studless-company-container .studless-company-inner:not(.studless-box .studless-company-container .studless-company-inner:last-child) {
      padding-bottom: 4rem; }
    .studless-box .studless-company-container .studless-company-inner .studless-company-img {
      padding-bottom: 4rem; }
      .studless-box .studless-company-container .studless-company-inner .studless-company-img img {
        width: 100%; }
    .studless-box .studless-company-container .studless-company-inner .studless-company-block .studless-company-name {
      font-size: 2.5rem;
      font-weight: bold;
      color: #00239A;
      padding-bottom: 2rem; }
    .studless-box .studless-company-container .studless-company-inner .studless-company-block .studless-company-text {
      font-family: "Noto Sans JP", serif;
      font-size: 1.8rem;
      font-weight: normal;
      line-height: 1.5;
      letter-spacing: 0.3rem; }
      .studless-box .studless-company-container .studless-company-inner .studless-company-block .studless-company-text:not(.studless-box .studless-company-container .studless-company-inner .studless-company-block .studless-company-text:last-child) {
        padding-bottom: 3rem; }
      .studless-box .studless-company-container .studless-company-inner .studless-company-block .studless-company-text .row {
        display: block; }
      .studless-box .studless-company-container .studless-company-inner .studless-company-block .studless-company-text .underline {
        position: relative;
        display: inline-block; }
        .studless-box .studless-company-container .studless-company-inner .studless-company-block .studless-company-text .underline::after {
          content: "";
          display: block;
          width: 100%;
          height: .8rem;
          background: #7CEBFF;
          position: absolute;
          bottom: 0.2rem;
          left: 0;
          z-index: -1; }
    .studless-box .studless-img-container {
      display: flex;
      padding: 4rem 0 5rem; }
      .studless-box .studless-img-container:last-child {
        padding-bottom: 0; }
  .studless .content-list-box {
    width: 90%;
    max-width: 62.6rem;
    margin: 0 auto;
    padding-bottom: 6rem; }
    .studless .content-list-box .sub-title {
      font-family: "Noto Sans JP", serif;
      font-size: 2.5rem;
      font-weight: bold;
      letter-spacing: 0.3rem;
      color: #00239A;
      text-align: center;
      padding-bottom: 3rem; }
    .studless .content-list-box .content-list {
      border: 1px solid #009DFF;
      list-style: none;
      padding: 5.3rem 4.7rem 4.4rem;
      box-sizing: border-box; }
      .studless .content-list-box .content-list li {
        font-family: "Noto Sans JP", serif;
        font-size: 1.8rem;
        font-weight: normal;
        letter-spacing: 0.3rem;
        color: #00239A;
        line-height: 2;
        position: relative;
        /*&::after{
        	content: "";
        	display: inline-block;
        	width: 100%;
        	height: .1rem;
        	background: #00239A;
        	position: absolute;
        	bottom: 0.4rem;
        	left: 0;
        }*/ }
        .studless .content-list-box .content-list li a {
          border-bottom: 1px solid #00239A;
          padding-bottom: .5rem; }

@media (min-width: 1200px) {
  .studless-box .sub-title-container .sub-title {
    font-size: 3rem; }
  .studless-box .studless-company-container .studless-company-inner {
    display: flex;
    justify-content: space-between; }
    .studless-box .studless-company-container .studless-company-inner .studless-company-img {
      width: 40rem;
      padding-bottom: 0; }
    .studless-box .studless-company-container .studless-company-inner .studless-company-block {
      width: 52rem; }
      .studless-box .studless-company-container .studless-company-inner .studless-company-block .studless-company-text:not(.studless-box .studless-company-container .studless-company-inner .studless-company-block .studless-company-text:last-child) {
        padding-bottom: 2rem; } }
/*
 * appraisal.css
 *
 */
.top-img .page-title-appraisal {
  color: #fff; }

.appraisal-point2 {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  background: #112f82;
  padding-left: 5px; }

.appraisal {
  padding: 2rem 0; }
  .appraisal .mr10 {
    margin-right: 10px; }
  .appraisal .indent {
    text-indent: 1em; }
  .appraisal .main-title {
    width: 90%;
    max-width: 75rem;
    margin: 0 auto;
    padding: 4rem 0; }
  .appraisal-img {
    width: 100%;
    max-width: 100rem;
    margin: 0 auto;
    padding-bottom: 5rem; }
  .appraisal-img-middle {
    width: 90%;
    max-width: 100rem;
    margin: 0 auto;
    padding-bottom: 5rem; }
  .appraisal-box {
    width: 90%;
    max-width: 100rem;
    margin: 0 auto;
    padding-bottom: 6rem; }
    .appraisal-box .sub-title-container {
      display: flex;
      align-items: center;
      padding-bottom: 4.5rem; }
      .appraisal-box .sub-title-container .tire-icon {
        width: 4rem;
        padding-right: 0.5rem; }
      .appraisal-box .sub-title-container .sub-title {
        width: calc( 100% - 4.5rem );
        font-family: "Noto Sans JP", serif;
        font-size: 2rem;
        font-weight: bold;
        letter-spacing: 0.3rem;
        line-height: 30px; }
    .appraisal-box .appraisal-text-container .appraisal-text {
      font-family: "Noto Sans JP", serif;
      font-size: 1.8rem;
      font-weight: normal;
      line-height: 1.5;
      letter-spacing: 0.3rem; }
      .appraisal-box .appraisal-text-container .appraisal-text:not(.appraisal-box .appraisal-text-container .appraisal-text:last-child) {
        padding-bottom: 4rem; }
      .appraisal-box .appraisal-text-container .appraisal-text .underline {
        position: relative;
        display: inline-block; }
        .appraisal-box .appraisal-text-container .appraisal-text .underline::after {
          content: "";
          display: block;
          width: 100%;
          height: .8rem;
          background: #7CEBFF;
          position: absolute;
          bottom: 0.2rem;
          left: 0;
          z-index: -1; }
      .appraisal-box .appraisal-text-container .appraisal-text .appraisal-point {
        display: block;
        font-size: 2rem;
        font-weight: bold;
        color: #00239A; }
      .appraisal-box .appraisal-text-container .appraisal-text .row {
        display: block; }
    .appraisal-box .appraisal-company-container .appraisal-company-intro {
      font-family: "Noto Sans JP", serif;
      font-size: 1.8rem;
      font-weight: normal;
      line-height: 1.5;
      letter-spacing: 0.3rem; }
    .appraisal-box .appraisal-company-container .appraisal-company-inner:not(.appraisal-box .appraisal-company-container .appraisal-company-inner:last-child) {
      padding-bottom: 4rem; }
    .appraisal-box .appraisal-company-container .appraisal-company-inner .appraisal-company-img {
      padding-bottom: 4rem; }
      .appraisal-box .appraisal-company-container .appraisal-company-inner .appraisal-company-img img {
        width: 100%; }
    .appraisal-box .appraisal-company-container .appraisal-company-inner .appraisal-company-block .appraisal-company-name {
      font-size: 2.5rem;
      font-weight: bold;
      color: #00239A;
      padding-bottom: 2rem; }
    .appraisal-box .appraisal-company-container .appraisal-company-inner .appraisal-company-block .appraisal-company-text {
      font-family: "Noto Sans JP", serif;
      font-size: 1.8rem;
      font-weight: normal;
      line-height: 1.5;
      letter-spacing: 0.3rem; }
      .appraisal-box .appraisal-company-container .appraisal-company-inner .appraisal-company-block .appraisal-company-text:not(.appraisal-box .appraisal-company-container .appraisal-company-inner .appraisal-company-block .appraisal-company-text:last-child) {
        padding-bottom: 3rem; }
      .appraisal-box .appraisal-company-container .appraisal-company-inner .appraisal-company-block .appraisal-company-text .row {
        display: block; }
      .appraisal-box .appraisal-company-container .appraisal-company-inner .appraisal-company-block .appraisal-company-text .underline {
        position: relative;
        display: inline-block; }
        .appraisal-box .appraisal-company-container .appraisal-company-inner .appraisal-company-block .appraisal-company-text .underline::after {
          content: "";
          display: block;
          width: 100%;
          height: .8rem;
          background: #7CEBFF;
          position: absolute;
          bottom: 0.2rem;
          left: 0;
          z-index: -1; }
    .appraisal-box .appraisal-img-container {
      display: flex;
      padding: 4rem 0 5rem; }
      .appraisal-box .appraisal-img-container:last-child {
        padding-bottom: 0; }
  .appraisal .content-list-box {
    width: 90%;
    max-width: 100rem;
    margin: 0 auto;
    padding-bottom: 6rem; }
    .appraisal .content-list-box .sub-title {
      font-family: "Noto Sans JP", serif;
      font-size: 2.5rem;
      font-weight: bold;
      letter-spacing: 0.3rem;
      color: #00239A;
      text-align: center;
      padding-bottom: 3rem; }
    .appraisal .content-list-box .content-list {
      border: 1px solid #00239A;
      list-style: none;
      padding: 5.3rem 4.7rem 4.4rem;
      box-sizing: border-box; }
      .appraisal .content-list-box .content-list li {
        font-family: "Noto Sans JP", serif;
        font-size: 1.8rem;
        font-weight: normal;
        letter-spacing: 0.3rem;
        color: #00239A;
        line-height: 2;
        position: relative;
        /*&::after{
        	content: "";
        	display: inline-block;
        	width: 100%;
        	height: .1rem;
        	background: #00239A;
        	position: absolute;
        	bottom: 0.4rem;
        	left: 0;
        }*/ }
        .appraisal .content-list-box .content-list li a {
          border-bottom: 1px solid #00239A;
          padding-bottom: .5rem; }

@media (min-width: 1200px) {
  .appraisal-box .sub-title-container .sub-title {
    font-size: 3rem;
    line-height: 40px; }
  .appraisal-box .appraisal-company-container .appraisal-company-inner {
    display: flex;
    justify-content: space-between; }
    .appraisal-box .appraisal-company-container .appraisal-company-inner .appraisal-company-img {
      width: 40rem;
      padding-bottom: 0; }
    .appraisal-box .appraisal-company-container .appraisal-company-inner .appraisal-company-block {
      width: 52rem; }
      .appraisal-box .appraisal-company-container .appraisal-company-inner .appraisal-company-block .appraisal-company-text:not(.appraisal-box .appraisal-company-container .appraisal-company-inner .appraisal-company-block .appraisal-company-text:last-child) {
        padding-bottom: 2rem; } }
/*
 * 404.css
 *
 */
/* !404ページ
---------------------------------------------------------- */
.notfound {
  padding: 2rem 0; }

.title-404,
.text-404 {
  width: 90%;
  max-width: 100rem;
  margin: 0 auto; }

.title-404 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-align: center;
  font-size: 3rem; }

.text-404 {
  line-height: 1.5; }
  .text-404 .row {
    display: block; }

.home-url {
  color: #666;
  text-decoration: underline; }

/*
 * footer.css
 *
 */
/* !footer
---------------------------------------------------------- */
.footer-top {
  display: flex;
  flex-direction: column-reverse; }
.footer-nav {
  width: 100%; }
  .footer-nav .logo {
    width: 30%;
    max-width: 23.2rem;
    padding: 1rem 5%;
    background: url("../../img/short_tire_marks.png") top center no-repeat; }
.footer-nav-list {
  display: none; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 1rem 5%; }
  .footer-bottom h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    color: #FFE400;
    width: 50%; }
  .footer-bottom p {
    font-family: 'Noto Sans Myanmar', sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
    width: 50%;
    text-align: right; }
    .footer-bottom p span {
      display: inline-block; }

@media (min-width: 1200px) {
  .footer-top {
    flex-direction: row; }
  .footer-nav {
    display: flex; }
    .footer-nav .logo {
      margin-right: auto;
      background-position: top center; }
  .footer-nav-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%; }
    .footer-nav-list li {
      text-align: center;
      line-height: 1.5; }
      .footer-nav-list li:not(:last-child) {
        margin-right: 6rem; }
      .footer-nav-list li:hover p {
        opacity: 0.7; }
  .footer-nav-en {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: #000; }
  .footer-nav-ja {
    font-family: 'Noto Sans Myanmar', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    color: #C7AD1B; }
  .footer-bottom p {
    text-align: right; } }
