@charset "UTF-8";
/* CSS Document */
html, body, div, h1, h2, h3, h4, h5, h6, p, div, ul, ol, li, dl, dt, dd, table, caption, th, td, form, button, label, address, blockquote, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
}
ul li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
}
* {
  box-sizing: border-box;
}
html {
  background-color: #ececec;
}
body main {
  background-color: #ececec;
  color: #000;
  /*min-height: 100vw;*/
  line-height: 1.5;
  letter-spacing: 0.1em;
  width: 100%;
  /*overflow: hidden;*/
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-feature-settings: "palt";
}
body main img {
  width: 100%;
}
body main > * {
  position: relative;
  /*z-index: 10;*/
}
.wrap {
  max-width: 80vw;
  margin: 0 auto;
}
.swrap {
  width: 65vw;
  margin: 0 auto;
}
.rwd_show {
  display: none;
}
.rwd_hide {
  display: block;
}
@media only screen and (max-width: 800px) {
  .wrap {
    max-width: 90vw;
  }
  .swrap {
    width: 90vw;
  }
}
@media only screen and (max-width: 600px) {
  .rwd_show {
    display: block;
  }
}
@keyframes bottom_to_top {
  0% {
    transform: translate3d(0, 3vw, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.bottom_to_top {
  opacity: 0;
  transform: translate3d(0, 50px, 0) scaleY(1);
  transform-origin: top;
}
.bottom_to_top.active {
  animation: bottom_to_top 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s forwards;
}
@keyframes bottom_to_top {
  0% {
    opacity: 0;
    transform: translate3d(0, 50px, 0) scaleY(1);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleY(1);
  }
}
.bottom_to_tops > * {
  opacity: 0;
}
.bottom_to_tops.active > * {
  animation: bottom_to_top 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}
.bottom_to_tops.active > *:nth-child(2) {
  animation-delay: 0.2s;
}
.bottom_to_tops.active > *:nth-child(3) {
  animation-delay: 0.4s;
}
.bottom_to_tops.active > *:nth-child(4) {
  animation-delay: 0.6s;
}
@keyframes left_to_right {
  0% {
    transform: translate3d(-3vw, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.left_to_right {
  opacity: 0;
}
.left_to_right.active {
  animation: left_to_right 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}
@keyframes right_to_left {
  0% {
    transform: translate3d(3vw, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.right_to_left {
  opacity: 0;
}
.right_to_left.active {
  animation: right_to_left 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}
@keyframes scroll-text {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* index header */

.page_header {
  position: fixed;
  padding: 2vw 3vw;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
}
.page_header .dunlop_logo {
  width: 16vw;
  display: flex;
}
.page_header .page_header_in {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
}
.page_header .page_header_in > ul {
  display: flex;
  list-style: none;
  padding: 0.3vw 0;
  margin: 0;
  gap: 4vw;
}
.page_header .page_header_in > ul > li {
  position: relative;
  padding-bottom: 0.3vw;
}
.page_header .page_header_in > ul > li > a {
  color: #fff;
  padding: 1vw 0vw;
  display: block;
  position: relative;
  font-size: 100%;
}
.page_header .page_header_in > ul > li > a:after {
  content: "";
  display: block;
  background-color: #00afff;
  width: 100%;
  height: 0.3vw;
  position: absolute;
  left: 0;
  bottom: 0.3vw;
  transition: all ease 0.3s;
  visibility: hidden;
  opacity: 0;
}
.page_header .page_header_in > ul > li > ul {
  background-color: rgba(0, 174, 255, 0.6);
  display: flex;
  flex-direction: column;
  padding: 0.5vw 1vw;
  padding-left: 0.5vw;
  visibility: hidden;
  opacity: 0;
  transition: all ease 0.3s;
  position: absolute;
  left: 0;
  top: 100%;
  white-space: nowrap;
}
.page_header .page_header_in > ul > li > ul a {
  color: #fff;
  display: block;
  padding: 0.2vw 0;
  font-size: 65%;
  padding-bottom: 0.5vw;
  transform: translate3d(0, 0, 0);
  transition: all ease 0.3s;
}
.page_header .page_header_in > ul > li > ul a:hover {
  transform: translate3d(0.2vw, 0, 0);
}
.page_header .page_header_in > ul > li > ul.ec_banner {
  padding: 1vw 1vw;
  gap: 0.7vw;
}
.page_header .page_header_in > ul > li > ul.ec_banner li a {
  display: block;
  width: 6.85vw;
  border-radius: 0.5vw;
  overflow: hidden;
  padding: 0;
}
.page_header .page_header_in > ul > li > ul.ec_banner li a:hover {
  opacity: 0.7;
  transform: translate3d(0, 0, 0);
}
.page_header .page_header_in > ul > li:hover > a:after {
  visibility: visible;
  opacity: 1;
}
.page_header .page_header_in > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
}
.page_header .sp_button {
  position: absolute;
  display: none;
  right: 3vw;
  top: 2vw;
  z-index: 100;
  background-color: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  width: 9vw;
  height: 9vw;
}
.page_header .sp_button > span {
  height: 1px;
  background-color: #fff;
  display: block;
  position: relative;
  transition: all ease 0.3s;
}
.page_header .sp_button > span:before {
  height: 1px;
  background-color: #fff;
  display: block;
  content: "";
  position: absolute;
  top: -2vw;
  left: 0;
  width: 100%;
  transition: all ease 0.3s;
}
.page_header .sp_button > span:after {
  height: 1px;
  background-color: #fff;
  display: block;
  content: "";
  position: absolute;
  bottom: -2vw;
  left: 0;
  width: 100%;
  transition: all ease 0.3s;
}
.page_header .sp_button.open > span {
  transform: rotate(45deg);
  background-color: transparent;
}
.page_header .sp_button.open > span:before {
  transform: rotate(90deg);
  top: 0;
}
.page_header .sp_button.open > span:after {
  transform: rotate(0);
  bottom: 0;
}
.page_header.hide {
  transform: translate3d(0, -100%, 0);
  opacity: 0;
  visibility: hidden;
}
.page_header {
  transition: all ease 0.3s;
}
@media screen and (max-width: 880px) {
  .page_header .page_header_in .child_menuProduct ul {
    display: none;
    transition: none;
  }
  .page_header .page_header_in > ul > li > a:after {
    display: none;
  }
  .page_header .page_header_in > ul > li:hover > a:after {
    display: none;
  }
  .page_header .page_header_in > ul > li {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 880px) {
  .page_header .page_header_in > ul {
    margin-right: 0;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 174, 255, 0.8);
    padding-top: 2vw;
    padding-top: 16vw;
    overflow: auto;
  }
  .page_header .page_header_in > ul > li > a {
    padding: 4vw;
    color: #fff;
    border-bottom: 1px solid #fff;
  }
  .page_header .dunlop_logo {
    width: 25vw;
    z-index: 100;
    position: relative;
    margin-top: 0vw;
    margin-left: 3vw;
  }
  .page_header .page_header_in > ul > li > ul {
    display: block;
    opacity: 1;
    visibility: visible;
    position: relative;
    left: 0;
    top: 0;
    padding: 2vw 0;
    padding-left: 3vw;
    background-color: #fff;
  }
  .page_header .page_header_in > ul > li > ul.ec_banner {
    display: flex;
    gap: 1vw;
    flex-direction: row;
    justify-content: center;
  }
  .page_header .page_header_in > ul > li > ul.ec_banner > * {
    flex: calc((100% - 1vw) / 2);
  }
  .page_header .page_header_in > ul > li > ul.ec_banner {
    padding: 5vw 0;
    gap: 3vw;
  }
  .page_header .page_header_in > ul > li > ul.ec_banner li a {
    width: 100%;
  }
  .page_header .page_header_in > ul > li > ul.ec_banner li {
    flex: 0 1 40%;
  }
  .page_header .page_header_in > ul > li > ul.ec_banner {
    background-color: transparent;
  }
  .page_header .page_header_in > ul > li > a {
    font-size: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3019607843);
  }
  .page_header {
    padding: 0;
  }
  .page_header .page_header_in {
    height: 13vw;
  }
  .page_header .page_header_in > ul > li > ul a {
    font-size: 100%;
    padding: 2.5vw 0;
    color: #000;
  }
  .child_menu {
    padding-bottom: 2vw;
  }
  .page_header .page_header_in > ul {
    gap: 0;
  }
  .page_header .page_header_in > ul {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
    opacity: 0;
    transition: all ease 0.3s;
  }
  .page_header .page_header_in > ul.open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    opacity: 1;
  }
  .page_header .sp_button {
    display: block;
  }
}
/* sub header */
.header_wrapper_sub {
  background-color: #fff;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.header_wrapper_sub .page_header_in > ul > li > a {
  color: #000;
}
@media screen and (max-width: 880px) {
  .header_wrapper_sub .sp_button > span, .header_wrapper_sub .sp_button > span:before, .header_wrapper_sub .sp_button > span:after {
    background-color: #000;
  }
  .header_wrapper_sub .page_header_in > ul > li > a {
    color: #fff;
  }
}
.mv {
  position: relative;
  z-index: 2;
}
.mv ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mv-copy {
  position: absolute;
  bottom: 27.8%;
  left: 10%;
  color: #fff;
  z-index: 2;
  text-shadow: #000 1px 0 10px;
}
.mv-copy .eng {
  font-size: 2.4rem;
  margin-bottom: 1rem;
font-weight:bold;
}
.mv-copy .jpn {
  position: relative;
  display: inline-block;
  font-size:7vw;
  line-height: 1.2;
  letter-spacing: 0.13em;
  margin-bottom: 1rem;
font-weight:bold;
}
.mv-copy .jpn-read {
  font-size: 2.6rem;
font-weight:bold;
}
.mv-side-area {
  position: absolute;
  z-index: 2;
  bottom: 12rem;
  right: 10rem;
}
.scroll {
  position: relative;
}
.scroll-line {
  position: absolute;
  color: #fff;
  text-align: center;
  transform: rotate(90deg);
}
.scroll-border {
  position: relative;
  top: 40px;
  width: 100%;
  height: 100px;
}
.scroll-border::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100px;
  top: 10px;
  left: 25px;
  right: 0;
  background: #fff;
  animation: scrollbar 3.0s ease-in-out infinite;
  margin: auto;
}
@keyframes scrollbar {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@media only screen and (max-width: 1000px) {
  .mv-copy .eng {
    font-size: 1rem;
  }
  .mv-copy .jpn {
    font-size: 3.6rem;
  }
  .mv-copy .jpn-read {
    font-size: 1.2rem;
  }
  .site_header h1, .site_header_sub h1 {
    width: 28%;
  }
}
@media only screen and (max-width: 600px) {
  .mv-copy {
    bottom: 17.8%;
    left: 7%;
  }
  .mv-copy .eng {
    font-size: 0.8rem;
  }

  .site_header h1, .site_header_sub h1 {
    width: 28%;
  }
  .mv-side-area {
    /*bottom: 2rem;
		right: 4rem;*/
    display: none;
  }
  .rwd_hide {
    display: none;
  }
}
.section {
  margin-top: 6vw;
}
.section_title {
  font-family: "Montserrat";
  font-size: 7vw;
  font-weight: 700;
}
.deco {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2rem;
  color: #0281cc;
}
.section_lead {
  margin-top: clamp(2.5rem, 2.347rem + 0.653vw, 3rem);
  line-height: 2;
}
.all_text {
  font-size: 1.6vw;
  line-height: 2;
	font-weight:bold;
}
.image {
  margin-top: 5rem;
}
.about_top .image {
  width: 90%;
}
@media only screen and (max-width: 1000px) {
  .section {
    margin-top: 4rem;
  }
  .section_title {
    font-size: 5rem;
  }
  .all_text {
    font-size: 2.4vw;
  }
}
@media only screen and (max-width: 600px) {
  .all_text {
    font-size: 1.6rem;
  }
  .about_top {
    margin-top: 2.4rem;
  }
.deco {
  font-size: 1.6rem;
}
}
.features {
  padding: 4rem 0 8rem;
  background-color: #0281cc;
}
.features .section_title {
  color: #fff;
}
.features_conts {
}
.conts {
  margin-top: 8rem;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 5%;
}
.conts:last-child {
  padding-bottom: 6rem;
}
.conts_img {
  position: relative;
  width: 46%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  aspect-ratio: 610 / 460;
  -webkit-box-shadow: 0 0 2.4rem .8rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 2.4rem .8rem rgba(0, 0, 0, 0.2);
}
.conts_text {
  position: relative;
  padding-top: 2rem;
  width: 100%;
}
.features .features_conts_num {
  position: absolute;
  left: -2.2rem;
  top: 0.4rem;
  height: 4.8rem;
}
.features .features_conts_num img {
  height: 100%;
  width: auto;
}

.features_conts_title{
	margin-bottom:3vw;
}
.features_conts_title span {
  color: #fff;
  position: relative;
  font-size: 2.6vw;
  font-weight: bold;
  line-height: 1.55;
}
.features ul li {
  color: #fff;
  font-size: 1.5vw;;
  line-height: 1.64;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2rem;
}
.features ul li::before {
  content: "";
  width: 2vw;
  height: 2vw;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-image: url("../img/index/icon_check.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  margin-right: .8rem;
  -webkit-transform: translateY(0.3rem);
  transform: translateY(0.3rem);
}
.row {
  flex-direction: row-reverse;
}
.more_btn {
  margin: 0 auto;
  text-align: center;
}
.more_btn a {
  border: 1px solid #fff;
  border-radius: 5vw;
  padding: 2rem 3rem;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
  font-size: 1.4vw;
  width: 320px;
}
.detail {
  width: 30%;
}
.more {
  margin: 0 auto;
  display: flex;
  font-size: 120%;
  padding: 1em 2em;
  text-decoration: none;
  color: #fff;
  background-color: #0281cc;
  gap: 0.7em;
  text-align: center;
  width: 11em;
  justify-content: space-between;
  position: relative;
}
.more::after {
  content: "";
  width: 1.7em;
  height: 1.5em;
  background-image: url("../img/arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  transition: transform .3s ease;
}
.more:hover::after {
  right: 2rem;
  position: absolute;
  transform: translateX(4px);
}
@media only screen and (max-width: 1000px) {
  .conts {
    display: block;
  }
  .conts_img {
    width: 100%;
  }
  .features .features_conts_num {
    left: -1.2rem;
  }
  .more_btn a {
    border-radius: 10vw;
    font-size: 2.4vw;
    width: 100%;
  }
.features ul li {
  font-size: 2.4vw;;
}
}
@media only screen and (max-width: 600px) {
  .features {
    padding: 3rem 0 4rem;
  }
  .features_conts_title span {
    font-size: 6vw;
  }
.conts {
  margin-top: 6rem;
}
  .conts_img {
    margin-bottom:1rem;
  }
.features ul li {
  font-size: 1.6rem;
}
  .detail {
    width: 60%;
  }
  .more_btn a {
    border-radius: 10vw;
    font-size: 1.8rem;
  }
  .conts:last-child {
    padding-bottom: 4rem;
  }
.features ul li::before {
  width: 5vw;
  height: 5vw;
}
}
.dgcc_slide {
  margin-top: -4rem;
}
.dgcc_slide .scroll-infinity__list--left {
  overflow: hidden;
  display: flex;
  width: 100vw;
  white-space: nowrap;
}
.dgcc_slide ul li {
  font-family: "Montserrat";
  font-size: 6rem;
  color: #fff;
  padding-right: 2rem;
  animation: scroll-text 20s infinite linear 0.5s both;
}
@media only screen and (max-width: 600px) {
  .dgcc_slide ul li {
    font-size: 3rem;
  }
  .dgcc_slide {
    margin-top: -2rem;
  }
}
.site_links {
  display: flex;
  position: relative;
  width: 100%;
}
.site_links_in {
  overflow: hidden;
}
.site_links .section_title {
  position: absolute;
  top: 50%;
  left: 8%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 1;
  color: #fff;
  font-size: 5rem;
}
.site_links a {
  display: block;
  position: relative;
  transition: all 0.4s ease;
}
.site_links a img {
  display: block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 1;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.site_links a img:hover {
  transform: scale(1.1);
}
.link_button span {
  isolation: isolate;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  font-size: clamp(0.938rem, 0.918rem + 0.082vw, 1rem);
  font-weight: 700;
  color: #fff;
}
.link_button span::after {
  content: "";
  background-image: url("../img/arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  top: 70%;
  right: 10%;
  width: 10%;
  height: 10%;
  position: absolute;
}
@media only screen and (max-width: 1000px) {
  .site_links .section_title {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 600px) {
  .site_links {
    display: block;
  }
  .address p {
    font-size: 1.4rem;
  }
  .link_button span::after {
    right: 6%;
    width: 16%;
    height: 16%;
  }
}
/*company*/
.company_top {
  margin-top: 14rem;
}
.image_top {
  margin-top: 4rem;
}
.basic, .initiative {
  font-size: 2rem;
}
@media only screen and (max-width: 600px) {
  .company_top {
    margin-top: 7rem;
  }
  .basic, .initiative {
    font-size: 1.6rem;
  }
  .image_top {
    margin-top: 2rem;
  }
}
.outline_table {
  margin-top: 4rem;
}
.outline_table table {
  width: 100%;
  border-collapse: collapse;
}
.outline_table table th {
  border-top: 1px solid #999;
  padding: 1em 0;
  font-size: 120%;
  -moz-text-align-last: left;
  text-align-last: left;
  width: 20%;
  vertical-align: top;
	 font-weight:bold;
}
.outline_table table td {
  border-top: 1px solid #999;
  padding: 1em 0;
  font-size: 110%;
  font-weight: 500;
  line-height: 1.7;
}
.outline_table table th:last-of-type, .outline_table table td:last-of-type {
  border-bottom: 1px solid #999;
}
@media only screen and (max-width: 600px) {
  .outline_table {
    margin-top: 2rem;
  }
  .outline_table table th, .outline_table table td {
    display: block;
    width: 100%;
  }
  .outline_table table th {
    border-top: none;
  }
  .outline_table table td {
    border-top: none;
    border-bottom: 1px solid #999;
    font-size: 96%;
    padding-top: 0;
    padding-bottom: 1.6em;
  }
  .outline_table table th:last-of-type {
    border-bottom: none;
  }
}
.history_list {
  margin: 4em auto;
}
.history_list ul {
  padding: 0;
  margin: 0;
}
.history_list ul li {
  margin: 0;
  padding-bottom: 5rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 4.2em;
  position: relative;
}
.history_list ul li:after {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  position: absolute;
  left: calc(17.5rem - 4px);
  top: 0.9375rem;
  background-color: #0281cc;
}
.history_list ul li > p {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1;
  flex: 1;
  position: relative;
}
.history_list ul li > div {
  flex: 6;
  font-size: 2rem;
}
.history_list ul li > div:after {
  content: "";
  background-color: #0281cc;
  position: absolute;
  border-radius: 100%;
  left: 16.4rem;
  width: 1.6875rem;
  height: 1.6875rem;
  z-index: 2;
  top: 5%;
}
.history_list ul li:last-of-type:after {
  display: none;
}
@media only screen and (max-width: 800px) {
  .history_list ul li {
    gap: 2em;
    align-items: baseline;
  }
  .history_list ul li > p {
    font-size: 1.4rem;
  }
  .history_list ul li > div {
    font-size: 1.4rem;
  }
  .history_list ul li > div:after {
    left: 7.5rem;
	top:0.5rem;
    width: 1rem;
    height: 1rem;
  }
  .history_list ul li:after {
    left: calc(7.5rem - -4px);
    width: 1px;
  }
}
/*business*/
.message-area {
  /*flex: 0 1 50%;*/
}
.message-inner {
  display: flex;
  justify-content: space-between;
}
.message-images {
  /*width: 24rem;*/
  position: relative;
}
.message-images-item {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 24vw;
}
.message-images-item:nth-of-type(2) {
  top: auto;
  bottom: -8vw;
  margin-right: 14vw;
}
@media only screen and (max-width: 1000px) {
  /*.initiative {
    font-size: 1.8rem;
  }
  .message-images-item {
    width: 18rem;
  }*/
  .message-images-item:nth-of-type(2) {
    margin-right: 6rem;
  }
}
@media only screen and (max-width: 800px) {
  .initiative {
    margin-bottom: 2rem;
    font-size: 1.6rem;
  }
  .message-inner {
    display: block;
  }
  .message-images-item {
    width: 16rem;
  }
  .message-images {
    margin-bottom: 34rem;
  }
  .message-images-item:nth-of-type(2) {
    bottom: -26rem;
    width: 19rem;
    margin-right: 14rem;
  }
}
.brand_list ul {
  display: flex;
  margin-top: 3rem;
}
.brand_list ul li {
  flex: 3;
}
.brand_img {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 40%; /* 比率 */
  margin: 0.5%;
  margin-bottom: 1rem;
}
.brand_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: auto;
}
.brand_title {
  margin-bottom: 2rem;
  padding: 0 1rem;
}
.brand_title h3 span {
  font-weight: bold;
}
.brand_text {
  padding: 0 1rem;
}
.brand_text p {
  font-size: 1.4rem;
}
@media only screen and (max-width: 800px) {
  .brand_list ul {
    display: block;
  }
  .brand_list ul li {
    margin-bottom: 5rem;
  }
}
.process .wrap {
  width: 80%;
  /*margin: clamp(4.375rem, 1.735rem + 11.265vw, 13rem) auto 0;*/
}
.process .contents {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 3.75rem;
  margin: 6rem 0;
}
.process .process_title {
  width: 40%;
  min-width: 11.75rem;
  border-top: none;
}
.process .process_title .title_inner {
  position: sticky;
  top: 10em;
}
.process .process_title h3 {
  background-color: #0281cc;
  color: #fff;
  font-size: 2vw;
  margin-bottom: 2rem;
  display: inline-block;
  padding: 0.5% 2%;
 font-weight:bold;
}
.process .process_title p {
  font-size: 1.5vw;
  line-height: 1.6;
}
.process .process_detils_wrapper {
  width: 60%;
}
.process .process_detils_wrapper .inner {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 120px;
  margin-top: -120px;
}
.process .num_wrapper {
  width: 20%;
}
.process .number {
  position: relative;
  height: 100%;
}
.process .number:not(.noline):before {
  content: "";
  position: absolute;
  top: 0;
  left: 3rem;
  width: 1px;
  height: 100%;
  background-color: #999;
  z-index: -1;
}
.process .number p {
  font-family: "Montserrat";
  display: grid;
  place-items: center;
  width: 6rem;
  height: 6rem;
  border: 1px solid #0281cc;
  border-radius: 100%;
  font-size: 2.4rem;
  font-weight: 500;
  color: #0281cc;
  background-color: #ececec;
}
.process .each_content {
  margin-top: 1rem;
  padding-bottom: clamp(3.75rem, 3.214rem + 2.286vw, 5.5rem);
  width: 80%;
}
.process .each_content .title {
  font-size: 2.4rem;
	font-weight:bold;
}
.process .each_content .image_wrapper {
  margin-top: 2rem;
}
@media only screen and (max-width: 1000px) {
  .process .process_title h3 {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 800px) {
  .process .wrap {
    width: 100%;
  }
  .process .contents {
    display: block;
    margin: 3rem 0;
  }
  .process .process_title, .process .process_detils_wrapper {
    width: 100%;
  }
  .process .process_title h3 {
    font-size: 6vw;
  }
  .process .process_title p {
	  font-size:4vw;
    margin-bottom: 2rem;
  }
  .process .number p {
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
  }
  .process .each_content {
    margin-top: 0.6rem;
  }
	
	.process .each_content .title{
		font-size:2rem;
	}
  .process .number:not(.noline):before {
    left: 2.5rem;
  }
  .process .each_content .image_wrapper {
    margin-top: 1rem;
  }
}
/*contact*/
.more_btn .products {
  margin: 0 auto;
  display: flex;
  font-size: 2rem;
  padding: 2rem 3rem;
  text-decoration: none;
  color: #fff;
  background-color: #cc3202;
  gap: 0.7em;
  text-align: center;
  width: 480px;
  justify-content: space-between;
  position: relative;
}
.more_btn .products::after {
  content: "";
  width: 1.7em;
  height: 1.5em;
  background-image: url("../img/arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  transition: transform .3s ease;
}
.more_btn .products:hover::after {
  right: 2rem;
  position: absolute;
  transform: translateX(4px);
}
.contact_area, .contact_area_company {
  background-color: #fff;
  padding: 4vw 1vw;
  margin: 0 auto;
  margin-bottom: 6rem;
  text-align: center;
border-bottom:none;
}
.contact_area p, .contact_area_company p {
  margin-bottom: 2rem;
}
.contact_area span {
  font-size: 60%;
}
.tel_num, .mail_ad {
  padding: 16px;
  display: flex;
  align-items: center;
  width: 100%;
  overflow-wrap: break-word;
  justify-content: center;
}
.tel_num .icon, .mail_ad .icon {
  flex-shrink: 0;
  width: 2em;
  height: 1.6em;
  margin-right: 8px;
  position: relative;
  background-size: contain;
}
.tel_num .icon:before, .mail_ad .icon:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.tel_num .tel::before {
  background-image: url("../img/contact/icon_tel.svg");
}
.mail_ad .mail::before {
  background-image: url("../img/contact/icon_mail.svg");
}
.num, .ad {
  min-width: 0;
  font-family: "Montserrat";
}
.num {
  font-size: 220%;
}
.ad {
  font-size: 120%;
}
.tel_notes {
  color: #707070;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 600px) {
  .more_btn .products {
    font-size: 1.4rem;
    padding: 1em 2em;
    width: 280px;
    border-radius: 11vw;
  }
  .more_btn .products::after {
    content: "";
    width: 2.2em;
    height: 2.8em;
  }
.tel_num, .mail_ad {
  justify-content: flex-start;
}
  .num {
    font-size: 170%;
  }
  .ad {
    font-size: 80%;
    text-align: left;
  }
  .tel_notes {
    font-size: 1.2rem;
  }
	
}
/*footer*/
.site_footer {
  background-color: #000;
  color: #fff;
  text-decoration: none;
  padding-top: 6em;
}
.site_footer .site_footer_in {
  display: flex;
  margin-bottom: 3rem;
}
.site_footer .site_footer_logo {
  width: 64%;
  margin-bottom: 3em;
}
.site_footer_in_text {
  flex: 1;
  max-width: 50%;
}
.site_footer_map {
  flex: 0 1 50%;
}
.site_footer_map iframe {
  width: 100%;
  height: 320px;
}
.copy {
  font-family: "Montserrat";
  text-align: center;
  padding-bottom: 2rem;
  font-size: 0.8rem;
}
@media only screen and (max-width: 600px) {
  .site_footer {
    padding-top: 4em;
  }
  .site_footer .site_footer_in {
    display: block;
  }
  .site_footer_in_text {
    max-width: 100%;
    margin-bottom: 3rem;
  }
}