@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500&display=swap");
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #333;
  background: #fefefe;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.5rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.08em;
}

a {
  color: #da1111;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

#wrapper {
  overflow: hidden;
}

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

.en {
  font-family: "Jost", sans-serif;
  font-weight: 500;
}

.bold {
  font-weight: 600;
}

.small {
  font-size: 1.2rem;
  font-weight: 500;
}

h2,
h3,
h4 {
  line-height: 1.4;
  font-weight: 600;
}

.mincho {
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
}

.font3 {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
}

.bigger {
  font-size: 1.8rem;
}

@media all and (max-width: 639px) {
  .bigger {
    font-size: 1.25rem;
  }
}

.smaller {
  font-size: 0.9em;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* animation
----------------------------------*/
@-webkit-keyframes view-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes view-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
            transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
            transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.animation {
  opacity: 0;
}

.slideup.on {
  opacity: 1;
  -webkit-animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
          animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.zoomin.on {
  opacity: 1;
  -webkit-animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
          animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.loader {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fefefe;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-perspective: 200px;
          perspective: 200px;
  z-index: 9999;
}

.loader .loader-title {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  letter-spacing: 0.25vw;
}

.loader .loader-title .letter {
  display: inline-block;
}

@media all and (max-width: 639px) {
  .loader .loader-title {
    font-size: 2rem;
  }
}

.loader.off {
  display: none;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* header
----------------------------------*/
@-webkit-keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

#l-header {
  width: 100%;
  position: absolute;
  z-index: 2;
  width: 100%;
  top: 30px;
  left: 0;
  right: 0;
  margin: 0 0 0 auto;
  -webkit-animation: load-bg 1s ease-out 0.8s forwards;
  animation: load-bg 1s ease-out 0.8s forwards;
}

#l-header.is-fixed {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

#l-header.is-fixed .inner #logo {
  top: 10px;
  width: 240px;
}

@media all and (max-width: 900px) {
  #l-header.is-fixed .inner #logo {
    width: 250px;
  }
}

#l-header.is-fixed .inner {
  padding: 10px 0;
}

#l-header.is-hide {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

#l-header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 95%;
  min-width: 1000px;
  margin: 0 auto;
  padding: 25px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media all and (max-width: 900px) {
  #l-header .inner {
    min-width: initial;
  }
}

#l-header .inner #logo {
  position: absolute;
  left: 2%;
  top: 10px;
  width: 300px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  z-index: 200;
}

@media all and (max-width: 1025px) {
  #l-header .inner #logo {
    top: 20px;
    width: 200px;
  }
}

#l-header .head-right {
  margin-left: auto;
  margin-right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media all and (max-width: 900px) {
  #l-header .head-right {
    display: none;
  }
}

#l-header .head-left {
  margin-right: auto;
  margin-left: 5px;
}

@media all and (max-width: 900px) {
  #l-header .head-left {
    display: none;
  }
}

#l-header .head-right_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}

#l-header .head-right_txt {
  font-size: 12px;
  font-weight: 600;
  padding-right: 20px;
  display: block;
  letter-spacing: 0;
}

#l-header .head-right_tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#l-header .head-right_tel a,
#l-header .head-right_mail a,
#l-header .head-right_reserve a {
  display: block;
  padding: 4px 15px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  color: #333;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
}

#l-header .head-right_tel a:before,
#l-header .head-right_mail a:before,
#l-header .head-right_reserve a:before {
  margin-right: 5px;
}

#l-header .head-right_tel a:hover,
#l-header .head-right_mail a:hover,
#l-header .head-right_reserve a:hover {
  color: #ed1717;
}

#l-header .head-right_tel a {
  padding: 0 15px;
  color: #ed1717;
  font-size: 2rem;
  position: relative;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
}

#l-header .head-right_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  font-size: 1.6rem;
}

#l-header .head-right_tel a:hover {
  background-color: #fefefe;
}

#l-header .head-right_reserve {
  margin-left: 10px;
}

#l-header .head-right_reserve a:hover {
  background-color: #fefefe;
}

#l-header .head-right_mail {
  margin-left: 10px;
}

#l-header .head-right_mail a {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  color: #fefefe;
}

#l-header .head-right_mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}

#l-header .head-right_mail a:hover {
  background: #69c1df;
}

#header_nav {
  width: 750px;
  margin-top: 6px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

@media all and (max-width: 900px) {
  #header_nav {
    display: none;
  }
}

#header_nav ul {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#header_nav ul li {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

#header_nav ul li a {
  display: block;
  position: relative;
  line-height: 1.5;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  text-align: center;
  color: #222;
  overflow: hidden;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  padding-bottom: 10px;
}

#header_nav ul li a span {
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  position: relative;
  display: block;
  color: #222;
  font-size: 1.2rem;
}

#header_nav ul li a:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  width: 0;
  height: 1px;
  background-color: #ed1717;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#header_nav ul li a:hover, #header_nav ul li a.active {
  color: #398da2;
  -webkit-transition: 0.2s width ease-in;
  transition: 0.2s width ease-in;
  color: #ed1717;
}

#header_nav ul li a:hover:before, #header_nav ul li a.active:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 80%;
}

#header_nav .dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 25px;
  z-index: 999;
  padding-top: 30px;
}

#header_nav .dropdown .dropdown-li {
  border-right: 0;
  margin: 0 0 5px;
  background: #ed1717;
  padding: 6px;
}

#header_nav .dropdown .dropdown-li:after {
  display: none;
}

#header_nav .dropdown .dropdown-li a {
  display: block;
  width: 160px;
  padding: 12px 8px;
  color: #fefefe;
}

#header_nav .dropdown .dropdown-li.foot_only {
  display: none;
}

#header_nav .dropdown .dropdown-li:hover a {
  background: #398da2;
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 7px;
  z-index: 200;
}

#page-top a {
  display: block;
  background: #398da2;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  text-align: center;
}

#page-top a:hover {
  opacity: 0.6;
}

@media all and (max-width: 900px) {
  #page-top {
    bottom: 60px;
  }
  #page-top a {
    background-color: #930b0b;
  }
}

/* swiper
----------------------------------*/
@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}
@keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}

.slide-img {
  overflow: hidden;
  width: 100%;
  height: 120vh;
  margin-left: auto;
  margin-right: auto;
  min-height: 900px;
}

.slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

@media all and (max-width: 1025px) {
  .slide-img {
    height: 90vh;
    min-height: 700px;
  }
}

@media all and (max-width: 639px) {
  .slide-img {
    height: 70vh;
    max-height: 600px;
    min-height: 500px;
    background-color: #fff;
  }
  .slide-img img {
    width: 120%;
  }
}

.svg-mask {
  position: fixed;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.svg-mask #clip {
  -webkit-transform: scale(3.5) translateX(55px) translateY(-160px);
          transform: scale(3.5) translateX(55px) translateY(-160px);
}

@media all and (max-width: 900px) {
  .svg-mask #clip {
    -webkit-transform: scale(2.5) translateX(5px) translateY(-130px);
            transform: scale(2.5) translateX(5px) translateY(-130px);
  }
}

@media all and (max-width: 639px) {
  .svg-mask #clip {
    -webkit-transform: scale(2) translateX(-100px) translateY(-149px);
            transform: scale(2) translateX(-100px) translateY(-149px);
  }
}

#slide-wrap {
  position: relative;
  width: 100%;
}

#slide-wrap:before {
  position: absolute;
  content: "";
  width: 500px;
  height: 290px;
  bottom: -100px;
  background: url(../img/top.png) no-repeat 50%/contain;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  opacity: 0.7;
}

@media all and (max-width: 1025px) {
  #slide-wrap:before {
    width: 210px;
    height: 150px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media all and (max-width: 900px) {
  #slide-wrap:before {
    width: 210px;
    height: 150px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media all and (max-width: 639px) {
  #slide-wrap:before {
    width: 140px;
    height: 100px;
    -webkit-transform: scale(1);
            transform: scale(1);
    display: none;
  }
}

#slide-wrap #slideshow {
  position: relative;
  width: 100%;
  -webkit-clip-path: url(basis.css%3F1760443499.css);
          clip-path: url(basis.css%3F1760443499.css);
}

#slide-wrap .slide-box {
  opacity: 1;
  width: 100%;
  position: relative;
  margin: 0px 0 0 auto;
  overflow: hidden;
}

@-webkit-keyframes slide-bg_anime {
  0% {
    height: 100%;
  }
  100% {
    height: 0;
  }
}

@keyframes slide-bg_anime {
  0% {
    height: 100%;
  }
  100% {
    height: 0;
  }
}

/* catch
----------------------------------*/
.catch {
  position: absolute;
  margin: 0 0 0 auto;
  left: 5%;
  bottom: 40%;
}

.catch.type2 {
  color: #fff;
  mix-blend-mode: inherit;
  z-index: 2;
}

.catch .catch__txt {
  font-weight: bold;
  text-align: left;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  -webkit-filter: drop-shadow(0 0 10px rgba(51, 51, 51, 0.2));
          filter: drop-shadow(0 0 10px rgba(51, 51, 51, 0.2));
}

.catch .catch__txt p {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.catch .catch__txt .type1 {
  -webkit-animation: catch-anime2 0.6s ease-in 3.2s forwards;
          animation: catch-anime2 0.6s ease-in 3.2s forwards;
  font-size: 4vw;
}

.catch .catch__txt .type2 {
  -webkit-animation: catch-anime2 0.6s ease-in 3.6s forwards;
          animation: catch-anime2 0.6s ease-in 3.6s forwards;
  font-size: 2vw;
  padding: 0 20px 0 0;
}

@media all and (max-width: 1025px) {
  .catch {
    bottom: 20%;
    right: auto;
    left: 5%;
  }
  .catch .catch__txt {
    text-align: left;
  }
  .catch .catch__txt .type1 {
    font-size: 5vw;
  }
  .catch .catch__txt .type2 {
    font-size: 3rem;
  }
}

@media all and (max-width: 900px) {
  .catch {
    bottom: 20%;
    right: auto;
    left: 5%;
  }
  .catch .catch__txt {
    text-align: left;
  }
  .catch .catch__txt .type1 {
    font-size: 4vw;
  }
  .catch .catch__txt .type2 {
    font-size: 2.2rem;
  }
}

@media all and (max-width: 639px) {
  .catch .catch__txt {
    margin-top: 30px;
    font-size: 1.2rem;
  }
  .catch .catch__txt .type1 {
    font-size: 2rem;
    -webkit-animation: catch-anime2 0.6s ease-in 1.4s forwards;
            animation: catch-anime2 0.6s ease-in 1.4s forwards;
  }
  .catch .catch__txt .type2 {
    font-size: 1.4rem;
    -webkit-animation: catch-anime2 0.6s ease-in 1.8s forwards;
            animation: catch-anime2 0.6s ease-in 1.8s forwards;
  }
}

.cls-1 {
  stroke: #000;
  stroke-width: 1px;
  fill: transparent;
  stroke-dasharray: 1425px;
  stroke-dashoffset: 1425px;
  -webkit-animation: catch-anime 1.5s ease-in 1s forwards;
          animation: catch-anime 1.5s ease-in 1s forwards;
}

@-webkit-keyframes catch-anime {
  0% {
    stroke-dashoffset: 1425px;
  }
  30% {
    fill: transparent;
  }
  60% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #111;
    stroke: #111;
  }
}

@keyframes catch-anime {
  0% {
    stroke-dashoffset: 1425px;
  }
  30% {
    fill: transparent;
  }
  60% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #111;
    stroke: #111;
  }
}

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

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

#scrolldown {
  position: absolute;
  right: 15px;
  bottom: 0;
  color: #333;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  font-size: 1.4rem;
  z-index: 100;
  height: 210px;
}

#scrolldown:before, #scrolldown:after {
  position: absolute;
  content: "";
  z-index: 2;
  left: 50%;
}

#scrolldown:before {
  width: 1px;
  height: 100px;
  bottom: 0;
  background: #333;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#scrolldown:after {
  width: 8px;
  height: 8px;
  background: rgba(51, 51, 51, 0.9);
  border-radius: 100%;
  top: 100px;
  margin-left: -4px;
  -webkit-animation: scroll-point 2.3s ease-out infinite;
          animation: scroll-point 2.3s ease-out infinite;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@media all and (max-width: 900px) {
  #scrolldown {
    display: none;
  }
}

@-webkit-keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}

@keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}

/* contact_bnr
----------------------------------*/
.btn-hot a {
  display: block;
  width: 280px;
  margin: 0 auto 15px;
  border: 0.9px solid #327d8f;
  color: #ed1717;
  background: #398da2;
  padding: 10px 0;
  text-align: center;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.btn-hot a:hover {
  background: #4b3718;
  color: #fff;
}

@media all and (max-width: 639px) {
  .btn-hot a {
    width: 90%;
  }
}

.contact_bnr {
  position: relative;
  z-index: 2;
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact_bnr > li {
  margin-right: 2%;
  margin-bottom: 10px;
}

.contact_bnr > li:last-child {
  margin-bottom: 0;
}

@media all and (max-width: 639px) {
  .contact_bnr > li {
    width: 100%;
    margin: 0 auto 10px;
  }
  .contact_bnr > li:not(:last-child) {
    border-right: 0;
    margin-bottom: 20px;
  }
}

.contact_bnr > li .bnr_free {
  border: 1px solid #398da2;
  font-size: 3rem;
  line-height: 1;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-weight: 600;
}

.contact_bnr > li .bnr_free:before {
  content: "Tel.";
  font-size: 1.4rem;
  letter-spacing: 0;
}

.contact_bnr > li .bnr_free.typ02:before {
  content: "Fax.";
}

.contact_bnr > li .bnr_free:hover {
  background: rgba(57, 141, 162, 0.6);
  color: #fefefe;
}

.contact_bnr > li .bnr_tel {
  letter-spacing: 0.15em;
  border: 1px solid #ed1717;
  font-size: 2.5rem;
  line-height: 1;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  padding: 13px 0;
  font-weight: 600;
  color: #ed1717;
  background-color: #fff;
}

.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
}

.contact_bnr > li .bnr_tel:hover {
  background: rgba(57, 141, 162, 0.6);
  color: #fefefe;
  border: 1px solid rgba(57, 141, 162, 0.6);
}

@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_tel {
    font-size: 2rem;
  }
}

.contact_bnr > li .bnr_mobile {
  background: #fefefe;
  color: #5598c3;
}

.contact_bnr > li .bnr_mobile:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3cd";
  font-weight: 900;
}

.contact_bnr > li .bnr_fax {
  padding: 15px 0;
  background: #398da2;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-weight: 600;
}

@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_fax {
    font-size: 1.4rem;
  }
}

.contact_bnr > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
  color: #fff;
  font-size: 1.4rem;
  margin-right: 8px;
}

.contact_bnr > li .bnr_fax:hover {
  color: #fff;
  background: #2c6c7c;
}

.contact_bnr > li .bnr_mail {
  letter-spacing: 0.1rem;
  font-size: 1.8rem;
  background: #ed1717;
  color: #fff;
}

@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_mail {
    font-size: 1.4rem;
  }
}

.contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  color: #fff;
  font-size: 1.4rem;
  margin-right: 8px;
}

.contact_bnr > li .bnr_mail:hover {
  color: #fff;
  background: #2c6c7c;
}

.contact_bnr > li .bnr_line {
  letter-spacing: 0.1rem;
  font-size: 1.8rem;
  background: #15a415;
  color: #fff;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  padding-left: 10px;
}

@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_line {
    font-size: 1.4rem;
  }
}

.contact_bnr > li .bnr_line:hover {
  color: #fff;
  background: #2c6c7c;
}

.contact_bnr > li a {
  position: relative;
  display: block;
  color: #398da2;
  width: 320px;
  text-align: center;
  font-weight: 500;
  padding: 10px 0;
  margin: 0 auto;
}

@media all and (max-width: 900px) {
  .contact_bnr > li a {
    font-size: 1.6rem;
  }
}

@media all and (max-width: 639px) {
  .contact_bnr > li a {
    width: 90%;
  }
  .contact_bnr > li a:before {
    font-size: 2rem;
  }
}

/* footer
----------------------------------*/
#l-footer {
  position: relative;
  padding-top: 30px;
}

#l-footer:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 1;
}

#l-footer .inner {
  margin: 0px auto;
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
  position: relative;
  z-index: 3;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#l-footer .inner .footer-left {
  width: 35%;
  padding: 20px;
  text-align: center;
}

#l-footer .inner .footer-right {
  width: 65%;
  padding-left: 20px;
}

@media all and (max-width: 900px) {
  #l-footer .inner .footer-left {
    width: 90%;
    padding: 0;
    border-right: 0;
    margin: 0 auto;
    text-align: center;
  }
  #l-footer .inner .footer-right {
    width: 90%;
    border-top: 0.9px solid #eee;
    padding: 20px 0 0;
    margin: 20px auto 0;
  }
}

@media all and (max-width: 639px) {
  #l-footer {
    padding-top: 40px;
  }
  #l-footer .inner {
    padding: 10px 15px 30px;
    /*
   .footer-right {
    height: 200px;
   }*/
  }
  #l-footer .inner .footer-left,
  #l-footer .inner .footer-middle,
  #l-footer .inner .footer-right {
    width: 100%;
    font-size: 13px;
  }
  #l-footer .inner .footer-middle {
    margin-top: 20px;
    border-left: 0;
  }
}

/* 予約ボタン
----------------------------------*/
.reserve--btn {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 110;
  -webkit-animation: anime-reserve 2s ease-in 0s infinite;
          animation: anime-reserve 2s ease-in 0s infinite;
}

.reserve--btn img {
  width: 240px;
}

.reserve--btn img.img1 {
  display: block;
}

.reserve--btn img.img2 {
  display: none;
}

.reserve--btn a {
  display: block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.reserve--btn:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-animation: none;
          animation: none;
  -webkit-transform: scale(0.9) translateY(10px);
          transform: scale(0.9) translateY(10px);
}

.reserve--btn:hover img.img1 {
  display: none;
}

.reserve--btn:hover img.img2 {
  display: block;
}

@media all and (max-width: 1367px) {
  .reserve--btn {
    bottom: 40px;
  }
  .reserve--btn img {
    width: 130px;
  }
}

@media all and (max-width: 900px) {
  .reserve--btn {
    bottom: 40px;
    right: 10px;
  }
  .reserve--btn img {
    width: 120px;
  }
}

@media all and (max-width: 639px) {
  .reserve--btn {
    bottom: 70px;
    right: 5px;
  }
  .reserve--btn img {
    width: 90px;
  }
}

