@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@media (min-width: 769px) {
  .mv {
    display: none !important;
  }
  .ipad {
    display: none;
  }
  .pc {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .ipad {
    display: none;
  }
  .mv {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 1025px) {
  .ipad {
    display: block !important;
  }
}
@media (min-width: 769px) {
  .wrap {
    width: 1200px;
    margin: auto;
  }
}
@media (max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }
}
@media (min-width: 768px) and (max-width: 1025px) {
  .wrap {
    width: 90%;
  }
}

@media (min-width: 769px) {
  .wrap_min {
    width: 800px;
    margin: auto;
  }
}
@media (max-width: 768px) {
  .wrap_min {
    padding: 0 50px;
  }
}
@media (min-width: 768px) and (max-width: 1025px) {
  .wrap_min {
    width: calc(100% - 25px);
  }
}

@media (min-width: 768px) and (max-width: 1300px) {
  .wrap {
    width: 85%;
  }
  .wrap_min {
    width: 800px;
  }
}
html {
  font-size: 62.5%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 14px;
  font-size: 1.4rem;
  position: relative;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  background-size: contain;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
@media (min-width: 769px) {
  body {
    line-height: 2;
  }
}
@media (max-width: 768px) {
  body {
    line-height: 1.8;
  }
}

body.active::-webkit-scrollbar {
  display: none;
}

body.active {
  -ms-overflow-style: none;
}

h1, h2, h3, h4, h5 {
  font-weight: normal;
  margin: 0;
  line-height: normal;
}

img, video {
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
  height: auto;
  border: none;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}

img {
  object-fit: cover;
}

ul {
  padding: 0;
}

li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

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

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  padding: 0.5rem 1rem;
  width: 100%;
  font-size: 1rem;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

h2 {
  color: #395245;
  font-size: 34px;
  font-size: 3.4rem;
  margin-bottom: 4rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  h2 {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 3.5rem;
  }
}
h2 span {
  display: block;
  color: #D3D3D3;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
}

.fo-60 {
  font-size: 60px;
  font-size: 6rem;
}

.fo-36 {
  font-size: 36px;
  font-size: 3.6rem;
}

.fo-34 {
  font-size: 34px;
  font-size: 3.4rem;
}
@media (max-width: 768px) {
  .fo-34 {
    font-size: 20px;
    font-size: 2rem;
  }
}

.fo-32 {
  font-size: 32px;
  font-size: 3.2rem;
}

.fo-25 {
  font-size: 25px;
  font-size: 2.5rem;
}

.fo-18 {
  font-size: 18px;
  font-size: 1.8rem;
}

.fo-16 {
  font-size: 16px;
  font-size: 1.6rem;
}

.fo-14 {
  font-size: 14px;
  font-size: 1.4rem;
}

.fo-10 {
  font-size: 10px;
  font-size: 1rem;
}

.fo-reimin {
  font-family: a-otf-ud-reimin-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.fo-sans {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
}

.fo-regular {
  font-weight: 400;
}

.fo-bold {
  font-weight: 700;
}

.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-start {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-start;
}

.flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

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

.flex-strech {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.flex-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

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

.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media (min-width: 769px) {
  .flex-container-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .flex-between-pc {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex-start-pc {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
  }
  .flex-strech-pc {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .flex-end-pc {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .flex-align-center-pc {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .flex-space-between-pc {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex-center-pc {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .flex-row-reverse-pc {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
@media (min-width: 769px) {
  .vertical-jp {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: mixed;
    text-orientation: mixed;
  }
}

@media (max-width: 768px) {
  .vertical-sp {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: mixed;
    text-orientation: mixed;
  }
}

a:link, a:visited {
  color: #000000;
  text-decoration: none;
  word-wrap: break-word;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:hover, a:active {
  text-decoration: none;
  opacity: 0.8;
  cursor: pointer;
}

.element {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

header .header .globalMenuSp {
  width: 100%;
  z-index: 1;
  padding: 2.5rem 0;
}
@media (min-width: 769px) {
  header .header .globalMenuSp {
    justify-content: flex-end;
    background: rgba(255, 255, 255, 0.75);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
  }
  header .header .globalMenuSp .wrap {
    text-align: right;
  }
}
header .header .globalMenuSp li {
  display: inline-block;
  padding: 0 2rem;
}
header .header .globalMenuSp li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
header .header .globalMenuSp li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #000;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
@media (min-width: 769px) {
  header .header .globalMenuSp li a:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
header .header .globalMenuSp .header_sns {
  display: inline-block;
  width: calc(70px - 4rem);
}
@media (max-width: 768px) {
  header .header {
    position: relative;
    z-index: 10;
    /*　ハンバーガーボタン　*/
    /* ナビ開いてる時のボタン */
  }
  header .header .hamburger_span {
    position: fixed;
    z-index: 10;
    right: 0;
    top: 0;
  }
  header .header .hamburger {
    display: block;
    z-index: 10;
    padding: 1rem;
    background: #395245;
    cursor: pointer;
    text-align: center;
    width: 40px;
    height: 40px;
  }
  header .header .hamburger span {
    display: block;
    text-align: center;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    color: #fff;
    line-height: 3;
  }
  header .header .hamburger span.hamburger_bar {
    display: block;
    width: 30px;
    height: 2px;
    margin: auto;
    background: #fff;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  header .header .hamburger span.hamburger_bar:nth-child(1) {
    margin-top: 3px;
  }
  header .header .hamburger span.hamburger_bar:nth-child(2) {
    margin-top: 6px;
  }
  header .header .hamburger span.hamburger_bar:nth-child(3) {
    margin-top: 6px;
    margin-bottom: 5px;
  }
  header .header .hamburger span.hamburger_text {
    line-height: 1;
  }
  header .header .hamburger.active {
    background: none;
  }
  header .header .hamburger.active span {
    position: absolute;
    margin-top: 0 !important;
    background: #395245;
    width: 40px;
  }
  header .header .hamburger.active span:nth-child(1) {
    top: 31px;
    left: 0px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  header .header .hamburger.active span:nth-child(2) {
    top: 31px;
    left: 0px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  header .header .hamburger.active span:nth-child(4), header .header .hamburger.active span:nth-child(3) {
    display: none;
  }
  header .header #g-nav {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    bottom: 0;
    color: #000;
    background: #FAFAFA;
    transform: translateX(100%);
    transition: all 0.6s;
    width: calc(100% - 4rem);
    height: 83vh;
    padding: 16.5vh 2rem 0;
    overflow: hidden;
  }
  header .header #g-nav li {
    list-style-type: none;
    padding: 0;
    display: block;
    font-size: 24px;
    width: calc(100% - 4rem);
    font-size: 20px;
    font-weight: bold;
  }
  header .header #g-nav li:last-child {
    padding-bottom: 0;
  }
  header .header #g-nav li a {
    display: block;
    padding: 1em 0;
    text-decoration: none;
  }
  header .header #g-nav li.contact_btn {
    border: 1px solid #395245;
    margin: auto;
    text-align: center;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 400;
    width: calc(100% - 8rem);
  }
  header .header #g-nav li.contact_btn a {
    position: relative;
    display: inline-block;
    padding: 0.3rem 0 0.3rem 16px;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
  }
  header .header #g-nav li.contact_btn img {
    width: 29px;
    margin-left: 1rem;
  }
  header .header #g-nav.active {
    transform: translateX(0%);
  }
  header .header #g-nav .header_under {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 3rem;
  }
  header .header #g-nav .header_under ul {
    display: flex;
    justify-content: space-between;
    width: 160px;
    margin: auto auto 2rem;
  }
  header .header #g-nav .header_under ul li {
    border: none;
  }
  header .header #g-nav .header_under ul li img {
    height: 40px;
  }
}

.footer {
  background: #000;
  padding: 7rem 3rem;
}
@media (max-width: 768px) {
  .footer {
    padding: 1rem 0;
  }
}
.footer .wrap {
  position: relative;
}
.footer a {
  color: #fff;
}
.footer .footer_logo {
  width: 130px;
  position: relative;
}
.footer .f_nav {
  width: calc(100% - 30rem);
}
.footer .f_nav li {
  padding: 0.5rem 0;
}
.footer .f_nav .footer_sns img {
  width: 20px;
}
.footer .copyright {
  color: #fff;
  text-align: right;
}
@media (min-width: 769px) {
  .footer .copyright {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .footer .copyright {
    display: block;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer .footer_logo,
.footer .f_nav {
    display: none;
  }
}

.middle .sec2,
.middle .sec3 {
  padding-top: 13rem;
  padding-bottom: 13rem;
}
@media (max-width: 768px) {
  .middle .sec2,
.middle .sec3 {
    padding: 8rem 0 5rem;
  }
}
.sec1 {
  position: relative;
}
.sec1 .sec1_main {
  overflow: hidden;
}
@media (max-width: 768px) {
  .sec1 .sec1_main {
    height: 73vh;
  }
}
.sec1 .sec1_main .main_img {
  height: 100vh;
  background-size: cover;
}
.sec1 .sec1_main .main_img.img01 {
  background-image: url(../images/sec1_main.jpg);
}
/* .sec1 .sec1_main .main_img.img02 {
  background-image: url(../images/sec1_main02.jpg);
} */
.sec1 .sec1_main .main_img.img03 {
  background-image: url(../images/sec1_main03.jpg);
}
.sec1 .sec1_main .main_img.img04 {
  background-image: url(../images/sec1_main04.jpg);
}
.sec1 .sec1_main .main_img.img05 {
  background-image: url(../images/sec1_main05.jpg);
}
.sec1 .sec1_main .main_img.img06 {
  background-image: url(../images/sec1_main06.jpg);
}
.sec1 .sec1_main .main_img.img07 {
  background-image: url(../images/sec1_main07.jpg);
}
.sec1 .sec1_main .main_img.img08 {
  background-image: url(../images/sec1_main08.jpg);
}
.sec1 .sec1_main .main_img.img09 {
  background-image: url(../images/sec1_main09.jpg);
}
.sec1 .sec1_main .main_img.img10 {
  background-image: url(../images/sec1_main10.jpg);
}
.sec1 .sec1_main .slide-animation {
  animation: fadezoom 8s 0s forwards;
}
@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.03);
  }
}
.sec1 h2 {
  color: #fff;
  font-family: a-otf-ud-reimin-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
@media (max-width: 768px) {
  .sec1 h2 {
    font-size: 7vw;
  }
}
.sec1 h2 span {
  color: #fff;
}

.sec2 {
  background: #FAFAFA;
}
.sec2 .sec2_content {
  text-align: right;
}
.sec2 .sec2_content p {
  text-align: left;
  margin-bottom: 5rem;
}
@media (min-width: 769px) {
  .sec2 .sec2_content p {
    margin-right: 2rem;
  }
}
@media (max-width: 768px) {
  .sec2 .sec2_content p {
    padding-left: 1.5rem;
    border-left: 1px solid #D3D3D3;
  }
}
.sec2 .sec2_content_slide {
  margin-top: 10rem;
}
.sec2 .sec2_content_slide .sec2_content_img {
  display: flex;
}
@media (min-width: 769px) {
  .sec2 .sec2_content_slide .sec2_content_img {
    width: auto !important;
  }
  .sec2 .sec2_content_slide .sec2_content_img img {
    height: 410px;
  }
}
@media (max-width: 768px) {
  .sec2 .sec2_content_slide .sec2_content_img {
    padding-right: 2rem;
  }
}
.sec2 .sec2_content_slide .sec2_content_img p {
  color: #D3D3D3;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin-left: 0;
}
@media (max-width: 768px) {
  .sec2 .sec2_content_slide .sec2_content_img p {
    line-height: normal;
  }
}

.sec3 .section_tit {
  text-align: center;
}
@media (min-width: 769px) {
  .sec3 .section_tit {
    margin-top: 6rem;
  }
}
.sec3 .section_tit p {
  margin-top: 4rem;
}
.sec3 .sec3_contents {
  margin: 20rem 0 0;
}
@media (max-width: 768px) {
  .sec3 .sec3_contents {
    margin-top: 10rem;
  }
}
.sec3 .sec3_contents .sec3_content {
  margin: 13rem auto 0 0;
}
@media (min-width: 769px) {
  .sec3 .sec3_contents .sec3_content.wrap {
    width: 1000px;
  }
}
.sec3 .sec3_contents .sec3_content h3 {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .sec3 .sec3_contents .sec3_content h3 {
    margin-bottom: 1rem;
  }
}
.sec3 .sec3_contents .sec3_content h3::after {
  content: "";
  font-size: 7vw;
  font-weight: 700;
  color: #FAFAFA;
  position: absolute;
  width: max-content;
  left: 3rem;
  bottom: -2rem;
  z-index: -1;
}
@media (max-width: 768px) {
  .sec3 .sec3_contents .sec3_content h3::after {
    font-size: 15vw;
    left: 7rem;
    bottom: 0rem;
  }
}
.sec3 .sec3_contents .sec3_content .sec3_img_main {
  width: calc(50% + 15rem);
  padding-top: 400px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .sec3 .sec3_contents .sec3_content .sec3_img_main {
    width: 100%;
    padding-top: 100px;
    margin-left: -2rem;
  }
  .sec3 .sec3_contents .sec3_content .sec3_img_main:nth-child(2) {
    margin-left: 2rem;
  }
}
.sec3 .sec3_contents .sec3_content .sec3_content_img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
@media (min-width: 769px) {
  .sec3 .sec3_contents .sec3_content .sec3_content_img {
    width: calc(100% - 6rem);
    height: 80vh;
  }
}
@media (max-width: 768px) {
  .sec3 .sec3_contents .sec3_content .sec3_content_img {
    width: 100%;
    height: 32vh;
  }
}
.sec3 .sec3_contents .sec3_content .sec3_content_img.sec3_img_01 {
  background: url(../images/sec3_content_01.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.sec3 .sec3_contents .sec3_content .sec3_content_img.sec3_img_02 {
  background: url(../images/sec3_content_02.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  right: 0;
  left: 0;
}
.sec3 .sec3_contents .sec3_content .sec3_content_img.sec3_img_03 {
  background: url(../images/sec3_content_03.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (min-width: 769px) {
  .sec3 .sec3_contents .sec3_content .sec3_content_text {
    width: 30rem;
  }
}
.sec3 .sec3_contents .sec3_content:nth-child(1) h3::after {
  content: "WALK";
}
@media (min-width: 769px) {
  .sec3 .sec3_contents .sec3_content:nth-child(2) {
    flex-direction: row-reverse;
    margin: 13rem 0 0 auto;
  }
}
.sec3 .sec3_contents .sec3_content:nth-child(2) h3::after {
  content: "RIDE";
}
.sec3 .sec3_contents .sec3_content:nth-child(3) h3::after {
  content: "E-BIKE";
}

.sec4 {
  position: relative;
  padding-bottom: 5rem;
}
@media (min-width: 769px) {
  .sec4::after {
    content: "";
    background: #395245;
    width: 95%;
    z-index: -1;
    position: absolute;
    top: 5rem;
    bottom: 0;
    right: 0;
  }
}
.sec4 .sec4_content {
  background: #fff;
  padding: 1.5rem 3rem 1.5rem 0;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .sec4 .sec4_content {
    padding: 2rem;
    box-shadow: 0 0 20px rgba(77, 77, 77, 0.1607843137);
    margin-bottom: 6rem;
  }
  .sec4 .sec4_content h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 1rem;
    width: 100%;
  }
  .sec4 .sec4_content p {
    width: calc(100% - 2rem);
    margin: 1rem auto;
  }
}
.sec4 .sec4_content img {
  width: 400px;
}
@media (max-width: 768px) {
  .sec4 .sec4_content img {
    width: calc(100% + 2rem);
    margin-left: -2rem;
    height: 140px;
    max-width: none;
  }
}
@media (min-width: 769px) {
  .sec4 .sec4_content .sec4_content_text {
    width: calc(100% - 400px - 3rem);
  }
}
.sec4 .sec4_content .sec4_content_text .more_btn {
  text-align: right;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .sec3 .sec3_contents .sec3_content.wrap {
    width: 90%;
  }
  .sec4::after {
    width: 97%;
  }
}
.under {
  padding: 30rem 0 0;
}
@media (max-width: 768px) {
  .under {
    padding: 8.5rem 0 0;
  }
}
.under .under_tit h2 {
  margin-bottom: 9rem;
}
@media (max-width: 768px) {
  .under .under_tit h2 {
    margin-bottom: 2.5rem;
  }
}
.under .parallax_main {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.under .parallax_main .parallax_content {
  position: absolute;
  top: -50px;
  bottom: -50px;
  left: 0;
  right: 0;
}
.under .parallax_main .parallax_content .parallax {
  min-height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

@media (min-width: 769px) {
  .about .under_tit .under_tit_img .about_tit_para {
    width: calc(100% - 8rem);
    height: 400px;
    margin-top: 4rem;
  }
}
@media (max-width: 768px) {
  .about .under_tit .under_tit_img .about_tit_para {
    width: calc(100% - 2rem);
    height: 150px;
  }
}
.about .under_tit .under_tit_img .about_tit_para img {
  width: 100%;
}
.about .under_tit .under_tit_img .under_tit_img_text {
  background: #395245;
  color: #fff;
}
@media (min-width: 769px) {
  .about .under_tit .under_tit_img .under_tit_img_text {
    width: calc(100% - 16rem - 14rem);
    margin: -15rem 0 0 auto;
    padding: 24rem 7rem 10rem 7rem;
  }
}
@media (max-width: 768px) {
  .about .under_tit .under_tit_img .under_tit_img_text {
    width: calc(100% - 2rem - 6rem);
    margin-left: 2rem;
    padding: 9rem 3rem 4rem 3rem;
    margin-top: -5rem;
  }
}
.about .about_sec1 {
  padding: 18rem 0;
}
@media (max-width: 768px) {
  .about .about_sec1 {
    padding: 10rem 0;
  }
}
@media (min-width: 769px) {
  .about .about_sec1 .about_sec1_content {
    display: flex;
  }
}
@media (min-width: 769px) {
  .about .about_sec1 .about_sec1_content .about_sec1_content_img {
    width: calc(50% - 6rem) !important;
    display: flex;
  }
}
@media (max-width: 768px) {
  .about .about_sec1 .about_sec1_content .about_sec1_content_img {
    width: calc(100% - 4rem);
    display: flex;
    margin: auto;
  }
}
.about .about_sec1 .about_sec1_content .about_sec1_content_img .luxy-el img {
  height: 300px;
}
@media (max-width: 768px) {
  .about .about_sec1 .about_sec1_content .about_sec1_content_img .luxy-el img {
    height: 330px;
  }
}
.about .about_sec1 .about_sec1_content .about_sec1_content_text {
  margin: 0 0 0 auto;
  padding: 13% 0;
}
@media (min-width: 769px) {
  .about .about_sec1 .about_sec1_content .about_sec1_content_text {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .about .about_sec1 .about_sec1_content .about_sec1_content_text {
    width: calc(100% - 6rem);
    margin: 8rem auto 0;
    padding: 0;
  }
}
@media (min-width: 769px) {
  .about .about_sec2 .about_sec2_content {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}
.about .about_sec2 .about_sec2_content .about_sec1_content_img {
  display: flex;
}
@media (min-width: 769px) {
  .about .about_sec2 .about_sec2_content .about_sec1_content_img {
    width: calc(50% - 4rem) !important;
  }
}
.about .about_sec2 .about_sec2_content .about_sec1_content_img .luxy-el:nth-child(1) {
  z-index: 1;
  margin-right: -3rem;
}
@media (max-width: 768px) {
  .about .about_sec2 .about_sec2_content .about_sec1_content_img .luxy-el:nth-child(1) {
    width: 150px;
    margin-left: 2rem;
    padding-top: 8rem;
  }
}
@media (min-width: 769px) {
  .about .about_sec2 .about_sec2_content .about_sec1_content_img .luxy-el:nth-child(2) {
    width: calc(100% + 80rem);
  }
}
@media (max-width: 768px) {
  .about .about_sec2 .about_sec2_content .about_sec1_content_img .luxy-el:nth-child(2) {
    width: calc(50% + 8rem);
    margin: 0 -2rem 0 auto;
  }
}
.about .about_sec2 .about_sec2_content .about_sec1_content_text {
  padding: 3% 0;
  display: inline-block;
}
@media (min-width: 769px) {
  .about .about_sec2 .about_sec2_content .about_sec1_content_text {
    width: calc(50% - 1rem);
  }
}
@media (max-width: 768px) {
  .about .about_sec2 .about_sec2_content .about_sec1_content_text {
    width: calc(100% - 6rem);
    margin: 15rem auto 0;
    padding: 0;
    display: block;
  }
}
.about .about_sec3 {
  margin: 5rem 0;
}
.about .about_sec3 .about_sec3_flow {
  flex: 0 0 auto;
  white-space: nowrap;
  overflow: hidden;
}
@media (min-width: 769px) {
  .about .about_sec3 .about_sec3_flow {
    display: flex;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .about .about_sec3 .about_sec3_flow {
    line-height: 1;
  }
}
.about .about_sec3 .about_sec3_flow div {
  color: #FAFAFA;
}
.about .about_sec3 .about_sec3_flow div:nth-child(odd) {
  animation: loop 50s -25s linear infinite;
}
.about .about_sec3 .about_sec3_flow div:nth-child(even) {
  animation: loop2 50s linear infinite;
}
.about .about_sec3 .about_sec3_slider .slick-track {
  height: 300px;
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.about .about_sec4 {
  padding: 18rem 0;
}
@media (max-width: 768px) {
  .about .about_sec4 {
    padding: 8rem 2rem 8.5rem 5rem;
  }
}
.about .about_sec4 h2 {
  text-align: center;
}
.about .about_sec4 p {
  text-align: center;
  margin: 0;
}
.about .about_sec4 .about_sec4_content {
  margin: 18rem 0 0 auto;
}
@media (max-width: 768px) {
  .about .about_sec4 .about_sec4_content {
    margin-top: 5rem;
  }
}
@media (min-width: 769px) {
  .about .about_sec4 .about_sec4_content .about_sec4_content_text {
    width: calc(50% - 5rem);
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .about .about_sec4 .about_sec4_content .about_sec4_content_text {
    margin-right: 3rem;
  }
}
.about .about_sec4 .about_sec4_content .about_sec4_content_text p {
  text-align: left;
}
.about .about_sec4 .about_sec4_content .about_sec4_slider {
  /* 共通設定 */
  /* next */
  /* prev */
}
@media (min-width: 769px) {
  .about .about_sec4 .about_sec4_content .about_sec4_slider img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .about .about_sec4 .about_sec4_content .about_sec4_slider img {
    width: calc(100% + 2rem);
    max-width: none;
    height: 140px;
    margin-top: 4rem;
    margin-right: -2rem;
    margin-bottom: 3.5rem;
  }
}
.about .about_sec4 .about_sec4_content .about_sec4_slider .slick-arrow {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 0;
  width: 20px;
  height: 38px;
  color: transparent;
  z-index: 1;
  transition: opacity 0.5s;
  z-index: 1;
}
.about .about_sec4 .about_sec4_content .about_sec4_slider .slick-arrow:hover {
  opacity: 0.7;
}
.about .about_sec4 .about_sec4_content .about_sec4_slider .slick-next::before, .about .about_sec4 .about_sec4_content .about_sec4_slider .slick-next::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.about .about_sec4 .about_sec4_content .about_sec4_slider .slick-prev::before, .about .about_sec4 .about_sec4_content .about_sec4_slider .slick-prev::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.about .about_sec4 .about_sec4_content .about_sec4_slider .slick-next::before,
.about .about_sec4 .about_sec4_content .about_sec4_slider .slick-prev::before {
  width: 26px;
  height: 1px;
  background: #395245;
}
.about .about_sec4 .about_sec4_content .about_sec4_slider .slick-next::after,
.about .about_sec4 .about_sec4_content .about_sec4_slider .slick-prev::after {
  width: 15px;
  height: 15px;
  border-top: 1px solid #395245;
  border-right: 1px solid #395245;
}
.about .about_sec4 .about_sec4_content .about_sec4_slider .slick-next {
  right: -52px6px;
}
.about .about_sec4 .about_sec4_content .about_sec4_slider .slick-next::before {
  right: 0;
}
.about .about_sec4 .about_sec4_content .about_sec4_slider .slick-next::after {
  right: 4px;
  transform: rotate(45deg);
}
.about .about_sec4 .about_sec4_content .about_sec4_slider .slick-prev {
  left: -54px;
}
.about .about_sec4 .about_sec4_content .about_sec4_slider .slick-prev::before {
  left: 0;
}
.about .about_sec4 .about_sec4_content .about_sec4_slider .slick-prev::after {
  left: 4px;
  transform: rotate(-135deg);
}
.about .about_sec4 .about_sec4_content .about_sec4_slider .slick-list {
  padding: 0 !important;
}
.about .about_sec4 .about_sec4_content .about_sec4_slider .slick-list img {
  width: 50%;
  display: inline-block;
  margin-left: 4.6rem;
  vertical-align: -70px;
}
.about .about_sec5 {
  background: #395245;
  padding: 18rem 0;
}
@media (max-width: 768px) {
  .about .about_sec5 {
    padding: 8.5rem 0;
  }
}
.about .about_sec5 h2 {
  text-align: center;
  color: #fff;
}
.about .about_sec5 p {
  text-align: center;
  margin: 0;
  color: #fff;
}
@media (max-width: 768px) {
  .about .about_sec5 p {
    padding: 0 2rem;
  }
}
.about .about_sec5 .about_sec5_contents {
  margin-top: 15rem;
}
@media (max-width: 768px) {
  .about .about_sec5 .about_sec5_contents {
    margin-top: 3.5rem;
  }
}
.about .about_sec5 .about_sec5_contents .about_sec5_content {
  background: #fff;
  margin: 3rem auto;
  padding: 2rem 0;
  align-items: center;
}
@media (min-width: 769px) {
  .about .about_sec5 .about_sec5_contents .about_sec5_content {
    width: calc(100% - 6rem);
  }
}
.about .about_sec5 .about_sec5_contents .about_sec5_content .about_sec5_content_text {
  padding-left: 5rem;
  text-align: left;
}
@media (min-width: 769px) {
  .about .about_sec5 .about_sec5_contents .about_sec5_content .about_sec5_content_text {
    width: calc(50% - 10rem);
  }
}
@media (max-width: 768px) {
  .about .about_sec5 .about_sec5_contents .about_sec5_content .about_sec5_content_text {
    padding: 0 2rem;
  }
}
.about .about_sec5 .about_sec5_contents .about_sec5_content .about_sec5_content_text p {
  text-align: left;
  color: #000;
}
@media (max-width: 768px) {
  .about .about_sec5 .about_sec5_contents .about_sec5_content .about_sec5_content_text p {
    padding: 0;
  }
}
.about .about_sec5 .about_sec5_contents .about_sec5_content .about_sec5_content_text .about_sec5_category {
  margin-top: 1rem;
}
.about .about_sec5 .about_sec5_contents .about_sec5_content .about_sec5_content_text .about_sec5_category span {
  display: inline-block;
  background: #395245;
  color: #fff;
  margin-right: 1rem;
  border-radius: 4px;
  padding: 0 1rem;
}
.about .about_sec5 .about_sec5_contents .about_sec5_content .about_sec5_content_text .about_sec5_category span:last-child {
  margin: 0;
}
.about .about_sec5 .about_sec5_contents .about_sec5_content .about_sec5_content_text .more_btn {
  text-align: right;
}
@media (min-width: 769px) {
  .about .about_sec5 .about_sec5_contents .about_sec5_content img {
    width: calc(50% + 1rem);
  }
}
@media (max-width: 768px) {
  .about .about_sec5 .about_sec5_contents .about_sec5_content img {
    width: calc(100% + 2rem);
    height: 95px;
    max-width: none;
    margin-right: 4rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

.route {
  margin-bottom: 20rem;
  padding-top: 12rem;
}
.route section {
  margin-top: 18rem;
}
@media (max-width: 768px) {
  .route section {
    padding-top: 8.5rem;
    margin: 0;
  }
  .route section.under_tit {
    padding: 0;
  }
  .route section.under_tit .under_tit_img {
    width: calc(100% - 2rem);
    height: 170px;
  }
}
.route .under_tit {
  position: relative;
}
.route .under_tit .bg-01 {
  background-image: url(../images/under/route_tit_img.jpg);
}
.route .route_sec1 .parallax {
  min-height: 350px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media (max-width: 768px) {
  .route .route_sec1 .parallax {
    min-height: 190px;
  }
}
.route .route_sec1 .parallax.bg-01 {
  background-image: url(../images/under/route_sec1_img1.jpg);
}
.route .route_sec1 .parallax.bg-02 {
  background-image: url(../images/under/route_sec1_img2.jpg);
}
.route .route_sec1 .parallax.bg-03 {
  background-image: url(../images/under/route_sec1_img3.jpg);
}
.route .route_sec1 h2 {
  text-align: center;
  margin-bottom: 10rem;
}
@media (max-width: 768px) {
  .route .route_sec1 h2 {
    margin-bottom: 8rem;
  }
}
.route .route_sec1 .route_sec1_content_main .route_sec1_content {
  margin-top: 4rem;
}
@media (min-width: 769px) {
  .route .route_sec1 .route_sec1_content_main .route_sec1_content .route_sec1_content_img {
    margin-top: -3rem;
  }
}
@media (max-width: 768px) {
  .route .route_sec1 .route_sec1_content_main .route_sec1_content .route_sec1_content_img {
    margin-top: 3.5rem;
  }
}
.route .route_sec1 .route_sec1_content_main .route_sec1_content .route_sec1_content_img .route_sec1_content_text {
  background: #fff;
  position: relative;
  padding: 2rem 3rem;
  box-shadow: 0 0 20px rgba(77, 77, 77, 0.1607843137);
}
@media (min-width: 769px) {
  .route .route_sec1 .route_sec1_content_main .route_sec1_content .route_sec1_content_img .route_sec1_content_text {
    width: calc(33.3333333333% - 8.1rem);
  }
}
@media (max-width: 768px) {
  .route .route_sec1 .route_sec1_content_main .route_sec1_content .route_sec1_content_img .route_sec1_content_text {
    margin-bottom: 6rem;
  }
}
.route .route_sec1 .route_sec1_content_main .route_sec1_content .route_sec1_content_img .route_sec1_content_text h4 {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.route .route_sec1 .route_sec1_content_main .route_sec1_content .route_sec1_content_img .route_sec1_content_text h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.5rem;
  height: 1px;
  background: #000;
}
.route .route_sec1 .route_sec1_content_main .route_sec1_content .route_sec1_content_img .route_sec1_content_text .route_sec1_star {
  margin-top: 1.5rem;
  display: flex;
}
.route .route_sec1 .route_sec1_content_main .route_sec1_content .route_sec1_content_img .route_sec1_content_text .route_sec1_star tr {
  margin: 1rem 0;
  display: inline-block;
  width: 100%;
}
.route .route_sec1 .route_sec1_content_main .route_sec1_content .route_sec1_content_img .route_sec1_content_text .route_sec1_star th {
  background: #000;
  color: #fff;
  padding: 0 1rem;
  margin-right: 1rem;
  width: 4.7rem;
  font-weight: 400;
  display: inline-block;
}
.route .route_sec1 .route_sec1_content_main .route_sec1_content .route_sec1_content_img .route_sec1_content_text .route_sec1_star td {
  width: calc(100% - 11rem);
  display: inline-block;
}
.route .route_sec1 .route_sec1_content_main .route_sec1_content .route_sec1_content_img .route_sec1_content_text .more_btn {
  text-align: right;
}

.privacy {
  margin-bottom: 15rem;
  padding-top: 25rem;
}
@media (max-width: 768px) {
  .privacy {
    padding: 8.5rem 0 5rem;
    margin: 0;
  }
}
.privacy .under_tit {
  text-align: center;
}
.privacy .privacy_sec1 li {
  list-style-type: inherit;
  margin: 2.5rem 0;
}
.privacy .privacy_sec1 li:last-child {
  margin-bottom: 0;
}
.privacy .privacy_sec1 .privacy_sec1_name {
  text-align: right;
  margin-top: 7rem;
}
@media (max-width: 768px) {
  .privacy .privacy_sec1 .privacy_sec1_name {
    text-align: center;
  }
}

.contact .under_tit h2 {
  text-align: center;
}
.contact p {
  text-align: center;
  margin: 0 0 8rem 0;
}
@media (max-width: 768px) {
  .contact p {
    margin-bottom: 3.5rem;
  }
}
.contact .contact_sec1 {
  margin-bottom: 11rem;
}
@media (max-width: 768px) {
  .contact .contact_sec1 {
    padding: 0 2rem;
    margin-bottom: 5rem;
  }
}
.contact .contact_sec1 form {
  position: relative;
}
.contact .contact_sec1 form .note_info {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  text-align: right;
  color: #D3D3D3;
}
@media (max-width: 768px) {
  .contact .contact_sec1 form .note_info {
    width: 100%;
  }
}
.contact .contact_sec1 form .requied {
  color: #B41919;
}
.contact .contact_sec1 table {
  margin: auto;
}
@media (min-width: 769px) {
  .contact .contact_sec1 table {
    width: 500px;
  }
}
.contact .contact_sec1 table tr th {
  width: 100%;
  display: block;
  text-align: left;
  font-weight: 400;
  font-size: 16px;
}
.contact .contact_sec1 table tr td {
  width: 100%;
  display: block;
  margin-bottom: 1rem;
  text-align: center;
}
.contact .contact_sec1 table tr td input,
.contact .contact_sec1 table tr td textarea {
  background: #FAFAFA;
  border: 1px solid #2C2D46;
  padding: 0.5rem 1rem;
  width: calc(100% - 2rem);
}
@media (max-width: 768px) {
  .contact .contact_sec1 table tr td input,
.contact .contact_sec1 table tr td textarea {
    font-size: 16px;
  }
}
.contact .contact_sec1 table input[type=submit] {
  width: 300px;
  background: #395245;
  border: none;
  font-size: 16px;
  color: #fff;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .contact .contact_sec1 table input[type=submit] {
    padding: 1.1rem;
  }
}
.contact .contact_sec1 table .wpcf7-spinner {
  position: absolute;
}

.list .bg::after {
  top: -23.3rem;
}
.list h2 {
  line-height: 3.6;
  text-align: center;
}
@media (max-width: 768px) {
  .list h2 {
    padding-top: 6rem;
    font-size: 9vw;
  }
}
.list .sec_custom {
  margin-top: 0;
}
.list .sec_custom .sec_custom_content {
  padding-bottom: 0;
  margin-bottom: 10rem;
  z-index: 1;
}
@media (max-width: 768px) {
  .list .sec_custom .sec_custom_content {
    width: calc(100% - 4rem);
    display: block;
    margin: auto;
  }
}
.list .sec_custom .sec_custom_content::after {
  display: none;
}
.list .sec_custom .sec_custom_content::before {
  background: none;
}
.list .sec_custom .sec_custom_content li {
  margin-bottom: 3rem;
  width: 100%;
  border-bottom: 1px dotted #000;
  padding: 1.5rem 0;
}
@media (min-width: 769px) {
  .list .sec_custom .sec_custom_content li {
    border-top: 1px dotted #000;
  }
}
.list .sec_custom .sec_custom_content li:first-child {
  border-top: 0;
}
.list .sec_custom .sec_custom_content li:last-child {
  border-bottom: 0;
}
@media (min-width: 769px) {
  .list .sec_custom .sec_custom_content li a {
    display: flex;
  }
}
@media (min-width: 769px) {
  .list .sec_custom .sec_custom_content li a .custom_thumbnail {
    margin-right: 3rem;
  }
}
.list .sec_custom .sec_custom_content li a .custom_thumbnail::after {
  display: none;
}
.list .sec_custom .sec_custom_content li a .custom_text {
  line-height: 1.4;
}
@media (min-width: 769px) {
  .list .sec_custom .sec_custom_content li a .custom_text {
    width: calc(100% - (216px + 2rem));
  }
}
@media (max-width: 768px) {
  .list .sec_custom .sec_custom_content li a .custom_text {
    background: #fff;
    padding: 1.5rem;
  }
}
.list .sec_custom .sec_custom_content li a .custom_text .custom_tit {
  margin: 0 0 3rem 0;
}
@media (min-width: 769px) {
  .list .sec_custom .sec_custom_content li a .custom_text .custom_tit {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .list .sec_custom .sec_custom_content li a .custom_text .custom_tit {
    display: block !important;
  }
}
.list .sec_custom .sec_custom_content li a .custom_text .custom_text_content,
.list .sec_custom .sec_custom_content li a .custom_text p {
  margin: 0;
}
@media (min-width: 769px) {
  .list .sec_custom .sec_custom_content li a .custom_text .custom_text_content,
.list .sec_custom .sec_custom_content li a .custom_text p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .list .sec_custom .sec_custom_content li a .custom_text .custom_text_content,
.list .sec_custom .sec_custom_content li a .custom_text p {
    display: none;
  }
}
.list .sec_custom .sec_custom_content li a .custom_text .custom_text_category {
  background: #395245;
  color: #fff;
  border-radius: 5px;
  padding: 0.6rem 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}
.single .sec_custom {
  margin: 0;
}
.single .sec_custom .sec_custom_content {
  padding: 15rem 0 10rem;
}
@media (max-width: 768px) {
  .single .sec_custom .sec_custom_content {
    padding-top: 8rem;
  }
}
.single .sec_custom .sec_custom_content .single_top .single_top_category {
  background: #395245;
  color: #fff;
  border-radius: 5px;
  padding: 0.6rem 2.5rem;
}
.single .sec_custom .sec_custom_content .ttl {
  margin: 5rem auto;
  line-height: 1.3;
}
.single .sec_custom .sec_custom_content table {
  padding: 7rem;
  display: block;
  background: #fff;
  margin: 6rem auto 0;
}
@media (min-width: 769px) {
  .single .sec_custom .sec_custom_content table {
    width: calc(100% - 14rem);
  }
}
@media (max-width: 768px) {
  .single .sec_custom .sec_custom_content table {
    width: calc(100% - 4rem);
    padding: 3rem 2rem;
    margin-top: 3rem;
  }
  .single .sec_custom .sec_custom_content table tbody {
    width: 100%;
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .single .sec_custom .sec_custom_content table tr {
    width: 100%;
    display: inline-block;
  }
}
.single .sec_custom .sec_custom_content table tr th {
  text-align: left;
  border-top: 1px solid #000;
  width: 100px;
  padding: 1rem;
  vertical-align: top;
}
@media (max-width: 768px) {
  .single .sec_custom .sec_custom_content table tr th {
    display: block;
    width: auto;
  }
}
.single .sec_custom .sec_custom_content table tr td {
  padding: 1rem;
}
@media (min-width: 769px) {
  .single .sec_custom .sec_custom_content table tr td {
    border-top: 1px solid #000;
  }
}
@media (max-width: 768px) {
  .single .sec_custom .sec_custom_content table tr td {
    display: block;
    width: auto;
    padding-top: 0rem;
  }
}
.single .sec_custom .sec_custom_content table tr:last-child {
  border-bottom: 1px solid #000;
}
@media (min-width: 769px) {
  .single .sec_custom .sec_custom_content table tr:last-child {
    border-top: 1px solid #000;
  }
}
.single .sec_custom .sec_custom_content .pdf_content {
  text-align: center;
}
.single .sec_custom .sec_custom_content .pdf_content a {
  width: 300px;
  background: #395245;
  border: 1px solid #395245;
  color: #fff;
  display: inline-block;
  margin: 3rem auto 0;
}
.single .sec_custom .sec_custom_content .pdf_content a p {
  margin: 0.8rem 0;
}
.single .sec_custom .sec_custom_content .pdf_content a:hover {
  color: #395245;
  background: #fff;
}
.single.voice_under h3 {
  font-size: 30px;
  position: relative;
}
.single.voice_under h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: url(../images/under/under_h3_bg.png);
  background-size: contain;
  z-index: -1;
}
.single.voice_under .voice_top {
  background: url(../images/under/under_voice_top.jpg);
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .single.voice_under .voice_top {
    padding-bottom: 3rem;
  }
  .single.voice_under .voice_top p {
    margin: 0 !important;
  }
}
.single.voice_under .voice_top .ttl {
  margin: 0 auto;
  padding: 5rem 0 3rem;
}
@media (max-width: 768px) {
  .single.voice_under .voice_top .ttl {
    padding: 10rem 2rem 3rem;
    font-size: 6.3vw;
    margin: 0 !important;
  }
}
@media (max-width: 768px) {
  .single.voice_under .sec_custom_content {
    padding: 0 0 8rem;
  }
  .single.voice_under .sec_custom_content .wrap_min {
    width: calc(100% - 4rem);
    margin: 8rem auto 0;
  }
  .single.voice_under .sec_custom_content .wrap_min h3 {
    line-height: 1.4;
    z-index: 2;
    margin-bottom: 4rem;
  }
  .single.voice_under .sec_custom_content .wrap_min h3::after {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../images/under/under_h3_bg_mv.png);
    background-size: contain;
    z-index: -1;
    height: 51px;
  }
}
