/* A Modern CSS Reset */
*,*::before,*::after{box-sizing:border-box}ul[class],ol[class]{padding:0}body,h1,h2,h3,h4,h5,h6,tr,th,td,p,ul[class],ol[class],figure,blockquote,dl,dd{margin:0;font-weight:normal;}html{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}ul[class],ol[class]{list-style:none}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}article>*+*{margin-top:1em}input,button,textarea,select{font:inherit}img:not([alt]){filter:blur(10px)}@media(prefers-reduced-motion:reduce){*{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}
/* A Modern CSS Reset */
@font-face {
  font-family: "Gobold Bold";
  src: url(../fonts/GoboldRegular.woff2) format('woff2');
  font-display: swap;
}
@font-face {
  font-family: "Gobold Bold";
  src: url(../fonts/GoboldRegular.woff2) format('woff2');
  font-display: swap;
}
@font-face {
  font-family: "Gobold Bold";
  src: url(../fonts/GoboldRegular.woff2) format('woff2');
  font-display: swap;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}

body {
  background: #fff;
  color: #333;
  font-family: sans-serif;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  backface-visibility: hidden;
}

a {
  text-decoration: none;
}

#wrapper {
  overflow: hidden;
}

@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}

body {
  animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
 
@keyframes fadeIn {
  0% {
    opacity: 0.01;
  }
  100% {
    opacity: 1;
  }
}

/*============
nav
=============*/
.inner {
	margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
/* header */
#top-head {
	top: -100px;
	position: absolute;
	width: 100%;
	margin: 100px auto 0;
	padding: 30px 0 0;
	line-height: 1;
	z-index: 999;
  background-color: rgba(255,255,255,0);
}
#top-head a,
#top-head {
	color: #fff;
	text-decoration: none;
}
#top-head .inner {
	display: flex;
  align-items: flex-start;
  padding: 20px 2% 0 5%;
  width: 100%;
  max-width: 1024px;
}
#top-head .logo {
	font-size: 36px;
}
#top-head .logo img {
  height: 120px;
  margin-top: -20px;
  width: auto;
}
#global-nav ul {
	list-style: none;
	right: 0;
	bottom: 0;
	font-size: 14px;
  display: flex;
  flex-direction: row;
}
#global-nav ul li {
  height: 40px;
  position: relative;
}
#global-nav ul li::after {
  content: "";
  border-right: 1px solid #fff;
  width: 1px;
  height: 45px;
  position: absolute;
  top: -5px;
  right: 0;
  transform: rotateZ(14deg);
}
#global-nav ul li:last-child::after {
  display: none;
}
#global-nav ul li a {
	padding: 0px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 20px;
  font-family: acumin-variable, sans-serif;
  font-variation-settings: "slnt" -12, "wdth" 50, "wght" 700;
  letter-spacing: 4px;
}
#global-nav ul li a span {
  font-size: 12px;
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: 1px;
}
 
/* Fixed */
#top-head.fixed {
	margin-top: 0;
	top: 0;
	position: fixed;
	padding-top: 10px;
	height: 95px;
	background-color: #fff;
	background-color: rgba(255,255,255,.9);
	transition: top 0.65s ease-out;
}
#top-head.fixed #global-nav ul li::after {
  border-color: #0f0f0f;
}
#top-head.fixed .logo img {
  height: 85px;
  margin-top: -25px;
  filter: brightness(0.2);
}
#top-head.fixed #global-nav ul li a {
	color: #333;
	padding: 0 20px;
}
#top-head.fixed #global-nav ul li a span {
  font-weight: 500;
}
 
/* Toggle Button */
#nav-toggle {
	display: none;
	position: absolute;
	right: 12px;
	top: 14px;
	width: 34px;
	height: 36px;
	cursor: pointer;
	z-index: 101;
}
#nav-toggle div {
	position: relative;
}
#nav-toggle span {
	display: block;
	position: absolute;
	height: 4px;
	width: 100%;
	background: #0f0f0f;
	left: 0;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
	top: 0;
}
#nav-toggle span:nth-child(2) {
	top: 11px;
}
#nav-toggle span:nth-child(3) {
	top: 22px;
}
@media screen and ( max-width:948px) {
  #top-head .logo img {
    height: 80px;
    margin-top: -10px;
    margin-left: 25px;
  }
  #global-nav ul li a {
    padding: 0px 15px;
  }
  #global-nav ul li a span {
    font-size: 10px;
  }
  #top-head .inner {
    padding: 0;
  }
  #top-head.fixed .inner {
    padding: 10px 0 0 0;
  }
  #top-head.fixed {
    height: 75px;
  }
  #top-head.fixed .logo img {
    height: 65px;
    margin-top: -15px;
  }
  #top-head.fixed #global-nav ul li a {
    padding: 0 15px;
  }
}