@-webkit-keyframes anime-reserve {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  40% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  60% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes anime-reserve {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  40% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  60% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.inner2 {
  width: 100%;
  margin: 0 auto;
  background: #da1111;
  padding: 20px 20px 20px;
  position: relative;
  z-index: 2;
}

@media all and (max-width: 900px) {
  .inner2 {
    width: 100%;
  }
}

/* footer_navi
----------------------------------*/
.footer_navi {
  max-width: 1000px;
  margin: 25px auto 20px;
}

.footer_navi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.footer_navi ul li {
  width: 33%;
  text-align: left;
}

.footer_navi ul li a {
  color: #333;
  font-size: 1.4rem;
  position: relative;
  padding-left: 25px;
  font-weight: 600;
}

.footer_navi ul li a span {
  display: none;
}

.footer_navi ul li a:before {
  content: "";
  background-color: #ed1717;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  left: 0;
}

.footer_navi ul li a:hover {
  color: #ed1717;
}

.footer_navi ul li .dropdown {
  display: none;
}

.footer_navi ul li .dropdown .dropdon-li a {
  font-size: 1.2rem;
}

.flogo {
  text-align: center;
  width: 350px;
  margin: 0 auto 0px;
}

@media all and (max-width: 639px) {
  .flogo {
    width: 70%;
  }
}

.address {
  font-size: 1.2rem;
}

@media all and (max-width: 639px) {
  .address {
    font-size: 1.2rem;
  }
}

.copyright {
  font-size: 1.2rem;
  position: relative;
  z-index: 4;
  color: #fff;
}

@media all and (max-width: 900px) {
  .copyright {
    font-size: 12px;
    padding-bottom: 50px;
  }
}

/*----------------------------------
 top-contents
 
----------------------------------*/
.top-cont02 {
  margin: 50px auto;
  max-width: 1200px;
  width: 100%;
}

.top-cont02 .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-cont02 .inner .top-cont02-img {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top-cont02 .inner .top-cont02-img .img01 {
  z-index: 0;
  width: 50%;
}

.top-cont02 .inner .top-cont02-img .img02 {
  width: 45%;
  z-index: 1;
  margin-top: 60px;
  margin-left: auto;
}

.top-cont02 .inner .top-cont02-img .img01 img, .top-cont02 .inner .top-cont02-img .img02 img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-cont02 .inner .top-cont02-txt {
  width: 50%;
}

.top-cont02 .inner .top-cont02-txt p + p {
  margin-top: 10px;
}

.top-cont02.type1 {
  max-width: 1500px;
  width: 95%;
  margin-bottom: 60px;
  color: #fff;
}

.top-cont02.type1 .inner .top-cont02-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 48%;
}

.top-cont02.type1 .inner .top-cont02-img .img02 {
  width: 100%;
  margin-top: 95px;
}

.top-cont02.type1 .inner .top-cont02-img .img02 img {
  height: auto;
}

@media all and (max-width: 900px) {
  .top-cont02 .inner {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
  .top-cont02 .inner .top-cont02-img {
    width: 100%;
    margin-bottom: 30px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .top-cont02 .inner .top-cont02-img .img02 {
    margin-top: 80px;
    max-width: 350px;
  }
  .top-cont02 .inner .top-cont02-txt {
    width: 100%;
    margin: auto;
  }
  .top-cont02.type1 {
    width: 100%;
  }
  .top-cont02.type1 .inner .top-cont02-img {
    width: 100%;
  }
  .top-cont02.type1 .inner .top-cont02-img .img02 {
    max-width: 100%;
  }
  .top-cont02.type1 .inner .top-cont02-img img {
    height: auto;
  }
}

@media all and (max-width: 639px) {
  .top-cont02 .inner {
    max-width: calc(100% - 10px);
  }
  .top-cont02 .inner .top-cont02-img .img02 {
    margin-top: 40px;
    max-width: 300px;
  }
  .top-cont02 .inner .top-cont02-img .img02 img {
    height: 200px;
  }
  .top-cont02 .inner .top-cont02-img .img01 img {
    height: 200px;
  }
  .top-cont02.type1 .inner .top-cont02-img .img02 {
    margin-top: 20px;
  }
}

.deco {
  position: relative;
}

.deco:before, .deco:after {
  position: absolute;
  content: "";
  width: 10%;
  height: 100%;
  top: 0;
  opacity: 0.2;
}

@media all and (max-width: 639px) {
  .deco:before, .deco:after {
    width: 30%;
  }
}

.deco:before {
  left: 0;
  background: url(https://www.one-rentacar.jp/img/deco-left.png) repeat-y center left/contain;
}

@media all and (max-width: 639px) {
  .deco:before {
    background-repeat: no-repeat;
    background-position: left top;
  }
}

.deco:after {
  right: 0;
  background: url(https://www.one-rentacar.jp/img/deco-right.png) repeat-y center right/contain;
}

@media all and (max-width: 639px) {
  .deco:after {
    background-repeat: no-repeat;
    background-position: right bottom;
  }
}

.lead01 {
  text-align: center;
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.15em;
  margin-top: -30px;
  margin-bottom: 25px;
  color: #fdfed6;
}

.lead01 span {
  border-bottom: 0.9px solid #398da2;
}

@media all and (max-width: 639px) {
  .lead01 {
    font-size: 1.4rem;
    margin-top: -20px;
  }
}

.lead01.type1 {
  margin: 0 auto 25px;
  color: #4b3718;
}

/* --news--
----------------------------------*/
.news-list li {
  padding: 4px 4px 6px;
  border-bottom: 0.9px solid #ddd;
}

.news-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #da1111;
}

.news-list li:not(:last-of-type) {
  margin-bottom: 15px;
}

.news-list li .data {
  font-size: 1.3rem;
  color: #fff;
  padding: 4px 8px;
  background: #398da2;
}

@media all and (max-width: 639px) {
  .news-list li .data {
    font-size: 12px;
  }
}

.news-list li .txt {
  margin-left: 20px;
  text-decoration: underline;
}

@media all and (max-width: 900px) {
  .news-list li {
    display: block;
  }
  .news-list li .txt {
    margin: 5px 0 0;
    display: block;
  }
}

.news-box {
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media all and (max-width: 900px) {
  .news-box {
    margin-top: 0;
  }
}

@media all and (max-width: 639px) {
  .news-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10px;
  }
}

.news-title {
  text-align: center;
  margin-bottom: 60px;
  color: #4b3718;
  position: relative;
}

.news-title span {
  display: block;
}

.news-title .eng {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  color: #ed1717;
  position: relative;
  font-size: 3.5rem;
}

.news-title .ja {
  position: relative;
  font-size: 2rem;
}

@media all and (max-width: 639px) {
  .news-title {
    margin-bottom: 30px;
  }
  .news-title .eng {
    font-size: 2.4rem;
  }
  .news-title .ja {
    font-size: 1.4rem;
  }
}

.news-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 80px;
}

@media all and (max-width: 639px) {
  .news-right {
    width: 100%;
    margin: 10px 0 0;
  }
}

/*top-split*/
.top-split {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

@media all and (max-width: 639px) {
  .top-split {
    padding: 0;
  }
}

.top-split .child {
  width: 31%;
}

.top-split .child.split-1 {
  background: url(../img/008.jpg) no-repeat center/cover;
}

.top-split .child.split-2 {
  background: url(../img/003.jpg) no-repeat center/cover;
}

.top-split .child.split-3 {
  background: url(../img/002.jpg) no-repeat center/cover;
}

@media all and (max-width: 639px) {
  .top-split .child {
    width: 90%;
    margin: 0 auto 25px;
  }
}

@media screen and (max-width: 890px) and (orientation: landscape) {
  .top-split .child {
    width: 90%;
    margin: 0 auto 25px;
  }
}

.top-split .child a {
  display: block;
  position: relative;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.top-split .child a:before {
  position: absolute;
  content: "";
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

@media all and (max-width: 639px) {
  .top-split .child a {
    height: auto;
    padding: 55px 0;
  }
  .top-split .child a:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 2px solid #fff;
  }
}

.top-split .child a .inner {
  position: relative;
  z-index: 3;
  text-align: center;
  font-weight: 600;
}

.top-split .child a .split-title {
  text-align: center;
  color: #fff;
  margin-bottom: 0;
  font-size: 2rem;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.2);
}

.top-split .child a .split-title .eng {
  display: block;
  line-height: 1.8;
  font-size: 1.8rem;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
}

@media all and (max-width: 639px) {
  .top-split .child a .split-title {
    font-size: 1.7rem;
  }
  .top-split .child a .split-title .eng {
    font-size: 1.6rem;
  }
}

.top-split .child a .split-txt {
  color: #fff;
  max-width: 80%;
  margin: 0 auto;
}

@media all and (max-width: 639px) {
  .top-split .child a .split-txt {
    font-size: 1.2rem;
    padding: 0 20px;
    max-width: 90%;
  }
}

.top-split .child a .split-more {
  width: 170px;
  padding: 6px 0;
  text-align: center;
  background: #fff;
  color: #111;
  border-radius: 30px;
  margin: 0 auto;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.top-split .child a:hover:before {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.top-split .child a:hover .split-more {
  background: #ed1717;
  color: #fff;
}

.top-board {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.top-board .top-board-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 30px;
  -webkit-box-shadow: rgba(51, 51, 51, 0.1) 0px 10px 50px;
          box-shadow: rgba(51, 51, 51, 0.1) 0px 10px 50px;
  padding: 25px;
  border-radius: 20px;
  background: #fefefe;
}

@media all and (max-width: 639px) {
  .top-board {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top-board .top-board-box {
    width: 96%;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    margin: 10px auto 0;
    padding: 15px;
  }
}

/* contents
----------------------------------*/
.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}

.single00 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0 0;
  position: relative;
}

.single02 {
  width: calc(100% - 80px);
  margin: 0 auto;
  padding: 80px 0;
}

.single03 {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}

.margin-top {
  margin-top: -80px;
}

@media all and (max-width: 639px) {
  .margin-top {
    margin-top: -30px;
  }
}

.lsingle,
.rsingle {
  width: 48.44%;
}

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  background: #fefefe;
  padding: 35px 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.mbox.transparent {
  background: transparent;
}

.mbox.br-20 {
  border-radius: 20px;
}

@media all and (max-width: 639px) {
  .mbox {
    padding: 20px 10px;
  }
}

.mbox2 {
  background: #fff;
  border: 2px solid #ed1717;
  padding: 35px 30px;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

@media all and (max-width: 639px) {
  .mbox2 {
    padding: 25px 15px;
  }
}

.mbox3 {
  background: #fff;
  padding: 50px;
  -webkit-box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.1);
  position: relative;
}

.mbox3:before {
  position: absolute;
  content: "";
  width: 100%;
  background-image: url(../img/obi.jpg), url(../img/obi.jpg);
  background-repeat: repeat-x, repeat-x;
  background-position: top left, bottom right;
  background-size: 280px 20px;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

@media all and (max-width: 639px) {
  .mbox3 {
    padding: 50px 20px;
  }
}

.small-box {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
}

.small-box.type1 {
  max-width: 600px;
}

.naraken {
  position: relative;
}

.naraken:before {
  position: absolute;
  content: "";
  background: url(https://www.one-rentacar.jp/img/map2.png) no-repeat;
  -webkit-filter: 3px 0px 16px -6px rgba(0, 0, 0, 0.6);
          filter: 3px 0px 16px -6px rgba(0, 0, 0, 0.6);
  background-size: contain;
  background-position: center;
  width: 160px;
  height: 210px;
  left: 0;
  right: 0;
  top: -10%;
  margin: 0 auto;
}

.box1 {
  max-width: 700px;
  margin: 30px auto;
  background-color: #fff;
  position: relative;
  padding: 20px 30px;
}

.box1.type1 {
  margin: -60px auto 80px;
}

@media all and (max-width: 639px) {
  .box1.type1 {
    margin: 0 auto 30px;
  }
}

.box2 {
  background: #fff;
  -webkit-box-shadow: 0 3 10px rgba(237, 23, 23, 0.15);
          box-shadow: 0 3 10px rgba(237, 23, 23, 0.15);
  padding: 30px;
  border-radius: 8px;
  margin-right: auto;
  margin-left: auto;
}

.box2.type1 {
  position: relative;
  border: 1px solid #f5c96c;
  background-image: radial-gradient(rgba(245, 201, 108, 0.3) 7%, transparent 10%), radial-gradient(rgba(245, 201, 108, 0.3) 7%, transparent 10%);
  background-position: 0 0, 20px 20px;
  background-size: 40px 40px;
}

@media all and (max-width: 639px) {
  .box2 {
    padding: 25px 15px;
  }
}

.sentence p + p {
  margin-bottom: 20px;
  letter-spacing: .3rem;
  line-height: 2;
}

@media all and (max-width: 900px) {
  .sentence p + p {
    letter-spacing: .1rem;
  }
}

.what-inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}

.what-inner .in-left {
  width: 40%;
}

.what-inner .in-left .read {
  color: #db7780;
  font-family: "Zen Maru Gothic", serif;
  font-size: 30px;
  letter-spacing: .1em;
  letter-spacing: .2em;
  font-weight: 500;
  line-height: 1.4em;
}

.what-inner .in-left .read span {
  display: table;
  margin: 0;
  font-size: 23px;
  letter-spacing: .1em;
  line-height: 1em;
  color: #deafb0;
  margin-top: 10px;
}

.what-inner .in-right {
  width: 55%;
}

@media all and (max-width: 639px) {
  .what-inner .in-left {
    width: 100%;
    margin-top: 30px;
  }
  .what-inner .in-left .read {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .what-inner .in-left .read span {
    font-size: 18px;
  }
  .what-inner .in-right {
    width: 100%;
  }
}

.img-b {
  border: 0.9px solid #ccc;
}

.img-round {
  border-radius: 20px 0 20px 0;
}

.bg-hana {
  position: relative;
}

.bg-hana:before {
  position: absolute;
  content: "";
  width: 380px;
  height: 190px;
  bottom: -80px;
  right: -20px;
  background: url(../img/hana-left.png) no-repeat 50%/contain;
  opacity: 0.8;
  z-index: -1;
}

.bg-hana:after {
  position: absolute;
  content: "";
  width: 380px;
  height: 190px;
  top: -80px;
  background: url(../img/hana-right.png) no-repeat 50%/contain;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 0.8;
  z-index: -1;
}

@media all and (max-width: 1025px) {
  .bg-hana:before {
    width: 300px;
    height: 150px;
    opacity: 0.5;
    bottom: 0;
  }
  .bg-hana:after {
    width: 300px;
    height: 150px;
    top: 0px;
    opacity: 0.5;
  }
}

@media all and (max-width: 900px) {
  .bg-hana:before {
    width: 210px;
    height: 100px;
    opacity: 0.5;
    bottom: 0;
  }
  .bg-hana:after {
    width: 220px;
    height: 100px;
    top: 0px;
    opacity: 0.5;
  }
}

@media all and (max-width: 639px) {
  .bg-hana:before {
    width: 180px;
    height: 100px;
    opacity: 0.5;
    bottom: 0;
  }
  .bg-hana:after {
    width: 180px;
    height: 100px;
    top: 0px;
    opacity: 0.5;
  }
}

.bg-happa2 {
  position: relative;
  overflow: hidden;
}

.bg-happa2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 200px;
  background-image: url(https://www.one-rentacar.jp/img/happa3.png), url(https://www.one-rentacar.jp/img/happa2.png);
  background-repeat: no-repeat, no-repeat;
  background-position: top left, top right;
  background-size: contain, contain;
}

@media all and (max-width: 639px) {
  .bg-happa2:before {
    height: 80px;
  }
}

.bg-grid {
  background: rgba(255, 255, 255, 0.9);
  /* border-top: 1px solid #555;
  border-bottom: 1px solid #555;*/
  background-image: -webkit-gradient(linear, left top, right top, color-stop(95%, transparent), color-stop(50%, rgba(204, 204, 204, 0.2)), to(rgba(204, 204, 204, 0.2))), -webkit-gradient(linear, left bottom, left top, color-stop(95%, transparent), color-stop(50%, rgba(204, 204, 204, 0.2)), to(rgba(204, 204, 204, 0.2)));
  background-image: linear-gradient(90deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2)), linear-gradient(0deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2));
  background-size: 20px 20px;
  background-repeat: repeat;
}

.bg-map {
  position: relative;
}

.bg-map:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../img/bg-area.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-attachment: fixed;
  -webkit-filter: brightness(0.6);
          filter: brightness(0.6);
}

@media all and (max-width: 900px) {
  .bg-map:before {
    background-attachment: scroll;
  }
}

.area-box {
  padding: 60px 0;
  margin: 0 auto;
  position: relative;
}

.area-box .txtbox {
  position: relative;
  margin: 0 auto;
  padding: 50px 20px;
  font-size: 1.8rem;
  color: #fff;
  max-width: 600px;
  background-color: rgba(57, 141, 162, 0.8);
}

@media all and (max-width: 639px) {
  .area-box .txtbox {
    margin: 0 auto 50px;
    font-size: 1.5rem;
  }
  .area-box .txtbox:before {
    display: none;
  }
}

@media all and (max-width: 639px) {
  .area-box .sp-right {
    text-align: right;
  }
}

@media all and (max-width: 639px) {
  .area-box:before {
    background-size: contain;
  }
}

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

.area-flex .area-text {
  width: 68%;
  margin-right: 2%;
}

.area-flex .area-img {
  width: 30%;
}

@media all and (max-width: 639px) {
  .area-flex .area-text, .area-flex .area-img {
    width: 100%;
  }
}

#main {
  float: left;
  width: 76%;
}

#main .mbox {
  min-height: 300px;
}

@media all and (max-width: 900px) {
  #main .mbox {
    min-height: initial;
  }
}

@media all and (max-width: 900px) {
  #main {
    float: none;
    width: 100%;
  }
}

#side {
  float: right;
  position: -webkit-sticky;
  position: sticky;
  right: 0;
  top: 0;
  width: 21%;
  padding-right: 10px;
}

@media all and (max-width: 900px) {
  #side {
    float: none;
    width: 100%;
    position: static;
    margin-top: 40px;
  }
}

/* mtitle
----------------------------------*/
.mtitle {
  margin: 0px auto 45px;
  text-align: center;
}

.mtitle.type1 .eng {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  color: #333;
}

.mtitle .eng {
  font-size: 2.5rem;
  color: #ed1717;
  position: relative;
  display: block;
  line-height: 1.3;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}

.mtitle .ja {
  font-size: 2.5rem;
  color: #4b3718;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  letter-spacing: 0.15em;
  position: relative;
}

.mtitle.white {
  color: #fff;
}

.mtitle.white .eng {
  color: #ffecc4;
}

.mtitle.white .ja {
  color: #fff;
  border-bottom-color: #fefefe;
}

.mtitle.black {
  color: #333;
}

.mtitle.black span {
  color: #555;
}

.mtitle.black span:after {
  background-color: #555;
}

.mtitle.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}

.mtitle.mtitle_left .ja:before {
  display: none;
}

.mtitle.mtitle_left span:after {
  left: 0;
  -webkit-transform: none;
          transform: none;
}

@media all and (max-width: 639px) {
  .mtitle {
    text-align: center;
    margin: 10px auto 30px;
  }
  .mtitle .eng {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
  }
  .mtitle .ja {
    font-size: 1.8rem;
  }
}

.mtitle_balloon {
  font-size: 2.4rem;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
}

.mtitle_balloon span {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
  line-height: 1.3em;
  color: #ed1717;
}

.mtitle_balloon span.eng {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 5rem;
}

.mtitle_balloon span:before, .mtitle_balloon span:after {
  content: "";
  display: block;
  border-bottom: 2px dashed #f5c96c;
  position: absolute;
  width: 50%;
  bottom: 6px;
}

.mtitle_balloon span:before {
  left: -5px;
}

.mtitle_balloon span:after {
  right: -5px;
}

.mtitle_balloon span i {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px dashed #f5c96c;
  border-right: 2px dashed #f5c96c;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: 2px;
}

.mtitle_balloon.center {
  text-align: center;
}

.mtitle_balloon.white span:before, .mtitle_balloon.white span:after {
  border-bottom-color: #fefefe;
}

.mtitle_balloon.white span i {
  border-color: #fefefe;
}

@media all and (max-width: 639px) {
  .mtitle_balloon {
    font-size: 1.7rem;
  }
  .mtitle_balloon span.eng {
    font-size: 2.4rem;
  }
}

.mtitle1 {
  text-align: center;
  letter-spacing: .2rem;
  margin-bottom: 45px;
}

.mtitle1 .en {
  color: #333;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  font-weight: 500;
  margin-top: 20px;
}

.mtitle1 .ja {
  display: block;
  font-size: 4.5rem;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
}

.mtitle1 .ja::after {
  content: " ";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #333;
  margin: 20px auto;
}

@media all and (max-width: 900px) {
  .mtitle1 .en {
    font-size: 1rem;
  }
  .mtitle1 .ja {
    font-size: 2.8rem;
    letter-spacing: -.01rem;
  }
}

.mtitle2 {
  font-size: 2rem;
  position: relative;
  color: #ed1717;
  font-weight: 600;
  position: relative;
  padding-left: 20px;
  margin-bottom: 30px;
  line-height: 1.2;
}

.mtitle2 .eng {
  display: block;
  font-size: 1.8rem;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  color: #398da2;
}

.mtitle2:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  background: #ed1717;
  border-radius: 4px;
}

@media all and (max-width: 639px) {
  .mtitle2 {
    font-size: 1.6rem;
  }
  .mtitle2 .eng {
    font-size: 1.2rem;
  }
  .mtitle2 .viewbtn {
    font-size: 13px;
  }
}

.mtitle3 {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  min-height: 100px;
  top: 10px;
  left: 20px;
  padding-top: 40px;
}

.mtitle3:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 30px;
  top: 0;
  left: 50%;
  background: #ed1717;
}

.mtitle3 .ja {
  display: block;
  font-size: 2.4rem;
  line-height: 1.3;
  padding-right: 5px;
  font-weight: 600;
  color: #ed1717;
}

.mtitle3 .eng {
  display: block;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  color: #398da2;
}

@media all and (max-width: 639px) {
  .mtitle3 {
    position: relative;
    top: 0;
    left: 0;
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    padding: 0 0 0 25px;
    min-height: auto;
    min-height: inherit;
  }
  .mtitle3:before {
    width: 20px;
    height: 1px;
    top: 50%;
    left: 0;
  }
  .mtitle3 .ja {
    font-size: 1.4rem;
  }
  .mtitle3 .eng {
    font-size: 1.8rem;
  }
}