@media screen and (max-width: 767px) {
	#top-head,
	#top-head .inner {
		width: 100%;
		padding: 0;
	}
	#top-head {
		top: 0;
		position: fixed;
		margin-top: 0;
	}
	/* Fixed reset */
	#top-head.fixed {
		padding-top: 0;
		background: transparent;
	}
  #top-head.fixed .inner {
    padding: 0;
  }
	#mobile-head {
		background: rgb(255 255 255 / 80%);
		width: 100%;
		height: 56px;
		z-index: 999;
		position: relative;
	}
	#top-head.fixed .logo,
	#top-head .logo {
		position: absolute;
		left: 13px;
		top: 13px;
	}
  #top-head .logo img {
    height: 47px;
    margin-top: -8px;
    margin-left: 0;
    filter: brightness(0.1);
  }
  #top-head.fixed .logo img {
    height: 47px;
    margin-top: -8px;
    margin-left: 0;
    filter: brightness(0.1);
  }
	#global-nav {
		position: absolute;
		/* 開いてないときは画面外に配置 */
		top: -556px;
		background: rgb(0 0 0 / 80%);
		width: 100%;
		text-align: center;
		padding: 10px 0;
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
	}
	#global-nav ul {
		list-style: none;
		position: static;
		right: 0;
		bottom: 0;
		font-size: 14px;
    flex-direction: column;
    padding-top: 50px;
	}
  #global-nav ul li {
    height: 70px;
    position: relative;
  }
	#global-nav ul li a {
		display: flex;
    flex-direction: column;
	}
	#top-head #global-nav ul li a,
	#top-head.fixed #global-nav ul li a {
		width: 100%;
		color: #fff;
		padding: 18px 0;
	}
  #global-nav ul li::after {
    display: none;
  }
	#nav-toggle {
		display: block;
	}
	/* #nav-toggle 切り替えアニメーション */
	.open #nav-toggle span:nth-child(1) {
		top: 11px;
		-webkit-transform: rotate(315deg);
		-moz-transform: rotate(315deg);
		transform: rotate(315deg);
	}
	.open #nav-toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav-toggle span:nth-child(3) {
		top: 11px;
		-webkit-transform: rotate(-315deg);
		-moz-transform: rotate(-315deg);
		transform: rotate(-315deg);
	}
	/* #global-nav スライドアニメーション */
	.open #global-nav {
		/* #global-nav top + #mobile-head height */
		-moz-transform: translateY(556px);
		-webkit-transform: translateY(556px);
		transform: translateY(556px);
	}
}

/*============
main
=============*/

/*============
HEADER
=============*/
.header {
  position: absolute;
  z-index: 1;
  margin-top: 37px;
  margin-left: 90px;
  width: 200px;
}

/*============
HERO
=============*/
#hero {
  height: 90vh;
  width: 100%;
  position: relative;
}

#hero-slider {
  height: 90vh;
  width: 100%;
  position: relative;
}

#hero .hero-text {
  height: 100%;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}
#hero .hero-text h1 {
  font-family: "Gobold Bold";
  position: absolute;
  left: 7%;
  bottom: 5%;
  color: #fff;
  font-size: 130px;
  line-height: 1.1em;
}

#hero.hero-2 .hero-text,
#hero.hero-3 .hero-text,
#hero.hero-4 .hero-text {
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero.hero-2 .hero-text h1,
#hero.hero-3 .hero-text h1,
#hero.hero-4 .hero-text h1 {
  position: static;
  color: rgb(255 255 255 / 60%);
}
#hero.hero-2 {
  height: 60vh;
  background: url(../images/hero-2.jpg) no-repeat center center;
  background-size: cover;
}
#hero.hero-3 {
  height: 60vh;
  background: url(../images/hero-3.jpg) no-repeat center center;
  background-size: cover;
}
#hero.hero-4 {
  height: 60vh;
  background: url(../images/hero-4.jpg) no-repeat center center;
  background-size: cover;
}
#hero.hero-2 h1,
#hero.hero-3 h1,
#hero.hero-4 h1 {
  font-size: 70px;
}

/*============
Section NEWS
=============*/
#section-news {
  width: 100%;
  background: #fff;
  padding: 20px 2%;
}

.news-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

#headline {
  color: #e50027;
  font-family: ethnocentric, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp( 1.875rem, calc( 1.5625rem + 1.25vw ), 2.5rem );
  letter-spacing: 0px;
  text-align: center;
  background: url(../images/headline-1.png) no-repeat center center;
  background-size: contain;
  height: 100px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 40px;
}

#headline span {
  color: #333;
  font-size: 11px;
  margin-top: -5px;
  font-family: sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  text-indent: 2px;
}

#headline-B {
  color: #e50027;
  font-family: ethnocentric, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  letter-spacing: 0px;
  text-align: center;
  background: url(../images/headline-1.png) no-repeat center center;
  background-size: contain;
  height: 100px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 30px;
}

#headline-B span {
  color: #fff;
  font-size: 11px;
  margin-top: -5px;
  font-family: sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  text-indent: 2px;
}

.headline-C {
  color: #fff;
  font-family: ethnocentric, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  letter-spacing: 0px;
  text-align: center;
  background: url(../images/headline-1.png) no-repeat center center;
  background-size: contain;
  height: 100px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 30px;
}

.headline-C span {
  color: #fff;
  font-size: 11px;
  margin-top: -5px;
  font-family: sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  text-indent: 2px;
}

.headline-list {
  position: absolute;
  top: 28px;
  right: 0;
  background: #e50027;
  filter: opacity(1);
  transition: filter .3s;
}

.headline-list a {
  font-size: 13px;
  padding: 13px 30px;
  color: #fff;
  letter-spacing: 2px;
  display: block;
  line-height: 1;
  text-align: center;
}

.headline-list:hover {
  filter: opacity(0.5);
  transition: filter .3s;
}

.headline-list a::after {
  content: ">";
  position: absolute;
  top: 6px;
  right: 0;
  transform: rotateY(65deg);
  font-size: 25px;
}

.headline-list a span {
  font-size: 13px;
}

.news-content-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.news-content {
  width: 30%;
  margin-bottom: 50px;
}

.news-content img {
  height: auto;
}

.news-content a {
  color: #333;
  filter: opacity(1);
  transition: filter .5s;
}

.news-content a:hover {
  filter: opacity(0.5);
  transition: filter .5s;
}

.news-content > picture {
  filter: opacity(1);
  transition: filter .5s;
}

.news-content > picture:hover {
  filter: opacity(0.5);
  transition: filter .5s;
}

.news-content-A {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #b2b2b2;
  margin: 10px 0;
  padding-bottom: 10px;
  align-items: center;
}

.news-content-A h3 {
  font-size: 10px;
  color: #fff;
  background-color: #e50027;
  font-weight: bold;
  line-height: 1.5em;
  padding: 3px 10px;
}

.news-content-A p {
  font-size: 14px;
  font-family: monospace;
  font-weight: bold;
  margin-left: 10px;
  letter-spacing: 1px;
}

.news-content-B {
  display: flex;
  flex-direction: row;
  margin: 10px 0;
  padding-bottom: 10px;
  align-items: center;
}

.news-content-B h3 {
  font-size: 10px;
  color: #fff;
  background-color: #263866;
  font-weight: bold;
  line-height: 1.5em;
  padding: 3px 10px;
}

.news-content-B p {
  font-size: 14px;
  font-family: monospace;
  font-weight: bold;
  margin-left: 10px;
  letter-spacing: 1px;
}

.news-content h4 {
  font-size: 12px;
  font-weight: 500;
}

/*================
Section PHILOSOPHY
================*/
#section-philosophy {
  width: 100%;
  background: url(../images/philosophy-1.jpg) no-repeat center center;
  background-size: cover;
}

#philosophy-container {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  padding: 30px 0 50px;
}

#philosophy-container h2 {
  border: 3px solid #fff;
  font-size: 23px;
  font-weight: 500;
  padding: 10px 50px 11px;
  margin-bottom: 35px;
  letter-spacing: 4px;
  text-indent: 4px;
  line-height: 1;
  font-family: sans-serif;
}

#philosophy-container h3 {
  text-align: center;
  font-size: 13px;
  letter-spacing: 2px;
  margin-right: -2px;
  line-height: 2.2em;
  font-family: sans-serif;
}

/*============
Section CATEGORY
=============*/
#section-category {
  width: 100%;
}

#section-category .category-belt {
  width: 100%;
  height: 40px;
  background: #E50027;
  background: linear-gradient(270deg,rgba(229, 0, 39, 1) 0%, rgba(35, 24, 21, 1) 100%);
}

#category-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.category-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  padding: 100px 0 80px;
}

.category-content h1 {
  color: #fff;
  font-size: 25px;
  font-family: acumin-variable, sans-serif;
  font-variation-settings: "slnt" -12, "wdth" 50, "wght" 500;
  letter-spacing: 3px;
}

.category-content h2 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 2px;
  text-indent: 2px;
  font-family: sans-serif;
  font-weight: 400;
}

.category-content a {
  width: 50%;
  text-align: center;
  margin-top: 25px;
}

.category-content a h3 {
  color: #fff;
  font-family: sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-indent: 2px;
  padding: 5px 0;
}

.cat-A {
  background: url(../images/category-1.jpg) no-repeat center center;
  background-size: cover;
}

.cat-B {
  background: url(../images/category-2.jpg) no-repeat center center;
  background-size: cover;
}

.cat-C {
  background: url(../images/category-3.jpg) no-repeat center center;
  background-size: cover;
}

.cat-D {
  background: url(../images/category-4.jpg) no-repeat center center;
  background-size: cover;
}

.category-content.cat-A a h3,
.category-content.cat-D a h3 {
  background-color:#e50027;
}

.category-content.cat-B a h3,
.category-content.cat-C a h3 {
  background-color:#000;
}

/*============
SECTION TRUCKS
=============*/
#section-trucks {
  width: 100%;
  background: #fff;
  padding: 40px 2% 120px;
}

#trucks-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

ul.slide-items {
  width: 90%;
  max-width: 820px;
  height: auto;
  margin: 0 auto;
}
ul.slide-items li span {
  display: none;
}
.slide-items .slider-img {
  width: 80%;
  height: auto;
  margin: 0 auto 30px;
  object-fit: cover;
}
.slide-arrow {
  bottom: 0;
  cursor: pointer;
  margin: auto;
  position: absolute;
  top: 0;
  width: 40px;
}
.prev-arrow {
  left: -40px;
}
.next-arrow {
  right: -40px;
}
.slide-dots {
  margin: 0;
  padding: 0;
  text-align: center;
}
.slide-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slide-dots li button {
  position: relative;
  text-indent: -9999px;
}
.slide-dots li button::before {
  background-image: url(../images/slide-dots-off.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  cursor: pointer;
  height: 13px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 24px;
  width: 13px;
}
.slide-dots li.slick-active button::before {
  background-image: url(../images/slide-dots-on.png);
}

.slide-dots button {
  background: none;
  border: none;
  outline: none;
  padding: 0 7px;
}

#section-banner {
  padding: 0 2% 100px;
}

.banner-container h1 {
  text-align: center;
  font-size: clamp(0.8rem, calc(0.5782rem + 1.0624vw), 1.375rem);
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.1rem;
  text-indent: 0.1rem;
}

.banner-content {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.banner-content div {
  width: calc(100%/4 - 10px);
}

.banner-content div img {
  width: 100%;
  height: auto;
}

.banner-link{
 display: block; 
 position: relative;
 text-decoration: none;
}
.banner-link img{
  display: block;
  width: 100%;
}
.banner-link:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  background: #000;/*好みの色に変えてください。*/
  opacity: 0;
  transition: 0.3s;
}
.banner-link:after{
  content: "";
  display: block;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  text-align: center;
  position: absolute;
  background: url(../images/newWindow.png) no-repeat center center;
  background-size: cover;
  top: 39%;
  left: 51%;
  margin-left: -15px;
  opacity: 0;
  z-index: 3;
  transition: 0.3s;
  font-weight: bold;
  letter-spacing: 0.2em;
}
.banner-link:hover:before{
  opacity: 0.5;
}
.banner-link:hover:after{
  opacity: 1;
  margin-top: -0.5em;
}

#section-map .map-container {
  border-top: 1px solid #b2b2b2;
}

#section-map iframe {
  margin-bottom: -5px;
}