.mtitle_line {
  position: relative;
  margin-bottom: 20px;
  color: #4b3718;
  border-top: 2px solid rgba(237, 23, 23, 0.6);
  font-size: 1.8rem;
  padding: 6px 10px 16px;
  font-family: 'Zen Maru Gothic', serif;
  font-weight: 900;
  font-weight: 500;
}

.mtitle_line span {
  font-size: 1.4rem;
  color: #ed1717;
  margin-left: 10px;
}

.mtitle_line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  opacity: 0.5;
  background-image: repeating-linear-gradient(-45deg, #ed1717, #ed1717 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.mtitle_line.type1 {
  border-top: 2px solid rgba(57, 141, 162, 0.6);
}

.mtitle_line.type1:after {
  background-image: repeating-linear-gradient(-45deg, #398da2, #398da2 1px, transparent 2px, transparent 5px);
}

@media all and (max-width: 639px) {
  .mtitle_line {
    font-size: 1.4rem;
  }
  .mtitle_line span {
    font-size: 12px;
  }
}

.mtitle4 {
  font-weight: 600;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  color: #fff;
}

.mtitle4 span {
  position: relative;
  display: inline-block;
  z-index: 3;
  min-width: 10%;
}

.mtitle4 span:before, .mtitle4 span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 3rem;
  background-color: #398da2;
}

.mtitle4 span:before {
  left: -30px;
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
}

.mtitle4 span:after {
  right: -30px;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}

.mtitle4.white span:before, .mtitle4.white span:after {
  background-color: #f5c96c;
}

@media all and (max-width: 639px) {
  .mtitle4 {
    font-size: 1.6rem;
  }
}

@media all and (max-width: 320px) {
  .mtitle4 span:before {
    left: -10px;
  }
  .mtitle4 span:after {
    right: -10px;
  }
}

.mtitle_sub {
  padding-left: 0.5em;
  position: relative;
  border-left: 6px solid #ed1717;
  margin: 8px 0 15px;
  font-size: 1.1em;
  line-height: 1.4;
  text-align: left;
}

.mtitle_sub .hissu {
  color: #fff;
  background: #f14646;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
}

.mtitle_sub:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  width: 6px;
  height: 50%;
  background-color: #f5c96c;
}

.mtitle_box {
  background: #ed1717;
  color: #fff;
  font-size: 1.8rem;
  position: relative;
  padding: 10px 10px 10px 20px;
  margin-bottom: 25px;
  font-weight: 600;
  border-radius: 30px;
  /*
 &:before {
  position: absolute;
  @include awesome(\f5bb);
  display: block;
  right: -2px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  color: #fff;
 }*/
}

.mtitle_box.eng {
  font-family: "Jost", sans-serif;
  font-weight: 500;
}

.mtitle_box span {
  font-weight: normal;
  font-size: 14px;
  padding-left: 10px;
}

@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.5rem;
  }
}

.mtitle_box2 {
  background: #ed1717;
  font-size: 2.2rem;
  color: #fff;
  position: relative;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.1rem;
  -webkit-box-shadow: 0 8px 8px rgba(237, 23, 23, 0.2);
          box-shadow: 0 8px 8px rgba(237, 23, 23, 0.2);
  padding: 15px 10px 15px 20px;
  margin-bottom: 25px;
}

.mtitle_box2 .small-cap {
  font-weight: normal;
  font-size: 14px;
}

.mtitle_box2:before {
  background-color: #fff;
  content: "";
  display: block;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
  position: absolute;
  bottom: -10px;
  right: -150px;
  width: 300px;
  height: 280px;
}

@media all and (max-width: 639px) {
  .mtitle_box2 {
    font-size: 15px;
    line-height: 1.5;
    padding: 10px 10px 10px 15px;
    padding-right: 40px;
  }
  .mtitle_box2 span {
    font-size: 12px;
  }
  .mtitle_box2:before {
    width: 215px;
    right: -170px;
  }
}

.message {
  font-size: 1.8rem;
  line-height: 1.8;
}

@media all and (max-width: 639px) {
  .message {
    font-size: 1.6rem;
  }
}

.mtext1 {
  font-size: 2rem;
  line-height: 1.6;
}

.mtext1 .eng {
  display: block;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  color: #4b3718;
  line-height: 1.4;
  font-size: 1.5rem;
}

.mtext1 span {
  font-size: 1.4rem;
}

@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.6rem;
    line-height: 2;
  }
  .mtext1 span {
    font-size: 1.8rem;
  }
}

.mtext2 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 1.6;
}

@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 1.8rem;
  }
}

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: normal;
}

.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: 900;
  margin-right: 5px;
  color: #ed1717;
}

/* btn
----------------------------------*/
.btn-instagram a {
  display: block;
  width: 300px;
  text-align: center;
  margin: 25px auto 0;
  padding: 15px 10px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  background: #f5dca6;
  font-size: 1.8rem;
  color: #fff;
  -webkit-transition: background 0.2s ease-in;
  transition: background 0.2s ease-in;
}

.btn-instagram a i {
  display: inline-block;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 0.9px solid #fff;
}

.btn-instagram a:hover {
  background: #ed1717;
}

@media all and (max-width: 639px) {
  .btn-instagram a {
    width: 80%;
    font-size: 1.4rem;
  }
}

.btn01 a {
  background: #fefefe;
  text-align: center;
  width: 300px;
  margin: 15px auto;
  color: #ed1717;
  display: block;
  padding: 8px 5px;
  font-weight: 600;
  border: 1px solid #ed1717;
  border-radius: 35px;
}

.btn01 a:hover {
  background: #ed1717;
  color: #fefefe;
}

.btn01.mail {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.btn01.mail a {
  background: #f5c96c;
  margin: 15px auto 25px;
}

.btn01.mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}

@media all and (max-width: 639px) {
  .btn01 a {
    width: 95%;
  }
}

.btn02 {
  width: 300px;
  margin: 20px auto 20px;
}

.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  border: 0.9px solid #ed1717;
  line-height: 24px;
  letter-spacing: 0.1rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  color: #ed1717;
  background: #f1f1f1;
}

.btn02 a:hover {
  background-color: #ed1717;
  color: #fff;
}

@media all and (max-width: 639px) {
  .btn02 {
    width: 90%;
  }
  .btn02 a {
    font-size: 1.2rem;
  }
}

/* news
----------------------------------*/
.news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  letter-spacing: 0;
  line-height: 1.7;
}

.news dt {
  width: 7em;
  padding: 3px 5px;
  background: #f0f0f0;
  text-align: center;
  color: #4b3718;
}

.news dd {
  padding: 5px;
  background: #fff;
  width: calc(100% - 8.5em);
  margin-left: 8px;
}

.news dt:not(:last-child),
.news dd:not(:last-child) {
  margin-bottom: 7px;
}

.news-bl {
  overflow: hidden;
}

.news-bl dt {
  float: left;
  width: 8em;
  padding: 5px;
  line-height: 1.3;
  color: #ed1717;
  text-align: center;
  border: 1px solid #ed1717;
  border-radius: 30px;
  background: rgba(237, 23, 23, 0.1);
  font-size: 1.3rem;
}

@media all and (max-width: 639px) {
  .news-bl dt {
    font-size: 13px;
  }
}

.news-bl dd {
  padding: 0 0 12px 9.2em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 10px;
}

.news-bl dd a {
  color: #333;
  background-image: -webkit-gradient(linear, left top, right top, from(#ed1717), to(#333));
  background-image: linear-gradient(to right, #ed1717, #333);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 500;
}

.news-bl dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}

.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}

@media all and (max-width: 639px) {
  .news-bl dt {
    float: none;
  }
  .news-bl dd {
    padding: 8px 5px;
  }
}

.profile-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 15px;
}

.profile-dl dt,
.profile-dl dd {
  margin-bottom: 5px;
}

.profile-dl dt {
  background: #fff;
  padding: 5px;
  color: #111;
  border-radius: 30px;
  width: 30%;
  text-align: center;
  border: 1px solid #5598c3;
}

@media all and (max-width: 639px) {
  .profile-dl dt {
    padding: 5px;
    letter-spacing: 0;
    font-size: 13px;
  }
}

.profile-dl dd {
  width: 67%;
  line-height: 1.1;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  font-size: 2rem;
}

.profile-dl dd span {
  font-size: 2.6rem;
  color: #832d3a;
}

@media all and (max-width: 639px) {
  .profile-dl dd span {
    font-size: 1.6rem;
  }
}

.news-bl2 li {
  border-top: 1px solid rgba(57, 141, 162, 0.5);
}

.news-bl2 li:last-child {
  border-bottom: 1px solid rgba(57, 141, 162, 0.5);
}

.news-bl2 li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 40px 25px 0;
  color: #398da2;
  font-weight: 600;
}

.news-bl2 li a:after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  top: 50%;
  right: 20px;
  border-top: 1px solid #398da2;
  border-right: 1px solid #398da2;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.news-bl2 li a:hover:after {
  right: 10px;
}

.news-bl2 .day {
  font-weight: 500;
  font-size: 15px;
  margin: 0 30px 0 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
}

.link-news {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 50px;
}

@media all and (max-width: 900px) {
  .link-news {
    margin-top: 20px;
  }
}

.link-news .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: #398da2;
  padding-right: 30px;
}

.link-news:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #398da2;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.link-news:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 50%;
  right: 10px;
  border-top: 1px solid #398da2;
  border-right: 1px solid #398da2;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.link-news:hover:before {
  background: #398da2;
}

.link-news:hover:after {
  border-color: #fefefe !important;
}

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 1;
  background: url(../img/005.jpg) no-repeat center/cover;
  overflow: hidden;
}

.page-title.type01 {
  background: url(https://www.one-rentacar.jp/img/image/002.jpg) no-repeat 50% 80%/cover;
}

.page-title.type02 {
  background: url(https://www.one-rentacar.jp/img/image/012.jpg) no-repeat center 80%/cover;
}

.page-title.type03 {
  background: url(https://www.one-rentacar.jp/img/image/020.jpg) no-repeat center 80%/cover;
}

.page-title.type04 {
  background: url(https://www.one-rentacar.jp/img/image/022.jpg) no-repeat center/cover;
}

.page-title:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: -webkit-gradient(linear, left bottom, right top, from(rgba(163, 153, 145, 0.5)), to(#6fe3df));
  background-image: linear-gradient(to right top, rgba(163, 153, 145, 0.5), #6fe3df);
  opacity: 0.6;
}

.page-title .inner {
  margin: 0 auto;
  padding: 220px 0 120px;
  max-width: 1200px;
  overflow: hidden;
}

.page-title .inner .page-lead {
  color: #fefefe;
  text-align: center;
  font-size: 3rem;
  position: relative;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  letter-spacing: 0.2em;
  font-weight: 500;
  font-family: "Zen Maru Gothic", serif;
}

.page-title .inner .page-lead:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 70px;
  top: -70px;
  left: 50%;
  background: #fff;
}

@media all and (max-width: 639px) {
  .page-title .inner .page-lead:before {
    height: 35px;
    top: -35px;
  }
}

.page-title .inner .page-lead .eng {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  color: #fff;
}

@media all and (max-width: 639px) {
  .page-title .inner .page-lead {
    font-size: 1.5rem;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  .page-title .inner .page-lead .eng {
    font-size: 2.5rem;
  }
}

@media all and (max-width: 900px) {
  .page-title {
    margin-top: 20px;
  }
  .page-title .inner {
    width: 100%;
    padding: 100px 0 50px;
  }
}

.bg-01 {
  position: relative;
}

.bg-01:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: url(../img/001.jpg) no-repeat center center/cover;
  padding: 40px 0;
  opacity: 0.5;
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

@media all and (max-width: 639px) {
  .bg-01:before {
    opacity: 0.8;
  }
  .bg-01:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background: url(https://www.one-rentacar.jp/img/midori.png) no-repeat top right/contain;
    opacity: 0.4;
    z-index: -1;
  }
}

.bg-fixed {
  position: relative;
  padding: 180px 0;
}

.bg-fixed:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url(../img/008.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.bg-02 {
  position: relative;
}

.bg-02:before {
  position: absolute;
  content: "";
  width: 80%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../img/005.jpg);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  background-attachment: fixed;
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}

@media all and (max-width: 900px) {
  .bg-02:before {
    width: 100%;
    background-attachment: scroll;
  }
}

.bg-03 {
  background: #777;
}

.bg-base {
  position: relative;
}

.bg-base:before {
  position: absolute;
  content: "";
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #398da2), color-stop(50%, #fff));
  background-image: linear-gradient(to bottom, #398da2 50%, #fff 50%);
}

@media all and (max-width: 1025px) {
  .bg-base:before {
    width: 100%;
  }
}

.bg-base .inner {
  position: relative;
  z-index: 3;
}

.bg-sub {
  position: relative;
}

.bg-sub:before {
  position: absolute;
  content: "";
  left: auto;
  top: auto;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #a39991;
}

.bg-brown {
  background: #392a1e;
  color: #fff;
}

.bg-green {
  background: rgba(57, 141, 162, 0.3);
}

.bg-gray {
  position: relative;
  background: rgba(240, 241, 237, 0.5);
}

.bg-gray.bg-half {
  background: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50.1%, #f0f1ed), to(#f0f1ed));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #f0f1ed 50.1%, #f0f1ed 100%);
}

.bg-gray2 {
  position: relative;
  margin: 50px 20px;
  padding: 40px 15px;
  background-color: #f1f1f1;
}

.bg-gray2:before {
  position: absolute;
  content: "";
  top: -40px;
  right: 0;
  width: 579px;
  height: 416px;
  background: url(https://www.one-rentacar.jp/img/top-deko2.png) no-repeat;
  z-index: 2;
  opacity: 1;
}

.bg-okinawa {
  position: relative;
}

.bg-okinawa:before {
  position: absolute;
  content: "";
  width: 500px;
  height: 100%;
  top: 0;
  opacity: 0.4;
  z-index: -1;
  right: 0;
  background: url(../img/okinawa.png) repeat-y top right/contain;
}

.bg-okinawa.type1:before {
  position: absolute;
  content: "";
  width: 400px;
  height: 100%;
  top: 0;
  opacity: 0.4;
  z-index: -1;
  right: auto;
  left: 0;
  background: url(../img/okinawa2.png) repeat-y top right/contain;
}

@media all and (max-width: 639px) {
  .bg-okinawa:before {
    width: 200px;
    height: 50%;
    top: auto;
    bottom: 0;
    opacity: 0.3;
  }
}

.bg-okinawa2 {
  position: relative;
}

.bg-okinawa2:before, .bg-okinawa2:after {
  position: absolute;
  content: "";
  width: 400px;
  height: 100%;
  top: 0;
  opacity: 0.4;
  z-index: -1;
}

.bg-okinawa2:before {
  right: 0;
  background: url(../img/okinawa.png) repeat-y top right/contain;
}

.bg-okinawa2:after {
  left: 0;
  background: url(../img/okinawa2.png) repeat-y top right/contain;
}

.bg-dot {
  position: relative;
}

.bg-dot:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/dot.svg);
  background-repeat: repeat;
  background-position: left top;
}

.bg-999 {
  background: #888;
}

.bg-blue {
  background: #d7ebed;
}

.bg-blue.bg-half {
  background: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50.1%, #4daac1), to(#4daac1));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #4daac1 50.1%, #4daac1 100%);
}

.bg-beige {
  background: -webkit-gradient(linear, left top, right top, from(rgba(253, 254, 214, 0.7)), to(rgba(253, 254, 214, 0.4)));
  background: linear-gradient(to right, rgba(253, 254, 214, 0.7), rgba(253, 254, 214, 0.4));
}

.bg-base2 {
  background: rgba(237, 23, 23, 0.7);
}

.bg-base3 {
  background: rgba(237, 23, 23, 0.3);
}

/* tbl
----------------------------------*/
@media all and (max-width: 1025px) {
  .tbl-scroll {
    overflow-x: scroll;
    white-space: nowrap;
    display: block;
  }
}

.tbl {
  width: 100%;
}

.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border: 1px solid #ddd;
}

.tbl th {
  color: #4b3718;
  background: #f0f1ed;
  width: 25%;
}

.tbl th span {
  font-size: 1.4rem;
}

.tbl .cell01 {
  width: 25%;
}

@media all and (max-width: 639px) {
  .tbl th {
    text-align: left;
  }
  .tbl th,
  .tbl td {
    padding: 5px;
  }
}

.tbl.type1 th {
  width: auto;
}

.tbl_new {
  margin: 0 auto;
  width: 100%;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 15px 10px;
  font-size: 1.4rem;
}

@media all and (max-width: 639px) {
  .tbl_new tr th,
  .tbl_new tr td {
    font-size: 13px;
  }
}

.tbl_new tr th {
  font-weight: 600;
  width: 25%;
  color: #333;
  text-align: left;
  padding-left: 30px;
  letter-spacing: 0;
}

@media all and (max-width: 639px) {
  .tbl_new tr th {
    width: 25%;
    padding-left: 10px;
  }
}

.tbl_new tr:nth-child(odd) th,
.tbl_new tr:nth-child(odd) td {
  background: rgba(57, 141, 162, 0.2);
}

.tbl-border {
  width: 100%;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.tbl-border th,
.tbl-border td {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
  font-size: 1.5rem;
}

@media all and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 10px;
    font-size: 1.2rem;
  }
}

.tbl-border th {
  width: 25%;
  color: #c20f0f;
  text-align: left;
  border-bottom-color: #ed1717;
  font-weight: 600;
}

.tbl-border th.th-1 {
  width: 45%;
}

@media all and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}

.price {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #f5dca6;
}

@media all and (max-width: 639px) {
  .price {
    font-size: 1.4rem;
  }
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}

.company th,
.company td {
  padding: 10px 10px;
  vertical-align: middle;
}

.company th {
  text-align: left;
  width: 25%;
  position: relative;
  background: #398da2;
  color: #fff;
  font-weight: 600;
}

.company th::after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #f9f9f9;
  border-width: 10px;
  border-left-color: #398da2;
  margin-top: -10px;
}

.company td {
  background: #f9f9f9;
  padding-left: 20px;
}

.tbl0 {
  width: 100%;
}

.tbl0 th,
.tbl0 td {
  padding: 3px 5px;
  border: 0;
}

.tbl0 th {
  padding-left: 0;
  font-weight: normal;
  background: none;
  width: 25%;
  color: #111;
}

.tbl0 th:after, .tbl0 th:before {
  display: none;
}

@media all and (max-width: 639px) {
  .tbl0 th {
    width: 40%;
  }
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 46.25%;
  height: 0;
  overflow: hidden;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ggmap.youtube {
  padding-bottom: 56.25%;
}

@media all and (max-width: 639px) {
  .ggmap {
    padding-bottom: 60%;
  }
}

/* list
----------------------------------*/
.list_common li {
  padding-bottom: 5px;
  padding-left: 1rem;
  margin-bottom: 5px;
  border-bottom: 1px dotted #cccccc;
  font-weight: 500;
}

.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.list_policy li {
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 2.5rem;
  padding: 15px 5px 15px 40px;
  font-weight: 600;
  position: relative;
}

.list_policy li:not(:last-child) {
  margin-bottom: 5px;
  border-bottom: 1px solid #eee;
}

.list_policy li:before {
  position: absolute;
  content: "";
  width: 25px;
  height: 1px;
  top: 50%;
  left: 0;
  background: #398da2;
}

@media all and (max-width: 900px) {
  .list_policy li {
    font-size: 2rem;
  }
}

@media all and (max-width: 639px) {
  .list_policy {
    padding: 15px;
  }
  .list_policy li {
    font-size: 1.4rem;
  }
}

.list_check.type1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.list_check.type1 li {
  padding: 10px 10px 10px 40px;
  width: 48%;
}

.list_check.type1 li:nth-child(2n) {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .list_check.type1 li {
    width: 95%;
    margin: 0 auto 5px;
  }
  .list_check.type1 li:nth-child(2n) {
    margin-left: auto;
  }
}

.list_check li {
  padding: 10px 10px 10px 35px;
  font-weight: 600;
  position: relative;
  margin-bottom: 10px;
  background: rgba(24, 187, 24, 0.3);
  border-radius: 10px;
}

.list_check li span {
  font-weight: normal;
  font-size: 0.9em;
  display: block;
  color: #4b3718;
  margin-top: 10px;
}

.list_check li:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  top: 50%;
  left: 10px;
  background: #f5c96c;
  border-radius: 50%;
  margin-top: -7px;
}

@media all and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.3rem;
  }
}