/*============
BUSINESS PAGE
=============*/
#section-business {
  padding: 80px 2% 0;
}
.business-content > div {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 50px;
  align-items: center;
}
.business-content > div:last-child {
  margin-bottom: 0;
}
.business-content > div > div:nth-child(1) {
  width: 52%;
}
.business-content > div > div:nth-child(2) {
  width: 45%;
}
.business-content > div > div h2 {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #e50027;
  line-height: 1.6em;
  margin-bottom: 20px;
}
.business-content > div > div h3 {
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1.8em;
}
.business-content > div > div img {
  width: 100%;
  height: auto;
}
.business-content > div.business-content-B {
  flex-direction: row-reverse;
  align-items: flex-start;
  margin-bottom: 30px;
}
.business-content > div.business-content-B div:nth-child(1) {
  width: 60%;
}
.business-content > div.business-content-B div:nth-child(2) {
  width: 35%;
}
.business-content > div.business-content-B h2 {
  text-align: right;
}
.business-content > div.business-content-B h3 {
  text-align: right;
}

#section-fleet {
  padding: 50px 0 0;
}
.fleet-content {
  border-bottom: 1px solid #b2b2b2;
}
.fleet-content ul {
  max-width: 700px;
  padding: 0;
  text-align: center;
  display: flex;
  justify-content: space-between;
  list-style: none;
  flex-wrap: wrap;
  margin: 0 auto 30px;
}
.fleet-content li {
  width: 30%;
  list-style-type: none;
  font-size: 13px;
  line-height: 40px;
  margin-bottom: 20px;
}
.fleet-content li label {
  display: block;
  color: #e50027;
  border: 1px solid #e50027;
  cursor: pointer;
}
.fleet-content li img {
  width: 100%;
  height: auto;
}
#fleet1, #fleet2, #fleet3, #fleet4, #fleet5, #fleet6 {
   display: none;
}
#fleet1:checked ~ ul li:nth-child(1) label {
  color: #fff;
  background-color: #e50027;
}
#fleet2:checked ~ ul li:nth-child(2) label {
  color: #fff;
  background-color: #e50027;
}
#fleet3:checked ~ ul li:nth-child(3) label {
  color: #fff;
  background-color: #e50027;
}
#fleet4:checked ~ ul li:nth-child(4) label {
  color: #fff;
  background-color: #e50027;
}
#fleet5:checked ~ ul li:nth-child(5) label {
  color: #fff;
  background-color: #e50027;
}
#fleet6:checked ~ ul li:nth-child(6) label {
  color: #fff;
  background-color: #e50027;
}
#fleet1:checked ~ .fleet-img > div:nth-child(1) {
  opacity: 1;
}
#fleet2:checked ~ .fleet-img > div:nth-child(2) {
  opacity: 1;
}
#fleet3:checked ~ .fleet-img > div:nth-child(3) {
  opacity: 1;
}
#fleet4:checked ~ .fleet-img > div:nth-child(4) {
  opacity: 1;
}
#fleet5:checked ~ .fleet-img > div:nth-child(5) {
  opacity: 1;
}
#fleet6:checked ~ .fleet-img > div:nth-child(6) {
  opacity: 1;
}
.fleet-content .fleet-img {
  max-width: 500px;
  min-height: 500px;
  position: relative;
  margin: 0 auto;
}
.fleet-content .fleet-img > div {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  transition: .5s;
}
.fleet-content .fleet-img > div img {
  width: 100%;
  height: 100%;
}
.fleet-img > div h2 {
  color: #e50027;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin: 30px 0 20px;
  letter-spacing: 2px;
  text-indent: 2px;
}
.fleet-img > div h3 {
  font-size: 13px;
  text-align: center;
  line-height: 1.5em;
  letter-spacing: 1px;
  margin-right: -1px;
}

#section-works {
  width: 100%;
  background: #fff;
  padding: 50px 2%;
}

/*============
COMPANY PAGE
=============*/
#section-greeting {
  width: 100%;
  margin: 0 auto;
  padding: 60px 0 0;
}

.greeting-content {
  background: url(../images/company-1.jpg) no-repeat center center;
  background-size: cover;
  padding: 2% 0;
  margin-top: 60px;
}

.greeting-content > div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

.greeting-content-A {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: nowrap;
  width: 51%;
  margin-left: 7%;
}

.greeting-content h2 {
  color: #e50027;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.greeting-content h3 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 2em;
  margin-bottom: 40px;
}

.greeting-content h4 {
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.greeting-content h4 span {
  font-size: 11px;
  margin-right: 15px;
  letter-spacing: 0.15em;
}

.greeting-content h4 img {
  width: 120px;
  margin-right: 1em;
}

.greeting-content-B {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 33%;
}

.greeting-content-B > div:first-child {
  margin-bottom: 10px;
}

.greeting-content-B > div:last-child {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.greeting-content-B > div:last-child > div:first-child > img:first-child {
  margin-bottom: 10px;
}

.greeting-content-B > div:last-child > div:last-child {
  margin-left: 10px;
}

#section-information {
  padding: 60px 0;
}

.information-content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2%;
}

.information-content div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: -1px;
}

.information-content div h2 {
  border: 1px solid #565353;
  margin-right: -1px;
  background: #e5e5e5;
  width: 30%;
  font-size: clamp( 0.75rem, calc( 0.65625rem + 0.375vw ), 0.9375rem );
  line-height: 3.5rem;
  text-align: center;
  letter-spacing: 0.2rem;
  text-indent: 0.2rem;
  align-content: center;
}

.information-content div h3 {
  border: 1px solid #565353;
  font-size: clamp( 0.75rem, calc( 0.65625rem + 0.375vw ), 0.9375rem );
  line-height: 3.5rem;
  width: 100%;
  padding-left: 3rem;
  letter-spacing: 0.1rem;
  align-content: center;
}

#section-gmark {
  padding: 0 0 60px;
}

.gmark-container {
  width: 100%;
  max-width: 530px;
  margin: 0 auto;
}

.gmark-container h1 {
  text-align: center;
  color: #e50027;
  font-size: clamp( 0.8rem, calc( 0.5782rem + 1.0624vw ), 1.375rem );
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.1rem;
  text-indent: 0.1rem;
}

.gmark-container h2 {
  text-align: center;
  color: #333;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.gmark-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.gmark-content > div:first-child {
  width: 75%;
}

.gmark-content div h3 {
  font-size: clamp( 0.625rem, calc( 0.5rem + 0.5vw ), 0.875rem );
  letter-spacing: 0.1rem;
  line-height: 2em;
}

.gmark-content > div:last-child {
  width: 20%;
}

.gmark-content > div:last-child img {
  width: 100%;
  height: 100%;
}

/*============
RECRUITMENT PAGE
=============*/
#section-message {
  padding: 40px 0 50px;
  background: url(../images/recruitment-1.jpg) no-repeat center center;
  background-size: cover;
}

.message-content {
  padding: 10px 2% 0;
}

.message-angle {
  margin: 2em auto 3em;
  position: relative;
  max-width: 800px;
  color: #fff;
  border-bottom: 0px solid currentColor;
}

.message-angle::before,
.message-angle::after {
  content: "";
  height: 100%;
  width: 7rem;
  position: absolute;
  bottom: 0;
  border-top: 5px solid currentColor;
  border-bottom: 5px solid currentColor;
}

.message-angle::before {
  left: 0;
  border-left: 5px solid currentColor;
}

.message-angle::after {
  right: 0;
  border-right: 5px solid currentColor;
}

.message-angle h2 {
  position: absolute;
  top: -2rem;
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
  font-size: clamp( 1.1875rem, calc( 0.34615384615384615rem + 3.3653846153846154vw ), 2.5rem );
  letter-spacing: 0.3rem;
  font-weight: 500;
}

.message-angle p {
  margin: 0;
  border-bottom: 5px solid currentColor;
  padding: 3.7rem 0.5rem 3rem;
  text-align: center;
  font-size: clamp( 0.6rem, calc( 0.46474358974358976rem + 0.641025641025641vw ), 0.875rem );
  line-height: 2rem;
}

.message-who h3 {
  color: #fff;
  font-size: clamp( 1.25rem, calc( 0.8493589743589745rem + 1.6025641025641024vw ), 1.875rem );
  text-align: center;
  letter-spacing: 0.2rem;
  font-weight: 500;
  margin-bottom: 1.8rem;
}

.message-who div {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}

.message-who div p {
  color: #e50027;
  background: #fff;
  width: calc( 100% / 4 - 1.5vh);
  font-size: clamp( 0.6rem, calc( 0.5048076923076923rem + 0.4807692307692308vw ), 0.8125rem );
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
  padding: 0.7rem 0;
}

#section-guideline {
  padding: 30px 0;
  background: #f1f1f1;
}

.guideline-content {
  background: #fff;
  padding: 50px;
  margin: 0 auto;
  width: 95%;
  max-width: 850px;
}

.guideline-content > div {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #b2b2b2;
  padding: 1rem 0;
}

.guideline-content h2 {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  width: 30%;
  letter-spacing: 0.1rem;
}

.guideline-content h3 {
  font-size: 14px;
  font-weight: 400;
  width: 70%;
}

.guideline-content > div:last-child h3 {
  margin-bottom: 50px;
}

.guideline-container .headline-list,
.voice-container .headline-list,
.newslist-container .headline-list {
  position: static;
  background: #e50027;
  filter: opacity(1);
  transition: filter .3s;
  width: 220px;
  margin: 30px auto 0;
}

.guideline-container .headline-list a,
.voice-container .headline-list a,
.newslist-container .headline-list a {
  padding: 13px 0;
}

.guideline-container .headline-list:hover,
.voice-container .headline-list:hover,
.newslist-container .headline-list:hover {
  filter: opacity(0.5);
  transition: filter .3s;
}

#section-voice {
  padding: 30px 0 40px;
}

.voice-content {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}

.voice-content > div {
  display: flex;
  justify-content: space-between;
  padding: 0 1.5%;
}

.voice-content > div > div {
  width: 45%;
}

.voice-item-start {
	position: relative;
}

.voice-content > div > div:nth-child(2) {
  width: 2px;
  background: #b2b2b2;
}

.voice-item {
  padding: 1rem 0 0;
}

.voice-item img {
  margin-bottom: 1.5rem;
  width: 100%;
  height: auto;
}

.voice-item h2 {
  margin-bottom: 1rem;
  color: #565353;
  font-weight: 600;
  font-size: 17px;
}

.voice-item h3 {
  margin-bottom: 1rem;
  color: #e50027;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1rem;
  white-space: nowrap;
}

.voice-item h4 {
  margin-bottom: 1rem;
  color: #565353;
  font-size: 12.3px;
  line-height: 1.8em;
}

/*============
NEWSLIST PAGE
=============*/
#section-newslist {
  padding: 180px 5vw 50px;
  margin: 0 auto 0;
  width: 100%;
  background: #fff;
}

.newslist-paginathing {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.newslist-paginathing:after {
  content: "";
  display: block;
  width: 30%;  /* .boxに指定したwidthと同じ幅を指定する */
  height: 0;
}

.newslist-content .pagination {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.newslist-content .pagination p {
  font-size: 13px;
}

.newslist-content .pagination .clearfix {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 30px;
}

.newslist-content .pagination .clearfix li a {
  color: #333;
}

.newslist-content .pagination .clearfix li.current a {
  color: #e50027;
}

.newslist-content .pagination p button {
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
}

.newslist-container .headline-list a {
  padding: 13px 0;
  margin: 80px 0 40px;
}

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal_img {
  cursor: pointer;
}

.modal_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1000px;
  height: 80%;
}

.modal_content img {
  width: 100%;
 height: 100%;
  object-fit: contain;
}

.modal_close {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: -50px;
  right: 0px;
  transition: 0.3s;
}

.modal_close:hover {
  opacity: 0.7;
}

.modal_close::before, .modal_close::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  margin-left: -50%;
  background-color: #fff;
}