.list_check2 {
  margin-bottom: 10px;
}

.list_check2 li {
  padding: 4px 8px;
  font-weight: 600;
  margin-bottom: 4px;
}

.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 8px;
  color: #398da2;
}

.list_check2.type01 > li {
  padding: 10px;
  border-bottom: none;
  font-size: 1.8rem;
}

@media all and (max-width: 639px) {
  .list_check2.type01 > li {
    font-size: 1.3rem;
  }
}

.list-inline3 {
  text-align: center;
}

.list-inline3.type1 li {
  display: inline-block;
}

.list-inline3 li {
  display: inline-block;
  padding: 4px 15px;
  background: #fefefe;
  border: 1px solid #69c1df;
  font-weight: 600;
  border-radius: 30px;
  display: block;
  margin-bottom: 7px;
}

.list-inline3 li span {
  font-size: 1rem;
}

.list-inline2 {
  text-align: center;
}

.list-inline2 li {
  display: inline-block;
  padding: 4px 15px;
  background: #fefefe;
  border: 1px solid #69c1df;
  font-weight: 600;
  border-radius: 30px;
}

.list-inline2 li:not(:last-child) {
  margin-right: 8px;
}

.list-inline.type1 {
  padding: 15px;
  border: 0.9px solid #fff;
  margin-bottom: 20px;
}

.list-inline.type1 li:not(:last-of-type):after {
  color: #fff;
}

.list-inline li {
  display: inline-block;
  padding: 3px;
}

.list-inline li:not(:last-of-type):after {
  content: "/";
  margin: 0 5px;
  color: #ed1717;
  font-weight: normal;
}

.spa-flow {
  counter-reset: number;
  list-style: none;
  padding: 10px;
  background: rgba(57, 141, 162, 0.1);
}

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

.spa-flow.type1 > li {
  width: 48%;
}

.spa-flow > li {
  position: relative;
  padding: 5px 8px 8px 3.5em;
  letter-spacing: 0.1rem;
}

.spa-flow > li:not(:last-child) {
  margin-bottom: 7px;
}

.spa-flow > li:before {
  counter-increment: number;
  position: absolute;
  left: 0;
  top: 0;
  content: counter(number);
  background: rgba(57, 141, 162, 0.6);
  display: block;
  width: 1.8em;
  height: 1.8em;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  color: #ed1717;
  line-height: 1.8em;
  border-radius: 100%;
}

@media all and (max-width: 639px) {
  .spa-flow > li:before {
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    font-size: 1.6rem;
  }
}

.spa-flow > li .next {
  display: block;
}

.spa-flow > li .next:before {
  font-family: "Font Awesome 5 Free";
  content: "\f101";
  font-weight: 900;
  margin-right: 5px;
  color: #398da2;
}

.ol-list {
  counter-reset: number;
  list-style: none;
  padding: 5px;
}

.ol-list li {
  line-height: 2;
  color: #333;
  margin-bottom: 10px;
  padding-bottom: 20px;
  font-weight: 600;
  font-size: 1.6rem;
  border-bottom: 1px dashed #f5c96c;
  padding-left: 52px;
  position: relative;
}

.ol-list li:before {
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  text-align: center;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 1.5;
  border-radius: 100%;
  margin-right: 7px;
  width: 40px;
  height: 40px;
  background-color: #ed1717;
  position: absolute;
  left: 0;
}

@media all and (max-width: 639px) {
  .ol-list li {
    font-size: 1.3rem;
  }
  .ol-list li span {
    font-size: 0.9em;
  }
  .ol-list li:before {
    font-size: 2.2rem;
  }
}

.list_disc li {
  padding: 3px 0 3px 20px;
  position: relative;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
}

.list_disc li:not(:last-of-type) {
  margin-bottom: 5px;
}

.list_disc li:before {
  position: absolute;
  content: "●";
  top: 8px;
  left: 0;
  font-size: 10px;
  color: #f5c96c;
}

@media all and (max-width: 639px) {
  .list_disc li {
    font-size: 1.2rem;
  }
}

.list_disc.type01 li:not(:last-of-type) {
  border-bottom: 1px solid #a39991;
}

.list_disc.type01 li:before {
  color: #ed1717;
}

.list-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.list-btn li {
  width: 32%;
  margin: 0 calc(1.33% + (1.33% / 2)) 10px 0;
}

.list-btn li a {
  display: block;
  background: #fdfed6;
  color: #4b3718;
  font-weight: 600;
  padding: 10px 3px;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  font-size: 1.5rem;
  letter-spacing: 0;
}

.list-btn li:nth-child(3n) {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  .list-btn li {
    width: 90%;
    margin: 0 auto 10px;
  }
  .list-btn li a {
    font-size: 1.2rem;
  }
  .list-btn li:nth-child(3n) {
    margin-right: auto;
  }
}

.list-btn.type1 {
  max-width: 1000px;
  margin: 0 auto 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.list-btn.type1 li a {
  background: #f1f1f1;
  border: 1px solid #c20f0f;
  color: #c20f0f;
  /*
    &:before {
     @include awesome(\f13a);
     margin-right: 5px;
    }*/
}

.list-btn.type1 li a:hover {
  background: #c20f0f;
  color: #fefefe;
}

/* blog
----------------------------------*/
#main .blog-wrap > li {
  width: 32%;
}

@media all and (max-width: 1025px) {
  #main .blog-wrap > li {
    width: 49%;
    margin: 0 0.5% 20px 0.5%;
  }
}

@media all and (max-width: 639px) {
  #main .blog-wrap > li {
    width: 90%;
    margin: 0 auto 10px;
  }
}

.blog-wrap, .blog-wrap2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blog-wrap *, .blog-wrap2 * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.blog-wrap > li, .blog-wrap2 > li {
  width: 24%;
  margin: 0 0.5% 20px 0.5%;
  padding: 15px;
  background: #fefefe;
  position: relative;
  border: 1px solid #ed1717;
}

@media all and (max-width: 1025px) {
  .blog-wrap > li, .blog-wrap2 > li {
    width: 49%;
  }
}

.blog-wrap > li > a, .blog-wrap2 > li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

.blog-wrap > li > a:hover ~ .blog-img img, .blog-wrap2 > li > a:hover ~ .blog-img img {
  opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

@media all and (max-width: 639px) {
  .blog-wrap > li, .blog-wrap2 > li {
    width: 90%;
    margin: 0 auto 10px;
  }
}

.blog-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.blog-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
  /*IE対策*/
}

.blog-img:hover img {
  opacity: 1 !important;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.blog-detail {
  padding-top: 10px;
}

.blog-detail-upper {
  position: relative;
  z-index: 2;
  margin: -31px 0 0;
  color: #fff;
  font-size: 12px;
}

.blog-category {
  display: inline-block;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  background: #111;
}

.blog-page-detail {
  margin-bottom: 15px;
}

.blog-date {
  border: 1px solid #ccc;
  width: 100px;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #aaa;
  font-size: 12px;
}

.blog-date2 {
  color: #aa0d0d;
  font-size: 0.9em;
  margin-bottom: 5px;
  margin-right: 5px;
}

.blog-date2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}

.blog-title {
  font-weight: 600;
  line-height: 1.3;
  margin: 6px 0;
}

.blog-txt {
  line-height: 1.5;
  padding: 8px;
}

@media all and (max-width: 639px) {
  .blog-txt {
    font-size: 12px;
  }
}

.pages {
  text-align: center;
  margin-top: 30px;
}

.pages .page_next,
.pages .page_prev {
  display: inline-block;
  margin: 0 20px;
}

.pages .page_next a,
.pages .page_prev a {
  color: #ed1717;
  padding: 4px 5px;
  background: #fff;
  font-size: 12px;
}

.category_nav {
  border: 1px solid #dddddd;
}

.category_nav li a {
  display: block;
  padding: 15px;
  border-bottom: 1px dotted #dddddd;
  background-color: #ffffff;
}

.category_nav li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  font-weight: 900;
  margin-right: 5px;
}

.category_nav li a:hover {
  background: #f0f1ed;
}

.category_nav li:last-child a {
  border-bottom: none;
}

/* policy
----------------------------------*/
.policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media all and (max-width: 900px) {
  .policy {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.policy_title {
  position: relative;
  margin-right: -1%;
  z-index: 2;
}

@media all and (max-width: 900px) {
  .mtitle_policy_image {
    width: 180px;
  }
}

@media all and (max-width: 639px) {
  .mtitle_policy_image {
    width: 100px;
  }
}

.policy_contents {
  position: relative;
  background-color: #fff;
  padding: 9% 7% 3%;
  margin-top: 5%;
  margin-left: auto;
  width: 100%;
  max-width: 85%;
}

.policy_contents2 {
  position: relative;
  background-color: #fff;
  margin-top: 5%;
  margin-left: auto;
  width: 100%;
  max-width: 85%;
  overflow: hidden;
}

.policy_sub_title {
  margin-bottom: 30px;
}

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

.policy_parents .child {
  width: 48.44%;
  margin: 0 3% 10% 0;
}

.policy_parents .child:nth-child(2n) {
  margin: 0 0 10% 0;
}

.policy_parents2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 5% 7%;
}

.policy_parents2 .child {
  width: 48.44%;
  margin: 0 3% 10% 0;
}

.policy_parents2 .child:nth-child(2n) {
  margin: 0 0 10% 0;
}

.is-affixed .inner-wrapper-sticky {
  top: 110px !important;
}

.policy_contents2 .kdw_style dt,
.policy_contents2 p.kdw_style {
  color: #c38a4c;
  font-size: 170%;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.6em;
}

.policy_contents2 .box {
  padding: 40px;
}

.policy_contents2 .more {
  border-top: solid 1px #1e1200;
  border-bottom: solid 1px #1e1200;
  text-align: center;
  padding: 1.5em 0;
  color: #1e1200;
  letter-spacing: 0.3em;
  line-height: 1em;
  width: 15em;
  font-family: europa, sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-transition: color 0.7s, border-color 0.7s;
  transition: color 0.7s, border-color 0.7s;
}

.policy_contents2 .more a {
  color: #1e1200;
  padding-left: 1em;
}

.policy_contents2 .more:hover {
  border-color: #c38a4c;
}

.policy_contents2 .more:hover a {
  color: #c38a4c;
}

.policy_contents2 .more i {
  font-size: 120%;
}

.policy_contents2 .box01 {
  margin-bottom: 20px;
}

.policy_contents2 .box01 .abs_img {
  position: absolute;
  z-index: 0;
  width: 48%;
  max-width: 510px;
  right: 0;
  top: 0;
  -webkit-transform: translateX(15%);
  transform: translateX(15%);
}

.policy_contents2 .box01 .kdw_style {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.policy_contents2 .box01 .kdw_style dd {
  margin-top: 30px;
  width: 80%;
  max-width: 500px;
}

.policy_contents2 .box01 .point_list {
  width: 85%;
  max-width: 660px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.policy_contents2 .box01 .point_list li {
  width: 33.3333%;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 0 0;
  text-align: center;
  color: #fff;
  font-size: 130%;
  font-weight: bold;
  letter-spacing: .05em;
  line-height: 1.4em;
}

.policy_contents2 .box01 .more {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: translateX(10%);
  transform: translateX(10%);
}

.policy_contents2 .mtm {
  position: relative;
  margin-bottom: 80px;
}

.policy_contents2 .mtm::before {
  content: "";
  /* 背景色 */
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 90%;
  background: rgba(135, 106, 0, 0.1) url(https://www.one-rentacar.jp/img/mtm_img2@2x.jpg) no-repeat right bottom;
  background-size: 310px auto;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media all and (max-width: 1025px) {
  .policy_contents2 .mtm::before {
    background-size: 30% auto;
  }
}

.policy_contents2 .mtm .in_box {
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
}

.policy_contents2 .mtm h4 {
  position: absolute;
  z-index: 0;
  width: 40%;
  /* 揃える */
  max-width: 280px;
  right: 68%;
  top: 0;
}

.policy_contents2 .mtm .point {
  position: absolute;
  z-index: 0;
  width: 20%;
  max-width: 130px;
  right: 0;
  top: 0;
  -webkit-transform: translate(70%, -20%);
  transform: translate(70%, -20%);
}

.policy_contents2 .mtm .kdw_style {
  position: relative;
  z-index: 1;
  width: 70%;
  max-width: 580px;
  margin-left: auto;
  margin-right: 0;
}

.policy_contents2 .mtm .kdw_style dt span {
  display: block;
  color: #333;
  font-size: 60%;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.8em;
}

.policy_contents2 .mtm .kdw_style dd {
  width: 70%;
  max-width: 350px;
  margin-top: 1.5em;
  font-size: 90%;
  letter-spacing: 0.1em;
  line-height: 1.8em;
  position: relative;
}

.policy_contents2 .mtm .kdw_style dd div a {
  margin-top: 1.5em;
  display: block;
  text-align: center;
  background: #c38a4c;
  border-radius: 50px;
  padding: 0.6em 0;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.3em;
  line-height: 1.4em;
}

.policy_contents2 .mtm .abs {
  position: absolute;
  width: 40%;
  /* 揃える */
  right: 70%;
  max-width: 270px;
  top: 90px;
}

.policy_contents2 .box02 {
  background: rgba(237, 193, 187, 0.1);
}

.policy_contents2 .box02 .in_box1 {
  position: relative;
}

.policy_contents2 .box02 .in_box1 .box_l {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 60%;
}

.policy_contents2 .box02 .in_box1 .box_r {
  width: 70%;
  max-width: 550px;
  margin-left: auto;
  margin-right: 0;
  -webkit-transform: translateX(30%);
  transform: translateX(30%);
  position: relative;
  z-index: 0;
}

.policy_contents2 .box02 .in_box1 .box_r li {
  position: relative;
}

.policy_contents2 .box02 .in_box1 .box_r div {
  position: relative;
  z-index: 0;
}

.policy_contents2 .box02 .in_box1 .box_r p {
  position: absolute;
  z-index: 1;
  bottom: 0;
}

.policy_contents2 .box02 .in_box1 .box_r li:first-child p {
  left: 0;
}

.policy_contents2 .box02 .in_box1 .box_r li:last-child p {
  right: 0;
}

@media all and (max-width: 900px) {
  .policy_contents2 .box02 .in_box1 .box_r {
    -webkit-transform: translateX(25%);
    transform: translateX(25%);
  }
}

.policy_contents2 .box02 .in_box2 {
  margin-top: 40px;
  width: 60%;
  max-width: 475px;
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 15%;
}

.policy_contents2 .box02 .in_box2 ul {
  margin-top: 100px;
  position: relative;
}

.policy_contents2 .box02 .in_box2 li {
  /*&:first-child {
					position: relative;
					z-index: 1;
					width: 59%;
				}*/
}

.policy_contents2 .box02 .in_box2 li:last-child {
  position: absolute;
  z-index: 0;
  width: 70%;
  max-width: 325px;
  right: -20px;
  bottom: -70px;
  -webkit-transform: translateX(40%);
  transform: translateX(40%);
  margin-left: auto;
}

.policy_contents2 .box02 .com_bnr_kids {
  position: absolute;
  left: 10%;
  bottom: 5%;
  width: 50%;
  max-width: 450px;
}

.policy_contents2 .box02 .com_bnr_kids p {
  padding: 40px 8% 20px;
  background: url(https://www.one-rentacar.jp/img/bnr_kids2@2x.png) no-repeat right 15%;
  background-size: 88px auto;
}

.policy_contents2 .box02 .com_bnr_kids p a {
  display: block;
  width: 70%;
}

.policy_contents2 .box02 .more {
  border-top: solid 1px #1e1200;
  border-bottom: solid 1px #1e1200;
  text-align: center;
  padding: 1.5em 0;
  color: #1e1200;
  letter-spacing: 0.3em;
  line-height: 1em;
  width: 15em;
  font-family: europa, sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-transition: color 0.7s, border-color 0.7s;
  transition: color 0.7s, border-color 0.7s;
}

.policy_contents2 .box02 .more a {
  color: #1e1200;
  padding-left: 1em;
}

.policy_contents2 .box02 .more:hover {
  border-color: #c38a4c;
}

.policy_contents2 .box02 .more:hover a {
  color: #c38a4c;
}

.policy_contents2 .box02 .more i {
  font-size: 120%;
}

/* Tablet (Portrait)
  ------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .policy_contents2 .kdw_style dt,
  .policy_contents2 p.kdw_style {
    font-size: 160%;
    letter-spacing: 0.1em;
  }
  .policy_contents2 .more {
    font-size: 80%;
    width: 10em;
  }
  .policy_contents2 .box01 {
    padding-top: 8%;
    margin-bottom: 6%;
  }
  .policy_contents2 .box01 .kdw_style {
    margin-bottom: 4%;
  }
  .policy_contents2 .box01 .kdw_style dd {
    margin-top: 4%;
  }
  .policy_contents2 .box01 .point_list li {
    padding: 20% 0 3%;
    font-size: 110%;
  }
  .policy_contents2 .box01 .more {
    -webkit-transform: translateX(30%);
    transform: translateX(30%);
  }
  .policy_contents2 .mtm {
    margin-bottom: 6%;
  }
  .policy_contents2 .mtm::before {
    top: auto;
    bottom: 0;
    -webkit-transform: none;
    transform: none;
    background-size: 30% auto;
  }
  .policy_contents2 .mtm .in_box {
    padding-bottom: 10%;
  }
  .policy_contents2 .mtm h4 {
    right: 80%;
  }
  .policy_contents2 .mtm .point {
    -webkit-transform: translate(50%, -20%);
    transform: translate(50%, -20%);
  }
  .policy_contents2 .mtm .kdw_style {
    width: 90%;
  }
  .policy_contents2 .mtm .kdw_style dd {
    margin-top: 1em;
    margin-left: auto;
    margin-right: 0;
  }
  .policy_contents2 .mtm .kdw_style dd div a {
    width: 70%;
    font-size: 90%;
    letter-spacing: 0.2em;
  }
  .policy_contents2 .mtm .abs {
    right: 60%;
    top: 90px;
  }
  .policy_contents2 .box02 {
    padding-bottom: 8%;
  }
  .policy_contents2 .box02 .in_box1 .box_l {
    width: 70%;
  }
  .policy_contents2 .box02 .in_box1 .box_r {
    width: 50%;
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
  }
  .policy_contents2 .box02 .in_box2 {
    margin-top: 4%;
    width: 50%;
  }
  .policy_contents2 .box02 .in_box2 ul {
    margin-top: 4%;
    position: relative;
  }
  .policy_contents2 .box02 .in_box2 li:last-child {
    width: 60%;
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
  }
  .policy_contents2 .box02 .com_bnr_kids {
    bottom: 25%;
    width: 36%;
  }
  .policy_contents2 .box02 .com_bnr_kids p {
    padding: 10% 8% 5%;
    background-size: 35% auto;
  }
  /* Suport1 */
  /* MTM */
  /* Suport2 */
  /* Suport3-6 */
}

/* Mobile (Portrait)
  ------------------------------------------*/
@media only screen and (max-width: 767px) {
  .box {
    padding-left: 0;
    padding-right: 0;
  }
  .policy_contents2 .kdw_style dt,
  .policy_contents2 p.kdw_style {
    font-size: 140%;
    letter-spacing: 0.05em;
    line-height: 1.4em;
  }
  .policy_contents2 .more {
    padding: 1em 0;
    font-size: 80%;
    letter-spacing: 0.15em;
    width: 12em;
  }
  .policy_contents2 .box01 {
    padding-top: 15%;
    margin-bottom: 5%;
    padding: 15% 6% 5%;
  }
  .policy_contents2 .box01.nopd {
    padding: 15% 0 0;
  }
  .policy_contents2 .box01 .abs_img {
    width: 55%;
    -webkit-transform: translateX(8%);
    transform: translateX(8%);
  }
  .policy_contents2 .box01 .kdw_style {
    margin-bottom: 6%;
    margin-top: 15%;
  }
  .policy_contents2 .box01 .kdw_style dd {
    margin-top: 0.5em;
    width: 100%;
    max-width: 100%;
  }
  .policy_contents2 .box01 .point_list {
    width: 100%;
    max-width: 100;
    margin-bottom: 0;
  }
  .policy_contents2 .box01 .point_list li {
    padding: 5% 0 4%;
    font-size: 90%;
    letter-spacing: normal;
    line-height: 1.6em;
  }
  .policy_contents2 .box01 .point_list dt {
    width: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -33%;
    -webkit-transform: translateY(-20%);
    transform: translateY(-20%);
  }
  .policy_contents2 .box01 .point_list dd.icon {
    width: 70%;
    margin-bottom: 0.5em;
  }
  .policy_contents2 .box01 .more {
    position: static;
    -webkit-transform: none;
    transform: none;
    margin: 6% auto 0;
  }
  .policy_contents2 .mtm {
    margin-bottom: 10%;
  }
  .policy_contents2 .mtm::before {
    height: 95%;
    background-size: 50% auto;
    /* 背景 */
    background-position: right bottom;
    top: 0;
    -webkit-transform: none;
    transform: none;
  }
  .policy_contents2 .mtm .in_box {
    padding-top: 10%;
    padding-bottom: 0;
  }
  .policy_contents2 .mtm h4 {
    width: 50%;
    right: auto;
    left: 0;
    top: 0;
    -webkit-transform: translateY(-30%);
    transform: translateY(-30%);
  }
  .policy_contents2 .mtm .point {
    width: 33%;
    right: -10%;
    -webkit-transform: translateY(-20%);
    transform: translateY(-20%);
  }
  .policy_contents2 .mtm .kdw_style {
    width: 100%;
    max-width: 100%;
  }
  .policy_contents2 .mtm .kdw_style dt span {
    font-size: 70%;
    letter-spacing: 0.05em;
    line-height: 1.6em;
  }
  .policy_contents2 .mtm .kdw_style dd {
    width: 100%;
    max-width: 100%;
    margin-top: 0.5em;
    letter-spacing: 0.05em;
  }
  .policy_contents2 .mtm .kdw_style dd div a {
    letter-spacing: 0.1em;
    margin: 1.5em auto;
  }
  .policy_contents2 .mtm .abs {
    position: relative;
    width: 60%;
    right: auto;
    top: auto;
  }
  .policy_contents2 .box02 {
    padding-bottom: 10%;
    padding: 0 6% 10%;
  }
  .policy_contents2 .box02 .in_box1 .box_r {
    width: 65%;
    -webkit-transform: translateX(15%);
    transform: translateX(15%);
  }
  .policy_contents2 .box02 .in_box2 {
    margin-top: 10%;
    width: 100%;
    max-width: 100%;
  }
  .policy_contents2 .box02 .in_box2 ul {
    margin: 10% 0 10%;
  }
  .policy_contents2 .box02 .in_box2 li:first-child {
    width: 59%;
  }
  .policy_contents2 .box02 .in_box2 li:last-child {
    position: relative;
    width: 100%;
    bottom: -30px;
    right: 0;
    margin: 0 auto;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  .policy_contents2 .box02 .com_bnr_kids {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 5%;
  }
  .policy_contents2 .box02 .com_bnr_kids p,
  .policy_contents2 .box02 .com_bnr_kids div {
    width: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .policy_contents2 .box02 .com_bnr_kids p {
    padding: 0 4%;
    background-size: 40% auto;
  }
  .policy_contents2 .box02 .more {
    padding: 1em 0;
    font-size: 80%;
    letter-spacing: 0.15em;
    width: 12em;
    position: static;
    -webkit-transform: none;
    transform: none;
    margin: 6% auto 0;
  }
  /* Suport1 */
  /* MTM */
  /* Suport2 */
  /* Suport3-6 */
}

/* etc
----------------------------------*/
.cut {
  overflow: hidden;
  zoom: 1;
}

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.spbr_639 {
  display: none;
}

@media all and (max-width: 639px) {
  .spbr_639 {
    display: block;
  }
}

.pcbr_639 {
  display: block;
}

@media all and (max-width: 639px) {
  .pcbr_639 {
    display: none;
  }
}

.color1 {
  color: #ed1717;
}

.color2 {
  color: #398da2;
}

.color3 {
  color: #4b3718;
}

.relative {
  position: relative;
}

.num {
  font-weight: 600;
}

.num a {
  color: #ed1717;
  font-size: 2.8rem;
  text-align: center;
  margin-left: 5px;
}

@media all and (max-width: 639px) {
  .num a {
    font-size: 2rem;
  }
}

.num a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}

.num a:hover {
  color: #f5dca6;
}

.telbox {
  max-width: 600px;
  margin: 0 auto 20px;
  padding: 20px;
  background: #fff;
  text-align: center;
}

.telbox .inner {
  background: #fff;
  padding: 10px;
}

.telbox .inner .bnr_tel {
  font-size: 3rem;
  white-space: nowrap;
  color: #ed1717;
  letter-spacing: .15em;
  position: relative;
}

.telbox .inner .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
  font-size: 2.5rem;
}

.telbox .inner .bnr_tel:hover {
  opacity: .6;
}

@media all and (max-width: 639px) {
  .telbox .inner .bnr_tel {
    font-size: 2rem;
  }
}

.telbox .inner .bnr_fax {
  color: #ed1717;
  font-size: 3rem;
  letter-spacing: .15em;
  position: relative;
}

.telbox .inner .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}

@media all and (max-width: 639px) {
  .telbox .inner .bnr_fax {
    font-size: 2rem;
  }
}

.txt-link {
  font-weight: 600;
  text-decoration: underline;
  color: #c20f0f;
}

.txt-link:hover {
  text-decoration: none;
}

.telbnr {
  max-width: 500px;
  margin: 0 auto 30px;
  padding-top: 30px;
}

.telbnr li {
  border: 3px solid #ed1717;
  padding: 10px 10px;
  text-align: center;
  border-radius: 50px;
}

.telbnr li a {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  color: #4b3718;
}

.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}

.telbnr li a:hover {
  color: #ed1717;
}

.telbnr li:last-of-type {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .telbnr {
    max-width: 90%;
  }
  .telbnr li {
    width: 100%;
    margin: 0 auto 30px;
  }
  .telbnr li:last-of-type {
    margin-left: auto;
  }
  .telbnr li a {
    font-size: 2rem;
  }
}

.telbnr-ttl {
  font-weight: 600;
  font-size: 1.8rem;
  color: #4b3718;
  margin-top: -30px;
}

.telbnr-ttl span {
  background: #fdfed6;
  padding: 0 20px;
}

@media all and (max-width: 639px) {
  .telbnr-ttl {
    font-size: 1.5rem;
  }
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 20px;
  font-size: 1.2rem;
  text-align: center;
}

.breadcrumb li {
  display: inline;
  color: #aaa;
}

.breadcrumb li a {
  color: #ed1717;
}

.breadcrumb li + li:before {
  margin: 0 10px;
  content: "/";
}

@media all and (max-width: 639px) {
  .breadcrumb {
    font-size: 12px;
  }
}

/* form
----------------------------------*/
.form {
  margin: 0 auto;
  width: 90%;
}

.form dl dt {
  float: left;
  width: 280px;
  padding-top: 20px;
  font-weight: 500;
}

.form dl dt span {
  color: #fff;
  background: #ed1717;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
  position: relative;
  top: -2px;
}

.form dl dt span.nini {
  background: rgba(102, 102, 102, 0.5);
  color: #fff;
}

.form dl dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px dotted #cccccc;
}

.form dl dd:last-child {
  border-bottom: none;
}

.form .textarea,
.form textarea {
  border: 0;
  padding: 15px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  background: #f0f0f0;
}

.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}

.form .textarea02:last-child {
  margin-right: 0;
}

.form .textarea03 {
  width: 20%;
  margin-right: 1%;
}

.form button {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  border: 1px solid #ed1717;
  font-weight: 600;
  padding: 12px 5px;
  margin: 0 auto;
  width: 250px;
  background: #ed1717;
  border-radius: 25px;
}

.form button:hover {
  background: #fff;
  color: #ed1717;
}

.form button:before {
  font-weight: normal;
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 10px;
}

.form .select-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form .select-content .select-txt {
  padding: 0 5px;
}

@media all and (max-width: 639px) {
  .form .select-content {
    display: block;
    /*.select-wrap, .select-txt{
  display: inline-block;
 }*/
  }
}

.form .select-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 192px;
  min-width: 12em;
  background-color: #f0f0f0;
  border: 0;
  color: #333;
}