.modal_close::before {
  transform: rotate(45deg);
}

.modal_close::after {
  transform: rotate(-45deg);
}

.modal_close_box {
  position: relative;
}

/*============
INQUIRY PAGE
=============*/
.inquiry-head #top-head a,
.inquiry-head #top-head {
  color: #565353;
}

.inquiry-head #global-nav ul li::after {
  content: "";
  border-right: 1px solid #565353;
  width: 1px;
  height: 45px;
  position: absolute;
  top: -5px;
  right: 0;
  transform: rotateZ(14deg);
}

#section-inquiry {
  padding: 180px 5vw 100px;
  margin: 0 auto 0;
  width: 100%;
  background: #fff;
}

.inquiry-wrap {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

.inquiry-container {
  background: #fff;
  padding: 30px 2vw;
}

.inquiry-container h2 {
  font-size: 13px;
  font-weight: normal;
  letter-spacing: 1px;
  line-height: 1.8em;
  text-align: center;
}

/*============
THANKS PAGE
=============*/
#section-thanks {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px 100px;
  text-align: center;
  letter-spacing: 2px;
}

#section-thanks h1 {
  font-size: 19px;
  line-height: 2em;
  margin-right: -2px;
}

#section-thanks h2 a {
  font-size: 15px;
  color: #21B8E2;
}

/*============
FOOTER
=============*/
footer {
  background: #e50027;
}

.footer-container {
  padding: 20px 0 0;
  margin: 0 auto;
}

.pagetop {
  height: 45px;
  width: 45px;
  background: #e50027;
  display: block;
  margin: 0 auto;
}

.pagetop-arrow {
  height: 25px;
  width: 25px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(20%) rotate(-45deg);
  margin: 0 auto;
}

.pagetop p {
  color: #fff;
  font-family: acumin-variable, sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 67.5, "wght" 800;
  text-align: center;
  margin-top: -8px;
  letter-spacing: 2px;
  text-indent: 3.5px;
  font-size: 13px;
}

.footer-line {
  height: 2px;
  width: 100%;
  background-color: #e50027;
  mix-blend-mode: multiply;
  border: 0;
  margin: 0;
  padding: 0;
}

.footer-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 2%;
  flex-direction: row;
}

.footer-left {
  display: flex;
  flex-direction: column;
}

.footer-info h1 img {
  width: 250px;
  height: auto;
}

.footer-left h2 {
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-top: -5px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
}

.footer-right h3 {
  color: #fff;
  font-size: 35px;
  font-family: acumin-variable, sans-serif;
  font-variation-settings: "slnt" -12, "wdth" 50, "wght" 800;
  letter-spacing: 2px;
  line-height: 1.2em;
  margin-bottom: 10px;
}

.footer-right h3 a {
  color: #fff;
  margin-right: 1em;
}

.footer-right-content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.footer-right-content div {
  width: 23%;
}

.footer-right-content div p {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 7px;
  letter-spacing: 2px;
  text-indent: 2px;
}

.footer-right-content div p a {
  color: #fff;
}

.footer-right-content div ul {
  margin-top: 5px;
}

.footer-right-content div ul li {
  line-height: 1.3;
}

.footer-right-content div ul li a {
  color: #fff;
  font-size: 10.5px;
  white-space: nowrap;
}

#copyright {
  color: #fff;
  line-height: 1.8em;
  font-size: 12px;
  text-align: center;
  font-family: Roboto,-apple-system,BlinkMacSystemFont,'Helvetica Neue',Helvetica,Arial,Verdana,'Noto Sans Japanese','游ゴシック','Yu Gothic','游ゴシック体',YuGothic,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','Meiryo UI','メイリオ',Meiryo,sans-serif;
}

/*============
Responsive
=============*/
@media screen and ( min-width: 768px ) {
  .sp-br {
    display: none;
  }
}
@media screen and ( max-width: 948px ) {
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 75px;
  }
}
@media screen and ( max-width: 767px ) {
  .pc-br {
    display: none;
  }
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 56px;
  }
}

/*========================
  Media Query - index and common
========================*/
@media screen and ( max-width: 767px ) {
  #section-news {
    padding: 20px 2% 90px;
  }
  .news-content {
    width: 48%;
    margin-bottom: 25px;
  }
  .news-content h4 {
    font-size: 10px;
  }
  .headline-list {
    position: absolute;
    top: unset;
    bottom: -50px;
    right: 0;
    left: 0;
    width: 215px;
    margin: 0 auto;
  }
  #headline-B {
    font-size: 33px;
  }
  #philosophy-container {
    padding-bottom: 30px;
  }
  #philosophy-container h2 {
    font-size: 16px;
  }
  #philosophy-container h2 {
    font-size: 16px;
    text-align: center;
    text-indent: 0;
    line-height: 1.5em;
    padding: 10px 26px 11px 30px;
  }
  #philosophy-container h3 {
    padding: 0 2%;
    font-size: 11px;
    text-align: left;
  }
  .category-content a {
    width: 90%;
  }
  .category-content a h3 {
    font-size: 10px;
  }
  .category-content.cat-A a h3,
  .category-content.cat-D a h3 {
    border: 1px solid #e50027;
  }
  .category-content.cat-B a h3,
  .category-content.cat-C a h3 {
    border: 1px solid #fff;
  }
  #section-trucks {
    padding: 30px 2% 120px;
  }
  #trucks-container {
    padding-bottom: 5px;
  }
  .slide-items .slider-img {
    margin: 10px auto;
  }
  .slide-arrow {
    display: none!important;
  }
  .slide-dots li {
    padding-bottom: 2rem;
  }
  #section-banner {
    padding: 0 5% 70px;
  }
  .banner-content {
    flex-wrap: wrap;
  }
  .banner-content div {
    width: calc(100%/4 - 5px);
  }
  .banner-content div img {
    margin-bottom: 10px;
  }
  .banner-link:after {
    top: 44%;
  }
  .footer-info {
    flex-direction: column;
  }
  .footer-info h1 {
    margin: 0 auto;
  }
  .footer-left {
    margin-bottom: 25px;
  }
  .footer-right h3 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 30px;
  }
  .footer-right h3 a {
    margin: 0;
  }
  .footer-right-content div {
    width: 47%;
    margin-bottom: 20px;
  }
  .footer-right-content {
    flex-wrap: wrap;
  }.footer-right-content div ul li {
    line-height: 2em;
  }
  .footer-right-content div ul li a {
    font-size: 12px;
  }
}