.form .select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  width: -webkit-calc(100% + 5em);
  margin: 0;
  padding: 15px 35px 15px 15px;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}

.form .entypo-down-open-mini:before {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: 900;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  right: 0.75rem;
  margin-top: -8px;
  margin-top: -0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #ed1717;
  font-weight: 700;
}

.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}

.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}

.form label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #ed1717;
  z-index: 1;
}

.form label.radio_text input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  -webkit-box-shadow: 20px -1px #fff;
          box-shadow: 20px -1px #fff;
}

.form label.radio_text input[type="radio"]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form label.radio_text input[type="radio"]:focus {
  opacity: 0.2;
  -webkit-box-shadow: 20px -1px #eeebda;
          box-shadow: 20px -1px #eeebda;
}

.form label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin: 0 20px 5px 0;
  overflow: hidden;
  display: inline-block;
}

.form label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
  padding: 1px;
}

.form label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 25%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #ed1717;
  border-bottom: 3px solid #ed1717;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
}

@media all and (max-width: 639px) {
  .form label.checkbox_text:after {
    margin-top: -18px;
  }
}

.form label.checkbox_text input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  -webkit-box-shadow: 41px 0px #fff;
          box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}

.form label.checkbox_text input[type="checkbox"]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form label.checkbox_text input[type="checkbox"]:checked:focus {
  -webkit-box-shadow: 40px 0px #666;
          box-shadow: 40px 0px #666;
  opacity: 0.1;
}

.form label.checkbox_text input[type="checkbox"]:focus {
  -webkit-box-shadow: 41px 0px #eee;
          box-shadow: 41px 0px #eee;
}

.form input[type="text"],
.form textarea {
  font-size: 16px;
}

@media all and (max-width: 639px) {
  .form input[type="text"],
  .form textarea {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    margin-left: -5px;
  }
}

.fm-txt {
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 5px;
}

.thanks {
  padding: 40px;
  border: 3px solid #fefefe;
  -webkit-box-shadow: 0 0 0 6px rgba(237, 23, 23, 0.2);
          box-shadow: 0 0 0 6px rgba(237, 23, 23, 0.2);
  background: #fefefe;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 20px;
}

@media all and (max-width: 639px) {
  .thanks {
    max-width: 90%;
    padding: 30px 20px;
  }
}

.shadow {
  -webkit-box-shadow: 0 0 10px rgba(75, 55, 24, 0.1);
          box-shadow: 0 0 10px rgba(75, 55, 24, 0.1);
}

.policy-box {
  padding: 30px;
  background: rgba(245, 201, 108, 0.1);
}

@media all and (max-width: 639px) {
  .policy-box {
    padding: 10px;
  }
}

.mtitle_small {
  position: relative;
  letter-spacing: 0;
  padding-bottom: 4px;
  margin-bottom: 15px;
  color: #ed1717;
  font-weight: 600;
  border-bottom: 1px solid #ccc;
}

.mtitle_small .eng {
  font-family: "Jost", sans-serif;
  font-weight: 500;
}

.mtitle_small .genre {
  display: inline-block;
  background: #fff;
  color: #ed1717;
  font-size: 1.4rem;
  padding: 0 4px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  margin-left: auto;
  text-align: right;
}

.mtitle_small:before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #398da2;
  position: absolute;
  left: 0;
  bottom: -1px;
}

@media all and (max-width: 639px) {
  .mtitle_small {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.mtitle_small2 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
}

.mtitle_small2:before {
  content: "";
  background-color: #ed1717;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 0.6em;
  left: 0;
}

.mtitle_small3 {
  position: relative;
  margin-bottom: 30px;
  padding: 10px 20px;
  border-bottom: 1px solid #ed1717;
  border-top: 1px solid #ed1717;
  color: #ed1717;
  font-weight: 600;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 2rem;
}

.mtitle_small3:before {
  content: "";
  width: 10px;
  height: 4px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-top: 10px solid #ed1717;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}

.mtitle_small4 {
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 2rem;
  padding: 15px 15px 15px 30px;
  margin-bottom: 30px;
  font-family: 'Zen Maru Gothic', serif;
  font-weight: 900;
  font-weight: 500;
}

.mtitle_small4:before {
  position: absolute;
  top: 15%;
  left: 8px;
  width: 6px;
  height: 70%;
  content: '';
  background: #ed1717;
}

.mtitle_small4.type1:before {
  background: rgba(57, 141, 162, 0.5);
}

@media all and (max-width: 639px) {
  .mtitle_small4 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding: 12px 12px 12px 24px;
  }
}

.mtitle_small5 {
  position: relative;
  text-align: center;
  font-weight: 500;
  font-size: 2.5rem;
  font-family: "Zen Maru Gothic", serif;
  color: #4b3718;
  margin-bottom: 35px;
}

.mtitle_small5.type1 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  text-align: left;
}

.mtitle_small5.type1 span {
  color: #ed1717;
  display: block;
  font-size: 3rem;
}

.mtitle_small5.type1:after {
  width: 40px;
  left: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.mtitle_small5:after {
  position: absolute;
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  bottom: -10px;
  height: 2px;
  width: 150px;
  background: #ed1717;
}

@media all and (max-width: 639px) {
  .mtitle_small5 {
    font-size: 1.5rem;
  }
  .mtitle_small5.type1 {
    font-size: 1.8rem;
  }
  .mtitle_small5.type1 span {
    font-size: 1.5rem;
  }
}

.mtitle_small5.sbc {
  color: #398da2;
}

.mtitle_small5.sbc:after {
  background: #398da2;
}

/* gallery(photobox)
----------------------------------*/
.gallery_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -2%;
}

@media all and (max-width: 639px) {
  .gallery_ul {
    margin-left: auto;
    margin-right: auto;
  }
}

.gallery_ul > li {
  width: 31.33%;
  margin-left: 2%;
  margin-bottom: 4%;
}

.gallery_ul > li .photobox-wrap {
  width: 100%;
  height: 240px;
  text-align: center;
  overflow: hidden;
  background: rgba(57, 141, 162, 0.1);
  margin-bottom: 10px;
}

.gallery_ul > li .photobox-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit:cover;";
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

@media all and (max-width: 900px) {
  .gallery_ul > li {
    width: 48%;
  }
}

@media all and (max-width: 639px) {
  .gallery_ul > li {
    width: 85%;
    margin: 0 auto 30px;
  }
  .gallery_ul > li .photobox-wrap {
    height: 180px;
  }
}

.comment {
  font-size: 1.4rem;
  letter-spacing: 0;
  padding: 0 5px;
  color: #4b3718;
}

@media all and (max-width: 639px) {
  .comment {
    font-size: 12px;
  }
}

/*photoギャラリー*/
.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery li {
  width: 24%;
  margin: 0 calc(1% + (1% / 3)) 30px 0;
}

.gallery li:nth-child(4n) {
  margin-right: 0;
}

.gallery li a {
  background: rgba(253, 254, 214, 0.2);
  display: block;
  text-align: center;
  padding: 0px;
  height: 230px;
}

.gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}

.gallery li p {
  font-size: 14px;
  margin: 3px 0 0px;
  letter-spacing: 0;
}

@media all and (max-width: 900px) {
  .gallery li {
    width: 48%;
    margin: 0 2% 20px 0;
  }
  .gallery li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery li a {
    height: 150px;
  }
  .gallery li p {
    font-size: 12px;
  }
}

.gallery_date {
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  font-weight: 300;
}

.gallery_date dt {
  float: left;
  width: 5em;
  background: #ed1717;
  padding: 4px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  margin: 2px 0 0;
}

.gallery_date dd {
  padding-left: 6em;
  padding-top: 2px;
  line-height: 1.6;
  margin: 5px 0;
}

.gallery_date dd:last-child {
  border-bottom: 0px;
}

@media all and (max-width: 900px) {
  .gallery_date dt {
    float: none;
    width: 100%;
    margin: 2px 0 0;
  }
  .gallery_date dd {
    padding-left: 0;
    padding-top: 5px;
    padding-bottom: 5px;
    margin: 5px 0;
  }
}

.list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.list2.ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media all and (max-width: 639px) {
  .list2 {
    margin-top: -25px;
  }
}

.list2.type1 > li,
.list2.type1 .child {
  background: #fefefe;
  padding: 25px;
  border-radius: 10px;
  border: 2px solid #aaa;
  -webkit-box-shadow: rgba(51, 51, 51, 0.1) 0px 10px 10px;
          box-shadow: rgba(51, 51, 51, 0.1) 0px 10px 10px;
}

@media all and (max-width: 639px) {
  .list2.type1 > li,
  .list2.type1 .child {
    padding: 15px;
  }
}

.list2 > li,
.list2 .child {
  width: 48%;
  margin-bottom: 30px;
}

.list2 > li:nth-child(2n),
.list2 .child:nth-child(2n) {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .list2 > li:nth-child(2n),
  .list2 .child:nth-child(2n) {
    margin-left: auto;
  }
}

@media all and (max-width: 639px) {
  .list2 > li,
  .list2 .child {
    width: 100%;
    margin: 25px auto 0;
  }
}

.list2 > li .icon,
.list2 .child .icon {
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.list2 > li .icon img,
.list2 .child .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media all and (max-width: 639px) {
  .list2 > li .icon,
  .list2 .child .icon {
    width: 100px;
    height: 100px;
  }
}

.list2 .child1 {
  width: 40%;
}

.list2 .child2 {
  width: 58%;
}

.slide_list {
  position: relative;
  display: none;
  margin-bottom: 20px;
}

.slide_list li {
  margin-right: 1%;
}

.slide_list li img {
  width: 300px;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media all and (max-width: 639px) {
  .slide_list li img {
    height: 180px;
    width: 260px;
  }
}

.slide_list2 {
  position: relative;
  display: none;
}

.slide_list2 li {
  margin-right: 1%;
}

.slide_list2 li img {
  width: 300px;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media all and (max-width: 639px) {
  .slide_list2 li img {
    height: 180px;
    width: 260px;
  }
}

.list3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.list3.jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.list3 > li, .list3 .child {
  width: 31%;
  position: relative;
  margin: 0 calc(2.33% + (2.33% / 2)) 30px 0;
}

.list3 > li:nth-child(3n), .list3 .child:nth-child(3n) {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  .list3 > li, .list3 .child {
    width: 95%;
    margin: 0 auto 30px;
  }
  .list3 > li:nth-child(3n), .list3 .child:nth-child(3n) {
    margin-right: auto;
  }
}

.list3.efct > li, .list3.efct .child {
  border: 1px solid #ed1717;
  position: relative;
  border-radius: 10px;
  width: 32%;
  margin: 0 calc(1% + (1% / 3)) 25px 0;
}

.list3.efct > li:nth-child(3n), .list3.efct .child:nth-child(3n) {
  margin-right: 0;
}

@media all and (max-width: 900px) {
  .list3.efct > li, .list3.efct .child {
    width: 70%;
    margin: 0 auto 50px;
  }
  .list3.efct > li:nth-child(3n), .list3.efct .child:nth-child(3n) {
    margin-right: auto;
  }
}

@media all and (max-width: 639px) {
  .list3.efct > li, .list3.efct .child {
    width: 95%;
    margin: 0 auto 50px;
  }
  .list3.efct > li:nth-child(3n), .list3.efct .child:nth-child(3n) {
    margin-right: auto;
  }
}

.list3.efct > li .img-box, .list3.efct .child .img-box {
  width: 100%;
}

.list3.efct > li .img-box img, .list3.efct .child .img-box img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
  border-radius: 10px 10px 0 0;
}

.list3.efct > li .txt-box, .list3.efct .child .txt-box {
  padding: 20px;
}

.list3.efct > li .title, .list3.efct .child .title {
  font-weight: 500;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 20px;
  color: #398da2;
  font-family: "Zen Maru Gothic", serif;
}

.list3.efct > li .nmb, .list3.efct .child .nmb {
  position: absolute;
  top: -10%;
  left: 2%;
  font-size: 6rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  color: #ed1717;
  text-shadow: 2px 2px #fefefe;
}

@media all and (max-width: 639px) {
  .list3.efct > li .nmb, .list3.efct .child .nmb {
    font-size: 5rem;
  }
}

.list4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.list4 li {
  width: 24%;
  margin: 0 calc(1% + (1% / 3)) 25px 0;
}

.list4 li:nth-child(4n) {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  .list4 li {
    width: 48%;
    margin-right: 4%;
  }
  .list4 li:nth-child(2n) {
    margin-right: 0;
  }
}

.prv dt {
  color: #ed1717;
  border-bottom: 1px solid #ccc;
  margin: 10px 0;
}

#works:before {
  content: "";
  height: 80px;
  margin-top: -80px;
  display: block;
  visibility: hidden;
}

.note {
  padding: 15px;
  margin-top: 10px;
  background: rgba(163, 153, 145, 0.2);
}

/*flow-content
-------------------------------------------*/
.flow-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flow-dl.type1 dt {
  color: #5598c3;
}

.flow-dl.type1 dt span {
  color: #69c1df;
}

.flow-dl .inner {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 15px rgba(75, 55, 24, 0.05);
          box-shadow: 0 0 15px rgba(75, 55, 24, 0.05);
  margin-bottom: 30px;
}

.flow-dl .inner:last-child {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.flow-dl dt {
  width: 10%;
  color: #aa0d0d;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  text-align: center;
}

.flow-dl dt span {
  letter-spacing: 0.2rem;
  color: #ed1717;
  display: block;
  line-height: 1;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 4rem;
}

.flow-dl dd {
  width: 85%;
}

@media all and (max-width: 639px) {
  .flow-dl .inner {
    width: 100%;
  }
  .flow-dl dt {
    font-size: 1.2rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 15px;
    width: 100%;
  }
  .flow-dl dt span {
    font-size: 3rem;
    display: inline-block;
    padding-left: 8px;
  }
  .flow-dl dt p {
    text-align: center;
    margin-top: 10px;
  }
  .flow-dl dd {
    width: 100%;
  }
}

.flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 30px auto 0;
}

.flow__list li {
  width: 31%;
  margin: 0 2% 0 0;
  padding: 20px;
  position: relative;
  border: 1px solid #ed1717;
  border-radius: 20px;
}

.flow__list li:last-child {
  margin: 0;
}

.flow__list li:last-child:before {
  display: none;
}

.flow__list li:before {
  position: absolute;
  content: "";
  width: 16px;
  height: 20px;
  top: 46%;
  right: -16px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #1b6d85;
}

.flow__list .list__photo {
  text-align: center;
  margin: 0 auto;
}

.flow__list .list__photo img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  border-radius: 20px;
}

.flow__list .list__icon {
  position: relative;
  z-index: 1;
  text-align: center;
  background-color: #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: -50px auto 0;
  padding: 18px 10px;
}

.flow__list .list__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.flow__list .list__title {
  text-align: center;
  margin-bottom: 10px;
}

.flow__list .list__title span {
  font-size: 2rem;
  color: #ed1717;
}

.flow__list .btn {
  margin-top: 10px;
}

@media all and (max-width: 900px) {
  .flow__list .list__title span {
    font-size: 1.6rem;
  }
  .flow__list .list__photo img {
    height: 130px;
  }
  .flow__list .list__icon {
    width: 60px;
    height: 60px;
    margin: -30px auto 0;
    padding: 12px 10px;
  }
}

@media all and (max-width: 639px) {
  .flow__list {
    margin: 30px auto 0;
  }
  .flow__list li {
    width: 90%;
    margin: 0 auto 25px;
    padding: 15px;
  }
  .flow__list li:last-child {
    margin: 0 auto 0;
  }
  .flow__list li:before {
    top: auto;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -20px;
    border-bottom: none;
    border-top: 16px solid #ed1717;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
  }
  .flow__list .list__title {
    margin-bottom: 5px;
  }
  .flow__list .list__title span {
    font-size: 1.4rem;
  }
  .flow__list .list__txt {
    font-size: 12px;
  }
}

/*
dispatch-contents
--------------------------------------------*/
.dispatch__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 50px;
}

.dispatch__list li {
  width: 32%;
  margin: 0 2% 20px 0;
}

.dispatch__list li:nth-child(3n) {
  margin: 0;
}

.dispatch__list .list__photo img {
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.dispatch__list .list__title {
  margin: -40px auto 20px;
  text-align: center;
}

.dispatch__list .list__title span {
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  padding: 12px 50px 12px;
  font-size: 2rem;
}

@media all and (max-width: 900px) {
  .dispatch__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .dispatch__list li {
    width: 48%;
    margin: 0 auto 30px;
  }
  .dispatch__list li:nth-child(3n) {
    margin: 0 auto;
  }
  .dispatch__list .list__photo img {
    border-radius: 10px;
  }
  .dispatch__list .list__title {
    margin: -20px auto 10px;
    text-align: center;
  }
  .dispatch__list .list__title span {
    border-radius: 10px 10px 0 0;
    padding: 6px 30px 6px;
    font-size: 14px;
  }
}

@media all and (max-width: 639px) {
  .dispatch__list li {
    width: 90%;
    margin: 0 auto 30px;
  }
  .dispatch__list li:nth-child(2n) {
    margin: 0 auto;
  }
  .dispatch__list .list__photo img {
    border-radius: 10px;
  }
  .dispatch__list .list__title {
    margin: -20px auto 10px;
    text-align: center;
  }
  .dispatch__list .list__title span {
    border-radius: 10px 10px 0 0;
    padding: 6px 30px 6px;
    font-size: 14px;
  }
}

/* category_tab
----------------------------------*/
.innerB {
  width: 100%;
  margin: auto;
  background: #fff;
  margin-top: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.innerB.innerB_news {
  border-top: none;
}

@media all and (max-width: 639px) {
  .innerB {
    padding: 30px 10px;
  }
}

.category_tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 250px auto 0;
  position: relative;
  z-index: 1;
}

.category_tab li {
  width: 18%;
  margin: 0 0.5%;
  cursor: pointer;
}

.category_tab li:last-child {
  margin-right: 20px;
}

.category_tab li.active {
  color: #555;
}

.category_tab li.active:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 350px;
  top: -210px;
  left: 0%;
  background: url(../img/car01.jpg) no-repeat;
  background-size: cover;
  z-index: -1;
  border-radius: 10px;
  background-position: 70% center;
}

.category_tab li.active .inner {
  -webkit-transform: scale(1);
          transform: scale(1);
  background-color: #e6f3ef;
  border: 1px solid #398da2;
  position: relative;
}

.category_tab li.active .inner:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -20px;
  border-top: 20px solid #398da2;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.category_tab li:nth-child(2).active:before {
  background: url(../img/car02.jpg) no-repeat;
  background-size: cover;
  background-position: 70% center;
}

.category_tab li:nth-child(3).active:before {
  background: url(../img/car03.jpg) no-repeat;
  background-size: cover;
  background-position: 70% center;
}

.category_tab li .inner {
  background-color: #fff;
  border: 1px solid #fff;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 1;
  position: relative;
  display: block;
  padding: 20px;
  z-index: 1;
  border-radius: 10px;
}

.category_tab li .inner .category_icon {
  text-align: center;
  margin: 0 auto;
}

.category_tab li .inner .category_icon img {
  width: 100%;
  height: 51px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media all and (max-width: 900px) {
  .category_tab li {
    margin-left: 2px;
    width: 30%;
    padding: 10px;
  }
  .category_tab li:last-child {
    margin-right: 0px;
  }
}

@media all and (max-width: 639px) {
  .category_tab {
    display: block;
    margin: 0 auto;
  }
  .category_tab li {
    margin-left: auto;
    width: 75%;
    padding: 10px;
  }
  .category_tab li:last-child {
    margin-right: 0px;
  }
  .category_tab li .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .category_tab li .inner .category_icon {
    margin: auto;
  }
  .category_tab li .inner .category_icon img {
    width: 100%;
    height: 25px;
  }
  .category_tab li.active {
    color: #555;
  }
  .category_tab li.active:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 310px;
    top: -0px;
    left: 0%;
  }
  .category_tab li.active .inner {
    -webkit-transform: scale(1);
            transform: scale(1);
    background-color: #e6f3ef;
    border: 1px solid #398da2;
    position: relative;
  }
  .category_tab li.active .inner:after {
    position: absolute;
    content: "";
    width: 10px;
    height: 20px;
    left: -30px;
    right: auto;
    margin: 0 auto;
    bottom: 50%;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    border-right: 20px solid #398da2;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
  .category_tab li.active .inner .category_icon img {
    width: 100%;
    height: 25px;
  }
}

.panel {
  display: none;
}

.more-contents {
  display: none;
  padding: 15px;
  background: #fdfed6;
  margin-top: 20px;
}

.txt1 {
  padding-left: 10px;
}

.fee-box {
  margin: 10px 0 20px;
  font-weight: 600;
  background: lemonchiffon;
  padding: 5px;
}

.fee-box span {
  display: block;
  font-weight: normal;
}

.blog-month {
  margin-bottom: 10px;
}

.blog-month ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blog-month ul li {
  width: 49%;
  padding: 5px 0;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 0;
  background: #333;
}

.blog-month ul li:nth-child(2n) {
  margin-left: 2%;
}

.blog-month ul li a {
  color: #fff;
  font-size: 12px;
}

#a01,
#a02,
#a03,
#a04,
#a05,
#a06,
#a07,
#a08,
#contact {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

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

.list-center li:not(:last-child) {
  margin-right: 20px;
}

@media all and (max-width: 639px) {
  .list-center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .list-center li {
    width: 100%;
  }
  .list-center li:not(:last-child) {
    margin: 0 0 15px;
  }
}

/*faq-content*/
.qa-list dl {
  position: relative;
  margin: 30px 0 0;
  cursor: pointer;
  border: 1px solid #f4e8ff;
  border-radius: 20px;
}

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

.qa-list dl.open dt::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.qa-list dl dt {
  position: relative;
  padding: 20px 30px 20px 60px;
  background-color: #ffffff;
  font-size: 1.8rem;
}

.qa-list dl dt:before {
  font-size: 22px;
  line-height: 1;
  position: absolute;
  top: 22px;
  left: 20px;
  display: block;
  content: "Q.";
  color: #ed1717;
  font-weight: bold;
}

.qa-list dl dt:after {
  position: absolute;
  top: 48%;
  right: 26px;
  display: block;
  width: 7px;
  height: 7px;
  margin: auto;
  content: "";
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

.qa-list dl dd {
  position: relative;
  margin: 0;
  padding: 20px 20px 20px 60px;
  background-color: #fefefe;
}

.qa-list dl dd:before {
  font-size: 22px;
  line-height: 1;
  position: absolute;
  left: 20px;
  display: block;
  content: "A.";
  font-weight: bold;
  color: #1B6D85;
}

@media all and (max-width: 896px) {
  .qa-list dl {
    margin: 10px 0 0;
  }
  .qa-list dl:after {
    top: 20px;
    right: 20px;
    width: 7px;
    height: 7px;
  }
  .qa-list dl dt {
    padding: 16px 40px 16px 42px;
    font-size: 14px;
  }
  .qa-list dl dt:before {
    font-size: 14px;
    top: 20px;
    left: 15px;
  }
  .qa-list dl dd {
    margin: 0;
    padding: 16px 20px 16px 40px;
    font-size: 14px;
  }
  .qa-list dl dd:before {
    font-size: 14px;
    left: 15px;
    margin-top: 5px;
  }
}

.faq-dl .faq-inner {
  padding: 10px;
  margin-bottom: 20px;
}

.faq-dl .faq-inner:not(:last-of-type) {
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 3px solid #eee;
}

.faq-dl .faq-inner dt,
.faq-dl .faq-inner dd {
  position: relative;
  padding: 10px 10px 10px 55px;
}

.faq-dl .faq-inner dt:before,
.faq-dl .faq-inner dd:before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  left: 0;
  top: 0;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}

.faq-dl .faq-inner dt {
  margin-bottom: 10px;
  font-weight: 600;
  font-weight: 600;
  color: #c20f0f;
}

.faq-dl .faq-inner dt:before {
  content: "Q";
  color: #ed1717;
  font-size: 3rem;
  background: rgba(237, 23, 23, 0.2);
}

.faq-dl .faq-inner dd:before {
  content: "A";
  color: #398da2;
  font-size: 3rem;
  background: rgba(57, 141, 162, 0.2);
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 30px !important;
  right: auto;
  background: rgba(237, 23, 23, 0.7);
}

@media all and (max-width: 639px) {
  .swiper-button-prev,
  .swiper-container-rtl .swiper-button-next {
    left: 10px !important;
  }
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 30px !important;
  left: auto;
  background: rgba(237, 23, 23, 0.7);
}

@media all and (max-width: 639px) {
  .swiper-button-next,
  .swiper-container-rtl .swiper-button-prev {
    right: 10px !important;
  }
}

@media all and (max-width: 639px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 17px !important;
    height: 28px !important;
    background-size: 17px 28px !important;
  }
}

.point-num {
  position: relative;
  z-index: 2;
  margin: -30px auto 5px;
  line-height: 1;
  color: #111;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 5rem;
  border-radius: 100%;
  text-align: center;
}

@media all and (max-width: 639px) {
  .point-num {
    font-size: 3rem;
  }
}

.bnr-list {
  text-align: center;
}

@media all and (max-width: 900px) {
  .bnr-list li {
    width: 48%;
    margin-right: 4%;
  }
  .bnr-list li:nth-child(2n) {
    margin-right: 0;
  }
}

.bnr-list a {
  display: block;
  text-align: center;
  background: #fefefe;
  padding: 8px 5px;
  font-size: 1.3rem;
  height: 100%;
}

.bnr-list a img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  height: 45px;
}

@media all and (max-width: 639px) {
  .bnr-list a {
    font-size: 12px;
    line-height: 1.5;
  }
  .bnr-list a img {
    height: 30px;
  }
}

.bnr-list li.bnr-txt {
  font-size: 2rem;
  font-weight: 600;
  line-height: 60px;
  background: #fefefe;
}

@media all and (max-width: 639px) {
  .bnr-list li.bnr-txt {
    font-size: 1.5rem;
  }
}

.sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sns-list.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 15px 0;
}

.sns-list li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  color: #fff;
  display: block;
  background: #398da2;
  border-radius: 100%;
  text-align: center;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  position: relative;
}

.sns-list li a:hover {
  opacity: 0.7;
}

.sns-list li a.btn-facebook {
  background: #1877f2;
}

.sns-list li a.btn-twitter {
  background: #1da1f2;
}

.sns-list li a.btn-line {
  background: #00b400;
}

.sns-list li a.btn-instagram {
  overflow: hidden;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}

.sns-list li a.btn-instagram i {
  position: relative;
  z-index: 2;
}

.sns-list li a.btn-instagram:before {
  content: "";
  position: absolute;
  /*絶対配置*/
  top: 18px;
  /*ずらす*/
  left: -10px;
  /*ずらす*/
  width: 50px;
  /*グラデーションカバーの幅*/
  height: 50px;
  /*グラデーションカバーの高さ*/
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  /*グラデーション②*/
}

.sns-list li:not(:last-child) {
  margin-right: 10px;
}

@media all and (max-width: 900px) {
  .sns-list li:not(:last-child) {
    margin-right: 8px;
    margin-bottom: 0;
  }
}

.title-big {
  text-align: center;
  margin-bottom: 30px;
}

.title-big .eng {
  display: block;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 5.5rem;
  color: #ed1717;
  position: relative;
}

.title-big .eng:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(https://www.one-rentacar.jp/img/happa.png) no-repeat 50%/contain;
}

.title-big .ja {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
}

@media all and (max-width: 639px) {
  .title-big .eng {
    font-size: 3.5rem;
  }
  .title-big .eng:before {
    width: 25px;
    height: 25px;
    top: -21px;
  }
  .title-big .ja {
    font-size: 1.4rem;
  }
}

.title01 {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #2c6c7c;
  line-height: 1.4;
}

.title01 .ja {
  font-family: "Zen Maru Gothic", serif;
  display: block;
  font-size: 2.4rem;
  color: #ed1717;
  font-weight: 400;
}

.title02 {
  margin-bottom: 10px;
}

.title02 span {
  display: inline-block;
  background-color: #ed1717;
  padding: 2px 6px;
  color: #fff;
}

.title02 .lead {
  background: #18BB18;
  display: inline-block;
  margin-right: 4px;
  color: #fff;
  padding: 3px 8px;
  font-weight: 600;
  line-height: 1.3;
}

.title03 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 20px;
}

.title03.type1 {
  color: #ed1717;
}

@media all and (max-width: 639px) {
  .title03 {
    font-size: 1.8rem;
    line-height: 1.4;
  }
}

.title04 {
  margin-bottom: 25px;
  position: relative;
  font-size: 1.8rem;
  padding-left: 55px;
  padding-top: 8px;
  color: #4b3718;
}

.title04 .num {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 5rem;
  line-height: 1;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  color: #2c6c7c;
}

@media all and (max-width: 639px) {
  .title04 {
    font-size: 1.3rem;
    padding-left: 50px;
    padding-top: 0;
  }
  .title04 .num {
    font-size: 3rem;
  }
}

.title05 {
  color: #c38a4c;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.6em;
}

@media all and (max-width: 639px) {
  .title05 {
    letter-spacing: 0.1em;
    font-size: 1.6rem;
  }
}

.head-border {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

.head-border span {
  font-size: 2rem;
  color: #832d3a;
  letter-spacing: 0.15em;
}

@media all and (max-width: 639px) {
  .head-border span {
    font-size: 1.4rem;
  }
}

.head-border:before, .head-border:after {
  content: "";
  height: 1px;
  width: 10px;
  background-color: #ed1717;
}

.head-border:before {
  margin-right: 1em;
}

.head-border:after {
  margin-left: 1em;
}

.slick-prev,
.slick-next {
  background: rgba(255, 255, 255, 0.8);
  width: 35px;
  height: 35px;
  z-index: 20 !important;
  border-radius: 50%;
  border: 1px solid #72727b;
  top: 40%;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.slick-prev:before,
.slick-next:before {
  color: #72727b;
}

.slick-prev:hover,
.slick-next:hover {
  background: #f0f1ed;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

.txt01 {
  font-size: 1.4rem;
  letter-spacing: 0;
}

@media all and (max-width: 639px) {
  .txt01 {
    font-size: 13px;
  }
}

.txt02 {
  padding: 25px;
  background: #fefefe;
  border-radius: 20px;
  color: #4b3718;
  font-weight: 600;
}

.flow-txt {
  font-size: 2.2rem;
  text-align: center;
  color: #ed1717;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  margin: 30px auto;
  font-weight: 700;
  letter-spacing: 0.2rem;
}

.flow-txt span {
  font-size: 1.4rem;
  color: #4b3718;
}

.top-gallery {
  margin: 30px auto;
}

.top-gallery li {
  margin: 0 8px;
}

.top-gallery li a {
  display: block;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 20px !important;
}

.top-gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

@media all and (max-width: 639px) {
  .top-gallery li a {
    height: 250px;
  }
}

.vertical-box {
  position: relative;
}

.vertical-box .vertical-content {
  margin-left: 150px;
}

@media all and (max-width: 639px) {
  .vertical-box .vertical-content {
    margin: 20px 0 0;
  }
}

.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.column2.type1 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.column2 .child {
  width: 48%;
}

.column2 .child.map {
  max-width: 310px;
  text-align: center;
  margin: 0 auto;
}

@media all and (max-width: 639px) {
  .column2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .column2 .child {
    width: 100%;
  }
  .column2 .child.column2-img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 30px;
  }
  .column2 .child.map {
    max-width: 200px;
  }
}

.top-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}

.top-list > li {
  width: 23.5%;
  position: relative;
}

.top-list > li:nth-child(even) {
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}

@media all and (max-width: 900px) {
  .top-list > li {
    width: 48%;
    margin-bottom: 30px;
  }
}

.top-list .top-list-title {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
}

.top-list .top-list-title span {
  border-radius: 5px 0 0 0;
  background: #fff;
  color: #4b3718;
  font-weight: 600;
  padding: 3px 8px;
}

@media all and (max-width: 639px) {
  .top-list .top-list-title span {
    display: block;
  }
}

.kiritori {
  height: 1px;
  border-top: 1px dashed rgba(237, 23, 23, 0.4);
  margin: 70px auto;
  width: 80%;
  display: block;
}

@media all and (max-width: 639px) {
  .kiritori {
    margin: 45px auto;
  }
}

/* animation
----------------------------------*/
@-webkit-keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

@keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes animation-bar {
  0% {
    left: 0;
    right: auto;
    width: 0;
  }
  50% {
    left: 0;
    right: auto;
    width: 100%;
  }
  51% {
    left: auto;
    right: 0;
    width: 100%;
  }
  100% {
    left: auto;
    right: 0;
    width: 101%;
  }
}

@keyframes animation-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 101%;
    width: 0;
  }
}