@media screen and ( max-width: 450px ) {
  .banner-content {
    width: 90%;
  }
  .banner-content div {
    width: calc(100%/2 - 5px);
  }
}

/*========================
  Media Query - HERO
========================*/
@media screen and ( max-width: 767px ) {
  #hero {
    height: 70vh;
  }
  #hero-slider {
    height: 70vh;
  }
  #hero .hero-text h1 {
    font-size: 20vw;
    margin-top: 56px;
  }
  #hero.hero-2,
  #hero.hero-3,
  #hero.hero-4 {
    height: 40vh;
  }
  #hero.hero-2 h1,
  #hero.hero-3 h1,
  #hero.hero-4 h1 {
    font-size: 10vw;
  }
}

@media screen and ( max-width: 500px ) {
  #hero.hero-2 h1,
  #hero.hero-3 h1,
  #hero.hero-4 h1 {
    font-size: 15vw;
  }
}

/*========================
  Media Query - Business Page
========================*/
@media screen and ( max-width: 1023px ) {
  .business-content > div > div h2 {
    font-size: 2.45vw;
  }
  .business-content > div > div h3 {
    font-size: 1.35vw;
  }
}

@media screen and ( max-width: 767px ) {
  .business-content > div {
    flex-direction: column-reverse;
  }
  .business-content > div.business-content-B {
    flex-direction: column-reverse;
  }
  .business-content > div > div:nth-child(1),
  .business-content > div > div:nth-child(2),
  .business-content > div.business-content-B div:nth-child(1),
  .business-content > div.business-content-B div:nth-child(2) {
    width: 100%;
  }
  .business-content > div > div img {
    width: 70%;
    margin: 0 auto 20px;
  }
  .business-content > div:nth-child(1) > div img {
    margin-bottom: 5px;
  }
  .business-content > div > div h2,
  .business-content > div.business-content-B > div h2 {
    font-size: 3.5vw;
    text-align: left;
    margin-bottom: 10px;
  }
  .business-content > div > div h3,
  .business-content > div.business-content-B > div h3 {
    font-size: 2.5vw;
    letter-spacing: 0;
    text-align: left;
  }
  #section-business {
    padding: 50px 10% 10px;
  }
  .fleet-content ul {
    margin: 0 2% 30px;
  }
  .fleet-content li {
    width: 49%;
    margin-bottom: 10px;
  }
  .fleet-content .fleet-img {
    margin: 0 auto;
    min-height: 400px;
  }
  .fleet-content .fleet-img > div {
    margin: 0 5%;
  }
  .fleet-content .fleet-img > div img {
    width: 80%;
    height: auto;
    margin: 0 auto;
  }
  .fleet-img > div h3 {
    font-size: 12.5px;
  }
  #section-works {
    padding: 30px 2% 120px;
  }
}

@media screen and ( max-width: 425px ) {
  #section-business {
    padding: 50px 3% 0;
  }
  .business-content > div > div h2,
  .business-content > div.business-content-B > div h2 {
    font-size: 4.5vw;
    text-align: left;
    margin-bottom: 10px;
    line-height: 1.4em;
  }
  .business-content > div > div h3,
  .business-content > div.business-content-B > div h3 {
    font-size: 12px;
    letter-spacing: 0;
    text-align: left;
  }
  .fleet-content li {
    width: 49%;
    margin-bottom: 10px;
    font-size: 11px;
  }
  .fleet-img > div h2 {
    font-size: 15px;
  }
  .fleet-content .fleet-img {
    margin: 0 auto;
    min-height: 360px;
  }
  #section-works {
    padding: 30px 2% 120px;
  }
}

/*========================
  Media Query - Company Page
========================*/
@media screen and ( max-width: 1023px ) {
  .greeting-content-A {
    width: 57%;
    margin-left: 5%;
  }
  .greeting-content h2 {
    font-size: 2.7vw;
    line-height: 1.4em;
    margin-bottom: 15px;
  }
  .greeting-content h3 {
    font-size: 1.41vw;
    margin-bottom: 20px;
  }
}

@media screen and ( max-width: 767px ) {
  #section-greeting {
    padding: 30px 0 0;
  }
  .greeting-content {
    padding: 0;
    margin: 0;
  }
  .greeting-content > div {
    flex-direction: column;
  }
  .greeting-content-A {
    width: 100%;
    margin-left: 0;
    padding: 5vh 5vw;
  }
  .greeting-content h2 {
    font-size: 20px;
  }
  .greeting-content h3 {
    font-size: 13px;
    margin-bottom: 30px;
  }
  .greeting-content h4 span {
    font-size: 11px;
    margin-right: 1.5em;
  }
  .greeting-content h4 img {
    width: 120px;
    margin: 0;
  }
  .greeting-content-B {
    width: 100%;
    flex-direction: row;
    padding-bottom: 2vh;
  }
  .greeting-content-B > div {
    height: 100%;
    width: 49%;
  }
  .greeting-content-B > div:first-child {
    margin-bottom: 0;
  }
  .greeting-content-B > div:last-child {
    margin-left: 10px;
  }
  .greeting-content h4 img {
    margin: 0;
  }
  .greeting-content-B > div:last-child > div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .greeting-content-B > div:last-child > div:first-child > img:first-child {
    margin-bottom: 0;
  }
  #section-information {
    padding: 30px 0;
  }
  .information-content div h2 {
    padding: 1rem 0;
    line-height: 1rem;
  }
  .information-content div h3 {
    padding-left: 1rem;
    line-height: 1.2rem;
    padding: 1rem 0 1rem 1rem;
  }
  .information-content div h3 span.information-point {
    display: none;
  }
  .information-content div h3 span:after {
    content: "\A";
    white-space: pre;
  }
  .gmark-content {
    padding: 0 2%;
  }
}