@-webkit-keyframes animation-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes animation-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.animation-content.move .animation-bar:before {
  -webkit-animation: animation-bar 0.8s ease 0s 1 normal forwards;
          animation: animation-bar 0.8s ease 0s 1 normal forwards;
}

.animation-content.move .animation-txt {
  -webkit-animation: animation-txt 0s ease 0.4s 1 normal forwards;
          animation: animation-txt 0s ease 0.4s 1 normal forwards;
}

.animation-content .animation-box {
  display: block;
  text-align: center;
}

.animation-content .animation-bar {
  position: relative;
  display: inline-block;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.animation-content .animation-bar:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #ed1717;
}

.animation-content .animation-txt {
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.effect_fade {
  opacity: 0;
  -webkit-transform: translate(0, 45px);
          transform: translate(0, 45px);
  -webkit-transition: all 2s;
  transition: all 2s;
}

.effect_fade.effect_scroll {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.top-bg {
  position: relative;
}

.top-bg:before {
  position: absolute;
  content: "";
  width: 15%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fdfed6), to(#e3dccb));
  background-image: linear-gradient(to bottom, #fdfed6, #e3dccb);
  z-index: -1;
}

@media all and (max-width: 639px) {
  .top-bg:before {
    width: 30%;
  }
}

.capital {
  margin-bottom: 20px;
}

.capital:first-letter {
  float: left;
  padding: 0 10px 0 0;
  font-size: 4rem;
  line-height: 1;
  font-family: "Zen Maru Gothic",sans-serif;
  font-weight: 500;
  color: #ed1717;
}

.top-greet-box2 {
  position: relative;
  padding: 30px 0;
}

@media all and (max-width: 639px) {
  .top-greet-box2 {
    padding: 40px 20px;
  }
}

.top-greet-box2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(https://www.one-rentacar.jp/img/bg-01.jpg) no-repeat center/cover;
}

.top-greet-box2 .inner {
  max-width: 700px;
  margin: 0 auto;
  font-weight: 600;
  line-height: 2;
  color: #fff;
  position: relative;
  z-index: 2;
}

.name {
  margin: 0px auto 10px;
  position: relative;
  z-index: 2;
  max-width: 85%;
  background: #5598c3;
  padding: 5px;
  color: #fff;
  text-align: center;
}

.name .small {
  display: block;
  font-size: 1rem;
  color: #f5dca6;
}

.staff-txt {
  padding: 10px;
}

.marker-b {
  background: #333;
  color: #fff;
  padding: 0 4px;
}

.marker-brown {
  background: #4b3718;
  color: #fff;
  padding: 0 4px;
}

.menu-head {
  background: url(https://www.one-rentacar.jp/img/menu-head.jpg) no-repeat 70% center/cover;
  height: 350px;
  max-width: 1500px;
  margin: 50px auto;
  border-radius: 30px;
}

@media all and (max-width: 639px) {
  .menu-head {
    height: 200px;
    background-position: center left;
  }
}

.menu-head.type01 {
  background: url(https://www.one-rentacar.jp/img/menu-head2.jpg) no-repeat 70% center/cover;
}

@media all and (max-width: 639px) {
  .menu-head.type01 {
    height: 200px;
    margin: 0px auto 40px;
    background-position: 20% center;
  }
}

.menu-head.type02 {
  background: url(https://www.one-rentacar.jp/img/menu-head3.jpg) no-repeat 70% center/cover;
}

@media all and (max-width: 639px) {
  .menu-head.type02 {
    height: 200px;
    margin: 0px auto 40px;
    background-position: 20% center;
  }
}

.menu-head-txt {
  max-width: 600px;
  margin: 0 auto 50px;
  text-align: center;
}

.menu-list {
  margin-bottom: 30px;
}

.menu-list.type1 li {
  background: #ed1717;
  color: #fff;
}

.menu-list.type1 li .right {
  color: #f5c96c;
}

.menu-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 8px 4px;
}

.menu-list > li.info2 {
  display: block;
  padding: 0;
  color: #725324;
  margin-bottom: 0 !important;
}

.menu-list > li.info2:before {
  display: none;
}

.menu-list > li:not(:last-of-type) {
  margin-bottom: 20px;
}

.menu-list > li p {
  display: inline-block;
  line-height: 1.5;
}

.menu-list > li:before {
  background: radial-gradient(#aaa 20%, transparent 0) center center/8px 8px;
  content: "";
  display: inline-block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 4px;
  margin: 0 1.2em;
}

@media all and (max-width: 639px) {
  .menu-list > li:before {
    margin: 0 5px;
  }
}

.menu-list > li .info {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  font-size: 1.4rem;
  color: #ed1717;
  margin-top: 10px;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding: 8px;
  letter-spacing: 0;
}

@media all and (max-width: 639px) {
  .menu-list > li .info {
    font-size: 13px;
  }
}

.menu-list > li .left {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  max-width: 65%;
  letter-spacing: 0.1rem;
  font-weight: 600;
  position: relative;
}

.menu-list > li .left .small {
  color: #555;
  padding-top: 5px;
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0;
}

.menu-list > li .left:after {
  content: ".";
  display: inline-block;
  width: 0;
  color: transparent;
  pointer-events: none;
}

@media all and (max-width: 639px) {
  .menu-list > li .left {
    max-width: 65%;
  }
  .menu-list > li .left .small {
    font-size: 12px;
  }
}

.menu-list > li .right {
  max-width: 35%;
  text-align: right;
  color: #4b3718;
  font-size: 1.1em;
}

.menu-title {
  margin: -55px 0 30px;
  position: relative;
  z-index: 2;
}

.menu-title span {
  background: #ed1717;
  padding: 4px 8px;
  color: #fff;
  font-size: 1.8rem;
}

.menu-title span em {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2.2rem;
}

@media all and (max-width: 639px) {
  .menu-title {
    margin-top: -45px;
  }
  .menu-title span {
    font-size: 1.3rem;
  }
  .menu-title span em {
    font-size: 1.5rem;
  }
}

/* --calendar--
----------------------------------*/
.calendar_head {
  color: #222;
  padding: 6px;
}

.calendar-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 0.9em;
}

.calendar-box div.calendar {
  width: 48%;
}

@media all and (max-width: 639px) {
  .calendar-box div.calendar {
    width: 100%;
    margin-bottom: 10px;
  }
}

.calendar-box table {
  width: 100%;
}

.calendar-box table th,
.calendar-box table td {
  width: 14.28%;
  border: 0.9px solid #666;
  font-weight: normal;
  padding: 5px;
  height: 45px;
  font-size: 1.3rem;
  color: #4b3718;
}

@media all and (max-width: 639px) {
  .calendar-box table th,
  .calendar-box table td {
    height: 40px;
    font-size: 1.2rem;
  }
}

.calendar-box table th {
  background: #fdfed6;
  vertical-align: middle;
  font-weight: 600;
}

.calendar-box table td {
  background: #fefefe;
}

.calendar-box table td.off {
  background: #398da2;
  color: #5d2029;
}

.calendar-box th.sun,
.calendar-box td.sun {
  color: #5d2029;
}

.calendar-box th.sat,
.calendar-box td.sat {
  color: #5598c3;
}

.calendar-box .item-td {
  background: #eadc8b;
}

.calendar-box .item-td .days {
  color: #4b3718;
}

.calendar-box .item-td .item {
  display: none;
}

.calendar-info {
  max-width: 300px;
  margin: 20px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  background: #fff;
  padding: 10px;
}

.calendar-info .info-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.calendar-info .info-child:not(:last-child) {
  margin-right: 20px;
}

.calendar-info .info-txt {
  margin-left: 10px;
}

.calendar-info .mark {
  font-size: 2.5rem;
}

.calendar-info .mark.mark1 {
  color: #398da2;
}

.calendar-info .mark.mark2 {
  color: #d1edf9;
}

.top-btn-instagram {
  margin: 40px auto;
  display: block;
  position: relative;
  width: 380px;
  padding: 20px 0;
  text-align: center;
  color: #ed1717;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#fff), color-stop(#fdfed6), to(#e3dccb));
  background-image: linear-gradient(to right bottom, #fff, #fdfed6, #e3dccb);
  -webkit-box-shadow: rgba(57, 141, 162, 0.1) 0px 10px 50px;
          box-shadow: rgba(57, 141, 162, 0.1) 0px 10px 50px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 2rem;
}

.top-btn-instagram:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 110px;
  top: -110px;
  left: 50%;
  background: #398da2;
  opacity: 0.4;
}

.top-btn-instagram:after {
  position: absolute;
  content: "Check It Out!";
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  right: -40px;
  bottom: -10px;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  color: #398da2;
  font-size: 2.2rem;
}

.top-btn-instagram:hover {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.top-btn-instagram:hover:before {
  top: -80px;
  height: 80px;
}

@media all and (max-width: 639px) {
  .top-btn-instagram {
    width: 80%;
  }
  .top-btn-instagram:after {
    font-size: 1.5rem;
    right: -5%;
  }
}

.frame-box {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  -webkit-box-shadow: rgba(57, 141, 162, 0.1) 0px 10px 50px;
          box-shadow: rgba(57, 141, 162, 0.1) 0px 10px 50px;
  border: 4px double #4b3718;
  background: #fefefe;
}

.frame-box:before, .frame-box:after {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  top: 0;
  opacity: 0.7;
}

@media all and (max-width: 639px) {
  .frame-box:before, .frame-box:after {
    width: 40px;
    height: 40px;
    opacity: 0.5;
  }
}

.frame-box:before {
  background: url(https://www.one-rentacar.jp/img/fr-left.png) no-repeat left top/contain;
  left: 0;
}

.frame-box:after {
  background: url(https://www.one-rentacar.jp/img/fr-right.png) no-repeat right top/contain;
  right: 0;
}

.frame-bottom {
  position: relative;
}

.frame-bottom:before, .frame-bottom:after {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  bottom: 0;
  opacity: 0.7;
}

@media all and (max-width: 639px) {
  .frame-bottom:before, .frame-bottom:after {
    width: 40px;
    height: 40px;
    opacity: 0.5;
  }
}

.frame-bottom:before {
  background: url(https://www.one-rentacar.jp/img/fr-b-left.png) no-repeat left top/contain;
  left: 0;
}

.frame-bottom:after {
  background: url(https://www.one-rentacar.jp/img/fr-b-right.png) no-repeat right top/contain;
  right: 0;
}

.frame-inner {
  padding: 75px 40px;
  position: relative;
  z-index: 2;
}

@media all and (max-width: 639px) {
  .frame-inner {
    padding: 40px 12px;
  }
}

.pai-list {
  position: relative;
  padding: 25px;
  text-align: center;
  font-size: 2rem;
  line-height: 1.3;
  background: #fff;
  color: #4b3718;
  font-weight: 600;
}

@media all and (max-width: 639px) {
  .pai-list {
    font-size: 1.3rem;
    padding: 15px;
  }
}

.pai-list:before, .pai-list:after {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  opacity: 0.7;
}

@media all and (max-width: 639px) {
  .pai-list:before, .pai-list:after {
    width: 25px;
    height: 25px;
  }
}

.pai-list:before {
  left: 0;
  top: 0;
  border-top: 0.9px solid #398da2;
  border-left: 0.9px solid #398da2;
}

.pai-list:after {
  right: 0;
  bottom: 0;
  border-right: 0.9px solid #398da2;
  border-bottom: 0.9px solid #398da2;
}

.system-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 15px;
}

.system-dl dt,
.system-dl dd {
  margin-bottom: 5px;
}

.system-dl dt {
  background: #f5c96c;
  padding: 5px;
  color: #fff;
  border-radius: 10px;
  width: 30%;
  text-align: center;
}

@media all and (max-width: 639px) {
  .system-dl dt {
    padding: 5px;
    letter-spacing: 0;
    font-size: 13px;
  }
}

.system-dl dd {
  width: 67%;
  line-height: 1.1;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.system-dl dd span {
  font-size: 2.6rem;
  color: #832d3a;
}

.system-dl dd span.type1 {
  font-size: 2.2rem;
  line-height: 1.3;
}

@media all and (max-width: 639px) {
  .system-dl dd span {
    font-size: 1.6rem;
  }
  .system-dl dd span.type1 {
    font-size: 1.4rem;
  }
}

.system-box {
  background: rgba(253, 254, 214, 0.8);
  padding: 10px;
  position: relative;
}

.system-box:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 0 24px 24px 0;
  border-color: transparent #fefefe transparent transparent;
}

.hoshou {
  font-weight: 600;
  border-bottom: 1px solid #ccc;
}

.hoshou span {
  font-size: 2rem;
  color: #832d3a;
}

.style {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}

.style a {
  display: block;
  width: 47%;
  height: 300px;
  padding: 0 10px;
}

@media all and (max-width: 639px) {
  .style a {
    height: 240px;
    padding: 0 5px;
  }
}

.style a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  -o-object-position: 50% 0%;
     object-position: 50% 0%;
}

.recipe {
  position: relative;
  padding: 20px 10px 10px;
  margin-top: 10px;
}

.recipe:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  background-image: repeating-linear-gradient(-45deg, #ddd, #ddd 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  opacity: 0.5;
}

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

.recipe-dl dt {
  width: 5.5em;
  color: #1e4b57;
  text-transform: uppercase;
}

.recipe-dl dt:after {
  content: "・・・";
  margin-left: 3px;
  font-size: 10px;
}

.recipe-dl dd {
  width: calc(100% - 7em);
}

.fixed-btn {
  position: fixed;
  right: 0;
  bottom: 10%;
  z-index: 100;
}

.fixed-btn li {
  background: #fff;
  height: 65px;
  width: 65px;
}

.fixed-btn li a {
  background: #398da2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0 12px;
  height: 100%;
  width: 100%;
  -webkit-transition: .2s;
  transition: .2s;
}

.fixed-btn li i {
  color: #fff;
  font-size: 2rem;
}

.fixed-btn li:hover a {
  background: #ed1717;
  color: #398da2;
}

.fixed-btn li:hover a .ttl {
  color: #398da2;
}

.fixed-btn li:hover i {
  color: #398da2;
}

@media all and (max-width: 900px) {
  .fixed-btn {
    /*
		display: flex;
		flex-wrap: wrap;
		width: 60%;
		top: auto;
		bottom: 0;
		right: 50%;
		transform: translateX(50%);
		-webkit-transform: translateX(50%);
    */
    display: none;
  }
}

.fixed-btn .ttl {
  color: #fff;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1;
}

.fixed-btn .bg-red {
  background: #832d3a;
}

.tcen {
  text-align: center;
}

@media all and (max-width: 639px) {
  .tcen {
    text-align: left;
  }
}

.top-bnr_bdr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.top-bnr_bdr li {
  width: 48%;
  position: relative;
}

.top-bnr_bdr li:nth-child(2n) {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .top-bnr_bdr li:nth-child(2n) {
    margin-left: auto;
  }
}

@media all and (max-width: 639px) {
  .top-bnr_bdr li {
    width: 100%;
    margin: 25px auto 0;
  }
}

.top-bnr_bdr .img_bdr {
  border-radius: 30px;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#255c69), color-stop(#398da2), to(#ffc5d9));
  background-image: linear-gradient(to right bottom, #255c69, #398da2, #ffc5d9);
  height: 380px;
  overflow: hidden;
}

.top-bnr_bdr .img_bdr img {
  opacity: .2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

.top-bnr_bdr .img_bdr:hover img {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  opacity: .7;
}

.top-bnr_bdr .ttl_bdr {
  text-align: center;
  margin-bottom: 45px;
  letter-spacing: .2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fefefe;
}

.top-bnr_bdr .ttl_bdr .en {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 3.5rem;
}

.top-bnr_bdr .ttl_bdr .en::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #fefefe;
  margin: 20px auto 0;
}

.top-bnr_bdr .ttl_bdr .ja {
  display: block;
  font-size: 1.5rem;
  margin-top: 20px;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
}

@media all and (max-width: 900px) {
  .top-bnr_bdr .ttl_bdr .en {
    font-size: 2rem;
  }
  .top-bnr_bdr .ttl_bdr .ja {
    font-size: 1.3rem;
  }
}

.top-bnr_bdr .label {
  font-size: 1.2rem;
  color: #fefefe;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  top: 20px;
  right: 10px;
  text-transform: uppercase;
}

.ks_flow {
  position: relative;
  margin: 0;
  padding: 0;
}

@media all and (max-width: 900px) {
  .ks_flow {
    width: 95%;
    margin: 0 auto;
  }
}

.ks_flow::before {
  content: "";
  display: block;
  position: absolute;
  top: 40px;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  width: 2px;
  height: 89%;
  background-color: #f1f1f1;
}

@media all and (max-width: 900px) {
  .ks_flow::before {
    left: 5%;
  }
}

.ks_flow li {
  margin-left: auto;
  width: 40%;
  position: relative;
}

.ks_flow li::before {
  content: "";
  display: block;
  position: absolute;
  top: 38px;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border: 12px solid #398da2;
  border-radius: 50%;
  left: -25%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.ks_flow li .nmb {
  font-size: 5rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  color: #ed1717;
}

.ks_flow li .ttl {
  font-size: 2rem;
  color: #ed1717;
  margin-bottom: 20px;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
}

.ks_flow li .img_box {
  overflow: hidden;
  border-radius: 20px;
  height: 200px;
  margin-bottom: 20px;
}

.ks_flow li .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

.ks_flow li p {
  font-size: 1.4rem;
  color: #777;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.ks_flow li:nth-child(2n) {
  margin-right: auto;
  margin-left: 0;
}

.ks_flow li:nth-child(2n) .ttl, .ks_flow li:nth-child(2n) .nmb {
  text-align: right;
}

.ks_flow li:nth-child(2n)::before {
  left: auto;
  right: -25%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

@media all and (max-width: 900px) {
  .ks_flow li {
    width: 85%;
  }
  .ks_flow li::before {
    left: -12%;
  }
  .ks_flow li:nth-child(2n) {
    margin-right: 0;
    margin-left: auto;
  }
  .ks_flow li:nth-child(2n) .ttl, .ks_flow li:nth-child(2n) .nmb {
    text-align: left;
  }
  .ks_flow li:nth-child(2n)::before {
    left: -12%;
    right: auto;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.letter_img figure {
  margin-right: 32px;
}

.letter_img_r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.letter_img_r figure {
  margin-left: 32px;
}

.letter_img,
.letter_img_r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 16px;
  margin-bottom: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.letter_img figure,
.letter_img_r figure {
  /* 画像の説明文 */
}

.letter_img figure img,
.letter_img_r figure img {
  width: 600px;
}

.letter_img figure figcaption,
.letter_img_r figure figcaption {
  text-align: left;
}

.letter_img .info,
.letter_img_r .info {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  height: 100%;
  position: relative;
}

.letter_img .info .bottom,
.letter_img_r .info .bottom {
  position: absolute;
  bottom: -160px;
  left: 0;
  right: 0;
}

@media all and (max-width: 900px) {
  .letter_img,
  .letter_img_r {
    display: block;
  }
  .letter_img figure,
  .letter_img_r figure {
    margin: 0 auto;
    text-align: center;
  }
  .letter_img figure img,
  .letter_img_r figure img {
    width: auto;
  }
  .letter_img .info,
  .letter_img_r .info {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    height: 100%;
    position: static;
    padding: 16px;
  }
  .letter_img .info .bottom,
  .letter_img_r .info .bottom {
    position: static;
    bottom: auto;
    left: 0;
    right: 0;
  }
}

.frame {
  padding: 32px;
  background-color: #fff;
}

.frame h2,
.frame p {
  text-align: justify;
  text-justify: inter-ideograph;
}

@media all and (max-width: 639px) {
  .frame {
    padding: 16px;
  }
}

.dl_list {
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  font-weight: 300;
}

.dl_list dt {
  float: left;
  width: 12em;
  background: #ed1717;
  padding: 5px 0px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  margin: 2px 0 0;
}

.dl_list dd {
  padding-left: 13em;
  padding-top: 5px;
  padding-bottom: 10px;
  line-height: 1.6;
  border-bottom: dotted 1px #aaa;
  margin: 5px 0;
}

.dl_list dd:last-child {
  border-bottom: 0px;
}

@media all and (max-width: 900px) {
  .dl_list dt {
    float: none;
    width: 100%;
    margin: 2px 0 0;
  }
  .dl_list dd {
    padding-left: 0;
    padding-top: 5px;
    padding-bottom: 5px;
    margin: 5px 0;
  }
}

.total_bx {
  text-align: center;
  background-color: #fff;
  padding: 16px 0;
  margin-bottom: 16px;
  margin-top: 50px;
}

input#total {
  border: 0px solid #fff;
  font-size: 2.3rem;
  width: 8em;
  color: #ed1717;
  background: #fff;
  text-align: right;
}

.sec01 {
  padding: 130px 11vw 0;
  position: relative;
}

@media all and (max-width: 900px) {
  .sec01 {
    padding: 30px 0 30px;
  }
}

.t-layout-wrapper {
  position: relative;
}

.t-layout-wrapper .t-ttl01 {
  left: -85px;
  top: 4vw;
  display: inline-block;
  width: 22px;
  color: #a39991;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: lighter;
  position: absolute;
  width: 42px;
}

.t-layout-wrapper .t-ttl01.type1 {
  right: -85px;
  left: auto;
  top: 0;
}

.t-layout-wrapper .t-ttl01:before {
  background: #a39991;
  content: "";
  display: inline-block;
  height: 80px;
  width: 1px;
  margin-bottom: 24px;
}

@media all and (max-width: 900px) {
  .t-layout-wrapper .t-ttl01 {
    display: block;
    width: auto;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    font-size: 22px;
    position: static;
    margin-bottom: 20px;
  }
  .t-layout-wrapper .t-ttl01:before {
    height: 1px;
    width: 80px;
    margin: 0 15px 0 0;
    vertical-align: middle;
  }
}

.t-layout-wrapper .t-ttl02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ed1717;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 28px;
  letter-spacing: 0.1em;
  margin-bottom: -6px;
  font-weight: 400;
}

.t-layout-wrapper .t-ttl02 .num {
  color: #111;
  font-family: "Oswald";
  font-size: 6vw;
  letter-spacing: 0.1em;
  font-weight: lighter;
  vertical-align: middle;
  margin-right: 50px;
}

.t-layout {
  display: block;
}

.t-layout .l-img {
  width: 100%;
  min-width: 0;
}

.t-layout .l-img img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  max-height: 100%;
  height: 400px;
  width: 100%;
  border-radius: 30px;
}

@media all and (max-width: 900px) {
  .t-layout .l-img img {
    border-radius: 0;
  }
}

@media all and (max-width: 639px) {
  .t-layout .l-img img {
    height: auto;
  }
}

.t-layout .l-desc {
  background: white;
  width: 70%;
  margin: -150px auto 0;
  padding: 4vw 5vw;
  position: relative;
  z-index: 5;
  border-radius: 30px;
  -webkit-box-shadow: 0 0 30px rgba(51, 51, 51, 0.1);
          box-shadow: 0 0 30px rgba(51, 51, 51, 0.1);
}

.t-layout .l-desc.bg-white {
  background: white;
}

@media all and (max-width: 900px) {
  .t-layout .l-desc {
    margin: -200px auto 0;
    padding: 50px;
    width: 90%;
  }
}

@media all and (max-width: 639px) {
  .t-layout .l-desc {
    margin: -50px auto 0;
    padding: 30px;
  }
}

.t-layout .l-desc .l-ttl01 {
  line-height: 1;
  position: absolute;
  left: 63px;
  top: -45px;
}

.t-layout .l-desc .l-ttl01 .num {
  font-family: "Jost", sans-serif;
  font-size: 6vw;
  letter-spacing: 0.1em;
  font-weight: lighter;
  vertical-align: middle;
  margin-right: 35px;
}

.t-layout .l-desc .l-ttl02 {
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  letter-spacing: .1em;
  margin-bottom: 30px;
}

@media all and (max-width: 900px) {
  .t-layout .l-desc .l-ttl02 {
    margin-bottom: 20px;
  }
}

.t-layout .l-desc .l-ttl02 .main-ttl {
  display: block;
  color: #ed1717;
  font-size: 20px;
  margin-bottom: 25px;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  line-height: 1.7;
}

@media all and (max-width: 900px) {
  .t-layout .l-desc .l-ttl02 .main-ttl {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.7;
  }
}

@media all and (max-width: 639px) {
  .t-layout .l-desc .l-ttl02 .main-ttl {
    text-align: center;
    letter-spacing: .4rem;
  }
}

.t-layout .l-desc .l-ttl02 .sub-ttl {
  display: block;
  font-size: 20px;
  line-height: 2;
}

.t-layout .l-desc .l-txt {
  margin-bottom: 0px;
}

.t-layout.p02 {
  margin-bottom: 80px;
}

.t-layout.p02 .l-img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.t-layout.p02 .l-desc {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin: 4vw 0 0 -125px;
}

@media all and (max-width: 1025px) {
  .t-layout.p02 .l-desc {
    margin: 24vw 70px 0 -350px;
  }
}

@media all and (max-width: 900px) {
  .t-layout.p02 .l-desc {
    margin: -200px auto 0;
    padding: 50px;
    width: 90%;
  }
}

@media all and (max-width: 639px) {
  .t-layout.p02 .l-desc {
    margin: -50px auto 0;
    padding: 30px 15px;
  }
}

@media all and (max-width: 900px) {
  .t-layout.p02 {
    margin-bottom: 40px;
  }
  .t-layout.p02 .l-img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .t-layout.p02 .l-desc {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: -50px auto 0;
  }
}

.t-layout .l-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px -15px -20px;
}

@media all and (max-width: 900px) {
  .t-layout .l-btn {
    display: block;
    margin: 20px 0 -15px;
  }
}

.t-layout .l-btn li {
  margin: 0 auto 20px;
  width: 90%;
}

@media all and (max-width: 900px) {
  .t-layout .l-btn li {
    margin: 0 auto 15px;
    width: 100%;
  }
}

.t-layout .l-btn li a {
  min-width: 0;
  width: 100%;
}

.t-layout .l-btn li .btn-style01 {
  display: inline-block;
  border: 1px solid #fff;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  min-width: 250px;
  padding: 12px 30px;
  position: relative;
  text-align: left;
  -webkit-transition: .2s;
  transition: .2s;
  color: #fff;
}

.t-layout .l-btn li .btn-style01:after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 20px;
  top: calc(50% - 4px);
  -webkit-transition: .4s;
  transition: .4s;
}

.t-layout .l-btn li .btn-style01:hover {
  background: #111;
  color: #fff;
}

.t-layout .l-btn li .btn-style01:hover:after {
  right: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.sec05-card-wrapper {
  width: calc(100% - 4vw);
  margin: 0 auto;
}

.sec01_2 {
  padding: 130px 11vw 100px 0;
  position: relative;
}

@media all and (max-width: 1025px) {
  .sec01_2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media all and (max-width: 900px) {
  .sec01_2 {
    padding: 60px 0 30px;
  }
}

/* --top-bnr-list--
----------------------------------*/
.top-bnr-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 40px 40px;
  padding: 0 10px;
}

.top-bnr-list .top-bnr-wrap {
  display: block;
  height: 100%;
  position: relative;
}

.top-bnr-list .top-bnr-wrap:hover figure img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0.8;
}

.top-bnr-list .top-bnr-wrap:hover .morebtn {
  background: #398da2;
  color: #fff;
}

.top-bnr-list .top-bnr-title {
  position: absolute;
  left: -10px;
  top: 15px;
  z-index: 2;
}

.top-bnr-list .top-bnr-title span {
  font-family: "YakuHanJP", "Lato", "Zen Kaku Gothic New", "Zen Maru Gothic", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  letter-spacing: 0.2em;
  background: #fff;
  padding: 8px;
  font-size: 1.6rem;
  color: #4f3b27;
  border-left: 3px solid #ed1717;
}

.top-bnr-list figure {
  width: 100%;
  height: 250px;
  background: #111;
  overflow: hidden;
}

.top-bnr-list figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  opacity: 1;
}

.top-bnr-list .top-bnr-txt {
  max-width: 100%;
  position: relative;
  margin: 0 auto;
  color: #4b3718;
  padding: 15px;
  font-size: 95%;
}

.top-bnr-list .morebtn {
  text-align: center;
  width: 150px;
  background: #fff;
  border: 1px solid #398da2;
  color: #398da2;
  border-radius: 40px;
  position: relative;
  z-index: 2;
  padding: 5px 0;
  margin: -20px auto 0;
  font-size: 90%;
  font-weight: 600;
  -webkit-transition: .2s ease-in all;
  transition: .2s ease-in all;
}

@media all and (max-width: 900px) {
  .top-bnr-list {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 50px 0;
    padding: 0 10px;
  }
  .top-bnr-list .top-bnr-title span {
    font-size: 1.3rem;
  }
  .top-bnr-list figure {
    height: 200px;
  }
  .top-bnr-list .top-bnr-txt {
    padding: 10px 5px;
  }
}

.top-bnr-list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1500px;
  margin: 0 auto;
}

.top-bnr-list2 > li {
  width: 31%;
  position: relative;
  margin-bottom: 20px;
}

.top-bnr-list2 > li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.top-bnr-list2 > li a:hover {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.top-bnr-list2 > li a:hover .btn-arrow {
  background: #ed1717;
}

.top-bnr-list2 > li a:hover .btn-arrow i {
  border-bottom-color: #fefefe;
}

.top-bnr-list2 > li a:hover .btn-arrow i:before {
  border-right-color: #fefefe;
}

.top-bnr-list2 > li a:hover .top-bnr-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media all and (max-width: 1025px) {
  .top-bnr-list2 {
    width: 85%;
    margin: 0 auto;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

@media all and (max-width: 900px) {
  .top-bnr-list2 {
    width: 95%;
  }
}

@media all and (max-width: 639px) {
  .top-bnr-list2 {
    width: 95%;
  }
  .top-bnr-list2 > li {
    width: 100%;
  }
}

.top-bnr-list2 .top-bnr-img {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.top-bnr-list2 .top-bnr-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.top-bnr-list2 .top-bnr-img .point {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(51, 51, 51, 0.7);
  padding: 5px;
  font-size: 1.3rem;
  color: #fefefe;
  border: 1px solid #fefefe;
}

@media all and (max-width: 639px) {
  .top-bnr-list2 .top-bnr-img {
    height: 200px;
  }
}

.top-bnr-list2 .btn-arrow {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 5px;
  top: 200px;
  text-align: center;
  line-height: 60px;
  border: 1px solid #ed1717;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media all and (max-width: 639px) {
  .top-bnr-list2 .btn-arrow {
    top: 180px;
  }
}

.top-bnr-list2 .btn-arrow i {
  display: block;
  position: absolute;
  width: 30px;
  border-bottom: 1px solid #ed1717;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 5px;
}

.top-bnr-list2 .btn-arrow i:before {
  position: absolute;
  width: 10px;
  height: 8px;
  content: "";
  right: 3px;
  bottom: -1px;
  border-right: 2px solid #ed1717;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
}

.top-bnr-list2 .top-bnr-title {
  font-weight: 500;
  padding: 15px;
  line-height: 1.4;
}

.top-bnr-list2 .top-bnr-title .eng {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #ed1717;
  display: block;
}

.top-bnr-list2 .top-bnr-title .ja {
  font-size: 1.8rem;
  display: block;
  color: #222;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
}

@media all and (max-width: 639px) {
  .top-bnr-list2 .top-bnr-title .eng {
    font-size: 1.2rem;
  }
  .top-bnr-list2 .top-bnr-title .ja {
    font-size: 1.6rem;
  }
}

.top-bnr-list2 .top-bnr-txt {
  color: #222;
  padding: 10px;
  font-size: 1.4rem;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.btn03 {
  background: #fefefe;
  text-align: center;
  width: 300px;
  margin: 15px auto;
  color: #4d2c2b;
  padding: 8px 5px;
  font-weight: 600;
  border: 2px solid #ed1717;
  border-radius: 35px;
  overflow: hidden;
  position: relative;
  display: block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.btn03.t-20 {
  margin-top: 20px;
  margin-bottom: 0;
}

@media all and (max-width: 639px) {
  .btn03 {
    width: 260px;
  }
}

.btn03 span {
  position: relative;
}

.btn03 .fas {
  position: relative;
}

.btn03::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #587fd1;
  border-radius: 50% 50% 0 0/100% 100% 0 0;
  -webkit-transition: border-radius 0.35s cubic-bezier(0.55, 0.085, 0.68, 0.53) 40ms, -webkit-transform 0.48s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: border-radius 0.35s cubic-bezier(0.55, 0.085, 0.68, 0.53) 40ms, -webkit-transform 0.48s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: transform 0.48s cubic-bezier(0.895, 0.03, 0.685, 0.22), border-radius 0.35s cubic-bezier(0.55, 0.085, 0.68, 0.53) 40ms;
  transition: transform 0.48s cubic-bezier(0.895, 0.03, 0.685, 0.22), border-radius 0.35s cubic-bezier(0.55, 0.085, 0.68, 0.53) 40ms, -webkit-transform 0.48s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
}

.btn03:hover {
  color: #fff;
}

.btn03:hover::before {
  background-color: #ed1717;
  border-radius: 50% 50% 0 0/0 0 0 0;
  -webkit-transition: border-radius 0.35s cubic-bezier(0.55, 0.085, 0.68, 0.53) 20ms, -webkit-transform 0.48s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: border-radius 0.35s cubic-bezier(0.55, 0.085, 0.68, 0.53) 20ms, -webkit-transform 0.48s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.48s cubic-bezier(0.165, 0.84, 0.44, 1), border-radius 0.35s cubic-bezier(0.55, 0.085, 0.68, 0.53) 20ms;
  transition: transform 0.48s cubic-bezier(0.165, 0.84, 0.44, 1), border-radius 0.35s cubic-bezier(0.55, 0.085, 0.68, 0.53) 20ms, -webkit-transform 0.48s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.content-list li {
  position: relative;
}

.content-list li.child {
  margin-bottom: 40px;
}

@media all and (max-width: 639px) {
  .content-list li.child {
    margin-bottom: 70px;
  }
}

.content-list li .inner {
  position: absolute;
  top: 30px;
  right: 20px;
  -webkit-filter: grayscale(4%) drop-shadow(5px 5px 0px rgba(16, 30, 92, 0.6));
          filter: grayscale(4%) drop-shadow(5px 5px 0px rgba(16, 30, 92, 0.6));
}

@media all and (max-width: 900px) {
  .content-list li .inner {
    top: 20px;
    right: 20px;
  }
}

.content-list li .inner .num {
  font-size: 2rem;
  background-color: #ed1717;
  color: #fff;
  padding: 8px 14px;
  border-radius: 5px;
}

@media all and (max-width: 900px) {
  .content-list li .inner .num {
    font-size: 1.2rem;
  }
}

.content-list li .inner .txt {
  font-size: 1.8rem;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  display: inherit;
  margin-top: 20px;
  padding: 20px 14px;
  background-color: #fff;
  border-radius: 5px;
}

@media all and (max-width: 900px) {
  .content-list li .inner .txt {
    font-size: 1.2rem;
  }
}

.content-list li figure {
  border-radius: 10px 10px 0 0;
  border-bottom: 3px solid #ed1717;
}

.content-list li .btn03 {
  position: absolute;
  bottom: -21px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.recruit-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 100px;
}

.recruit-column.type1 {
  margin-bottom: 0;
}

.recruit-column .child1 {
  width: 40%;
  text-align: center;
}

.recruit-column .child2 {
  width: 55%;
}

.recruit-column .child3 {
  width: 56%;
}

.recruit-column .child3 img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit-column .child4 {
  width: 38%;
}

@media all and (max-width: 639px) {
  .recruit-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 50px;
  }
  .recruit-column .child1, .recruit-column .child2, .recruit-column .child3, .recruit-column .child4 {
    width: 100%;
  }
  .recruit-column .child1.recruit-column_img, .recruit-column .child2.recruit-column_img, .recruit-column .child3.recruit-column_img, .recruit-column .child4.recruit-column_img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 20px;
  }
}

.recruit-txt {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0.15em;
  line-height: 2;
  color: #333;
}

@media all and (max-width: 639px) {
  .recruit-txt {
    font-size: 1.3rem;
  }
}

/**/
.center-nami {
  position: relative;
  margin-top: 100px;
}

.center-nami:before {
  position: absolute;
  content: "";
  height: 350px;
  background-image: url(https://www.one-rentacar.jp/img/SVG/nami.svg);
  background-repeat: no-repeat;
  top: 30%;
  background-position: bottom;
  background-size: 100%;
  width: 100%;
}

.center-nami:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 38%;
  bottom: 0;
  left: 0;
  background-color: #EEB1A0;
  z-index: -1;
}

@media all and (max-width: 900px) {
  .center-nami {
    margin-top: 50px;
  }
  .center-nami:before {
    top: 20%;
  }
}

@media all and (max-width: 639px) {
  .center-nami:before {
    height: 100px;
    top: 53%;
  }
}

@media all and (max-width: 320px) {
  .center-nami:before {
    top: 51%;
  }
}

.top-01 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.top-01 .top-01-img-wrap {
  width: 65%;
}

.top-01 .top-01-img-wrap img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-01 .top-01-txt-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 30px;
  position: relative;
}

.top-01 .top-01-txt-wrap .top-01-title {
  margin: 0 auto;
  text-align: center;
}

.top-01 .top-01-txt-wrap .top-01-title img {
  margin: 0 auto;
}

.top-01 .top-01-txt-wrap:before {
  position: absolute;
  content: "";
  width: 270px;
  height: 270px;
  right: 0;
  bottom: 0;
  background: url(https://www.one-rentacar.jp/img/asirai_.png) no-repeat 50%/contain;
  opacity: 0.7;
}

@media all and (max-width: 900px) {
  .top-01 .top-01-txt-wrap {
    margin-left: 20px;
    margin-top: 20px;
  }
  .top-01 .top-01-txt-wrap .top-01-title {
    width: 95%;
  }
  .top-01 .top-01-txt-wrap:before {
    display: none;
  }
}

@media all and (max-width: 639px) {
  .top-01 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 15px;
  }
  .top-01 .top-01-img-wrap {
    width: 100%;
  }
  .top-01 .top-01-txt-wrap {
    width: 66%;
    margin-left: 20px;
    margin-top: 20px;
  }
  .top-01 .top-01-txt-wrap:before {
    display: block;
    width: 150px;
    height: 200px;
    right: -80px;
    bottom: -100%;
    opacity: 0.2;
  }
}

.top-01-sub {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.top-01-sub:before {
  position: absolute;
  content: "";
  left: -100px;
  bottom: -70px;
  width: 200px;
  height: 200px;
  background: url(https://www.one-rentacar.jp/img/asirai2.png) no-repeat 50%/contain;
  opacity: 0.7;
  z-index: 0;
}

.top-01-sub .top-01-sub-txt {
  width: 60%;
  padding: 40px 100px;
  line-height: 3;
  z-index: 1;
  font-size: 1.6rem;
}

.top-01-sub .top-01-sub-img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 30px;
}

@media all and (max-width: 900px) {
  .top-01-sub .top-01-sub-txt {
    padding: 20px 30px;
    line-height: 2.5;
    letter-spacing: 0.1em;
  }
}

@media all and (max-width: 639px) {
  .top-01-sub:before {
    width: 70px;
    height: 70px;
  }
  .top-01-sub .top-01-sub-txt {
    width: 100%;
    padding: 25px;
    line-height: 2;
    letter-spacing: 0.1em;
    font-size: 1.4rem;
  }
  .top-01-sub .top-01-sub-img {
    margin-left: 0;
  }
}

.fukidashi {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 4;
}

.fukidashi.type1 {
  text-align: left;
  margin-bottom: 15px;
}

.fukidashi.mini {
  text-align: left;
}

.fukidashi.mini span {
  font-size: 1.2rem;
}

@media all and (max-width: 639px) {
  .fukidashi.mini {
    margin-bottom: 15px;
  }
  .fukidashi.mini span {
    padding: 5px 12px;
  }
}

.fukidashi span {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 1.8rem;
  background: #398da2;
  padding: 10px 20px;
  border-radius: 30px;
}

@media all and (max-width: 639px) {
  .fukidashi span {
    font-size: 1.3rem;
  }
}

.fukidashi span:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #398da2;
}

.fukidashi2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.fukidashi2 span {
  display: inline-block;
  position: relative;
  background: #fff;
  padding: 3px 6px;
  min-width: 150px;
  border-radius: 40px;
  text-align: center;
  color: #6b8332;
}

.fukidashi2 span:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 30px;
  border: 10px solid transparent;
  border-top: 10px solid #fff;
}

.rent{
  margin-top: 5px;
  margin-bottom: 5px;
}