@media screen and ( max-width: 424px ) {
  .gmark-content h3 br {
    display: none;
  }
}

/*========================
  Media Query - Recruitment Page
========================*/
@media screen and ( max-width: 1023px ) {
  .message-angle::before, .message-angle::after {
    width: 15%;
  }
  .message-angle h2 {
    top: calc((0.15384615384615385rem + 2.8846153846153846vw) * -1);
  }
  .voice-item h4 {
    font-size: 11px;
  }
}

@media screen and ( max-width: 767px ) {
  #section-message {
    padding: 30px 0;
  }
  .message-angle h2 {
    letter-spacing: 0.1rem;
  }
  .message-angle::before {
    border-left: 3px solid currentColor;
  }
  .message-angle::after {
    border-right: 3px solid currentColor;
  }
  .message-angle::before, .message-angle::after {
    border-top: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
  }
  .message-angle p {
    border-bottom: 3px solid currentColor;
    text-align: left;
    font-size: 13px;
    padding: 2rem 1rem;
  }
  .message-who div p {
    width: calc(100% / 2 - 1.5vw);
    font-size: 13px;
  }
  #section-guideline {
    padding: 30px 0;
  }
  .guideline-content {
    padding: 5vw 5vw 8vw;
  }
  .guideline-content h2 {
    width: 30%;
  }
  .guideline-content h3 {
    width: 70%;
  }
  .voice-content > div {
    flex-direction: column;
  }
  .voice-content > div > div {
    width: 95%;
    margin: 0 auto;
    padding-top: 0;
  }
  .voice-content > div > div:nth-child(2) {
    width: 100%;
    height: 2px;
  }
  .voice-item h2 {
    font-size: 15px;
  }
  .voice-item h3 {
    font-size: 14.5px;
    white-space: wrap;
  }
  .voice-item h4 {
    font-size: 12px;
    margin-bottom: 2rem;
  }
  .voice-content > div > div:nth-child(3) {
    padding-top: 2.4rem;
  }
  .voice-content > div > div:nth-child(3) h4 {
    margin-bottom: 0;
  }
}

@media screen and ( max-width: 424px ) {
  .message-angle::before, .message-angle::after {
    width: 9%;
  }
  .message-who div p {
    font-size: 10px;
  }
  .guideline-content > div {
    display: flex;
    flex-direction: column;
    padding: 1rem 0 0 0;
    margin: 0;
  }
  .guideline-content h2 {
    margin-bottom: 1rem;
    text-align: left;
    width: 100%;
    padding: 0 5px;
  }
  .guideline-content h3 {
    margin-bottom: 1rem;
    width: 100%;
    padding: 0 5px;
  }
  .guideline-content > div:last-child h3 {
    margin-bottom: 10vw;
  }
}

/*========================
  Media Query - newslist Page
========================*/
@media screen and ( max-width: 767px ) {
  #section-newslist {
    padding: 80px 2vw 40px;
  }
}

/*========================
  Media Query - Inquiry Page
========================*/
@media screen and ( max-width: 767px ) {
  .inquiry-wrap h1 {
    font-size: 12vw;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
  }
  .inquiry-wrap h1 span {
    font-size: 4vw;
    top: 0;
    left: 0;
    line-height: 2em;
  }
  .inquiry-container {
    padding: 0;
  }
  #section-inquiry {
    padding: 80px 5vw 0;
  }
  .inquiry-container h2 {
    text-align: left;
  }
}

@media screen and (min-width:450px) and ( max-width:768px) {
  .inquiry-wrap h1 {
    font-size: 50px;
  }
  .inquiry-wrap h1 span {
    font-size: 14px;
  }
}

/*========================
  Media Query - policy page
========================*/
@media screen and ( max-width: 767px ) {
  /*============
    POLICY
  =============*/
  #section-policy h1 {
    font-size: 15px;
  }
  #section-policy p {
    font-size: 13px;
    margin-left: 2px;
  }
  #section-policy h2 {
    font-size: 14px;
  }
  #section-policy h3 {
    font-size: 14px;
  }
  .policy-container h4 {
    font-size: 14px;
  }
  .policy-container h5 {
    font-size: 15px;
  }
  .policy-container .policy-sub {
    margin: 20px 0 20px 10px;
  }
  .policy-container .policy-sub li {
    font-size: 13px;
  }
}

/*========================
  Media Query - sitemap page
========================*/
@media screen and ( max-width: 767px ) {
  .sitemap-contents {
    width: 47%;
  }
  .sitemap-contents h2 {
    font-size: 13px;
  }
  .sitemap-contents ul li {
    font-size: 12px;
  }
}

@media screen and ( max-width: 374px ) {
  .sitemap-contents {
    width: 100%;
  }
}

/*========================
  lazyload
=========================*/
.lazyload { opacity: 0; transition: opacity .8s ease-out; }
.lazyloaded { opacity: 1; }
.box-fadein img {
  opacity: 0;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
}
.box-fadein.lazyloaded img.lazyloaded {
  opacity: 1;
}